From 4b6d83e28716d40d77d8175295134ebad287d383 Mon Sep 17 00:00:00 2001 From: Aashan Ghimire Date: Thu, 15 Dec 2022 22:19:02 +0545 Subject: [PATCH] Removed o_ prefixed from database columns (#373) * Removed o_ prefixed from database columns * Removed o_ prefixes from more sql files * Fixed missing o_ prefix replacements * Revert back the change of ooo_ prefixes * Fixed typos * Replaced id with oo_id in object_query and object_store tables --- config/pimcore/customviews.example.php | 12 +- config/pimcore/customviews.php | 2 +- dump/data-0-bootstrap.sql | 570 +++--- ...tputdataconfigtoolkit_outputdefinition.sql | 172 +- dump/data-1-documents_editables.sql | 10 +- ...data-1-object_brick_query_Bodywork_CAR.sql | 542 +++--- ...ta-1-object_brick_query_Dimensions_CAR.sql | 550 +++--- dump/data-1-object_brick_query_Engine_CAR.sql | 550 +++--- ...aymentProviderPayPalSmartButton_EF_OSO.sql | 22 +- ...-object_brick_query_SaleInformation_AP.sql | 304 ++-- ...object_brick_query_SaleInformation_CAR.sql | 342 ++-- ...-1-object_brick_query_Transmission_CAR.sql | 544 +++--- ...data-1-object_brick_store_Bodywork_CAR.sql | 542 +++--- ...ta-1-object_brick_store_Dimensions_CAR.sql | 550 +++--- dump/data-1-object_brick_store_Engine_CAR.sql | 550 +++--- ...aymentProviderPayPalSmartButton_EF_OSO.sql | 22 +- ...-object_brick_store_SaleInformation_AP.sql | 304 ++-- ...object_brick_store_SaleInformation_CAR.sql | 342 ++-- ...-1-object_brick_store_Transmission_CAR.sql | 544 +++--- ...a-1-object_classificationstore_data_AP.sql | 1584 ++++++++--------- ...1-object_classificationstore_groups_AP.sql | 884 ++++----- ...object_collection_FilterCategory_EF_FD.sql | 14 +- ...t_collection_FilterMultiRelation_EF_FD.sql | 14 +- ...FilterMultiSelectFromMultiSelect_EF_FD.sql | 16 +- ...ect_collection_FilterMultiSelect_EF_FD.sql | 2 +- ...ction_FilterNumberRangeSelection_EF_FD.sql | 8 +- ...object_collection_FilterRelation_EF_FD.sql | 8 +- ...1-object_collection_FilterSelect_EF_FD.sql | 4 +- dump/data-1-object_collection_NewsCars_NE.sql | 8 +- .../data-1-object_collection_NewsLinks_NE.sql | 2 +- dump/data-1-object_collection_NewsText_NE.sql | 18 +- ...lection_OrderPriceModifications_EF_OSO.sql | 34 +- ...1-object_collection_PaymentInfo_EF_OSO.sql | 24 +- ...-object_collection_PricingRule_EF_OSOI.sql | 4 +- ...a-1-object_collection_TaxEntry_EF_OSTC.sql | 4 +- ...ection_VoucherTokenTypePattern_EF_OSVS.sql | 2 +- ...lection_VoucherTokenTypeSingle_EF_OSVS.sql | 2 +- dump/data-1-object_metadata_CU.sql | 128 +- dump/data-1-objects.sql | 1464 +++++++-------- dump/data-1-settings_store.sql | 4 +- dump/data-1-shop_productindex.sql | 876 ++++----- dump/data-2-views.sql | 80 +- dump/x-atomic-storedFunctionObject.sql | 2 +- public/static/js/startup.js | 58 +- src/Controller/ProductController.php | 8 +- src/Model/Product/AccessoryPart.php | 2 +- 46 files changed, 5864 insertions(+), 5864 deletions(-) diff --git a/config/pimcore/customviews.example.php b/config/pimcore/customviews.example.php index 008a2e32..721f10c0 100644 --- a/config/pimcore/customviews.example.php +++ b/config/pimcore/customviews.example.php @@ -10,19 +10,19 @@ 'id' => 1, // unique (!!!) custom view ID 'rootfolder' => '/blog', // root node 'showroot' => false, // show root node or just children? - 'classes' => [ // allowed classes to add; use class ids; Options: a)comma-separated b) Array [id => (Depth)] - "5" => 1, // (int) Depth = Sets the limit on how many levels deep (Depth) in the object tree you can add the class - "SUBARTICLE" => 3, - ], + 'classes' => [ // allowed classes to add; use class ids; Options: a)comma-separated b) Array [id => (Depth)] + "5" => 1, // (int) Depth = Sets the limit on how many levels deep (Depth) in the object tree you can add the class + "SUBARTICLE" => 3, + ], 'position' => 'right', // left or right accordion 'sort' => '1', // sort priority. lower values are shown first (prio for standard trees is -3 docs,-2 assets,-1 objects) 'expanded' => true, // tree is expanded by default (there can be only one expanded tree on each side) - 'having' => "o_type = \"folder\" || o5.title NOT LIKE '%magnis%'", // SQL having clause + 'having' => "type = \"folder\" || o5.title NOT LIKE '%magnis%'", // SQL having clause 'joins' => [ // Joins in Zend_DB_Select-like syntax [ 'type' => 'left', 'name' => ['o5' => 'object_localized_5_en'], - 'condition' => 'objects.o_id = o5.oo_id', + 'condition' => 'objects.id = o5.oo_id', 'columns' => ['o5' => 'title'] ] ], diff --git a/config/pimcore/customviews.php b/config/pimcore/customviews.php index de7376f9..383a7289 100644 --- a/config/pimcore/customviews.php +++ b/config/pimcore/customviews.php @@ -65,7 +65,7 @@ "position" => "left", "sort" => "6", "expanded" => TRUE, - "where" => "(o_path LIKE '/Product Data/Manufacturer/%' OR o_key = 'Manufacturer' OR o_path LIKE '/Product Data/Body-Styles/%' OR o_key = 'Body-Styles')" + "where" => "(path LIKE '/Product Data/Manufacturer/%' OR key = 'Manufacturer' OR path LIKE '/Product Data/Body-Styles/%' OR key = 'Body-Styles')" ], [ "treetype" => "object", diff --git a/dump/data-0-bootstrap.sql b/dump/data-0-bootstrap.sql index 9e4a6f88..465efbf7 100644 --- a/dump/data-0-bootstrap.sql +++ b/dump/data-0-bootstrap.sql @@ -7,11 +7,11 @@ DROP TABLE IF EXISTS `bundle_outputdataconfigtoolkit_outputdefinition`; CREATE TABLE `bundle_outputdataconfigtoolkit_outputdefinition` ( `id` int(11) NOT NULL AUTO_INCREMENT, `o_id` int(11) NOT NULL, - `o_classId` varchar(50) COLLATE utf8mb3_bin NOT NULL, + `classId` varchar(50) COLLATE utf8mb3_bin NOT NULL, `channel` varchar(255) COLLATE utf8mb3_bin NOT NULL, `configuration` longtext CHARACTER SET latin1 DEFAULT NULL, PRIMARY KEY (`id`), - UNIQUE KEY `Unique` (`o_id`,`o_classId`,`channel`) + UNIQUE KEY `Unique` (`o_id`,`classId`,`channel`) ) ENGINE=InnoDB AUTO_INCREMENT=87 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; @@ -19,7 +19,7 @@ CREATE TABLE `bundle_outputdataconfigtoolkit_outputdefinition` ( DROP TABLE IF EXISTS `bundle_web2print_favorite_outputdefinitions`; CREATE TABLE `bundle_web2print_favorite_outputdefinitions` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `o_classId` varchar(50) COLLATE utf8mb3_bin NOT NULL, + `classId` varchar(50) COLLATE utf8mb3_bin NOT NULL, `description` varchar(255) COLLATE utf8mb3_bin NOT NULL, `configuration` longtext CHARACTER SET latin1 DEFAULT NULL, PRIMARY KEY (`id`) @@ -159,23 +159,23 @@ CREATE TABLE `migration_versions` ( DROP TABLE IF EXISTS `object_brick_query_Bodywork_CAR`; CREATE TABLE `object_brick_query_Bodywork_CAR` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `numberOfDoors` bigint(20) DEFAULT NULL, `numberOfSeats` bigint(20) DEFAULT NULL, `cargoCapacity__value` double DEFAULT NULL, `cargoCapacity__unit` bigint(20) DEFAULT NULL, - PRIMARY KEY (`o_id`,`fieldname`), - KEY `o_id` (`o_id`), + PRIMARY KEY (`id`,`fieldname`), + KEY `id` (`id`), KEY `fieldname` (`fieldname`), - CONSTRAINT `fk_object_brick_query_Bodywork_CAR__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_brick_query_Bodywork_CAR__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_brick_query_Dimensions_CAR`; CREATE TABLE `object_brick_query_Dimensions_CAR` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `length__value` double DEFAULT NULL, `length__unit` bigint(20) DEFAULT NULL, @@ -185,17 +185,17 @@ CREATE TABLE `object_brick_query_Dimensions_CAR` ( `wheelbase__unit` bigint(20) DEFAULT NULL, `weight__value` double DEFAULT NULL, `weight__unit` bigint(20) DEFAULT NULL, - PRIMARY KEY (`o_id`,`fieldname`), - KEY `o_id` (`o_id`), + PRIMARY KEY (`id`,`fieldname`), + KEY `id` (`id`), KEY `fieldname` (`fieldname`), - CONSTRAINT `fk_object_brick_query_Dimensions_CAR__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_brick_query_Dimensions_CAR__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_brick_query_Engine_CAR`; CREATE TABLE `object_brick_query_Engine_CAR` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `cylinders` bigint(20) DEFAULT NULL, `capacity__value` double DEFAULT NULL, @@ -203,48 +203,48 @@ CREATE TABLE `object_brick_query_Engine_CAR` ( `power__value` double DEFAULT NULL, `power__unit` bigint(20) DEFAULT NULL, `engineLocation` varchar(190) DEFAULT NULL, - PRIMARY KEY (`o_id`,`fieldname`), - KEY `o_id` (`o_id`), + PRIMARY KEY (`id`,`fieldname`), + KEY `id` (`id`), KEY `fieldname` (`fieldname`), - CONSTRAINT `fk_object_brick_query_Engine_CAR__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_brick_query_Engine_CAR__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_brick_query_OAuth1Token_3`; CREATE TABLE `object_brick_query_OAuth1Token_3` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `token` longtext DEFAULT NULL, `tokenSecret` longtext DEFAULT NULL, - PRIMARY KEY (`o_id`,`fieldname`), - KEY `o_id` (`o_id`), + PRIMARY KEY (`id`,`fieldname`), + KEY `id` (`id`), KEY `fieldname` (`fieldname`), - CONSTRAINT `fk_object_brick_query_OAuth1Token_3__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_brick_query_OAuth1Token_3__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_brick_query_OAuth2Token_3`; CREATE TABLE `object_brick_query_OAuth2Token_3` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `accessToken` longtext DEFAULT NULL, `tokenType` varchar(190) DEFAULT NULL, `expiresAt` varchar(190) DEFAULT NULL, `refreshToken` longtext DEFAULT NULL, `scope` varchar(190) DEFAULT NULL, - PRIMARY KEY (`o_id`,`fieldname`), - KEY `o_id` (`o_id`), + PRIMARY KEY (`id`,`fieldname`), + KEY `id` (`id`), KEY `fieldname` (`fieldname`), - CONSTRAINT `fk_object_brick_query_OAuth2Token_3__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_brick_query_OAuth2Token_3__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO`; CREATE TABLE `object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO` ( - `o_id` int(11) unsigned NOT NULL DEFAULT 0, + `id` int(11) unsigned NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `configurationKey` varchar(190) DEFAULT NULL, `auth_orderID` varchar(255) DEFAULT NULL, @@ -252,17 +252,17 @@ CREATE TABLE `object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO` ( `auth_email_address` varchar(255) DEFAULT NULL, `auth_given_name` varchar(255) DEFAULT NULL, `auth_surname` varchar(255) DEFAULT NULL, - PRIMARY KEY (`o_id`,`fieldname`), - KEY `o_id` (`o_id`), + PRIMARY KEY (`id`,`fieldname`), + KEY `id` (`id`), KEY `fieldname` (`fieldname`), - CONSTRAINT `fk_object_brick_query_PaymentProviderPayPalSmartButton__fae6504e` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_brick_query_PaymentProviderPayPalSmartButton__fae6504e` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_brick_query_SaleInformation_AP`; CREATE TABLE `object_brick_query_SaleInformation_AP` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `availabilityPieces` double DEFAULT NULL, `availabilityType` varchar(190) DEFAULT NULL, @@ -270,17 +270,17 @@ CREATE TABLE `object_brick_query_SaleInformation_AP` ( `priceInEUR` decimal(10,2) DEFAULT NULL, `milage__value` double DEFAULT NULL, `milage__unit` bigint(20) DEFAULT NULL, - PRIMARY KEY (`o_id`,`fieldname`), - KEY `o_id` (`o_id`), + PRIMARY KEY (`id`,`fieldname`), + KEY `id` (`id`), KEY `fieldname` (`fieldname`), - CONSTRAINT `fk_object_brick_query_SaleInformation_AP__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_brick_query_SaleInformation_AP__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_brick_query_SaleInformation_CAR`; CREATE TABLE `object_brick_query_SaleInformation_CAR` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `availabilityPieces` double DEFAULT NULL, `availabilityType` varchar(190) DEFAULT NULL, @@ -288,46 +288,46 @@ CREATE TABLE `object_brick_query_SaleInformation_CAR` ( `priceInEUR` decimal(10,2) DEFAULT NULL, `milage__value` double DEFAULT NULL, `milage__unit` bigint(20) DEFAULT NULL, - PRIMARY KEY (`o_id`,`fieldname`), - KEY `o_id` (`o_id`), + PRIMARY KEY (`id`,`fieldname`), + KEY `id` (`id`), KEY `fieldname` (`fieldname`), - CONSTRAINT `fk_object_brick_query_SaleInformation_CAR__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_brick_query_SaleInformation_CAR__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_brick_query_Transmission_CAR`; CREATE TABLE `object_brick_query_Transmission_CAR` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `wheelDrive` varchar(190) DEFAULT NULL, - PRIMARY KEY (`o_id`,`fieldname`), - KEY `o_id` (`o_id`), + PRIMARY KEY (`id`,`fieldname`), + KEY `id` (`id`), KEY `fieldname` (`fieldname`), - CONSTRAINT `fk_object_brick_query_Transmission_CAR__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_brick_query_Transmission_CAR__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_brick_store_Bodywork_CAR`; CREATE TABLE `object_brick_store_Bodywork_CAR` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `numberOfDoors` bigint(20) DEFAULT NULL, `numberOfSeats` bigint(20) DEFAULT NULL, `cargoCapacity__value` double DEFAULT NULL, `cargoCapacity__unit` bigint(20) DEFAULT NULL, - PRIMARY KEY (`o_id`,`fieldname`), - KEY `o_id` (`o_id`), + PRIMARY KEY (`id`,`fieldname`), + KEY `id` (`id`), KEY `fieldname` (`fieldname`), - CONSTRAINT `fk_object_brick_store_Bodywork_CAR__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_brick_store_Bodywork_CAR__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_brick_store_Dimensions_CAR`; CREATE TABLE `object_brick_store_Dimensions_CAR` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `length__value` double DEFAULT NULL, `length__unit` bigint(20) DEFAULT NULL, @@ -337,17 +337,17 @@ CREATE TABLE `object_brick_store_Dimensions_CAR` ( `wheelbase__unit` bigint(20) DEFAULT NULL, `weight__value` double DEFAULT NULL, `weight__unit` bigint(20) DEFAULT NULL, - PRIMARY KEY (`o_id`,`fieldname`), - KEY `o_id` (`o_id`), + PRIMARY KEY (`id`,`fieldname`), + KEY `id` (`id`), KEY `fieldname` (`fieldname`), - CONSTRAINT `fk_object_brick_store_Dimensions_CAR__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_brick_store_Dimensions_CAR__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_brick_store_Engine_CAR`; CREATE TABLE `object_brick_store_Engine_CAR` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `cylinders` bigint(20) DEFAULT NULL, `capacity__value` double DEFAULT NULL, @@ -355,48 +355,48 @@ CREATE TABLE `object_brick_store_Engine_CAR` ( `power__value` double DEFAULT NULL, `power__unit` bigint(20) DEFAULT NULL, `engineLocation` varchar(190) DEFAULT NULL, - PRIMARY KEY (`o_id`,`fieldname`), - KEY `o_id` (`o_id`), + PRIMARY KEY (`id`,`fieldname`), + KEY `id` (`id`), KEY `fieldname` (`fieldname`), - CONSTRAINT `fk_object_brick_store_Engine_CAR__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_brick_store_Engine_CAR__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_brick_store_OAuth1Token_3`; CREATE TABLE `object_brick_store_OAuth1Token_3` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `token` longtext DEFAULT NULL, `tokenSecret` longtext DEFAULT NULL, - PRIMARY KEY (`o_id`,`fieldname`), - KEY `o_id` (`o_id`), + PRIMARY KEY (`id`,`fieldname`), + KEY `id` (`id`), KEY `fieldname` (`fieldname`), - CONSTRAINT `fk_object_brick_store_OAuth1Token_3__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_brick_store_OAuth1Token_3__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_brick_store_OAuth2Token_3`; CREATE TABLE `object_brick_store_OAuth2Token_3` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `accessToken` longtext DEFAULT NULL, `tokenType` varchar(190) DEFAULT NULL, `expiresAt` varchar(190) DEFAULT NULL, `refreshToken` longtext DEFAULT NULL, `scope` varchar(190) DEFAULT NULL, - PRIMARY KEY (`o_id`,`fieldname`), - KEY `o_id` (`o_id`), + PRIMARY KEY (`id`,`fieldname`), + KEY `id` (`id`), KEY `fieldname` (`fieldname`), - CONSTRAINT `fk_object_brick_store_OAuth2Token_3__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_brick_store_OAuth2Token_3__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO`; CREATE TABLE `object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO` ( - `o_id` int(11) unsigned NOT NULL DEFAULT 0, + `id` int(11) unsigned NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `configurationKey` varchar(190) DEFAULT NULL, `auth_orderID` varchar(255) DEFAULT NULL, @@ -404,17 +404,17 @@ CREATE TABLE `object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO` ( `auth_email_address` varchar(255) DEFAULT NULL, `auth_given_name` varchar(255) DEFAULT NULL, `auth_surname` varchar(255) DEFAULT NULL, - PRIMARY KEY (`o_id`,`fieldname`), - KEY `o_id` (`o_id`), + PRIMARY KEY (`id`,`fieldname`), + KEY `id` (`id`), KEY `fieldname` (`fieldname`), - CONSTRAINT `fk_object_brick_store_PaymentProviderPayPalSmartButton__d52c4917` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_brick_store_PaymentProviderPayPalSmartButton__d52c4917` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_brick_store_SaleInformation_AP`; CREATE TABLE `object_brick_store_SaleInformation_AP` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `availabilityPieces` double DEFAULT NULL, `availabilityType` varchar(190) DEFAULT NULL, @@ -422,17 +422,17 @@ CREATE TABLE `object_brick_store_SaleInformation_AP` ( `priceInEUR` decimal(10,2) DEFAULT NULL, `milage__value` double DEFAULT NULL, `milage__unit` bigint(20) DEFAULT NULL, - PRIMARY KEY (`o_id`,`fieldname`), - KEY `o_id` (`o_id`), + PRIMARY KEY (`id`,`fieldname`), + KEY `id` (`id`), KEY `fieldname` (`fieldname`), - CONSTRAINT `fk_object_brick_store_SaleInformation_AP__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_brick_store_SaleInformation_AP__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_brick_store_SaleInformation_CAR`; CREATE TABLE `object_brick_store_SaleInformation_CAR` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `availabilityPieces` double DEFAULT NULL, `availabilityType` varchar(190) DEFAULT NULL, @@ -440,30 +440,30 @@ CREATE TABLE `object_brick_store_SaleInformation_CAR` ( `priceInEUR` decimal(10,2) DEFAULT NULL, `milage__value` double DEFAULT NULL, `milage__unit` bigint(20) DEFAULT NULL, - PRIMARY KEY (`o_id`,`fieldname`), - KEY `o_id` (`o_id`), + PRIMARY KEY (`id`,`fieldname`), + KEY `id` (`id`), KEY `fieldname` (`fieldname`), - CONSTRAINT `fk_object_brick_store_SaleInformation_CAR__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_brick_store_SaleInformation_CAR__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_brick_store_Transmission_CAR`; CREATE TABLE `object_brick_store_Transmission_CAR` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `wheelDrive` varchar(190) DEFAULT NULL, - PRIMARY KEY (`o_id`,`fieldname`), - KEY `o_id` (`o_id`), + PRIMARY KEY (`id`,`fieldname`), + KEY `id` (`id`), KEY `fieldname` (`fieldname`), - CONSTRAINT `fk_object_brick_store_Transmission_CAR__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_brick_store_Transmission_CAR__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_classificationstore_data_AP`; CREATE TABLE `object_classificationstore_data_AP` ( - `o_id` int(11) unsigned NOT NULL, + `id` int(11) unsigned NOT NULL, `collectionId` bigint(20) DEFAULT NULL, `groupId` bigint(20) NOT NULL, `keyId` bigint(20) NOT NULL, @@ -472,39 +472,39 @@ CREATE TABLE `object_classificationstore_data_AP` ( `fieldname` varchar(70) NOT NULL, `language` varchar(10) NOT NULL, `type` varchar(50) DEFAULT NULL, - PRIMARY KEY (`o_id`,`fieldname`,`groupId`,`keyId`,`language`), + PRIMARY KEY (`id`,`fieldname`,`groupId`,`keyId`,`language`), KEY `keyId` (`keyId`), KEY `language` (`language`), - CONSTRAINT `fk_object_classificationstore_data_AP__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_classificationstore_data_AP__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_classificationstore_groups_AP`; CREATE TABLE `object_classificationstore_groups_AP` ( - `o_id` int(11) unsigned NOT NULL, + `id` int(11) unsigned NOT NULL, `groupId` bigint(20) NOT NULL, `fieldname` varchar(70) NOT NULL, - PRIMARY KEY (`o_id`,`fieldname`,`groupId`), - CONSTRAINT `fk_object_classificationstore_groups_AP__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + PRIMARY KEY (`id`,`fieldname`,`groupId`), + CONSTRAINT `fk_object_classificationstore_groups_AP__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_collection_FilterCategoryMultiselect_EF_FD`; CREATE TABLE `object_collection_FilterCategoryMultiselect_EF_FD` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `index` int(11) NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `useAndCondition` tinyint(1) DEFAULT NULL, `includeParentCategories` tinyint(1) DEFAULT NULL, `scriptPath` varchar(255) DEFAULT NULL, `label` varchar(255) DEFAULT NULL, - PRIMARY KEY (`o_id`,`index`,`fieldname`), + PRIMARY KEY (`id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`), - KEY `IDX_28C299ABDB01246B` (`o_id`), - CONSTRAINT `fk_object_collection_FilterCategoryMultiselect_EF_FD__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_28C299ABDB01246B` (`id`), + CONSTRAINT `fk_object_collection_FilterCategoryMultiselect_EF_FD__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -521,24 +521,24 @@ CREATE TABLE `object_collection_FilterCategoryMultiselect_localized_EF_FD` ( KEY `fieldname` (`fieldname`), KEY `language` (`language`), KEY `IDX_8C2E3279A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_collection_FilterCategoryMultiselect_localize_4abb1d7a` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_collection_FilterCategoryMultiselect_localize_4abb1d7a` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_collection_FilterCategory_EF_FD`; CREATE TABLE `object_collection_FilterCategory_EF_FD` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `index` int(11) NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `includeParentCategories` tinyint(1) DEFAULT NULL, `scriptPath` varchar(255) DEFAULT NULL, `label` varchar(255) DEFAULT NULL, - PRIMARY KEY (`o_id`,`index`,`fieldname`), + PRIMARY KEY (`id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`), - KEY `IDX_9F24266CDB01246B` (`o_id`), - CONSTRAINT `fk_object_collection_FilterCategory_EF_FD__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_9F24266CDB01246B` (`id`), + CONSTRAINT `fk_object_collection_FilterCategory_EF_FD__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -555,14 +555,14 @@ CREATE TABLE `object_collection_FilterCategory_localized_EF_FD` ( KEY `fieldname` (`fieldname`), KEY `language` (`language`), KEY `IDX_21FD7525A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_collection_FilterCategory_localized_EF_FD__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_collection_FilterCategory_localized_EF_FD__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_collection_FilterInputfield_EF_FD`; CREATE TABLE `object_collection_FilterInputfield_EF_FD` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `index` int(11) NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `preSelect` varchar(255) DEFAULT NULL, @@ -571,11 +571,11 @@ CREATE TABLE `object_collection_FilterInputfield_EF_FD` ( `field__field` varchar(200) DEFAULT NULL, `field__preSelect` text DEFAULT NULL, `label` varchar(255) DEFAULT NULL, - PRIMARY KEY (`o_id`,`index`,`fieldname`), + PRIMARY KEY (`id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`), - KEY `IDX_699D2D53DB01246B` (`o_id`), - CONSTRAINT `fk_object_collection_FilterInputfield_EF_FD__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_699D2D53DB01246B` (`id`), + CONSTRAINT `fk_object_collection_FilterInputfield_EF_FD__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -592,14 +592,14 @@ CREATE TABLE `object_collection_FilterInputfield_localized_EF_FD` ( KEY `fieldname` (`fieldname`), KEY `language` (`language`), KEY `IDX_F447F022A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_collection_FilterInputfield_localized_EF_FD__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_collection_FilterInputfield_localized_EF_FD__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_collection_FilterMultiRelation_EF_FD`; CREATE TABLE `object_collection_FilterMultiRelation_EF_FD` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `index` int(11) NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `field__tenant` varchar(100) DEFAULT NULL, @@ -608,11 +608,11 @@ CREATE TABLE `object_collection_FilterMultiRelation_EF_FD` ( `useAndCondition` tinyint(1) DEFAULT NULL, `scriptPath` varchar(255) DEFAULT NULL, `label` varchar(255) DEFAULT NULL, - PRIMARY KEY (`o_id`,`index`,`fieldname`), + PRIMARY KEY (`id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`), - KEY `IDX_5C39D125DB01246B` (`o_id`), - CONSTRAINT `fk_object_collection_FilterMultiRelation_EF_FD__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_5C39D125DB01246B` (`id`), + CONSTRAINT `fk_object_collection_FilterMultiRelation_EF_FD__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -629,14 +629,14 @@ CREATE TABLE `object_collection_FilterMultiRelation_localized_EF_FD` ( KEY `fieldname` (`fieldname`), KEY `language` (`language`), KEY `IDX_AB8E56F0A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_collection_FilterMultiRelation_localized_EF_FD__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_collection_FilterMultiRelation_localized_EF_FD__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_collection_FilterMultiSelectFromMultiSelect_EF_FD`; CREATE TABLE `object_collection_FilterMultiSelectFromMultiSelect_EF_FD` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `index` int(11) NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `label` varchar(255) DEFAULT NULL, @@ -645,18 +645,18 @@ CREATE TABLE `object_collection_FilterMultiSelectFromMultiSelect_EF_FD` ( `field__preSelect` text DEFAULT NULL, `scriptPath` varchar(255) DEFAULT NULL, `UseAndCondition` tinyint(1) DEFAULT NULL, - PRIMARY KEY (`o_id`,`index`,`fieldname`), + PRIMARY KEY (`id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`), - KEY `IDX_D53E1B56DB01246B` (`o_id`), - CONSTRAINT `fk_object_collection_FilterMultiSelectFromMultiSelect_E_1eaf0561` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_D53E1B56DB01246B` (`id`), + CONSTRAINT `fk_object_collection_FilterMultiSelectFromMultiSelect_E_1eaf0561` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_collection_FilterMultiSelect_EF_FD`; CREATE TABLE `object_collection_FilterMultiSelect_EF_FD` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `index` int(11) NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `field__tenant` varchar(100) DEFAULT NULL, @@ -665,11 +665,11 @@ CREATE TABLE `object_collection_FilterMultiSelect_EF_FD` ( `scriptPath` varchar(255) DEFAULT NULL, `UseAndCondition` tinyint(1) DEFAULT NULL, `label` varchar(255) DEFAULT NULL, - PRIMARY KEY (`o_id`,`index`,`fieldname`), + PRIMARY KEY (`id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`), - KEY `IDX_99B478ADB01246B` (`o_id`), - CONSTRAINT `fk_object_collection_FilterMultiSelect_EF_FD__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_99B478ADB01246B` (`id`), + CONSTRAINT `fk_object_collection_FilterMultiSelect_EF_FD__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -686,14 +686,14 @@ CREATE TABLE `object_collection_FilterMultiSelect_localized_EF_FD` ( KEY `fieldname` (`fieldname`), KEY `language` (`language`), KEY `IDX_D3D71AF9A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_collection_FilterMultiSelect_localized_EF_FD__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_collection_FilterMultiSelect_localized_EF_FD__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_collection_FilterNumberRangeSelection_EF_FD`; CREATE TABLE `object_collection_FilterNumberRangeSelection_EF_FD` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `index` int(11) NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `field__tenant` varchar(100) DEFAULT NULL, @@ -712,11 +712,11 @@ CREATE TABLE `object_collection_FilterNumberRangeSelection_EF_FD` ( `scriptPath` varchar(255) DEFAULT NULL, `unit` varchar(255) DEFAULT NULL, `label` varchar(255) DEFAULT NULL, - PRIMARY KEY (`o_id`,`index`,`fieldname`), + PRIMARY KEY (`id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`), - KEY `IDX_45C7200CDB01246B` (`o_id`), - CONSTRAINT `fk_object_collection_FilterNumberRangeSelection_EF_FD__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_45C7200CDB01246B` (`id`), + CONSTRAINT `fk_object_collection_FilterNumberRangeSelection_EF_FD__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -733,14 +733,14 @@ CREATE TABLE `object_collection_FilterNumberRangeSelection_localized_EF_FD` ( KEY `fieldname` (`fieldname`), KEY `language` (`language`), KEY `IDX_81EC7656A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_collection_FilterNumberRangeSelection_localiz_15c765c5` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_collection_FilterNumberRangeSelection_localiz_15c765c5` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_collection_FilterNumberRange_EF_FD`; CREATE TABLE `object_collection_FilterNumberRange_EF_FD` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `index` int(11) NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `field__tenant` varchar(100) DEFAULT NULL, @@ -752,11 +752,11 @@ CREATE TABLE `object_collection_FilterNumberRange_EF_FD` ( `preSelectTo` double DEFAULT NULL, `scriptPath` varchar(255) DEFAULT NULL, `label` varchar(255) DEFAULT NULL, - PRIMARY KEY (`o_id`,`index`,`fieldname`), + PRIMARY KEY (`id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`), - KEY `IDX_57BD4C22DB01246B` (`o_id`), - CONSTRAINT `fk_object_collection_FilterNumberRange_EF_FD__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_57BD4C22DB01246B` (`id`), + CONSTRAINT `fk_object_collection_FilterNumberRange_EF_FD__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -773,14 +773,14 @@ CREATE TABLE `object_collection_FilterNumberRange_localized_EF_FD` ( KEY `fieldname` (`fieldname`), KEY `language` (`language`), KEY `IDX_A7FE373AA94707C7` (`ooo_id`), - CONSTRAINT `fk_object_collection_FilterNumberRange_localized_EF_FD__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_collection_FilterNumberRange_localized_EF_FD__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_collection_FilterRelation_EF_FD`; CREATE TABLE `object_collection_FilterRelation_EF_FD` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `index` int(11) NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `field__tenant` varchar(100) DEFAULT NULL, @@ -788,11 +788,11 @@ CREATE TABLE `object_collection_FilterRelation_EF_FD` ( `field__preSelect` text DEFAULT NULL, `scriptPath` varchar(255) DEFAULT NULL, `label` varchar(255) DEFAULT NULL, - PRIMARY KEY (`o_id`,`index`,`fieldname`), + PRIMARY KEY (`id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`), - KEY `IDX_E4A9BCBBDB01246B` (`o_id`), - CONSTRAINT `fk_object_collection_FilterRelation_EF_FD__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_E4A9BCBBDB01246B` (`id`), + CONSTRAINT `fk_object_collection_FilterRelation_EF_FD__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -809,14 +809,14 @@ CREATE TABLE `object_collection_FilterRelation_localized_EF_FD` ( KEY `fieldname` (`fieldname`), KEY `language` (`language`), KEY `IDX_E5DA3D6FA94707C7` (`ooo_id`), - CONSTRAINT `fk_object_collection_FilterRelation_localized_EF_FD__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_collection_FilterRelation_localized_EF_FD__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_collection_FilterSelectFromMultiSelect_EF_FD`; CREATE TABLE `object_collection_FilterSelectFromMultiSelect_EF_FD` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `index` int(11) NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `field__tenant` varchar(100) DEFAULT NULL, @@ -824,11 +824,11 @@ CREATE TABLE `object_collection_FilterSelectFromMultiSelect_EF_FD` ( `field__preSelect` text DEFAULT NULL, `scriptPath` varchar(255) DEFAULT NULL, `label` varchar(255) DEFAULT NULL, - PRIMARY KEY (`o_id`,`index`,`fieldname`), + PRIMARY KEY (`id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`), - KEY `IDX_C97EC354DB01246B` (`o_id`), - CONSTRAINT `fk_object_collection_FilterSelectFromMultiSelect_EF_FD__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_C97EC354DB01246B` (`id`), + CONSTRAINT `fk_object_collection_FilterSelectFromMultiSelect_EF_FD__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -845,14 +845,14 @@ CREATE TABLE `object_collection_FilterSelectFromMultiSelect_localized_EF_FD` ( KEY `fieldname` (`fieldname`), KEY `language` (`language`), KEY `IDX_AE9B40CEA94707C7` (`ooo_id`), - CONSTRAINT `fk_object_collection_FilterSelectFromMultiSelect_locali_66ddb75e` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_collection_FilterSelectFromMultiSelect_locali_66ddb75e` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_collection_FilterSelect_EF_FD`; CREATE TABLE `object_collection_FilterSelect_EF_FD` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `index` int(11) NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `field__tenant` varchar(100) DEFAULT NULL, @@ -860,11 +860,11 @@ CREATE TABLE `object_collection_FilterSelect_EF_FD` ( `field__preSelect` text DEFAULT NULL, `scriptPath` varchar(255) DEFAULT NULL, `label` varchar(255) DEFAULT NULL, - PRIMARY KEY (`o_id`,`index`,`fieldname`), + PRIMARY KEY (`id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`), - KEY `IDX_C3E5FD75DB01246B` (`o_id`), - CONSTRAINT `fk_object_collection_FilterSelect_EF_FD__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_C3E5FD75DB01246B` (`id`), + CONSTRAINT `fk_object_collection_FilterSelect_EF_FD__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -881,21 +881,21 @@ CREATE TABLE `object_collection_FilterSelect_localized_EF_FD` ( KEY `fieldname` (`fieldname`), KEY `language` (`language`), KEY `IDX_3E6DC489A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_collection_FilterSelect_localized_EF_FD__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_collection_FilterSelect_localized_EF_FD__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_collection_NewsCars_NE`; CREATE TABLE `object_collection_NewsCars_NE` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `index` int(11) NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', - PRIMARY KEY (`o_id`,`index`,`fieldname`), + PRIMARY KEY (`id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`), - KEY `IDX_B3E5E5DCDB01246B` (`o_id`), - CONSTRAINT `fk_object_collection_NewsCars_NE__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_B3E5E5DCDB01246B` (`id`), + CONSTRAINT `fk_object_collection_NewsCars_NE__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -912,22 +912,22 @@ CREATE TABLE `object_collection_NewsCars_localized_NE` ( KEY `fieldname` (`fieldname`), KEY `language` (`language`), KEY `IDX_34B3B198A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_collection_NewsCars_localized_NE__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_collection_NewsCars_localized_NE__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_collection_NewsLinks_NE`; CREATE TABLE `object_collection_NewsLinks_NE` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `index` int(11) NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `links` longtext DEFAULT NULL, - PRIMARY KEY (`o_id`,`index`,`fieldname`), + PRIMARY KEY (`id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`), - KEY `IDX_81DD63EADB01246B` (`o_id`), - CONSTRAINT `fk_object_collection_NewsLinks_NE__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_81DD63EADB01246B` (`id`), + CONSTRAINT `fk_object_collection_NewsLinks_NE__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -944,21 +944,21 @@ CREATE TABLE `object_collection_NewsLinks_localized_NE` ( KEY `fieldname` (`fieldname`), KEY `language` (`language`), KEY `IDX_2DC5C691A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_collection_NewsLinks_localized_NE__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_collection_NewsLinks_localized_NE__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_collection_NewsText_NE`; CREATE TABLE `object_collection_NewsText_NE` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `index` int(11) NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', - PRIMARY KEY (`o_id`,`index`,`fieldname`), + PRIMARY KEY (`id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`), - KEY `IDX_5D6A2592DB01246B` (`o_id`), - CONSTRAINT `fk_object_collection_NewsText_NE__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_5D6A2592DB01246B` (`id`), + CONSTRAINT `fk_object_collection_NewsText_NE__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -975,48 +975,48 @@ CREATE TABLE `object_collection_NewsText_localized_NE` ( KEY `fieldname` (`fieldname`), KEY `language` (`language`), KEY `IDX_D583CFFFA94707C7` (`ooo_id`), - CONSTRAINT `fk_object_collection_NewsText_localized_NE__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_collection_NewsText_localized_NE__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_collection_OrderByFields_EF_FD`; CREATE TABLE `object_collection_OrderByFields_EF_FD` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `index` int(11) NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `field` varchar(190) DEFAULT NULL, `direction` varchar(190) DEFAULT NULL, - PRIMARY KEY (`o_id`,`index`,`fieldname`), + PRIMARY KEY (`id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`), - KEY `IDX_8139105FDB01246B` (`o_id`), - CONSTRAINT `fk_object_collection_OrderByFields_EF_FD__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_8139105FDB01246B` (`id`), + CONSTRAINT `fk_object_collection_OrderByFields_EF_FD__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_collection_OrderPriceModifications_EF_OSO`; CREATE TABLE `object_collection_OrderPriceModifications_EF_OSO` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `index` int(11) NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `name` varchar(255) DEFAULT NULL, `netAmount` decimal(19,4) DEFAULT NULL, `amount` decimal(19,4) DEFAULT NULL, `pricingRuleId` bigint(20) DEFAULT NULL, - PRIMARY KEY (`o_id`,`index`,`fieldname`), + PRIMARY KEY (`id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`), - KEY `IDX_598F73C2DB01246B` (`o_id`), - CONSTRAINT `fk_object_collection_OrderPriceModifications_EF_OSO__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_598F73C2DB01246B` (`id`), + CONSTRAINT `fk_object_collection_OrderPriceModifications_EF_OSO__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_collection_PaymentInfo_EF_OSO`; CREATE TABLE `object_collection_PaymentInfo_EF_OSO` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `index` int(11) NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `paymentStart` bigint(20) DEFAULT NULL, @@ -1028,26 +1028,26 @@ CREATE TABLE `object_collection_PaymentInfo_EF_OSO` ( `providerData` longtext DEFAULT NULL, `provider_paypal_amount` varchar(255) DEFAULT NULL, `provider_paypal_PaymentType` varchar(255) DEFAULT NULL, - PRIMARY KEY (`o_id`,`index`,`fieldname`), + PRIMARY KEY (`id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`), - KEY `IDX_B606429DDB01246B` (`o_id`), - CONSTRAINT `fk_object_collection_PaymentInfo_EF_OSO__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_B606429DDB01246B` (`id`), + CONSTRAINT `fk_object_collection_PaymentInfo_EF_OSO__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_collection_PricingRule_EF_OSOI`; CREATE TABLE `object_collection_PricingRule_EF_OSOI` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `index` int(11) NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `ruleId` double DEFAULT NULL, - PRIMARY KEY (`o_id`,`index`,`fieldname`), + PRIMARY KEY (`id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`), - KEY `IDX_9E956274DB01246B` (`o_id`), - CONSTRAINT `fk_object_collection_PricingRule_EF_OSOI__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_9E956274DB01246B` (`id`), + CONSTRAINT `fk_object_collection_PricingRule_EF_OSOI__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1064,38 +1064,38 @@ CREATE TABLE `object_collection_PricingRule_localized_EF_OSOI` ( KEY `fieldname` (`fieldname`), KEY `language` (`language`), KEY `IDX_C001B98BA94707C7` (`ooo_id`), - CONSTRAINT `fk_object_collection_PricingRule_localized_EF_OSOI__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_collection_PricingRule_localized_EF_OSOI__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_collection_SimilarityField_EF_FD`; CREATE TABLE `object_collection_SimilarityField_EF_FD` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `index` int(11) NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `field` varchar(190) DEFAULT NULL, `weight` double DEFAULT NULL, - PRIMARY KEY (`o_id`,`index`,`fieldname`), + PRIMARY KEY (`id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`), - KEY `IDX_3FE457BADB01246B` (`o_id`), - CONSTRAINT `fk_object_collection_SimilarityField_EF_FD__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_3FE457BADB01246B` (`id`), + CONSTRAINT `fk_object_collection_SimilarityField_EF_FD__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_collection_TaxEntry_EF_OSTC`; CREATE TABLE `object_collection_TaxEntry_EF_OSTC` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `index` int(11) NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `percent` double DEFAULT NULL, - PRIMARY KEY (`o_id`,`index`,`fieldname`), + PRIMARY KEY (`id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`), - KEY `IDX_CE94A1DDB01246B` (`o_id`), - CONSTRAINT `fk_object_collection_TaxEntry_EF_OSTC__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_CE94A1DDB01246B` (`id`), + CONSTRAINT `fk_object_collection_TaxEntry_EF_OSTC__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1112,14 +1112,14 @@ CREATE TABLE `object_collection_TaxEntry_localized_EF_OSTC` ( KEY `fieldname` (`fieldname`), KEY `language` (`language`), KEY `IDX_81B466B2A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_collection_TaxEntry_localized_EF_OSTC__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_collection_TaxEntry_localized_EF_OSTC__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_collection_VoucherTokenTypePattern_EF_OSVS`; CREATE TABLE `object_collection_VoucherTokenTypePattern_EF_OSVS` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `index` int(11) NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `count` bigint(20) DEFAULT NULL, @@ -1130,28 +1130,28 @@ CREATE TABLE `object_collection_VoucherTokenTypePattern_EF_OSVS` ( `separatorCount` decimal(64,0) DEFAULT NULL, `allowOncePerCart` tinyint(1) DEFAULT NULL, `onlyTokenPerCart` tinyint(1) DEFAULT NULL, - PRIMARY KEY (`o_id`,`index`,`fieldname`), + PRIMARY KEY (`id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`), - KEY `IDX_F37B567DDB01246B` (`o_id`), - CONSTRAINT `fk_object_collection_VoucherTokenTypePattern_EF_OSVS__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_F37B567DDB01246B` (`id`), + CONSTRAINT `fk_object_collection_VoucherTokenTypePattern_EF_OSVS__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_collection_VoucherTokenTypeSingle_EF_OSVS`; CREATE TABLE `object_collection_VoucherTokenTypeSingle_EF_OSVS` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `index` int(11) NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', `token` varchar(255) DEFAULT NULL, `usages` decimal(64,0) DEFAULT NULL, `onlyTokenPerCart` tinyint(1) DEFAULT NULL, - PRIMARY KEY (`o_id`,`index`,`fieldname`), + PRIMARY KEY (`id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`), - KEY `IDX_27350A8BDB01246B` (`o_id`), - CONSTRAINT `fk_object_collection_VoucherTokenTypeSingle_EF_OSVS__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_27350A8BDB01246B` (`id`), + CONSTRAINT `fk_object_collection_VoucherTokenTypeSingle_EF_OSVS__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1164,7 +1164,7 @@ CREATE TABLE `object_localized_data_AP` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_783A5A3BA94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_data_AP__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_data_AP__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1177,7 +1177,7 @@ CREATE TABLE `object_localized_data_BS` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_CA1E5842A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_data_BS__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_data_BS__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1191,7 +1191,7 @@ CREATE TABLE `object_localized_data_CA` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_20BC184BA94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_data_CA__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_data_CA__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1205,7 +1205,7 @@ CREATE TABLE `object_localized_data_CAR` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_B649FB55A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_data_CAR__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_data_CAR__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1219,7 +1219,7 @@ CREATE TABLE `object_localized_data_EV` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_F5353A0AA94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_data_EV__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_data_EV__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1233,7 +1233,7 @@ CREATE TABLE `object_localized_data_NE` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_927FA21FA94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_data_NE__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_data_NE__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1247,7 +1247,7 @@ CREATE TABLE `object_localized_query_AP_de` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_FCCC8968A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_query_AP_de__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_query_AP_de__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1261,7 +1261,7 @@ CREATE TABLE `object_localized_query_AP_en` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_720561A1A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_query_AP_en__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_query_AP_en__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1275,7 +1275,7 @@ CREATE TABLE `object_localized_query_AP_fr` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_4D296E2DA94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_query_AP_fr__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_query_AP_fr__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1288,7 +1288,7 @@ CREATE TABLE `object_localized_query_BS_de` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_A9D95C56A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_query_BS_de__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_query_BS_de__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1301,7 +1301,7 @@ CREATE TABLE `object_localized_query_BS_en` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_2710B49FA94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_query_BS_en__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_query_BS_en__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1314,7 +1314,7 @@ CREATE TABLE `object_localized_query_BS_fr` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_183CBB13A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_query_BS_fr__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_query_BS_fr__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1329,7 +1329,7 @@ CREATE TABLE `object_localized_query_CAR_de` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_7F48A36DA94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_query_CAR_de__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_query_CAR_de__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1344,7 +1344,7 @@ CREATE TABLE `object_localized_query_CAR_en` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_F1814BA4A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_query_CAR_en__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_query_CAR_en__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1359,7 +1359,7 @@ CREATE TABLE `object_localized_query_CAR_fr` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_CEAD4428A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_query_CAR_fr__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_query_CAR_fr__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1373,7 +1373,7 @@ CREATE TABLE `object_localized_query_CA_de` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_6EA9EAF2A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_query_CA_de__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_query_CA_de__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1387,7 +1387,7 @@ CREATE TABLE `object_localized_query_CA_en` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_E060023BA94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_query_CA_en__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_query_CA_en__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1401,7 +1401,7 @@ CREATE TABLE `object_localized_query_CA_fr` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_DF4C0DB7A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_query_CA_fr__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_query_CA_fr__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1415,7 +1415,7 @@ CREATE TABLE `object_localized_query_EV_de` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_2C277074A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_query_EV_de__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_query_EV_de__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1429,7 +1429,7 @@ CREATE TABLE `object_localized_query_EV_en` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_A2EE98BDA94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_query_EV_en__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_query_EV_en__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1443,7 +1443,7 @@ CREATE TABLE `object_localized_query_EV_fr` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_9DC29731A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_query_EV_fr__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_query_EV_fr__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1457,7 +1457,7 @@ CREATE TABLE `object_localized_query_NE_de` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_195BB914A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_query_NE_de__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_query_NE_de__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1471,7 +1471,7 @@ CREATE TABLE `object_localized_query_NE_en` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_979251DDA94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_query_NE_en__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_query_NE_en__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1485,14 +1485,14 @@ CREATE TABLE `object_localized_query_NE_fr` ( PRIMARY KEY (`ooo_id`,`language`), KEY `language` (`language`), KEY `IDX_A8BE5E51A94707C7` (`ooo_id`), - CONSTRAINT `fk_object_localized_query_NE_fr__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_localized_query_NE_fr__ooo_id` FOREIGN KEY (`ooo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `object_metadata_CU`; CREATE TABLE `object_metadata_CU` ( - `o_id` int(10) unsigned NOT NULL DEFAULT 0, + `id` int(10) unsigned NOT NULL DEFAULT 0, `dest_id` int(11) NOT NULL DEFAULT 0, `type` varchar(50) NOT NULL DEFAULT '', `fieldname` varchar(71) NOT NULL, @@ -1502,7 +1502,7 @@ CREATE TABLE `object_metadata_CU` ( `ownername` varchar(70) NOT NULL DEFAULT '', `position` varchar(70) NOT NULL DEFAULT '0', `index` int(11) unsigned NOT NULL DEFAULT 0, - PRIMARY KEY (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`ownertype`,`ownername`,`position`,`index`), + PRIMARY KEY (`id`,`dest_id`,`type`,`fieldname`,`column`,`ownertype`,`ownername`,`position`,`index`), KEY `dest_id` (`dest_id`), KEY `fieldname` (`fieldname`), KEY `column` (`column`), @@ -1510,8 +1510,8 @@ CREATE TABLE `object_metadata_CU` ( KEY `ownername` (`ownername`), KEY `position` (`position`), KEY `index` (`index`), - KEY `IDX_208F4545DB01246B` (`o_id`), - CONSTRAINT `fk_object_metadata_CU__o_id` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + KEY `IDX_208F4545DB01246B` (`id`), + CONSTRAINT `fk_object_metadata_CU__id` FOREIGN KEY (`id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1529,7 +1529,7 @@ CREATE TABLE `object_query_1` ( `exportNewsletterProvider` tinyint(1) DEFAULT NULL, PRIMARY KEY (`oo_id`), KEY `p_index_showAsFilter` (`showAsFilter`), - CONSTRAINT `fk_object_query_1__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_query_1__id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1548,7 +1548,7 @@ CREATE TABLE `object_query_2` ( `targetGroup` varchar(190) DEFAULT NULL, PRIMARY KEY (`oo_id`), KEY `p_index_reference` (`reference`), - CONSTRAINT `fk_object_query_2__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_query_2__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1564,7 +1564,7 @@ CREATE TABLE `object_query_3` ( PRIMARY KEY (`oo_id`), KEY `p_index_provider` (`provider`), KEY `p_index_identifier` (`identifier`), - CONSTRAINT `fk_object_query_3__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_query_3__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1576,7 +1576,7 @@ CREATE TABLE `object_query_4` ( `oo_className` varchar(255) DEFAULT 'TermSegmentBuilderDefinition', `name` varchar(190) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_query_4__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_query_4__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1597,7 +1597,7 @@ CREATE TABLE `object_query_5` ( `utm_term` varchar(190) DEFAULT NULL, `utm_content` varchar(190) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_query_5__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_query_5__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1621,7 +1621,7 @@ CREATE TABLE `object_query_AP` ( `categoryCode` varchar(190) DEFAULT NULL, `owner` varchar(190) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_query_AP__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_query_AP__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1632,7 +1632,7 @@ CREATE TABLE `object_query_BS` ( `oo_classId` varchar(50) DEFAULT 'BS', `oo_className` varchar(255) DEFAULT 'BodyStyle', PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_query_BS__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_query_BS__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1646,7 +1646,7 @@ CREATE TABLE `object_query_CA` ( `filterDefinition__id` int(11) DEFAULT NULL, `filterDefinition__type` enum('document','asset','object') DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_query_CA__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_query_CA__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1677,7 +1677,7 @@ CREATE TABLE `object_query_CAR` ( `saleInformationAvailable` varchar(190) DEFAULT NULL, `imagesAvailable` varchar(190) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_query_CAR__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_query_CAR__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1712,7 +1712,7 @@ CREATE TABLE `object_query_CU` ( `newsletterConfirmToken` varchar(190) DEFAULT NULL, PRIMARY KEY (`oo_id`), KEY `p_index_idEncoded` (`idEncoded`), - CONSTRAINT `fk_object_query_CU__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_query_CU__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1735,7 +1735,7 @@ CREATE TABLE `object_query_EF_FD` ( `crossSellingCategory__type` enum('document','asset','object') DEFAULT NULL, `similarityFieldsInheritance` varchar(190) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_query_EF_FD__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_query_EF_FD__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1783,7 +1783,7 @@ CREATE TABLE `object_query_EF_OSO` ( `cartHash` bigint(20) DEFAULT NULL, PRIMARY KEY (`oo_id`), KEY `p_index_cartId` (`cartId`), - CONSTRAINT `fk_object_query_EF_OSO__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_query_EF_OSO__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1805,7 +1805,7 @@ CREATE TABLE `object_query_EF_OSOI` ( `comment` longtext DEFAULT NULL, `subItems` text DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_query_EF_OSOI__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_query_EF_OSOI__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1817,7 +1817,7 @@ CREATE TABLE `object_query_EF_OSTC` ( `oo_className` varchar(255) DEFAULT 'OnlineShopTaxClass', `taxEntryCombinationType` varchar(190) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_query_EF_OSTC__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_query_EF_OSTC__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1829,7 +1829,7 @@ CREATE TABLE `object_query_EF_OSVS` ( `oo_className` varchar(255) DEFAULT 'OnlineShopVoucherSeries', `name` varchar(255) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_query_EF_OSVS__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_query_EF_OSVS__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1844,7 +1844,7 @@ CREATE TABLE `object_query_EF_OSVT` ( `voucherSeries__id` int(11) DEFAULT NULL, `voucherSeries__type` enum('document','asset','object') DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_query_EF_OSVT__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_query_EF_OSVT__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1859,7 +1859,7 @@ CREATE TABLE `object_query_EF_OTCP` ( `productGroup` varchar(190) DEFAULT NULL, `price` decimal(19,4) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_query_EF_OTCP__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_query_EF_OTCP__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1880,7 +1880,7 @@ CREATE TABLE `object_query_EF_OTO` ( `items` text DEFAULT NULL, `customItems` text DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_query_EF_OTO__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_query_EF_OTO__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1903,7 +1903,7 @@ CREATE TABLE `object_query_EF_OTOI` ( `comment` longtext DEFAULT NULL, `cartItemKey` varchar(255) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_query_EF_OTOI__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_query_EF_OTOI__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1929,7 +1929,7 @@ CREATE TABLE `object_query_EV` ( `contactAddress` longtext DEFAULT NULL, `cars` text DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_query_EV__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_query_EV__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1942,7 +1942,7 @@ CREATE TABLE `object_query_MA` ( `name` varchar(190) DEFAULT NULL, `logo` int(11) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_query_MA__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_query_MA__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1956,7 +1956,7 @@ CREATE TABLE `object_query_NE` ( `gallery__images` text DEFAULT NULL, `gallery__hotspots` longtext DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_query_NE__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_query_NE__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1980,7 +1980,7 @@ CREATE TABLE `object_relations_1` ( KEY `type` (`type`), KEY `ownername` (`ownername`), KEY `IDX_53B87ADFFF529AC` (`src_id`), - CONSTRAINT `fk_object_relations_1__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_relations_1__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2004,7 +2004,7 @@ CREATE TABLE `object_relations_2` ( KEY `type` (`type`), KEY `ownername` (`ownername`), KEY `IDX_CAB12B65FF529AC` (`src_id`), - CONSTRAINT `fk_object_relations_2__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_relations_2__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2028,7 +2028,7 @@ CREATE TABLE `object_relations_3` ( KEY `type` (`type`), KEY `ownername` (`ownername`), KEY `IDX_BDB61BF3FF529AC` (`src_id`), - CONSTRAINT `fk_object_relations_3__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_relations_3__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2052,7 +2052,7 @@ CREATE TABLE `object_relations_4` ( KEY `type` (`type`), KEY `ownername` (`ownername`), KEY `IDX_23D28E50FF529AC` (`src_id`), - CONSTRAINT `fk_object_relations_4__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_relations_4__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2076,7 +2076,7 @@ CREATE TABLE `object_relations_5` ( KEY `type` (`type`), KEY `ownername` (`ownername`), KEY `IDX_54D5BEC6FF529AC` (`src_id`), - CONSTRAINT `fk_object_relations_5__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_relations_5__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2100,7 +2100,7 @@ CREATE TABLE `object_relations_AP` ( KEY `type` (`type`), KEY `ownername` (`ownername`), KEY `IDX_8069B0B0FF529AC` (`src_id`), - CONSTRAINT `fk_object_relations_AP__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_relations_AP__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2124,7 +2124,7 @@ CREATE TABLE `object_relations_BS` ( KEY `type` (`type`), KEY `ownername` (`ownername`), KEY `IDX_324DB2C9FF529AC` (`src_id`), - CONSTRAINT `fk_object_relations_BS__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_relations_BS__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2148,7 +2148,7 @@ CREATE TABLE `object_relations_CA` ( KEY `type` (`type`), KEY `ownername` (`ownername`), KEY `IDX_D8EFF2C0FF529AC` (`src_id`), - CONSTRAINT `fk_object_relations_CA__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_relations_CA__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2172,7 +2172,7 @@ CREATE TABLE `object_relations_CAR` ( KEY `type` (`type`), KEY `ownername` (`ownername`), KEY `IDX_CCDBF217FF529AC` (`src_id`), - CONSTRAINT `fk_object_relations_CAR__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_relations_CAR__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2196,7 +2196,7 @@ CREATE TABLE `object_relations_CU` ( KEY `type` (`type`), KEY `ownername` (`ownername`), KEY `IDX_C23526BDFF529AC` (`src_id`), - CONSTRAINT `fk_object_relations_CU__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_relations_CU__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2220,7 +2220,7 @@ CREATE TABLE `object_relations_EF_FD` ( KEY `type` (`type`), KEY `ownername` (`ownername`), KEY `IDX_DA34FAC2FF529AC` (`src_id`), - CONSTRAINT `fk_object_relations_EF_FD__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_relations_EF_FD__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2244,7 +2244,7 @@ CREATE TABLE `object_relations_EF_OSO` ( KEY `type` (`type`), KEY `ownername` (`ownername`), KEY `IDX_4B839BF3FF529AC` (`src_id`), - CONSTRAINT `fk_object_relations_EF_OSO__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_relations_EF_OSO__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2268,7 +2268,7 @@ CREATE TABLE `object_relations_EF_OSOI` ( KEY `type` (`type`), KEY `ownername` (`ownername`), KEY `IDX_F9FD3684FF529AC` (`src_id`), - CONSTRAINT `fk_object_relations_EF_OSOI__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_relations_EF_OSOI__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2292,7 +2292,7 @@ CREATE TABLE `object_relations_EF_OSTC` ( KEY `type` (`type`), KEY `ownername` (`ownername`), KEY `IDX_B01E1400FF529AC` (`src_id`), - CONSTRAINT `fk_object_relations_EF_OSTC__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_relations_EF_OSTC__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2316,7 +2316,7 @@ CREATE TABLE `object_relations_EF_OSVS` ( KEY `type` (`type`), KEY `ownername` (`ownername`), KEY `IDX_9F9F66E6FF529AC` (`src_id`), - CONSTRAINT `fk_object_relations_EF_OSVS__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_relations_EF_OSVS__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2340,7 +2340,7 @@ CREATE TABLE `object_relations_EF_OSVT` ( KEY `type` (`type`), KEY `ownername` (`ownername`), KEY `IDX_1FBF345FF529AC` (`src_id`), - CONSTRAINT `fk_object_relations_EF_OSVT__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_relations_EF_OSVT__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2364,7 +2364,7 @@ CREATE TABLE `object_relations_EF_OTCP` ( KEY `type` (`type`), KEY `ownername` (`ownername`), KEY `IDX_346CC7CDFF529AC` (`src_id`), - CONSTRAINT `fk_object_relations_EF_OTCP__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_relations_EF_OTCP__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2388,7 +2388,7 @@ CREATE TABLE `object_relations_EF_OTO` ( KEY `type` (`type`), KEY `ownername` (`ownername`), KEY `IDX_4C20D34FF529AC` (`src_id`), - CONSTRAINT `fk_object_relations_EF_OTO__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_relations_EF_OTO__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2412,7 +2412,7 @@ CREATE TABLE `object_relations_EF_OTOI` ( KEY `type` (`type`), KEY `ownername` (`ownername`), KEY `IDX_FCB22001FF529AC` (`src_id`), - CONSTRAINT `fk_object_relations_EF_OTOI__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_relations_EF_OTOI__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2436,7 +2436,7 @@ CREATE TABLE `object_relations_EV` ( KEY `type` (`type`), KEY `ownername` (`ownername`), KEY `IDX_D66D081FF529AC` (`src_id`), - CONSTRAINT `fk_object_relations_EV__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_relations_EV__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2460,7 +2460,7 @@ CREATE TABLE `object_relations_MA` ( KEY `type` (`type`), KEY `ownername` (`ownername`), KEY `IDX_466CDF4EFF529AC` (`src_id`), - CONSTRAINT `fk_object_relations_MA__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_relations_MA__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2484,7 +2484,7 @@ CREATE TABLE `object_relations_NE` ( KEY `type` (`type`), KEY `ownername` (`ownername`), KEY `IDX_6A2C4894FF529AC` (`src_id`), - CONSTRAINT `fk_object_relations_NE__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_relations_NE__src_id` FOREIGN KEY (`src_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2499,7 +2499,7 @@ CREATE TABLE `object_store_1` ( `filterSortOrder` bigint(20) DEFAULT NULL, `exportNewsletterProvider` tinyint(1) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_store_1__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_store_1__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2513,7 +2513,7 @@ CREATE TABLE `object_store_2` ( `useAsTargetGroup` tinyint(1) DEFAULT NULL, `targetGroup` varchar(190) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_store_2__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_store_2__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2525,7 +2525,7 @@ CREATE TABLE `object_store_3` ( `identifier` varchar(190) DEFAULT NULL, `profileData` longtext DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_store_3__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_store_3__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2536,7 +2536,7 @@ CREATE TABLE `object_store_4` ( `name` varchar(190) DEFAULT NULL, `terms` longtext DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_store_4__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_store_4__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2556,7 +2556,7 @@ CREATE TABLE `object_store_5` ( `utm_content` varchar(190) DEFAULT NULL, `attributes` longtext DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_store_5__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_store_5__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2570,7 +2570,7 @@ CREATE TABLE `object_store_AP` ( `categoryCode` varchar(190) DEFAULT NULL, `owner` varchar(190) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_store_AP__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_store_AP__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2579,7 +2579,7 @@ DROP TABLE IF EXISTS `object_store_BS`; CREATE TABLE `object_store_BS` ( `oo_id` int(10) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_store_BS__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_store_BS__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2588,7 +2588,7 @@ DROP TABLE IF EXISTS `object_store_CA`; CREATE TABLE `object_store_CA` ( `oo_id` int(10) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_store_CA__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_store_CA__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2609,7 +2609,7 @@ CREATE TABLE `object_store_CAR` ( `location__latitude` double DEFAULT NULL, `objectType` varchar(190) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_store_CAR__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_store_CAR__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2640,7 +2640,7 @@ CREATE TABLE `object_store_CU` ( `profiling__note` int(11) DEFAULT NULL, `newsletterConfirmToken` varchar(190) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_store_CU__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_store_CU__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2659,7 +2659,7 @@ CREATE TABLE `object_store_EF_FD` ( `filtersInheritance` varchar(190) DEFAULT NULL, `similarityFieldsInheritance` varchar(190) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_store_EF_FD__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_store_EF_FD__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2697,7 +2697,7 @@ CREATE TABLE `object_store_EF_OSO` ( `paymentReference` varchar(255) DEFAULT NULL, `cartHash` bigint(20) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_store_EF_OSO__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_store_EF_OSO__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2714,7 +2714,7 @@ CREATE TABLE `object_store_EF_OSOI` ( `taxInfo` longtext DEFAULT NULL, `comment` longtext DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_store_EF_OSOI__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_store_EF_OSOI__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2724,7 +2724,7 @@ CREATE TABLE `object_store_EF_OSTC` ( `oo_id` int(10) unsigned NOT NULL DEFAULT 0, `taxEntryCombinationType` varchar(190) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_store_EF_OSTC__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_store_EF_OSTC__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2734,7 +2734,7 @@ CREATE TABLE `object_store_EF_OSVS` ( `oo_id` int(10) unsigned NOT NULL DEFAULT 0, `name` varchar(255) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_store_EF_OSVS__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_store_EF_OSVS__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2745,7 +2745,7 @@ CREATE TABLE `object_store_EF_OSVT` ( `tokenId` double DEFAULT NULL, `token` varchar(255) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_store_EF_OSVT__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_store_EF_OSVT__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2758,7 +2758,7 @@ CREATE TABLE `object_store_EF_OTCP` ( `productGroup` varchar(190) DEFAULT NULL, `price` decimal(19,4) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_store_EF_OTCP__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_store_EF_OTCP__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2775,7 +2775,7 @@ CREATE TABLE `object_store_EF_OTO` ( `discount` decimal(19,4) DEFAULT NULL, `cartId` varchar(255) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_store_EF_OTO__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_store_EF_OTO__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2793,7 +2793,7 @@ CREATE TABLE `object_store_EF_OTOI` ( `comment` longtext DEFAULT NULL, `cartItemKey` varchar(255) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_store_EF_OTOI__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_store_EF_OTOI__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2816,7 +2816,7 @@ CREATE TABLE `object_store_EV` ( `contactEmail` varchar(190) DEFAULT NULL, `contactAddress` longtext DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_store_EV__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_store_EV__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2827,7 +2827,7 @@ CREATE TABLE `object_store_MA` ( `name` varchar(190) DEFAULT NULL, `logo` int(11) DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_store_MA__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_store_MA__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -2839,7 +2839,7 @@ CREATE TABLE `object_store_NE` ( `gallery__images` text DEFAULT NULL, `gallery__hotspots` longtext DEFAULT NULL, PRIMARY KEY (`oo_id`), - CONSTRAINT `fk_object_store_NE__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE + CONSTRAINT `fk_object_store_NE__oo_id` FOREIGN KEY (`oo_id`) REFERENCES `objects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -3109,12 +3109,12 @@ CREATE TABLE `plugin_datahub_workspaces_object` ( DROP TABLE IF EXISTS `shop_productindex`; CREATE TABLE `shop_productindex` ( - `o_id` int(11) NOT NULL DEFAULT 0, - `o_virtualProductId` int(11) NOT NULL, - `o_virtualProductActive` tinyint(1) NOT NULL, - `o_classId` int(11) NOT NULL, - `o_parentId` int(11) NOT NULL, - `o_type` varchar(20) NOT NULL, + `id` int(11) NOT NULL DEFAULT 0, + `virtualProductId` int(11) NOT NULL, + `virtualProductActive` tinyint(1) NOT NULL, + `classId` int(11) NOT NULL, + `parentId` int(11) NOT NULL, + `type` varchar(20) NOT NULL, `categoryIds` varchar(255) NOT NULL, `parentCategoryIds` varchar(255) NOT NULL, `priceSystemName` varchar(50) NOT NULL, @@ -3131,7 +3131,7 @@ CREATE TABLE `shop_productindex` ( `carClass` varchar(255) DEFAULT NULL, `power` double DEFAULT NULL, `manufacturer_name` varchar(255) DEFAULT NULL, - PRIMARY KEY (`o_id`), + PRIMARY KEY (`id`), FULLTEXT KEY `search` (`name`,`manufacturer_name`,`color`,`carClass`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; diff --git a/dump/data-1-bundle_outputdataconfigtoolkit_outputdefinition.sql b/dump/data-1-bundle_outputdataconfigtoolkit_outputdefinition.sql index afade422..76a7222b 100644 --- a/dump/data-1-bundle_outputdataconfigtoolkit_outputdefinition.sql +++ b/dump/data-1-bundle_outputdataconfigtoolkit_outputdefinition.sql @@ -1,89 +1,89 @@ SET NAMES utf8mb4; -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (1,1,'1','channel1',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (2,1,'1','channel2',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (3,1,'2','channel1',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (4,1,'2','channel2',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (5,1,'3','channel1',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (6,1,'3','channel2',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (7,1,'4','channel1',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (8,1,'4','channel2',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (9,1,'5','channel1',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (10,1,'5','channel2',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (11,1,'AP','channel1',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (12,1,'AP','channel2',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (13,1,'BS','channel1',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (14,1,'BS','channel2',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (15,1,'CA','channel1',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (16,1,'CA','channel2',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (17,1,'CAR','channel1',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (18,1,'CAR','channel2',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (19,1,'CU','channel1',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (20,1,'CU','channel2',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (21,1,'EF_FD','channel1',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (22,1,'EF_FD','channel2',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (23,1,'EF_OSO','channel1',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (24,1,'EF_OSO','channel2',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (25,1,'EF_OSOI','channel1',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (26,1,'EF_OSOI','channel2',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (27,1,'EF_OSTC','channel1',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (28,1,'EF_OSTC','channel2',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (29,1,'EF_OSVS','channel1',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (30,1,'EF_OSVS','channel2',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (31,1,'EF_OSVT','channel1',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (32,1,'EF_OSVT','channel2',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (33,1,'EF_OTCP','channel1',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (34,1,'EF_OTCP','channel2',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (35,1,'EF_OTO','channel1',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (36,1,'EF_OTO','channel2',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (37,1,'EF_OTOI','channel1',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (38,1,'EF_OTOI','channel2',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (39,1,'MA','channel1',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (40,1,'MA','channel2',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (41,1,'NE','channel1',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (42,1,'NE','channel2',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (43,1,'1','channel-marketplace',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (44,1,'1','channel-website',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (45,1,'2','channel-marketplace',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (46,1,'2','channel-website',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (47,1,'3','channel-marketplace',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (48,1,'3','channel-website',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (49,1,'4','channel-marketplace',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (50,1,'4','channel-website',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (51,1,'5','channel-marketplace',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (52,1,'5','channel-website',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (53,1,'AP','channel-marketplace',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (54,1,'AP','channel-website',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (55,1,'BS','channel-marketplace',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (56,1,'BS','channel-website',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (57,1,'CA','channel-marketplace',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (58,1,'CA','channel-website',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (59,1,'CAR','channel-marketplace',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (60,1,'CAR','channel-website',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (61,1,'CU','channel-marketplace',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (62,1,'CU','channel-website',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (63,1,'EF_FD','channel-marketplace',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (64,1,'EF_FD','channel-website',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (65,1,'EF_OSO','channel-marketplace',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (66,1,'EF_OSO','channel-website',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (67,1,'EF_OSOI','channel-marketplace',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (68,1,'EF_OSOI','channel-website',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (69,1,'EF_OSTC','channel-marketplace',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (70,1,'EF_OSTC','channel-website',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (71,1,'EF_OSVS','channel-marketplace',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (72,1,'EF_OSVS','channel-website',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (73,1,'EF_OSVT','channel-marketplace',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (74,1,'EF_OSVT','channel-website',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (75,1,'EF_OTCP','channel-marketplace',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (76,1,'EF_OTCP','channel-website',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (77,1,'EF_OTO','channel-marketplace',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (78,1,'EF_OTO','channel-website',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (79,1,'EF_OTOI','channel-marketplace',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (80,1,'EF_OTOI','channel-website',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (81,1,'MA','channel-marketplace',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (82,1,'MA','channel-website',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (83,1,'NE','channel-marketplace',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (84,1,'NE','channel-website',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (85,1,'EV','channel-marketplace',NULL); -INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`o_classId`,`channel`,`configuration`) VALUES (86,1,'EV','channel-website',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (1,1,'1','channel1',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (2,1,'1','channel2',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (3,1,'2','channel1',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (4,1,'2','channel2',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (5,1,'3','channel1',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (6,1,'3','channel2',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (7,1,'4','channel1',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (8,1,'4','channel2',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (9,1,'5','channel1',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (10,1,'5','channel2',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (11,1,'AP','channel1',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (12,1,'AP','channel2',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (13,1,'BS','channel1',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (14,1,'BS','channel2',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (15,1,'CA','channel1',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (16,1,'CA','channel2',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (17,1,'CAR','channel1',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (18,1,'CAR','channel2',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (19,1,'CU','channel1',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (20,1,'CU','channel2',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (21,1,'EF_FD','channel1',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (22,1,'EF_FD','channel2',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (23,1,'EF_OSO','channel1',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (24,1,'EF_OSO','channel2',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (25,1,'EF_OSOI','channel1',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (26,1,'EF_OSOI','channel2',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (27,1,'EF_OSTC','channel1',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (28,1,'EF_OSTC','channel2',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (29,1,'EF_OSVS','channel1',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (30,1,'EF_OSVS','channel2',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (31,1,'EF_OSVT','channel1',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (32,1,'EF_OSVT','channel2',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (33,1,'EF_OTCP','channel1',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (34,1,'EF_OTCP','channel2',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (35,1,'EF_OTO','channel1',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (36,1,'EF_OTO','channel2',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (37,1,'EF_OTOI','channel1',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (38,1,'EF_OTOI','channel2',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (39,1,'MA','channel1',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (40,1,'MA','channel2',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (41,1,'NE','channel1',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (42,1,'NE','channel2',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (43,1,'1','channel-marketplace',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (44,1,'1','channel-website',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (45,1,'2','channel-marketplace',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (46,1,'2','channel-website',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (47,1,'3','channel-marketplace',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (48,1,'3','channel-website',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (49,1,'4','channel-marketplace',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (50,1,'4','channel-website',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (51,1,'5','channel-marketplace',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (52,1,'5','channel-website',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (53,1,'AP','channel-marketplace',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (54,1,'AP','channel-website',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (55,1,'BS','channel-marketplace',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (56,1,'BS','channel-website',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (57,1,'CA','channel-marketplace',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (58,1,'CA','channel-website',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (59,1,'CAR','channel-marketplace',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (60,1,'CAR','channel-website',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (61,1,'CU','channel-marketplace',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (62,1,'CU','channel-website',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (63,1,'EF_FD','channel-marketplace',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (64,1,'EF_FD','channel-website',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (65,1,'EF_OSO','channel-marketplace',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (66,1,'EF_OSO','channel-website',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (67,1,'EF_OSOI','channel-marketplace',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (68,1,'EF_OSOI','channel-website',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (69,1,'EF_OSTC','channel-marketplace',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (70,1,'EF_OSTC','channel-website',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (71,1,'EF_OSVS','channel-marketplace',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (72,1,'EF_OSVS','channel-website',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (73,1,'EF_OSVT','channel-marketplace',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (74,1,'EF_OSVT','channel-website',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (75,1,'EF_OTCP','channel-marketplace',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (76,1,'EF_OTCP','channel-website',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (77,1,'EF_OTO','channel-marketplace',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (78,1,'EF_OTO','channel-website',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (79,1,'EF_OTOI','channel-marketplace',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (80,1,'EF_OTOI','channel-website',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (81,1,'MA','channel-marketplace',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (82,1,'MA','channel-website',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (83,1,'NE','channel-marketplace',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (84,1,'NE','channel-website',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (85,1,'EV','channel-marketplace',NULL); +INSERT INTO bundle_outputdataconfigtoolkit_outputdefinition (`id`,`o_id`,`classId`,`channel`,`configuration`) VALUES (86,1,'EV','channel-website',NULL); diff --git a/dump/data-1-documents_editables.sql b/dump/data-1-documents_editables.sql index 54f8bd97..a986b878 100644 --- a/dump/data-1-documents_editables.sql +++ b/dump/data-1-documents_editables.sql @@ -462,13 +462,13 @@ INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (79,' INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (79,'content:2.productteaser2','renderlet','a:3:{s:2:\"id\";i:87;s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:6:\"object\";}'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (79,'content:4.headline','input','Accessories for your Dodge Charger'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (79,'content:4.headtext','textarea',''); -INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (79,'content:4.tableconfig','outputchanneltable','a:4:{s:13:\"selectedClass\";s:13:\"AccessoryPart\";s:8:\"elements\";a:3:{i:0;a:4:{s:2:\"id\";i:444;s:4:\"path\";s:49:\"/Product Data/Accessories/rims/dodge-charger-rims\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:1;a:4:{s:2:\"id\";i:445;s:4:\"path\";s:55:\"/Product Data/Accessories/rims/dodge-charger-rims-black\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:2;a:4:{s:2:\"id\";i:443;s:4:\"path\";s:72:\"/Product Data/Accessories/windows/wind screens/dodge-charger-windscreens\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}}s:13:\"outputChannel\";s:1246:\"{\"id\":\"SOME-ID\",\"channel\":\"web2print_content:4.tableconfig\",\"o_classId\":\"AP\",\"configuration\":[{\"label\":\"Image\",\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"image\",\"dataType\":\"hotspotimage\",\"icon\":null,\"childs\":[],\"text\":\"Image\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"erpNumber\",\"dataType\":\"input\",\"icon\":null,\"childs\":[],\"text\":\"ERP Number\"},{\"label\":\"Name\",\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"generatedName\",\"dataType\":\"calculatedValue\",\"icon\":null,\"childs\":[],\"text\":\"Name\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"manufacturer\",\"dataType\":\"manyToOneRelation\",\"icon\":null,\"childs\":[],\"text\":\"Manufacturer\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"SaleInformation~condition\",\"dataType\":\"select\",\"icon\":null,\"childs\":[],\"text\":\"Condition\"},{\"label\":\"Price in EUR\",\"type\":\"operator\",\"class\":\"Concatenator\",\"glue\":\" \",\"forceValue\":false,\"formatNumbers\":false,\"childs\":[{\"label\":null,\"type\":\"operator\",\"class\":\"Text\",\"textValue\":\"EUR\",\"childs\":[]},{\"label\":null,\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"SaleInformation~priceInEUR\",\"dataType\":\"numeric\",\"precision\":2,\"formatNumber\":true,\"childs\":[],\"text\":\"Price in EUR\"}],\"text\":\"Price in EUR\"}]}\";s:30:\"selectedFavouriteOutputChannel\";s:0:\"\";}'); +INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (79,'content:4.tableconfig','outputchanneltable','a:4:{s:13:\"selectedClass\";s:13:\"AccessoryPart\";s:8:\"elements\";a:3:{i:0;a:4:{s:2:\"id\";i:444;s:4:\"path\";s:49:\"/Product Data/Accessories/rims/dodge-charger-rims\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:1;a:4:{s:2:\"id\";i:445;s:4:\"path\";s:55:\"/Product Data/Accessories/rims/dodge-charger-rims-black\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:2;a:4:{s:2:\"id\";i:443;s:4:\"path\";s:72:\"/Product Data/Accessories/windows/wind screens/dodge-charger-windscreens\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}}s:13:\"outputChannel\";s:1246:\"{\"id\":\"SOME-ID\",\"channel\":\"web2print_content:4.tableconfig\",\"classId\":\"AP\",\"configuration\":[{\"label\":\"Image\",\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"image\",\"dataType\":\"hotspotimage\",\"icon\":null,\"childs\":[],\"text\":\"Image\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"erpNumber\",\"dataType\":\"input\",\"icon\":null,\"childs\":[],\"text\":\"ERP Number\"},{\"label\":\"Name\",\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"generatedName\",\"dataType\":\"calculatedValue\",\"icon\":null,\"childs\":[],\"text\":\"Name\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"manufacturer\",\"dataType\":\"manyToOneRelation\",\"icon\":null,\"childs\":[],\"text\":\"Manufacturer\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"SaleInformation~condition\",\"dataType\":\"select\",\"icon\":null,\"childs\":[],\"text\":\"Condition\"},{\"label\":\"Price in EUR\",\"type\":\"operator\",\"class\":\"Concatenator\",\"glue\":\" \",\"forceValue\":false,\"formatNumbers\":false,\"childs\":[{\"label\":null,\"type\":\"operator\",\"class\":\"Text\",\"textValue\":\"EUR\",\"childs\":[]},{\"label\":null,\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"SaleInformation~priceInEUR\",\"dataType\":\"numeric\",\"precision\":2,\"formatNumber\":true,\"childs\":[],\"text\":\"Price in EUR\"}],\"text\":\"Price in EUR\"}]}\";s:30:\"selectedFavouriteOutputChannel\";s:0:\"\";}'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (79,'content:5.mode','select','right'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (79,'content:5.productteaser1','renderlet','a:3:{s:2:\"id\";i:111;s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:6:\"object\";}'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (79,'content:5.productteaser2','renderlet','a:3:{s:2:\"id\";i:69;s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:6:\"object\";}'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (79,'content:6.headline','input','Even more Muscle Cars'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (79,'content:6.headtext','textarea',''); -INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (79,'content:6.tableconfig','outputchanneltable','a:4:{s:13:\"selectedClass\";s:3:\"Car\";s:8:\"elements\";a:5:{i:0;a:4:{s:2:\"id\";i:112;s:4:\"path\";s:48:\"/Product Data/Cars/ford/Mustang/convertible/blue\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:1;a:4:{s:2:\"id\";i:110;s:4:\"path\";s:47:\"/Product Data/Cars/ford/Mustang/convertible/red\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:2;a:4:{s:2:\"id\";i:119;s:4:\"path\";s:39:\"/Product Data/Cars/ford/Thunderbird/red\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:3;a:4:{s:2:\"id\";i:82;s:4:\"path\";s:41:\"/Product Data/Cars/ac cars/Cobra 427/blue\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:4;a:4:{s:2:\"id\";i:70;s:4:\"path\";s:43:\"/Product Data/Cars/chevrolet/Corvette/black\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}}s:13:\"outputChannel\";s:1572:\"{\"id\":\"SOME-ID\",\"channel\":\"web2print_content:6.tableconfig\",\"o_classId\":\"CAR\",\"configuration\":[{\"label\":\"Image\",\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"gallery\",\"dataType\":\"imageGallery\",\"icon\":null,\"childs\":[],\"text\":\"Image\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"manufacturer\",\"dataType\":\"manyToOneRelation\",\"icon\":null,\"childs\":[],\"text\":\"Manufacturer\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"name\",\"dataType\":\"input\",\"icon\":null,\"childs\":[],\"text\":\"Name\"},{\"label\":null,\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"productionYear\",\"dataType\":\"numeric\",\"precision\":null,\"formatNumber\":false,\"childs\":[],\"text\":\"Production Year\"},{\"label\":null,\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"Engine~cylinders\",\"dataType\":\"numeric\",\"precision\":null,\"formatNumber\":false,\"childs\":[],\"text\":\"Cylinders\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"Engine~capacity\",\"dataType\":\"quantityValue\",\"icon\":null,\"childs\":[],\"text\":\"Capacity\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"Engine~power\",\"dataType\":\"quantityValue\",\"icon\":null,\"childs\":[],\"text\":\"Power\"},{\"label\":\"Price in EUR\",\"type\":\"operator\",\"class\":\"Concatenator\",\"glue\":\" \",\"forceValue\":false,\"formatNumbers\":false,\"childs\":[{\"label\":null,\"type\":\"operator\",\"class\":\"Text\",\"textValue\":\"EUR\",\"childs\":[]},{\"label\":null,\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"SaleInformation~priceInEUR\",\"dataType\":\"numeric\",\"precision\":2,\"formatNumber\":true,\"childs\":[],\"text\":\"Price in EUR\"}],\"text\":\"Price in EUR\"}]}\";s:30:\"selectedFavouriteOutputChannel\";s:0:\"\";}'); +INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (79,'content:6.tableconfig','outputchanneltable','a:4:{s:13:\"selectedClass\";s:3:\"Car\";s:8:\"elements\";a:5:{i:0;a:4:{s:2:\"id\";i:112;s:4:\"path\";s:48:\"/Product Data/Cars/ford/Mustang/convertible/blue\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:1;a:4:{s:2:\"id\";i:110;s:4:\"path\";s:47:\"/Product Data/Cars/ford/Mustang/convertible/red\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:2;a:4:{s:2:\"id\";i:119;s:4:\"path\";s:39:\"/Product Data/Cars/ford/Thunderbird/red\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:3;a:4:{s:2:\"id\";i:82;s:4:\"path\";s:41:\"/Product Data/Cars/ac cars/Cobra 427/blue\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:4;a:4:{s:2:\"id\";i:70;s:4:\"path\";s:43:\"/Product Data/Cars/chevrolet/Corvette/black\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}}s:13:\"outputChannel\";s:1572:\"{\"id\":\"SOME-ID\",\"channel\":\"web2print_content:6.tableconfig\",\"classId\":\"CAR\",\"configuration\":[{\"label\":\"Image\",\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"gallery\",\"dataType\":\"imageGallery\",\"icon\":null,\"childs\":[],\"text\":\"Image\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"manufacturer\",\"dataType\":\"manyToOneRelation\",\"icon\":null,\"childs\":[],\"text\":\"Manufacturer\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"name\",\"dataType\":\"input\",\"icon\":null,\"childs\":[],\"text\":\"Name\"},{\"label\":null,\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"productionYear\",\"dataType\":\"numeric\",\"precision\":null,\"formatNumber\":false,\"childs\":[],\"text\":\"Production Year\"},{\"label\":null,\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"Engine~cylinders\",\"dataType\":\"numeric\",\"precision\":null,\"formatNumber\":false,\"childs\":[],\"text\":\"Cylinders\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"Engine~capacity\",\"dataType\":\"quantityValue\",\"icon\":null,\"childs\":[],\"text\":\"Capacity\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"Engine~power\",\"dataType\":\"quantityValue\",\"icon\":null,\"childs\":[],\"text\":\"Power\"},{\"label\":\"Price in EUR\",\"type\":\"operator\",\"class\":\"Concatenator\",\"glue\":\" \",\"forceValue\":false,\"formatNumbers\":false,\"childs\":[{\"label\":null,\"type\":\"operator\",\"class\":\"Text\",\"textValue\":\"EUR\",\"childs\":[]},{\"label\":null,\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"SaleInformation~priceInEUR\",\"dataType\":\"numeric\",\"precision\":2,\"formatNumber\":true,\"childs\":[],\"text\":\"Price in EUR\"}],\"text\":\"Price in EUR\"}]}\";s:30:\"selectedFavouriteOutputChannel\";s:0:\"\";}'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (81,'content','areablock','a:4:{i:0;a:3:{s:3:\"key\";s:1:\"1\";s:4:\"type\";s:16:\"print-key-visual\";s:6:\"hidden\";b:0;}i:1;a:3:{s:3:\"key\";s:1:\"2\";s:4:\"type\";s:17:\"print-product-row\";s:6:\"hidden\";b:0;}i:2;a:3:{s:3:\"key\";s:1:\"3\";s:4:\"type\";s:17:\"print-product-row\";s:6:\"hidden\";b:0;}i:3;a:3:{s:3:\"key\";s:1:\"4\";s:4:\"type\";s:17:\"print-product-row\";s:6:\"hidden\";b:0;}}'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (81,'content:1.headline','input','British Sports Cars'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (81,'content:1.keyvisual','image','a:9:{s:2:\"id\";i:13;s:3:\"alt\";s:0:\"\";s:11:\"cropPercent\";b:1;s:9:\"cropWidth\";d:95.880149812734089;s:10:\"cropHeight\";d:36.25;s:7:\"cropTop\";i:15;s:8:\"cropLeft\";d:1.1235955056179776;s:8:\"hotspots\";a:0:{}s:6:\"marker\";a:0:{}}'); @@ -484,7 +484,7 @@ INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (81,' INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (82,'content','areablock','a:1:{i:0;a:3:{s:3:\"key\";s:1:\"1\";s:4:\"type\";s:19:\"print-product-table\";s:6:\"hidden\";b:0;}}'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (82,'content:1.headline','input','Much More Products'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (82,'content:1.headtext','textarea',''); -INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (82,'content:1.tableconfig','outputchanneltable','a:4:{s:13:\"selectedClass\";s:3:\"Car\";s:8:\"elements\";a:13:{i:0;a:4:{s:2:\"id\";i:247;s:4:\"path\";s:54:\"/Product Data/Cars/aston martin/DB5/convertible/silver\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:1;a:4:{s:2:\"id\";i:245;s:4:\"path\";s:47:\"/Product Data/Cars/aston martin/DB5/coupe/green\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:2;a:4:{s:2:\"id\";i:244;s:4:\"path\";s:48:\"/Product Data/Cars/aston martin/DB5/coupe/silver\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:3;a:4:{s:2:\"id\";i:250;s:4:\"path\";s:41:\"/Product Data/Cars/aston martin/DB6/green\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:4;a:4:{s:2:\"id\";i:249;s:4:\"path\";s:39:\"/Product Data/Cars/aston martin/DB6/red\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:5;a:4:{s:2:\"id\";i:280;s:4:\"path\";s:42:\"/Product Data/Cars/austin-healey/3000/blue\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:6;a:4:{s:2:\"id\";i:38;s:4:\"path\";s:41:\"/Product Data/Cars/austin-healey/3000/red\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:7;a:4:{s:2:\"id\";i:279;s:4:\"path\";s:43:\"/Product Data/Cars/austin-healey/3000/white\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:8;a:4:{s:2:\"id\";i:26;s:4:\"path\";s:42:\"/Product Data/Cars/jaguar/XK140/coupé/red\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:9;a:4:{s:2:\"id\";i:293;s:4:\"path\";s:43:\"/Product Data/Cars/jaguar/XK150/coupe/green\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:10;a:4:{s:2:\"id\";i:294;s:4:\"path\";s:43:\"/Product Data/Cars/jaguar/XK150/coupe/white\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:11;a:4:{s:2:\"id\";i:359;s:4:\"path\";s:35:\"/Product Data/Cars/morris/Mini/blue\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:12;a:4:{s:2:\"id\";i:192;s:4:\"path\";s:35:\"/Product Data/Cars/triumph/TR 4/red\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}}s:13:\"outputChannel\";s:1402:\"{\"id\":\"SOME-ID\",\"channel\":\"web2print_content:1.tableconfig\",\"o_classId\":\"CAR\",\"configuration\":[{\"label\":\"Image\",\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"gallery\",\"dataType\":\"imageGallery\",\"icon\":null,\"childs\":[],\"text\":\"Image\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"name\",\"dataType\":\"input\",\"icon\":null,\"childs\":[],\"text\":\"Name\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"manufacturer\",\"dataType\":\"manyToOneRelation\",\"icon\":null,\"childs\":[],\"text\":\"Manufacturer\"},{\"label\":null,\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"productionYear\",\"dataType\":\"numeric\",\"precision\":null,\"formatNumber\":false,\"childs\":[],\"text\":\"Production Year\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"color\",\"dataType\":\"multiselect\",\"icon\":null,\"childs\":[],\"text\":\"Color\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"SaleInformation~milage\",\"dataType\":\"quantityValue\",\"icon\":null,\"childs\":[],\"text\":\"Milage\"},{\"label\":\"Price in EUR\",\"type\":\"operator\",\"class\":\"Concatenator\",\"glue\":\" \",\"forceValue\":false,\"formatNumbers\":false,\"childs\":[{\"label\":null,\"type\":\"operator\",\"class\":\"Text\",\"textValue\":\"EUR\",\"childs\":[]},{\"label\":null,\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"SaleInformation~priceInEUR\",\"dataType\":\"numeric\",\"precision\":null,\"formatNumber\":true,\"childs\":[],\"text\":\"Price in EUR\"}],\"text\":\"Price in EUR\"}]}\";s:30:\"selectedFavouriteOutputChannel\";s:0:\"\";}'); +INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (82,'content:1.tableconfig','outputchanneltable','a:4:{s:13:\"selectedClass\";s:3:\"Car\";s:8:\"elements\";a:13:{i:0;a:4:{s:2:\"id\";i:247;s:4:\"path\";s:54:\"/Product Data/Cars/aston martin/DB5/convertible/silver\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:1;a:4:{s:2:\"id\";i:245;s:4:\"path\";s:47:\"/Product Data/Cars/aston martin/DB5/coupe/green\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:2;a:4:{s:2:\"id\";i:244;s:4:\"path\";s:48:\"/Product Data/Cars/aston martin/DB5/coupe/silver\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:3;a:4:{s:2:\"id\";i:250;s:4:\"path\";s:41:\"/Product Data/Cars/aston martin/DB6/green\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:4;a:4:{s:2:\"id\";i:249;s:4:\"path\";s:39:\"/Product Data/Cars/aston martin/DB6/red\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:5;a:4:{s:2:\"id\";i:280;s:4:\"path\";s:42:\"/Product Data/Cars/austin-healey/3000/blue\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:6;a:4:{s:2:\"id\";i:38;s:4:\"path\";s:41:\"/Product Data/Cars/austin-healey/3000/red\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:7;a:4:{s:2:\"id\";i:279;s:4:\"path\";s:43:\"/Product Data/Cars/austin-healey/3000/white\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:8;a:4:{s:2:\"id\";i:26;s:4:\"path\";s:42:\"/Product Data/Cars/jaguar/XK140/coupé/red\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:9;a:4:{s:2:\"id\";i:293;s:4:\"path\";s:43:\"/Product Data/Cars/jaguar/XK150/coupe/green\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:10;a:4:{s:2:\"id\";i:294;s:4:\"path\";s:43:\"/Product Data/Cars/jaguar/XK150/coupe/white\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:11;a:4:{s:2:\"id\";i:359;s:4:\"path\";s:35:\"/Product Data/Cars/morris/Mini/blue\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:12;a:4:{s:2:\"id\";i:192;s:4:\"path\";s:35:\"/Product Data/Cars/triumph/TR 4/red\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}}s:13:\"outputChannel\";s:1402:\"{\"id\":\"SOME-ID\",\"channel\":\"web2print_content:1.tableconfig\",\"classId\":\"CAR\",\"configuration\":[{\"label\":\"Image\",\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"gallery\",\"dataType\":\"imageGallery\",\"icon\":null,\"childs\":[],\"text\":\"Image\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"name\",\"dataType\":\"input\",\"icon\":null,\"childs\":[],\"text\":\"Name\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"manufacturer\",\"dataType\":\"manyToOneRelation\",\"icon\":null,\"childs\":[],\"text\":\"Manufacturer\"},{\"label\":null,\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"productionYear\",\"dataType\":\"numeric\",\"precision\":null,\"formatNumber\":false,\"childs\":[],\"text\":\"Production Year\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"color\",\"dataType\":\"multiselect\",\"icon\":null,\"childs\":[],\"text\":\"Color\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"SaleInformation~milage\",\"dataType\":\"quantityValue\",\"icon\":null,\"childs\":[],\"text\":\"Milage\"},{\"label\":\"Price in EUR\",\"type\":\"operator\",\"class\":\"Concatenator\",\"glue\":\" \",\"forceValue\":false,\"formatNumbers\":false,\"childs\":[{\"label\":null,\"type\":\"operator\",\"class\":\"Text\",\"textValue\":\"EUR\",\"childs\":[]},{\"label\":null,\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"SaleInformation~priceInEUR\",\"dataType\":\"numeric\",\"precision\":null,\"formatNumber\":true,\"childs\":[],\"text\":\"Price in EUR\"}],\"text\":\"Price in EUR\"}]}\";s:30:\"selectedFavouriteOutputChannel\";s:0:\"\";}'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (84,'content','areablock','a:7:{i:0;a:3:{s:3:\"key\";s:1:\"1\";s:4:\"type\";s:16:\"print-key-visual\";s:6:\"hidden\";b:0;}i:1;a:3:{s:3:\"key\";s:1:\"2\";s:4:\"type\";s:17:\"print-product-row\";s:6:\"hidden\";b:0;}i:2;a:3:{s:3:\"key\";s:1:\"3\";s:4:\"type\";s:17:\"print-product-row\";s:6:\"hidden\";b:0;}i:3;a:3:{s:3:\"key\";s:1:\"4\";s:4:\"type\";s:17:\"print-product-row\";s:6:\"hidden\";b:0;}i:4;a:3:{s:3:\"key\";s:1:\"5\";s:4:\"type\";s:17:\"print-product-row\";s:6:\"hidden\";b:0;}i:5;a:3:{s:3:\"key\";s:1:\"6\";s:4:\"type\";s:16:\"print-page-break\";s:6:\"hidden\";b:0;}i:6;a:3:{s:3:\"key\";s:1:\"7\";s:4:\"type\";s:19:\"print-product-table\";s:6:\"hidden\";b:0;}}'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (84,'content:1.headline','input','German Luxury'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (84,'content:1.keyvisual','image','a:9:{s:2:\"id\";i:117;s:3:\"alt\";s:0:\"\";s:11:\"cropPercent\";N;s:9:\"cropWidth\";N;s:10:\"cropHeight\";N;s:7:\"cropTop\";N;s:8:\"cropLeft\";N;s:8:\"hotspots\";a:0:{}s:6:\"marker\";a:0:{}}'); @@ -502,11 +502,11 @@ INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (84,' INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (84,'content:5.productteaser2','renderlet','a:3:{s:2:\"id\";i:311;s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:6:\"object\";}'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (84,'content:7.headline','input','Some German Economy Cars'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (84,'content:7.headtext','textarea',''); -INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (84,'content:7.tableconfig','outputchanneltable','a:4:{s:13:\"selectedClass\";s:3:\"Car\";s:8:\"elements\";a:8:{i:0;a:4:{s:2:\"id\";i:308;s:4:\"path\";s:30:\"/Product Data/Cars/bmw/600/red\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:1;a:4:{s:2:\"id\";i:304;s:4:\"path\";s:34:\"/Product Data/Cars/bmw/Isetta/blue\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:2;a:4:{s:2:\"id\";i:305;s:4:\"path\";s:40:\"/Product Data/Cars/bmw/Isetta/light-blue\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:3;a:4:{s:2:\"id\";i:215;s:4:\"path\";s:53:\"/Product Data/Cars/vw/Käfer/1200/2-door-saloon/beige\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:4;a:4:{s:2:\"id\";i:223;s:4:\"path\";s:54:\"/Product Data/Cars/vw/Käfer/1200/2-door-saloon/yellow\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:5;a:4:{s:2:\"id\";i:217;s:4:\"path\";s:38:\"/Product Data/Cars/vw/Käfer/1302/blue\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:6;a:4:{s:2:\"id\";i:224;s:4:\"path\";s:52:\"/Product Data/Cars/vw/Käfer/1303/2-door-saloon/blue\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:7;a:4:{s:2:\"id\";i:222;s:4:\"path\";s:46:\"/Product Data/Cars/vw/Käfer/1303/cabrio/green\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}}s:13:\"outputChannel\";s:1767:\"{\"id\":\"SOME-ID\",\"channel\":\"web2print_content:7.tableconfig\",\"o_classId\":\"CAR\",\"configuration\":[{\"label\":\"Image\",\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"gallery\",\"dataType\":\"imageGallery\",\"icon\":null,\"childs\":[],\"text\":\"Image\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"manufacturer\",\"dataType\":\"manyToOneRelation\",\"icon\":null,\"childs\":[],\"text\":\"Manufacturer\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"name\",\"dataType\":\"input\",\"icon\":null,\"childs\":[],\"text\":\"Name\"},{\"label\":\"Year\",\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"productionYear\",\"dataType\":\"numeric\",\"precision\":null,\"formatNumber\":false,\"childs\":[],\"text\":\"Year\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"bodyStyle\",\"dataType\":\"manyToOneRelation\",\"icon\":null,\"childs\":[],\"text\":\"Body Style\"},{\"label\":\"Doors\",\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"Bodywork~numberOfDoors\",\"dataType\":\"numeric\",\"precision\":null,\"formatNumber\":false,\"childs\":[],\"text\":\"Doors\"},{\"label\":\"Pieces\",\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"SaleInformation~availabilityPieces\",\"dataType\":\"numeric\",\"precision\":null,\"formatNumber\":false,\"childs\":[],\"text\":\"Pieces\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"SaleInformation~milage\",\"dataType\":\"quantityValue\",\"icon\":null,\"childs\":[],\"text\":\"Milage\"},{\"label\":\"Price in EUR\",\"type\":\"operator\",\"class\":\"Concatenator\",\"glue\":\" \",\"forceValue\":false,\"formatNumbers\":false,\"childs\":[{\"label\":null,\"type\":\"operator\",\"class\":\"Text\",\"textValue\":\"EUR\",\"childs\":[]},{\"label\":null,\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"SaleInformation~priceInEUR\",\"dataType\":\"numeric\",\"precision\":2,\"formatNumber\":true,\"childs\":[],\"text\":\"Price in EUR\"}],\"text\":\"Price in EUR\"}]}\";s:30:\"selectedFavouriteOutputChannel\";s:0:\"\";}'); +INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (84,'content:7.tableconfig','outputchanneltable','a:4:{s:13:\"selectedClass\";s:3:\"Car\";s:8:\"elements\";a:8:{i:0;a:4:{s:2:\"id\";i:308;s:4:\"path\";s:30:\"/Product Data/Cars/bmw/600/red\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:1;a:4:{s:2:\"id\";i:304;s:4:\"path\";s:34:\"/Product Data/Cars/bmw/Isetta/blue\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:2;a:4:{s:2:\"id\";i:305;s:4:\"path\";s:40:\"/Product Data/Cars/bmw/Isetta/light-blue\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:3;a:4:{s:2:\"id\";i:215;s:4:\"path\";s:53:\"/Product Data/Cars/vw/Käfer/1200/2-door-saloon/beige\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:4;a:4:{s:2:\"id\";i:223;s:4:\"path\";s:54:\"/Product Data/Cars/vw/Käfer/1200/2-door-saloon/yellow\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:5;a:4:{s:2:\"id\";i:217;s:4:\"path\";s:38:\"/Product Data/Cars/vw/Käfer/1302/blue\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:6;a:4:{s:2:\"id\";i:224;s:4:\"path\";s:52:\"/Product Data/Cars/vw/Käfer/1303/2-door-saloon/blue\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}i:7;a:4:{s:2:\"id\";i:222;s:4:\"path\";s:46:\"/Product Data/Cars/vw/Käfer/1303/cabrio/green\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:3:\"Car\";}}s:13:\"outputChannel\";s:1767:\"{\"id\":\"SOME-ID\",\"channel\":\"web2print_content:7.tableconfig\",\"classId\":\"CAR\",\"configuration\":[{\"label\":\"Image\",\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"gallery\",\"dataType\":\"imageGallery\",\"icon\":null,\"childs\":[],\"text\":\"Image\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"manufacturer\",\"dataType\":\"manyToOneRelation\",\"icon\":null,\"childs\":[],\"text\":\"Manufacturer\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"name\",\"dataType\":\"input\",\"icon\":null,\"childs\":[],\"text\":\"Name\"},{\"label\":\"Year\",\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"productionYear\",\"dataType\":\"numeric\",\"precision\":null,\"formatNumber\":false,\"childs\":[],\"text\":\"Year\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"bodyStyle\",\"dataType\":\"manyToOneRelation\",\"icon\":null,\"childs\":[],\"text\":\"Body Style\"},{\"label\":\"Doors\",\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"Bodywork~numberOfDoors\",\"dataType\":\"numeric\",\"precision\":null,\"formatNumber\":false,\"childs\":[],\"text\":\"Doors\"},{\"label\":\"Pieces\",\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"SaleInformation~availabilityPieces\",\"dataType\":\"numeric\",\"precision\":null,\"formatNumber\":false,\"childs\":[],\"text\":\"Pieces\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"SaleInformation~milage\",\"dataType\":\"quantityValue\",\"icon\":null,\"childs\":[],\"text\":\"Milage\"},{\"label\":\"Price in EUR\",\"type\":\"operator\",\"class\":\"Concatenator\",\"glue\":\" \",\"forceValue\":false,\"formatNumbers\":false,\"childs\":[{\"label\":null,\"type\":\"operator\",\"class\":\"Text\",\"textValue\":\"EUR\",\"childs\":[]},{\"label\":null,\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"SaleInformation~priceInEUR\",\"dataType\":\"numeric\",\"precision\":2,\"formatNumber\":true,\"childs\":[],\"text\":\"Price in EUR\"}],\"text\":\"Price in EUR\"}]}\";s:30:\"selectedFavouriteOutputChannel\";s:0:\"\";}'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (86,'content','areablock','a:1:{i:0;a:3:{s:3:\"key\";s:1:\"1\";s:4:\"type\";s:19:\"print-product-table\";s:6:\"hidden\";b:0;}}'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (86,'content:1.headline','input','Accessories for German Cars'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (86,'content:1.headtext','textarea',''); -INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (86,'content:1.tableconfig','outputchanneltable','a:4:{s:13:\"selectedClass\";s:13:\"AccessoryPart\";s:8:\"elements\";a:27:{i:0;a:4:{s:2:\"id\";i:536;s:4:\"path\";s:65:\"/Product Data/Accessories/hood ornaments/vw-type 2-hood ornaments\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:1;a:4:{s:2:\"id\";i:419;s:4:\"path\";s:64:\"/Product Data/Accessories/lights/head lights/bmw-335-head lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:2;a:4:{s:2:\"id\";i:418;s:4:\"path\";s:64:\"/Product Data/Accessories/lights/head lights/bmw-507-head lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:3;a:4:{s:2:\"id\";i:414;s:4:\"path\";s:64:\"/Product Data/Accessories/lights/head lights/bmw-600-head lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:4;a:4:{s:2:\"id\";i:413;s:4:\"path\";s:67:\"/Product Data/Accessories/lights/head lights/bmw-isetta-head lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:5;a:4:{s:2:\"id\";i:493;s:4:\"path\";s:77:\"/Product Data/Accessories/lights/head lights/mercedes-benz-190 sl-head lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:6;a:4:{s:2:\"id\";i:496;s:4:\"path\";s:74:\"/Product Data/Accessories/lights/head lights/mercedes-benz-220-head lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:7;a:4:{s:2:\"id\";i:486;s:4:\"path\";s:77:\"/Product Data/Accessories/lights/head lights/mercedes-benz-300 sl-head lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:8;a:4:{s:2:\"id\";i:494;s:4:\"path\";s:87:\"/Product Data/Accessories/lights/indicator lights/mercedes-benz-190 sl-indicator lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:9;a:4:{s:2:\"id\";i:497;s:4:\"path\";s:84:\"/Product Data/Accessories/lights/indicator lights/mercedes-benz-220-indicator lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:10;a:4:{s:2:\"id\";i:484;s:4:\"path\";s:85:\"/Product Data/Accessories/lights/indicator lights/mercedes-benz-w110-indicator lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:11;a:4:{s:2:\"id\";i:504;s:4:\"path\";s:94:\"/Product Data/Accessories/lights/indicator lights/mercedes-benz-w110-indicator lights-splitted\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:12;a:4:{s:2:\"id\";i:541;s:4:\"path\";s:76:\"/Product Data/Accessories/lights/indicator lights/vw-käfer-indicator lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:13;a:4:{s:2:\"id\";i:538;s:4:\"path\";s:77:\"/Product Data/Accessories/lights/indicator lights/vw-karmann-indicator lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:14;a:4:{s:2:\"id\";i:533;s:4:\"path\";s:76:\"/Product Data/Accessories/lights/indicator lights/vw-type 2-indicator lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:15;a:4:{s:2:\"id\";i:416;s:4:\"path\";s:64:\"/Product Data/Accessories/lights/tail lights/bmw-507-tail lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:16;a:4:{s:2:\"id\";i:488;s:4:\"path\";s:77:\"/Product Data/Accessories/lights/tail lights/mercedes-benz-190 sl-tail lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:17;a:4:{s:2:\"id\";i:506;s:4:\"path\";s:74:\"/Product Data/Accessories/lights/tail lights/mercedes-benz-220-tail lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:18;a:4:{s:2:\"id\";i:487;s:4:\"path\";s:77:\"/Product Data/Accessories/lights/tail lights/mercedes-benz-300 sl-tail lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:19;a:4:{s:2:\"id\";i:505;s:4:\"path\";s:75:\"/Product Data/Accessories/lights/tail lights/mercedes-benz-w110-tail lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:20;a:4:{s:2:\"id\";i:507;s:4:\"path\";s:75:\"/Product Data/Accessories/lights/tail lights/mercedes-benz-w111-tail lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:21;a:4:{s:2:\"id\";i:485;s:4:\"path\";s:75:\"/Product Data/Accessories/lights/tail lights/mercedes-benz-w113-tail lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:22;a:4:{s:2:\"id\";i:501;s:4:\"path\";s:75:\"/Product Data/Accessories/lights/tail lights/mercedes-benz-w128-tail lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:23;a:4:{s:2:\"id\";i:544;s:4:\"path\";s:66:\"/Product Data/Accessories/lights/tail lights/vw-käfer-tail lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:24;a:4:{s:2:\"id\";i:543;s:4:\"path\";s:71:\"/Product Data/Accessories/lights/tail lights/vw-käfer-tail lights-1303\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:25;a:4:{s:2:\"id\";i:539;s:4:\"path\";s:67:\"/Product Data/Accessories/lights/tail lights/vw-karmann-tail lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:26;a:4:{s:2:\"id\";i:535;s:4:\"path\";s:66:\"/Product Data/Accessories/lights/tail lights/vw-type 2-tail lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}}s:13:\"outputChannel\";s:1592:\"{\"id\":\"SOME-ID\",\"channel\":\"web2print_content:8.tableconfig\",\"o_classId\":\"AP\",\"configuration\":[{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"image\",\"dataType\":\"hotspotimage\",\"icon\":null,\"childs\":[],\"text\":\"Image\"},{\"label\":\"EAN\",\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"erpNumber\",\"dataType\":\"input\",\"icon\":null,\"childs\":[],\"text\":\"EAN\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"generatedName\",\"dataType\":\"calculatedValue\",\"icon\":null,\"childs\":[],\"text\":\"Fullname\"},{\"label\":\"Pieces\",\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"SaleInformation~availabilityPieces\",\"dataType\":\"numeric\",\"precision\":null,\"formatNumber\":false,\"childs\":[],\"text\":\"Pieces\"},{\"label\":\"Available in\",\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"SaleInformation~availabilityType\",\"dataType\":\"select\",\"icon\":null,\"childs\":[],\"text\":\"Available in\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"SaleInformation~condition\",\"dataType\":\"select\",\"icon\":null,\"childs\":[],\"text\":\"Condition\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"SaleInformation~milage\",\"dataType\":\"quantityValue\",\"icon\":null,\"childs\":[],\"text\":\"Milage\"},{\"label\":\"Price\",\"type\":\"operator\",\"class\":\"Concatenator\",\"glue\":\" \",\"forceValue\":false,\"formatNumbers\":false,\"childs\":[{\"label\":null,\"type\":\"operator\",\"class\":\"Text\",\"textValue\":\"EUR\",\"childs\":[]},{\"label\":null,\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"SaleInformation~priceInEUR\",\"dataType\":\"numeric\",\"precision\":null,\"formatNumber\":true,\"childs\":[],\"text\":\"Price in EUR\"}],\"text\":\"Price\"}]}\";s:30:\"selectedFavouriteOutputChannel\";s:0:\"\";}'); +INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (86,'content:1.tableconfig','outputchanneltable','a:4:{s:13:\"selectedClass\";s:13:\"AccessoryPart\";s:8:\"elements\";a:27:{i:0;a:4:{s:2:\"id\";i:536;s:4:\"path\";s:65:\"/Product Data/Accessories/hood ornaments/vw-type 2-hood ornaments\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:1;a:4:{s:2:\"id\";i:419;s:4:\"path\";s:64:\"/Product Data/Accessories/lights/head lights/bmw-335-head lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:2;a:4:{s:2:\"id\";i:418;s:4:\"path\";s:64:\"/Product Data/Accessories/lights/head lights/bmw-507-head lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:3;a:4:{s:2:\"id\";i:414;s:4:\"path\";s:64:\"/Product Data/Accessories/lights/head lights/bmw-600-head lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:4;a:4:{s:2:\"id\";i:413;s:4:\"path\";s:67:\"/Product Data/Accessories/lights/head lights/bmw-isetta-head lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:5;a:4:{s:2:\"id\";i:493;s:4:\"path\";s:77:\"/Product Data/Accessories/lights/head lights/mercedes-benz-190 sl-head lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:6;a:4:{s:2:\"id\";i:496;s:4:\"path\";s:74:\"/Product Data/Accessories/lights/head lights/mercedes-benz-220-head lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:7;a:4:{s:2:\"id\";i:486;s:4:\"path\";s:77:\"/Product Data/Accessories/lights/head lights/mercedes-benz-300 sl-head lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:8;a:4:{s:2:\"id\";i:494;s:4:\"path\";s:87:\"/Product Data/Accessories/lights/indicator lights/mercedes-benz-190 sl-indicator lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:9;a:4:{s:2:\"id\";i:497;s:4:\"path\";s:84:\"/Product Data/Accessories/lights/indicator lights/mercedes-benz-220-indicator lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:10;a:4:{s:2:\"id\";i:484;s:4:\"path\";s:85:\"/Product Data/Accessories/lights/indicator lights/mercedes-benz-w110-indicator lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:11;a:4:{s:2:\"id\";i:504;s:4:\"path\";s:94:\"/Product Data/Accessories/lights/indicator lights/mercedes-benz-w110-indicator lights-splitted\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:12;a:4:{s:2:\"id\";i:541;s:4:\"path\";s:76:\"/Product Data/Accessories/lights/indicator lights/vw-käfer-indicator lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:13;a:4:{s:2:\"id\";i:538;s:4:\"path\";s:77:\"/Product Data/Accessories/lights/indicator lights/vw-karmann-indicator lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:14;a:4:{s:2:\"id\";i:533;s:4:\"path\";s:76:\"/Product Data/Accessories/lights/indicator lights/vw-type 2-indicator lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:15;a:4:{s:2:\"id\";i:416;s:4:\"path\";s:64:\"/Product Data/Accessories/lights/tail lights/bmw-507-tail lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:16;a:4:{s:2:\"id\";i:488;s:4:\"path\";s:77:\"/Product Data/Accessories/lights/tail lights/mercedes-benz-190 sl-tail lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:17;a:4:{s:2:\"id\";i:506;s:4:\"path\";s:74:\"/Product Data/Accessories/lights/tail lights/mercedes-benz-220-tail lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:18;a:4:{s:2:\"id\";i:487;s:4:\"path\";s:77:\"/Product Data/Accessories/lights/tail lights/mercedes-benz-300 sl-tail lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:19;a:4:{s:2:\"id\";i:505;s:4:\"path\";s:75:\"/Product Data/Accessories/lights/tail lights/mercedes-benz-w110-tail lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:20;a:4:{s:2:\"id\";i:507;s:4:\"path\";s:75:\"/Product Data/Accessories/lights/tail lights/mercedes-benz-w111-tail lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:21;a:4:{s:2:\"id\";i:485;s:4:\"path\";s:75:\"/Product Data/Accessories/lights/tail lights/mercedes-benz-w113-tail lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:22;a:4:{s:2:\"id\";i:501;s:4:\"path\";s:75:\"/Product Data/Accessories/lights/tail lights/mercedes-benz-w128-tail lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:23;a:4:{s:2:\"id\";i:544;s:4:\"path\";s:66:\"/Product Data/Accessories/lights/tail lights/vw-käfer-tail lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:24;a:4:{s:2:\"id\";i:543;s:4:\"path\";s:71:\"/Product Data/Accessories/lights/tail lights/vw-käfer-tail lights-1303\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:25;a:4:{s:2:\"id\";i:539;s:4:\"path\";s:67:\"/Product Data/Accessories/lights/tail lights/vw-karmann-tail lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}i:26;a:4:{s:2:\"id\";i:535;s:4:\"path\";s:66:\"/Product Data/Accessories/lights/tail lights/vw-type 2-tail lights\";s:4:\"type\";s:6:\"object\";s:7:\"subtype\";s:13:\"AccessoryPart\";}}s:13:\"outputChannel\";s:1592:\"{\"id\":\"SOME-ID\",\"channel\":\"web2print_content:8.tableconfig\",\"classId\":\"AP\",\"configuration\":[{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"image\",\"dataType\":\"hotspotimage\",\"icon\":null,\"childs\":[],\"text\":\"Image\"},{\"label\":\"EAN\",\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"erpNumber\",\"dataType\":\"input\",\"icon\":null,\"childs\":[],\"text\":\"EAN\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"generatedName\",\"dataType\":\"calculatedValue\",\"icon\":null,\"childs\":[],\"text\":\"Fullname\"},{\"label\":\"Pieces\",\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"SaleInformation~availabilityPieces\",\"dataType\":\"numeric\",\"precision\":null,\"formatNumber\":false,\"childs\":[],\"text\":\"Pieces\"},{\"label\":\"Available in\",\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"SaleInformation~availabilityType\",\"dataType\":\"select\",\"icon\":null,\"childs\":[],\"text\":\"Available in\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"SaleInformation~condition\",\"dataType\":\"select\",\"icon\":null,\"childs\":[],\"text\":\"Condition\"},{\"label\":null,\"type\":\"value\",\"class\":\"DefaultValue\",\"attribute\":\"SaleInformation~milage\",\"dataType\":\"quantityValue\",\"icon\":null,\"childs\":[],\"text\":\"Milage\"},{\"label\":\"Price\",\"type\":\"operator\",\"class\":\"Concatenator\",\"glue\":\" \",\"forceValue\":false,\"formatNumbers\":false,\"childs\":[{\"label\":null,\"type\":\"operator\",\"class\":\"Text\",\"textValue\":\"EUR\",\"childs\":[]},{\"label\":null,\"type\":\"value\",\"class\":\"Numeric\",\"attribute\":\"SaleInformation~priceInEUR\",\"dataType\":\"numeric\",\"precision\":null,\"formatNumber\":true,\"childs\":[],\"text\":\"Price in EUR\"}],\"text\":\"Price\"}]}\";s:30:\"selectedFavouriteOutputChannel\";s:0:\"\";}'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (88,'content','areablock','a:2:{i:0;a:3:{s:3:\"key\";s:1:\"1\";s:4:\"type\";s:7:\"wysiwyg\";s:6:\"hidden\";b:0;}i:1;a:3:{s:3:\"key\";s:1:\"2\";s:4:\"type\";s:7:\"wysiwyg\";s:6:\"hidden\";b:0;}}'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (88,'content:1.content','wysiwyg','

This is a demo site only - no products will be sold, orders can be made!

\n'); INSERT INTO documents_editables (`documentId`,`name`,`type`,`data`) VALUES (88,'content:2.content','wysiwyg','

Thus, it is not already Covered Code or twelve (12) months after a subsequent version of the preceding Paragraph, in the Appendix below). Works\" shall mean products provided to the terms for work added to the risks and costs (collectively \"Losses\") arising from claims, lawsuits and other intellectual property of any payment or license. In the event of the files of the possibility of such Contributor, if any, in a manner equivalent to the Free Software Foundation may assign the responsibility to secure any other entity based on infringement of intellectual property laws of the Standard Version.

\n\n

You may create a Larger Work; and (b) in the event Licensee prepares a derivative work that you create or contribute to those performance claims and damages arising, directly or indirectly through you, then the reasonable value of any separate license agreement you may consider it more useful to the Program, it is sufficient to obtain it in new free programs, and that the licensee received, and requires that the Source Code of the Licensor or any part of the Licensed Product doesn\'t work properly or causes you any warranty whatsoever, nor is the initial code and object code form under its own license agreement, and (ii) that cover subject matter hereof. If any provision of the Agreement in using, conducting the Reproduction and Other Exploitation of the Derived Program, or be made freely available as described in the Licensed Product. Hereinafter in this section to induce you to have, we need to ensure GFDL compatibility. Re-use of non-text media: Where not otherwise noted, non-text media contributors Non-text media on Wikimedia Foundation Licensing Policy. Individual communities may elaborate upon and refine these requirements.

\n\n

Information for text contributors to Wikimedia projects freely, with the Software available to the Program in object code form. This patent license granted by a Contributor includes the Program not expressly granted under this License. For compatibility reasons, you are agreeing to be bound by the laws of the Copyright Holder may not change the License at http://www.opensource.apple.com/apsl/ and read it before using this software may accept certain responsibilities for you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications made by that Contributor and the remainder of the Work, you may charge fees for warranty or support, or for a particular Source Code of Your Externally Deployed Your Modifications, You must make Source Code of the license or settlement) prior to termination shall survive any termination of this Apple Public Source License Version 2.0 (the \'License\'). You may modify your copy or copies of the Work is still maintained.

\n\n

If it is impossible for the Program in a separate manual page for details about the suitability this software and technical data rights in its Contribution, if any, in source code and object code or other work as a special exception, the \"BeOpen Python\" logos available at http://www.pythonlabs.com/logos.html may be aggregated with this Agreement. Other Exploitation of, or Redistributing the Licensed Product for any liability to Recipient for claims brought by any Contributor even if your work is TeX-related (such as by license or (at your option) any later version. The Current Maintainer nor by other people, then you do not conflict with standard executables and testcases non-standard names, and clearly documenting the changes to the present version, but may differ in detail to address new problems or concerns.

\n\n

Each version will be useful, but WITHOUT ANY EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTED GOODS OR SERVICE; DAMAGES ARISING OUT OF THE LICENSED PROGRAM OR ANY DAMAGES WHATSOEVER RESULTING FROM SUCH PARTY To apply any procedure that produces a Derived Program. Any material to the extent necessary to implement that API, Contributor must include a readable copy of this License would be entitled to make certain that everyone finds out that there is no warranty for NetHack. If NetHack is modified by The Perl Foundation in the case of a contract shall be taken into account in determining the appropriateness of using or redistributing the Work is still maintained. If it is Recipient\'s responsibility to secure any other intellectual property laws of the name of the Copyright Holder may not be used to render or display an announcement including an appropriate copyright notice and this permission notice shall be deemed a waiver of future enforcement of that or any other entity based on it. Each time you redistribute the Program if, at the expiration of the Modified Version available to Licensee on an equitable basis.

\n'); diff --git a/dump/data-1-object_brick_query_Bodywork_CAR.sql b/dump/data-1-object_brick_query_Bodywork_CAR.sql index 48b972ec..e078f2de 100644 --- a/dump/data-1-object_brick_query_Bodywork_CAR.sql +++ b/dump/data-1-object_brick_query_Bodywork_CAR.sql @@ -1,274 +1,274 @@ SET NAMES utf8mb4; -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (9,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (10,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (11,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (12,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (13,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (14,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (15,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (16,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (17,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (19,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (20,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (21,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (22,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (23,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (24,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (25,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (26,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (29,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (30,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (31,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (32,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (33,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (34,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (37,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (38,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (41,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (43,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (44,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (47,'attributes',NULL,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (48,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (51,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (52,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (53,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (54,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (55,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (57,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (58,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (61,'attributes',NULL,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (62,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (63,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (64,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (66,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (67,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (68,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (69,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (70,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (73,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (74,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (75,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (76,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (77,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (78,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (81,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (82,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (85,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (86,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (87,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (88,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (89,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (90,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (91,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (92,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (95,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (97,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (98,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (101,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (102,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (103,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (104,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (105,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (108,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (109,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (110,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (111,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (112,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (113,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (114,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (115,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (116,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (117,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (118,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (119,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (120,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (123,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (124,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (125,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (126,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (129,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (130,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (131,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (132,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (133,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (136,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (138,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (139,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (140,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (141,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (142,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (143,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (144,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (147,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (148,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (149,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (150,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (151,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (152,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (155,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (156,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (157,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (160,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (161,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (162,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (165,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (166,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (169,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (170,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (172,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (173,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (174,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (175,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (178,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (180,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (183,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (184,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (187,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (188,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (189,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (190,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (191,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (192,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (193,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (194,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (195,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (196,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (197,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (198,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (199,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (200,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (201,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (202,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (203,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (204,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (205,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (209,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (210,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (211,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (212,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (215,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (216,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (217,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (218,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (219,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (220,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (221,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (222,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (223,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (224,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (225,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (226,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (227,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (228,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (229,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (230,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (231,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (232,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (242,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (243,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (244,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (245,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (246,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (247,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (248,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (249,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (250,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (251,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (252,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (253,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (261,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (262,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (263,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (264,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (265,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (266,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (267,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (268,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (269,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (270,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (271,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (272,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (273,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (274,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (275,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (276,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (277,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (278,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (279,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (280,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (281,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (282,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (283,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (284,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (285,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (286,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (287,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (288,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (289,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (290,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (291,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (292,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (293,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (294,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (295,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (296,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (297,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (298,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (299,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (302,'attributes',1,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (303,'attributes',1,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (304,'attributes',1,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (305,'attributes',1,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (306,'attributes',1,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (307,'attributes',3,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (308,'attributes',3,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (309,'attributes',3,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (310,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (311,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (312,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (313,'attributes',4,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (314,'attributes',4,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (316,'attributes',4,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (317,'attributes',4,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (318,'attributes',4,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (319,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (320,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (321,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (322,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (323,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (324,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (325,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (326,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (327,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (328,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (329,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (330,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (331,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (332,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (333,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (334,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (335,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (336,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (337,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (338,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (339,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (340,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (341,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (342,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (343,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (344,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (345,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (346,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (347,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (348,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (349,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (350,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (351,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (352,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (353,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (357,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (358,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (359,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_query_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (360,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (9,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (10,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (11,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (12,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (13,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (14,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (15,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (16,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (17,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (19,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (20,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (21,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (22,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (23,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (24,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (25,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (26,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (29,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (30,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (31,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (32,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (33,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (34,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (37,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (38,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (41,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (43,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (44,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (47,'attributes',NULL,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (48,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (51,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (52,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (53,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (54,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (55,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (57,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (58,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (61,'attributes',NULL,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (62,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (63,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (64,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (66,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (67,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (68,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (69,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (70,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (73,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (74,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (75,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (76,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (77,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (78,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (81,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (82,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (85,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (86,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (87,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (88,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (89,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (90,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (91,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (92,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (95,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (97,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (98,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (101,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (102,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (103,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (104,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (105,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (108,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (109,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (110,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (111,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (112,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (113,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (114,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (115,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (116,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (117,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (118,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (119,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (120,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (123,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (124,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (125,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (126,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (129,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (130,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (131,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (132,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (133,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (136,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (138,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (139,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (140,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (141,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (142,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (143,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (144,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (147,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (148,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (149,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (150,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (151,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (152,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (155,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (156,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (157,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (160,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (161,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (162,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (165,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (166,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (169,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (170,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (172,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (173,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (174,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (175,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (178,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (180,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (183,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (184,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (187,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (188,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (189,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (190,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (191,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (192,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (193,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (194,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (195,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (196,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (197,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (198,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (199,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (200,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (201,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (202,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (203,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (204,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (205,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (209,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (210,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (211,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (212,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (215,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (216,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (217,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (218,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (219,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (220,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (221,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (222,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (223,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (224,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (225,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (226,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (227,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (228,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (229,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (230,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (231,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (232,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (242,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (243,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (244,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (245,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (246,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (247,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (248,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (249,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (250,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (251,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (252,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (253,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (261,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (262,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (263,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (264,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (265,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (266,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (267,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (268,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (269,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (270,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (271,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (272,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (273,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (274,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (275,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (276,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (277,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (278,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (279,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (280,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (281,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (282,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (283,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (284,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (285,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (286,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (287,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (288,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (289,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (290,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (291,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (292,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (293,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (294,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (295,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (296,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (297,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (298,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (299,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (302,'attributes',1,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (303,'attributes',1,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (304,'attributes',1,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (305,'attributes',1,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (306,'attributes',1,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (307,'attributes',3,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (308,'attributes',3,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (309,'attributes',3,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (310,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (311,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (312,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (313,'attributes',4,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (314,'attributes',4,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (316,'attributes',4,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (317,'attributes',4,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (318,'attributes',4,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (319,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (320,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (321,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (322,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (323,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (324,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (325,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (326,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (327,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (328,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (329,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (330,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (331,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (332,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (333,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (334,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (335,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (336,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (337,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (338,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (339,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (340,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (341,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (342,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (343,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (344,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (345,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (346,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (347,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (348,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (349,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (350,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (351,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (352,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (353,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (357,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (358,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (359,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_query_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (360,'attributes',2,4,NULL,NULL); diff --git a/dump/data-1-object_brick_query_Dimensions_CAR.sql b/dump/data-1-object_brick_query_Dimensions_CAR.sql index d93e7aee..d4e0b56d 100644 --- a/dump/data-1-object_brick_query_Dimensions_CAR.sql +++ b/dump/data-1-object_brick_query_Dimensions_CAR.sql @@ -1,278 +1,278 @@ SET NAMES utf8mb4; -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (9,'attributes',4458,1,1632,1,2438,1,1220,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (10,'attributes',4690,1,1660,1,2670,1,1245,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (11,'attributes',4458,1,1632,1,2438,1,1220,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (12,'attributes',4458,1,1632,1,2438,1,1220,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (13,'attributes',4458,1,1632,1,2438,1,1220,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (14,'attributes',4458,1,1632,1,2438,1,1220,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (15,'attributes',4690,1,1660,1,2670,1,1245,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (16,'attributes',4690,1,1660,1,2670,1,1245,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (17,'attributes',4591,1,1695,1,2727,1,1440,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (19,'attributes',4591,1,1695,1,2727,1,1440,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (20,'attributes',4591,1,1695,1,2727,1,1440,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (21,'attributes',4470,1,1638,1,2591,1,1422,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (22,'attributes',4470,1,1638,1,2591,1,1422,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (23,'attributes',4470,1,1638,1,2591,1,1422,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (24,'attributes',4470,1,1638,1,2591,1,1422,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (25,'attributes',4470,1,1638,1,2591,1,1422,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (26,'attributes',4470,1,1638,1,2591,1,1422,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (29,'attributes',4000,1,1560,1,2400,1,875,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (30,'attributes',4000,1,1560,1,2400,1,875,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (31,'attributes',4000,1,1560,1,2400,1,875,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (32,'attributes',4510,1,1610,1,1390,1,1280,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (33,'attributes',4510,1,1610,1,1390,1,1280,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (34,'attributes',4510,1,1610,1,1390,1,1280,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (37,'attributes',4010,1,1540,1,2340,1,1158,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (38,'attributes',4010,1,1540,1,2340,1,1158,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (41,'attributes',4785,1,1811,1,2845,1,1247,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (43,'attributes',4785,1,1811,1,2845,1,1247,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (44,'attributes',4785,1,1811,1,2845,1,1247,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (47,'attributes',5730,1,2040,1,3310,1,2140,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (48,'attributes',5730,1,2040,1,3310,1,2140,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (51,'attributes',5730,1,2040,1,3310,1,2140,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (52,'attributes',5730,1,2040,1,3310,1,2140,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (53,'attributes',5730,1,2040,1,3310,1,2140,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (54,'attributes',5730,1,2040,1,3310,1,2140,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (55,'attributes',5700,1,2030,1,3300,1,2115,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (57,'attributes',5700,1,2030,1,3300,1,2115,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (58,'attributes',5700,1,2030,1,3300,1,2115,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (61,'attributes',4980,1,1890,1,2930,1,1550,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (62,'attributes',4980,1,1890,1,2930,1,1550,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (63,'attributes',4980,1,1890,1,2930,1,1550,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (64,'attributes',4980,1,1890,1,2930,1,1550,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (66,'attributes',4980,1,1890,1,2930,1,1550,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (67,'attributes',4980,1,1890,1,2930,1,1550,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (68,'attributes',4267,1,1790,1,2590,1,1313,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (69,'attributes',4267,1,1790,1,2590,1,1313,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (70,'attributes',4267,1,1790,1,2590,1,1313,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (73,'attributes',3778,1,1478,1,2370,1,682,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (74,'attributes',3778,1,1478,1,2370,1,682,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (75,'attributes',3778,1,1478,1,2370,1,682,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (76,'attributes',4810,1,1800,1,3130,1,1210,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (77,'attributes',4810,1,1800,1,3130,1,1210,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (78,'attributes',4810,1,1800,1,3130,1,1210,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (81,'attributes',3962,1,1727,1,1245,1,1147,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (82,'attributes',3962,1,1727,1,1245,1,1147,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (85,'attributes',5217,1,1953,1,2921,1,1513,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (86,'attributes',5217,1,1953,1,2921,1,1513,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (87,'attributes',5217,1,1953,1,2921,1,1513,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (88,'attributes',5217,1,1953,1,2921,1,1513,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (89,'attributes',5217,1,1953,1,2921,1,1513,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (90,'attributes',5217,1,1953,1,2921,1,1513,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (91,'attributes',5217,1,1953,1,2921,1,1513,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (92,'attributes',5217,1,1953,1,2921,1,1513,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (95,'attributes',4485,1,1976,1,2550,1,1506,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (97,'attributes',4485,1,1976,1,2550,1,1506,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (98,'attributes',4485,1,1976,1,2550,1,1506,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (101,'attributes',2970,1,1320,1,1840,1,470,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (102,'attributes',2970,1,1320,1,1840,1,470,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (103,'attributes',2970,1,1320,1,1840,1,470,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (104,'attributes',2970,1,1320,1,1840,1,470,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (105,'attributes',2970,1,1320,1,1840,1,470,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (108,'attributes',4670,1,1820,1,2750,1,1179,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (109,'attributes',4670,1,1820,1,2750,1,1179,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (110,'attributes',4670,1,1820,1,2750,1,1179,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (111,'attributes',4670,1,1820,1,2750,1,1179,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (112,'attributes',4670,1,1820,1,2750,1,1179,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (113,'attributes',4670,1,1820,1,2750,1,1179,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (114,'attributes',4670,1,1820,1,2750,1,1179,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (115,'attributes',4670,1,1820,1,2750,1,1179,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (116,'attributes',4670,1,1820,1,2750,1,1179,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (117,'attributes',4458,1,1749,1,2591,1,1510,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (118,'attributes',4458,1,1749,1,2591,1,1510,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (119,'attributes',4458,1,1749,1,2591,1,1510,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (120,'attributes',4458,1,1749,1,2591,1,1510,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (123,'attributes',4400,1,1790,1,2510,1,1300,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (124,'attributes',4400,1,1790,1,2510,1,1300,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (125,'attributes',4400,1,1790,1,2510,1,1300,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (126,'attributes',4400,1,1790,1,2510,1,1300,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (129,'attributes',5766,1,2045,1,3327,1,2223,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (130,'attributes',5766,1,2045,1,3327,1,2223,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (131,'attributes',5766,1,2045,1,3327,1,2223,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (132,'attributes',5766,1,2045,1,3327,1,2223,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (133,'attributes',5766,1,2045,1,3327,1,2223,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (136,'attributes',4290,1,1750,1,2410,1,1160,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (138,'attributes',4290,1,1750,1,2410,1,1160,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (139,'attributes',4290,1,1750,1,2410,1,1160,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (140,'attributes',4520,1,1778,1,2400,1,1293,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (141,'attributes',4580,1,1800,1,2410,1,1385,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (142,'attributes',4520,1,1778,1,2400,1,1293,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (143,'attributes',4520,1,1778,1,2400,1,1293,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (144,'attributes',4580,1,1800,1,2410,1,1385,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (147,'attributes',4953,1,1816,1,2896,1,1226,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (148,'attributes',4953,1,1816,1,2896,1,1226,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (149,'attributes',4953,1,1816,1,2896,1,1226,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (150,'attributes',4953,1,1816,1,2896,1,1226,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (151,'attributes',4953,1,1816,1,2896,1,1226,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (152,'attributes',4953,1,1816,1,2896,1,1226,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (155,'attributes',3962,1,1473,1,2388,1,890,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (156,'attributes',3962,1,1473,1,2388,1,890,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (157,'attributes',3962,1,1473,1,2388,1,890,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (160,'attributes',4470,1,1676,1,2667,1,1080,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (161,'attributes',4470,1,1676,1,2667,1,1080,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (162,'attributes',4470,1,1676,1,2667,1,1080,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (165,'attributes',5607,1,2051,1,3150,1,1981,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (166,'attributes',5607,1,2051,1,3150,1,1981,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (169,'attributes',4170,1,1620,1,2220,1,1062,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (170,'attributes',4170,1,1620,1,2220,1,1062,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (172,'attributes',4170,1,1620,1,2220,1,1062,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (173,'attributes',4170,1,1620,1,2220,1,1062,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (174,'attributes',4170,1,1620,1,2220,1,1062,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (175,'attributes',4170,1,1620,1,2220,1,1062,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (178,'attributes',3658,1,1486,1,2350,1,600,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (180,'attributes',3658,1,1486,1,2350,1,600,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (183,'attributes',3555,1,1505,1,2020,1,615,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (184,'attributes',3555,1,1505,1,2020,1,615,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (187,'attributes',3950,1,1550,1,2235,1,1130,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (188,'attributes',3950,1,1550,1,2235,1,1130,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (189,'attributes',3950,1,1550,1,2235,1,1130,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (190,'attributes',3962,1,1461,1,2238,1,966,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (191,'attributes',3962,1,1461,1,2238,1,966,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (192,'attributes',3962,1,1461,1,2238,1,966,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (193,'attributes',3835,1,1410,1,2238,1,904,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (194,'attributes',3835,1,1410,1,2238,1,904,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (195,'attributes',3835,1,1410,1,2238,1,904,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (196,'attributes',3835,1,1410,1,2238,1,904,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (197,'attributes',3870,1,1660,1,2110,1,780,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (198,'attributes',4013,1,1676,1,2100,1,934,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (199,'attributes',3870,1,1660,1,2110,1,780,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (200,'attributes',3870,1,1660,1,2110,1,780,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (201,'attributes',4013,1,1670,1,2100,1,934,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (202,'attributes',3870,1,1660,1,2110,1,780,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (203,'attributes',4013,1,1670,1,2100,1,934,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (204,'attributes',4013,1,1676,1,2100,1,934,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (205,'attributes',4013,1,1676,1,2100,1,934,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (209,'attributes',4064,1,1537,1,2400,1,739,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (210,'attributes',4070,1,1560,1,2410,1,800,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (211,'attributes',4070,1,1560,1,2410,1,820,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (212,'attributes',4064,1,1537,1,2400,1,739,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (215,'attributes',4064,1,1537,1,2400,1,739,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (216,'attributes',4064,1,1537,1,2400,1,739,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (217,'attributes',4070,1,1560,1,2410,1,820,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (218,'attributes',4070,1,1560,1,2410,1,800,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (219,'attributes',4070,1,1560,1,2410,1,800,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (220,'attributes',4070,1,1560,1,2410,1,800,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (221,'attributes',4070,1,1560,1,2410,1,800,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (222,'attributes',4070,1,1560,1,2410,1,800,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (223,'attributes',4064,1,1537,1,2400,1,739,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (224,'attributes',4070,1,1560,1,2410,1,800,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (225,'attributes',4200,1,1640,1,2430,1,822,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (226,'attributes',4200,1,1640,1,2430,1,822,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (227,'attributes',4200,1,1640,1,2430,1,822,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (228,'attributes',4200,1,1640,1,2430,1,822,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (229,'attributes',4200,1,1640,1,2430,1,822,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (230,'attributes',4200,1,1640,1,2430,1,822,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (231,'attributes',4200,1,1640,1,2430,1,822,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (232,'attributes',4200,1,1640,1,2430,1,822,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (233,'attributes',4280,1,1720,1,2400,1,NULL,NULL); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (235,'attributes',4280,1,1720,1,2400,1,NULL,NULL); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (236,'attributes',4280,1,1720,1,2400,1,NULL,NULL); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (238,'attributes',4280,1,1720,1,2400,1,NULL,NULL); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (242,'attributes',4572,1,1676,1,2489,1,1465,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (243,'attributes',4572,1,1676,1,2489,1,1465,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (244,'attributes',4572,1,1676,1,2489,1,1465,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (245,'attributes',4572,1,1676,1,2489,1,1465,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (246,'attributes',4572,1,1676,1,2489,1,1465,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (247,'attributes',4572,1,1676,1,2489,1,1465,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (248,'attributes',4623,1,1676,1,2584,1,1550,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (249,'attributes',4623,1,1676,1,2584,1,1550,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (250,'attributes',4623,1,1676,1,2584,1,1550,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (251,'attributes',4407,1,1753,1,2600,1,1495,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (252,'attributes',4407,1,1753,1,2600,1,1495,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (253,'attributes',4407,1,1753,1,2600,1,1495,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (261,'attributes',4400,1,1600,1,2630,1,1100,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (262,'attributes',4400,1,1600,1,2630,1,1100,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (263,'attributes',4400,1,1600,1,2630,1,1100,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (264,'attributes',4410,1,1640,1,2510,1,950,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (265,'attributes',4410,1,1640,1,2510,1,950,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (266,'attributes',4410,1,1640,1,2510,1,950,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (267,'attributes',4710,1,1700,1,2720,1,1337,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (268,'attributes',4710,1,1700,1,2720,1,1337,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (269,'attributes',4710,1,1700,1,2720,1,1337,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (270,'attributes',4496,1,1650,1,2500,1,1178,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (271,'attributes',4496,1,1650,1,2500,1,1178,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (272,'attributes',4120,1,1660,1,2260,1,957,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (273,'attributes',4120,1,1660,1,2260,1,957,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (274,'attributes',4120,1,1660,1,2260,1,957,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (275,'attributes',3962,1,1676,1,2527,1,1312,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (276,'attributes',3962,1,1676,1,2527,1,1312,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (277,'attributes',3962,1,1676,1,2527,1,1312,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (278,'attributes',3962,1,1676,1,2527,1,1312,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (279,'attributes',4010,1,1540,1,2340,1,1158,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (280,'attributes',4010,1,1540,1,2340,1,1158,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (281,'attributes',5000,1,1860,1,2900,1,1805,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (282,'attributes',5000,1,1860,1,2900,1,1805,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (283,'attributes',5000,1,1860,1,2900,1,1805,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (284,'attributes',5130,1,1930,1,2900,1,1890,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (285,'attributes',5130,1,1930,1,2900,1,1890,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (286,'attributes',5130,1,1930,1,2900,1,1890,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (287,'attributes',5130,1,1930,1,2900,1,1890,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (288,'attributes',4591,1,1695,1,2727,1,1440,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (289,'attributes',4496,1,1638,1,2591,1,1473,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (290,'attributes',4496,1,1638,1,2591,1,1473,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (291,'attributes',4496,1,1638,1,2591,1,1473,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (292,'attributes',4496,1,1638,1,2591,1,1473,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (293,'attributes',4496,1,1638,1,2591,1,1473,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (294,'attributes',4496,1,1638,1,2591,1,1473,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (295,'attributes',4496,1,1638,1,2591,1,1473,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (296,'attributes',4448,1,1836,1,2500,1,1451,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (297,'attributes',4448,1,1836,1,2500,1,1451,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (298,'attributes',4448,1,1836,1,2500,1,1451,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (299,'attributes',4448,1,1836,1,2500,1,1451,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (302,'attributes',2300,1,1390,1,1510,1,360,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (303,'attributes',2300,1,1390,1,1510,1,360,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (304,'attributes',2300,1,1390,1,1510,1,360,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (305,'attributes',2300,1,1390,1,1510,1,360,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (306,'attributes',2300,1,1390,1,1510,1,360,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (307,'attributes',2900,1,1410,1,1380,1,550,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (308,'attributes',2900,1,1410,1,1380,1,550,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (309,'attributes',2900,1,1410,1,1380,1,550,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (310,'attributes',4397,1,1651,1,2479,1,1330,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (311,'attributes',4397,1,1651,1,2479,1,1330,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (312,'attributes',4397,1,1651,1,2479,1,1330,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (313,'attributes',4840,1,1700,1,2980,1,1300,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (314,'attributes',4840,1,1700,1,2980,1,1300,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (316,'attributes',4840,1,1700,1,2980,1,1300,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (317,'attributes',4840,1,1700,1,2980,1,1300,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (318,'attributes',4840,1,1700,1,2980,1,1300,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (319,'attributes',4510,1,1685,1,2845,1,NULL,NULL); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (320,'attributes',4510,1,1685,1,2845,1,NULL,NULL); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (321,'attributes',4510,1,1685,1,2845,1,NULL,NULL); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (322,'attributes',4510,1,1685,1,2845,1,NULL,NULL); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (323,'attributes',4510,1,1685,1,2845,1,NULL,NULL); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (324,'attributes',4510,1,1685,1,2845,1,NULL,NULL); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (325,'attributes',4510,1,1685,1,2845,1,NULL,NULL); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (326,'attributes',4510,1,1685,1,2845,1,NULL,NULL); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (327,'attributes',4750,1,1740,1,2820,1,1345,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (328,'attributes',4750,1,1740,1,2820,1,1345,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (329,'attributes',4750,1,1740,1,2820,1,1345,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (330,'attributes',4750,1,1740,1,2820,1,1345,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (331,'attributes',4750,1,1740,1,2820,1,1345,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (332,'attributes',4750,1,1740,1,2820,1,1345,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (333,'attributes',4750,1,1740,1,2820,1,1345,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (334,'attributes',4750,1,1740,1,2820,1,1345,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (335,'attributes',4890,1,1850,1,2760,1,1320,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (336,'attributes',4890,1,1850,1,2760,1,1320,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (337,'attributes',4890,1,1850,1,2760,1,1320,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (338,'attributes',4890,1,1850,1,2760,1,1320,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (339,'attributes',4890,1,1850,1,2760,1,1320,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (340,'attributes',4890,1,1850,1,2760,1,1320,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (341,'attributes',4890,1,1850,1,2760,1,1320,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (342,'attributes',4890,1,1850,1,2760,1,1320,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (343,'attributes',4890,1,1850,1,2760,1,1320,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (344,'attributes',4890,1,1850,1,2760,1,1320,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (345,'attributes',4740,1,1800,1,2710,1,1280,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (346,'attributes',4740,1,1800,1,2710,1,1280,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (347,'attributes',4740,1,1800,1,2710,1,1280,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (348,'attributes',4740,1,1800,1,2710,1,1280,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (349,'attributes',4285,1,1760,1,2400,1,1300,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (350,'attributes',4285,1,1760,1,2400,1,1300,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (351,'attributes',4285,1,1760,1,2400,1,1300,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (352,'attributes',4285,1,1760,1,2400,1,1300,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (353,'attributes',4285,1,1760,1,2400,1,1300,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (357,'attributes',3054,1,1397,1,2036,1,580,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (358,'attributes',3054,1,1397,1,2036,1,580,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (359,'attributes',3054,1,1397,1,2036,1,580,3); -INSERT INTO object_brick_query_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (360,'attributes',3054,1,1397,1,2036,1,580,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (9,'attributes',4458,1,1632,1,2438,1,1220,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (10,'attributes',4690,1,1660,1,2670,1,1245,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (11,'attributes',4458,1,1632,1,2438,1,1220,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (12,'attributes',4458,1,1632,1,2438,1,1220,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (13,'attributes',4458,1,1632,1,2438,1,1220,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (14,'attributes',4458,1,1632,1,2438,1,1220,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (15,'attributes',4690,1,1660,1,2670,1,1245,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (16,'attributes',4690,1,1660,1,2670,1,1245,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (17,'attributes',4591,1,1695,1,2727,1,1440,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (19,'attributes',4591,1,1695,1,2727,1,1440,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (20,'attributes',4591,1,1695,1,2727,1,1440,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (21,'attributes',4470,1,1638,1,2591,1,1422,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (22,'attributes',4470,1,1638,1,2591,1,1422,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (23,'attributes',4470,1,1638,1,2591,1,1422,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (24,'attributes',4470,1,1638,1,2591,1,1422,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (25,'attributes',4470,1,1638,1,2591,1,1422,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (26,'attributes',4470,1,1638,1,2591,1,1422,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (29,'attributes',4000,1,1560,1,2400,1,875,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (30,'attributes',4000,1,1560,1,2400,1,875,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (31,'attributes',4000,1,1560,1,2400,1,875,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (32,'attributes',4510,1,1610,1,1390,1,1280,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (33,'attributes',4510,1,1610,1,1390,1,1280,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (34,'attributes',4510,1,1610,1,1390,1,1280,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (37,'attributes',4010,1,1540,1,2340,1,1158,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (38,'attributes',4010,1,1540,1,2340,1,1158,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (41,'attributes',4785,1,1811,1,2845,1,1247,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (43,'attributes',4785,1,1811,1,2845,1,1247,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (44,'attributes',4785,1,1811,1,2845,1,1247,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (47,'attributes',5730,1,2040,1,3310,1,2140,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (48,'attributes',5730,1,2040,1,3310,1,2140,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (51,'attributes',5730,1,2040,1,3310,1,2140,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (52,'attributes',5730,1,2040,1,3310,1,2140,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (53,'attributes',5730,1,2040,1,3310,1,2140,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (54,'attributes',5730,1,2040,1,3310,1,2140,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (55,'attributes',5700,1,2030,1,3300,1,2115,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (57,'attributes',5700,1,2030,1,3300,1,2115,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (58,'attributes',5700,1,2030,1,3300,1,2115,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (61,'attributes',4980,1,1890,1,2930,1,1550,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (62,'attributes',4980,1,1890,1,2930,1,1550,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (63,'attributes',4980,1,1890,1,2930,1,1550,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (64,'attributes',4980,1,1890,1,2930,1,1550,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (66,'attributes',4980,1,1890,1,2930,1,1550,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (67,'attributes',4980,1,1890,1,2930,1,1550,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (68,'attributes',4267,1,1790,1,2590,1,1313,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (69,'attributes',4267,1,1790,1,2590,1,1313,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (70,'attributes',4267,1,1790,1,2590,1,1313,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (73,'attributes',3778,1,1478,1,2370,1,682,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (74,'attributes',3778,1,1478,1,2370,1,682,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (75,'attributes',3778,1,1478,1,2370,1,682,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (76,'attributes',4810,1,1800,1,3130,1,1210,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (77,'attributes',4810,1,1800,1,3130,1,1210,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (78,'attributes',4810,1,1800,1,3130,1,1210,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (81,'attributes',3962,1,1727,1,1245,1,1147,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (82,'attributes',3962,1,1727,1,1245,1,1147,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (85,'attributes',5217,1,1953,1,2921,1,1513,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (86,'attributes',5217,1,1953,1,2921,1,1513,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (87,'attributes',5217,1,1953,1,2921,1,1513,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (88,'attributes',5217,1,1953,1,2921,1,1513,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (89,'attributes',5217,1,1953,1,2921,1,1513,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (90,'attributes',5217,1,1953,1,2921,1,1513,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (91,'attributes',5217,1,1953,1,2921,1,1513,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (92,'attributes',5217,1,1953,1,2921,1,1513,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (95,'attributes',4485,1,1976,1,2550,1,1506,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (97,'attributes',4485,1,1976,1,2550,1,1506,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (98,'attributes',4485,1,1976,1,2550,1,1506,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (101,'attributes',2970,1,1320,1,1840,1,470,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (102,'attributes',2970,1,1320,1,1840,1,470,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (103,'attributes',2970,1,1320,1,1840,1,470,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (104,'attributes',2970,1,1320,1,1840,1,470,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (105,'attributes',2970,1,1320,1,1840,1,470,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (108,'attributes',4670,1,1820,1,2750,1,1179,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (109,'attributes',4670,1,1820,1,2750,1,1179,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (110,'attributes',4670,1,1820,1,2750,1,1179,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (111,'attributes',4670,1,1820,1,2750,1,1179,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (112,'attributes',4670,1,1820,1,2750,1,1179,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (113,'attributes',4670,1,1820,1,2750,1,1179,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (114,'attributes',4670,1,1820,1,2750,1,1179,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (115,'attributes',4670,1,1820,1,2750,1,1179,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (116,'attributes',4670,1,1820,1,2750,1,1179,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (117,'attributes',4458,1,1749,1,2591,1,1510,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (118,'attributes',4458,1,1749,1,2591,1,1510,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (119,'attributes',4458,1,1749,1,2591,1,1510,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (120,'attributes',4458,1,1749,1,2591,1,1510,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (123,'attributes',4400,1,1790,1,2510,1,1300,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (124,'attributes',4400,1,1790,1,2510,1,1300,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (125,'attributes',4400,1,1790,1,2510,1,1300,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (126,'attributes',4400,1,1790,1,2510,1,1300,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (129,'attributes',5766,1,2045,1,3327,1,2223,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (130,'attributes',5766,1,2045,1,3327,1,2223,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (131,'attributes',5766,1,2045,1,3327,1,2223,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (132,'attributes',5766,1,2045,1,3327,1,2223,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (133,'attributes',5766,1,2045,1,3327,1,2223,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (136,'attributes',4290,1,1750,1,2410,1,1160,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (138,'attributes',4290,1,1750,1,2410,1,1160,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (139,'attributes',4290,1,1750,1,2410,1,1160,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (140,'attributes',4520,1,1778,1,2400,1,1293,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (141,'attributes',4580,1,1800,1,2410,1,1385,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (142,'attributes',4520,1,1778,1,2400,1,1293,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (143,'attributes',4520,1,1778,1,2400,1,1293,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (144,'attributes',4580,1,1800,1,2410,1,1385,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (147,'attributes',4953,1,1816,1,2896,1,1226,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (148,'attributes',4953,1,1816,1,2896,1,1226,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (149,'attributes',4953,1,1816,1,2896,1,1226,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (150,'attributes',4953,1,1816,1,2896,1,1226,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (151,'attributes',4953,1,1816,1,2896,1,1226,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (152,'attributes',4953,1,1816,1,2896,1,1226,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (155,'attributes',3962,1,1473,1,2388,1,890,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (156,'attributes',3962,1,1473,1,2388,1,890,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (157,'attributes',3962,1,1473,1,2388,1,890,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (160,'attributes',4470,1,1676,1,2667,1,1080,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (161,'attributes',4470,1,1676,1,2667,1,1080,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (162,'attributes',4470,1,1676,1,2667,1,1080,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (165,'attributes',5607,1,2051,1,3150,1,1981,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (166,'attributes',5607,1,2051,1,3150,1,1981,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (169,'attributes',4170,1,1620,1,2220,1,1062,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (170,'attributes',4170,1,1620,1,2220,1,1062,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (172,'attributes',4170,1,1620,1,2220,1,1062,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (173,'attributes',4170,1,1620,1,2220,1,1062,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (174,'attributes',4170,1,1620,1,2220,1,1062,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (175,'attributes',4170,1,1620,1,2220,1,1062,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (178,'attributes',3658,1,1486,1,2350,1,600,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (180,'attributes',3658,1,1486,1,2350,1,600,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (183,'attributes',3555,1,1505,1,2020,1,615,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (184,'attributes',3555,1,1505,1,2020,1,615,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (187,'attributes',3950,1,1550,1,2235,1,1130,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (188,'attributes',3950,1,1550,1,2235,1,1130,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (189,'attributes',3950,1,1550,1,2235,1,1130,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (190,'attributes',3962,1,1461,1,2238,1,966,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (191,'attributes',3962,1,1461,1,2238,1,966,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (192,'attributes',3962,1,1461,1,2238,1,966,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (193,'attributes',3835,1,1410,1,2238,1,904,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (194,'attributes',3835,1,1410,1,2238,1,904,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (195,'attributes',3835,1,1410,1,2238,1,904,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (196,'attributes',3835,1,1410,1,2238,1,904,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (197,'attributes',3870,1,1660,1,2110,1,780,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (198,'attributes',4013,1,1676,1,2100,1,934,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (199,'attributes',3870,1,1660,1,2110,1,780,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (200,'attributes',3870,1,1660,1,2110,1,780,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (201,'attributes',4013,1,1670,1,2100,1,934,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (202,'attributes',3870,1,1660,1,2110,1,780,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (203,'attributes',4013,1,1670,1,2100,1,934,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (204,'attributes',4013,1,1676,1,2100,1,934,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (205,'attributes',4013,1,1676,1,2100,1,934,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (209,'attributes',4064,1,1537,1,2400,1,739,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (210,'attributes',4070,1,1560,1,2410,1,800,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (211,'attributes',4070,1,1560,1,2410,1,820,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (212,'attributes',4064,1,1537,1,2400,1,739,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (215,'attributes',4064,1,1537,1,2400,1,739,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (216,'attributes',4064,1,1537,1,2400,1,739,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (217,'attributes',4070,1,1560,1,2410,1,820,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (218,'attributes',4070,1,1560,1,2410,1,800,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (219,'attributes',4070,1,1560,1,2410,1,800,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (220,'attributes',4070,1,1560,1,2410,1,800,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (221,'attributes',4070,1,1560,1,2410,1,800,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (222,'attributes',4070,1,1560,1,2410,1,800,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (223,'attributes',4064,1,1537,1,2400,1,739,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (224,'attributes',4070,1,1560,1,2410,1,800,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (225,'attributes',4200,1,1640,1,2430,1,822,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (226,'attributes',4200,1,1640,1,2430,1,822,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (227,'attributes',4200,1,1640,1,2430,1,822,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (228,'attributes',4200,1,1640,1,2430,1,822,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (229,'attributes',4200,1,1640,1,2430,1,822,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (230,'attributes',4200,1,1640,1,2430,1,822,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (231,'attributes',4200,1,1640,1,2430,1,822,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (232,'attributes',4200,1,1640,1,2430,1,822,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (233,'attributes',4280,1,1720,1,2400,1,NULL,NULL); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (235,'attributes',4280,1,1720,1,2400,1,NULL,NULL); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (236,'attributes',4280,1,1720,1,2400,1,NULL,NULL); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (238,'attributes',4280,1,1720,1,2400,1,NULL,NULL); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (242,'attributes',4572,1,1676,1,2489,1,1465,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (243,'attributes',4572,1,1676,1,2489,1,1465,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (244,'attributes',4572,1,1676,1,2489,1,1465,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (245,'attributes',4572,1,1676,1,2489,1,1465,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (246,'attributes',4572,1,1676,1,2489,1,1465,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (247,'attributes',4572,1,1676,1,2489,1,1465,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (248,'attributes',4623,1,1676,1,2584,1,1550,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (249,'attributes',4623,1,1676,1,2584,1,1550,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (250,'attributes',4623,1,1676,1,2584,1,1550,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (251,'attributes',4407,1,1753,1,2600,1,1495,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (252,'attributes',4407,1,1753,1,2600,1,1495,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (253,'attributes',4407,1,1753,1,2600,1,1495,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (261,'attributes',4400,1,1600,1,2630,1,1100,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (262,'attributes',4400,1,1600,1,2630,1,1100,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (263,'attributes',4400,1,1600,1,2630,1,1100,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (264,'attributes',4410,1,1640,1,2510,1,950,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (265,'attributes',4410,1,1640,1,2510,1,950,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (266,'attributes',4410,1,1640,1,2510,1,950,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (267,'attributes',4710,1,1700,1,2720,1,1337,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (268,'attributes',4710,1,1700,1,2720,1,1337,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (269,'attributes',4710,1,1700,1,2720,1,1337,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (270,'attributes',4496,1,1650,1,2500,1,1178,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (271,'attributes',4496,1,1650,1,2500,1,1178,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (272,'attributes',4120,1,1660,1,2260,1,957,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (273,'attributes',4120,1,1660,1,2260,1,957,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (274,'attributes',4120,1,1660,1,2260,1,957,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (275,'attributes',3962,1,1676,1,2527,1,1312,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (276,'attributes',3962,1,1676,1,2527,1,1312,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (277,'attributes',3962,1,1676,1,2527,1,1312,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (278,'attributes',3962,1,1676,1,2527,1,1312,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (279,'attributes',4010,1,1540,1,2340,1,1158,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (280,'attributes',4010,1,1540,1,2340,1,1158,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (281,'attributes',5000,1,1860,1,2900,1,1805,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (282,'attributes',5000,1,1860,1,2900,1,1805,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (283,'attributes',5000,1,1860,1,2900,1,1805,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (284,'attributes',5130,1,1930,1,2900,1,1890,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (285,'attributes',5130,1,1930,1,2900,1,1890,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (286,'attributes',5130,1,1930,1,2900,1,1890,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (287,'attributes',5130,1,1930,1,2900,1,1890,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (288,'attributes',4591,1,1695,1,2727,1,1440,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (289,'attributes',4496,1,1638,1,2591,1,1473,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (290,'attributes',4496,1,1638,1,2591,1,1473,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (291,'attributes',4496,1,1638,1,2591,1,1473,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (292,'attributes',4496,1,1638,1,2591,1,1473,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (293,'attributes',4496,1,1638,1,2591,1,1473,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (294,'attributes',4496,1,1638,1,2591,1,1473,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (295,'attributes',4496,1,1638,1,2591,1,1473,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (296,'attributes',4448,1,1836,1,2500,1,1451,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (297,'attributes',4448,1,1836,1,2500,1,1451,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (298,'attributes',4448,1,1836,1,2500,1,1451,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (299,'attributes',4448,1,1836,1,2500,1,1451,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (302,'attributes',2300,1,1390,1,1510,1,360,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (303,'attributes',2300,1,1390,1,1510,1,360,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (304,'attributes',2300,1,1390,1,1510,1,360,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (305,'attributes',2300,1,1390,1,1510,1,360,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (306,'attributes',2300,1,1390,1,1510,1,360,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (307,'attributes',2900,1,1410,1,1380,1,550,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (308,'attributes',2900,1,1410,1,1380,1,550,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (309,'attributes',2900,1,1410,1,1380,1,550,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (310,'attributes',4397,1,1651,1,2479,1,1330,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (311,'attributes',4397,1,1651,1,2479,1,1330,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (312,'attributes',4397,1,1651,1,2479,1,1330,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (313,'attributes',4840,1,1700,1,2980,1,1300,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (314,'attributes',4840,1,1700,1,2980,1,1300,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (316,'attributes',4840,1,1700,1,2980,1,1300,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (317,'attributes',4840,1,1700,1,2980,1,1300,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (318,'attributes',4840,1,1700,1,2980,1,1300,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (319,'attributes',4510,1,1685,1,2845,1,NULL,NULL); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (320,'attributes',4510,1,1685,1,2845,1,NULL,NULL); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (321,'attributes',4510,1,1685,1,2845,1,NULL,NULL); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (322,'attributes',4510,1,1685,1,2845,1,NULL,NULL); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (323,'attributes',4510,1,1685,1,2845,1,NULL,NULL); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (324,'attributes',4510,1,1685,1,2845,1,NULL,NULL); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (325,'attributes',4510,1,1685,1,2845,1,NULL,NULL); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (326,'attributes',4510,1,1685,1,2845,1,NULL,NULL); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (327,'attributes',4750,1,1740,1,2820,1,1345,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (328,'attributes',4750,1,1740,1,2820,1,1345,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (329,'attributes',4750,1,1740,1,2820,1,1345,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (330,'attributes',4750,1,1740,1,2820,1,1345,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (331,'attributes',4750,1,1740,1,2820,1,1345,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (332,'attributes',4750,1,1740,1,2820,1,1345,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (333,'attributes',4750,1,1740,1,2820,1,1345,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (334,'attributes',4750,1,1740,1,2820,1,1345,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (335,'attributes',4890,1,1850,1,2760,1,1320,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (336,'attributes',4890,1,1850,1,2760,1,1320,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (337,'attributes',4890,1,1850,1,2760,1,1320,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (338,'attributes',4890,1,1850,1,2760,1,1320,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (339,'attributes',4890,1,1850,1,2760,1,1320,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (340,'attributes',4890,1,1850,1,2760,1,1320,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (341,'attributes',4890,1,1850,1,2760,1,1320,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (342,'attributes',4890,1,1850,1,2760,1,1320,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (343,'attributes',4890,1,1850,1,2760,1,1320,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (344,'attributes',4890,1,1850,1,2760,1,1320,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (345,'attributes',4740,1,1800,1,2710,1,1280,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (346,'attributes',4740,1,1800,1,2710,1,1280,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (347,'attributes',4740,1,1800,1,2710,1,1280,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (348,'attributes',4740,1,1800,1,2710,1,1280,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (349,'attributes',4285,1,1760,1,2400,1,1300,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (350,'attributes',4285,1,1760,1,2400,1,1300,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (351,'attributes',4285,1,1760,1,2400,1,1300,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (352,'attributes',4285,1,1760,1,2400,1,1300,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (353,'attributes',4285,1,1760,1,2400,1,1300,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (357,'attributes',3054,1,1397,1,2036,1,580,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (358,'attributes',3054,1,1397,1,2036,1,580,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (359,'attributes',3054,1,1397,1,2036,1,580,3); +INSERT INTO object_brick_query_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (360,'attributes',3054,1,1397,1,2036,1,580,3); diff --git a/dump/data-1-object_brick_query_Engine_CAR.sql b/dump/data-1-object_brick_query_Engine_CAR.sql index 9bca5b9c..9acebcba 100644 --- a/dump/data-1-object_brick_query_Engine_CAR.sql +++ b/dump/data-1-object_brick_query_Engine_CAR.sql @@ -1,278 +1,278 @@ SET NAMES utf8mb4; -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (9,'attributes',6,3781,5,198,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (10,'attributes',6,3781,5,198,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (11,'attributes',6,3781,5,198,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (12,'attributes',6,3781,5,198,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (13,'attributes',6,3781,5,198,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (14,'attributes',6,3781,5,198,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (15,'attributes',6,3781,5,198,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (16,'attributes',6,3781,5,198,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (17,'attributes',6,2483,5,90,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (19,'attributes',6,2483,5,90,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (20,'attributes',6,2483,5,90,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (21,'attributes',6,3442,5,156,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (22,'attributes',6,3442,5,156,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (23,'attributes',6,3442,5,156,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (24,'attributes',6,3442,5,156,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (25,'attributes',6,3442,5,156,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (26,'attributes',6,3442,5,156,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (29,'attributes',4,1289,5,39,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (30,'attributes',4,1289,5,39,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (31,'attributes',4,1289,5,39,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (32,'attributes',4,1975,5,NULL,NULL,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (33,'attributes',4,1975,5,NULL,NULL,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (34,'attributes',4,1975,5,NULL,NULL,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (37,'attributes',6,2912,5,96,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (38,'attributes',6,2912,5,96,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (41,'attributes',8,3531,5,112,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (43,'attributes',8,3531,5,112,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (44,'attributes',8,3531,5,112,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (47,'attributes',8,6380,5,147,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (48,'attributes',8,6380,5,147,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (51,'attributes',8,6380,5,147,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (52,'attributes',8,6380,5,147,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (53,'attributes',8,6380,5,147,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (54,'attributes',8,6380,5,147,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (55,'attributes',8,7029,5,155,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (57,'attributes',8,7029,5,155,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (58,'attributes',8,7029,5,155,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (61,'attributes',8,4343,5,110,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (62,'attributes',8,4343,5,110,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (63,'attributes',8,4343,5,110,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (64,'attributes',8,4343,5,110,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (66,'attributes',8,4343,5,110,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (67,'attributes',8,4343,5,110,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (68,'attributes',8,4339,5,156,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (69,'attributes',8,4339,5,156,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (70,'attributes',8,4339,5,156,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (73,'attributes',2,375,5,6.7,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (74,'attributes',2,375,5,6.7,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (75,'attributes',2,375,5,6.7,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (76,'attributes',4,1983,5,73,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (77,'attributes',4,1983,5,73,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (78,'attributes',4,1983,5,73,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (81,'attributes',8,6997,5,305,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (82,'attributes',8,6997,5,305,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (85,'attributes',6,2680,5,82,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (86,'attributes',6,2680,5,82,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (87,'attributes',6,2680,5,82,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (88,'attributes',6,2680,5,82,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (89,'attributes',6,2680,5,82,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (90,'attributes',6,2680,5,82,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (91,'attributes',6,2680,5,82,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (92,'attributes',6,2680,5,82,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (95,'attributes',12,4942,5,287,6,'middle'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (97,'attributes',12,4942,5,287,6,'middle'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (98,'attributes',12,4942,5,287,6,'middle'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (101,'attributes',2,479,5,9.7,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (102,'attributes',2,479,5,9.7,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (103,'attributes',2,479,5,9.7,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (104,'attributes',2,479,5,9.7,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (105,'attributes',2,479,5,9.7,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (108,'attributes',8,6385,5,239,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (109,'attributes',8,6385,5,239,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (110,'attributes',8,6385,5,239,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (111,'attributes',8,6385,5,239,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (112,'attributes',8,6385,5,239,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (113,'attributes',8,6385,5,239,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (114,'attributes',8,6385,5,239,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (115,'attributes',8,6385,5,239,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (116,'attributes',8,6385,5,239,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (117,'attributes',8,3910,5,96,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (118,'attributes',8,3910,5,96,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (119,'attributes',8,3910,5,96,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (120,'attributes',8,3910,5,96,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (123,'attributes',12,3929,5,287,6,'middle'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (124,'attributes',12,3929,5,287,6,'middle'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (125,'attributes',12,3929,5,287,6,'middle'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (126,'attributes',12,3929,5,287,6,'middle'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (129,'attributes',8,7043,5,261,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (130,'attributes',8,7043,5,261,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (131,'attributes',8,7043,5,261,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (132,'attributes',8,7043,5,261,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (133,'attributes',8,7043,5,261,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (136,'attributes',4,1897,5,77,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (138,'attributes',4,1897,5,77,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (139,'attributes',4,1897,5,77,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (140,'attributes',6,2996,5,160,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (141,'attributes',6,2996,5,160,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (142,'attributes',6,2996,5,160,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (143,'attributes',6,2996,5,160,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (144,'attributes',6,2996,5,160,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (147,'attributes',8,4265,5,122,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (148,'attributes',8,4265,5,122,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (149,'attributes',8,4265,5,122,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (150,'attributes',8,4265,5,122,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (151,'attributes',8,4265,5,122,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (152,'attributes',8,4265,5,122,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (155,'attributes',4,1489,5,50,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (156,'attributes',4,1489,5,50,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (157,'attributes',4,1489,5,50,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (160,'attributes',4,1468,5,48,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (161,'attributes',4,1468,5,48,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (162,'attributes',4,1468,5,48,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (165,'attributes',8,6371,5,223,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (166,'attributes',8,6371,5,223,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (169,'attributes',6,1991,5,119,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (170,'attributes',6,1991,5,119,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (172,'attributes',6,1991,5,119,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (173,'attributes',6,1991,5,119,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (174,'attributes',6,1991,5,119,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (175,'attributes',6,1991,5,119,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (178,'attributes',4,747,5,18,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (180,'attributes',4,747,5,18,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (183,'attributes',2,594,5,22,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (184,'attributes',2,594,5,22,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (187,'attributes',6,2498,5,111.9,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (188,'attributes',6,2498,5,111.9,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (189,'attributes',6,2498,5,111.9,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (190,'attributes',4,2138,5,75.6,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (191,'attributes',4,2138,5,75.6,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (192,'attributes',4,2138,5,75.6,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (193,'attributes',4,1991,5,74.6,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (194,'attributes',4,1991,5,74.6,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (195,'attributes',4,1991,5,74.6,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (196,'attributes',4,1991,5,74.6,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (197,'attributes',4,1131,5,29,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (198,'attributes',4,1582,5,55,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (199,'attributes',4,1131,5,29,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (200,'attributes',4,1131,5,29,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (201,'attributes',4,1582,5,70,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (202,'attributes',4,1131,5,29,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (203,'attributes',4,1582,5,70,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (204,'attributes',4,1582,5,55,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (205,'attributes',4,1582,5,55,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (209,'attributes',4,1192,5,29.8,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (210,'attributes',4,1493,5,39,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (211,'attributes',4,1285,5,29,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (212,'attributes',4,1192,5,29.8,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (215,'attributes',4,1192,5,29.8,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (216,'attributes',4,1192,5,29.8,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (217,'attributes',4,1285,5,29,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (218,'attributes',4,1493,5,39,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (219,'attributes',4,1493,5,39,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (220,'attributes',4,1493,5,39,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (221,'attributes',4,1493,5,39,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (222,'attributes',4,1493,5,39,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (223,'attributes',4,1192,5,29.8,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (224,'attributes',4,1493,5,39,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (225,'attributes',4,1192,5,22,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (226,'attributes',4,1192,5,22,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (227,'attributes',4,1192,5,22,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (228,'attributes',4,1192,5,22,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (229,'attributes',4,1192,5,22,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (230,'attributes',4,1192,5,22,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (231,'attributes',4,1192,5,22,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (232,'attributes',4,1192,5,22,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (233,'attributes',4,1100,5,18,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (235,'attributes',4,1100,5,18,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (236,'attributes',4,1100,5,18,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (238,'attributes',4,1100,5,18,6,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (242,'attributes',6,3996,5,210,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (243,'attributes',6,3996,5,210,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (244,'attributes',6,3996,5,210,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (245,'attributes',6,3996,5,210,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (246,'attributes',6,3996,5,210,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (247,'attributes',6,3996,5,210,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (248,'attributes',6,3996,5,210,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (249,'attributes',6,3996,5,210,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (250,'attributes',6,3996,5,210,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (251,'attributes',12,2953,5,186,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (252,'attributes',12,2953,5,186,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (253,'attributes',12,2953,5,186,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (261,'attributes',4,1884,5,67.1,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (262,'attributes',4,1884,5,67.1,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (263,'attributes',4,1884,5,67.1,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (264,'attributes',4,1974,5,85,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (265,'attributes',4,1974,5,85,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (266,'attributes',4,1974,5,85,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (267,'attributes',4,1975,5,78,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (268,'attributes',4,1975,5,78,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (269,'attributes',4,1975,5,78,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (270,'attributes',4,1975,5,85,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (271,'attributes',4,1975,5,85,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (272,'attributes',4,1290,5,75,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (273,'attributes',4,1290,5,75,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (274,'attributes',4,1290,5,75,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (275,'attributes',8,2594,5,149.1,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (276,'attributes',8,2594,5,149.1,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (277,'attributes',8,2594,5,149.1,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (278,'attributes',8,2594,5,149.1,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (279,'attributes',6,2912,5,96,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (280,'attributes',6,2912,5,96,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (281,'attributes',6,3781,5,164,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (282,'attributes',6,3781,5,164,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (283,'attributes',6,3781,5,164,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (284,'attributes',6,3781,5,188,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (285,'attributes',6,3781,5,188,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (286,'attributes',6,3781,5,188,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (287,'attributes',6,3781,5,188,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (288,'attributes',6,2483,5,90,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (289,'attributes',6,3442,5,141,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (290,'attributes',6,3442,5,141,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (291,'attributes',6,3442,5,141,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (292,'attributes',6,3442,5,141,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (293,'attributes',6,3442,5,141,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (294,'attributes',6,3442,5,141,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (295,'attributes',6,3442,5,141,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (296,'attributes',8,4474,5,176,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (297,'attributes',8,4474,5,176,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (298,'attributes',8,4474,5,176,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (299,'attributes',8,4474,5,176,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (302,'attributes',4,298,5,NULL,NULL,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (303,'attributes',4,298,5,NULL,NULL,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (304,'attributes',4,298,5,NULL,NULL,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (305,'attributes',4,298,5,NULL,NULL,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (306,'attributes',4,298,5,NULL,NULL,'back'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (307,'attributes',2,581,5,15,6,NULL); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (308,'attributes',2,581,5,15,6,NULL); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (309,'attributes',2,581,5,15,6,NULL); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (310,'attributes',8,3169,5,104,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (311,'attributes',8,3169,5,104,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (312,'attributes',8,3169,5,104,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (313,'attributes',8,3485,5,67,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (314,'attributes',8,3485,5,67,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (316,'attributes',8,3485,5,67,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (317,'attributes',8,3485,5,67,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (318,'attributes',8,3485,5,67,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (319,'attributes',6,2195,5,58,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (320,'attributes',6,2195,5,58,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (321,'attributes',6,2195,5,58,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (322,'attributes',6,2195,5,58,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (323,'attributes',6,2195,5,58,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (324,'attributes',6,2195,5,58,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (325,'attributes',6,2195,5,58,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (326,'attributes',6,2195,5,58,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (327,'attributes',6,2195,5,84,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (328,'attributes',6,2195,5,84,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (329,'attributes',6,2195,5,84,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (330,'attributes',6,2195,5,84,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (331,'attributes',6,2195,5,84,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (332,'attributes',6,2195,5,84,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (333,'attributes',6,2195,5,84,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (334,'attributes',6,2195,5,84,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (335,'attributes',4,2198,5,70,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (336,'attributes',4,2198,5,70,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (337,'attributes',4,2198,5,70,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (338,'attributes',4,2198,5,70,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (339,'attributes',4,2198,5,70,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (340,'attributes',4,2198,5,70,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (341,'attributes',4,2198,5,70,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (342,'attributes',4,2198,5,70,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (343,'attributes',4,2198,5,70,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (344,'attributes',4,2198,5,70,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (345,'attributes',4,1897,5,59,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (346,'attributes',4,1897,5,59,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (347,'attributes',4,1897,5,59,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (348,'attributes',4,1897,5,59,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (349,'attributes',6,2308,5,110,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (350,'attributes',6,2308,5,110,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (351,'attributes',6,2308,5,110,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (352,'attributes',6,2308,5,110,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (353,'attributes',6,2308,5,110,6,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (357,'attributes',4,850,5,NULL,NULL,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (358,'attributes',4,850,5,NULL,NULL,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (359,'attributes',4,850,5,NULL,NULL,'front'); -INSERT INTO object_brick_query_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (360,'attributes',4,850,5,NULL,NULL,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (9,'attributes',6,3781,5,198,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (10,'attributes',6,3781,5,198,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (11,'attributes',6,3781,5,198,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (12,'attributes',6,3781,5,198,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (13,'attributes',6,3781,5,198,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (14,'attributes',6,3781,5,198,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (15,'attributes',6,3781,5,198,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (16,'attributes',6,3781,5,198,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (17,'attributes',6,2483,5,90,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (19,'attributes',6,2483,5,90,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (20,'attributes',6,2483,5,90,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (21,'attributes',6,3442,5,156,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (22,'attributes',6,3442,5,156,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (23,'attributes',6,3442,5,156,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (24,'attributes',6,3442,5,156,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (25,'attributes',6,3442,5,156,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (26,'attributes',6,3442,5,156,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (29,'attributes',4,1289,5,39,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (30,'attributes',4,1289,5,39,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (31,'attributes',4,1289,5,39,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (32,'attributes',4,1975,5,NULL,NULL,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (33,'attributes',4,1975,5,NULL,NULL,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (34,'attributes',4,1975,5,NULL,NULL,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (37,'attributes',6,2912,5,96,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (38,'attributes',6,2912,5,96,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (41,'attributes',8,3531,5,112,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (43,'attributes',8,3531,5,112,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (44,'attributes',8,3531,5,112,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (47,'attributes',8,6380,5,147,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (48,'attributes',8,6380,5,147,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (51,'attributes',8,6380,5,147,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (52,'attributes',8,6380,5,147,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (53,'attributes',8,6380,5,147,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (54,'attributes',8,6380,5,147,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (55,'attributes',8,7029,5,155,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (57,'attributes',8,7029,5,155,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (58,'attributes',8,7029,5,155,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (61,'attributes',8,4343,5,110,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (62,'attributes',8,4343,5,110,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (63,'attributes',8,4343,5,110,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (64,'attributes',8,4343,5,110,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (66,'attributes',8,4343,5,110,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (67,'attributes',8,4343,5,110,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (68,'attributes',8,4339,5,156,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (69,'attributes',8,4339,5,156,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (70,'attributes',8,4339,5,156,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (73,'attributes',2,375,5,6.7,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (74,'attributes',2,375,5,6.7,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (75,'attributes',2,375,5,6.7,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (76,'attributes',4,1983,5,73,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (77,'attributes',4,1983,5,73,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (78,'attributes',4,1983,5,73,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (81,'attributes',8,6997,5,305,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (82,'attributes',8,6997,5,305,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (85,'attributes',6,2680,5,82,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (86,'attributes',6,2680,5,82,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (87,'attributes',6,2680,5,82,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (88,'attributes',6,2680,5,82,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (89,'attributes',6,2680,5,82,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (90,'attributes',6,2680,5,82,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (91,'attributes',6,2680,5,82,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (92,'attributes',6,2680,5,82,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (95,'attributes',12,4942,5,287,6,'middle'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (97,'attributes',12,4942,5,287,6,'middle'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (98,'attributes',12,4942,5,287,6,'middle'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (101,'attributes',2,479,5,9.7,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (102,'attributes',2,479,5,9.7,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (103,'attributes',2,479,5,9.7,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (104,'attributes',2,479,5,9.7,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (105,'attributes',2,479,5,9.7,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (108,'attributes',8,6385,5,239,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (109,'attributes',8,6385,5,239,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (110,'attributes',8,6385,5,239,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (111,'attributes',8,6385,5,239,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (112,'attributes',8,6385,5,239,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (113,'attributes',8,6385,5,239,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (114,'attributes',8,6385,5,239,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (115,'attributes',8,6385,5,239,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (116,'attributes',8,6385,5,239,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (117,'attributes',8,3910,5,96,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (118,'attributes',8,3910,5,96,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (119,'attributes',8,3910,5,96,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (120,'attributes',8,3910,5,96,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (123,'attributes',12,3929,5,287,6,'middle'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (124,'attributes',12,3929,5,287,6,'middle'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (125,'attributes',12,3929,5,287,6,'middle'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (126,'attributes',12,3929,5,287,6,'middle'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (129,'attributes',8,7043,5,261,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (130,'attributes',8,7043,5,261,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (131,'attributes',8,7043,5,261,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (132,'attributes',8,7043,5,261,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (133,'attributes',8,7043,5,261,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (136,'attributes',4,1897,5,77,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (138,'attributes',4,1897,5,77,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (139,'attributes',4,1897,5,77,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (140,'attributes',6,2996,5,160,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (141,'attributes',6,2996,5,160,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (142,'attributes',6,2996,5,160,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (143,'attributes',6,2996,5,160,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (144,'attributes',6,2996,5,160,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (147,'attributes',8,4265,5,122,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (148,'attributes',8,4265,5,122,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (149,'attributes',8,4265,5,122,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (150,'attributes',8,4265,5,122,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (151,'attributes',8,4265,5,122,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (152,'attributes',8,4265,5,122,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (155,'attributes',4,1489,5,50,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (156,'attributes',4,1489,5,50,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (157,'attributes',4,1489,5,50,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (160,'attributes',4,1468,5,48,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (161,'attributes',4,1468,5,48,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (162,'attributes',4,1468,5,48,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (165,'attributes',8,6371,5,223,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (166,'attributes',8,6371,5,223,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (169,'attributes',6,1991,5,119,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (170,'attributes',6,1991,5,119,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (172,'attributes',6,1991,5,119,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (173,'attributes',6,1991,5,119,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (174,'attributes',6,1991,5,119,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (175,'attributes',6,1991,5,119,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (178,'attributes',4,747,5,18,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (180,'attributes',4,747,5,18,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (183,'attributes',2,594,5,22,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (184,'attributes',2,594,5,22,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (187,'attributes',6,2498,5,111.9,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (188,'attributes',6,2498,5,111.9,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (189,'attributes',6,2498,5,111.9,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (190,'attributes',4,2138,5,75.6,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (191,'attributes',4,2138,5,75.6,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (192,'attributes',4,2138,5,75.6,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (193,'attributes',4,1991,5,74.6,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (194,'attributes',4,1991,5,74.6,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (195,'attributes',4,1991,5,74.6,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (196,'attributes',4,1991,5,74.6,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (197,'attributes',4,1131,5,29,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (198,'attributes',4,1582,5,55,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (199,'attributes',4,1131,5,29,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (200,'attributes',4,1131,5,29,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (201,'attributes',4,1582,5,70,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (202,'attributes',4,1131,5,29,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (203,'attributes',4,1582,5,70,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (204,'attributes',4,1582,5,55,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (205,'attributes',4,1582,5,55,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (209,'attributes',4,1192,5,29.8,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (210,'attributes',4,1493,5,39,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (211,'attributes',4,1285,5,29,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (212,'attributes',4,1192,5,29.8,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (215,'attributes',4,1192,5,29.8,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (216,'attributes',4,1192,5,29.8,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (217,'attributes',4,1285,5,29,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (218,'attributes',4,1493,5,39,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (219,'attributes',4,1493,5,39,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (220,'attributes',4,1493,5,39,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (221,'attributes',4,1493,5,39,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (222,'attributes',4,1493,5,39,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (223,'attributes',4,1192,5,29.8,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (224,'attributes',4,1493,5,39,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (225,'attributes',4,1192,5,22,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (226,'attributes',4,1192,5,22,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (227,'attributes',4,1192,5,22,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (228,'attributes',4,1192,5,22,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (229,'attributes',4,1192,5,22,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (230,'attributes',4,1192,5,22,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (231,'attributes',4,1192,5,22,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (232,'attributes',4,1192,5,22,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (233,'attributes',4,1100,5,18,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (235,'attributes',4,1100,5,18,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (236,'attributes',4,1100,5,18,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (238,'attributes',4,1100,5,18,6,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (242,'attributes',6,3996,5,210,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (243,'attributes',6,3996,5,210,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (244,'attributes',6,3996,5,210,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (245,'attributes',6,3996,5,210,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (246,'attributes',6,3996,5,210,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (247,'attributes',6,3996,5,210,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (248,'attributes',6,3996,5,210,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (249,'attributes',6,3996,5,210,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (250,'attributes',6,3996,5,210,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (251,'attributes',12,2953,5,186,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (252,'attributes',12,2953,5,186,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (253,'attributes',12,2953,5,186,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (261,'attributes',4,1884,5,67.1,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (262,'attributes',4,1884,5,67.1,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (263,'attributes',4,1884,5,67.1,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (264,'attributes',4,1974,5,85,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (265,'attributes',4,1974,5,85,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (266,'attributes',4,1974,5,85,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (267,'attributes',4,1975,5,78,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (268,'attributes',4,1975,5,78,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (269,'attributes',4,1975,5,78,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (270,'attributes',4,1975,5,85,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (271,'attributes',4,1975,5,85,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (272,'attributes',4,1290,5,75,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (273,'attributes',4,1290,5,75,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (274,'attributes',4,1290,5,75,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (275,'attributes',8,2594,5,149.1,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (276,'attributes',8,2594,5,149.1,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (277,'attributes',8,2594,5,149.1,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (278,'attributes',8,2594,5,149.1,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (279,'attributes',6,2912,5,96,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (280,'attributes',6,2912,5,96,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (281,'attributes',6,3781,5,164,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (282,'attributes',6,3781,5,164,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (283,'attributes',6,3781,5,164,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (284,'attributes',6,3781,5,188,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (285,'attributes',6,3781,5,188,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (286,'attributes',6,3781,5,188,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (287,'attributes',6,3781,5,188,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (288,'attributes',6,2483,5,90,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (289,'attributes',6,3442,5,141,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (290,'attributes',6,3442,5,141,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (291,'attributes',6,3442,5,141,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (292,'attributes',6,3442,5,141,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (293,'attributes',6,3442,5,141,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (294,'attributes',6,3442,5,141,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (295,'attributes',6,3442,5,141,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (296,'attributes',8,4474,5,176,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (297,'attributes',8,4474,5,176,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (298,'attributes',8,4474,5,176,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (299,'attributes',8,4474,5,176,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (302,'attributes',4,298,5,NULL,NULL,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (303,'attributes',4,298,5,NULL,NULL,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (304,'attributes',4,298,5,NULL,NULL,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (305,'attributes',4,298,5,NULL,NULL,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (306,'attributes',4,298,5,NULL,NULL,'back'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (307,'attributes',2,581,5,15,6,NULL); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (308,'attributes',2,581,5,15,6,NULL); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (309,'attributes',2,581,5,15,6,NULL); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (310,'attributes',8,3169,5,104,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (311,'attributes',8,3169,5,104,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (312,'attributes',8,3169,5,104,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (313,'attributes',8,3485,5,67,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (314,'attributes',8,3485,5,67,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (316,'attributes',8,3485,5,67,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (317,'attributes',8,3485,5,67,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (318,'attributes',8,3485,5,67,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (319,'attributes',6,2195,5,58,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (320,'attributes',6,2195,5,58,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (321,'attributes',6,2195,5,58,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (322,'attributes',6,2195,5,58,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (323,'attributes',6,2195,5,58,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (324,'attributes',6,2195,5,58,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (325,'attributes',6,2195,5,58,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (326,'attributes',6,2195,5,58,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (327,'attributes',6,2195,5,84,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (328,'attributes',6,2195,5,84,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (329,'attributes',6,2195,5,84,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (330,'attributes',6,2195,5,84,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (331,'attributes',6,2195,5,84,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (332,'attributes',6,2195,5,84,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (333,'attributes',6,2195,5,84,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (334,'attributes',6,2195,5,84,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (335,'attributes',4,2198,5,70,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (336,'attributes',4,2198,5,70,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (337,'attributes',4,2198,5,70,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (338,'attributes',4,2198,5,70,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (339,'attributes',4,2198,5,70,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (340,'attributes',4,2198,5,70,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (341,'attributes',4,2198,5,70,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (342,'attributes',4,2198,5,70,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (343,'attributes',4,2198,5,70,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (344,'attributes',4,2198,5,70,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (345,'attributes',4,1897,5,59,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (346,'attributes',4,1897,5,59,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (347,'attributes',4,1897,5,59,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (348,'attributes',4,1897,5,59,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (349,'attributes',6,2308,5,110,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (350,'attributes',6,2308,5,110,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (351,'attributes',6,2308,5,110,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (352,'attributes',6,2308,5,110,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (353,'attributes',6,2308,5,110,6,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (357,'attributes',4,850,5,NULL,NULL,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (358,'attributes',4,850,5,NULL,NULL,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (359,'attributes',4,850,5,NULL,NULL,'front'); +INSERT INTO object_brick_query_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (360,'attributes',4,850,5,NULL,NULL,'front'); diff --git a/dump/data-1-object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO.sql b/dump/data-1-object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO.sql index 507da003..12eba313 100644 --- a/dump/data-1-object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO.sql +++ b/dump/data-1-object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO.sql @@ -1,14 +1,14 @@ SET NAMES utf8mb4; -INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1161,'paymentProvider','paypal','9CT34444M22539158','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); -INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1164,'paymentProvider','paypal','6P219778U2879173E','8K7SZCFPV9FNN','dino.flintstone@stone.age','Dino','Flintstone'); -INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1167,'paymentProvider','paypal','6JJ73082Y6212093P','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); -INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1169,'paymentProvider','paypal','2EM467546N444340L','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); -INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1171,'paymentProvider','paypal','25G06452DD907934U','E5MVCRWZCLVGC','pebbles.flintstone@stone.age','Pebbles','Flintstone'); -INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1174,'paymentProvider','paypal','0PW47704US056523W','KM74HEUDXRKW8','wilma.flintstone@stone.age','Wilma','Flintstone'); -INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1177,'paymentProvider','paypal','2WD483862M3756428','9JD48T3MNQAHE','fred.flintstone@stone.age','Fred','Flintstone'); -INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1179,'paymentProvider','paypal','47K11814GM581932X','CQKZHP8X94AXG','fred.flintstone@stone.age','Fred','Flintstone'); -INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1182,'paymentProvider','paypal','6R3238856S495354E','XQADWG5K37MDG','fred.flintstone@stone.age','Fred','Flintstone'); -INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1184,'paymentProvider','paypal','8KG85242WB406050N','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); -INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1186,'paymentProvider','paypal','6B458608LD1779402','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); +INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1161,'paymentProvider','paypal','9CT34444M22539158','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); +INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1164,'paymentProvider','paypal','6P219778U2879173E','8K7SZCFPV9FNN','dino.flintstone@stone.age','Dino','Flintstone'); +INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1167,'paymentProvider','paypal','6JJ73082Y6212093P','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); +INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1169,'paymentProvider','paypal','2EM467546N444340L','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); +INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1171,'paymentProvider','paypal','25G06452DD907934U','E5MVCRWZCLVGC','pebbles.flintstone@stone.age','Pebbles','Flintstone'); +INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1174,'paymentProvider','paypal','0PW47704US056523W','KM74HEUDXRKW8','wilma.flintstone@stone.age','Wilma','Flintstone'); +INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1177,'paymentProvider','paypal','2WD483862M3756428','9JD48T3MNQAHE','fred.flintstone@stone.age','Fred','Flintstone'); +INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1179,'paymentProvider','paypal','47K11814GM581932X','CQKZHP8X94AXG','fred.flintstone@stone.age','Fred','Flintstone'); +INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1182,'paymentProvider','paypal','6R3238856S495354E','XQADWG5K37MDG','fred.flintstone@stone.age','Fred','Flintstone'); +INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1184,'paymentProvider','paypal','8KG85242WB406050N','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); +INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1186,'paymentProvider','paypal','6B458608LD1779402','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); diff --git a/dump/data-1-object_brick_query_SaleInformation_AP.sql b/dump/data-1-object_brick_query_SaleInformation_AP.sql index b8429985..2fcab8d7 100644 --- a/dump/data-1-object_brick_query_SaleInformation_AP.sql +++ b/dump/data-1-object_brick_query_SaleInformation_AP.sql @@ -1,155 +1,155 @@ SET NAMES utf8mb4; -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (372,'saleInformation',19,'couple-weeks','new','1295.95',32518,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (373,'saleInformation',13,'instant','broken','1995.95',191282,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (377,'saleInformation',3,'couple-weeks','used','995.95',91346,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (378,'saleInformation',16,'couple-days','broken','95.95',285600,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (379,'saleInformation',18,'couple-days','reworked','395.95',172674,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (381,'saleInformation',2,'couple-days','new','1595.95',279853,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (382,'saleInformation',11,'couple-weeks','used','1495.95',170202,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (383,'saleInformation',14,'couple-weeks','used','795.95',133410,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (384,'saleInformation',7,'couple-days','broken','695.95',260884,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (385,'saleInformation',7,'couple-days','reworked','1495.95',250902,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (386,'saleInformation',2,'couple-days','broken','1695.95',255547,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (387,'saleInformation',7,'couple-days','reworked','195.95',141858,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (388,'saleInformation',10,'couple-days','reworked','1295.95',150305,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (400,'saleInformation',2,'couple-days','used','1895.95',228351,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (401,'saleInformation',2,'instant','used','395.95',127059,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (402,'saleInformation',4,'couple-days','broken','495.95',171165,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (403,'saleInformation',9,'couple-weeks','used','595.95',298430,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (404,'saleInformation',17,'couple-weeks','broken','395.95',146121,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (405,'saleInformation',9,'instant','used','195.95',204737,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (406,'saleInformation',12,'couple-days','reworked','895.95',247643,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (408,'saleInformation',17,'couple-days','new','595.95',240708,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (410,'saleInformation',19,'couple-weeks','used','1295.95',191200,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (411,'saleInformation',6,'couple-days','broken','295.95',238855,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (412,'saleInformation',19,'couple-weeks','new','195.95',258073,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (413,'saleInformation',1,'couple-weeks','used','695.95',192478,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (414,'saleInformation',7,'couple-weeks','used','295.95',113466,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (415,'saleInformation',20,'instant','used','795.95',51246,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (416,'saleInformation',12,'instant','broken','1895.95',191694,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (418,'saleInformation',2,'instant','used','1795.95',153194,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (419,'saleInformation',10,'instant','reworked','295.95',278996,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (420,'saleInformation',20,'instant','reworked','995.95',212138,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (422,'saleInformation',4,'instant','reworked','1895.95',94061,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (423,'saleInformation',7,'instant','broken','895.95',246714,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (424,'saleInformation',16,'instant','new','595.95',247970,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (425,'saleInformation',12,'instant','used','1695.95',120079,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (426,'saleInformation',17,'couple-weeks','new','1095.95',110042,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (427,'saleInformation',16,'instant','used','895.95',107189,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (428,'saleInformation',17,'couple-weeks','new','995.95',184577,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (429,'saleInformation',16,'instant','broken','695.95',279713,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (430,'saleInformation',1,'instant','reworked','1595.95',263748,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (431,'saleInformation',18,'couple-days','broken','95.95',271970,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (432,'saleInformation',7,'instant','reworked','95.95',200992,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (433,'saleInformation',8,'instant','new','1295.95',31609,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (434,'saleInformation',10,'couple-days','new','1495.95',251179,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (435,'saleInformation',16,'instant','reworked','295.95',299704,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (436,'saleInformation',1,'couple-weeks','reworked','1995.95',36355,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (437,'saleInformation',18,'instant','new','395.95',242192,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (438,'saleInformation',3,'couple-days','new','195.95',100322,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (439,'saleInformation',3,'couple-days','new','1495.95',31193,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (440,'saleInformation',15,'couple-weeks','used','995.95',299664,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (441,'saleInformation',2,'couple-days','used','1195.95',51305,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (442,'saleInformation',18,'instant','reworked','395.95',259638,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (443,'saleInformation',3,'couple-weeks','reworked','1995.95',76366,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (444,'saleInformation',11,'instant','reworked','495.95',250025,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (445,'saleInformation',16,'instant','used','295.95',122140,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (446,'saleInformation',17,'instant','broken','295.95',202340,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (447,'saleInformation',19,'instant','reworked','795.95',129008,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (448,'saleInformation',13,'couple-days','used','1795.95',82329,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (449,'saleInformation',2,'couple-days','broken','1495.95',56259,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (450,'saleInformation',3,'couple-days','broken','95.95',116846,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (451,'saleInformation',7,'couple-weeks','new','1895.95',32800,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (452,'saleInformation',12,'instant','reworked','795.95',138473,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (453,'saleInformation',13,'instant','new','1695.95',143152,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (454,'saleInformation',20,'couple-days','used','95.95',210791,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (455,'saleInformation',7,'instant','reworked','595.95',187900,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (456,'saleInformation',5,'couple-weeks','new','395.95',265308,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (457,'saleInformation',1,'instant','new','1795.95',108120,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (458,'saleInformation',2,'instant','new','1195.95',56923,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (459,'saleInformation',6,'couple-weeks','used','595.95',260627,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (460,'saleInformation',5,'instant','broken','1695.95',271634,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (461,'saleInformation',5,'couple-days','broken','695.95',268714,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (462,'saleInformation',2,'couple-weeks','reworked','195.95',118155,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (463,'saleInformation',14,'instant','reworked','1495.95',192749,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (464,'saleInformation',11,'instant','used','495.95',148987,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (465,'saleInformation',7,'instant','used','595.95',72441,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (466,'saleInformation',4,'couple-days','used','195.95',226857,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (467,'saleInformation',5,'couple-days','new','1695.95',227929,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (468,'saleInformation',4,'couple-weeks','used','1195.95',235694,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (469,'saleInformation',10,'instant','reworked','1795.95',171302,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (470,'saleInformation',2,'instant','broken','595.95',229384,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (471,'saleInformation',16,'couple-days','used','1295.95',174466,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (472,'saleInformation',9,'couple-weeks','broken','1695.95',77894,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (473,'saleInformation',9,'couple-weeks','new','395.95',260530,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (474,'saleInformation',10,'instant','reworked','995.95',36941,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (475,'saleInformation',5,'instant','used','195.95',153395,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (476,'saleInformation',10,'couple-weeks','new','295.95',228999,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (477,'saleInformation',1,'couple-days','broken','1495.95',115826,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (478,'saleInformation',1,'couple-weeks','used','95.95',125920,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (479,'saleInformation',10,'couple-weeks','new','295.95',298477,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (480,'saleInformation',14,'couple-weeks','new','795.95',142951,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (481,'saleInformation',7,'couple-weeks','reworked','1495.95',293471,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (482,'saleInformation',4,'couple-days','new','295.95',138742,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (484,'saleInformation',9,'couple-days','used','1195.95',98532,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (485,'saleInformation',2,'instant','broken','795.95',65000,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (486,'saleInformation',17,'couple-days','new','1895.95',270029,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (487,'saleInformation',13,'instant','broken','1895.95',173002,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (488,'saleInformation',15,'couple-days','new','1995.95',224233,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (489,'saleInformation',16,'couple-days','new','295.95',187323,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (490,'saleInformation',10,'couple-weeks','broken','1395.95',271737,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (492,'saleInformation',10,'couple-days','used','495.95',288395,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (493,'saleInformation',4,'couple-days','new','695.95',186677,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (494,'saleInformation',1,'instant','used','295.95',289758,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (495,'saleInformation',16,'instant','reworked','95.95',97482,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (496,'saleInformation',12,'instant','reworked','195.95',149635,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (497,'saleInformation',15,'couple-weeks','new','1395.95',195618,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (498,'saleInformation',13,'couple-days','new','495.95',234174,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (499,'saleInformation',10,'couple-days','broken','595.95',191816,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (500,'saleInformation',3,'couple-days','broken','1295.95',174529,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (501,'saleInformation',12,'instant','new','395.95',216189,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (502,'saleInformation',1,'couple-days','used','595.95',258407,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (503,'saleInformation',2,'couple-weeks','reworked','1995.95',265380,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (504,'saleInformation',19,'instant','used','1795.95',152615,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (505,'saleInformation',11,'couple-weeks','used','1895.95',125956,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (506,'saleInformation',1,'couple-weeks','new','395.95',216443,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (507,'saleInformation',11,'instant','new','995.95',41153,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (508,'saleInformation',19,'couple-days','reworked','295.95',181381,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (509,'saleInformation',11,'couple-days','used','395.95',287099,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (510,'saleInformation',20,'instant','used','1095.95',284711,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (511,'saleInformation',3,'couple-weeks','used','1895.95',71649,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (512,'saleInformation',9,'couple-weeks','broken','995.95',96690,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (513,'saleInformation',8,'couple-weeks','reworked','1995.95',34773,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (514,'saleInformation',20,'couple-weeks','broken','195.95',60641,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (515,'saleInformation',8,'couple-weeks','new','795.95',284746,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (516,'saleInformation',6,'couple-days','new','195.95',101411,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (517,'saleInformation',15,'couple-days','used','1795.95',257346,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (518,'saleInformation',11,'instant','used','1295.95',255055,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (519,'saleInformation',13,'instant','broken','1095.95',184724,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (520,'saleInformation',19,'instant','new','1695.95',146608,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (521,'saleInformation',5,'instant','broken','595.95',175377,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (522,'saleInformation',15,'instant','used','1395.95',228121,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (523,'saleInformation',17,'instant','reworked','1295.95',125883,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (524,'saleInformation',20,'couple-weeks','broken','395.95',231289,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (525,'saleInformation',13,'couple-weeks','reworked','1595.95',142939,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (526,'saleInformation',7,'couple-weeks','used','1695.95',299493,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (527,'saleInformation',20,'couple-weeks','new','895.95',187929,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (528,'saleInformation',10,'instant','reworked','1895.95',143786,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (529,'saleInformation',5,'couple-days','used','1495.95',185285,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (530,'saleInformation',5,'couple-days','used','895.95',57292,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (531,'saleInformation',1,'couple-days','broken','995.95',290074,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (532,'saleInformation',11,'couple-weeks','broken','595.95',248551,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (533,'saleInformation',19,'instant','broken','1595.95',91850,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (534,'saleInformation',3,'instant','reworked','1495.95',161951,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (535,'saleInformation',12,'couple-days','used','195.95',197956,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (536,'saleInformation',1,'instant','broken','395.95',58799,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (537,'saleInformation',6,'instant','broken','995.95',86782,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (538,'saleInformation',10,'instant','broken','1095.95',288108,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (539,'saleInformation',4,'instant','reworked','595.95',49306,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (540,'saleInformation',1,'couple-days','reworked','1495.95',208954,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (541,'saleInformation',10,'instant','used','595.95',120692,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (542,'saleInformation',8,'instant','reworked','95.95',252053,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (543,'saleInformation',3,'couple-days','used','1095.95',107868,7); -INSERT INTO object_brick_query_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (544,'saleInformation',10,'couple-weeks','reworked','1795.95',181217,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (372,'saleInformation',19,'couple-weeks','new','1295.95',32518,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (373,'saleInformation',13,'instant','broken','1995.95',191282,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (377,'saleInformation',3,'couple-weeks','used','995.95',91346,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (378,'saleInformation',16,'couple-days','broken','95.95',285600,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (379,'saleInformation',18,'couple-days','reworked','395.95',172674,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (381,'saleInformation',2,'couple-days','new','1595.95',279853,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (382,'saleInformation',11,'couple-weeks','used','1495.95',170202,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (383,'saleInformation',14,'couple-weeks','used','795.95',133410,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (384,'saleInformation',7,'couple-days','broken','695.95',260884,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (385,'saleInformation',7,'couple-days','reworked','1495.95',250902,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (386,'saleInformation',2,'couple-days','broken','1695.95',255547,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (387,'saleInformation',7,'couple-days','reworked','195.95',141858,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (388,'saleInformation',10,'couple-days','reworked','1295.95',150305,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (400,'saleInformation',2,'couple-days','used','1895.95',228351,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (401,'saleInformation',2,'instant','used','395.95',127059,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (402,'saleInformation',4,'couple-days','broken','495.95',171165,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (403,'saleInformation',9,'couple-weeks','used','595.95',298430,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (404,'saleInformation',17,'couple-weeks','broken','395.95',146121,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (405,'saleInformation',9,'instant','used','195.95',204737,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (406,'saleInformation',12,'couple-days','reworked','895.95',247643,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (408,'saleInformation',17,'couple-days','new','595.95',240708,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (410,'saleInformation',19,'couple-weeks','used','1295.95',191200,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (411,'saleInformation',6,'couple-days','broken','295.95',238855,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (412,'saleInformation',19,'couple-weeks','new','195.95',258073,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (413,'saleInformation',1,'couple-weeks','used','695.95',192478,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (414,'saleInformation',7,'couple-weeks','used','295.95',113466,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (415,'saleInformation',20,'instant','used','795.95',51246,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (416,'saleInformation',12,'instant','broken','1895.95',191694,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (418,'saleInformation',2,'instant','used','1795.95',153194,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (419,'saleInformation',10,'instant','reworked','295.95',278996,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (420,'saleInformation',20,'instant','reworked','995.95',212138,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (422,'saleInformation',4,'instant','reworked','1895.95',94061,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (423,'saleInformation',7,'instant','broken','895.95',246714,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (424,'saleInformation',16,'instant','new','595.95',247970,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (425,'saleInformation',12,'instant','used','1695.95',120079,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (426,'saleInformation',17,'couple-weeks','new','1095.95',110042,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (427,'saleInformation',16,'instant','used','895.95',107189,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (428,'saleInformation',17,'couple-weeks','new','995.95',184577,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (429,'saleInformation',16,'instant','broken','695.95',279713,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (430,'saleInformation',1,'instant','reworked','1595.95',263748,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (431,'saleInformation',18,'couple-days','broken','95.95',271970,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (432,'saleInformation',7,'instant','reworked','95.95',200992,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (433,'saleInformation',8,'instant','new','1295.95',31609,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (434,'saleInformation',10,'couple-days','new','1495.95',251179,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (435,'saleInformation',16,'instant','reworked','295.95',299704,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (436,'saleInformation',1,'couple-weeks','reworked','1995.95',36355,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (437,'saleInformation',18,'instant','new','395.95',242192,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (438,'saleInformation',3,'couple-days','new','195.95',100322,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (439,'saleInformation',3,'couple-days','new','1495.95',31193,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (440,'saleInformation',15,'couple-weeks','used','995.95',299664,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (441,'saleInformation',2,'couple-days','used','1195.95',51305,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (442,'saleInformation',18,'instant','reworked','395.95',259638,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (443,'saleInformation',3,'couple-weeks','reworked','1995.95',76366,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (444,'saleInformation',11,'instant','reworked','495.95',250025,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (445,'saleInformation',16,'instant','used','295.95',122140,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (446,'saleInformation',17,'instant','broken','295.95',202340,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (447,'saleInformation',19,'instant','reworked','795.95',129008,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (448,'saleInformation',13,'couple-days','used','1795.95',82329,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (449,'saleInformation',2,'couple-days','broken','1495.95',56259,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (450,'saleInformation',3,'couple-days','broken','95.95',116846,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (451,'saleInformation',7,'couple-weeks','new','1895.95',32800,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (452,'saleInformation',12,'instant','reworked','795.95',138473,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (453,'saleInformation',13,'instant','new','1695.95',143152,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (454,'saleInformation',20,'couple-days','used','95.95',210791,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (455,'saleInformation',7,'instant','reworked','595.95',187900,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (456,'saleInformation',5,'couple-weeks','new','395.95',265308,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (457,'saleInformation',1,'instant','new','1795.95',108120,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (458,'saleInformation',2,'instant','new','1195.95',56923,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (459,'saleInformation',6,'couple-weeks','used','595.95',260627,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (460,'saleInformation',5,'instant','broken','1695.95',271634,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (461,'saleInformation',5,'couple-days','broken','695.95',268714,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (462,'saleInformation',2,'couple-weeks','reworked','195.95',118155,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (463,'saleInformation',14,'instant','reworked','1495.95',192749,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (464,'saleInformation',11,'instant','used','495.95',148987,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (465,'saleInformation',7,'instant','used','595.95',72441,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (466,'saleInformation',4,'couple-days','used','195.95',226857,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (467,'saleInformation',5,'couple-days','new','1695.95',227929,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (468,'saleInformation',4,'couple-weeks','used','1195.95',235694,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (469,'saleInformation',10,'instant','reworked','1795.95',171302,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (470,'saleInformation',2,'instant','broken','595.95',229384,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (471,'saleInformation',16,'couple-days','used','1295.95',174466,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (472,'saleInformation',9,'couple-weeks','broken','1695.95',77894,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (473,'saleInformation',9,'couple-weeks','new','395.95',260530,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (474,'saleInformation',10,'instant','reworked','995.95',36941,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (475,'saleInformation',5,'instant','used','195.95',153395,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (476,'saleInformation',10,'couple-weeks','new','295.95',228999,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (477,'saleInformation',1,'couple-days','broken','1495.95',115826,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (478,'saleInformation',1,'couple-weeks','used','95.95',125920,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (479,'saleInformation',10,'couple-weeks','new','295.95',298477,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (480,'saleInformation',14,'couple-weeks','new','795.95',142951,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (481,'saleInformation',7,'couple-weeks','reworked','1495.95',293471,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (482,'saleInformation',4,'couple-days','new','295.95',138742,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (484,'saleInformation',9,'couple-days','used','1195.95',98532,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (485,'saleInformation',2,'instant','broken','795.95',65000,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (486,'saleInformation',17,'couple-days','new','1895.95',270029,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (487,'saleInformation',13,'instant','broken','1895.95',173002,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (488,'saleInformation',15,'couple-days','new','1995.95',224233,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (489,'saleInformation',16,'couple-days','new','295.95',187323,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (490,'saleInformation',10,'couple-weeks','broken','1395.95',271737,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (492,'saleInformation',10,'couple-days','used','495.95',288395,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (493,'saleInformation',4,'couple-days','new','695.95',186677,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (494,'saleInformation',1,'instant','used','295.95',289758,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (495,'saleInformation',16,'instant','reworked','95.95',97482,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (496,'saleInformation',12,'instant','reworked','195.95',149635,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (497,'saleInformation',15,'couple-weeks','new','1395.95',195618,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (498,'saleInformation',13,'couple-days','new','495.95',234174,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (499,'saleInformation',10,'couple-days','broken','595.95',191816,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (500,'saleInformation',3,'couple-days','broken','1295.95',174529,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (501,'saleInformation',12,'instant','new','395.95',216189,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (502,'saleInformation',1,'couple-days','used','595.95',258407,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (503,'saleInformation',2,'couple-weeks','reworked','1995.95',265380,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (504,'saleInformation',19,'instant','used','1795.95',152615,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (505,'saleInformation',11,'couple-weeks','used','1895.95',125956,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (506,'saleInformation',1,'couple-weeks','new','395.95',216443,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (507,'saleInformation',11,'instant','new','995.95',41153,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (508,'saleInformation',19,'couple-days','reworked','295.95',181381,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (509,'saleInformation',11,'couple-days','used','395.95',287099,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (510,'saleInformation',20,'instant','used','1095.95',284711,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (511,'saleInformation',3,'couple-weeks','used','1895.95',71649,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (512,'saleInformation',9,'couple-weeks','broken','995.95',96690,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (513,'saleInformation',8,'couple-weeks','reworked','1995.95',34773,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (514,'saleInformation',20,'couple-weeks','broken','195.95',60641,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (515,'saleInformation',8,'couple-weeks','new','795.95',284746,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (516,'saleInformation',6,'couple-days','new','195.95',101411,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (517,'saleInformation',15,'couple-days','used','1795.95',257346,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (518,'saleInformation',11,'instant','used','1295.95',255055,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (519,'saleInformation',13,'instant','broken','1095.95',184724,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (520,'saleInformation',19,'instant','new','1695.95',146608,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (521,'saleInformation',5,'instant','broken','595.95',175377,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (522,'saleInformation',15,'instant','used','1395.95',228121,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (523,'saleInformation',17,'instant','reworked','1295.95',125883,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (524,'saleInformation',20,'couple-weeks','broken','395.95',231289,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (525,'saleInformation',13,'couple-weeks','reworked','1595.95',142939,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (526,'saleInformation',7,'couple-weeks','used','1695.95',299493,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (527,'saleInformation',20,'couple-weeks','new','895.95',187929,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (528,'saleInformation',10,'instant','reworked','1895.95',143786,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (529,'saleInformation',5,'couple-days','used','1495.95',185285,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (530,'saleInformation',5,'couple-days','used','895.95',57292,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (531,'saleInformation',1,'couple-days','broken','995.95',290074,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (532,'saleInformation',11,'couple-weeks','broken','595.95',248551,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (533,'saleInformation',19,'instant','broken','1595.95',91850,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (534,'saleInformation',3,'instant','reworked','1495.95',161951,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (535,'saleInformation',12,'couple-days','used','195.95',197956,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (536,'saleInformation',1,'instant','broken','395.95',58799,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (537,'saleInformation',6,'instant','broken','995.95',86782,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (538,'saleInformation',10,'instant','broken','1095.95',288108,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (539,'saleInformation',4,'instant','reworked','595.95',49306,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (540,'saleInformation',1,'couple-days','reworked','1495.95',208954,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (541,'saleInformation',10,'instant','used','595.95',120692,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (542,'saleInformation',8,'instant','reworked','95.95',252053,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (543,'saleInformation',3,'couple-days','used','1095.95',107868,7); +INSERT INTO object_brick_query_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (544,'saleInformation',10,'couple-weeks','reworked','1795.95',181217,7); diff --git a/dump/data-1-object_brick_query_SaleInformation_CAR.sql b/dump/data-1-object_brick_query_SaleInformation_CAR.sql index 2a2058ab..0c400521 100644 --- a/dump/data-1-object_brick_query_SaleInformation_CAR.sql +++ b/dump/data-1-object_brick_query_SaleInformation_CAR.sql @@ -1,174 +1,174 @@ SET NAMES utf8mb4; -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (12,'saleInformation',5,'instant','reworked','68795.95',218212,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (13,'saleInformation',3,'instant','reworked','28895.95',115764,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (14,'saleInformation',3,'couple-days','used','9695.95',255617,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (15,'saleInformation',1,'instant','broken','4195.95',244482,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (16,'saleInformation',5,'couple-days','used','25595.95',110292,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (19,'saleInformation',4,'instant','used','12595.95',139776,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (20,'saleInformation',5,'instant','broken','4995.95',80479,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (24,'saleInformation',4,'couple-days','broken','5595.95',45458,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (25,'saleInformation',5,'instant','broken','1795.95',234587,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (26,'saleInformation',3,'couple-days','broken','2795.95',223677,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (30,'saleInformation',5,'couple-weeks','reworked','64395.95',188922,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (31,'saleInformation',2,'instant','reworked','79395.95',196516,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (33,'saleInformation',5,'instant','broken','5795.95',257153,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (34,'saleInformation',5,'couple-weeks','used','17795.95',115467,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (38,'saleInformation',5,'couple-weeks','broken','3095.95',80355,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (43,'saleInformation',2,'couple-days','reworked','47695.95',180809,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (44,'saleInformation',2,'couple-weeks','broken','7395.95',186523,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (51,'saleInformation',2,'instant','used','24995.95',81656,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (53,'saleInformation',3,'couple-days','used','11895.95',80364,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (54,'saleInformation',4,'couple-weeks','used','11895.95',94139,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (57,'saleInformation',2,'couple-days','reworked','64695.95',285404,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (58,'saleInformation',5,'couple-weeks','broken','3395.95',186182,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (63,'saleInformation',2,'couple-weeks','broken','2195.95',240638,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (66,'saleInformation',4,'instant','used','13095.95',221181,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (67,'saleInformation',2,'instant','used','6495.95',222292,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (69,'saleInformation',1,'couple-days','used','18995.95',162675,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (70,'saleInformation',4,'couple-days','reworked','85495.95',264001,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (74,'saleInformation',4,'instant','reworked','15295.95',131187,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (75,'saleInformation',4,'couple-weeks','used','13795.95',236469,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (77,'saleInformation',1,'couple-days','broken','3395.95',72186,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (78,'saleInformation',4,'couple-days','used','19195.95',297887,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (82,'saleInformation',5,'instant','reworked','32995.95',267663,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (87,'saleInformation',4,'couple-weeks','broken','4795.95',270704,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (88,'saleInformation',5,'couple-days','broken','7195.95',228398,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (90,'saleInformation',3,'couple-weeks','broken','4495.95',88072,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (91,'saleInformation',1,'instant','broken','2095.95',132833,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (92,'saleInformation',1,'couple-weeks','broken','5995.95',218739,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (97,'saleInformation',1,'couple-weeks','used','8995.95',215508,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (98,'saleInformation',4,'instant','broken','5295.95',168075,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (102,'saleInformation',2,'couple-days','used','11695.95',246088,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (103,'saleInformation',1,'couple-days','reworked','42395.95',161462,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (104,'saleInformation',1,'couple-weeks','used','28995.95',42224,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (105,'saleInformation',1,'couple-days','reworked','32695.95',259347,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (110,'saleInformation',2,'couple-weeks','reworked','58895.95',272440,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (111,'saleInformation',2,'instant','used','12495.95',220066,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (112,'saleInformation',3,'instant','broken','5295.95',80752,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (114,'saleInformation',4,'couple-weeks','reworked','32095.95',237309,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (115,'saleInformation',2,'instant','broken','5395.95',114013,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (116,'saleInformation',2,'couple-days','reworked','42795.95',214630,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (118,'saleInformation',2,'couple-weeks','reworked','27795.95',84894,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (119,'saleInformation',1,'couple-days','reworked','20995.95',277469,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (120,'saleInformation',5,'couple-days','reworked','48595.95',255010,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (124,'saleInformation',3,'couple-days','used','13295.95',293242,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (125,'saleInformation',5,'couple-days','broken','4295.95',289203,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (126,'saleInformation',4,'instant','broken','2095.95',189973,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (131,'saleInformation',1,'couple-weeks','broken','7195.95',56423,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (133,'saleInformation',2,'couple-weeks','reworked','49695.95',282426,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (138,'saleInformation',1,'couple-days','used','26995.95',121313,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (139,'saleInformation',1,'couple-weeks','reworked','80395.95',112997,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (143,'saleInformation',4,'instant','used','27295.95',220964,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (144,'saleInformation',4,'couple-days','broken','3495.95',231695,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (149,'saleInformation',1,'couple-weeks','used','24495.95',180010,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (150,'saleInformation',5,'couple-days','used','17395.95',242352,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (152,'saleInformation',1,'instant','used','20795.95',163746,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (156,'saleInformation',1,'couple-days','reworked','53995.95',143400,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (157,'saleInformation',3,'couple-days','used','11795.95',131819,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (161,'saleInformation',4,'instant','reworked','64595.95',84422,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (162,'saleInformation',1,'couple-weeks','reworked','85595.95',256279,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (166,'saleInformation',4,'instant','broken','7495.95',266168,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (172,'saleInformation',2,'couple-days','reworked','23095.95',95532,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (174,'saleInformation',3,'couple-days','reworked','38595.95',36467,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (175,'saleInformation',5,'instant','reworked','55595.95',264586,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (180,'saleInformation',1,'couple-days','broken','7295.95',130719,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (184,'saleInformation',4,'couple-days','broken','2395.95',101172,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (188,'saleInformation',4,'couple-weeks','reworked','40595.95',97854,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (189,'saleInformation',1,'couple-weeks','reworked','69695.95',175731,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (191,'saleInformation',1,'instant','used','20795.95',55460,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (192,'saleInformation',2,'instant','reworked','70595.95',83118,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (194,'saleInformation',5,'couple-days','reworked','54295.95',143958,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (195,'saleInformation',5,'couple-days','broken','6195.95',54969,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (196,'saleInformation',2,'instant','broken','3195.95',116263,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (198,'saleInformation',2,'instant','used','19195.95',177659,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (200,'saleInformation',4,'couple-weeks','broken','5795.95',135175,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (202,'saleInformation',4,'instant','used','26995.95',281123,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (203,'saleInformation',2,'instant','used','29095.95',150651,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (205,'saleInformation',2,'couple-weeks','reworked','72695.95',226812,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (215,'saleInformation',3,'instant','reworked','12395.95',176814,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (216,'saleInformation',4,'couple-weeks','used','20095.95',296391,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (217,'saleInformation',5,'couple-days','broken','6895.95',41456,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (220,'saleInformation',2,'couple-days','broken','3395.95',121203,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (221,'saleInformation',1,'couple-weeks','reworked','24095.95',60771,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (222,'saleInformation',2,'couple-weeks','broken','1795.95',234341,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (223,'saleInformation',4,'couple-weeks','used','15395.95',253420,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (224,'saleInformation',5,'couple-days','broken','2695.95',149301,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (227,'saleInformation',3,'couple-weeks','reworked','70595.95',274559,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (228,'saleInformation',5,'couple-weeks','broken','2195.95',243323,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (229,'saleInformation',1,'instant','broken','1695.95',299255,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (231,'saleInformation',2,'couple-days','reworked','73995.95',141715,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (232,'saleInformation',4,'instant','reworked','47895.95',206296,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (235,'saleInformation',5,'couple-weeks','reworked','22195.95',268065,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (236,'saleInformation',2,'couple-days','broken','4895.95',274518,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (238,'saleInformation',4,'couple-weeks','used','27295.95',79242,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (244,'saleInformation',5,'couple-weeks','used','15495.95',177630,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (245,'saleInformation',2,'instant','used','27595.95',219890,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (247,'saleInformation',1,'couple-days','reworked','32695.95',142942,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (249,'saleInformation',1,'couple-weeks','reworked','31695.95',154368,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (250,'saleInformation',1,'instant','reworked','50495.95',80212,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (252,'saleInformation',4,'couple-weeks','used','19995.95',141158,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (253,'saleInformation',1,'couple-weeks','reworked','12895.95',228486,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (257,'saleInformation',3,'couple-days','used','24795.95',32950,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (259,'saleInformation',1,'couple-weeks','broken','6395.95',65702,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (262,'saleInformation',4,'couple-weeks','broken','2295.95',204578,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (263,'saleInformation',4,'instant','broken','6595.95',118652,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (265,'saleInformation',4,'instant','reworked','10695.95',105427,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (266,'saleInformation',3,'instant','reworked','66395.95',217374,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (269,'saleInformation',3,'couple-days','broken','4095.95',194557,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (271,'saleInformation',5,'couple-weeks','reworked','34295.95',291474,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (273,'saleInformation',3,'couple-weeks','reworked','83295.95',206412,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (274,'saleInformation',2,'instant','broken','6095.95',171738,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (276,'saleInformation',2,'couple-weeks','broken','2095.95',202791,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (277,'saleInformation',2,'couple-weeks','used','25995.95',196124,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (278,'saleInformation',3,'couple-weeks','reworked','10295.95',67724,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (279,'saleInformation',1,'couple-days','reworked','59495.95',96283,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (280,'saleInformation',1,'instant','reworked','43995.95',42770,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (282,'saleInformation',5,'couple-days','broken','7395.95',190374,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (283,'saleInformation',5,'couple-days','used','7495.95',112679,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (285,'saleInformation',3,'instant','broken','3695.95',191273,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (286,'saleInformation',3,'instant','used','17595.95',180894,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (287,'saleInformation',5,'instant','reworked','25895.95',140302,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (288,'saleInformation',5,'couple-days','used','9395.95',234197,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (292,'saleInformation',1,'couple-days','reworked','36295.95',272636,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (293,'saleInformation',1,'couple-days','reworked','22795.95',234728,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (294,'saleInformation',4,'couple-days','broken','3895.95',124193,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (295,'saleInformation',1,'couple-days','used','18495.95',182209,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (297,'saleInformation',5,'couple-weeks','reworked','34895.95',111573,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (298,'saleInformation',3,'couple-weeks','used','19295.95',256267,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (299,'saleInformation',1,'couple-weeks','used','24495.95',92892,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (303,'saleInformation',5,'couple-days','reworked','24895.95',191434,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (304,'saleInformation',4,'couple-days','reworked','57295.95',150637,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (305,'saleInformation',3,'couple-days','broken','7295.95',75627,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (306,'saleInformation',4,'instant','reworked','44895.95',289160,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (308,'saleInformation',3,'couple-days','reworked','47195.95',223004,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (309,'saleInformation',3,'couple-weeks','used','16995.95',68245,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (311,'saleInformation',4,'couple-weeks','broken','5895.95',104850,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (312,'saleInformation',1,'couple-days','reworked','50595.95',168554,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (316,'saleInformation',1,'couple-weeks','used','24295.95',222902,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (318,'saleInformation',3,'couple-weeks','broken','1695.95',205304,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (321,'saleInformation',4,'couple-weeks','broken','3995.95',73461,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (323,'saleInformation',1,'couple-weeks','reworked','70295.95',50666,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (325,'saleInformation',3,'couple-weeks','reworked','84995.95',234927,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (326,'saleInformation',4,'couple-weeks','used','10695.95',116281,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (328,'saleInformation',2,'instant','used','28195.95',32842,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (329,'saleInformation',3,'couple-weeks','reworked','26295.95',161955,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (332,'saleInformation',3,'couple-weeks','reworked','85295.95',262759,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (334,'saleInformation',4,'couple-weeks','reworked','37795.95',276362,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (337,'saleInformation',4,'couple-weeks','broken','6395.95',58941,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (338,'saleInformation',1,'couple-days','broken','7295.95',208656,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (339,'saleInformation',2,'couple-days','used','16395.95',263611,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (341,'saleInformation',4,'couple-days','used','14495.95',294645,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (342,'saleInformation',2,'couple-days','reworked','79795.95',247447,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (344,'saleInformation',5,'instant','broken','1695.95',85720,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (346,'saleInformation',3,'couple-days','reworked','17495.95',92564,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (347,'saleInformation',2,'instant','used','29195.95',276809,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (348,'saleInformation',5,'couple-weeks','used','25195.95',259692,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (350,'saleInformation',1,'couple-days','used','24595.95',106371,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (351,'saleInformation',1,'couple-days','used','27695.95',260727,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (352,'saleInformation',4,'couple-weeks','used','10495.95',60686,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (353,'saleInformation',4,'couple-weeks','reworked','27495.95',98681,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (358,'saleInformation',1,'couple-weeks','broken','7195.95',206718,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (359,'saleInformation',3,'couple-weeks','broken','6095.95',32684,7); -INSERT INTO object_brick_query_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (360,'saleInformation',2,'couple-days','broken','4495.95',74112,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (12,'saleInformation',5,'instant','reworked','68795.95',218212,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (13,'saleInformation',3,'instant','reworked','28895.95',115764,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (14,'saleInformation',3,'couple-days','used','9695.95',255617,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (15,'saleInformation',1,'instant','broken','4195.95',244482,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (16,'saleInformation',5,'couple-days','used','25595.95',110292,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (19,'saleInformation',4,'instant','used','12595.95',139776,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (20,'saleInformation',5,'instant','broken','4995.95',80479,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (24,'saleInformation',4,'couple-days','broken','5595.95',45458,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (25,'saleInformation',5,'instant','broken','1795.95',234587,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (26,'saleInformation',3,'couple-days','broken','2795.95',223677,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (30,'saleInformation',5,'couple-weeks','reworked','64395.95',188922,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (31,'saleInformation',2,'instant','reworked','79395.95',196516,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (33,'saleInformation',5,'instant','broken','5795.95',257153,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (34,'saleInformation',5,'couple-weeks','used','17795.95',115467,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (38,'saleInformation',5,'couple-weeks','broken','3095.95',80355,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (43,'saleInformation',2,'couple-days','reworked','47695.95',180809,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (44,'saleInformation',2,'couple-weeks','broken','7395.95',186523,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (51,'saleInformation',2,'instant','used','24995.95',81656,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (53,'saleInformation',3,'couple-days','used','11895.95',80364,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (54,'saleInformation',4,'couple-weeks','used','11895.95',94139,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (57,'saleInformation',2,'couple-days','reworked','64695.95',285404,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (58,'saleInformation',5,'couple-weeks','broken','3395.95',186182,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (63,'saleInformation',2,'couple-weeks','broken','2195.95',240638,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (66,'saleInformation',4,'instant','used','13095.95',221181,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (67,'saleInformation',2,'instant','used','6495.95',222292,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (69,'saleInformation',1,'couple-days','used','18995.95',162675,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (70,'saleInformation',4,'couple-days','reworked','85495.95',264001,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (74,'saleInformation',4,'instant','reworked','15295.95',131187,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (75,'saleInformation',4,'couple-weeks','used','13795.95',236469,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (77,'saleInformation',1,'couple-days','broken','3395.95',72186,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (78,'saleInformation',4,'couple-days','used','19195.95',297887,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (82,'saleInformation',5,'instant','reworked','32995.95',267663,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (87,'saleInformation',4,'couple-weeks','broken','4795.95',270704,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (88,'saleInformation',5,'couple-days','broken','7195.95',228398,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (90,'saleInformation',3,'couple-weeks','broken','4495.95',88072,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (91,'saleInformation',1,'instant','broken','2095.95',132833,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (92,'saleInformation',1,'couple-weeks','broken','5995.95',218739,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (97,'saleInformation',1,'couple-weeks','used','8995.95',215508,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (98,'saleInformation',4,'instant','broken','5295.95',168075,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (102,'saleInformation',2,'couple-days','used','11695.95',246088,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (103,'saleInformation',1,'couple-days','reworked','42395.95',161462,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (104,'saleInformation',1,'couple-weeks','used','28995.95',42224,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (105,'saleInformation',1,'couple-days','reworked','32695.95',259347,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (110,'saleInformation',2,'couple-weeks','reworked','58895.95',272440,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (111,'saleInformation',2,'instant','used','12495.95',220066,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (112,'saleInformation',3,'instant','broken','5295.95',80752,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (114,'saleInformation',4,'couple-weeks','reworked','32095.95',237309,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (115,'saleInformation',2,'instant','broken','5395.95',114013,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (116,'saleInformation',2,'couple-days','reworked','42795.95',214630,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (118,'saleInformation',2,'couple-weeks','reworked','27795.95',84894,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (119,'saleInformation',1,'couple-days','reworked','20995.95',277469,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (120,'saleInformation',5,'couple-days','reworked','48595.95',255010,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (124,'saleInformation',3,'couple-days','used','13295.95',293242,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (125,'saleInformation',5,'couple-days','broken','4295.95',289203,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (126,'saleInformation',4,'instant','broken','2095.95',189973,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (131,'saleInformation',1,'couple-weeks','broken','7195.95',56423,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (133,'saleInformation',2,'couple-weeks','reworked','49695.95',282426,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (138,'saleInformation',1,'couple-days','used','26995.95',121313,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (139,'saleInformation',1,'couple-weeks','reworked','80395.95',112997,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (143,'saleInformation',4,'instant','used','27295.95',220964,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (144,'saleInformation',4,'couple-days','broken','3495.95',231695,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (149,'saleInformation',1,'couple-weeks','used','24495.95',180010,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (150,'saleInformation',5,'couple-days','used','17395.95',242352,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (152,'saleInformation',1,'instant','used','20795.95',163746,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (156,'saleInformation',1,'couple-days','reworked','53995.95',143400,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (157,'saleInformation',3,'couple-days','used','11795.95',131819,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (161,'saleInformation',4,'instant','reworked','64595.95',84422,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (162,'saleInformation',1,'couple-weeks','reworked','85595.95',256279,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (166,'saleInformation',4,'instant','broken','7495.95',266168,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (172,'saleInformation',2,'couple-days','reworked','23095.95',95532,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (174,'saleInformation',3,'couple-days','reworked','38595.95',36467,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (175,'saleInformation',5,'instant','reworked','55595.95',264586,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (180,'saleInformation',1,'couple-days','broken','7295.95',130719,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (184,'saleInformation',4,'couple-days','broken','2395.95',101172,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (188,'saleInformation',4,'couple-weeks','reworked','40595.95',97854,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (189,'saleInformation',1,'couple-weeks','reworked','69695.95',175731,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (191,'saleInformation',1,'instant','used','20795.95',55460,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (192,'saleInformation',2,'instant','reworked','70595.95',83118,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (194,'saleInformation',5,'couple-days','reworked','54295.95',143958,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (195,'saleInformation',5,'couple-days','broken','6195.95',54969,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (196,'saleInformation',2,'instant','broken','3195.95',116263,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (198,'saleInformation',2,'instant','used','19195.95',177659,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (200,'saleInformation',4,'couple-weeks','broken','5795.95',135175,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (202,'saleInformation',4,'instant','used','26995.95',281123,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (203,'saleInformation',2,'instant','used','29095.95',150651,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (205,'saleInformation',2,'couple-weeks','reworked','72695.95',226812,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (215,'saleInformation',3,'instant','reworked','12395.95',176814,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (216,'saleInformation',4,'couple-weeks','used','20095.95',296391,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (217,'saleInformation',5,'couple-days','broken','6895.95',41456,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (220,'saleInformation',2,'couple-days','broken','3395.95',121203,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (221,'saleInformation',1,'couple-weeks','reworked','24095.95',60771,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (222,'saleInformation',2,'couple-weeks','broken','1795.95',234341,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (223,'saleInformation',4,'couple-weeks','used','15395.95',253420,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (224,'saleInformation',5,'couple-days','broken','2695.95',149301,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (227,'saleInformation',3,'couple-weeks','reworked','70595.95',274559,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (228,'saleInformation',5,'couple-weeks','broken','2195.95',243323,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (229,'saleInformation',1,'instant','broken','1695.95',299255,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (231,'saleInformation',2,'couple-days','reworked','73995.95',141715,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (232,'saleInformation',4,'instant','reworked','47895.95',206296,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (235,'saleInformation',5,'couple-weeks','reworked','22195.95',268065,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (236,'saleInformation',2,'couple-days','broken','4895.95',274518,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (238,'saleInformation',4,'couple-weeks','used','27295.95',79242,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (244,'saleInformation',5,'couple-weeks','used','15495.95',177630,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (245,'saleInformation',2,'instant','used','27595.95',219890,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (247,'saleInformation',1,'couple-days','reworked','32695.95',142942,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (249,'saleInformation',1,'couple-weeks','reworked','31695.95',154368,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (250,'saleInformation',1,'instant','reworked','50495.95',80212,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (252,'saleInformation',4,'couple-weeks','used','19995.95',141158,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (253,'saleInformation',1,'couple-weeks','reworked','12895.95',228486,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (257,'saleInformation',3,'couple-days','used','24795.95',32950,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (259,'saleInformation',1,'couple-weeks','broken','6395.95',65702,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (262,'saleInformation',4,'couple-weeks','broken','2295.95',204578,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (263,'saleInformation',4,'instant','broken','6595.95',118652,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (265,'saleInformation',4,'instant','reworked','10695.95',105427,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (266,'saleInformation',3,'instant','reworked','66395.95',217374,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (269,'saleInformation',3,'couple-days','broken','4095.95',194557,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (271,'saleInformation',5,'couple-weeks','reworked','34295.95',291474,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (273,'saleInformation',3,'couple-weeks','reworked','83295.95',206412,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (274,'saleInformation',2,'instant','broken','6095.95',171738,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (276,'saleInformation',2,'couple-weeks','broken','2095.95',202791,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (277,'saleInformation',2,'couple-weeks','used','25995.95',196124,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (278,'saleInformation',3,'couple-weeks','reworked','10295.95',67724,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (279,'saleInformation',1,'couple-days','reworked','59495.95',96283,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (280,'saleInformation',1,'instant','reworked','43995.95',42770,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (282,'saleInformation',5,'couple-days','broken','7395.95',190374,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (283,'saleInformation',5,'couple-days','used','7495.95',112679,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (285,'saleInformation',3,'instant','broken','3695.95',191273,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (286,'saleInformation',3,'instant','used','17595.95',180894,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (287,'saleInformation',5,'instant','reworked','25895.95',140302,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (288,'saleInformation',5,'couple-days','used','9395.95',234197,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (292,'saleInformation',1,'couple-days','reworked','36295.95',272636,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (293,'saleInformation',1,'couple-days','reworked','22795.95',234728,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (294,'saleInformation',4,'couple-days','broken','3895.95',124193,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (295,'saleInformation',1,'couple-days','used','18495.95',182209,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (297,'saleInformation',5,'couple-weeks','reworked','34895.95',111573,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (298,'saleInformation',3,'couple-weeks','used','19295.95',256267,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (299,'saleInformation',1,'couple-weeks','used','24495.95',92892,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (303,'saleInformation',5,'couple-days','reworked','24895.95',191434,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (304,'saleInformation',4,'couple-days','reworked','57295.95',150637,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (305,'saleInformation',3,'couple-days','broken','7295.95',75627,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (306,'saleInformation',4,'instant','reworked','44895.95',289160,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (308,'saleInformation',3,'couple-days','reworked','47195.95',223004,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (309,'saleInformation',3,'couple-weeks','used','16995.95',68245,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (311,'saleInformation',4,'couple-weeks','broken','5895.95',104850,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (312,'saleInformation',1,'couple-days','reworked','50595.95',168554,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (316,'saleInformation',1,'couple-weeks','used','24295.95',222902,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (318,'saleInformation',3,'couple-weeks','broken','1695.95',205304,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (321,'saleInformation',4,'couple-weeks','broken','3995.95',73461,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (323,'saleInformation',1,'couple-weeks','reworked','70295.95',50666,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (325,'saleInformation',3,'couple-weeks','reworked','84995.95',234927,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (326,'saleInformation',4,'couple-weeks','used','10695.95',116281,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (328,'saleInformation',2,'instant','used','28195.95',32842,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (329,'saleInformation',3,'couple-weeks','reworked','26295.95',161955,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (332,'saleInformation',3,'couple-weeks','reworked','85295.95',262759,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (334,'saleInformation',4,'couple-weeks','reworked','37795.95',276362,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (337,'saleInformation',4,'couple-weeks','broken','6395.95',58941,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (338,'saleInformation',1,'couple-days','broken','7295.95',208656,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (339,'saleInformation',2,'couple-days','used','16395.95',263611,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (341,'saleInformation',4,'couple-days','used','14495.95',294645,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (342,'saleInformation',2,'couple-days','reworked','79795.95',247447,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (344,'saleInformation',5,'instant','broken','1695.95',85720,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (346,'saleInformation',3,'couple-days','reworked','17495.95',92564,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (347,'saleInformation',2,'instant','used','29195.95',276809,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (348,'saleInformation',5,'couple-weeks','used','25195.95',259692,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (350,'saleInformation',1,'couple-days','used','24595.95',106371,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (351,'saleInformation',1,'couple-days','used','27695.95',260727,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (352,'saleInformation',4,'couple-weeks','used','10495.95',60686,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (353,'saleInformation',4,'couple-weeks','reworked','27495.95',98681,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (358,'saleInformation',1,'couple-weeks','broken','7195.95',206718,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (359,'saleInformation',3,'couple-weeks','broken','6095.95',32684,7); +INSERT INTO object_brick_query_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (360,'saleInformation',2,'couple-days','broken','4495.95',74112,7); diff --git a/dump/data-1-object_brick_query_Transmission_CAR.sql b/dump/data-1-object_brick_query_Transmission_CAR.sql index 89171480..e6f1f37b 100644 --- a/dump/data-1-object_brick_query_Transmission_CAR.sql +++ b/dump/data-1-object_brick_query_Transmission_CAR.sql @@ -1,275 +1,275 @@ SET NAMES utf8mb4; -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (9,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (10,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (11,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (12,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (13,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (14,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (15,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (16,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (17,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (19,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (20,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (21,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (22,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (23,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (24,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (25,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (26,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (29,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (30,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (31,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (37,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (38,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (41,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (43,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (44,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (47,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (48,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (51,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (52,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (53,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (54,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (55,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (57,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (58,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (61,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (62,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (63,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (64,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (66,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (67,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (68,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (69,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (70,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (73,'attributes','front-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (74,'attributes','front-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (75,'attributes','front-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (76,'attributes','front-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (77,'attributes','front-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (78,'attributes','front-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (81,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (82,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (85,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (86,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (87,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (88,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (89,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (90,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (91,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (92,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (95,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (97,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (98,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (101,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (102,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (103,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (104,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (105,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (108,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (109,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (110,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (111,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (112,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (113,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (114,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (115,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (116,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (117,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (118,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (119,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (120,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (123,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (124,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (125,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (126,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (129,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (130,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (131,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (132,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (133,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (136,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (138,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (139,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (140,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (141,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (142,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (143,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (144,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (147,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (148,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (149,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (150,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (151,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (152,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (155,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (156,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (157,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (160,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (161,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (162,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (165,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (166,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (169,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (170,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (172,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (173,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (174,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (175,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (178,'attributes','front-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (180,'attributes','front-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (183,'attributes','front-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (184,'attributes','front-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (187,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (188,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (189,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (190,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (191,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (192,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (193,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (194,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (195,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (196,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (197,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (198,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (199,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (200,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (201,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (202,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (203,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (204,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (205,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (209,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (210,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (211,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (212,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (215,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (216,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (217,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (218,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (219,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (220,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (221,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (222,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (223,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (224,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (225,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (226,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (227,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (228,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (229,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (230,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (231,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (232,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (233,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (235,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (236,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (238,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (242,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (243,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (244,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (245,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (246,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (247,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (248,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (249,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (250,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (251,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (252,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (253,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (261,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (262,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (263,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (264,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (265,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (266,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (267,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (268,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (269,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (270,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (271,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (272,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (273,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (274,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (275,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (276,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (277,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (278,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (279,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (280,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (281,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (282,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (283,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (284,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (285,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (286,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (287,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (288,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (289,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (290,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (291,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (292,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (293,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (294,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (295,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (296,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (297,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (298,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (299,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (302,'attributes','front-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (303,'attributes','front-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (304,'attributes','front-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (305,'attributes','front-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (306,'attributes','front-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (307,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (308,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (309,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (310,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (311,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (312,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (313,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (314,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (316,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (317,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (318,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (319,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (320,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (321,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (322,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (323,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (324,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (325,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (326,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (327,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (328,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (329,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (330,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (331,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (332,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (333,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (334,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (335,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (336,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (337,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (338,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (339,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (340,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (341,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (342,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (343,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (344,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (345,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (346,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (347,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (348,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (349,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (350,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (351,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (352,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (353,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (357,'attributes','front-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (358,'attributes','front-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (359,'attributes','front-wheel-drive'); -INSERT INTO object_brick_query_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (360,'attributes','front-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (9,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (10,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (11,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (12,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (13,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (14,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (15,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (16,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (17,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (19,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (20,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (21,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (22,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (23,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (24,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (25,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (26,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (29,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (30,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (31,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (37,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (38,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (41,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (43,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (44,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (47,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (48,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (51,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (52,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (53,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (54,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (55,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (57,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (58,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (61,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (62,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (63,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (64,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (66,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (67,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (68,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (69,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (70,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (73,'attributes','front-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (74,'attributes','front-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (75,'attributes','front-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (76,'attributes','front-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (77,'attributes','front-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (78,'attributes','front-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (81,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (82,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (85,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (86,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (87,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (88,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (89,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (90,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (91,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (92,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (95,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (97,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (98,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (101,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (102,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (103,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (104,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (105,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (108,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (109,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (110,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (111,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (112,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (113,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (114,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (115,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (116,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (117,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (118,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (119,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (120,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (123,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (124,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (125,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (126,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (129,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (130,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (131,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (132,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (133,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (136,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (138,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (139,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (140,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (141,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (142,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (143,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (144,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (147,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (148,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (149,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (150,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (151,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (152,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (155,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (156,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (157,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (160,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (161,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (162,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (165,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (166,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (169,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (170,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (172,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (173,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (174,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (175,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (178,'attributes','front-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (180,'attributes','front-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (183,'attributes','front-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (184,'attributes','front-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (187,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (188,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (189,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (190,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (191,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (192,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (193,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (194,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (195,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (196,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (197,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (198,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (199,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (200,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (201,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (202,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (203,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (204,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (205,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (209,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (210,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (211,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (212,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (215,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (216,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (217,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (218,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (219,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (220,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (221,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (222,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (223,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (224,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (225,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (226,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (227,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (228,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (229,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (230,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (231,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (232,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (233,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (235,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (236,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (238,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (242,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (243,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (244,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (245,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (246,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (247,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (248,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (249,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (250,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (251,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (252,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (253,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (261,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (262,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (263,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (264,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (265,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (266,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (267,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (268,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (269,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (270,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (271,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (272,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (273,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (274,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (275,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (276,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (277,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (278,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (279,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (280,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (281,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (282,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (283,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (284,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (285,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (286,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (287,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (288,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (289,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (290,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (291,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (292,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (293,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (294,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (295,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (296,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (297,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (298,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (299,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (302,'attributes','front-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (303,'attributes','front-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (304,'attributes','front-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (305,'attributes','front-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (306,'attributes','front-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (307,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (308,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (309,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (310,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (311,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (312,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (313,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (314,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (316,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (317,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (318,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (319,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (320,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (321,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (322,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (323,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (324,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (325,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (326,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (327,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (328,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (329,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (330,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (331,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (332,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (333,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (334,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (335,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (336,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (337,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (338,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (339,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (340,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (341,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (342,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (343,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (344,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (345,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (346,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (347,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (348,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (349,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (350,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (351,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (352,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (353,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (357,'attributes','front-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (358,'attributes','front-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (359,'attributes','front-wheel-drive'); +INSERT INTO object_brick_query_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (360,'attributes','front-wheel-drive'); diff --git a/dump/data-1-object_brick_store_Bodywork_CAR.sql b/dump/data-1-object_brick_store_Bodywork_CAR.sql index d478e33c..c151f2ad 100644 --- a/dump/data-1-object_brick_store_Bodywork_CAR.sql +++ b/dump/data-1-object_brick_store_Bodywork_CAR.sql @@ -1,274 +1,274 @@ SET NAMES utf8mb4; -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (9,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (10,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (11,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (12,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (13,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (14,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (15,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (16,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (17,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (19,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (20,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (21,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (22,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (23,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (24,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (25,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (26,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (29,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (30,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (31,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (32,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (33,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (34,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (37,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (38,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (41,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (43,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (44,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (47,'attributes',NULL,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (48,'attributes',4,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (51,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (52,'attributes',2,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (53,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (54,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (55,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (57,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (58,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (61,'attributes',NULL,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (62,'attributes',2,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (63,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (64,'attributes',4,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (66,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (67,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (68,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (69,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (70,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (73,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (74,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (75,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (76,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (77,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (78,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (81,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (82,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (85,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (86,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (87,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (88,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (89,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (90,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (91,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (92,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (95,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (97,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (98,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (101,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (102,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (103,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (104,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (105,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (108,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (109,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (110,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (111,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (112,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (113,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (114,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (115,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (116,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (117,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (118,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (119,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (120,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (123,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (124,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (125,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (126,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (129,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (130,'attributes',2,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (131,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (132,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (133,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (136,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (138,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (139,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (140,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (141,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (142,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (143,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (144,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (147,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (148,'attributes',2,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (149,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (150,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (151,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (152,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (155,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (156,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (157,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (160,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (161,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (162,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (165,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (166,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (169,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (170,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (172,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (173,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (174,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (175,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (178,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (180,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (183,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (184,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (187,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (188,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (189,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (190,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (191,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (192,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (193,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (194,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (195,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (196,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (197,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (198,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (199,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (200,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (201,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (202,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (203,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (204,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (205,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (209,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (210,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (211,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (212,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (215,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (216,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (217,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (218,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (219,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (220,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (221,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (222,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (223,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (224,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (225,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (226,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (227,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (228,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (229,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (230,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (231,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (232,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (242,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (243,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (244,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (245,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (246,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (247,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (248,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (249,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (250,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (251,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (252,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (253,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (261,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (262,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (263,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (264,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (265,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (266,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (267,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (268,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (269,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (270,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (271,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (272,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (273,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (274,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (275,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (276,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (277,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (278,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (279,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (280,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (281,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (282,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (283,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (284,'attributes',2,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (285,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (286,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (287,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (288,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (289,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (290,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (291,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (292,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (293,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (294,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (295,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (296,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (297,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (298,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (299,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (302,'attributes',1,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (303,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (304,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (305,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (306,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (307,'attributes',3,4,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (308,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (309,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (310,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (311,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (312,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (313,'attributes',4,4,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (314,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (316,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (317,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (318,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (319,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (320,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (321,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (322,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (323,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (324,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (325,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (326,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (327,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (328,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (329,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (330,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (331,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (332,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (333,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (334,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (335,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (336,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (337,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (338,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (339,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (340,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (341,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (342,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (343,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (344,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (345,'attributes',4,5,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (346,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (347,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (348,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (349,'attributes',2,2,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (350,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (351,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (352,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (353,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (357,'attributes',2,4,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (358,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (359,'attributes',NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Bodywork_CAR (`o_id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (360,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (9,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (10,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (11,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (12,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (13,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (14,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (15,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (16,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (17,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (19,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (20,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (21,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (22,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (23,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (24,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (25,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (26,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (29,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (30,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (31,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (32,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (33,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (34,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (37,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (38,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (41,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (43,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (44,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (47,'attributes',NULL,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (48,'attributes',4,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (51,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (52,'attributes',2,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (53,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (54,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (55,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (57,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (58,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (61,'attributes',NULL,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (62,'attributes',2,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (63,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (64,'attributes',4,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (66,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (67,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (68,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (69,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (70,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (73,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (74,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (75,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (76,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (77,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (78,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (81,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (82,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (85,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (86,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (87,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (88,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (89,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (90,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (91,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (92,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (95,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (97,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (98,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (101,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (102,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (103,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (104,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (105,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (108,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (109,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (110,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (111,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (112,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (113,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (114,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (115,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (116,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (117,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (118,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (119,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (120,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (123,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (124,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (125,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (126,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (129,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (130,'attributes',2,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (131,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (132,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (133,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (136,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (138,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (139,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (140,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (141,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (142,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (143,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (144,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (147,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (148,'attributes',2,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (149,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (150,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (151,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (152,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (155,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (156,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (157,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (160,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (161,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (162,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (165,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (166,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (169,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (170,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (172,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (173,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (174,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (175,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (178,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (180,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (183,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (184,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (187,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (188,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (189,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (190,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (191,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (192,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (193,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (194,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (195,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (196,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (197,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (198,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (199,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (200,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (201,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (202,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (203,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (204,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (205,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (209,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (210,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (211,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (212,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (215,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (216,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (217,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (218,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (219,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (220,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (221,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (222,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (223,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (224,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (225,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (226,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (227,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (228,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (229,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (230,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (231,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (232,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (242,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (243,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (244,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (245,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (246,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (247,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (248,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (249,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (250,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (251,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (252,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (253,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (261,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (262,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (263,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (264,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (265,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (266,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (267,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (268,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (269,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (270,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (271,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (272,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (273,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (274,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (275,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (276,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (277,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (278,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (279,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (280,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (281,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (282,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (283,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (284,'attributes',2,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (285,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (286,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (287,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (288,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (289,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (290,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (291,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (292,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (293,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (294,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (295,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (296,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (297,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (298,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (299,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (302,'attributes',1,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (303,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (304,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (305,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (306,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (307,'attributes',3,4,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (308,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (309,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (310,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (311,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (312,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (313,'attributes',4,4,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (314,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (316,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (317,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (318,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (319,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (320,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (321,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (322,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (323,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (324,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (325,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (326,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (327,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (328,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (329,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (330,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (331,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (332,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (333,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (334,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (335,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (336,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (337,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (338,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (339,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (340,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (341,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (342,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (343,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (344,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (345,'attributes',4,5,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (346,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (347,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (348,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (349,'attributes',2,2,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (350,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (351,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (352,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (353,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (357,'attributes',2,4,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (358,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (359,'attributes',NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Bodywork_CAR (`id`,`fieldname`,`numberOfDoors`,`numberOfSeats`,`cargoCapacity__value`,`cargoCapacity__unit`) VALUES (360,'attributes',NULL,NULL,NULL,NULL); diff --git a/dump/data-1-object_brick_store_Dimensions_CAR.sql b/dump/data-1-object_brick_store_Dimensions_CAR.sql index ee236761..ce023203 100644 --- a/dump/data-1-object_brick_store_Dimensions_CAR.sql +++ b/dump/data-1-object_brick_store_Dimensions_CAR.sql @@ -1,278 +1,278 @@ SET NAMES utf8mb4; -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (9,'attributes',4458,1,1632,1,2438,1,1220,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (10,'attributes',4690,1,1660,1,2670,1,1245,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (11,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (12,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (13,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (14,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (15,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (16,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (17,'attributes',4591,1,1695,1,2727,1,1440,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (19,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (20,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (21,'attributes',4470,1,1638,1,2591,1,1422,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (22,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (23,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (24,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (25,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (26,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (29,'attributes',4000,1,1560,1,2400,1,875,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (30,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (31,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (32,'attributes',4510,1,1610,1,1390,1,1280,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (33,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (34,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (37,'attributes',4010,1,1540,1,2340,1,1158,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (38,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (41,'attributes',4785,1,1811,1,2845,1,1247,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (43,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (44,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (47,'attributes',5730,1,2040,1,3310,1,2140,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (48,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (51,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (52,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (53,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (54,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (55,'attributes',5700,1,2030,1,3300,1,2115,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (57,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (58,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (61,'attributes',4980,1,1890,1,2930,1,1550,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (62,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (63,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (64,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (66,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (67,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (68,'attributes',4267,1,1790,1,2590,1,1313,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (69,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (70,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (73,'attributes',3778,1,1478,1,2370,1,682,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (74,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (75,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (76,'attributes',4810,1,1800,1,3130,1,1210,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (77,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (78,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (81,'attributes',3962,1,1727,1,1245,1,1147,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (82,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (85,'attributes',5217,1,1953,1,2921,1,1513,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (86,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (87,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (88,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (89,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (90,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (91,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (92,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (95,'attributes',4485,1,1976,1,2550,1,1506,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (97,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (98,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (101,'attributes',2970,1,1320,1,1840,1,470,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (102,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (103,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (104,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (105,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (108,'attributes',4670,1,1820,1,2750,1,1179,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (109,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (110,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (111,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (112,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (113,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (114,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (115,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (116,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (117,'attributes',4458,1,1749,1,2591,1,1510,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (118,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (119,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (120,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (123,'attributes',4400,1,1790,1,2510,1,1300,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (124,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (125,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (126,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (129,'attributes',5766,1,2045,1,3327,1,2223,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (130,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (131,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (132,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (133,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (136,'attributes',4290,1,1750,1,2410,1,1160,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (138,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (139,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (140,'attributes',4520,1,1778,1,2400,1,1293,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (141,'attributes',4580,1,1800,1,2410,1,1385,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (142,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (143,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (144,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (147,'attributes',4953,1,1816,1,2896,1,1226,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (148,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (149,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (150,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (151,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (152,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (155,'attributes',3962,1,1473,1,2388,1,890,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (156,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (157,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (160,'attributes',4470,1,1676,1,2667,1,1080,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (161,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (162,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (165,'attributes',5607,1,2051,1,3150,1,1981,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (166,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (169,'attributes',4170,1,1620,1,2220,1,1062,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (170,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (172,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (173,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (174,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (175,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (178,'attributes',3658,1,1486,1,2350,1,600,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (180,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (183,'attributes',3555,1,1505,1,2020,1,615,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (184,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (187,'attributes',3950,1,1550,1,2235,1,1130,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (188,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (189,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (190,'attributes',3962,1,1461,1,2238,1,966,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (191,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (192,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (193,'attributes',3835,1,1410,1,2238,1,904,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (194,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (195,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (196,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (197,'attributes',3870,1,1660,1,2110,1,780,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (198,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (199,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (200,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (201,'attributes',4013,1,1670,1,2100,1,934,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (202,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (203,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (204,'attributes',4013,1,1676,1,2100,1,934,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (205,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (209,'attributes',4064,1,1537,1,2400,1,739,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (210,'attributes',4070,1,1560,1,2410,1,800,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (211,'attributes',4070,1,1560,1,2410,1,820,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (212,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (215,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (216,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (217,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (218,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (219,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (220,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (221,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (222,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (223,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (224,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (225,'attributes',4200,1,1640,1,2430,1,822,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (226,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (227,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (228,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (229,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (230,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (231,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (232,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (233,'attributes',4280,1,1720,1,2400,1,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (235,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (236,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (238,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (242,'attributes',4572,1,1676,1,2489,1,1465,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (243,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (244,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (245,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (246,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (247,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (248,'attributes',4623,1,1676,1,2584,1,1550,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (249,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (250,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (251,'attributes',4407,1,1753,1,2600,1,1495,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (252,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (253,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (261,'attributes',4400,1,1600,1,2630,1,1100,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (262,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (263,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (264,'attributes',4410,1,1640,1,2510,1,950,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (265,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (266,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (267,'attributes',4710,1,1700,1,2720,1,1337,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (268,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (269,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (270,'attributes',4496,1,1650,1,2500,1,1178,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (271,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (272,'attributes',4120,1,1660,1,2260,1,957,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (273,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (274,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (275,'attributes',3962,1,1676,1,2527,1,1312,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (276,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (277,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (278,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (279,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (280,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (281,'attributes',5000,1,1860,1,2900,1,1805,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (282,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (283,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (284,'attributes',5130,1,1930,1,2900,1,1890,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (285,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (286,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (287,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (288,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (289,'attributes',4496,1,1638,1,2591,1,1473,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (290,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (291,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (292,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (293,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (294,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (295,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (296,'attributes',4448,1,1836,1,2500,1,1451,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (297,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (298,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (299,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (302,'attributes',2300,1,1390,1,1510,1,360,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (303,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (304,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (305,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (306,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (307,'attributes',2900,1,1410,1,1380,1,550,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (308,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (309,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (310,'attributes',4397,1,1651,1,2479,1,1330,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (311,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (312,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (313,'attributes',4840,1,1700,1,2980,1,1300,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (314,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (316,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (317,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (318,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (319,'attributes',4510,1,1685,1,2845,1,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (320,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (321,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (322,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (323,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (324,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (325,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (326,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (327,'attributes',4750,1,1740,1,2820,1,1345,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (328,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (329,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (330,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (331,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (332,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (333,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (334,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (335,'attributes',4890,1,1850,1,2760,1,1320,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (336,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (337,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (338,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (339,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (340,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (341,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (342,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (343,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (344,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (345,'attributes',4740,1,1800,1,2710,1,1280,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (346,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (347,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (348,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (349,'attributes',4285,1,1760,1,2400,1,1300,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (350,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (351,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (352,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (353,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (357,'attributes',3054,1,1397,1,2036,1,580,3); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (358,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (359,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Dimensions_CAR (`o_id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (360,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (9,'attributes',4458,1,1632,1,2438,1,1220,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (10,'attributes',4690,1,1660,1,2670,1,1245,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (11,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (12,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (13,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (14,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (15,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (16,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (17,'attributes',4591,1,1695,1,2727,1,1440,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (19,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (20,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (21,'attributes',4470,1,1638,1,2591,1,1422,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (22,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (23,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (24,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (25,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (26,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (29,'attributes',4000,1,1560,1,2400,1,875,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (30,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (31,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (32,'attributes',4510,1,1610,1,1390,1,1280,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (33,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (34,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (37,'attributes',4010,1,1540,1,2340,1,1158,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (38,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (41,'attributes',4785,1,1811,1,2845,1,1247,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (43,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (44,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (47,'attributes',5730,1,2040,1,3310,1,2140,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (48,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (51,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (52,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (53,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (54,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (55,'attributes',5700,1,2030,1,3300,1,2115,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (57,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (58,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (61,'attributes',4980,1,1890,1,2930,1,1550,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (62,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (63,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (64,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (66,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (67,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (68,'attributes',4267,1,1790,1,2590,1,1313,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (69,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (70,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (73,'attributes',3778,1,1478,1,2370,1,682,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (74,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (75,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (76,'attributes',4810,1,1800,1,3130,1,1210,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (77,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (78,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (81,'attributes',3962,1,1727,1,1245,1,1147,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (82,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (85,'attributes',5217,1,1953,1,2921,1,1513,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (86,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (87,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (88,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (89,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (90,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (91,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (92,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (95,'attributes',4485,1,1976,1,2550,1,1506,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (97,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (98,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (101,'attributes',2970,1,1320,1,1840,1,470,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (102,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (103,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (104,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (105,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (108,'attributes',4670,1,1820,1,2750,1,1179,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (109,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (110,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (111,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (112,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (113,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (114,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (115,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (116,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (117,'attributes',4458,1,1749,1,2591,1,1510,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (118,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (119,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (120,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (123,'attributes',4400,1,1790,1,2510,1,1300,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (124,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (125,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (126,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (129,'attributes',5766,1,2045,1,3327,1,2223,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (130,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (131,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (132,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (133,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (136,'attributes',4290,1,1750,1,2410,1,1160,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (138,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (139,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (140,'attributes',4520,1,1778,1,2400,1,1293,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (141,'attributes',4580,1,1800,1,2410,1,1385,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (142,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (143,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (144,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (147,'attributes',4953,1,1816,1,2896,1,1226,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (148,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (149,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (150,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (151,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (152,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (155,'attributes',3962,1,1473,1,2388,1,890,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (156,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (157,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (160,'attributes',4470,1,1676,1,2667,1,1080,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (161,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (162,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (165,'attributes',5607,1,2051,1,3150,1,1981,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (166,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (169,'attributes',4170,1,1620,1,2220,1,1062,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (170,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (172,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (173,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (174,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (175,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (178,'attributes',3658,1,1486,1,2350,1,600,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (180,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (183,'attributes',3555,1,1505,1,2020,1,615,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (184,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (187,'attributes',3950,1,1550,1,2235,1,1130,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (188,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (189,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (190,'attributes',3962,1,1461,1,2238,1,966,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (191,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (192,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (193,'attributes',3835,1,1410,1,2238,1,904,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (194,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (195,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (196,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (197,'attributes',3870,1,1660,1,2110,1,780,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (198,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (199,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (200,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (201,'attributes',4013,1,1670,1,2100,1,934,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (202,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (203,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (204,'attributes',4013,1,1676,1,2100,1,934,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (205,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (209,'attributes',4064,1,1537,1,2400,1,739,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (210,'attributes',4070,1,1560,1,2410,1,800,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (211,'attributes',4070,1,1560,1,2410,1,820,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (212,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (215,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (216,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (217,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (218,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (219,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (220,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (221,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (222,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (223,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (224,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (225,'attributes',4200,1,1640,1,2430,1,822,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (226,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (227,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (228,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (229,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (230,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (231,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (232,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (233,'attributes',4280,1,1720,1,2400,1,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (235,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (236,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (238,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (242,'attributes',4572,1,1676,1,2489,1,1465,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (243,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (244,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (245,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (246,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (247,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (248,'attributes',4623,1,1676,1,2584,1,1550,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (249,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (250,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (251,'attributes',4407,1,1753,1,2600,1,1495,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (252,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (253,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (261,'attributes',4400,1,1600,1,2630,1,1100,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (262,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (263,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (264,'attributes',4410,1,1640,1,2510,1,950,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (265,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (266,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (267,'attributes',4710,1,1700,1,2720,1,1337,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (268,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (269,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (270,'attributes',4496,1,1650,1,2500,1,1178,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (271,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (272,'attributes',4120,1,1660,1,2260,1,957,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (273,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (274,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (275,'attributes',3962,1,1676,1,2527,1,1312,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (276,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (277,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (278,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (279,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (280,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (281,'attributes',5000,1,1860,1,2900,1,1805,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (282,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (283,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (284,'attributes',5130,1,1930,1,2900,1,1890,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (285,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (286,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (287,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (288,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (289,'attributes',4496,1,1638,1,2591,1,1473,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (290,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (291,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (292,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (293,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (294,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (295,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (296,'attributes',4448,1,1836,1,2500,1,1451,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (297,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (298,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (299,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (302,'attributes',2300,1,1390,1,1510,1,360,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (303,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (304,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (305,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (306,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (307,'attributes',2900,1,1410,1,1380,1,550,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (308,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (309,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (310,'attributes',4397,1,1651,1,2479,1,1330,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (311,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (312,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (313,'attributes',4840,1,1700,1,2980,1,1300,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (314,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (316,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (317,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (318,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (319,'attributes',4510,1,1685,1,2845,1,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (320,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (321,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (322,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (323,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (324,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (325,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (326,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (327,'attributes',4750,1,1740,1,2820,1,1345,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (328,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (329,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (330,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (331,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (332,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (333,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (334,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (335,'attributes',4890,1,1850,1,2760,1,1320,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (336,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (337,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (338,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (339,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (340,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (341,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (342,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (343,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (344,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (345,'attributes',4740,1,1800,1,2710,1,1280,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (346,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (347,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (348,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (349,'attributes',4285,1,1760,1,2400,1,1300,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (350,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (351,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (352,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (353,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (357,'attributes',3054,1,1397,1,2036,1,580,3); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (358,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (359,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Dimensions_CAR (`id`,`fieldname`,`length__value`,`length__unit`,`width__value`,`width__unit`,`wheelbase__value`,`wheelbase__unit`,`weight__value`,`weight__unit`) VALUES (360,'attributes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); diff --git a/dump/data-1-object_brick_store_Engine_CAR.sql b/dump/data-1-object_brick_store_Engine_CAR.sql index 9c4857cf..e8455d06 100644 --- a/dump/data-1-object_brick_store_Engine_CAR.sql +++ b/dump/data-1-object_brick_store_Engine_CAR.sql @@ -1,278 +1,278 @@ SET NAMES utf8mb4; -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (9,'attributes',6,3781,5,198,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (10,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (11,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (12,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (13,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (14,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (15,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (16,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (17,'attributes',6,2483,5,90,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (19,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (20,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (21,'attributes',6,3442,5,156,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (22,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (23,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (24,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (25,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (26,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (29,'attributes',4,1289,5,39,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (30,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (31,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (32,'attributes',4,1975,5,NULL,NULL,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (33,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (34,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (37,'attributes',6,2912,5,96,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (38,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (41,'attributes',8,3531,5,112,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (43,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (44,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (47,'attributes',8,6380,5,147,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (48,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (51,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (52,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (53,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (54,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (55,'attributes',8,7029,5,155,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (57,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (58,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (61,'attributes',8,4343,5,110,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (62,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (63,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (64,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (66,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (67,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (68,'attributes',8,4339,5,156,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (69,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (70,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (73,'attributes',2,375,5,6.7,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (74,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (75,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (76,'attributes',4,1983,5,73,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (77,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (78,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (81,'attributes',8,6997,5,305,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (82,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (85,'attributes',6,2680,5,82,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (86,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (87,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (88,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (89,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (90,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (91,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (92,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (95,'attributes',12,4942,5,287,6,'middle'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (97,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (98,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (101,'attributes',2,479,5,9.7,6,'back'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (102,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (103,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (104,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (105,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (108,'attributes',8,6385,5,239,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (109,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (110,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (111,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (112,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (113,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (114,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (115,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (116,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (117,'attributes',8,3910,5,96,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (118,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (119,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (120,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (123,'attributes',12,3929,5,287,6,'middle'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (124,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (125,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (126,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (129,'attributes',8,7043,5,261,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (130,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (131,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (132,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (133,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (136,'attributes',4,1897,5,77,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (138,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (139,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (140,'attributes',6,2996,5,160,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (141,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (142,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (143,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (144,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (147,'attributes',8,4265,5,122,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (148,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (149,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (150,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (151,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (152,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (155,'attributes',4,1489,5,50,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (156,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (157,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (160,'attributes',4,1468,5,48,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (161,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (162,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (165,'attributes',8,6371,5,223,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (166,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (169,'attributes',6,1991,5,119,6,'back'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (170,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (172,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (173,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (174,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (175,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (178,'attributes',4,747,5,18,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (180,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (183,'attributes',2,594,5,22,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (184,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (187,'attributes',6,2498,5,111.9,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (188,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (189,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (190,'attributes',4,2138,5,75.6,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (191,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (192,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (193,'attributes',4,1991,5,74.6,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (194,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (195,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (196,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (197,'attributes',4,1131,5,29,6,'back'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (198,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (199,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (200,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (201,'attributes',NULL,1582,5,70,6,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (202,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (203,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (204,'attributes',NULL,1582,5,55,6,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (205,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (209,'attributes',4,1192,5,29.8,6,'back'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (210,'attributes',4,1493,5,39,6,'back'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (211,'attributes',4,1285,5,29,6,'back'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (212,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (215,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (216,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (217,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (218,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (219,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (220,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (221,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (222,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (223,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (224,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (225,'attributes',4,1192,5,22,6,'back'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (226,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (227,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (228,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (229,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (230,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (231,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (232,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (233,'attributes',4,1100,5,18,6,'back'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (235,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (236,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (238,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (242,'attributes',6,3996,5,210,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (243,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (244,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (245,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (246,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (247,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (248,'attributes',6,3996,5,210,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (249,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (250,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (251,'attributes',12,2953,5,186,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (252,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (253,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (261,'attributes',4,1884,5,67.1,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (262,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (263,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (264,'attributes',4,1974,5,85,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (265,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (266,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (267,'attributes',4,1975,5,78,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (268,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (269,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (270,'attributes',NULL,NULL,NULL,85,6,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (271,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (272,'attributes',4,1290,5,75,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (273,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (274,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (275,'attributes',8,2594,5,149.1,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (276,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (277,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (278,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (279,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (280,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (281,'attributes',6,3781,5,164,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (282,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (283,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (284,'attributes',6,3781,5,188,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (285,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (286,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (287,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (288,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (289,'attributes',6,3442,5,141,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (290,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (291,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (292,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (293,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (294,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (295,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (296,'attributes',8,4474,5,176,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (297,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (298,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (299,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (302,'attributes',4,298,5,NULL,NULL,'back'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (303,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (304,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (305,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (306,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (307,'attributes',2,581,5,15,6,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (308,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (309,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (310,'attributes',8,3169,5,104,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (311,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (312,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (313,'attributes',8,3485,5,67,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (314,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (316,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (317,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (318,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (319,'attributes',6,2195,5,58,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (320,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (321,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (322,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (323,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (324,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (325,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (326,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (327,'attributes',6,2195,5,84,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (328,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (329,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (330,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (331,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (332,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (333,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (334,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (335,'attributes',4,2198,5,70,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (336,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (337,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (338,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (339,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (340,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (341,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (342,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (343,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (344,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (345,'attributes',4,1897,5,59,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (346,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (347,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (348,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (349,'attributes',6,2308,5,110,6,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (350,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (351,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (352,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (353,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (357,'attributes',4,850,5,NULL,NULL,'front'); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (358,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (359,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO object_brick_store_Engine_CAR (`o_id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (360,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (9,'attributes',6,3781,5,198,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (10,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (11,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (12,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (13,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (14,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (15,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (16,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (17,'attributes',6,2483,5,90,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (19,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (20,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (21,'attributes',6,3442,5,156,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (22,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (23,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (24,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (25,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (26,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (29,'attributes',4,1289,5,39,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (30,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (31,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (32,'attributes',4,1975,5,NULL,NULL,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (33,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (34,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (37,'attributes',6,2912,5,96,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (38,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (41,'attributes',8,3531,5,112,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (43,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (44,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (47,'attributes',8,6380,5,147,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (48,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (51,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (52,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (53,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (54,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (55,'attributes',8,7029,5,155,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (57,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (58,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (61,'attributes',8,4343,5,110,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (62,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (63,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (64,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (66,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (67,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (68,'attributes',8,4339,5,156,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (69,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (70,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (73,'attributes',2,375,5,6.7,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (74,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (75,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (76,'attributes',4,1983,5,73,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (77,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (78,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (81,'attributes',8,6997,5,305,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (82,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (85,'attributes',6,2680,5,82,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (86,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (87,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (88,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (89,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (90,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (91,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (92,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (95,'attributes',12,4942,5,287,6,'middle'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (97,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (98,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (101,'attributes',2,479,5,9.7,6,'back'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (102,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (103,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (104,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (105,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (108,'attributes',8,6385,5,239,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (109,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (110,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (111,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (112,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (113,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (114,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (115,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (116,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (117,'attributes',8,3910,5,96,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (118,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (119,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (120,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (123,'attributes',12,3929,5,287,6,'middle'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (124,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (125,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (126,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (129,'attributes',8,7043,5,261,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (130,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (131,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (132,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (133,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (136,'attributes',4,1897,5,77,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (138,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (139,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (140,'attributes',6,2996,5,160,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (141,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (142,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (143,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (144,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (147,'attributes',8,4265,5,122,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (148,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (149,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (150,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (151,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (152,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (155,'attributes',4,1489,5,50,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (156,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (157,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (160,'attributes',4,1468,5,48,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (161,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (162,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (165,'attributes',8,6371,5,223,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (166,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (169,'attributes',6,1991,5,119,6,'back'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (170,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (172,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (173,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (174,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (175,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (178,'attributes',4,747,5,18,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (180,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (183,'attributes',2,594,5,22,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (184,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (187,'attributes',6,2498,5,111.9,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (188,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (189,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (190,'attributes',4,2138,5,75.6,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (191,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (192,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (193,'attributes',4,1991,5,74.6,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (194,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (195,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (196,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (197,'attributes',4,1131,5,29,6,'back'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (198,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (199,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (200,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (201,'attributes',NULL,1582,5,70,6,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (202,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (203,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (204,'attributes',NULL,1582,5,55,6,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (205,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (209,'attributes',4,1192,5,29.8,6,'back'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (210,'attributes',4,1493,5,39,6,'back'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (211,'attributes',4,1285,5,29,6,'back'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (212,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (215,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (216,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (217,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (218,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (219,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (220,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (221,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (222,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (223,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (224,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (225,'attributes',4,1192,5,22,6,'back'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (226,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (227,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (228,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (229,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (230,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (231,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (232,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (233,'attributes',4,1100,5,18,6,'back'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (235,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (236,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (238,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (242,'attributes',6,3996,5,210,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (243,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (244,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (245,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (246,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (247,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (248,'attributes',6,3996,5,210,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (249,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (250,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (251,'attributes',12,2953,5,186,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (252,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (253,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (261,'attributes',4,1884,5,67.1,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (262,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (263,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (264,'attributes',4,1974,5,85,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (265,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (266,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (267,'attributes',4,1975,5,78,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (268,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (269,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (270,'attributes',NULL,NULL,NULL,85,6,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (271,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (272,'attributes',4,1290,5,75,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (273,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (274,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (275,'attributes',8,2594,5,149.1,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (276,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (277,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (278,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (279,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (280,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (281,'attributes',6,3781,5,164,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (282,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (283,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (284,'attributes',6,3781,5,188,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (285,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (286,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (287,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (288,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (289,'attributes',6,3442,5,141,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (290,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (291,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (292,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (293,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (294,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (295,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (296,'attributes',8,4474,5,176,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (297,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (298,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (299,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (302,'attributes',4,298,5,NULL,NULL,'back'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (303,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (304,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (305,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (306,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (307,'attributes',2,581,5,15,6,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (308,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (309,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (310,'attributes',8,3169,5,104,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (311,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (312,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (313,'attributes',8,3485,5,67,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (314,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (316,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (317,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (318,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (319,'attributes',6,2195,5,58,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (320,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (321,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (322,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (323,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (324,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (325,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (326,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (327,'attributes',6,2195,5,84,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (328,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (329,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (330,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (331,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (332,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (333,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (334,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (335,'attributes',4,2198,5,70,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (336,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (337,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (338,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (339,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (340,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (341,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (342,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (343,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (344,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (345,'attributes',4,1897,5,59,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (346,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (347,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (348,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (349,'attributes',6,2308,5,110,6,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (350,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (351,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (352,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (353,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (357,'attributes',4,850,5,NULL,NULL,'front'); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (358,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (359,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO object_brick_store_Engine_CAR (`id`,`fieldname`,`cylinders`,`capacity__value`,`capacity__unit`,`power__value`,`power__unit`,`engineLocation`) VALUES (360,'attributes',NULL,NULL,NULL,NULL,NULL,NULL); diff --git a/dump/data-1-object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO.sql b/dump/data-1-object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO.sql index 82bf79e1..973dc35a 100644 --- a/dump/data-1-object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO.sql +++ b/dump/data-1-object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO.sql @@ -1,14 +1,14 @@ SET NAMES utf8mb4; -INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1161,'paymentProvider','paypal','9CT34444M22539158','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); -INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1164,'paymentProvider','paypal','6P219778U2879173E','8K7SZCFPV9FNN','dino.flintstone@stone.age','Dino','Flintstone'); -INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1167,'paymentProvider','paypal','6JJ73082Y6212093P','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); -INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1169,'paymentProvider','paypal','2EM467546N444340L','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); -INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1171,'paymentProvider','paypal','25G06452DD907934U','E5MVCRWZCLVGC','pebbles.flintstone@stone.age','Pebbles','Flintstone'); -INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1174,'paymentProvider','paypal','0PW47704US056523W','KM74HEUDXRKW8','wilma.flintstone@stone.age','Wilma','Flintstone'); -INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1177,'paymentProvider','paypal','2WD483862M3756428','9JD48T3MNQAHE','fred.flintstone@stone.age','Fred','Flintstone'); -INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1179,'paymentProvider','paypal','47K11814GM581932X','CQKZHP8X94AXG','fred.flintstone@stone.age','Fred','Flintstone'); -INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1182,'paymentProvider','paypal','6R3238856S495354E','XQADWG5K37MDG','fred.flintstone@stone.age','Fred','Flintstone'); -INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1184,'paymentProvider','paypal','8KG85242WB406050N','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); -INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1186,'paymentProvider','paypal','6B458608LD1779402','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); +INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1161,'paymentProvider','paypal','9CT34444M22539158','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); +INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1164,'paymentProvider','paypal','6P219778U2879173E','8K7SZCFPV9FNN','dino.flintstone@stone.age','Dino','Flintstone'); +INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1167,'paymentProvider','paypal','6JJ73082Y6212093P','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); +INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1169,'paymentProvider','paypal','2EM467546N444340L','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); +INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1171,'paymentProvider','paypal','25G06452DD907934U','E5MVCRWZCLVGC','pebbles.flintstone@stone.age','Pebbles','Flintstone'); +INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1174,'paymentProvider','paypal','0PW47704US056523W','KM74HEUDXRKW8','wilma.flintstone@stone.age','Wilma','Flintstone'); +INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1177,'paymentProvider','paypal','2WD483862M3756428','9JD48T3MNQAHE','fred.flintstone@stone.age','Fred','Flintstone'); +INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1179,'paymentProvider','paypal','47K11814GM581932X','CQKZHP8X94AXG','fred.flintstone@stone.age','Fred','Flintstone'); +INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1182,'paymentProvider','paypal','6R3238856S495354E','XQADWG5K37MDG','fred.flintstone@stone.age','Fred','Flintstone'); +INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1184,'paymentProvider','paypal','8KG85242WB406050N','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); +INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES (1186,'paymentProvider','paypal','6B458608LD1779402','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); diff --git a/dump/data-1-object_brick_store_SaleInformation_AP.sql b/dump/data-1-object_brick_store_SaleInformation_AP.sql index 91d03417..3390ddf6 100644 --- a/dump/data-1-object_brick_store_SaleInformation_AP.sql +++ b/dump/data-1-object_brick_store_SaleInformation_AP.sql @@ -1,155 +1,155 @@ SET NAMES utf8mb4; -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (372,'saleInformation',19,'couple-weeks','new','1295.95',32518,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (373,'saleInformation',13,'instant','broken','1995.95',191282,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (377,'saleInformation',3,'couple-weeks','used','995.95',91346,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (378,'saleInformation',16,'couple-days','broken','95.95',285600,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (379,'saleInformation',18,'couple-days','reworked','395.95',172674,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (381,'saleInformation',2,'couple-days','new','1595.95',279853,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (382,'saleInformation',11,'couple-weeks','used','1495.95',170202,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (383,'saleInformation',14,'couple-weeks','used','795.95',133410,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (384,'saleInformation',7,'couple-days','broken','695.95',260884,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (385,'saleInformation',7,'couple-days','reworked','1495.95',250902,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (386,'saleInformation',2,'couple-days','broken','1695.95',255547,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (387,'saleInformation',7,'couple-days','reworked','195.95',141858,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (388,'saleInformation',10,'couple-days','reworked','1295.95',150305,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (400,'saleInformation',2,'couple-days','used','1895.95',228351,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (401,'saleInformation',2,'instant','used','395.95',127059,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (402,'saleInformation',4,'couple-days','broken','495.95',171165,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (403,'saleInformation',9,'couple-weeks','used','595.95',298430,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (404,'saleInformation',17,'couple-weeks','broken','395.95',146121,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (405,'saleInformation',9,'instant','used','195.95',204737,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (406,'saleInformation',12,'couple-days','reworked','895.95',247643,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (408,'saleInformation',17,'couple-days','new','595.95',240708,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (410,'saleInformation',19,'couple-weeks','used','1295.95',191200,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (411,'saleInformation',6,'couple-days','broken','295.95',238855,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (412,'saleInformation',19,'couple-weeks','new','195.95',258073,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (413,'saleInformation',1,'couple-weeks','used','695.95',192478,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (414,'saleInformation',7,'couple-weeks','used','295.95',113466,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (415,'saleInformation',20,'instant','used','795.95',51246,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (416,'saleInformation',12,'instant','broken','1895.95',191694,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (418,'saleInformation',2,'instant','used','1795.95',153194,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (419,'saleInformation',10,'instant','reworked','295.95',278996,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (420,'saleInformation',20,'instant','reworked','995.95',212138,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (422,'saleInformation',4,'instant','reworked','1895.95',94061,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (423,'saleInformation',7,'instant','broken','895.95',246714,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (424,'saleInformation',16,'instant','new','595.95',247970,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (425,'saleInformation',12,'instant','used','1695.95',120079,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (426,'saleInformation',17,'couple-weeks','new','1095.95',110042,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (427,'saleInformation',16,'instant','used','895.95',107189,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (428,'saleInformation',17,'couple-weeks','new','995.95',184577,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (429,'saleInformation',16,'instant','broken','695.95',279713,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (430,'saleInformation',1,'instant','reworked','1595.95',263748,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (431,'saleInformation',18,'couple-days','broken','95.95',271970,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (432,'saleInformation',7,'instant','reworked','95.95',200992,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (433,'saleInformation',8,'instant','new','1295.95',31609,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (434,'saleInformation',10,'couple-days','new','1495.95',251179,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (435,'saleInformation',16,'instant','reworked','295.95',299704,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (436,'saleInformation',1,'couple-weeks','reworked','1995.95',36355,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (437,'saleInformation',18,'instant','new','395.95',242192,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (438,'saleInformation',3,'couple-days','new','195.95',100322,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (439,'saleInformation',3,'couple-days','new','1495.95',31193,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (440,'saleInformation',15,'couple-weeks','used','995.95',299664,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (441,'saleInformation',2,'couple-days','used','1195.95',51305,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (442,'saleInformation',18,'instant','reworked','395.95',259638,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (443,'saleInformation',3,'couple-weeks','reworked','1995.95',76366,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (444,'saleInformation',11,'instant','reworked','495.95',250025,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (445,'saleInformation',16,'instant','used','295.95',122140,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (446,'saleInformation',17,'instant','broken','295.95',202340,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (447,'saleInformation',19,'instant','reworked','795.95',129008,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (448,'saleInformation',13,'couple-days','used','1795.95',82329,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (449,'saleInformation',2,'couple-days','broken','1495.95',56259,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (450,'saleInformation',3,'couple-days','broken','95.95',116846,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (451,'saleInformation',7,'couple-weeks','new','1895.95',32800,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (452,'saleInformation',12,'instant','reworked','795.95',138473,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (453,'saleInformation',13,'instant','new','1695.95',143152,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (454,'saleInformation',20,'couple-days','used','95.95',210791,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (455,'saleInformation',7,'instant','reworked','595.95',187900,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (456,'saleInformation',5,'couple-weeks','new','395.95',265308,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (457,'saleInformation',1,'instant','new','1795.95',108120,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (458,'saleInformation',2,'instant','new','1195.95',56923,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (459,'saleInformation',6,'couple-weeks','used','595.95',260627,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (460,'saleInformation',5,'instant','broken','1695.95',271634,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (461,'saleInformation',5,'couple-days','broken','695.95',268714,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (462,'saleInformation',2,'couple-weeks','reworked','195.95',118155,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (463,'saleInformation',14,'instant','reworked','1495.95',192749,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (464,'saleInformation',11,'instant','used','495.95',148987,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (465,'saleInformation',7,'instant','used','595.95',72441,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (466,'saleInformation',4,'couple-days','used','195.95',226857,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (467,'saleInformation',5,'couple-days','new','1695.95',227929,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (468,'saleInformation',4,'couple-weeks','used','1195.95',235694,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (469,'saleInformation',10,'instant','reworked','1795.95',171302,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (470,'saleInformation',2,'instant','broken','595.95',229384,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (471,'saleInformation',16,'couple-days','used','1295.95',174466,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (472,'saleInformation',9,'couple-weeks','broken','1695.95',77894,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (473,'saleInformation',9,'couple-weeks','new','395.95',260530,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (474,'saleInformation',10,'instant','reworked','995.95',36941,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (475,'saleInformation',5,'instant','used','195.95',153395,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (476,'saleInformation',10,'couple-weeks','new','295.95',228999,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (477,'saleInformation',1,'couple-days','broken','1495.95',115826,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (478,'saleInformation',1,'couple-weeks','used','95.95',125920,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (479,'saleInformation',10,'couple-weeks','new','295.95',298477,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (480,'saleInformation',14,'couple-weeks','new','795.95',142951,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (481,'saleInformation',7,'couple-weeks','reworked','1495.95',293471,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (482,'saleInformation',4,'couple-days','new','295.95',138742,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (484,'saleInformation',9,'couple-days','used','1195.95',98532,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (485,'saleInformation',2,'instant','broken','795.95',65000,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (486,'saleInformation',17,'couple-days','new','1895.95',270029,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (487,'saleInformation',13,'instant','broken','1895.95',173002,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (488,'saleInformation',15,'couple-days','new','1995.95',224233,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (489,'saleInformation',16,'couple-days','new','295.95',187323,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (490,'saleInformation',10,'couple-weeks','broken','1395.95',271737,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (492,'saleInformation',10,'couple-days','used','495.95',288395,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (493,'saleInformation',4,'couple-days','new','695.95',186677,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (494,'saleInformation',1,'instant','used','295.95',289758,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (495,'saleInformation',16,'instant','reworked','95.95',97482,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (496,'saleInformation',12,'instant','reworked','195.95',149635,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (497,'saleInformation',15,'couple-weeks','new','1395.95',195618,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (498,'saleInformation',13,'couple-days','new','495.95',234174,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (499,'saleInformation',10,'couple-days','broken','595.95',191816,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (500,'saleInformation',3,'couple-days','broken','1295.95',174529,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (501,'saleInformation',12,'instant','new','395.95',216189,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (502,'saleInformation',1,'couple-days','used','595.95',258407,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (503,'saleInformation',2,'couple-weeks','reworked','1995.95',265380,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (504,'saleInformation',19,'instant','used','1795.95',152615,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (505,'saleInformation',11,'couple-weeks','used','1895.95',125956,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (506,'saleInformation',1,'couple-weeks','new','395.95',216443,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (507,'saleInformation',11,'instant','new','995.95',41153,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (508,'saleInformation',19,'couple-days','reworked','295.95',181381,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (509,'saleInformation',11,'couple-days','used','395.95',287099,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (510,'saleInformation',20,'instant','used','1095.95',284711,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (511,'saleInformation',3,'couple-weeks','used','1895.95',71649,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (512,'saleInformation',9,'couple-weeks','broken','995.95',96690,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (513,'saleInformation',8,'couple-weeks','reworked','1995.95',34773,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (514,'saleInformation',20,'couple-weeks','broken','195.95',60641,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (515,'saleInformation',8,'couple-weeks','new','795.95',284746,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (516,'saleInformation',6,'couple-days','new','195.95',101411,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (517,'saleInformation',15,'couple-days','used','1795.95',257346,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (518,'saleInformation',11,'instant','used','1295.95',255055,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (519,'saleInformation',13,'instant','broken','1095.95',184724,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (520,'saleInformation',19,'instant','new','1695.95',146608,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (521,'saleInformation',5,'instant','broken','595.95',175377,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (522,'saleInformation',15,'instant','used','1395.95',228121,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (523,'saleInformation',17,'instant','reworked','1295.95',125883,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (524,'saleInformation',20,'couple-weeks','broken','395.95',231289,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (525,'saleInformation',13,'couple-weeks','reworked','1595.95',142939,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (526,'saleInformation',7,'couple-weeks','used','1695.95',299493,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (527,'saleInformation',20,'couple-weeks','new','895.95',187929,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (528,'saleInformation',10,'instant','reworked','1895.95',143786,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (529,'saleInformation',5,'couple-days','used','1495.95',185285,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (530,'saleInformation',5,'couple-days','used','895.95',57292,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (531,'saleInformation',1,'couple-days','broken','995.95',290074,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (532,'saleInformation',11,'couple-weeks','broken','595.95',248551,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (533,'saleInformation',19,'instant','broken','1595.95',91850,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (534,'saleInformation',3,'instant','reworked','1495.95',161951,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (535,'saleInformation',12,'couple-days','used','195.95',197956,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (536,'saleInformation',1,'instant','broken','395.95',58799,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (537,'saleInformation',6,'instant','broken','995.95',86782,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (538,'saleInformation',10,'instant','broken','1095.95',288108,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (539,'saleInformation',4,'instant','reworked','595.95',49306,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (540,'saleInformation',1,'couple-days','reworked','1495.95',208954,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (541,'saleInformation',10,'instant','used','595.95',120692,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (542,'saleInformation',8,'instant','reworked','95.95',252053,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (543,'saleInformation',3,'couple-days','used','1095.95',107868,7); -INSERT INTO object_brick_store_SaleInformation_AP (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (544,'saleInformation',10,'couple-weeks','reworked','1795.95',181217,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (372,'saleInformation',19,'couple-weeks','new','1295.95',32518,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (373,'saleInformation',13,'instant','broken','1995.95',191282,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (377,'saleInformation',3,'couple-weeks','used','995.95',91346,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (378,'saleInformation',16,'couple-days','broken','95.95',285600,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (379,'saleInformation',18,'couple-days','reworked','395.95',172674,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (381,'saleInformation',2,'couple-days','new','1595.95',279853,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (382,'saleInformation',11,'couple-weeks','used','1495.95',170202,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (383,'saleInformation',14,'couple-weeks','used','795.95',133410,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (384,'saleInformation',7,'couple-days','broken','695.95',260884,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (385,'saleInformation',7,'couple-days','reworked','1495.95',250902,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (386,'saleInformation',2,'couple-days','broken','1695.95',255547,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (387,'saleInformation',7,'couple-days','reworked','195.95',141858,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (388,'saleInformation',10,'couple-days','reworked','1295.95',150305,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (400,'saleInformation',2,'couple-days','used','1895.95',228351,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (401,'saleInformation',2,'instant','used','395.95',127059,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (402,'saleInformation',4,'couple-days','broken','495.95',171165,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (403,'saleInformation',9,'couple-weeks','used','595.95',298430,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (404,'saleInformation',17,'couple-weeks','broken','395.95',146121,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (405,'saleInformation',9,'instant','used','195.95',204737,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (406,'saleInformation',12,'couple-days','reworked','895.95',247643,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (408,'saleInformation',17,'couple-days','new','595.95',240708,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (410,'saleInformation',19,'couple-weeks','used','1295.95',191200,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (411,'saleInformation',6,'couple-days','broken','295.95',238855,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (412,'saleInformation',19,'couple-weeks','new','195.95',258073,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (413,'saleInformation',1,'couple-weeks','used','695.95',192478,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (414,'saleInformation',7,'couple-weeks','used','295.95',113466,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (415,'saleInformation',20,'instant','used','795.95',51246,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (416,'saleInformation',12,'instant','broken','1895.95',191694,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (418,'saleInformation',2,'instant','used','1795.95',153194,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (419,'saleInformation',10,'instant','reworked','295.95',278996,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (420,'saleInformation',20,'instant','reworked','995.95',212138,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (422,'saleInformation',4,'instant','reworked','1895.95',94061,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (423,'saleInformation',7,'instant','broken','895.95',246714,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (424,'saleInformation',16,'instant','new','595.95',247970,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (425,'saleInformation',12,'instant','used','1695.95',120079,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (426,'saleInformation',17,'couple-weeks','new','1095.95',110042,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (427,'saleInformation',16,'instant','used','895.95',107189,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (428,'saleInformation',17,'couple-weeks','new','995.95',184577,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (429,'saleInformation',16,'instant','broken','695.95',279713,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (430,'saleInformation',1,'instant','reworked','1595.95',263748,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (431,'saleInformation',18,'couple-days','broken','95.95',271970,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (432,'saleInformation',7,'instant','reworked','95.95',200992,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (433,'saleInformation',8,'instant','new','1295.95',31609,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (434,'saleInformation',10,'couple-days','new','1495.95',251179,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (435,'saleInformation',16,'instant','reworked','295.95',299704,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (436,'saleInformation',1,'couple-weeks','reworked','1995.95',36355,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (437,'saleInformation',18,'instant','new','395.95',242192,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (438,'saleInformation',3,'couple-days','new','195.95',100322,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (439,'saleInformation',3,'couple-days','new','1495.95',31193,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (440,'saleInformation',15,'couple-weeks','used','995.95',299664,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (441,'saleInformation',2,'couple-days','used','1195.95',51305,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (442,'saleInformation',18,'instant','reworked','395.95',259638,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (443,'saleInformation',3,'couple-weeks','reworked','1995.95',76366,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (444,'saleInformation',11,'instant','reworked','495.95',250025,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (445,'saleInformation',16,'instant','used','295.95',122140,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (446,'saleInformation',17,'instant','broken','295.95',202340,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (447,'saleInformation',19,'instant','reworked','795.95',129008,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (448,'saleInformation',13,'couple-days','used','1795.95',82329,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (449,'saleInformation',2,'couple-days','broken','1495.95',56259,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (450,'saleInformation',3,'couple-days','broken','95.95',116846,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (451,'saleInformation',7,'couple-weeks','new','1895.95',32800,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (452,'saleInformation',12,'instant','reworked','795.95',138473,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (453,'saleInformation',13,'instant','new','1695.95',143152,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (454,'saleInformation',20,'couple-days','used','95.95',210791,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (455,'saleInformation',7,'instant','reworked','595.95',187900,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (456,'saleInformation',5,'couple-weeks','new','395.95',265308,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (457,'saleInformation',1,'instant','new','1795.95',108120,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (458,'saleInformation',2,'instant','new','1195.95',56923,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (459,'saleInformation',6,'couple-weeks','used','595.95',260627,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (460,'saleInformation',5,'instant','broken','1695.95',271634,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (461,'saleInformation',5,'couple-days','broken','695.95',268714,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (462,'saleInformation',2,'couple-weeks','reworked','195.95',118155,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (463,'saleInformation',14,'instant','reworked','1495.95',192749,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (464,'saleInformation',11,'instant','used','495.95',148987,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (465,'saleInformation',7,'instant','used','595.95',72441,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (466,'saleInformation',4,'couple-days','used','195.95',226857,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (467,'saleInformation',5,'couple-days','new','1695.95',227929,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (468,'saleInformation',4,'couple-weeks','used','1195.95',235694,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (469,'saleInformation',10,'instant','reworked','1795.95',171302,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (470,'saleInformation',2,'instant','broken','595.95',229384,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (471,'saleInformation',16,'couple-days','used','1295.95',174466,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (472,'saleInformation',9,'couple-weeks','broken','1695.95',77894,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (473,'saleInformation',9,'couple-weeks','new','395.95',260530,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (474,'saleInformation',10,'instant','reworked','995.95',36941,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (475,'saleInformation',5,'instant','used','195.95',153395,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (476,'saleInformation',10,'couple-weeks','new','295.95',228999,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (477,'saleInformation',1,'couple-days','broken','1495.95',115826,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (478,'saleInformation',1,'couple-weeks','used','95.95',125920,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (479,'saleInformation',10,'couple-weeks','new','295.95',298477,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (480,'saleInformation',14,'couple-weeks','new','795.95',142951,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (481,'saleInformation',7,'couple-weeks','reworked','1495.95',293471,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (482,'saleInformation',4,'couple-days','new','295.95',138742,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (484,'saleInformation',9,'couple-days','used','1195.95',98532,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (485,'saleInformation',2,'instant','broken','795.95',65000,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (486,'saleInformation',17,'couple-days','new','1895.95',270029,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (487,'saleInformation',13,'instant','broken','1895.95',173002,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (488,'saleInformation',15,'couple-days','new','1995.95',224233,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (489,'saleInformation',16,'couple-days','new','295.95',187323,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (490,'saleInformation',10,'couple-weeks','broken','1395.95',271737,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (492,'saleInformation',10,'couple-days','used','495.95',288395,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (493,'saleInformation',4,'couple-days','new','695.95',186677,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (494,'saleInformation',1,'instant','used','295.95',289758,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (495,'saleInformation',16,'instant','reworked','95.95',97482,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (496,'saleInformation',12,'instant','reworked','195.95',149635,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (497,'saleInformation',15,'couple-weeks','new','1395.95',195618,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (498,'saleInformation',13,'couple-days','new','495.95',234174,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (499,'saleInformation',10,'couple-days','broken','595.95',191816,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (500,'saleInformation',3,'couple-days','broken','1295.95',174529,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (501,'saleInformation',12,'instant','new','395.95',216189,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (502,'saleInformation',1,'couple-days','used','595.95',258407,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (503,'saleInformation',2,'couple-weeks','reworked','1995.95',265380,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (504,'saleInformation',19,'instant','used','1795.95',152615,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (505,'saleInformation',11,'couple-weeks','used','1895.95',125956,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (506,'saleInformation',1,'couple-weeks','new','395.95',216443,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (507,'saleInformation',11,'instant','new','995.95',41153,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (508,'saleInformation',19,'couple-days','reworked','295.95',181381,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (509,'saleInformation',11,'couple-days','used','395.95',287099,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (510,'saleInformation',20,'instant','used','1095.95',284711,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (511,'saleInformation',3,'couple-weeks','used','1895.95',71649,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (512,'saleInformation',9,'couple-weeks','broken','995.95',96690,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (513,'saleInformation',8,'couple-weeks','reworked','1995.95',34773,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (514,'saleInformation',20,'couple-weeks','broken','195.95',60641,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (515,'saleInformation',8,'couple-weeks','new','795.95',284746,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (516,'saleInformation',6,'couple-days','new','195.95',101411,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (517,'saleInformation',15,'couple-days','used','1795.95',257346,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (518,'saleInformation',11,'instant','used','1295.95',255055,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (519,'saleInformation',13,'instant','broken','1095.95',184724,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (520,'saleInformation',19,'instant','new','1695.95',146608,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (521,'saleInformation',5,'instant','broken','595.95',175377,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (522,'saleInformation',15,'instant','used','1395.95',228121,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (523,'saleInformation',17,'instant','reworked','1295.95',125883,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (524,'saleInformation',20,'couple-weeks','broken','395.95',231289,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (525,'saleInformation',13,'couple-weeks','reworked','1595.95',142939,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (526,'saleInformation',7,'couple-weeks','used','1695.95',299493,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (527,'saleInformation',20,'couple-weeks','new','895.95',187929,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (528,'saleInformation',10,'instant','reworked','1895.95',143786,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (529,'saleInformation',5,'couple-days','used','1495.95',185285,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (530,'saleInformation',5,'couple-days','used','895.95',57292,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (531,'saleInformation',1,'couple-days','broken','995.95',290074,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (532,'saleInformation',11,'couple-weeks','broken','595.95',248551,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (533,'saleInformation',19,'instant','broken','1595.95',91850,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (534,'saleInformation',3,'instant','reworked','1495.95',161951,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (535,'saleInformation',12,'couple-days','used','195.95',197956,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (536,'saleInformation',1,'instant','broken','395.95',58799,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (537,'saleInformation',6,'instant','broken','995.95',86782,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (538,'saleInformation',10,'instant','broken','1095.95',288108,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (539,'saleInformation',4,'instant','reworked','595.95',49306,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (540,'saleInformation',1,'couple-days','reworked','1495.95',208954,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (541,'saleInformation',10,'instant','used','595.95',120692,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (542,'saleInformation',8,'instant','reworked','95.95',252053,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (543,'saleInformation',3,'couple-days','used','1095.95',107868,7); +INSERT INTO object_brick_store_SaleInformation_AP (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (544,'saleInformation',10,'couple-weeks','reworked','1795.95',181217,7); diff --git a/dump/data-1-object_brick_store_SaleInformation_CAR.sql b/dump/data-1-object_brick_store_SaleInformation_CAR.sql index e73924e3..808172a9 100644 --- a/dump/data-1-object_brick_store_SaleInformation_CAR.sql +++ b/dump/data-1-object_brick_store_SaleInformation_CAR.sql @@ -1,174 +1,174 @@ SET NAMES utf8mb4; -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (12,'saleInformation',5,'instant','reworked','68795.95',218212,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (13,'saleInformation',3,'instant','reworked','28895.95',115764,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (14,'saleInformation',3,'couple-days','used','9695.95',255617,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (15,'saleInformation',1,'instant','broken','4195.95',244482,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (16,'saleInformation',5,'couple-days','used','25595.95',110292,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (19,'saleInformation',4,'instant','used','12595.95',139776,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (20,'saleInformation',5,'instant','broken','4995.95',80479,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (24,'saleInformation',4,'couple-days','broken','5595.95',45458,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (25,'saleInformation',5,'instant','broken','1795.95',234587,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (26,'saleInformation',3,'couple-days','broken','2795.95',223677,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (30,'saleInformation',5,'couple-weeks','reworked','64395.95',188922,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (31,'saleInformation',2,'instant','reworked','79395.95',196516,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (33,'saleInformation',5,'instant','broken','5795.95',257153,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (34,'saleInformation',5,'couple-weeks','used','17795.95',115467,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (38,'saleInformation',5,'couple-weeks','broken','3095.95',80355,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (43,'saleInformation',2,'couple-days','reworked','47695.95',180809,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (44,'saleInformation',2,'couple-weeks','broken','7395.95',186523,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (51,'saleInformation',2,'instant','used','24995.95',81656,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (53,'saleInformation',3,'couple-days','used','11895.95',80364,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (54,'saleInformation',4,'couple-weeks','used','11895.95',94139,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (57,'saleInformation',2,'couple-days','reworked','64695.95',285404,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (58,'saleInformation',5,'couple-weeks','broken','3395.95',186182,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (63,'saleInformation',2,'couple-weeks','broken','2195.95',240638,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (66,'saleInformation',4,'instant','used','13095.95',221181,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (67,'saleInformation',2,'instant','used','6495.95',222292,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (69,'saleInformation',1,'couple-days','used','18995.95',162675,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (70,'saleInformation',4,'couple-days','reworked','85495.95',264001,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (74,'saleInformation',4,'instant','reworked','15295.95',131187,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (75,'saleInformation',4,'couple-weeks','used','13795.95',236469,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (77,'saleInformation',1,'couple-days','broken','3395.95',72186,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (78,'saleInformation',4,'couple-days','used','19195.95',297887,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (82,'saleInformation',5,'instant','reworked','32995.95',267663,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (87,'saleInformation',4,'couple-weeks','broken','4795.95',270704,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (88,'saleInformation',5,'couple-days','broken','7195.95',228398,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (90,'saleInformation',3,'couple-weeks','broken','4495.95',88072,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (91,'saleInformation',1,'instant','broken','2095.95',132833,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (92,'saleInformation',1,'couple-weeks','broken','5995.95',218739,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (97,'saleInformation',1,'couple-weeks','used','8995.95',215508,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (98,'saleInformation',4,'instant','broken','5295.95',168075,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (102,'saleInformation',2,'couple-days','used','11695.95',246088,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (103,'saleInformation',1,'couple-days','reworked','42395.95',161462,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (104,'saleInformation',1,'couple-weeks','used','28995.95',42224,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (105,'saleInformation',1,'couple-days','reworked','32695.95',259347,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (110,'saleInformation',2,'couple-weeks','reworked','58895.95',272440,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (111,'saleInformation',2,'instant','used','12495.95',220066,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (112,'saleInformation',3,'instant','broken','5295.95',80752,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (114,'saleInformation',4,'couple-weeks','reworked','32095.95',237309,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (115,'saleInformation',2,'instant','broken','5395.95',114013,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (116,'saleInformation',2,'couple-days','reworked','42795.95',214630,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (118,'saleInformation',2,'couple-weeks','reworked','27795.95',84894,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (119,'saleInformation',1,'couple-days','reworked','20995.95',277469,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (120,'saleInformation',5,'couple-days','reworked','48595.95',255010,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (124,'saleInformation',3,'couple-days','used','13295.95',293242,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (125,'saleInformation',5,'couple-days','broken','4295.95',289203,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (126,'saleInformation',4,'instant','broken','2095.95',189973,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (131,'saleInformation',1,'couple-weeks','broken','7195.95',56423,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (133,'saleInformation',2,'couple-weeks','reworked','49695.95',282426,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (138,'saleInformation',1,'couple-days','used','26995.95',121313,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (139,'saleInformation',1,'couple-weeks','reworked','80395.95',112997,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (143,'saleInformation',4,'instant','used','27295.95',220964,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (144,'saleInformation',4,'couple-days','broken','3495.95',231695,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (149,'saleInformation',1,'couple-weeks','used','24495.95',180010,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (150,'saleInformation',5,'couple-days','used','17395.95',242352,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (152,'saleInformation',1,'instant','used','20795.95',163746,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (156,'saleInformation',1,'couple-days','reworked','53995.95',143400,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (157,'saleInformation',3,'couple-days','used','11795.95',131819,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (161,'saleInformation',4,'instant','reworked','64595.95',84422,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (162,'saleInformation',1,'couple-weeks','reworked','85595.95',256279,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (166,'saleInformation',4,'instant','broken','7495.95',266168,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (172,'saleInformation',2,'couple-days','reworked','23095.95',95532,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (174,'saleInformation',3,'couple-days','reworked','38595.95',36467,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (175,'saleInformation',5,'instant','reworked','55595.95',264586,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (180,'saleInformation',1,'couple-days','broken','7295.95',130719,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (184,'saleInformation',4,'couple-days','broken','2395.95',101172,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (188,'saleInformation',4,'couple-weeks','reworked','40595.95',97854,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (189,'saleInformation',1,'couple-weeks','reworked','69695.95',175731,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (191,'saleInformation',1,'instant','used','20795.95',55460,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (192,'saleInformation',2,'instant','reworked','70595.95',83118,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (194,'saleInformation',5,'couple-days','reworked','54295.95',143958,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (195,'saleInformation',5,'couple-days','broken','6195.95',54969,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (196,'saleInformation',2,'instant','broken','3195.95',116263,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (198,'saleInformation',2,'instant','used','19195.95',177659,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (200,'saleInformation',4,'couple-weeks','broken','5795.95',135175,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (202,'saleInformation',4,'instant','used','26995.95',281123,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (203,'saleInformation',2,'instant','used','29095.95',150651,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (205,'saleInformation',2,'couple-weeks','reworked','72695.95',226812,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (215,'saleInformation',3,'instant','reworked','12395.95',176814,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (216,'saleInformation',4,'couple-weeks','used','20095.95',296391,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (217,'saleInformation',5,'couple-days','broken','6895.95',41456,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (220,'saleInformation',2,'couple-days','broken','3395.95',121203,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (221,'saleInformation',1,'couple-weeks','reworked','24095.95',60771,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (222,'saleInformation',2,'couple-weeks','broken','1795.95',234341,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (223,'saleInformation',4,'couple-weeks','used','15395.95',253420,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (224,'saleInformation',5,'couple-days','broken','2695.95',149301,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (227,'saleInformation',3,'couple-weeks','reworked','70595.95',274559,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (228,'saleInformation',5,'couple-weeks','broken','2195.95',243323,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (229,'saleInformation',1,'instant','broken','1695.95',299255,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (231,'saleInformation',2,'couple-days','reworked','73995.95',141715,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (232,'saleInformation',4,'instant','reworked','47895.95',206296,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (235,'saleInformation',5,'couple-weeks','reworked','22195.95',268065,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (236,'saleInformation',2,'couple-days','broken','4895.95',274518,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (238,'saleInformation',4,'couple-weeks','used','27295.95',79242,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (244,'saleInformation',5,'couple-weeks','used','15495.95',177630,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (245,'saleInformation',2,'instant','used','27595.95',219890,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (247,'saleInformation',1,'couple-days','reworked','32695.95',142942,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (249,'saleInformation',1,'couple-weeks','reworked','31695.95',154368,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (250,'saleInformation',1,'instant','reworked','50495.95',80212,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (252,'saleInformation',4,'couple-weeks','used','19995.95',141158,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (253,'saleInformation',1,'couple-weeks','reworked','12895.95',228486,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (257,'saleInformation',3,'couple-days','used','24795.95',32950,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (259,'saleInformation',1,'couple-weeks','broken','6395.95',65702,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (262,'saleInformation',4,'couple-weeks','broken','2295.95',204578,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (263,'saleInformation',4,'instant','broken','6595.95',118652,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (265,'saleInformation',4,'instant','reworked','10695.95',105427,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (266,'saleInformation',3,'instant','reworked','66395.95',217374,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (269,'saleInformation',3,'couple-days','broken','4095.95',194557,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (271,'saleInformation',5,'couple-weeks','reworked','34295.95',291474,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (273,'saleInformation',3,'couple-weeks','reworked','83295.95',206412,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (274,'saleInformation',2,'instant','broken','6095.95',171738,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (276,'saleInformation',2,'couple-weeks','broken','2095.95',202791,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (277,'saleInformation',2,'couple-weeks','used','25995.95',196124,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (278,'saleInformation',3,'couple-weeks','reworked','10295.95',67724,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (279,'saleInformation',1,'couple-days','reworked','59495.95',96283,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (280,'saleInformation',1,'instant','reworked','43995.95',42770,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (282,'saleInformation',5,'couple-days','broken','7395.95',190374,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (283,'saleInformation',5,'couple-days','used','7495.95',112679,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (285,'saleInformation',3,'instant','broken','3695.95',191273,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (286,'saleInformation',3,'instant','used','17595.95',180894,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (287,'saleInformation',5,'instant','reworked','25895.95',140302,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (288,'saleInformation',5,'couple-days','used','9395.95',234197,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (292,'saleInformation',1,'couple-days','reworked','36295.95',272636,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (293,'saleInformation',1,'couple-days','reworked','22795.95',234728,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (294,'saleInformation',4,'couple-days','broken','3895.95',124193,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (295,'saleInformation',1,'couple-days','used','18495.95',182209,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (297,'saleInformation',5,'couple-weeks','reworked','34895.95',111573,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (298,'saleInformation',3,'couple-weeks','used','19295.95',256267,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (299,'saleInformation',1,'couple-weeks','used','24495.95',92892,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (303,'saleInformation',5,'couple-days','reworked','24895.95',191434,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (304,'saleInformation',4,'couple-days','reworked','57295.95',150637,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (305,'saleInformation',3,'couple-days','broken','7295.95',75627,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (306,'saleInformation',4,'instant','reworked','44895.95',289160,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (308,'saleInformation',3,'couple-days','reworked','47195.95',223004,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (309,'saleInformation',3,'couple-weeks','used','16995.95',68245,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (311,'saleInformation',4,'couple-weeks','broken','5895.95',104850,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (312,'saleInformation',1,'couple-days','reworked','50595.95',168554,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (316,'saleInformation',1,'couple-weeks','used','24295.95',222902,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (318,'saleInformation',3,'couple-weeks','broken','1695.95',205304,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (321,'saleInformation',4,'couple-weeks','broken','3995.95',73461,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (323,'saleInformation',1,'couple-weeks','reworked','70295.95',50666,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (325,'saleInformation',3,'couple-weeks','reworked','84995.95',234927,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (326,'saleInformation',4,'couple-weeks','used','10695.95',116281,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (328,'saleInformation',2,'instant','used','28195.95',32842,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (329,'saleInformation',3,'couple-weeks','reworked','26295.95',161955,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (332,'saleInformation',3,'couple-weeks','reworked','85295.95',262759,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (334,'saleInformation',4,'couple-weeks','reworked','37795.95',276362,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (337,'saleInformation',4,'couple-weeks','broken','6395.95',58941,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (338,'saleInformation',1,'couple-days','broken','7295.95',208656,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (339,'saleInformation',2,'couple-days','used','16395.95',263611,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (341,'saleInformation',4,'couple-days','used','14495.95',294645,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (342,'saleInformation',2,'couple-days','reworked','79795.95',247447,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (344,'saleInformation',5,'instant','broken','1695.95',85720,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (346,'saleInformation',3,'couple-days','reworked','17495.95',92564,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (347,'saleInformation',2,'instant','used','29195.95',276809,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (348,'saleInformation',5,'couple-weeks','used','25195.95',259692,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (350,'saleInformation',1,'couple-days','used','24595.95',106371,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (351,'saleInformation',1,'couple-days','used','27695.95',260727,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (352,'saleInformation',4,'couple-weeks','used','10495.95',60686,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (353,'saleInformation',4,'couple-weeks','reworked','27495.95',98681,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (358,'saleInformation',1,'couple-weeks','broken','7195.95',206718,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (359,'saleInformation',3,'couple-weeks','broken','6095.95',32684,7); -INSERT INTO object_brick_store_SaleInformation_CAR (`o_id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (360,'saleInformation',2,'couple-days','broken','4495.95',74112,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (12,'saleInformation',5,'instant','reworked','68795.95',218212,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (13,'saleInformation',3,'instant','reworked','28895.95',115764,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (14,'saleInformation',3,'couple-days','used','9695.95',255617,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (15,'saleInformation',1,'instant','broken','4195.95',244482,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (16,'saleInformation',5,'couple-days','used','25595.95',110292,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (19,'saleInformation',4,'instant','used','12595.95',139776,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (20,'saleInformation',5,'instant','broken','4995.95',80479,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (24,'saleInformation',4,'couple-days','broken','5595.95',45458,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (25,'saleInformation',5,'instant','broken','1795.95',234587,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (26,'saleInformation',3,'couple-days','broken','2795.95',223677,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (30,'saleInformation',5,'couple-weeks','reworked','64395.95',188922,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (31,'saleInformation',2,'instant','reworked','79395.95',196516,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (33,'saleInformation',5,'instant','broken','5795.95',257153,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (34,'saleInformation',5,'couple-weeks','used','17795.95',115467,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (38,'saleInformation',5,'couple-weeks','broken','3095.95',80355,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (43,'saleInformation',2,'couple-days','reworked','47695.95',180809,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (44,'saleInformation',2,'couple-weeks','broken','7395.95',186523,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (51,'saleInformation',2,'instant','used','24995.95',81656,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (53,'saleInformation',3,'couple-days','used','11895.95',80364,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (54,'saleInformation',4,'couple-weeks','used','11895.95',94139,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (57,'saleInformation',2,'couple-days','reworked','64695.95',285404,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (58,'saleInformation',5,'couple-weeks','broken','3395.95',186182,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (63,'saleInformation',2,'couple-weeks','broken','2195.95',240638,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (66,'saleInformation',4,'instant','used','13095.95',221181,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (67,'saleInformation',2,'instant','used','6495.95',222292,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (69,'saleInformation',1,'couple-days','used','18995.95',162675,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (70,'saleInformation',4,'couple-days','reworked','85495.95',264001,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (74,'saleInformation',4,'instant','reworked','15295.95',131187,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (75,'saleInformation',4,'couple-weeks','used','13795.95',236469,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (77,'saleInformation',1,'couple-days','broken','3395.95',72186,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (78,'saleInformation',4,'couple-days','used','19195.95',297887,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (82,'saleInformation',5,'instant','reworked','32995.95',267663,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (87,'saleInformation',4,'couple-weeks','broken','4795.95',270704,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (88,'saleInformation',5,'couple-days','broken','7195.95',228398,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (90,'saleInformation',3,'couple-weeks','broken','4495.95',88072,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (91,'saleInformation',1,'instant','broken','2095.95',132833,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (92,'saleInformation',1,'couple-weeks','broken','5995.95',218739,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (97,'saleInformation',1,'couple-weeks','used','8995.95',215508,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (98,'saleInformation',4,'instant','broken','5295.95',168075,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (102,'saleInformation',2,'couple-days','used','11695.95',246088,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (103,'saleInformation',1,'couple-days','reworked','42395.95',161462,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (104,'saleInformation',1,'couple-weeks','used','28995.95',42224,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (105,'saleInformation',1,'couple-days','reworked','32695.95',259347,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (110,'saleInformation',2,'couple-weeks','reworked','58895.95',272440,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (111,'saleInformation',2,'instant','used','12495.95',220066,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (112,'saleInformation',3,'instant','broken','5295.95',80752,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (114,'saleInformation',4,'couple-weeks','reworked','32095.95',237309,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (115,'saleInformation',2,'instant','broken','5395.95',114013,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (116,'saleInformation',2,'couple-days','reworked','42795.95',214630,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (118,'saleInformation',2,'couple-weeks','reworked','27795.95',84894,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (119,'saleInformation',1,'couple-days','reworked','20995.95',277469,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (120,'saleInformation',5,'couple-days','reworked','48595.95',255010,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (124,'saleInformation',3,'couple-days','used','13295.95',293242,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (125,'saleInformation',5,'couple-days','broken','4295.95',289203,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (126,'saleInformation',4,'instant','broken','2095.95',189973,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (131,'saleInformation',1,'couple-weeks','broken','7195.95',56423,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (133,'saleInformation',2,'couple-weeks','reworked','49695.95',282426,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (138,'saleInformation',1,'couple-days','used','26995.95',121313,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (139,'saleInformation',1,'couple-weeks','reworked','80395.95',112997,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (143,'saleInformation',4,'instant','used','27295.95',220964,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (144,'saleInformation',4,'couple-days','broken','3495.95',231695,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (149,'saleInformation',1,'couple-weeks','used','24495.95',180010,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (150,'saleInformation',5,'couple-days','used','17395.95',242352,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (152,'saleInformation',1,'instant','used','20795.95',163746,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (156,'saleInformation',1,'couple-days','reworked','53995.95',143400,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (157,'saleInformation',3,'couple-days','used','11795.95',131819,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (161,'saleInformation',4,'instant','reworked','64595.95',84422,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (162,'saleInformation',1,'couple-weeks','reworked','85595.95',256279,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (166,'saleInformation',4,'instant','broken','7495.95',266168,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (172,'saleInformation',2,'couple-days','reworked','23095.95',95532,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (174,'saleInformation',3,'couple-days','reworked','38595.95',36467,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (175,'saleInformation',5,'instant','reworked','55595.95',264586,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (180,'saleInformation',1,'couple-days','broken','7295.95',130719,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (184,'saleInformation',4,'couple-days','broken','2395.95',101172,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (188,'saleInformation',4,'couple-weeks','reworked','40595.95',97854,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (189,'saleInformation',1,'couple-weeks','reworked','69695.95',175731,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (191,'saleInformation',1,'instant','used','20795.95',55460,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (192,'saleInformation',2,'instant','reworked','70595.95',83118,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (194,'saleInformation',5,'couple-days','reworked','54295.95',143958,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (195,'saleInformation',5,'couple-days','broken','6195.95',54969,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (196,'saleInformation',2,'instant','broken','3195.95',116263,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (198,'saleInformation',2,'instant','used','19195.95',177659,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (200,'saleInformation',4,'couple-weeks','broken','5795.95',135175,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (202,'saleInformation',4,'instant','used','26995.95',281123,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (203,'saleInformation',2,'instant','used','29095.95',150651,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (205,'saleInformation',2,'couple-weeks','reworked','72695.95',226812,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (215,'saleInformation',3,'instant','reworked','12395.95',176814,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (216,'saleInformation',4,'couple-weeks','used','20095.95',296391,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (217,'saleInformation',5,'couple-days','broken','6895.95',41456,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (220,'saleInformation',2,'couple-days','broken','3395.95',121203,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (221,'saleInformation',1,'couple-weeks','reworked','24095.95',60771,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (222,'saleInformation',2,'couple-weeks','broken','1795.95',234341,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (223,'saleInformation',4,'couple-weeks','used','15395.95',253420,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (224,'saleInformation',5,'couple-days','broken','2695.95',149301,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (227,'saleInformation',3,'couple-weeks','reworked','70595.95',274559,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (228,'saleInformation',5,'couple-weeks','broken','2195.95',243323,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (229,'saleInformation',1,'instant','broken','1695.95',299255,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (231,'saleInformation',2,'couple-days','reworked','73995.95',141715,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (232,'saleInformation',4,'instant','reworked','47895.95',206296,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (235,'saleInformation',5,'couple-weeks','reworked','22195.95',268065,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (236,'saleInformation',2,'couple-days','broken','4895.95',274518,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (238,'saleInformation',4,'couple-weeks','used','27295.95',79242,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (244,'saleInformation',5,'couple-weeks','used','15495.95',177630,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (245,'saleInformation',2,'instant','used','27595.95',219890,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (247,'saleInformation',1,'couple-days','reworked','32695.95',142942,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (249,'saleInformation',1,'couple-weeks','reworked','31695.95',154368,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (250,'saleInformation',1,'instant','reworked','50495.95',80212,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (252,'saleInformation',4,'couple-weeks','used','19995.95',141158,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (253,'saleInformation',1,'couple-weeks','reworked','12895.95',228486,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (257,'saleInformation',3,'couple-days','used','24795.95',32950,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (259,'saleInformation',1,'couple-weeks','broken','6395.95',65702,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (262,'saleInformation',4,'couple-weeks','broken','2295.95',204578,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (263,'saleInformation',4,'instant','broken','6595.95',118652,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (265,'saleInformation',4,'instant','reworked','10695.95',105427,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (266,'saleInformation',3,'instant','reworked','66395.95',217374,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (269,'saleInformation',3,'couple-days','broken','4095.95',194557,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (271,'saleInformation',5,'couple-weeks','reworked','34295.95',291474,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (273,'saleInformation',3,'couple-weeks','reworked','83295.95',206412,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (274,'saleInformation',2,'instant','broken','6095.95',171738,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (276,'saleInformation',2,'couple-weeks','broken','2095.95',202791,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (277,'saleInformation',2,'couple-weeks','used','25995.95',196124,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (278,'saleInformation',3,'couple-weeks','reworked','10295.95',67724,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (279,'saleInformation',1,'couple-days','reworked','59495.95',96283,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (280,'saleInformation',1,'instant','reworked','43995.95',42770,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (282,'saleInformation',5,'couple-days','broken','7395.95',190374,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (283,'saleInformation',5,'couple-days','used','7495.95',112679,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (285,'saleInformation',3,'instant','broken','3695.95',191273,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (286,'saleInformation',3,'instant','used','17595.95',180894,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (287,'saleInformation',5,'instant','reworked','25895.95',140302,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (288,'saleInformation',5,'couple-days','used','9395.95',234197,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (292,'saleInformation',1,'couple-days','reworked','36295.95',272636,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (293,'saleInformation',1,'couple-days','reworked','22795.95',234728,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (294,'saleInformation',4,'couple-days','broken','3895.95',124193,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (295,'saleInformation',1,'couple-days','used','18495.95',182209,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (297,'saleInformation',5,'couple-weeks','reworked','34895.95',111573,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (298,'saleInformation',3,'couple-weeks','used','19295.95',256267,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (299,'saleInformation',1,'couple-weeks','used','24495.95',92892,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (303,'saleInformation',5,'couple-days','reworked','24895.95',191434,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (304,'saleInformation',4,'couple-days','reworked','57295.95',150637,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (305,'saleInformation',3,'couple-days','broken','7295.95',75627,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (306,'saleInformation',4,'instant','reworked','44895.95',289160,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (308,'saleInformation',3,'couple-days','reworked','47195.95',223004,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (309,'saleInformation',3,'couple-weeks','used','16995.95',68245,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (311,'saleInformation',4,'couple-weeks','broken','5895.95',104850,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (312,'saleInformation',1,'couple-days','reworked','50595.95',168554,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (316,'saleInformation',1,'couple-weeks','used','24295.95',222902,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (318,'saleInformation',3,'couple-weeks','broken','1695.95',205304,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (321,'saleInformation',4,'couple-weeks','broken','3995.95',73461,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (323,'saleInformation',1,'couple-weeks','reworked','70295.95',50666,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (325,'saleInformation',3,'couple-weeks','reworked','84995.95',234927,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (326,'saleInformation',4,'couple-weeks','used','10695.95',116281,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (328,'saleInformation',2,'instant','used','28195.95',32842,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (329,'saleInformation',3,'couple-weeks','reworked','26295.95',161955,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (332,'saleInformation',3,'couple-weeks','reworked','85295.95',262759,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (334,'saleInformation',4,'couple-weeks','reworked','37795.95',276362,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (337,'saleInformation',4,'couple-weeks','broken','6395.95',58941,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (338,'saleInformation',1,'couple-days','broken','7295.95',208656,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (339,'saleInformation',2,'couple-days','used','16395.95',263611,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (341,'saleInformation',4,'couple-days','used','14495.95',294645,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (342,'saleInformation',2,'couple-days','reworked','79795.95',247447,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (344,'saleInformation',5,'instant','broken','1695.95',85720,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (346,'saleInformation',3,'couple-days','reworked','17495.95',92564,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (347,'saleInformation',2,'instant','used','29195.95',276809,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (348,'saleInformation',5,'couple-weeks','used','25195.95',259692,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (350,'saleInformation',1,'couple-days','used','24595.95',106371,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (351,'saleInformation',1,'couple-days','used','27695.95',260727,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (352,'saleInformation',4,'couple-weeks','used','10495.95',60686,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (353,'saleInformation',4,'couple-weeks','reworked','27495.95',98681,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (358,'saleInformation',1,'couple-weeks','broken','7195.95',206718,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (359,'saleInformation',3,'couple-weeks','broken','6095.95',32684,7); +INSERT INTO object_brick_store_SaleInformation_CAR (`id`,`fieldname`,`availabilityPieces`,`availabilityType`,`condition`,`priceInEUR`,`milage__value`,`milage__unit`) VALUES (360,'saleInformation',2,'couple-days','broken','4495.95',74112,7); diff --git a/dump/data-1-object_brick_store_Transmission_CAR.sql b/dump/data-1-object_brick_store_Transmission_CAR.sql index 8b63bb6c..5c82724e 100644 --- a/dump/data-1-object_brick_store_Transmission_CAR.sql +++ b/dump/data-1-object_brick_store_Transmission_CAR.sql @@ -1,275 +1,275 @@ SET NAMES utf8mb4; -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (9,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (10,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (11,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (12,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (13,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (14,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (15,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (16,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (17,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (19,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (20,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (21,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (22,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (23,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (24,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (25,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (26,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (29,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (30,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (31,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (37,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (38,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (41,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (43,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (44,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (47,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (48,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (51,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (52,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (53,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (54,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (55,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (57,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (58,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (61,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (62,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (63,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (64,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (66,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (67,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (68,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (69,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (70,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (73,'attributes','front-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (74,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (75,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (76,'attributes','front-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (77,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (78,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (81,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (82,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (85,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (86,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (87,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (88,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (89,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (90,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (91,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (92,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (95,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (97,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (98,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (101,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (102,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (103,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (104,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (105,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (108,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (109,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (110,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (111,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (112,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (113,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (114,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (115,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (116,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (117,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (118,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (119,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (120,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (123,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (124,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (125,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (126,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (129,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (130,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (131,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (132,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (133,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (136,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (138,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (139,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (140,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (141,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (142,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (143,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (144,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (147,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (148,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (149,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (150,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (151,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (152,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (155,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (156,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (157,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (160,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (161,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (162,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (165,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (166,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (169,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (170,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (172,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (173,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (174,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (175,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (178,'attributes','front-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (180,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (183,'attributes','front-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (184,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (187,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (188,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (189,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (190,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (191,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (192,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (193,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (194,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (195,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (196,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (197,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (198,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (199,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (200,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (201,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (202,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (203,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (204,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (205,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (209,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (210,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (211,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (212,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (215,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (216,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (217,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (218,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (219,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (220,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (221,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (222,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (223,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (224,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (225,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (226,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (227,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (228,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (229,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (230,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (231,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (232,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (233,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (235,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (236,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (238,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (242,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (243,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (244,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (245,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (246,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (247,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (248,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (249,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (250,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (251,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (252,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (253,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (261,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (262,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (263,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (264,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (265,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (266,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (267,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (268,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (269,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (270,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (271,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (272,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (273,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (274,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (275,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (276,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (277,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (278,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (279,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (280,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (281,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (282,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (283,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (284,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (285,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (286,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (287,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (288,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (289,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (290,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (291,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (292,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (293,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (294,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (295,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (296,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (297,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (298,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (299,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (302,'attributes','front-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (303,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (304,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (305,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (306,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (307,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (308,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (309,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (310,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (311,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (312,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (313,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (314,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (316,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (317,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (318,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (319,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (320,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (321,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (322,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (323,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (324,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (325,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (326,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (327,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (328,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (329,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (330,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (331,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (332,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (333,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (334,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (335,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (336,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (337,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (338,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (339,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (340,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (341,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (342,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (343,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (344,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (345,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (346,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (347,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (348,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (349,'attributes','rear-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (350,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (351,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (352,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (353,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (357,'attributes','front-wheel-drive'); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (358,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (359,'attributes',NULL); -INSERT INTO object_brick_store_Transmission_CAR (`o_id`,`fieldname`,`wheelDrive`) VALUES (360,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (9,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (10,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (11,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (12,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (13,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (14,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (15,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (16,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (17,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (19,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (20,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (21,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (22,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (23,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (24,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (25,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (26,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (29,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (30,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (31,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (37,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (38,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (41,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (43,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (44,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (47,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (48,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (51,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (52,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (53,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (54,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (55,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (57,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (58,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (61,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (62,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (63,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (64,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (66,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (67,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (68,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (69,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (70,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (73,'attributes','front-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (74,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (75,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (76,'attributes','front-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (77,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (78,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (81,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (82,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (85,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (86,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (87,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (88,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (89,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (90,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (91,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (92,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (95,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (97,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (98,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (101,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (102,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (103,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (104,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (105,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (108,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (109,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (110,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (111,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (112,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (113,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (114,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (115,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (116,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (117,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (118,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (119,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (120,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (123,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (124,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (125,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (126,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (129,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (130,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (131,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (132,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (133,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (136,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (138,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (139,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (140,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (141,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (142,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (143,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (144,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (147,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (148,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (149,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (150,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (151,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (152,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (155,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (156,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (157,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (160,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (161,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (162,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (165,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (166,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (169,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (170,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (172,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (173,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (174,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (175,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (178,'attributes','front-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (180,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (183,'attributes','front-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (184,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (187,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (188,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (189,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (190,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (191,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (192,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (193,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (194,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (195,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (196,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (197,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (198,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (199,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (200,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (201,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (202,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (203,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (204,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (205,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (209,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (210,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (211,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (212,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (215,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (216,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (217,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (218,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (219,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (220,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (221,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (222,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (223,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (224,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (225,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (226,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (227,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (228,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (229,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (230,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (231,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (232,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (233,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (235,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (236,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (238,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (242,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (243,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (244,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (245,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (246,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (247,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (248,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (249,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (250,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (251,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (252,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (253,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (261,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (262,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (263,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (264,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (265,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (266,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (267,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (268,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (269,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (270,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (271,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (272,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (273,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (274,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (275,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (276,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (277,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (278,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (279,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (280,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (281,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (282,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (283,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (284,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (285,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (286,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (287,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (288,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (289,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (290,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (291,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (292,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (293,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (294,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (295,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (296,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (297,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (298,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (299,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (302,'attributes','front-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (303,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (304,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (305,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (306,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (307,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (308,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (309,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (310,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (311,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (312,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (313,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (314,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (316,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (317,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (318,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (319,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (320,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (321,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (322,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (323,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (324,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (325,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (326,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (327,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (328,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (329,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (330,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (331,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (332,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (333,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (334,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (335,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (336,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (337,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (338,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (339,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (340,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (341,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (342,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (343,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (344,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (345,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (346,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (347,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (348,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (349,'attributes','rear-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (350,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (351,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (352,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (353,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (357,'attributes','front-wheel-drive'); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (358,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (359,'attributes',NULL); +INSERT INTO object_brick_store_Transmission_CAR (`id`,`fieldname`,`wheelDrive`) VALUES (360,'attributes',NULL); diff --git a/dump/data-1-object_classificationstore_data_AP.sql b/dump/data-1-object_classificationstore_data_AP.sql index a87c3923..bf99d759 100644 --- a/dump/data-1-object_classificationstore_data_AP.sql +++ b/dump/data-1-object_classificationstore_data_AP.sql @@ -1,795 +1,795 @@ SET NAMES utf8mb4; -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (372,1,1,1,'373','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (372,1,1,2,'196','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (372,1,1,3,'327','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (372,1,2,4,'3.34','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (372,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (373,1,1,1,'270','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (373,1,1,2,'236','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (373,1,1,3,'481','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (373,1,2,4,'1.45','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (373,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (377,1,1,1,'219','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (377,1,1,2,'364','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (377,1,1,3,'280','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (377,1,2,4,'25.28','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (377,NULL,3,5,'17',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (377,NULL,3,6,'alloy',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (378,1,1,1,'279','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (378,1,1,2,'172','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (378,1,1,3,'374','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (378,1,2,4,'6.63','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (378,NULL,3,5,'16',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (378,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (379,1,1,1,'403','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (379,1,1,2,'484','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (379,1,1,3,'487','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (379,1,2,4,'40.19','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (379,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (381,1,1,1,'361','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (381,1,1,2,'50','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (381,1,1,3,'466','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (381,1,2,4,'19.1','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (381,NULL,5,8,'ffffff','ff','technicalAttributes','default','rgbaColor'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (381,NULL,5,9,'Synthetic Resins',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (382,1,1,1,'421','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (382,1,1,2,'74','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (382,1,1,3,'168','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (382,1,2,4,'37.24','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (382,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (383,1,1,1,'334','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (383,1,1,2,'396','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (383,1,1,3,'171','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (383,1,2,4,'17.46','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (383,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (384,1,1,1,'276','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (384,1,1,2,'283','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (384,1,1,3,'331','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (384,1,2,4,'4.34','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (384,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (385,1,1,1,'343','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (385,1,1,2,'261','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (385,1,1,3,'355','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (385,1,2,4,'44.48','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (385,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (386,1,1,1,'265','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (386,1,1,2,'427','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (386,1,1,3,'467','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (386,1,2,4,'39.93','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (386,NULL,3,5,'18',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (386,NULL,3,6,'alloy',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (387,1,1,1,'53','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (387,1,1,2,'453','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (387,1,1,3,'202','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (387,1,2,4,'44.46','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (387,NULL,5,8,'32cd32','ff','technicalAttributes','default','rgbaColor'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (387,NULL,5,9,'Faux Leather',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (388,1,1,1,'471','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (388,1,1,2,'400','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (388,1,1,3,'334','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (388,1,2,4,'46.23','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (388,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (400,1,1,1,'106','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (400,1,1,2,'426','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (400,1,1,3,'231','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (400,1,2,4,'39.19','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (400,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (401,1,1,1,'451','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (401,1,1,2,'499','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (401,1,1,3,'136','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (401,1,2,4,'42.6','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (401,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (402,1,1,1,'312','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (402,1,1,2,'406','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (402,1,1,3,'476','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (402,1,2,4,'34.84','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (402,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (403,1,1,1,'93','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (403,1,1,2,'385','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (403,1,1,3,'256','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (403,1,2,4,'41.1','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (403,NULL,3,5,'13',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (403,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (404,1,1,1,'99','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (404,1,1,2,'314','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (404,1,1,3,'143','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (404,1,2,4,'47.36','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (404,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (405,1,1,1,'298','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (405,1,1,2,'392','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (405,1,1,3,'177','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (405,1,2,4,'16.4','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (405,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (406,1,1,1,'499','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (406,1,1,2,'87','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (406,1,1,3,'149','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (406,1,2,4,'41.86','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (408,1,1,1,'76','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (408,1,1,2,'382','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (408,1,1,3,'459','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (408,1,2,4,'1.8','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (410,1,1,1,'112','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (410,1,1,2,'454','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (410,1,1,3,'414','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (410,1,2,4,'0.78','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (410,NULL,3,5,'17',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (410,NULL,3,6,'alloy',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (411,1,1,1,'261','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (411,1,1,2,'328','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (411,1,1,3,'432','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (411,1,2,4,'19.75','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (411,NULL,5,8,'008000','ff','technicalAttributes','default','rgbaColor'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (411,NULL,5,9,'Faux Leather',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (412,1,1,1,'370','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (412,1,1,2,'396','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (412,1,1,3,'57','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (412,1,2,4,'29.58','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (413,1,1,1,'273','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (413,1,1,2,'177','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (413,1,1,3,'374','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (413,1,2,4,'46.66','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (413,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (414,1,1,1,'451','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (414,1,1,2,'78','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (414,1,1,3,'105','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (414,1,2,4,'39.55','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (414,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (415,1,1,1,'91','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (415,1,1,2,'441','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (415,1,1,3,'123','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (415,1,2,4,'10.22','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (415,NULL,3,5,'19',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (415,NULL,3,6,'steel',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (416,1,1,1,'72','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (416,1,1,2,'88','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (416,1,1,3,'472','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (416,1,2,4,'18.78','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (416,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (418,1,1,1,'149','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (418,1,1,2,'248','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (418,1,1,3,'207','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (418,1,2,4,'37.86','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (418,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (419,1,1,1,'323','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (419,1,1,2,'307','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (419,1,1,3,'78','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (419,1,2,4,'10.42','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (419,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (420,1,1,1,'321','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (420,1,1,2,'186','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (420,1,1,3,'307','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (420,1,2,4,'40.23','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (420,NULL,5,8,'008000','ff','technicalAttributes','default','rgbaColor'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (420,NULL,5,9,'Faux Leather',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (422,1,1,1,'131','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (422,1,1,2,'251','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (422,1,1,3,'177','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (422,1,2,4,'5.2','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (422,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (423,1,1,1,'128','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (423,1,1,2,'256','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (423,1,1,3,'184','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (423,1,2,4,'40.78','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (423,NULL,3,5,'14',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (423,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (424,1,1,1,'232','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (424,1,1,2,'372','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (424,1,1,3,'115','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (424,1,2,4,'45.58','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (424,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (425,1,1,1,'247','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (425,1,1,2,'95','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (425,1,1,3,'144','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (425,1,2,4,'28.3','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (425,NULL,3,5,'16',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (425,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (426,1,1,1,'355','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (426,1,1,2,'490','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (426,1,1,3,'464','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (426,1,2,4,'8.63','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (426,NULL,3,5,'15',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (426,NULL,3,6,'alloy',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (427,1,1,1,'418','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (427,1,1,2,'151','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (427,1,1,3,'328','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (427,1,2,4,'8.75','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (427,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (428,1,1,1,'226','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (428,1,1,2,'340','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (428,1,1,3,'384','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (428,1,2,4,'9.46','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (428,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (429,1,1,1,'185','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (429,1,1,2,'140','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (429,1,1,3,'441','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (429,1,2,4,'31.37','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (429,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (430,1,1,1,'57','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (430,1,1,2,'463','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (430,1,1,3,'277','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (430,1,2,4,'0.89','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (430,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (431,1,1,1,'165','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (431,1,1,2,'115','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (431,1,1,3,'489','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (431,1,2,4,'47.27','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (431,NULL,3,5,'14',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (431,NULL,3,6,'alloy',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (432,1,1,1,'70','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (432,1,1,2,'173','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (432,1,1,3,'360','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (432,1,2,4,'41.65','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (432,NULL,5,8,'32cd32','ff','technicalAttributes','default','rgbaColor'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (432,NULL,5,9,'Plastic',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (433,1,1,1,'96','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (433,1,1,2,'382','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (433,1,1,3,'460','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (433,1,2,4,'9.94','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (433,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (434,1,1,1,'249','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (434,1,1,2,'394','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (434,1,1,3,'227','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (434,1,2,4,'10.15','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (434,NULL,3,5,'16',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (434,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (435,1,1,1,'428','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (435,1,1,2,'287','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (435,1,1,3,'370','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (435,1,2,4,'1.59','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (435,NULL,3,5,'18',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (435,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (436,1,1,1,'475','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (436,1,1,2,'453','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (436,1,1,3,'199','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (436,1,2,4,'28.88','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (436,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (437,1,1,1,'435','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (437,1,1,2,'278','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (437,1,1,3,'403','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (437,1,2,4,'41.94','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (437,NULL,3,5,'14',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (437,NULL,3,6,'alloy',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (438,1,1,1,'423','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (438,1,1,2,'349','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (438,1,1,3,'282','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (438,1,2,4,'7.03','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (438,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (439,1,1,1,'406','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (439,1,1,2,'211','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (439,1,1,3,'342','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (439,1,2,4,'13.27','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (439,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (440,1,1,1,'175','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (440,1,1,2,'479','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (440,1,1,3,'412','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (440,1,2,4,'36.55','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (441,1,1,1,'74','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (441,1,1,2,'184','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (441,1,1,3,'183','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (441,1,2,4,'10.83','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (441,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (442,1,1,1,'101','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (442,1,1,2,'439','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (442,1,1,3,'385','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (442,1,2,4,'13.48','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (442,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (443,1,1,1,'333','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (443,1,1,2,'470','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (443,1,1,3,'93','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (443,1,2,4,'34.76','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (444,1,1,1,'66','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (444,1,1,2,'256','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (444,1,1,3,'485','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (444,1,2,4,'28.68','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (444,NULL,3,5,'19',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (444,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (445,1,1,1,'477','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (445,1,1,2,'66','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (445,1,1,3,'406','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (445,1,2,4,'3.64','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (445,NULL,3,5,'17',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (445,NULL,3,6,'alloy',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (446,1,1,1,'418','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (446,1,1,2,'138','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (446,1,1,3,'284','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (446,1,2,4,'43.56','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (446,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (447,1,1,1,'323','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (447,1,1,2,'448','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (447,1,1,3,'195','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (447,1,2,4,'24.25','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (447,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (448,1,1,1,'254','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (448,1,1,2,'286','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (448,1,1,3,'125','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (448,1,2,4,'7.17','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (448,NULL,3,5,'17',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (448,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (449,1,1,1,'417','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (449,1,1,2,'70','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (449,1,1,3,'484','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (449,1,2,4,'7.01','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (449,NULL,3,5,'13',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (449,NULL,3,6,'steel',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (450,1,1,1,'183','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (450,1,1,2,'154','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (450,1,1,3,'462','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (450,1,2,4,'22.21','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (450,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (451,1,1,1,'216','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (451,1,1,2,'480','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (451,1,1,3,'292','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (451,1,2,4,'38.52','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (451,NULL,5,8,'32cd32','ff','technicalAttributes','default','rgbaColor'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (451,NULL,5,9,'Leather',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (452,1,1,1,'366','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (452,1,1,2,'145','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (452,1,1,3,'89','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (452,1,2,4,'18.52','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (453,1,1,1,'202','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (453,1,1,2,'458','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (453,1,1,3,'292','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (453,1,2,4,'29.79','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (453,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (454,1,1,1,'141','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (454,1,1,2,'117','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (454,1,1,3,'161','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (454,1,2,4,'12.29','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (454,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (455,1,1,1,'461','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (455,1,1,2,'299','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (455,1,1,3,'231','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (455,1,2,4,'28.74','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (455,NULL,3,5,'16',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (455,NULL,3,6,'alloy',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (456,1,1,1,'419','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (456,1,1,2,'60','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (456,1,1,3,'50','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (456,1,2,4,'16.28','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (456,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (457,1,1,1,'336','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (457,1,1,2,'458','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (457,1,1,3,'337','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (457,1,2,4,'7.51','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (457,NULL,3,5,'18',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (457,NULL,3,6,'steel',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (458,1,1,1,'58','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (458,1,1,2,'363','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (458,1,1,3,'190','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (458,1,2,4,'37.88','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (458,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (459,1,1,1,'253','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (459,1,1,2,'357','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (459,1,1,3,'500','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (459,1,2,4,'30.73','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (459,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (460,1,1,1,'488','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (460,1,1,2,'448','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (460,1,1,3,'224','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (460,1,2,4,'11.48','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (461,1,1,1,'331','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (461,1,1,2,'269','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (461,1,1,3,'153','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (461,1,2,4,'7.95','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (461,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (462,1,1,1,'104','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (462,1,1,2,'312','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (462,1,1,3,'92','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (462,1,2,4,'2.49','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (462,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (463,1,1,1,'69','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (463,1,1,2,'120','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (463,1,1,3,'238','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (463,1,2,4,'17.18','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (463,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (464,1,1,1,'432','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (464,1,1,2,'430','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (464,1,1,3,'403','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (464,1,2,4,'34.79','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (464,NULL,5,8,'ffffff','ff','technicalAttributes','default','rgbaColor'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (464,NULL,5,9,'Leather',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (465,1,1,1,'50','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (465,1,1,2,'420','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (465,1,1,3,'336','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (465,1,2,4,'46.05','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (465,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (466,1,1,1,'188','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (466,1,1,2,'69','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (466,1,1,3,'293','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (466,1,2,4,'33.61','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (466,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (467,1,1,1,'236','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (467,1,1,2,'400','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (467,1,1,3,'258','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (467,1,2,4,'40.97','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (467,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (468,1,1,1,'439','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (468,1,1,2,'273','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (468,1,1,3,'245','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (468,1,2,4,'37.06','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (469,1,1,1,'57','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (469,1,1,2,'206','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (469,1,1,3,'313','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (469,1,2,4,'10.31','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (469,NULL,3,5,'17',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (469,NULL,3,6,'steel',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (470,1,1,1,'98','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (470,1,1,2,'171','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (470,1,1,3,'252','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (470,1,2,4,'47.96','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (470,NULL,3,5,'13',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (470,NULL,3,6,'steel',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (471,1,1,1,'180','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (471,1,1,2,'150','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (471,1,1,3,'246','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (471,1,2,4,'9.47','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (471,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (472,1,1,1,'152','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (472,1,1,2,'257','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (472,1,1,3,'83','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (472,1,2,4,'22.51','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (472,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (473,1,1,1,'303','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (473,1,1,2,'71','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (473,1,1,3,'287','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (473,1,2,4,'29.05','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (473,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (474,1,1,1,'298','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (474,1,1,2,'180','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (474,1,1,3,'140','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (474,1,2,4,'22.53','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (475,1,1,1,'146','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (475,1,1,2,'198','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (475,1,1,3,'435','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (475,1,2,4,'36.98','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (475,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (476,1,1,1,'246','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (476,1,1,2,'401','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (476,1,1,3,'80','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (476,1,2,4,'43.47','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (476,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (477,1,1,1,'371','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (477,1,1,2,'162','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (477,1,1,3,'480','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (477,1,2,4,'12.83','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (477,NULL,3,5,'12',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (477,NULL,3,6,'steel',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (478,1,1,1,'52','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (478,1,1,2,'484','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (478,1,1,3,'398','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (478,1,2,4,'22.02','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (478,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (479,1,1,1,'405','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (479,1,1,2,'163','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (479,1,1,3,'296','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (479,1,2,4,'37.36','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (479,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (480,1,1,1,'494','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (480,1,1,2,'231','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (480,1,1,3,'123','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (480,1,2,4,'47.92','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (480,NULL,3,5,'19',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (480,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (481,1,1,1,'378','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (481,1,1,2,'499','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (481,1,1,3,'338','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (481,1,2,4,'4.44','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (481,NULL,5,8,'808080','ff','technicalAttributes','default','rgbaColor'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (481,NULL,5,9,'Leather',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (482,1,1,1,'450','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (482,1,1,2,'367','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (482,1,1,3,'381','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (482,1,2,4,'22.51','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (482,NULL,3,5,'13',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (482,NULL,3,6,'steel',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (484,1,1,1,'416','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (484,1,1,2,'485','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (484,1,1,3,'334','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (484,1,2,4,'5.91','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (484,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (485,1,1,1,'233','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (485,1,1,2,'320','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (485,1,1,3,'394','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (485,1,2,4,'43.08','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (485,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (486,1,1,1,'232','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (486,1,1,2,'139','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (486,1,1,3,'430','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (486,1,2,4,'47.63','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (486,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (487,1,1,1,'496','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (487,1,1,2,'140','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (487,1,1,3,'135','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (487,1,2,4,'7.37','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (487,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (488,1,1,1,'365','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (488,1,1,2,'102','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (488,1,1,3,'146','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (488,1,2,4,'6.94','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (488,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (489,1,1,1,'163','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (489,1,1,2,'342','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (489,1,1,3,'294','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (489,1,2,4,'40.74','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (489,NULL,3,5,'20',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (489,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (490,1,1,1,'428','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (490,1,1,2,'270','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (490,1,1,3,'245','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (490,1,2,4,'46.12','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (490,NULL,3,5,'20',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (490,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (492,1,1,1,'422','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (492,1,1,2,'76','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (492,1,1,3,'308','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (492,1,2,4,'17.85','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (492,NULL,5,8,'808080','ff','technicalAttributes','default','rgbaColor'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (492,NULL,5,9,'Leather',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (493,1,1,1,'292','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (493,1,1,2,'324','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (493,1,1,3,'373','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (493,1,2,4,'26.44','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (493,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (494,1,1,1,'276','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (494,1,1,2,'268','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (494,1,1,3,'371','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (494,1,2,4,'11.72','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (494,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (495,1,1,1,'284','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (495,1,1,2,'196','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (495,1,1,3,'129','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (495,1,2,4,'43.71','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (495,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (496,1,1,1,'85','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (496,1,1,2,'400','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (496,1,1,3,'429','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (496,1,2,4,'5.62','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (496,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (497,1,1,1,'78','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (497,1,1,2,'57','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (497,1,1,3,'134','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (497,1,2,4,'46.62','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (497,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (498,1,1,1,'135','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (498,1,1,2,'99','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (498,1,1,3,'226','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (498,1,2,4,'37.69','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (499,1,1,1,'429','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (499,1,1,2,'274','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (499,1,1,3,'260','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (499,1,2,4,'44.21','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (499,NULL,3,5,'15',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (499,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (500,1,1,1,'204','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (500,1,1,2,'219','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (500,1,1,3,'294','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (500,1,2,4,'30.28','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (500,NULL,3,5,'18',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (500,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (501,1,1,1,'120','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (501,1,1,2,'380','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (501,1,1,3,'250','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (501,1,2,4,'22.36','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (501,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (502,1,1,1,'477','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (502,1,1,2,'320','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (502,1,1,3,'411','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (502,1,2,4,'30.8','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (502,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (503,1,1,1,'65','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (503,1,1,2,'296','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (503,1,1,3,'290','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (503,1,2,4,'30.77','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (503,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (504,1,1,1,'290','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (504,1,1,2,'227','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (504,1,1,3,'57','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (504,1,2,4,'10.31','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (504,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (505,1,1,1,'82','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (505,1,1,2,'393','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (505,1,1,3,'365','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (505,1,2,4,'27.24','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (505,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (506,1,1,1,'198','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (506,1,1,2,'417','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (506,1,1,3,'409','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (506,1,2,4,'48.28','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (506,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (507,1,1,1,'389','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (507,1,1,2,'61','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (507,1,1,3,'395','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (507,1,2,4,'49.25','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (507,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (508,1,1,1,'134','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (508,1,1,2,'453','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (508,1,1,3,'230','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (508,1,2,4,'3.92','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (508,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (509,1,1,1,'290','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (509,1,1,2,'458','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (509,1,1,3,'86','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (509,1,2,4,'26.62','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (509,NULL,3,5,'13',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (509,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (510,1,1,1,'137','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (510,1,1,2,'398','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (510,1,1,3,'351','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (510,1,2,4,'44.86','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (510,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (511,1,1,1,'420','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (511,1,1,2,'178','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (511,1,1,3,'498','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (511,1,2,4,'46.51','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (512,1,1,1,'156','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (512,1,1,2,'371','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (512,1,1,3,'428','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (512,1,2,4,'21.87','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (512,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (513,1,1,1,'392','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (513,1,1,2,'140','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (513,1,1,3,'250','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (513,1,2,4,'15.66','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (513,NULL,3,5,'19',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (513,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (514,1,1,1,'273','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (514,1,1,2,'256','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (514,1,1,3,'101','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (514,1,2,4,'10.92','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (514,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (515,1,1,1,'129','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (515,1,1,2,'72','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (515,1,1,3,'389','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (515,1,2,4,'25.74','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (515,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (516,1,1,1,'374','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (516,1,1,2,'493','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (516,1,1,3,'480','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (516,1,2,4,'15.76','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (516,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (517,1,1,1,'305','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (517,1,1,2,'355','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (517,1,1,3,'436','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (517,1,2,4,'9.17','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (517,NULL,3,5,'17',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (517,NULL,3,6,'steel',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (518,1,1,1,'251','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (518,1,1,2,'185','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (518,1,1,3,'295','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (518,1,2,4,'3.09','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (518,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (519,1,1,1,'185','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (519,1,1,2,'254','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (519,1,1,3,'261','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (519,1,2,4,'22.51','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (519,NULL,3,5,'20',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (519,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (520,1,1,1,'141','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (520,1,1,2,'259','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (520,1,1,3,'386','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (520,1,2,4,'34.15','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (520,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (521,1,1,1,'115','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (521,1,1,2,'250','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (521,1,1,3,'239','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (521,1,2,4,'22.69','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (521,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (522,1,1,1,'329','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (522,1,1,2,'268','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (522,1,1,3,'163','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (522,1,2,4,'8.7','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (522,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (523,1,1,1,'425','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (523,1,1,2,'341','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (523,1,1,3,'318','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (523,1,2,4,'19.32','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (523,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (524,1,1,1,'402','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (524,1,1,2,'348','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (524,1,1,3,'324','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (524,1,2,4,'32.69','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (525,1,1,1,'282','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (525,1,1,2,'140','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (525,1,1,3,'478','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (525,1,2,4,'46.99','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (525,NULL,3,5,'20',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (525,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (526,1,1,1,'157','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (526,1,1,2,'435','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (526,1,1,3,'231','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (526,1,2,4,'14.05','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (526,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (527,1,1,1,'403','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (527,1,1,2,'299','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (527,1,1,3,'308','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (527,1,2,4,'24.9','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (527,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (528,1,1,1,'244','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (528,1,1,2,'194','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (528,1,1,3,'500','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (528,1,2,4,'4.03','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (528,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (529,1,1,1,'215','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (529,1,1,2,'432','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (529,1,1,3,'201','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (529,1,2,4,'13.81','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (530,1,1,1,'368','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (530,1,1,2,'430','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (530,1,1,3,'155','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (530,1,2,4,'28.68','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (530,NULL,5,8,'32cd32','ff','technicalAttributes','default','rgbaColor'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (530,NULL,5,9,'Faux Leather',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (531,1,1,1,'202','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (531,1,1,2,'379','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (531,1,1,3,'324','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (531,1,2,4,'7.77','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (531,NULL,3,5,'18',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (531,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (532,1,1,1,'60','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (532,1,1,2,'471','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (532,1,1,3,'169','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (532,1,2,4,'8.51','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (532,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (533,1,1,1,'351','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (533,1,1,2,'228','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (533,1,1,3,'444','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (533,1,2,4,'5.29','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (533,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (534,1,1,1,'216','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (534,1,1,2,'91','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (534,1,1,3,'52','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (534,1,2,4,'46.78','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (534,NULL,3,5,'15',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (534,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (535,1,1,1,'415','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (535,1,1,2,'133','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (535,1,1,3,'441','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (535,1,2,4,'36.24','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (535,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (536,1,1,1,'121','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (536,1,1,2,'478','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (536,1,1,3,'204','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (536,1,2,4,'4.63','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (537,1,1,1,'94','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (537,1,1,2,'119','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (537,1,1,3,'468','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (537,1,2,4,'27.04','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (537,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (538,1,1,1,'425','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (538,1,1,2,'435','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (538,1,1,3,'284','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (538,1,2,4,'20.73','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (538,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (539,1,1,1,'236','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (539,1,1,2,'173','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (539,1,1,3,'433','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (539,1,2,4,'48.99','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (539,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (540,1,1,1,'377','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (540,1,1,2,'192','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (540,1,1,3,'74','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (540,1,2,4,'24.26','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (540,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (541,1,1,1,'497','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (541,1,1,2,'297','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (541,1,1,3,'100','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (541,1,2,4,'9.17','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (541,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (542,1,1,1,'108','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (542,1,1,2,'180','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (542,1,1,3,'316','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (542,1,2,4,'25.87','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (542,NULL,3,5,'15',NULL,'technicalAttributes','default','input'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (542,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (543,1,1,1,'376','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (543,1,1,2,'406','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (543,1,1,3,'76','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (543,1,2,4,'22.59','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (543,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (544,1,1,1,'389','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (544,1,1,2,'392','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (544,1,1,3,'81','2','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (544,1,2,4,'37.2','3','technicalAttributes','default','quantityValue'); -INSERT INTO object_classificationstore_data_AP (`o_id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (544,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (372,1,1,1,'373','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (372,1,1,2,'196','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (372,1,1,3,'327','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (372,1,2,4,'3.34','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (372,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (373,1,1,1,'270','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (373,1,1,2,'236','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (373,1,1,3,'481','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (373,1,2,4,'1.45','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (373,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (377,1,1,1,'219','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (377,1,1,2,'364','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (377,1,1,3,'280','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (377,1,2,4,'25.28','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (377,NULL,3,5,'17',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (377,NULL,3,6,'alloy',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (378,1,1,1,'279','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (378,1,1,2,'172','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (378,1,1,3,'374','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (378,1,2,4,'6.63','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (378,NULL,3,5,'16',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (378,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (379,1,1,1,'403','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (379,1,1,2,'484','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (379,1,1,3,'487','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (379,1,2,4,'40.19','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (379,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (381,1,1,1,'361','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (381,1,1,2,'50','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (381,1,1,3,'466','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (381,1,2,4,'19.1','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (381,NULL,5,8,'ffffff','ff','technicalAttributes','default','rgbaColor'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (381,NULL,5,9,'Synthetic Resins',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (382,1,1,1,'421','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (382,1,1,2,'74','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (382,1,1,3,'168','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (382,1,2,4,'37.24','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (382,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (383,1,1,1,'334','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (383,1,1,2,'396','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (383,1,1,3,'171','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (383,1,2,4,'17.46','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (383,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (384,1,1,1,'276','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (384,1,1,2,'283','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (384,1,1,3,'331','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (384,1,2,4,'4.34','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (384,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (385,1,1,1,'343','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (385,1,1,2,'261','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (385,1,1,3,'355','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (385,1,2,4,'44.48','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (385,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (386,1,1,1,'265','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (386,1,1,2,'427','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (386,1,1,3,'467','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (386,1,2,4,'39.93','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (386,NULL,3,5,'18',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (386,NULL,3,6,'alloy',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (387,1,1,1,'53','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (387,1,1,2,'453','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (387,1,1,3,'202','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (387,1,2,4,'44.46','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (387,NULL,5,8,'32cd32','ff','technicalAttributes','default','rgbaColor'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (387,NULL,5,9,'Faux Leather',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (388,1,1,1,'471','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (388,1,1,2,'400','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (388,1,1,3,'334','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (388,1,2,4,'46.23','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (388,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (400,1,1,1,'106','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (400,1,1,2,'426','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (400,1,1,3,'231','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (400,1,2,4,'39.19','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (400,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (401,1,1,1,'451','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (401,1,1,2,'499','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (401,1,1,3,'136','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (401,1,2,4,'42.6','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (401,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (402,1,1,1,'312','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (402,1,1,2,'406','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (402,1,1,3,'476','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (402,1,2,4,'34.84','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (402,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (403,1,1,1,'93','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (403,1,1,2,'385','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (403,1,1,3,'256','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (403,1,2,4,'41.1','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (403,NULL,3,5,'13',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (403,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (404,1,1,1,'99','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (404,1,1,2,'314','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (404,1,1,3,'143','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (404,1,2,4,'47.36','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (404,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (405,1,1,1,'298','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (405,1,1,2,'392','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (405,1,1,3,'177','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (405,1,2,4,'16.4','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (405,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (406,1,1,1,'499','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (406,1,1,2,'87','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (406,1,1,3,'149','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (406,1,2,4,'41.86','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (408,1,1,1,'76','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (408,1,1,2,'382','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (408,1,1,3,'459','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (408,1,2,4,'1.8','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (410,1,1,1,'112','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (410,1,1,2,'454','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (410,1,1,3,'414','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (410,1,2,4,'0.78','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (410,NULL,3,5,'17',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (410,NULL,3,6,'alloy',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (411,1,1,1,'261','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (411,1,1,2,'328','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (411,1,1,3,'432','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (411,1,2,4,'19.75','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (411,NULL,5,8,'008000','ff','technicalAttributes','default','rgbaColor'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (411,NULL,5,9,'Faux Leather',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (412,1,1,1,'370','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (412,1,1,2,'396','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (412,1,1,3,'57','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (412,1,2,4,'29.58','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (413,1,1,1,'273','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (413,1,1,2,'177','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (413,1,1,3,'374','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (413,1,2,4,'46.66','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (413,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (414,1,1,1,'451','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (414,1,1,2,'78','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (414,1,1,3,'105','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (414,1,2,4,'39.55','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (414,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (415,1,1,1,'91','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (415,1,1,2,'441','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (415,1,1,3,'123','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (415,1,2,4,'10.22','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (415,NULL,3,5,'19',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (415,NULL,3,6,'steel',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (416,1,1,1,'72','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (416,1,1,2,'88','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (416,1,1,3,'472','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (416,1,2,4,'18.78','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (416,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (418,1,1,1,'149','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (418,1,1,2,'248','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (418,1,1,3,'207','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (418,1,2,4,'37.86','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (418,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (419,1,1,1,'323','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (419,1,1,2,'307','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (419,1,1,3,'78','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (419,1,2,4,'10.42','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (419,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (420,1,1,1,'321','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (420,1,1,2,'186','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (420,1,1,3,'307','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (420,1,2,4,'40.23','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (420,NULL,5,8,'008000','ff','technicalAttributes','default','rgbaColor'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (420,NULL,5,9,'Faux Leather',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (422,1,1,1,'131','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (422,1,1,2,'251','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (422,1,1,3,'177','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (422,1,2,4,'5.2','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (422,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (423,1,1,1,'128','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (423,1,1,2,'256','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (423,1,1,3,'184','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (423,1,2,4,'40.78','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (423,NULL,3,5,'14',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (423,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (424,1,1,1,'232','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (424,1,1,2,'372','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (424,1,1,3,'115','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (424,1,2,4,'45.58','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (424,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (425,1,1,1,'247','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (425,1,1,2,'95','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (425,1,1,3,'144','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (425,1,2,4,'28.3','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (425,NULL,3,5,'16',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (425,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (426,1,1,1,'355','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (426,1,1,2,'490','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (426,1,1,3,'464','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (426,1,2,4,'8.63','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (426,NULL,3,5,'15',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (426,NULL,3,6,'alloy',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (427,1,1,1,'418','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (427,1,1,2,'151','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (427,1,1,3,'328','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (427,1,2,4,'8.75','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (427,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (428,1,1,1,'226','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (428,1,1,2,'340','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (428,1,1,3,'384','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (428,1,2,4,'9.46','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (428,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (429,1,1,1,'185','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (429,1,1,2,'140','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (429,1,1,3,'441','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (429,1,2,4,'31.37','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (429,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (430,1,1,1,'57','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (430,1,1,2,'463','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (430,1,1,3,'277','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (430,1,2,4,'0.89','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (430,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (431,1,1,1,'165','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (431,1,1,2,'115','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (431,1,1,3,'489','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (431,1,2,4,'47.27','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (431,NULL,3,5,'14',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (431,NULL,3,6,'alloy',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (432,1,1,1,'70','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (432,1,1,2,'173','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (432,1,1,3,'360','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (432,1,2,4,'41.65','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (432,NULL,5,8,'32cd32','ff','technicalAttributes','default','rgbaColor'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (432,NULL,5,9,'Plastic',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (433,1,1,1,'96','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (433,1,1,2,'382','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (433,1,1,3,'460','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (433,1,2,4,'9.94','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (433,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (434,1,1,1,'249','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (434,1,1,2,'394','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (434,1,1,3,'227','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (434,1,2,4,'10.15','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (434,NULL,3,5,'16',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (434,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (435,1,1,1,'428','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (435,1,1,2,'287','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (435,1,1,3,'370','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (435,1,2,4,'1.59','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (435,NULL,3,5,'18',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (435,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (436,1,1,1,'475','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (436,1,1,2,'453','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (436,1,1,3,'199','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (436,1,2,4,'28.88','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (436,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (437,1,1,1,'435','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (437,1,1,2,'278','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (437,1,1,3,'403','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (437,1,2,4,'41.94','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (437,NULL,3,5,'14',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (437,NULL,3,6,'alloy',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (438,1,1,1,'423','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (438,1,1,2,'349','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (438,1,1,3,'282','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (438,1,2,4,'7.03','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (438,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (439,1,1,1,'406','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (439,1,1,2,'211','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (439,1,1,3,'342','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (439,1,2,4,'13.27','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (439,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (440,1,1,1,'175','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (440,1,1,2,'479','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (440,1,1,3,'412','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (440,1,2,4,'36.55','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (441,1,1,1,'74','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (441,1,1,2,'184','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (441,1,1,3,'183','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (441,1,2,4,'10.83','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (441,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (442,1,1,1,'101','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (442,1,1,2,'439','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (442,1,1,3,'385','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (442,1,2,4,'13.48','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (442,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (443,1,1,1,'333','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (443,1,1,2,'470','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (443,1,1,3,'93','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (443,1,2,4,'34.76','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (444,1,1,1,'66','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (444,1,1,2,'256','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (444,1,1,3,'485','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (444,1,2,4,'28.68','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (444,NULL,3,5,'19',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (444,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (445,1,1,1,'477','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (445,1,1,2,'66','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (445,1,1,3,'406','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (445,1,2,4,'3.64','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (445,NULL,3,5,'17',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (445,NULL,3,6,'alloy',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (446,1,1,1,'418','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (446,1,1,2,'138','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (446,1,1,3,'284','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (446,1,2,4,'43.56','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (446,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (447,1,1,1,'323','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (447,1,1,2,'448','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (447,1,1,3,'195','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (447,1,2,4,'24.25','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (447,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (448,1,1,1,'254','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (448,1,1,2,'286','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (448,1,1,3,'125','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (448,1,2,4,'7.17','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (448,NULL,3,5,'17',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (448,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (449,1,1,1,'417','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (449,1,1,2,'70','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (449,1,1,3,'484','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (449,1,2,4,'7.01','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (449,NULL,3,5,'13',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (449,NULL,3,6,'steel',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (450,1,1,1,'183','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (450,1,1,2,'154','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (450,1,1,3,'462','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (450,1,2,4,'22.21','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (450,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (451,1,1,1,'216','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (451,1,1,2,'480','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (451,1,1,3,'292','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (451,1,2,4,'38.52','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (451,NULL,5,8,'32cd32','ff','technicalAttributes','default','rgbaColor'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (451,NULL,5,9,'Leather',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (452,1,1,1,'366','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (452,1,1,2,'145','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (452,1,1,3,'89','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (452,1,2,4,'18.52','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (453,1,1,1,'202','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (453,1,1,2,'458','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (453,1,1,3,'292','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (453,1,2,4,'29.79','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (453,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (454,1,1,1,'141','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (454,1,1,2,'117','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (454,1,1,3,'161','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (454,1,2,4,'12.29','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (454,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (455,1,1,1,'461','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (455,1,1,2,'299','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (455,1,1,3,'231','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (455,1,2,4,'28.74','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (455,NULL,3,5,'16',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (455,NULL,3,6,'alloy',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (456,1,1,1,'419','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (456,1,1,2,'60','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (456,1,1,3,'50','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (456,1,2,4,'16.28','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (456,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (457,1,1,1,'336','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (457,1,1,2,'458','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (457,1,1,3,'337','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (457,1,2,4,'7.51','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (457,NULL,3,5,'18',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (457,NULL,3,6,'steel',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (458,1,1,1,'58','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (458,1,1,2,'363','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (458,1,1,3,'190','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (458,1,2,4,'37.88','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (458,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (459,1,1,1,'253','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (459,1,1,2,'357','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (459,1,1,3,'500','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (459,1,2,4,'30.73','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (459,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (460,1,1,1,'488','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (460,1,1,2,'448','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (460,1,1,3,'224','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (460,1,2,4,'11.48','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (461,1,1,1,'331','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (461,1,1,2,'269','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (461,1,1,3,'153','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (461,1,2,4,'7.95','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (461,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (462,1,1,1,'104','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (462,1,1,2,'312','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (462,1,1,3,'92','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (462,1,2,4,'2.49','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (462,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (463,1,1,1,'69','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (463,1,1,2,'120','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (463,1,1,3,'238','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (463,1,2,4,'17.18','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (463,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (464,1,1,1,'432','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (464,1,1,2,'430','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (464,1,1,3,'403','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (464,1,2,4,'34.79','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (464,NULL,5,8,'ffffff','ff','technicalAttributes','default','rgbaColor'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (464,NULL,5,9,'Leather',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (465,1,1,1,'50','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (465,1,1,2,'420','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (465,1,1,3,'336','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (465,1,2,4,'46.05','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (465,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (466,1,1,1,'188','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (466,1,1,2,'69','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (466,1,1,3,'293','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (466,1,2,4,'33.61','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (466,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (467,1,1,1,'236','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (467,1,1,2,'400','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (467,1,1,3,'258','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (467,1,2,4,'40.97','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (467,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (468,1,1,1,'439','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (468,1,1,2,'273','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (468,1,1,3,'245','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (468,1,2,4,'37.06','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (469,1,1,1,'57','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (469,1,1,2,'206','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (469,1,1,3,'313','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (469,1,2,4,'10.31','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (469,NULL,3,5,'17',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (469,NULL,3,6,'steel',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (470,1,1,1,'98','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (470,1,1,2,'171','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (470,1,1,3,'252','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (470,1,2,4,'47.96','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (470,NULL,3,5,'13',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (470,NULL,3,6,'steel',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (471,1,1,1,'180','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (471,1,1,2,'150','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (471,1,1,3,'246','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (471,1,2,4,'9.47','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (471,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (472,1,1,1,'152','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (472,1,1,2,'257','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (472,1,1,3,'83','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (472,1,2,4,'22.51','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (472,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (473,1,1,1,'303','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (473,1,1,2,'71','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (473,1,1,3,'287','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (473,1,2,4,'29.05','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (473,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (474,1,1,1,'298','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (474,1,1,2,'180','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (474,1,1,3,'140','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (474,1,2,4,'22.53','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (475,1,1,1,'146','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (475,1,1,2,'198','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (475,1,1,3,'435','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (475,1,2,4,'36.98','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (475,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (476,1,1,1,'246','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (476,1,1,2,'401','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (476,1,1,3,'80','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (476,1,2,4,'43.47','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (476,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (477,1,1,1,'371','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (477,1,1,2,'162','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (477,1,1,3,'480','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (477,1,2,4,'12.83','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (477,NULL,3,5,'12',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (477,NULL,3,6,'steel',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (478,1,1,1,'52','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (478,1,1,2,'484','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (478,1,1,3,'398','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (478,1,2,4,'22.02','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (478,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (479,1,1,1,'405','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (479,1,1,2,'163','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (479,1,1,3,'296','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (479,1,2,4,'37.36','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (479,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (480,1,1,1,'494','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (480,1,1,2,'231','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (480,1,1,3,'123','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (480,1,2,4,'47.92','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (480,NULL,3,5,'19',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (480,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (481,1,1,1,'378','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (481,1,1,2,'499','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (481,1,1,3,'338','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (481,1,2,4,'4.44','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (481,NULL,5,8,'808080','ff','technicalAttributes','default','rgbaColor'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (481,NULL,5,9,'Leather',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (482,1,1,1,'450','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (482,1,1,2,'367','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (482,1,1,3,'381','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (482,1,2,4,'22.51','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (482,NULL,3,5,'13',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (482,NULL,3,6,'steel',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (484,1,1,1,'416','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (484,1,1,2,'485','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (484,1,1,3,'334','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (484,1,2,4,'5.91','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (484,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (485,1,1,1,'233','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (485,1,1,2,'320','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (485,1,1,3,'394','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (485,1,2,4,'43.08','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (485,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (486,1,1,1,'232','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (486,1,1,2,'139','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (486,1,1,3,'430','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (486,1,2,4,'47.63','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (486,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (487,1,1,1,'496','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (487,1,1,2,'140','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (487,1,1,3,'135','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (487,1,2,4,'7.37','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (487,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (488,1,1,1,'365','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (488,1,1,2,'102','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (488,1,1,3,'146','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (488,1,2,4,'6.94','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (488,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (489,1,1,1,'163','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (489,1,1,2,'342','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (489,1,1,3,'294','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (489,1,2,4,'40.74','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (489,NULL,3,5,'20',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (489,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (490,1,1,1,'428','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (490,1,1,2,'270','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (490,1,1,3,'245','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (490,1,2,4,'46.12','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (490,NULL,3,5,'20',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (490,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (492,1,1,1,'422','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (492,1,1,2,'76','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (492,1,1,3,'308','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (492,1,2,4,'17.85','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (492,NULL,5,8,'808080','ff','technicalAttributes','default','rgbaColor'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (492,NULL,5,9,'Leather',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (493,1,1,1,'292','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (493,1,1,2,'324','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (493,1,1,3,'373','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (493,1,2,4,'26.44','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (493,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (494,1,1,1,'276','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (494,1,1,2,'268','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (494,1,1,3,'371','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (494,1,2,4,'11.72','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (494,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (495,1,1,1,'284','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (495,1,1,2,'196','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (495,1,1,3,'129','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (495,1,2,4,'43.71','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (495,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (496,1,1,1,'85','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (496,1,1,2,'400','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (496,1,1,3,'429','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (496,1,2,4,'5.62','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (496,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (497,1,1,1,'78','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (497,1,1,2,'57','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (497,1,1,3,'134','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (497,1,2,4,'46.62','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (497,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (498,1,1,1,'135','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (498,1,1,2,'99','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (498,1,1,3,'226','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (498,1,2,4,'37.69','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (499,1,1,1,'429','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (499,1,1,2,'274','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (499,1,1,3,'260','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (499,1,2,4,'44.21','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (499,NULL,3,5,'15',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (499,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (500,1,1,1,'204','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (500,1,1,2,'219','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (500,1,1,3,'294','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (500,1,2,4,'30.28','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (500,NULL,3,5,'18',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (500,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (501,1,1,1,'120','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (501,1,1,2,'380','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (501,1,1,3,'250','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (501,1,2,4,'22.36','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (501,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (502,1,1,1,'477','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (502,1,1,2,'320','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (502,1,1,3,'411','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (502,1,2,4,'30.8','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (502,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (503,1,1,1,'65','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (503,1,1,2,'296','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (503,1,1,3,'290','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (503,1,2,4,'30.77','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (503,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (504,1,1,1,'290','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (504,1,1,2,'227','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (504,1,1,3,'57','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (504,1,2,4,'10.31','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (504,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (505,1,1,1,'82','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (505,1,1,2,'393','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (505,1,1,3,'365','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (505,1,2,4,'27.24','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (505,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (506,1,1,1,'198','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (506,1,1,2,'417','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (506,1,1,3,'409','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (506,1,2,4,'48.28','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (506,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (507,1,1,1,'389','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (507,1,1,2,'61','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (507,1,1,3,'395','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (507,1,2,4,'49.25','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (507,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (508,1,1,1,'134','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (508,1,1,2,'453','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (508,1,1,3,'230','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (508,1,2,4,'3.92','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (508,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (509,1,1,1,'290','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (509,1,1,2,'458','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (509,1,1,3,'86','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (509,1,2,4,'26.62','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (509,NULL,3,5,'13',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (509,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (510,1,1,1,'137','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (510,1,1,2,'398','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (510,1,1,3,'351','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (510,1,2,4,'44.86','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (510,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (511,1,1,1,'420','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (511,1,1,2,'178','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (511,1,1,3,'498','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (511,1,2,4,'46.51','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (512,1,1,1,'156','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (512,1,1,2,'371','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (512,1,1,3,'428','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (512,1,2,4,'21.87','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (512,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (513,1,1,1,'392','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (513,1,1,2,'140','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (513,1,1,3,'250','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (513,1,2,4,'15.66','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (513,NULL,3,5,'19',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (513,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (514,1,1,1,'273','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (514,1,1,2,'256','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (514,1,1,3,'101','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (514,1,2,4,'10.92','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (514,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (515,1,1,1,'129','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (515,1,1,2,'72','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (515,1,1,3,'389','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (515,1,2,4,'25.74','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (515,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (516,1,1,1,'374','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (516,1,1,2,'493','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (516,1,1,3,'480','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (516,1,2,4,'15.76','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (516,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (517,1,1,1,'305','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (517,1,1,2,'355','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (517,1,1,3,'436','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (517,1,2,4,'9.17','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (517,NULL,3,5,'17',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (517,NULL,3,6,'steel',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (518,1,1,1,'251','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (518,1,1,2,'185','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (518,1,1,3,'295','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (518,1,2,4,'3.09','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (518,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (519,1,1,1,'185','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (519,1,1,2,'254','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (519,1,1,3,'261','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (519,1,2,4,'22.51','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (519,NULL,3,5,'20',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (519,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (520,1,1,1,'141','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (520,1,1,2,'259','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (520,1,1,3,'386','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (520,1,2,4,'34.15','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (520,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (521,1,1,1,'115','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (521,1,1,2,'250','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (521,1,1,3,'239','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (521,1,2,4,'22.69','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (521,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (522,1,1,1,'329','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (522,1,1,2,'268','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (522,1,1,3,'163','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (522,1,2,4,'8.7','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (522,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (523,1,1,1,'425','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (523,1,1,2,'341','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (523,1,1,3,'318','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (523,1,2,4,'19.32','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (523,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (524,1,1,1,'402','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (524,1,1,2,'348','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (524,1,1,3,'324','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (524,1,2,4,'32.69','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (525,1,1,1,'282','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (525,1,1,2,'140','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (525,1,1,3,'478','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (525,1,2,4,'46.99','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (525,NULL,3,5,'20',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (525,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (526,1,1,1,'157','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (526,1,1,2,'435','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (526,1,1,3,'231','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (526,1,2,4,'14.05','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (526,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (527,1,1,1,'403','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (527,1,1,2,'299','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (527,1,1,3,'308','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (527,1,2,4,'24.9','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (527,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (528,1,1,1,'244','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (528,1,1,2,'194','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (528,1,1,3,'500','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (528,1,2,4,'4.03','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (528,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (529,1,1,1,'215','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (529,1,1,2,'432','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (529,1,1,3,'201','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (529,1,2,4,'13.81','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (530,1,1,1,'368','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (530,1,1,2,'430','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (530,1,1,3,'155','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (530,1,2,4,'28.68','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (530,NULL,5,8,'32cd32','ff','technicalAttributes','default','rgbaColor'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (530,NULL,5,9,'Faux Leather',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (531,1,1,1,'202','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (531,1,1,2,'379','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (531,1,1,3,'324','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (531,1,2,4,'7.77','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (531,NULL,3,5,'18',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (531,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (532,1,1,1,'60','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (532,1,1,2,'471','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (532,1,1,3,'169','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (532,1,2,4,'8.51','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (532,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (533,1,1,1,'351','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (533,1,1,2,'228','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (533,1,1,3,'444','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (533,1,2,4,'5.29','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (533,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (534,1,1,1,'216','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (534,1,1,2,'91','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (534,1,1,3,'52','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (534,1,2,4,'46.78','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (534,NULL,3,5,'15',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (534,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (535,1,1,1,'415','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (535,1,1,2,'133','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (535,1,1,3,'441','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (535,1,2,4,'36.24','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (535,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (536,1,1,1,'121','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (536,1,1,2,'478','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (536,1,1,3,'204','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (536,1,2,4,'4.63','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (537,1,1,1,'94','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (537,1,1,2,'119','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (537,1,1,3,'468','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (537,1,2,4,'27.04','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (537,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (538,1,1,1,'425','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (538,1,1,2,'435','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (538,1,1,3,'284','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (538,1,2,4,'20.73','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (538,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (539,1,1,1,'236','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (539,1,1,2,'173','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (539,1,1,3,'433','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (539,1,2,4,'48.99','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (539,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (540,1,1,1,'377','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (540,1,1,2,'192','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (540,1,1,3,'74','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (540,1,2,4,'24.26','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (540,NULL,4,7,'standard',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (541,1,1,1,'497','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (541,1,1,2,'297','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (541,1,1,3,'100','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (541,1,2,4,'9.17','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (541,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (542,1,1,1,'108','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (542,1,1,2,'180','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (542,1,1,3,'316','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (542,1,2,4,'25.87','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (542,NULL,3,5,'15',NULL,'technicalAttributes','default','input'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (542,NULL,3,6,'wire',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (543,1,1,1,'376','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (543,1,1,2,'406','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (543,1,1,3,'76','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (543,1,2,4,'22.59','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (543,NULL,4,7,'halogen',NULL,'technicalAttributes','default','select'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (544,1,1,1,'389','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (544,1,1,2,'392','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (544,1,1,3,'81','2','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (544,1,2,4,'37.2','3','technicalAttributes','default','quantityValue'); +INSERT INTO object_classificationstore_data_AP (`id`,`collectionId`,`groupId`,`keyId`,`value`,`value2`,`fieldname`,`language`,`type`) VALUES (544,NULL,4,7,'led',NULL,'technicalAttributes','default','select'); diff --git a/dump/data-1-object_classificationstore_groups_AP.sql b/dump/data-1-object_classificationstore_groups_AP.sql index 82b29a94..65bfdc5d 100644 --- a/dump/data-1-object_classificationstore_groups_AP.sql +++ b/dump/data-1-object_classificationstore_groups_AP.sql @@ -1,445 +1,445 @@ SET NAMES utf8mb4; -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (372,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (372,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (372,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (373,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (373,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (373,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (377,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (377,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (377,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (378,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (378,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (378,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (379,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (379,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (379,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (381,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (381,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (381,5,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (382,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (382,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (382,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (383,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (383,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (383,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (384,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (384,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (384,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (385,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (385,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (385,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (386,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (386,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (386,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (387,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (387,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (387,5,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (388,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (388,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (388,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (400,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (400,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (400,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (401,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (401,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (401,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (402,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (402,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (402,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (403,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (403,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (403,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (404,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (404,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (404,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (405,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (405,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (405,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (406,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (406,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (408,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (408,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (410,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (410,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (410,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (411,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (411,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (411,5,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (412,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (412,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (413,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (413,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (413,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (414,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (414,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (414,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (415,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (415,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (415,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (416,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (416,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (416,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (418,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (418,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (418,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (419,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (419,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (419,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (420,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (420,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (420,5,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (422,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (422,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (422,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (423,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (423,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (423,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (424,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (424,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (424,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (425,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (425,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (425,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (426,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (426,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (426,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (427,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (427,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (427,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (428,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (428,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (428,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (429,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (429,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (429,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (430,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (430,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (430,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (431,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (431,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (431,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (432,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (432,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (432,5,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (433,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (433,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (433,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (434,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (434,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (434,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (435,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (435,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (435,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (436,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (436,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (436,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (437,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (437,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (437,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (438,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (438,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (438,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (439,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (439,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (439,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (440,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (440,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (441,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (441,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (441,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (442,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (442,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (442,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (443,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (443,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (444,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (444,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (444,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (445,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (445,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (445,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (446,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (446,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (446,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (447,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (447,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (447,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (448,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (448,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (448,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (449,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (449,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (449,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (450,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (450,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (450,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (451,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (451,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (451,5,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (452,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (452,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (453,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (453,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (453,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (454,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (454,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (454,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (455,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (455,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (455,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (456,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (456,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (456,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (457,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (457,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (457,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (458,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (458,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (458,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (459,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (459,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (459,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (460,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (460,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (461,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (461,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (461,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (462,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (462,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (462,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (463,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (463,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (463,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (464,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (464,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (464,5,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (465,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (465,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (465,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (466,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (466,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (466,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (467,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (467,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (467,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (468,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (468,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (469,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (469,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (469,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (470,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (470,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (470,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (471,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (471,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (471,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (472,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (472,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (472,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (473,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (473,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (473,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (474,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (474,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (475,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (475,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (475,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (476,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (476,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (476,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (477,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (477,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (477,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (478,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (478,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (478,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (479,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (479,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (479,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (480,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (480,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (480,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (481,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (481,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (481,5,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (482,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (482,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (482,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (484,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (484,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (484,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (485,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (485,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (485,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (486,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (486,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (486,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (487,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (487,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (487,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (488,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (488,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (488,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (489,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (489,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (489,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (490,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (490,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (490,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (492,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (492,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (492,5,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (493,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (493,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (493,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (494,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (494,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (494,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (495,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (495,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (495,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (496,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (496,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (496,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (497,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (497,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (497,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (498,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (498,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (499,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (499,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (499,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (500,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (500,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (500,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (501,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (501,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (501,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (502,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (502,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (502,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (503,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (503,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (503,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (504,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (504,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (504,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (505,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (505,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (505,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (506,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (506,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (506,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (507,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (507,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (507,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (508,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (508,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (508,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (509,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (509,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (509,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (510,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (510,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (510,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (511,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (511,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (512,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (512,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (512,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (513,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (513,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (513,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (514,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (514,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (514,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (515,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (515,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (515,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (516,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (516,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (516,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (517,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (517,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (517,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (518,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (518,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (518,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (519,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (519,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (519,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (520,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (520,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (520,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (521,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (521,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (521,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (522,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (522,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (522,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (523,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (523,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (523,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (524,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (524,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (525,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (525,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (525,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (526,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (526,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (526,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (527,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (527,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (527,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (528,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (528,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (528,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (529,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (529,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (530,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (530,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (530,5,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (531,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (531,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (531,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (532,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (532,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (532,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (533,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (533,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (533,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (534,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (534,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (534,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (535,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (535,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (535,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (536,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (536,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (537,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (537,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (537,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (538,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (538,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (538,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (539,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (539,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (539,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (540,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (540,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (540,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (541,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (541,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (541,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (542,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (542,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (542,3,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (543,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (543,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (543,4,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (544,1,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (544,2,'technicalAttributes'); -INSERT INTO object_classificationstore_groups_AP (`o_id`,`groupId`,`fieldname`) VALUES (544,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (372,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (372,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (372,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (373,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (373,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (373,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (377,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (377,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (377,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (378,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (378,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (378,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (379,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (379,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (379,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (381,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (381,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (381,5,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (382,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (382,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (382,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (383,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (383,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (383,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (384,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (384,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (384,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (385,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (385,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (385,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (386,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (386,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (386,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (387,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (387,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (387,5,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (388,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (388,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (388,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (400,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (400,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (400,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (401,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (401,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (401,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (402,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (402,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (402,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (403,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (403,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (403,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (404,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (404,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (404,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (405,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (405,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (405,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (406,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (406,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (408,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (408,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (410,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (410,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (410,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (411,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (411,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (411,5,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (412,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (412,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (413,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (413,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (413,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (414,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (414,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (414,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (415,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (415,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (415,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (416,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (416,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (416,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (418,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (418,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (418,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (419,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (419,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (419,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (420,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (420,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (420,5,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (422,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (422,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (422,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (423,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (423,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (423,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (424,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (424,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (424,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (425,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (425,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (425,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (426,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (426,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (426,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (427,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (427,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (427,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (428,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (428,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (428,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (429,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (429,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (429,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (430,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (430,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (430,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (431,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (431,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (431,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (432,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (432,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (432,5,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (433,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (433,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (433,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (434,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (434,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (434,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (435,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (435,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (435,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (436,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (436,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (436,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (437,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (437,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (437,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (438,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (438,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (438,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (439,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (439,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (439,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (440,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (440,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (441,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (441,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (441,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (442,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (442,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (442,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (443,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (443,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (444,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (444,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (444,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (445,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (445,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (445,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (446,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (446,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (446,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (447,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (447,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (447,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (448,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (448,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (448,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (449,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (449,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (449,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (450,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (450,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (450,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (451,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (451,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (451,5,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (452,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (452,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (453,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (453,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (453,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (454,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (454,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (454,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (455,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (455,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (455,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (456,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (456,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (456,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (457,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (457,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (457,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (458,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (458,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (458,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (459,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (459,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (459,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (460,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (460,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (461,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (461,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (461,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (462,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (462,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (462,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (463,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (463,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (463,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (464,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (464,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (464,5,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (465,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (465,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (465,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (466,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (466,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (466,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (467,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (467,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (467,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (468,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (468,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (469,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (469,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (469,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (470,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (470,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (470,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (471,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (471,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (471,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (472,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (472,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (472,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (473,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (473,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (473,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (474,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (474,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (475,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (475,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (475,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (476,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (476,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (476,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (477,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (477,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (477,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (478,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (478,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (478,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (479,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (479,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (479,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (480,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (480,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (480,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (481,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (481,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (481,5,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (482,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (482,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (482,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (484,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (484,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (484,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (485,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (485,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (485,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (486,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (486,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (486,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (487,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (487,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (487,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (488,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (488,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (488,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (489,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (489,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (489,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (490,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (490,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (490,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (492,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (492,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (492,5,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (493,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (493,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (493,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (494,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (494,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (494,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (495,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (495,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (495,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (496,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (496,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (496,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (497,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (497,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (497,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (498,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (498,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (499,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (499,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (499,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (500,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (500,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (500,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (501,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (501,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (501,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (502,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (502,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (502,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (503,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (503,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (503,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (504,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (504,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (504,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (505,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (505,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (505,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (506,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (506,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (506,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (507,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (507,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (507,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (508,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (508,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (508,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (509,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (509,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (509,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (510,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (510,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (510,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (511,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (511,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (512,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (512,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (512,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (513,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (513,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (513,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (514,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (514,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (514,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (515,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (515,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (515,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (516,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (516,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (516,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (517,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (517,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (517,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (518,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (518,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (518,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (519,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (519,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (519,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (520,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (520,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (520,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (521,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (521,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (521,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (522,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (522,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (522,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (523,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (523,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (523,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (524,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (524,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (525,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (525,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (525,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (526,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (526,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (526,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (527,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (527,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (527,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (528,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (528,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (528,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (529,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (529,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (530,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (530,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (530,5,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (531,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (531,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (531,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (532,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (532,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (532,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (533,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (533,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (533,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (534,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (534,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (534,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (535,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (535,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (535,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (536,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (536,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (537,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (537,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (537,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (538,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (538,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (538,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (539,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (539,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (539,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (540,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (540,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (540,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (541,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (541,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (541,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (542,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (542,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (542,3,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (543,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (543,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (543,4,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (544,1,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (544,2,'technicalAttributes'); +INSERT INTO object_classificationstore_groups_AP (`id`,`groupId`,`fieldname`) VALUES (544,4,'technicalAttributes'); diff --git a/dump/data-1-object_collection_FilterCategory_EF_FD.sql b/dump/data-1-object_collection_FilterCategory_EF_FD.sql index 9b39031d..78a8b4d3 100644 --- a/dump/data-1-object_collection_FilterCategory_EF_FD.sql +++ b/dump/data-1-object_collection_FilterCategory_EF_FD.sql @@ -1,10 +1,10 @@ SET NAMES utf8mb4; -INSERT INTO object_collection_FilterCategory_EF_FD (`o_id`,`index`,`fieldname`,`includeParentCategories`,`scriptPath`,`label`) VALUES (563,0,'filters',1,'','category'); -INSERT INTO object_collection_FilterCategory_EF_FD (`o_id`,`index`,`fieldname`,`includeParentCategories`,`scriptPath`,`label`) VALUES (697,1,'conditions',0,'',NULL); -INSERT INTO object_collection_FilterCategory_EF_FD (`o_id`,`index`,`fieldname`,`includeParentCategories`,`scriptPath`,`label`) VALUES (698,0,'conditions',0,'',NULL); -INSERT INTO object_collection_FilterCategory_EF_FD (`o_id`,`index`,`fieldname`,`includeParentCategories`,`scriptPath`,`label`) VALUES (760,0,'filters',1,'','category'); -INSERT INTO object_collection_FilterCategory_EF_FD (`o_id`,`index`,`fieldname`,`includeParentCategories`,`scriptPath`,`label`) VALUES (761,0,'filters',1,'','category'); -INSERT INTO object_collection_FilterCategory_EF_FD (`o_id`,`index`,`fieldname`,`includeParentCategories`,`scriptPath`,`label`) VALUES (762,0,'filters',1,'','category'); -INSERT INTO object_collection_FilterCategory_EF_FD (`o_id`,`index`,`fieldname`,`includeParentCategories`,`scriptPath`,`label`) VALUES (872,0,'conditions',0,'',NULL); +INSERT INTO object_collection_FilterCategory_EF_FD (`id`,`index`,`fieldname`,`includeParentCategories`,`scriptPath`,`label`) VALUES (563,0,'filters',1,'','category'); +INSERT INTO object_collection_FilterCategory_EF_FD (`id`,`index`,`fieldname`,`includeParentCategories`,`scriptPath`,`label`) VALUES (697,1,'conditions',0,'',NULL); +INSERT INTO object_collection_FilterCategory_EF_FD (`id`,`index`,`fieldname`,`includeParentCategories`,`scriptPath`,`label`) VALUES (698,0,'conditions',0,'',NULL); +INSERT INTO object_collection_FilterCategory_EF_FD (`id`,`index`,`fieldname`,`includeParentCategories`,`scriptPath`,`label`) VALUES (760,0,'filters',1,'','category'); +INSERT INTO object_collection_FilterCategory_EF_FD (`id`,`index`,`fieldname`,`includeParentCategories`,`scriptPath`,`label`) VALUES (761,0,'filters',1,'','category'); +INSERT INTO object_collection_FilterCategory_EF_FD (`id`,`index`,`fieldname`,`includeParentCategories`,`scriptPath`,`label`) VALUES (762,0,'filters',1,'','category'); +INSERT INTO object_collection_FilterCategory_EF_FD (`id`,`index`,`fieldname`,`includeParentCategories`,`scriptPath`,`label`) VALUES (872,0,'conditions',0,'',NULL); diff --git a/dump/data-1-object_collection_FilterMultiRelation_EF_FD.sql b/dump/data-1-object_collection_FilterMultiRelation_EF_FD.sql index 74a334a1..295199be 100644 --- a/dump/data-1-object_collection_FilterMultiRelation_EF_FD.sql +++ b/dump/data-1-object_collection_FilterMultiRelation_EF_FD.sql @@ -1,10 +1,10 @@ SET NAMES utf8mb4; -INSERT INTO object_collection_FilterMultiRelation_EF_FD (`o_id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`useAndCondition`,`scriptPath`,`label`) VALUES (563,1,'filters',NULL,'manufacturer','',0,'','manufacturer'); -INSERT INTO object_collection_FilterMultiRelation_EF_FD (`o_id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`useAndCondition`,`scriptPath`,`label`) VALUES (696,1,'filters',NULL,'bodyStyle','',0,'','bodyStyle'); -INSERT INTO object_collection_FilterMultiRelation_EF_FD (`o_id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`useAndCondition`,`scriptPath`,`label`) VALUES (697,1,'filters',NULL,'bodyStyle','',0,'','bodyStyle'); -INSERT INTO object_collection_FilterMultiRelation_EF_FD (`o_id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`useAndCondition`,`scriptPath`,`label`) VALUES (699,0,'filters',NULL,'bodyStyle','',0,'','bodyStyle'); -INSERT INTO object_collection_FilterMultiRelation_EF_FD (`o_id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`useAndCondition`,`scriptPath`,`label`) VALUES (760,1,'filters',NULL,'manufacturer','',0,'','manufacturer'); -INSERT INTO object_collection_FilterMultiRelation_EF_FD (`o_id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`useAndCondition`,`scriptPath`,`label`) VALUES (762,1,'filters',NULL,'manufacturer','',0,'','manufacturer'); -INSERT INTO object_collection_FilterMultiRelation_EF_FD (`o_id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`useAndCondition`,`scriptPath`,`label`) VALUES (872,0,'filters',NULL,'manufacturer','',0,'','manufacturer'); +INSERT INTO object_collection_FilterMultiRelation_EF_FD (`id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`useAndCondition`,`scriptPath`,`label`) VALUES (563,1,'filters',NULL,'manufacturer','',0,'','manufacturer'); +INSERT INTO object_collection_FilterMultiRelation_EF_FD (`id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`useAndCondition`,`scriptPath`,`label`) VALUES (696,1,'filters',NULL,'bodyStyle','',0,'','bodyStyle'); +INSERT INTO object_collection_FilterMultiRelation_EF_FD (`id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`useAndCondition`,`scriptPath`,`label`) VALUES (697,1,'filters',NULL,'bodyStyle','',0,'','bodyStyle'); +INSERT INTO object_collection_FilterMultiRelation_EF_FD (`id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`useAndCondition`,`scriptPath`,`label`) VALUES (699,0,'filters',NULL,'bodyStyle','',0,'','bodyStyle'); +INSERT INTO object_collection_FilterMultiRelation_EF_FD (`id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`useAndCondition`,`scriptPath`,`label`) VALUES (760,1,'filters',NULL,'manufacturer','',0,'','manufacturer'); +INSERT INTO object_collection_FilterMultiRelation_EF_FD (`id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`useAndCondition`,`scriptPath`,`label`) VALUES (762,1,'filters',NULL,'manufacturer','',0,'','manufacturer'); +INSERT INTO object_collection_FilterMultiRelation_EF_FD (`id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`useAndCondition`,`scriptPath`,`label`) VALUES (872,0,'filters',NULL,'manufacturer','',0,'','manufacturer'); diff --git a/dump/data-1-object_collection_FilterMultiSelectFromMultiSelect_EF_FD.sql b/dump/data-1-object_collection_FilterMultiSelectFromMultiSelect_EF_FD.sql index 8b944aec..506067c0 100644 --- a/dump/data-1-object_collection_FilterMultiSelectFromMultiSelect_EF_FD.sql +++ b/dump/data-1-object_collection_FilterMultiSelectFromMultiSelect_EF_FD.sql @@ -1,11 +1,11 @@ SET NAMES utf8mb4; -INSERT INTO object_collection_FilterMultiSelectFromMultiSelect_EF_FD (`o_id`,`index`,`fieldname`,`label`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`UseAndCondition`) VALUES (563,2,'filters','color','default','color','','',0); -INSERT INTO object_collection_FilterMultiSelectFromMultiSelect_EF_FD (`o_id`,`index`,`fieldname`,`label`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`UseAndCondition`) VALUES (696,0,'filters','color',NULL,'color','','',0); -INSERT INTO object_collection_FilterMultiSelectFromMultiSelect_EF_FD (`o_id`,`index`,`fieldname`,`label`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`UseAndCondition`) VALUES (697,0,'filters','color',NULL,'color','','',0); -INSERT INTO object_collection_FilterMultiSelectFromMultiSelect_EF_FD (`o_id`,`index`,`fieldname`,`label`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`UseAndCondition`) VALUES (698,1,'filters','color',NULL,'color','','',0); -INSERT INTO object_collection_FilterMultiSelectFromMultiSelect_EF_FD (`o_id`,`index`,`fieldname`,`label`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`UseAndCondition`) VALUES (699,1,'filters','color',NULL,'color','','',0); -INSERT INTO object_collection_FilterMultiSelectFromMultiSelect_EF_FD (`o_id`,`index`,`fieldname`,`label`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`UseAndCondition`) VALUES (761,1,'filters','color',NULL,'color','','',0); -INSERT INTO object_collection_FilterMultiSelectFromMultiSelect_EF_FD (`o_id`,`index`,`fieldname`,`label`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`UseAndCondition`) VALUES (762,2,'filters','color','default','color','','',0); -INSERT INTO object_collection_FilterMultiSelectFromMultiSelect_EF_FD (`o_id`,`index`,`fieldname`,`label`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`UseAndCondition`) VALUES (872,1,'filters','color','default','color','','',0); +INSERT INTO object_collection_FilterMultiSelectFromMultiSelect_EF_FD (`id`,`index`,`fieldname`,`label`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`UseAndCondition`) VALUES (563,2,'filters','color','default','color','','',0); +INSERT INTO object_collection_FilterMultiSelectFromMultiSelect_EF_FD (`id`,`index`,`fieldname`,`label`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`UseAndCondition`) VALUES (696,0,'filters','color',NULL,'color','','',0); +INSERT INTO object_collection_FilterMultiSelectFromMultiSelect_EF_FD (`id`,`index`,`fieldname`,`label`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`UseAndCondition`) VALUES (697,0,'filters','color',NULL,'color','','',0); +INSERT INTO object_collection_FilterMultiSelectFromMultiSelect_EF_FD (`id`,`index`,`fieldname`,`label`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`UseAndCondition`) VALUES (698,1,'filters','color',NULL,'color','','',0); +INSERT INTO object_collection_FilterMultiSelectFromMultiSelect_EF_FD (`id`,`index`,`fieldname`,`label`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`UseAndCondition`) VALUES (699,1,'filters','color',NULL,'color','','',0); +INSERT INTO object_collection_FilterMultiSelectFromMultiSelect_EF_FD (`id`,`index`,`fieldname`,`label`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`UseAndCondition`) VALUES (761,1,'filters','color',NULL,'color','','',0); +INSERT INTO object_collection_FilterMultiSelectFromMultiSelect_EF_FD (`id`,`index`,`fieldname`,`label`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`UseAndCondition`) VALUES (762,2,'filters','color','default','color','','',0); +INSERT INTO object_collection_FilterMultiSelectFromMultiSelect_EF_FD (`id`,`index`,`fieldname`,`label`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`UseAndCondition`) VALUES (872,1,'filters','color','default','color','','',0); diff --git a/dump/data-1-object_collection_FilterMultiSelect_EF_FD.sql b/dump/data-1-object_collection_FilterMultiSelect_EF_FD.sql index ff15b154..768decdb 100644 --- a/dump/data-1-object_collection_FilterMultiSelect_EF_FD.sql +++ b/dump/data-1-object_collection_FilterMultiSelect_EF_FD.sql @@ -1,4 +1,4 @@ SET NAMES utf8mb4; -INSERT INTO object_collection_FilterMultiSelect_EF_FD (`o_id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`UseAndCondition`,`label`) VALUES (699,2,'filters',NULL,'carClass','','',0,'carClass'); +INSERT INTO object_collection_FilterMultiSelect_EF_FD (`id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`UseAndCondition`,`label`) VALUES (699,2,'filters',NULL,'carClass','','',0,'carClass'); diff --git a/dump/data-1-object_collection_FilterNumberRangeSelection_EF_FD.sql b/dump/data-1-object_collection_FilterNumberRangeSelection_EF_FD.sql index 6d12bc56..662aba9d 100644 --- a/dump/data-1-object_collection_FilterNumberRangeSelection_EF_FD.sql +++ b/dump/data-1-object_collection_FilterNumberRangeSelection_EF_FD.sql @@ -1,7 +1,7 @@ SET NAMES utf8mb4; -INSERT INTO object_collection_FilterNumberRangeSelection_EF_FD (`o_id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`ranges__range1#from`,`ranges__range1#to`,`ranges__range2#from`,`ranges__range2#to`,`ranges__range3#from`,`ranges__range3#to`,`ranges__range4#from`,`ranges__range4#to`,`preSelectFrom`,`preSelectTo`,`scriptPath`,`unit`,`label`) VALUES (760,2,'filters',NULL,'milage',NULL,0,100000,100000,150000,150000,200000,200000,0,NULL,NULL,'','','mileage'); -INSERT INTO object_collection_FilterNumberRangeSelection_EF_FD (`o_id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`ranges__range1#from`,`ranges__range1#to`,`ranges__range2#from`,`ranges__range2#to`,`ranges__range3#from`,`ranges__range3#to`,`ranges__range4#from`,`ranges__range4#to`,`preSelectFrom`,`preSelectTo`,`scriptPath`,`unit`,`label`) VALUES (761,2,'filters',NULL,'length',NULL,0,3000,3000,4000,4000,0,0,0,NULL,NULL,'','','length'); -INSERT INTO object_collection_FilterNumberRangeSelection_EF_FD (`o_id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`ranges__range1#from`,`ranges__range1#to`,`ranges__range2#from`,`ranges__range2#to`,`ranges__range3#from`,`ranges__range3#to`,`ranges__range4#from`,`ranges__range4#to`,`preSelectFrom`,`preSelectTo`,`scriptPath`,`unit`,`label`) VALUES (762,3,'filters',NULL,'power',NULL,0,80,80,130,130,180,180,0,NULL,NULL,'','','power'); -INSERT INTO object_collection_FilterNumberRangeSelection_EF_FD (`o_id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`ranges__range1#from`,`ranges__range1#to`,`ranges__range2#from`,`ranges__range2#to`,`ranges__range3#from`,`ranges__range3#to`,`ranges__range4#from`,`ranges__range4#to`,`preSelectFrom`,`preSelectTo`,`scriptPath`,`unit`,`label`) VALUES (762,4,'filters',NULL,'length',NULL,0,4000,4000,4300,4300,4600,4600,0,NULL,NULL,'','','length'); +INSERT INTO object_collection_FilterNumberRangeSelection_EF_FD (`id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`ranges__range1#from`,`ranges__range1#to`,`ranges__range2#from`,`ranges__range2#to`,`ranges__range3#from`,`ranges__range3#to`,`ranges__range4#from`,`ranges__range4#to`,`preSelectFrom`,`preSelectTo`,`scriptPath`,`unit`,`label`) VALUES (760,2,'filters',NULL,'milage',NULL,0,100000,100000,150000,150000,200000,200000,0,NULL,NULL,'','','mileage'); +INSERT INTO object_collection_FilterNumberRangeSelection_EF_FD (`id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`ranges__range1#from`,`ranges__range1#to`,`ranges__range2#from`,`ranges__range2#to`,`ranges__range3#from`,`ranges__range3#to`,`ranges__range4#from`,`ranges__range4#to`,`preSelectFrom`,`preSelectTo`,`scriptPath`,`unit`,`label`) VALUES (761,2,'filters',NULL,'length',NULL,0,3000,3000,4000,4000,0,0,0,NULL,NULL,'','','length'); +INSERT INTO object_collection_FilterNumberRangeSelection_EF_FD (`id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`ranges__range1#from`,`ranges__range1#to`,`ranges__range2#from`,`ranges__range2#to`,`ranges__range3#from`,`ranges__range3#to`,`ranges__range4#from`,`ranges__range4#to`,`preSelectFrom`,`preSelectTo`,`scriptPath`,`unit`,`label`) VALUES (762,3,'filters',NULL,'power',NULL,0,80,80,130,130,180,180,0,NULL,NULL,'','','power'); +INSERT INTO object_collection_FilterNumberRangeSelection_EF_FD (`id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`ranges__range1#from`,`ranges__range1#to`,`ranges__range2#from`,`ranges__range2#to`,`ranges__range3#from`,`ranges__range3#to`,`ranges__range4#from`,`ranges__range4#to`,`preSelectFrom`,`preSelectTo`,`scriptPath`,`unit`,`label`) VALUES (762,4,'filters',NULL,'length',NULL,0,4000,4000,4300,4300,4600,4600,0,NULL,NULL,'','','length'); diff --git a/dump/data-1-object_collection_FilterRelation_EF_FD.sql b/dump/data-1-object_collection_FilterRelation_EF_FD.sql index 5d088483..1df61963 100644 --- a/dump/data-1-object_collection_FilterRelation_EF_FD.sql +++ b/dump/data-1-object_collection_FilterRelation_EF_FD.sql @@ -1,7 +1,7 @@ SET NAMES utf8mb4; -INSERT INTO object_collection_FilterRelation_EF_FD (`o_id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`label`) VALUES (696,0,'conditions',NULL,'manufacturer','59','',NULL); -INSERT INTO object_collection_FilterRelation_EF_FD (`o_id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`label`) VALUES (697,0,'conditions',NULL,'manufacturer','106','',NULL); -INSERT INTO object_collection_FilterRelation_EF_FD (`o_id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`label`) VALUES (698,0,'filters',NULL,'manufacturer',NULL,'','manufacturer'); -INSERT INTO object_collection_FilterRelation_EF_FD (`o_id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`label`) VALUES (699,0,'conditions',NULL,'manufacturer','206','',NULL); +INSERT INTO object_collection_FilterRelation_EF_FD (`id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`label`) VALUES (696,0,'conditions',NULL,'manufacturer','59','',NULL); +INSERT INTO object_collection_FilterRelation_EF_FD (`id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`label`) VALUES (697,0,'conditions',NULL,'manufacturer','106','',NULL); +INSERT INTO object_collection_FilterRelation_EF_FD (`id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`label`) VALUES (698,0,'filters',NULL,'manufacturer',NULL,'','manufacturer'); +INSERT INTO object_collection_FilterRelation_EF_FD (`id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`label`) VALUES (699,0,'conditions',NULL,'manufacturer','206','',NULL); diff --git a/dump/data-1-object_collection_FilterSelect_EF_FD.sql b/dump/data-1-object_collection_FilterSelect_EF_FD.sql index 5f7b4425..95681e36 100644 --- a/dump/data-1-object_collection_FilterSelect_EF_FD.sql +++ b/dump/data-1-object_collection_FilterSelect_EF_FD.sql @@ -1,5 +1,5 @@ SET NAMES utf8mb4; -INSERT INTO object_collection_FilterSelect_EF_FD (`o_id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`label`) VALUES (563,3,'filters','default','carClass',NULL,'','carClass'); -INSERT INTO object_collection_FilterSelect_EF_FD (`o_id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`label`) VALUES (872,2,'filters','default','carClass',NULL,'','carClass'); +INSERT INTO object_collection_FilterSelect_EF_FD (`id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`label`) VALUES (563,3,'filters','default','carClass',NULL,'','carClass'); +INSERT INTO object_collection_FilterSelect_EF_FD (`id`,`index`,`fieldname`,`field__tenant`,`field__field`,`field__preSelect`,`scriptPath`,`label`) VALUES (872,2,'filters','default','carClass',NULL,'','carClass'); diff --git a/dump/data-1-object_collection_NewsCars_NE.sql b/dump/data-1-object_collection_NewsCars_NE.sql index 363f96b9..b6ec5f9e 100644 --- a/dump/data-1-object_collection_NewsCars_NE.sql +++ b/dump/data-1-object_collection_NewsCars_NE.sql @@ -1,7 +1,7 @@ SET NAMES utf8mb4; -INSERT INTO object_collection_NewsCars_NE (`o_id`,`index`,`fieldname`) VALUES (767,1,'content'); -INSERT INTO object_collection_NewsCars_NE (`o_id`,`index`,`fieldname`) VALUES (768,1,'content'); -INSERT INTO object_collection_NewsCars_NE (`o_id`,`index`,`fieldname`) VALUES (770,1,'content'); -INSERT INTO object_collection_NewsCars_NE (`o_id`,`index`,`fieldname`) VALUES (773,2,'content'); +INSERT INTO object_collection_NewsCars_NE (`id`,`index`,`fieldname`) VALUES (767,1,'content'); +INSERT INTO object_collection_NewsCars_NE (`id`,`index`,`fieldname`) VALUES (768,1,'content'); +INSERT INTO object_collection_NewsCars_NE (`id`,`index`,`fieldname`) VALUES (770,1,'content'); +INSERT INTO object_collection_NewsCars_NE (`id`,`index`,`fieldname`) VALUES (773,2,'content'); diff --git a/dump/data-1-object_collection_NewsLinks_NE.sql b/dump/data-1-object_collection_NewsLinks_NE.sql index 563d4ea2..2f0cf41b 100644 --- a/dump/data-1-object_collection_NewsLinks_NE.sql +++ b/dump/data-1-object_collection_NewsLinks_NE.sql @@ -1,4 +1,4 @@ SET NAMES utf8mb4; -INSERT INTO object_collection_NewsLinks_NE (`o_id`,`index`,`fieldname`,`links`) VALUES (773,1,'content','a:2:{i:0;a:1:{s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"type\";s:4:\"link\";s:4:\"data\";O:34:\"Pimcore\\Model\\DataObject\\Data\\Link\":17:{s:7:\"\0*\0text\";s:10:\"Life Style\";s:15:\"\0*\0internalType\";s:8:\"document\";s:11:\"\0*\0internal\";i:99;s:9:\"\0*\0direct\";N;s:11:\"\0*\0linktype\";s:8:\"internal\";s:9:\"\0*\0target\";s:0:\"\";s:13:\"\0*\0parameters\";s:0:\"\";s:9:\"\0*\0anchor\";s:0:\"\";s:8:\"\0*\0title\";s:0:\"\";s:12:\"\0*\0accesskey\";s:0:\"\";s:6:\"\0*\0rel\";s:0:\"\";s:11:\"\0*\0tabindex\";s:0:\"\";s:8:\"\0*\0class\";s:0:\"\";s:13:\"\0*\0attributes\";s:0:\"\";s:9:\"\0*\0_owner\";N;s:13:\"\0*\0_fieldname\";N;s:12:\"\0*\0_language\";N;}}}i:1;a:1:{s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"type\";s:4:\"link\";s:4:\"data\";O:34:\"Pimcore\\Model\\DataObject\\Data\\Link\":17:{s:7:\"\0*\0text\";s:11:\"Car Gallery\";s:15:\"\0*\0internalType\";s:8:\"document\";s:11:\"\0*\0internal\";i:103;s:9:\"\0*\0direct\";N;s:11:\"\0*\0linktype\";s:8:\"internal\";s:9:\"\0*\0target\";s:0:\"\";s:13:\"\0*\0parameters\";s:0:\"\";s:9:\"\0*\0anchor\";s:0:\"\";s:8:\"\0*\0title\";s:0:\"\";s:12:\"\0*\0accesskey\";s:0:\"\";s:6:\"\0*\0rel\";s:0:\"\";s:11:\"\0*\0tabindex\";s:0:\"\";s:8:\"\0*\0class\";s:0:\"\";s:13:\"\0*\0attributes\";s:0:\"\";s:9:\"\0*\0_owner\";N;s:13:\"\0*\0_fieldname\";N;s:12:\"\0*\0_language\";N;}}}}'); +INSERT INTO object_collection_NewsLinks_NE (`id`,`index`,`fieldname`,`links`) VALUES (773,1,'content','a:2:{i:0;a:1:{s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"type\";s:4:\"link\";s:4:\"data\";O:34:\"Pimcore\\Model\\DataObject\\Data\\Link\":17:{s:7:\"\0*\0text\";s:10:\"Life Style\";s:15:\"\0*\0internalType\";s:8:\"document\";s:11:\"\0*\0internal\";i:99;s:9:\"\0*\0direct\";N;s:11:\"\0*\0linktype\";s:8:\"internal\";s:9:\"\0*\0target\";s:0:\"\";s:13:\"\0*\0parameters\";s:0:\"\";s:9:\"\0*\0anchor\";s:0:\"\";s:8:\"\0*\0title\";s:0:\"\";s:12:\"\0*\0accesskey\";s:0:\"\";s:6:\"\0*\0rel\";s:0:\"\";s:11:\"\0*\0tabindex\";s:0:\"\";s:8:\"\0*\0class\";s:0:\"\";s:13:\"\0*\0attributes\";s:0:\"\";s:9:\"\0*\0_owner\";N;s:13:\"\0*\0_fieldname\";N;s:12:\"\0*\0_language\";N;}}}i:1;a:1:{s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"type\";s:4:\"link\";s:4:\"data\";O:34:\"Pimcore\\Model\\DataObject\\Data\\Link\":17:{s:7:\"\0*\0text\";s:11:\"Car Gallery\";s:15:\"\0*\0internalType\";s:8:\"document\";s:11:\"\0*\0internal\";i:103;s:9:\"\0*\0direct\";N;s:11:\"\0*\0linktype\";s:8:\"internal\";s:9:\"\0*\0target\";s:0:\"\";s:13:\"\0*\0parameters\";s:0:\"\";s:9:\"\0*\0anchor\";s:0:\"\";s:8:\"\0*\0title\";s:0:\"\";s:12:\"\0*\0accesskey\";s:0:\"\";s:6:\"\0*\0rel\";s:0:\"\";s:11:\"\0*\0tabindex\";s:0:\"\";s:8:\"\0*\0class\";s:0:\"\";s:13:\"\0*\0attributes\";s:0:\"\";s:9:\"\0*\0_owner\";N;s:13:\"\0*\0_fieldname\";N;s:12:\"\0*\0_language\";N;}}}}'); diff --git a/dump/data-1-object_collection_NewsText_NE.sql b/dump/data-1-object_collection_NewsText_NE.sql index 7138087a..95fa03c2 100644 --- a/dump/data-1-object_collection_NewsText_NE.sql +++ b/dump/data-1-object_collection_NewsText_NE.sql @@ -1,12 +1,12 @@ SET NAMES utf8mb4; -INSERT INTO object_collection_NewsText_NE (`o_id`,`index`,`fieldname`) VALUES (765,0,'content'); -INSERT INTO object_collection_NewsText_NE (`o_id`,`index`,`fieldname`) VALUES (766,0,'content'); -INSERT INTO object_collection_NewsText_NE (`o_id`,`index`,`fieldname`) VALUES (767,0,'content'); -INSERT INTO object_collection_NewsText_NE (`o_id`,`index`,`fieldname`) VALUES (768,0,'content'); -INSERT INTO object_collection_NewsText_NE (`o_id`,`index`,`fieldname`) VALUES (769,0,'content'); -INSERT INTO object_collection_NewsText_NE (`o_id`,`index`,`fieldname`) VALUES (770,0,'content'); -INSERT INTO object_collection_NewsText_NE (`o_id`,`index`,`fieldname`) VALUES (771,0,'content'); -INSERT INTO object_collection_NewsText_NE (`o_id`,`index`,`fieldname`) VALUES (772,0,'content'); -INSERT INTO object_collection_NewsText_NE (`o_id`,`index`,`fieldname`) VALUES (773,0,'content'); +INSERT INTO object_collection_NewsText_NE (`id`,`index`,`fieldname`) VALUES (765,0,'content'); +INSERT INTO object_collection_NewsText_NE (`id`,`index`,`fieldname`) VALUES (766,0,'content'); +INSERT INTO object_collection_NewsText_NE (`id`,`index`,`fieldname`) VALUES (767,0,'content'); +INSERT INTO object_collection_NewsText_NE (`id`,`index`,`fieldname`) VALUES (768,0,'content'); +INSERT INTO object_collection_NewsText_NE (`id`,`index`,`fieldname`) VALUES (769,0,'content'); +INSERT INTO object_collection_NewsText_NE (`id`,`index`,`fieldname`) VALUES (770,0,'content'); +INSERT INTO object_collection_NewsText_NE (`id`,`index`,`fieldname`) VALUES (771,0,'content'); +INSERT INTO object_collection_NewsText_NE (`id`,`index`,`fieldname`) VALUES (772,0,'content'); +INSERT INTO object_collection_NewsText_NE (`id`,`index`,`fieldname`) VALUES (773,0,'content'); diff --git a/dump/data-1-object_collection_OrderPriceModifications_EF_OSO.sql b/dump/data-1-object_collection_OrderPriceModifications_EF_OSO.sql index f92d5cbc..b7ebfd24 100644 --- a/dump/data-1-object_collection_OrderPriceModifications_EF_OSO.sql +++ b/dump/data-1-object_collection_OrderPriceModifications_EF_OSO.sql @@ -1,20 +1,20 @@ SET NAMES utf8mb4; -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1161,0,'priceModifications','Shipping','170.9402','200.0000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1164,0,'priceModifications','Shipping','179.4872','210.0000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1167,0,'priceModifications','Shipping','170.9402','200.0000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1167,1,'priceModifications','Cart Discount','-838.3590','-980.8800',6); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1169,0,'priceModifications','Shipping','170.9402','200.0000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1171,0,'priceModifications','Shipping','341.8803','400.0000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1171,1,'priceModifications','Cart Discount','-2333.1282','-2729.7600',6); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1174,0,'priceModifications','Shipping','341.8803','400.0000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1174,1,'priceModifications','Cart Discount','-928.0000','-1085.7600',6); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1177,0,'priceModifications','Shipping','170.9402','200.0000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1179,0,'priceModifications','Shipping','8.5470','10.0000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1182,0,'priceModifications','Shipping','170.9402','200.0000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1182,1,'priceModifications','Cart Discount','-2192.2051','-2564.8800',6); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1184,0,'priceModifications','Shipping','170.9402','200.0000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1184,1,'priceModifications','Cart Discount','-1656.3077','-1937.8800',6); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1186,0,'priceModifications','Shipping','341.8803','400.0000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1186,1,'priceModifications','Cart Discount','-3158.7692','-3695.7600',6); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1161,0,'priceModifications','Shipping','170.9402','200.0000',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1164,0,'priceModifications','Shipping','179.4872','210.0000',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1167,0,'priceModifications','Shipping','170.9402','200.0000',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1167,1,'priceModifications','Cart Discount','-838.3590','-980.8800',6); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1169,0,'priceModifications','Shipping','170.9402','200.0000',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1171,0,'priceModifications','Shipping','341.8803','400.0000',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1171,1,'priceModifications','Cart Discount','-2333.1282','-2729.7600',6); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1174,0,'priceModifications','Shipping','341.8803','400.0000',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1174,1,'priceModifications','Cart Discount','-928.0000','-1085.7600',6); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1177,0,'priceModifications','Shipping','170.9402','200.0000',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1179,0,'priceModifications','Shipping','8.5470','10.0000',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1182,0,'priceModifications','Shipping','170.9402','200.0000',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1182,1,'priceModifications','Cart Discount','-2192.2051','-2564.8800',6); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1184,0,'priceModifications','Shipping','170.9402','200.0000',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1184,1,'priceModifications','Cart Discount','-1656.3077','-1937.8800',6); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1186,0,'priceModifications','Shipping','341.8803','400.0000',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES (1186,1,'priceModifications','Cart Discount','-3158.7692','-3695.7600',6); diff --git a/dump/data-1-object_collection_PaymentInfo_EF_OSO.sql b/dump/data-1-object_collection_PaymentInfo_EF_OSO.sql index ccd40819..a37e1a5d 100644 --- a/dump/data-1-object_collection_PaymentInfo_EF_OSO.sql +++ b/dump/data-1-object_collection_PaymentInfo_EF_OSO.sql @@ -1,15 +1,15 @@ SET NAMES utf8mb4; -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1161,0,'paymentInfo',1643290010,1643290051,'9CT34444M22539158','committed','payment_4003786380-1~1161',' ','{\"transactionId\":\"6FH331797B7658923\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1164,0,'paymentInfo',1643290226,1643290327,'6P219778U2879173E','committed','payment_2570671871-1~1164',' ','{\"transactionId\":\"7T4647780G5719056\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1167,0,'paymentInfo',1643290493,1643290511,'6JJ73082Y6212093P','committed','payment_4207962121-1~1167',' ','{\"transactionId\":\"5EJ606792W119123U\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1169,0,'paymentInfo',1643291036,1643291119,'2EM467546N444340L','committed','payment_689139465-1~1169',' ','{\"transactionId\":\"2UR98580U0727211W\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1171,0,'paymentInfo',1643291281,NULL,NULL,'cancelled','payment_157424135-1~1171','Payment cancelled by \'cancelStartedOrderPayment\'',NULL,NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1171,1,'paymentInfo',1643291324,1643291376,'25G06452DD907934U','committed','payment_157424135-2~1171',' ','{\"transactionId\":\"7NE073394U978643D\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1174,0,'paymentInfo',1643291617,1643291837,'0PW47704US056523W','committed','payment_2097775836-1~1174',' ','{\"transactionId\":\"5EN41106U0891135X\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1177,0,'paymentInfo',1643292030,1643292080,'2WD483862M3756428','committed','payment_1272845173-1~1177',' ','{\"transactionId\":\"36602535NW5366458\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1179,0,'paymentInfo',1643292213,1643292265,'47K11814GM581932X','committed','payment_2441237792-1~1179',' ','{\"transactionId\":\"9HK67422MN1070549\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1182,0,'paymentInfo',1643292291,1643292329,'6R3238856S495354E','committed','payment_3597057789-1~1182',' ','{\"transactionId\":\"29M94837MJ593863J\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1184,0,'paymentInfo',1643292381,1643292481,'8KG85242WB406050N','committed','payment_1887415702-1~1184',' ','{\"transactionId\":\"76754657A50461941\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1186,0,'paymentInfo',1643292624,1643292639,'6B458608LD1779402','committed','payment_2447578645-1~1186',' ','{\"transactionId\":\"6AS25639NB322905M\"}',NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1161,0,'paymentInfo',1643290010,1643290051,'9CT34444M22539158','committed','payment_4003786380-1~1161',' ','{\"transactionId\":\"6FH331797B7658923\"}',NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1164,0,'paymentInfo',1643290226,1643290327,'6P219778U2879173E','committed','payment_2570671871-1~1164',' ','{\"transactionId\":\"7T4647780G5719056\"}',NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1167,0,'paymentInfo',1643290493,1643290511,'6JJ73082Y6212093P','committed','payment_4207962121-1~1167',' ','{\"transactionId\":\"5EJ606792W119123U\"}',NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1169,0,'paymentInfo',1643291036,1643291119,'2EM467546N444340L','committed','payment_689139465-1~1169',' ','{\"transactionId\":\"2UR98580U0727211W\"}',NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1171,0,'paymentInfo',1643291281,NULL,NULL,'cancelled','payment_157424135-1~1171','Payment cancelled by \'cancelStartedOrderPayment\'',NULL,NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1171,1,'paymentInfo',1643291324,1643291376,'25G06452DD907934U','committed','payment_157424135-2~1171',' ','{\"transactionId\":\"7NE073394U978643D\"}',NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1174,0,'paymentInfo',1643291617,1643291837,'0PW47704US056523W','committed','payment_2097775836-1~1174',' ','{\"transactionId\":\"5EN41106U0891135X\"}',NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1177,0,'paymentInfo',1643292030,1643292080,'2WD483862M3756428','committed','payment_1272845173-1~1177',' ','{\"transactionId\":\"36602535NW5366458\"}',NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1179,0,'paymentInfo',1643292213,1643292265,'47K11814GM581932X','committed','payment_2441237792-1~1179',' ','{\"transactionId\":\"9HK67422MN1070549\"}',NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1182,0,'paymentInfo',1643292291,1643292329,'6R3238856S495354E','committed','payment_3597057789-1~1182',' ','{\"transactionId\":\"29M94837MJ593863J\"}',NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1184,0,'paymentInfo',1643292381,1643292481,'8KG85242WB406050N','committed','payment_1887415702-1~1184',' ','{\"transactionId\":\"76754657A50461941\"}',NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES (1186,0,'paymentInfo',1643292624,1643292639,'6B458608LD1779402','committed','payment_2447578645-1~1186',' ','{\"transactionId\":\"6AS25639NB322905M\"}',NULL,NULL); diff --git a/dump/data-1-object_collection_PricingRule_EF_OSOI.sql b/dump/data-1-object_collection_PricingRule_EF_OSOI.sql index af3dfc9c..a9caca77 100644 --- a/dump/data-1-object_collection_PricingRule_EF_OSOI.sql +++ b/dump/data-1-object_collection_PricingRule_EF_OSOI.sql @@ -1,5 +1,5 @@ SET NAMES utf8mb4; -INSERT INTO object_collection_PricingRule_EF_OSOI (`o_id`,`index`,`fieldname`,`ruleId`) VALUES (1165,0,'pricingRules',7); -INSERT INTO object_collection_PricingRule_EF_OSOI (`o_id`,`index`,`fieldname`,`ruleId`) VALUES (1180,0,'pricingRules',7); +INSERT INTO object_collection_PricingRule_EF_OSOI (`id`,`index`,`fieldname`,`ruleId`) VALUES (1165,0,'pricingRules',7); +INSERT INTO object_collection_PricingRule_EF_OSOI (`id`,`index`,`fieldname`,`ruleId`) VALUES (1180,0,'pricingRules',7); diff --git a/dump/data-1-object_collection_TaxEntry_EF_OSTC.sql b/dump/data-1-object_collection_TaxEntry_EF_OSTC.sql index 75bb0da7..ea9354dc 100644 --- a/dump/data-1-object_collection_TaxEntry_EF_OSTC.sql +++ b/dump/data-1-object_collection_TaxEntry_EF_OSTC.sql @@ -1,5 +1,5 @@ SET NAMES utf8mb4; -INSERT INTO object_collection_TaxEntry_EF_OSTC (`o_id`,`index`,`fieldname`,`percent`) VALUES (693,0,'taxEntries',15); -INSERT INTO object_collection_TaxEntry_EF_OSTC (`o_id`,`index`,`fieldname`,`percent`) VALUES (693,1,'taxEntries',2); +INSERT INTO object_collection_TaxEntry_EF_OSTC (`id`,`index`,`fieldname`,`percent`) VALUES (693,0,'taxEntries',15); +INSERT INTO object_collection_TaxEntry_EF_OSTC (`id`,`index`,`fieldname`,`percent`) VALUES (693,1,'taxEntries',2); diff --git a/dump/data-1-object_collection_VoucherTokenTypePattern_EF_OSVS.sql b/dump/data-1-object_collection_VoucherTokenTypePattern_EF_OSVS.sql index db030a61..22028cdd 100644 --- a/dump/data-1-object_collection_VoucherTokenTypePattern_EF_OSVS.sql +++ b/dump/data-1-object_collection_VoucherTokenTypePattern_EF_OSVS.sql @@ -1,4 +1,4 @@ SET NAMES utf8mb4; -INSERT INTO object_collection_VoucherTokenTypePattern_EF_OSVS (`o_id`,`index`,`fieldname`,`count`,`prefix`,`length`,`characterType`,`separator`,`separatorCount`,`allowOncePerCart`,`onlyTokenPerCart`) VALUES (865,0,'tokenSettings',5,'com_',4,'numeric','','4',1,0); +INSERT INTO object_collection_VoucherTokenTypePattern_EF_OSVS (`id`,`index`,`fieldname`,`count`,`prefix`,`length`,`characterType`,`separator`,`separatorCount`,`allowOncePerCart`,`onlyTokenPerCart`) VALUES (865,0,'tokenSettings',5,'com_',4,'numeric','','4',1,0); diff --git a/dump/data-1-object_collection_VoucherTokenTypeSingle_EF_OSVS.sql b/dump/data-1-object_collection_VoucherTokenTypeSingle_EF_OSVS.sql index 1e283f2f..f793f49a 100644 --- a/dump/data-1-object_collection_VoucherTokenTypeSingle_EF_OSVS.sql +++ b/dump/data-1-object_collection_VoucherTokenTypeSingle_EF_OSVS.sql @@ -1,4 +1,4 @@ SET NAMES utf8mb4; -INSERT INTO object_collection_VoucherTokenTypeSingle_EF_OSVS (`o_id`,`index`,`fieldname`,`token`,`usages`,`onlyTokenPerCart`) VALUES (864,0,'tokenSettings','FREE_SHIPPING','100',0); +INSERT INTO object_collection_VoucherTokenTypeSingle_EF_OSVS (`id`,`index`,`fieldname`,`token`,`usages`,`onlyTokenPerCart`) VALUES (864,0,'tokenSettings','FREE_SHIPPING','100',0); diff --git a/dump/data-1-object_metadata_CU.sql b/dump/data-1-object_metadata_CU.sql index 0109034f..e6be1434 100644 --- a/dump/data-1-object_metadata_CU.sql +++ b/dump/data-1-object_metadata_CU.sql @@ -1,67 +1,67 @@ SET NAMES utf8mb4; -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1015,834,'object','calculatedSegments','application_counter',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1015,834,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1015,1027,'object','calculatedSegments','application_counter',NULL,'object','','0',2); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1015,1027,'object','calculatedSegments','created_timestamp',NULL,'object','','0',2); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1016,835,'object','calculatedSegments','application_counter',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1016,835,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1016,1027,'object','calculatedSegments','application_counter',NULL,'object','','0',2); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1016,1027,'object','calculatedSegments','created_timestamp',NULL,'object','','0',2); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1017,835,'object','calculatedSegments','application_counter',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1017,835,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1017,1027,'object','calculatedSegments','application_counter',NULL,'object','','0',2); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1017,1027,'object','calculatedSegments','created_timestamp',NULL,'object','','0',2); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1018,834,'object','calculatedSegments','application_counter',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1018,834,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1018,1027,'object','calculatedSegments','application_counter',NULL,'object','','0',2); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1018,1027,'object','calculatedSegments','created_timestamp',NULL,'object','','0',2); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1019,834,'object','calculatedSegments','application_counter',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1019,834,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1019,1031,'object','calculatedSegments','application_counter',NULL,'object','','0',2); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1019,1031,'object','calculatedSegments','created_timestamp',NULL,'object','','0',2); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,825,'object','calculatedSegments','application_counter',NULL,'object','','0',7); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,825,'object','calculatedSegments','created_timestamp',NULL,'object','','0',7); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,835,'object','calculatedSegments','application_counter',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,835,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,860,'object','calculatedSegments','application_counter',NULL,'object','','0',8); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,860,'object','calculatedSegments','created_timestamp',NULL,'object','','0',8); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,862,'object','calculatedSegments','application_counter',NULL,'object','','0',9); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,862,'object','calculatedSegments','created_timestamp',NULL,'object','','0',9); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,875,'object','calculatedSegments','application_counter','1','object','','0',6); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,875,'object','calculatedSegments','created_timestamp','1566903576','object','','0',6); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,876,'object','calculatedSegments','application_counter','3','object','','0',10); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,876,'object','calculatedSegments','created_timestamp','1566911739','object','','0',10); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,963,'object','calculatedSegments','application_counter',NULL,'object','','0',4); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,963,'object','calculatedSegments','created_timestamp',NULL,'object','','0',4); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,965,'object','calculatedSegments','application_counter',NULL,'object','','0',5); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,965,'object','calculatedSegments','created_timestamp',NULL,'object','','0',5); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,971,'object','calculatedSegments','application_counter',NULL,'object','','0',3); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,971,'object','calculatedSegments','created_timestamp',NULL,'object','','0',3); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,1031,'object','calculatedSegments','application_counter',NULL,'object','','0',2); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,1031,'object','calculatedSegments','created_timestamp',NULL,'object','','0',2); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1021,824,'object','calculatedSegments','application_counter',NULL,'object','','0',3); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1021,824,'object','calculatedSegments','created_timestamp',NULL,'object','','0',3); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1021,834,'object','calculatedSegments','application_counter',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1021,834,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1021,1031,'object','calculatedSegments','application_counter',NULL,'object','','0',2); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1021,1031,'object','calculatedSegments','created_timestamp',NULL,'object','','0',2); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1022,834,'object','calculatedSegments','application_counter',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1022,834,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1023,835,'object','calculatedSegments','application_counter',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1023,835,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1024,834,'object','calculatedSegments','application_counter',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1024,834,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1024,839,'object','calculatedSegments','application_counter',NULL,'object','','0',2); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1024,839,'object','calculatedSegments','created_timestamp',NULL,'object','','0',2); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1025,834,'object','calculatedSegments','application_counter',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1025,834,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1025,1036,'object','calculatedSegments','application_counter',NULL,'object','','0',2); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1025,1036,'object','calculatedSegments','created_timestamp',NULL,'object','','0',2); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1045,834,'object','calculatedSegments','application_counter',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1045,834,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1048,834,'object','calculatedSegments','application_counter',NULL,'object','','0',2); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1048,834,'object','calculatedSegments','created_timestamp',NULL,'object','','0',2); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1048,1031,'object','calculatedSegments','application_counter',NULL,'object','','0',1); -INSERT INTO object_metadata_CU (`o_id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1048,1031,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1015,834,'object','calculatedSegments','application_counter',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1015,834,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1015,1027,'object','calculatedSegments','application_counter',NULL,'object','','0',2); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1015,1027,'object','calculatedSegments','created_timestamp',NULL,'object','','0',2); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1016,835,'object','calculatedSegments','application_counter',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1016,835,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1016,1027,'object','calculatedSegments','application_counter',NULL,'object','','0',2); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1016,1027,'object','calculatedSegments','created_timestamp',NULL,'object','','0',2); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1017,835,'object','calculatedSegments','application_counter',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1017,835,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1017,1027,'object','calculatedSegments','application_counter',NULL,'object','','0',2); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1017,1027,'object','calculatedSegments','created_timestamp',NULL,'object','','0',2); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1018,834,'object','calculatedSegments','application_counter',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1018,834,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1018,1027,'object','calculatedSegments','application_counter',NULL,'object','','0',2); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1018,1027,'object','calculatedSegments','created_timestamp',NULL,'object','','0',2); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1019,834,'object','calculatedSegments','application_counter',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1019,834,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1019,1031,'object','calculatedSegments','application_counter',NULL,'object','','0',2); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1019,1031,'object','calculatedSegments','created_timestamp',NULL,'object','','0',2); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,825,'object','calculatedSegments','application_counter',NULL,'object','','0',7); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,825,'object','calculatedSegments','created_timestamp',NULL,'object','','0',7); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,835,'object','calculatedSegments','application_counter',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,835,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,860,'object','calculatedSegments','application_counter',NULL,'object','','0',8); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,860,'object','calculatedSegments','created_timestamp',NULL,'object','','0',8); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,862,'object','calculatedSegments','application_counter',NULL,'object','','0',9); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,862,'object','calculatedSegments','created_timestamp',NULL,'object','','0',9); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,875,'object','calculatedSegments','application_counter','1','object','','0',6); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,875,'object','calculatedSegments','created_timestamp','1566903576','object','','0',6); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,876,'object','calculatedSegments','application_counter','3','object','','0',10); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,876,'object','calculatedSegments','created_timestamp','1566911739','object','','0',10); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,963,'object','calculatedSegments','application_counter',NULL,'object','','0',4); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,963,'object','calculatedSegments','created_timestamp',NULL,'object','','0',4); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,965,'object','calculatedSegments','application_counter',NULL,'object','','0',5); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,965,'object','calculatedSegments','created_timestamp',NULL,'object','','0',5); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,971,'object','calculatedSegments','application_counter',NULL,'object','','0',3); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,971,'object','calculatedSegments','created_timestamp',NULL,'object','','0',3); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,1031,'object','calculatedSegments','application_counter',NULL,'object','','0',2); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1020,1031,'object','calculatedSegments','created_timestamp',NULL,'object','','0',2); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1021,824,'object','calculatedSegments','application_counter',NULL,'object','','0',3); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1021,824,'object','calculatedSegments','created_timestamp',NULL,'object','','0',3); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1021,834,'object','calculatedSegments','application_counter',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1021,834,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1021,1031,'object','calculatedSegments','application_counter',NULL,'object','','0',2); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1021,1031,'object','calculatedSegments','created_timestamp',NULL,'object','','0',2); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1022,834,'object','calculatedSegments','application_counter',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1022,834,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1023,835,'object','calculatedSegments','application_counter',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1023,835,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1024,834,'object','calculatedSegments','application_counter',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1024,834,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1024,839,'object','calculatedSegments','application_counter',NULL,'object','','0',2); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1024,839,'object','calculatedSegments','created_timestamp',NULL,'object','','0',2); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1025,834,'object','calculatedSegments','application_counter',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1025,834,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1025,1036,'object','calculatedSegments','application_counter',NULL,'object','','0',2); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1025,1036,'object','calculatedSegments','created_timestamp',NULL,'object','','0',2); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1045,834,'object','calculatedSegments','application_counter',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1045,834,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1048,834,'object','calculatedSegments','application_counter',NULL,'object','','0',2); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1048,834,'object','calculatedSegments','created_timestamp',NULL,'object','','0',2); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1048,1031,'object','calculatedSegments','application_counter',NULL,'object','','0',1); +INSERT INTO object_metadata_CU (`id`,`dest_id`,`type`,`fieldname`,`column`,`data`,`ownertype`,`ownername`,`position`,`index`) VALUES (1048,1031,'object','calculatedSegments','created_timestamp',NULL,'object','','0',1); diff --git a/dump/data-1-objects.sql b/dump/data-1-objects.sql index 19d08086..b511bd18 100644 --- a/dump/data-1-objects.sql +++ b/dump/data-1-objects.sql @@ -1,735 +1,735 @@ SET NAMES utf8mb4; -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1,0,'folder','','/',999999,1,1557393622,1557393622,1,1,NULL,NULL,NULL,NULL,0); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (2,744,'folder','Cars','/Product Data/',2,1,1557394646,1565783301,2,2,NULL,NULL,NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (3,744,'folder','Manufacturer','/Product Data/',0,1,1557394650,1565783319,2,2,NULL,NULL,NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (4,3,'object','Jaguar','/Product Data/Manufacturer/',0,1,1557394656,1559903309,2,2,'MA','Manufacturer',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (5,744,'folder','Body-Styles','/Product Data/',3,1,1557394666,1565783290,2,2,NULL,NULL,NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (6,5,'object','2-door roadster','/Product Data/Body-Styles/',0,1,1557394675,1565623766,2,2,'BS','BodyStyle',NULL,NULL,6); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (7,5,'object','2-door coupé','/Product Data/Body-Styles/',0,1,1557394684,1565623773,2,2,'BS','BodyStyle',NULL,NULL,6); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (8,2,'folder','jaguar','/Product Data/Cars/',0,1,1557394698,1557394698,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (9,8,'object','E-Type','/Product Data/Cars/jaguar/',0,1,1557394706,1579775893,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (10,9,'object','coupé','/Product Data/Cars/jaguar/E-Type/',0,1,1557394772,1579775893,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (11,9,'object','cabrio','/Product Data/Cars/jaguar/E-Type/',0,1,1557394777,1579775894,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (12,11,'object','red','/Product Data/Cars/jaguar/E-Type/cabrio/',0,1,1557395100,1579775894,2,0,'CAR','Car',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (13,11,'object','white','/Product Data/Cars/jaguar/E-Type/cabrio/',0,1,1557395131,1579775894,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (14,11,'object','green','/Product Data/Cars/jaguar/E-Type/cabrio/',0,1,1557395244,1579775894,2,0,'CAR','Car',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (15,10,'object','blue','/Product Data/Cars/jaguar/E-Type/coupé/',0,1,1557395274,1579775894,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (16,10,'object','red','/Product Data/Cars/jaguar/E-Type/coupé/',0,1,1557395374,1593600004,2,1,'CAR','Car',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (17,8,'object','MK2','/Product Data/Cars/jaguar/',0,1,1557395764,1579775894,2,0,'CAR','Car',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (19,17,'object','white','/Product Data/Cars/jaguar/MK2/',0,1,1557396098,1579775894,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (20,17,'object','black','/Product Data/Cars/jaguar/MK2/',0,1,1557396325,1579775894,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (21,8,'object','XK140','/Product Data/Cars/jaguar/',0,1,1557396376,1579775894,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (22,21,'object','cabrio','/Product Data/Cars/jaguar/XK140/',0,1,1557396524,1579775894,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (23,21,'object','coupé','/Product Data/Cars/jaguar/XK140/',0,1,1557396529,1579775894,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (24,22,'object','black','/Product Data/Cars/jaguar/XK140/cabrio/',0,1,1557396563,1579775895,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (25,22,'object','white','/Product Data/Cars/jaguar/XK140/cabrio/',0,1,1557396590,1579775895,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (26,23,'object','red','/Product Data/Cars/jaguar/XK140/coupé/',0,1,1557396666,1579775895,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (27,2,'folder','alfa romeo','/Product Data/Cars/',16,1,1557397000,1557397000,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (28,3,'object','Alfa Romeo','/Product Data/Manufacturer/',0,1,1557397007,1559902397,2,2,'MA','Manufacturer',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (29,27,'object','Giulietta','/Product Data/Cars/alfa romeo/',0,1,1557397054,1579775895,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (30,29,'object','red','/Product Data/Cars/alfa romeo/Giulietta/',0,1,1557397218,1593599299,2,1,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (31,29,'object','white','/Product Data/Cars/alfa romeo/Giulietta/',0,1,1557397253,1579775895,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (32,27,'object','Spider','/Product Data/Cars/alfa romeo/',0,1,1557397433,1579775895,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (33,32,'object','red','/Product Data/Cars/alfa romeo/Spider/',0,1,1557397544,1579775895,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (34,32,'object','blue','/Product Data/Cars/alfa romeo/Spider/',0,1,1557397688,1579775895,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (35,3,'object','Austin-Healey','/Product Data/Manufacturer/',0,1,1557397938,1559902731,2,2,'MA','Manufacturer',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (36,2,'folder','austin-healey','/Product Data/Cars/',17,1,1557397949,1557397949,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (37,36,'object','3000','/Product Data/Cars/austin-healey/',0,1,1557397953,1579775895,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (38,37,'object','red','/Product Data/Cars/austin-healey/3000/',0,1,1557398056,1579775895,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (39,3,'object','Buick','/Product Data/Manufacturer/',0,1,1557429322,1559902868,2,2,'MA','Manufacturer',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (40,2,'folder','buick','/Product Data/Cars/',18,1,1557429333,1557429333,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (41,40,'object','Special','/Product Data/Cars/buick/',0,1,1557429345,1579775895,2,0,'CAR','Car',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (42,5,'object','4-door sedan','/Product Data/Body-Styles/',0,1,1557429466,1565623909,2,2,'BS','BodyStyle',NULL,NULL,6); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (43,41,'object','blue','/Product Data/Cars/buick/Special/',0,1,1557429742,1579775896,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (44,41,'object','red','/Product Data/Cars/buick/Special/',0,1,1557429796,1579775896,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (45,3,'object','Cadillac','/Product Data/Manufacturer/',0,1,1557429859,1559902917,2,2,'MA','Manufacturer',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (46,2,'folder','cadillac','/Product Data/Cars/',19,1,1557429871,1557429871,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (47,46,'object','Coupe De Ville','/Product Data/Cars/cadillac/',0,1,1557429907,1579775896,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (48,47,'object','4-door','/Product Data/Cars/cadillac/Coupe De Ville/',0,1,1557430181,1579775896,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (49,5,'object','4-door 4-window hardtop','/Product Data/Body-Styles/',0,1,1557430202,1565623966,2,2,'BS','BodyStyle',NULL,NULL,5); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (50,5,'object','2-door hardtop','/Product Data/Body-Styles/',0,1,1557430229,1565623992,2,2,'BS','BodyStyle',NULL,NULL,6); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (51,48,'object','blue','/Product Data/Cars/cadillac/Coupe De Ville/4-door/',0,1,1557430271,1579775896,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (52,47,'object','2-door','/Product Data/Cars/cadillac/Coupe De Ville/',0,1,1557430429,1579775896,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (53,52,'object','blue','/Product Data/Cars/cadillac/Coupe De Ville/2-door/',0,1,1557430458,1579775896,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (54,52,'object','black','/Product Data/Cars/cadillac/Coupe De Ville/2-door/',0,1,1557430517,1579775896,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (55,46,'object','Eldorado','/Product Data/Cars/cadillac/',0,1,1557430682,1579775896,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (56,5,'object','2-door convertible','/Product Data/Body-Styles/',0,1,1557430763,1565623724,2,2,'BS','BodyStyle',NULL,NULL,5); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (57,55,'object','green','/Product Data/Cars/cadillac/Eldorado/',0,1,1557430969,1579775896,2,0,'CAR','Car',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (58,55,'object','red','/Product Data/Cars/cadillac/Eldorado/',0,1,1557431197,1579775896,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (59,3,'object','Chevrolet','/Product Data/Manufacturer/',0,1,1557431290,1559902971,2,2,'MA','Manufacturer',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (60,2,'folder','chevrolet','/Product Data/Cars/',20,1,1557431307,1557431307,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (61,60,'object','Bel Air','/Product Data/Cars/chevrolet/',0,1,1557431318,1579775897,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (62,61,'object','2-door','/Product Data/Cars/chevrolet/Bel Air/',0,1,1557432568,1579775897,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (63,62,'object','red','/Product Data/Cars/chevrolet/Bel Air/2-door/',0,1,1557432701,1579775897,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (64,61,'object','4-door','/Product Data/Cars/chevrolet/Bel Air/',0,1,1557432893,1579775897,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (66,64,'object','blue','/Product Data/Cars/chevrolet/Bel Air/4-door/',0,1,1557432970,1579775897,2,0,'CAR','Car',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (67,64,'object','red','/Product Data/Cars/chevrolet/Bel Air/4-door/',0,1,1557433080,1593599974,2,1,'CAR','Car',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (68,60,'object','Corvette','/Product Data/Cars/chevrolet/',0,1,1557433198,1579775897,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (69,68,'object','red','/Product Data/Cars/chevrolet/Corvette/',0,1,1557433554,1579775897,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (70,68,'object','black','/Product Data/Cars/chevrolet/Corvette/',0,1,1557433607,1579775897,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (71,3,'object','Citroen','/Product Data/Manufacturer/',0,1,1557433728,1559903034,2,2,'MA','Manufacturer',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (72,2,'folder','citroen','/Product Data/Cars/',21,1,1557433744,1557433744,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (73,72,'object','2CV','/Product Data/Cars/citroen/',0,1,1557433753,1579775897,2,0,'CAR','Car',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (74,73,'object','yellow','/Product Data/Cars/citroen/2CV/',0,1,1557434023,1579775897,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (75,73,'object','red','/Product Data/Cars/citroen/2CV/',0,1,1557434107,1579775897,2,0,'CAR','Car',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (76,72,'object','DS','/Product Data/Cars/citroen/',0,1,1557434260,1579775898,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (77,76,'object','green','/Product Data/Cars/citroen/DS/',0,1,1557434640,1579775898,2,0,'CAR','Car',NULL,NULL,16); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (78,76,'object','black','/Product Data/Cars/citroen/DS/',0,1,1557434847,1579775898,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (79,2,'folder','ac cars','/Product Data/Cars/',22,1,1558033965,1558033965,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (80,3,'object','AC Cars','/Product Data/Manufacturer/',0,1,1558033974,1559902327,2,2,'MA','Manufacturer',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (81,79,'object','Cobra 427','/Product Data/Cars/ac cars/',0,1,1558033991,1579775898,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (82,81,'object','blue','/Product Data/Cars/ac cars/Cobra 427/',0,1,1558034185,1579775898,2,0,'CAR','Car',NULL,NULL,19); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (83,3,'object','Dodge','/Product Data/Manufacturer/',0,1,1558034326,1559903122,2,2,'MA','Manufacturer',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (84,2,'folder','dodge','/Product Data/Cars/',23,1,1558034336,1558034336,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (85,84,'object','Charger','/Product Data/Cars/dodge/',0,1,1558034344,1579775898,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (86,85,'object','second generation','/Product Data/Cars/dodge/Charger/',0,1,1558035613,1579775898,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (87,86,'object','red','/Product Data/Cars/dodge/Charger/second generation/',0,1,1558035642,1579775898,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (88,86,'object','orange','/Product Data/Cars/dodge/Charger/second generation/',0,1,1558035679,1579775898,2,0,'CAR','Car',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (89,85,'object','third generation','/Product Data/Cars/dodge/Charger/',0,1,1558035764,1579775898,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (90,89,'object','yellow','/Product Data/Cars/dodge/Charger/third generation/',0,1,1558035795,1579775898,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (91,89,'object','black','/Product Data/Cars/dodge/Charger/third generation/',0,1,1558035855,1579775898,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (92,86,'object','black','/Product Data/Cars/dodge/Charger/second generation/',0,1,1558036182,1579775899,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (93,3,'object','Ferrari','/Product Data/Manufacturer/',0,1,1558037078,1559903175,2,2,'MA','Manufacturer',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (94,2,'folder','ferrari','/Product Data/Cars/',24,1,1558037091,1558037091,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (95,94,'object','Testarossa','/Product Data/Cars/ferrari/',0,1,1558037246,1579775899,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (96,5,'object','2-door berlinetta','/Product Data/Body-Styles/',0,1,1558037327,1565623699,2,2,'BS','BodyStyle',NULL,NULL,5); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (97,95,'object','red','/Product Data/Cars/ferrari/Testarossa/',0,1,1558037422,1579775899,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (98,95,'object','yellow','/Product Data/Cars/ferrari/Testarossa/',0,1,1558037630,1579775899,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (99,2,'folder','fiat','/Product Data/Cars/',25,1,1558037905,1558037905,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (100,3,'object','Fiat','/Product Data/Manufacturer/',0,1,1558037911,1559903225,2,2,'MA','Manufacturer',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (101,99,'object','500','/Product Data/Cars/fiat/',0,1,1558037919,1579775899,2,0,'CAR','Car',NULL,NULL,10); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (102,101,'object','black','/Product Data/Cars/fiat/500/',0,1,1558038102,1579775899,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (103,101,'object','red','/Product Data/Cars/fiat/500/',0,1,1558038139,1579775899,2,0,'CAR','Car',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (104,101,'object','orange','/Product Data/Cars/fiat/500/',0,1,1558038215,1579775899,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (105,101,'object','yellow','/Product Data/Cars/fiat/500/',0,1,1558038252,1579775899,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (106,3,'object','Ford','/Product Data/Manufacturer/',0,1,1558038331,1559903261,2,2,'MA','Manufacturer',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (107,2,'folder','ford','/Product Data/Cars/',26,1,1558038339,1558038339,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (108,107,'object','Mustang','/Product Data/Cars/ford/',0,1,1558038344,1579775899,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (109,108,'object','convertible','/Product Data/Cars/ford/Mustang/',0,1,1558038715,1579775899,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (110,109,'object','red','/Product Data/Cars/ford/Mustang/convertible/',0,1,1558038763,1579775899,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (111,109,'object','black','/Product Data/Cars/ford/Mustang/convertible/',0,1,1558038820,1579775900,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (112,109,'object','blue','/Product Data/Cars/ford/Mustang/convertible/',0,1,1558038850,1579775900,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (113,108,'object','coupe','/Product Data/Cars/ford/Mustang/',0,1,1558038878,1579775900,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (114,113,'object','red','/Product Data/Cars/ford/Mustang/coupe/',0,1,1558038899,1579775900,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (115,113,'object','yellow','/Product Data/Cars/ford/Mustang/coupe/',0,1,1558038964,1579775900,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (116,113,'object','brown','/Product Data/Cars/ford/Mustang/coupe/',0,1,1558038997,1579775900,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (117,107,'object','Thunderbird','/Product Data/Cars/ford/',0,1,1558039054,1579775900,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (118,117,'object','black','/Product Data/Cars/ford/Thunderbird/',0,1,1558039342,1579775900,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (119,117,'object','red','/Product Data/Cars/ford/Thunderbird/',0,1,1558039380,1579775900,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (120,117,'object','blue','/Product Data/Cars/ford/Thunderbird/',0,1,1558039413,1579775900,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (121,3,'object','Lamborghini','/Product Data/Manufacturer/',0,1,1558039570,1559903351,2,2,'MA','Manufacturer',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (122,2,'folder','lamborghini','/Product Data/Cars/',15,1,1558039578,1558039578,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (123,122,'object','Miura','/Product Data/Cars/lamborghini/',0,1,1558039590,1579775900,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (124,123,'object','yellow','/Product Data/Cars/lamborghini/Miura/',0,1,1558039830,1579775900,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (125,123,'object','blue','/Product Data/Cars/lamborghini/Miura/',0,1,1558040213,1579775900,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (126,123,'object','green','/Product Data/Cars/lamborghini/Miura/',0,1,1558040242,1579775901,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (127,3,'object','Lincoln','/Product Data/Manufacturer/',0,1,1558466658,1559903410,2,2,'MA','Manufacturer',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (128,2,'folder','lincoln','/Product Data/Cars/',14,1,1558466680,1558466680,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (129,128,'object','Continental','/Product Data/Cars/lincoln/',0,1,1558466693,1579775901,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (130,129,'object','convertible','/Product Data/Cars/lincoln/Continental/',0,1,1558467093,1579775901,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (131,130,'object','red','/Product Data/Cars/lincoln/Continental/convertible/',0,1,1558467134,1579775901,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (132,129,'object','sedan','/Product Data/Cars/lincoln/Continental/',0,1,1558467269,1579775901,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (133,132,'object','white','/Product Data/Cars/lincoln/Continental/sedan/',0,1,1558467292,1579775901,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (134,3,'object','Mercedes','/Product Data/Manufacturer/',0,1,1558467366,1559903464,2,2,'MA','Manufacturer',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (135,2,'folder','mercedes','/Product Data/Cars/',13,1,1558467381,1558467381,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (136,135,'object','190sl','/Product Data/Cars/mercedes/',0,1,1558467423,1579775901,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (137,5,'object','roadster','/Product Data/Body-Styles/',0,1,1558467581,1565624046,2,2,'BS','BodyStyle',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (138,136,'object','black','/Product Data/Cars/mercedes/190sl/',0,1,1558467657,1579775901,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (139,136,'object','silver','/Product Data/Cars/mercedes/190sl/',0,1,1558467841,1579775901,2,0,'CAR','Car',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (140,135,'object','300sl','/Product Data/Cars/mercedes/',0,1,1558468232,1579775901,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (141,140,'object','roadster','/Product Data/Cars/mercedes/300sl/',0,1,1558468425,1579775901,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (142,140,'object','coupe','/Product Data/Cars/mercedes/300sl/',0,1,1558468522,1579775901,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (143,142,'object','silver','/Product Data/Cars/mercedes/300sl/coupe/',0,1,1558468538,1579775902,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (144,141,'object','black','/Product Data/Cars/mercedes/300sl/roadster/',0,1,1558468731,1579775902,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (145,3,'object','Mercury','/Product Data/Manufacturer/',0,1,1558469356,1559903549,2,2,'MA','Manufacturer',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (146,2,'folder','mercury','/Product Data/Cars/',1,1,1558469369,1558469369,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (147,146,'object','Comet','/Product Data/Cars/mercury/',0,1,1558469388,1579775902,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (148,147,'object','2-door','/Product Data/Cars/mercury/Comet/',0,1,1558469590,1579775902,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (149,148,'object','beige','/Product Data/Cars/mercury/Comet/2-door/',0,1,1558469607,1579775902,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (150,148,'object','black','/Product Data/Cars/mercury/Comet/2-door/',0,1,1558469710,1579775902,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (151,147,'object','4-door-sedan','/Product Data/Cars/mercury/Comet/',0,1,1558469836,1579775902,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (152,151,'object','black','/Product Data/Cars/mercury/Comet/4-door-sedan/',0,1,1558469848,1579775902,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (153,3,'object','MG','/Product Data/Manufacturer/',0,1,1558469982,1559903616,2,2,'MA','Manufacturer',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (154,2,'folder','mg','/Product Data/Cars/',2,1,1558470030,1558470030,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (155,154,'object','MGA','/Product Data/Cars/mg/',0,1,1558470035,1579775902,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (156,155,'object','red','/Product Data/Cars/mg/MGA/',0,1,1558470244,1579775902,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (157,155,'object','white','/Product Data/Cars/mg/MGA/',0,1,1558470288,1579775902,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (158,3,'object','Peugeot','/Product Data/Manufacturer/',0,1,1558470975,1559903723,2,2,'MA','Manufacturer',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (159,2,'folder','peugeot','/Product Data/Cars/',4,1,1558470991,1558470991,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (160,159,'object','403','/Product Data/Cars/peugeot/',0,1,1558471001,1579775902,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (161,160,'object','green','/Product Data/Cars/peugeot/403/',0,1,1558471194,1579775903,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (162,160,'object','white','/Product Data/Cars/peugeot/403/',0,1,1558471229,1579775903,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (163,3,'object','Pontiac','/Product Data/Manufacturer/',0,1,1558471651,1559903749,2,2,'MA','Manufacturer',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (164,2,'folder','pontiac','/Product Data/Cars/',5,1,1558471660,1558471660,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (165,164,'object','Bonneville','/Product Data/Cars/pontiac/',0,1,1558471671,1579775903,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (166,165,'object','red','/Product Data/Cars/pontiac/Bonneville/',0,1,1558471782,1579775903,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (167,3,'object','Porsche','/Product Data/Manufacturer/',0,1,1558704954,1559903823,2,2,'MA','Manufacturer',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (168,2,'folder','porsche','/Product Data/Cars/',6,1,1558704962,1558704962,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (169,168,'object','911','/Product Data/Cars/porsche/',0,1,1558704967,1579775903,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (170,169,'object','targa','/Product Data/Cars/porsche/911/',0,1,1558705142,1579775903,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (171,5,'object','2-door targa top','/Product Data/Body-Styles/',0,1,1558705166,1565624073,2,2,'BS','BodyStyle',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (172,170,'object','yellow','/Product Data/Cars/porsche/911/targa/',0,1,1558705184,1579775903,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (173,169,'object','coupe','/Product Data/Cars/porsche/911/',0,1,1558705223,1579775903,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (174,173,'object','green','/Product Data/Cars/porsche/911/coupe/',0,1,1558705232,1579775903,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (175,173,'object','red','/Product Data/Cars/porsche/911/coupe/',0,1,1558705322,1579775903,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (176,3,'object','Renault','/Product Data/Manufacturer/',0,1,1558705362,1559903890,2,2,'MA','Manufacturer',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (177,2,'folder','renault','/Product Data/Cars/',7,1,1558705370,1558705370,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (178,177,'object','R4','/Product Data/Cars/renault/',0,1,1558705374,1579775903,2,0,'CAR','Car',NULL,NULL,10); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (179,5,'object','5-door hatchback','/Product Data/Body-Styles/',0,1,1558705418,1565624093,2,2,'BS','BodyStyle',NULL,NULL,6); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (180,178,'object','red','/Product Data/Cars/renault/R4/',0,1,1558705515,1579775903,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (181,3,'object','VEB Sachsenring','/Product Data/Manufacturer/',0,1,1558705642,1559904058,2,2,'MA','Manufacturer',NULL,NULL,5); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (182,2,'folder','trabant','/Product Data/Cars/',8,1,1558705647,1558705647,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (183,182,'object','601','/Product Data/Cars/trabant/',0,1,1558705655,1579775904,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (184,183,'object','beige','/Product Data/Cars/trabant/601/',0,1,1558705736,1579775904,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (185,3,'object','Triumph','/Product Data/Manufacturer/',0,1,1558705789,1559904435,2,2,'MA','Manufacturer',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (186,2,'folder','triumph','/Product Data/Cars/',9,1,1558705798,1558705798,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (187,186,'object','TR 6','/Product Data/Cars/triumph/',0,1,1558705893,1579775904,2,0,'CAR','Car',NULL,NULL,10); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (188,187,'object','green','/Product Data/Cars/triumph/TR 6/',0,1,1558706032,1579775904,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (189,187,'object','red','/Product Data/Cars/triumph/TR 6/',0,1,1558706072,1579775904,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (190,186,'object','TR 4','/Product Data/Cars/triumph/',0,1,1558706253,1579775904,2,0,'CAR','Car',NULL,NULL,10); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (191,190,'object','white','/Product Data/Cars/triumph/TR 4/',0,1,1558706346,1579775904,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (192,190,'object','red','/Product Data/Cars/triumph/TR 4/',0,1,1558706423,1579775904,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (193,186,'object','TR 3','/Product Data/Cars/triumph/',0,1,1558706481,1579775904,2,0,'CAR','Car',NULL,NULL,10); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (194,193,'object','white','/Product Data/Cars/triumph/TR 3/',0,1,1558706583,1579775904,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (195,193,'object','green','/Product Data/Cars/triumph/TR 3/',0,1,1558706656,1579775904,2,0,'CAR','Car',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (196,193,'object','red','/Product Data/Cars/triumph/TR 3/',0,1,1558706731,1579775904,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (197,168,'object','356','/Product Data/Cars/porsche/',0,1,1558706843,1579775904,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (198,204,'object','red','/Product Data/Cars/porsche/356/356 C/',0,1,1558706963,1579775905,2,0,'CAR','Car',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (199,197,'object','365','/Product Data/Cars/porsche/356/',0,1,1558707043,1579775905,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (200,199,'object','beige','/Product Data/Cars/porsche/356/365/',0,1,1558707051,1579775905,2,0,'CAR','Car',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (201,197,'object','356 B','/Product Data/Cars/porsche/356/',0,1,1558707138,1579775905,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (202,199,'object','green','/Product Data/Cars/porsche/356/365/',0,1,1558707165,1579775905,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (203,201,'object','blue','/Product Data/Cars/porsche/356/356 B/',0,1,1558707377,1579775905,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (204,197,'object','356 C','/Product Data/Cars/porsche/356/',0,1,1558707431,1579775905,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (205,204,'object','white','/Product Data/Cars/porsche/356/356 C/',0,1,1558707568,1579775905,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (206,3,'object','VW','/Product Data/Manufacturer/',0,1,1559049045,1559049048,2,2,'MA','Manufacturer',NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (207,2,'folder','vw','/Product Data/Cars/',10,1,1559049052,1559049052,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (208,207,'object','Käfer','/Product Data/Cars/vw/',0,1,1559049413,1579775905,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (209,208,'object','1200','/Product Data/Cars/vw/Käfer/',0,1,1559049444,1579775905,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (210,208,'object','1303','/Product Data/Cars/vw/Käfer/',0,1,1559049464,1579775905,2,0,'CAR','Car',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (211,208,'object','1302','/Product Data/Cars/vw/Käfer/',0,1,1559049473,1579775905,2,0,'CAR','Car',NULL,NULL,10); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (212,209,'object','2-door-saloon','/Product Data/Cars/vw/Käfer/1200/',0,1,1559049774,1579775905,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (213,5,'object','2-door sedan','/Product Data/Body-Styles/',0,1,1559049789,1565624106,2,2,'BS','BodyStyle',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (215,212,'object','beige','/Product Data/Cars/vw/Käfer/1200/2-door-saloon/',1,1,1559049850,1579775906,2,0,'CAR','Car',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (216,212,'object','blue','/Product Data/Cars/vw/Käfer/1200/2-door-saloon/',0,1,1559049993,1579775906,2,0,'CAR','Car',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (217,211,'object','blue','/Product Data/Cars/vw/Käfer/1302/',0,1,1559050266,1579775906,2,0,'CAR','Car',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (218,210,'object','2-door-saloon','/Product Data/Cars/vw/Käfer/1303/',0,1,1559050340,1579775906,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (219,210,'object','cabrio','/Product Data/Cars/vw/Käfer/1303/',0,1,1559050345,1579775906,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (220,218,'object','white','/Product Data/Cars/vw/Käfer/1303/2-door-saloon/',0,1,1559050366,1579775906,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (221,219,'object','blue','/Product Data/Cars/vw/Käfer/1303/cabrio/',0,1,1559050483,1579775906,2,0,'CAR','Car',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (222,219,'object','green','/Product Data/Cars/vw/Käfer/1303/cabrio/',0,1,1559050532,1579775906,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (223,212,'object','yellow','/Product Data/Cars/vw/Käfer/1200/2-door-saloon/',0,1,1559050685,1579775906,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (224,218,'object','blue','/Product Data/Cars/vw/Käfer/1303/2-door-saloon/',0,1,1559050711,1579775906,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (225,207,'object','Karmann','/Product Data/Cars/vw/',0,1,1559050975,1579775907,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (226,225,'object','coupe','/Product Data/Cars/vw/Karmann/',0,1,1559051107,1579775907,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (227,226,'object','beige','/Product Data/Cars/vw/Karmann/coupe/',0,1,1559051127,1579775907,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (228,226,'object','yellow','/Product Data/Cars/vw/Karmann/coupe/',0,1,1559051154,1579775907,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (229,226,'object','red','/Product Data/Cars/vw/Karmann/coupe/',0,1,1559051232,1579775907,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (230,225,'object','cabrio','/Product Data/Cars/vw/Karmann/',0,1,1559051259,1579775907,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (231,226,'object','silver','/Product Data/Cars/vw/Karmann/coupe/',0,1,1559051272,1579775907,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (232,230,'object','green','/Product Data/Cars/vw/Karmann/cabrio/',0,1,1559051330,1579775907,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (233,207,'object','Type 2','/Product Data/Cars/vw/',0,1,1559051495,1579775907,2,0,'CAR','Car',NULL,NULL,10); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (234,5,'object','4-5-door minibus','/Product Data/Body-Styles/',0,1,1559051523,1565624114,2,2,'BS','BodyStyle',NULL,NULL,5); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (235,233,'object','orange','/Product Data/Cars/vw/Type 2/',0,1,1559051754,1579775907,2,0,'CAR','Car',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (236,233,'object','red','/Product Data/Cars/vw/Type 2/',0,1,1559051805,1579775907,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (238,233,'object','blue','/Product Data/Cars/vw/Type 2/',0,1,1559051986,1579775907,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (240,3,'object','Aston Martin','/Product Data/Manufacturer/',0,1,1559052282,1559902601,2,2,'MA','Manufacturer',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (241,2,'folder','aston martin','/Product Data/Cars/',11,1,1559052291,1559052291,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (242,241,'object','DB5','/Product Data/Cars/aston martin/',0,1,1559052301,1579775908,2,0,'CAR','Car',NULL,NULL,10); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (243,242,'object','coupe','/Product Data/Cars/aston martin/DB5/',0,1,1559052486,1579775908,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (244,243,'object','silver','/Product Data/Cars/aston martin/DB5/coupe/',0,1,1559052499,1593599948,2,1,'CAR','Car',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (245,243,'object','green','/Product Data/Cars/aston martin/DB5/coupe/',0,1,1559052615,1579775908,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (246,242,'object','convertible','/Product Data/Cars/aston martin/DB5/',0,1,1559052703,1579775908,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (247,246,'object','silver','/Product Data/Cars/aston martin/DB5/convertible/',0,1,1559052713,1579775908,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (248,241,'object','DB6','/Product Data/Cars/aston martin/',0,1,1559052808,1579775908,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (249,248,'object','red','/Product Data/Cars/aston martin/DB6/',0,1,1559052950,1579775908,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (250,248,'object','green','/Product Data/Cars/aston martin/DB6/',0,1,1559053039,1579775908,2,0,'CAR','Car',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (251,94,'object','250 GT','/Product Data/Cars/ferrari/',0,1,1559053403,1579775908,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (252,251,'object','red','/Product Data/Cars/ferrari/250 GT/',0,1,1559053522,1579775908,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (253,251,'object','blue','/Product Data/Cars/ferrari/250 GT/',0,1,1559053528,1579775908,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (254,60,'object','Impala','/Product Data/Cars/chevrolet/',0,1,1559053764,1579775908,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (256,254,'object','hardtop','/Product Data/Cars/chevrolet/Impala/',0,1,1559053914,1579775909,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (257,256,'object','white','/Product Data/Cars/chevrolet/Impala/hardtop/',0,1,1559053924,1579775909,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (258,254,'object','convertible','/Product Data/Cars/chevrolet/Impala/',0,1,1559053931,1579775909,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (259,258,'object','white','/Product Data/Cars/chevrolet/Impala/convertible/',0,1,1559053940,1579775909,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (260,27,'object','1900','/Product Data/Cars/alfa romeo/',0,1,1559142237,1579775909,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (261,260,'object','berlina','/Product Data/Cars/alfa romeo/1900/',0,1,1559142464,1579775909,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (262,261,'object','silver','/Product Data/Cars/alfa romeo/1900/berlina/',0,1,1559142510,1579775909,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (263,261,'object','black','/Product Data/Cars/alfa romeo/1900/berlina/',0,1,1559142610,1579775909,2,0,'CAR','Car',NULL,NULL,17); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (264,260,'object','sprint','/Product Data/Cars/alfa romeo/1900/',0,1,1559142691,1579775909,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (265,264,'object','blue','/Product Data/Cars/alfa romeo/1900/sprint/',0,1,1559142761,1579775909,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (266,264,'object','silver','/Product Data/Cars/alfa romeo/1900/sprint/',0,1,1559142864,1579775909,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (267,27,'object','2000','/Product Data/Cars/alfa romeo/',0,1,1559142933,1579775909,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (268,267,'object','berlina','/Product Data/Cars/alfa romeo/2000/',0,1,1559143071,1579775909,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (269,268,'object','blue','/Product Data/Cars/alfa romeo/2000/berlina/',0,1,1559143090,1579775909,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (270,267,'object','spider','/Product Data/Cars/alfa romeo/2000/',0,1,1559143238,1579775910,2,0,'CAR','Car',NULL,NULL,10); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (271,270,'object','white','/Product Data/Cars/alfa romeo/2000/spider/',0,1,1559143246,1579775910,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (272,27,'object','Gulietta Sprint Speciale','/Product Data/Cars/alfa romeo/',0,1,1559143506,1579775910,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (273,272,'object','green','/Product Data/Cars/alfa romeo/Gulietta Sprint Speciale/',0,1,1559143590,1579775910,2,0,'CAR','Car',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (274,272,'object','red','/Product Data/Cars/alfa romeo/Gulietta Sprint Speciale/',0,1,1559143703,1579775910,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (275,27,'object','Montreal','/Product Data/Cars/alfa romeo/',0,1,1559143798,1579775910,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (276,275,'object','blue','/Product Data/Cars/alfa romeo/Montreal/',0,1,1559143926,1579775910,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (277,275,'object','red','/Product Data/Cars/alfa romeo/Montreal/',0,1,1559143979,1579775910,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (278,275,'object','white','/Product Data/Cars/alfa romeo/Montreal/',0,1,1559144028,1579775910,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (279,37,'object','white','/Product Data/Cars/austin-healey/3000/',0,1,1559144374,1579775910,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (280,37,'object','blue','/Product Data/Cars/austin-healey/3000/',0,1,1559144414,1579775910,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (281,8,'object','Mark IX','/Product Data/Cars/jaguar/',0,1,1559308422,1579775911,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (282,281,'object','red','/Product Data/Cars/jaguar/Mark IX/',0,1,1559308623,1579775911,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (283,281,'object','black','/Product Data/Cars/jaguar/Mark IX/',0,1,1559308789,1579775911,2,0,'CAR','Car',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (284,8,'object','Mark X','/Product Data/Cars/jaguar/',0,1,1559308945,1579775911,2,0,'CAR','Car',NULL,NULL,10); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (285,284,'object','black','/Product Data/Cars/jaguar/Mark X/',0,1,1559309040,1579775911,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (286,284,'object','blue','/Product Data/Cars/jaguar/Mark X/',0,1,1559309161,1579775911,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (287,284,'object','red','/Product Data/Cars/jaguar/Mark X/',0,1,1559309214,1579775911,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (288,17,'object','silver','/Product Data/Cars/jaguar/MK2/',0,1,1559309362,1579775911,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (289,8,'object','XK150','/Product Data/Cars/jaguar/',0,1,1559309546,1579775911,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (290,289,'object','roadster','/Product Data/Cars/jaguar/XK150/',0,1,1559309592,1579775911,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (291,289,'object','coupe','/Product Data/Cars/jaguar/XK150/',0,1,1559309613,1579775911,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (292,290,'object','white','/Product Data/Cars/jaguar/XK150/roadster/',0,1,1559309677,1579775911,2,0,'CAR','Car',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (293,291,'object','green','/Product Data/Cars/jaguar/XK150/coupe/',0,1,1559309764,1579775911,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (294,291,'object','white','/Product Data/Cars/jaguar/XK150/coupe/',0,1,1559309781,1579775912,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (295,290,'object','black','/Product Data/Cars/jaguar/XK150/roadster/',0,1,1559309839,1579775912,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (296,168,'object','928','/Product Data/Cars/porsche/',0,1,1559735452,1579775912,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (297,296,'object','red','/Product Data/Cars/porsche/928/',0,1,1559735584,1579775912,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (298,296,'object','blue','/Product Data/Cars/porsche/928/',0,1,1559735676,1579775912,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (299,296,'object','grey','/Product Data/Cars/porsche/928/',0,1,1559735740,1579775912,2,0,'CAR','Car',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (300,3,'object','BMW','/Product Data/Manufacturer/',0,1,1559736158,1566915983,2,2,'MA','Manufacturer',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (301,2,'folder','bmw','/Product Data/Cars/',12,1,1559736170,1559736170,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (302,301,'object','Isetta','/Product Data/Cars/bmw/',0,1,1559736176,1579775912,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (303,302,'object','beige','/Product Data/Cars/bmw/Isetta/',0,1,1559736475,1579775912,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (304,302,'object','blue','/Product Data/Cars/bmw/Isetta/',0,1,1559736594,1579775912,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (305,302,'object','light-blue','/Product Data/Cars/bmw/Isetta/',0,1,1559736659,1579775912,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (306,302,'object','blue1','/Product Data/Cars/bmw/Isetta/',0,1,1559736725,1579775912,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (307,301,'object','600','/Product Data/Cars/bmw/',0,1,1559736788,1579775913,2,0,'CAR','Car',NULL,NULL,10); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (308,307,'object','red','/Product Data/Cars/bmw/600/',0,1,1559737014,1579775913,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (309,307,'object','yellow','/Product Data/Cars/bmw/600/',0,1,1559737136,1579775913,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (310,301,'object','507','/Product Data/Cars/bmw/',0,1,1559737223,1579775913,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (311,310,'object','red','/Product Data/Cars/bmw/507/',0,1,1559737334,1579775913,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (312,310,'object','white','/Product Data/Cars/bmw/507/',0,1,1559737474,1579775913,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (313,301,'object','335','/Product Data/Cars/bmw/',0,1,1559737657,1579775913,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (314,313,'object','cabriolet','/Product Data/Cars/bmw/335/',0,1,1559737833,1579775913,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (315,5,'object','4-door cabriolet','/Product Data/Body-Styles/',0,1,1559737852,1565624123,2,2,'BS','BodyStyle',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (316,314,'object','grey','/Product Data/Cars/bmw/335/cabriolet/',0,1,1559737870,1579775913,2,0,'CAR','Car',NULL,NULL,16); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (317,313,'object','berline','/Product Data/Cars/bmw/335/',0,1,1559738042,1579775913,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (318,317,'object','black','/Product Data/Cars/bmw/335/berline/',0,1,1559738056,1579775913,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (319,135,'object','W187','/Product Data/Cars/mercedes/',0,1,1559738533,1579775913,2,0,'CAR','Car',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (320,319,'object','limousine','/Product Data/Cars/mercedes/W187/',0,1,1559738651,1579775913,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (321,320,'object','red','/Product Data/Cars/mercedes/W187/limousine/',0,1,1559738671,1579775914,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (322,319,'object','cabriolet-a','/Product Data/Cars/mercedes/W187/',0,1,1559738735,1579775914,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (323,322,'object','green','/Product Data/Cars/mercedes/W187/cabriolet-a/',0,1,1559738752,1579775914,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (324,319,'object','cabriolet-b','/Product Data/Cars/mercedes/W187/',0,1,1559738805,1579775914,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (325,324,'object','blue','/Product Data/Cars/mercedes/W187/cabriolet-b/',0,1,1559738815,1579775914,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (326,324,'object','grey','/Product Data/Cars/mercedes/W187/cabriolet-b/',0,1,1559738872,1579775914,2,0,'CAR','Car',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (327,135,'object','W128','/Product Data/Cars/mercedes/',0,1,1559739159,1579775914,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (328,330,'object','blue','/Product Data/Cars/mercedes/W128/sedan/',0,1,1559739322,1579775914,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (329,330,'object','beige','/Product Data/Cars/mercedes/W128/sedan/',1,1,1559739371,1579775914,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (330,327,'object','sedan','/Product Data/Cars/mercedes/W128/',0,1,1559739433,1579775914,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (331,327,'object','coupe','/Product Data/Cars/mercedes/W128/',0,1,1559739454,1579775914,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (332,331,'object','silver','/Product Data/Cars/mercedes/W128/coupe/',0,1,1559739467,1579775914,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (333,327,'object','cabriolet','/Product Data/Cars/mercedes/W128/',0,1,1559739566,1579775915,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (334,333,'object','black','/Product Data/Cars/mercedes/W128/cabriolet/',0,1,1559739579,1579775915,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (335,135,'object','W111','/Product Data/Cars/mercedes/',0,1,1559739759,1579775915,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (336,335,'object','sedan','/Product Data/Cars/mercedes/W111/',0,1,1559740353,1579775915,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (337,336,'object','black','/Product Data/Cars/mercedes/W111/sedan/',0,1,1559740370,1579775915,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (338,336,'object','grey','/Product Data/Cars/mercedes/W111/sedan/',0,1,1559740464,1579775915,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (339,336,'object','beige','/Product Data/Cars/mercedes/W111/sedan/',0,1,1559740514,1579775915,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (340,335,'object','coupe','/Product Data/Cars/mercedes/W111/',0,1,1559740603,1579775915,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (341,340,'object','white','/Product Data/Cars/mercedes/W111/coupe/',0,1,1559740611,1579775915,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (342,340,'object','red','/Product Data/Cars/mercedes/W111/coupe/',0,1,1559740663,1579775915,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (343,335,'object','cabriolet','/Product Data/Cars/mercedes/W111/',0,1,1559740729,1579775915,2,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (344,343,'object','white','/Product Data/Cars/mercedes/W111/cabriolet/',0,1,1559740736,1579775916,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (345,135,'object','W110','/Product Data/Cars/mercedes/',0,1,1559740941,1579775916,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (346,345,'object','white','/Product Data/Cars/mercedes/W110/',0,1,1559741031,1579775916,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (347,345,'object','blue','/Product Data/Cars/mercedes/W110/',0,1,1559741141,1579775916,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (348,345,'object','black','/Product Data/Cars/mercedes/W110/',0,1,1559741200,1579775916,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (349,135,'object','W113','/Product Data/Cars/mercedes/',0,1,1559741430,1579775916,2,0,'CAR','Car',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (350,349,'object','red','/Product Data/Cars/mercedes/W113/',0,1,1559741586,1579775916,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (351,349,'object','dark-grey','/Product Data/Cars/mercedes/W113/',0,1,1559741717,1579775916,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (352,349,'object','white','/Product Data/Cars/mercedes/W113/',0,1,1559741819,1579775916,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (353,349,'object','silver','/Product Data/Cars/mercedes/W113/',0,1,1559741872,1579775916,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (355,3,'object','Morris','/Product Data/Manufacturer/',0,1,1559743023,1559903678,2,2,'MA','Manufacturer',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (356,2,'folder','morris','/Product Data/Cars/',27,1,1559743030,1559743030,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (357,356,'object','Mini','/Product Data/Cars/morris/',0,1,1559743034,1579775916,2,0,'CAR','Car',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (358,357,'object','beige','/Product Data/Cars/morris/Mini/',0,1,1559743270,1579775916,2,0,'CAR','Car',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (359,357,'object','blue','/Product Data/Cars/morris/Mini/',0,1,1559743334,1579775917,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (360,357,'object','lightblue','/Product Data/Cars/morris/Mini/',0,1,1559743382,1579775917,2,0,'CAR','Car',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (361,744,'folder','Accessories','/Product Data/',4,1,1559804883,1565783281,2,2,NULL,NULL,NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (362,361,'folder','rims','/Product Data/Accessories/',NULL,1,1559805173,1559805173,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (363,361,'folder','lights','/Product Data/Accessories/',NULL,1,1559805178,1559805178,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (364,363,'folder','head lights','/Product Data/Accessories/lights/',0,1,1559805185,1559805185,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (365,363,'folder','tail lights','/Product Data/Accessories/lights/',2,1,1559805201,1559805201,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (366,363,'folder','indicator lights','/Product Data/Accessories/lights/',3,1,1559805227,1559805227,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (367,361,'folder','windows','/Product Data/Accessories/',0,1,1559805239,1559805256,2,2,NULL,NULL,NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (368,367,'folder','wind screens','/Product Data/Accessories/windows/',NULL,1,1559805248,1559805248,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (370,361,'folder','hood ornaments','/Product Data/Accessories/',NULL,1,1559805292,1559805292,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (372,364,'object','ac cars-cobra 427-head lights','/Product Data/Accessories/lights/head lights/',8,1,1559805464,1579775835,2,0,'AP','AccessoryPart',NULL,NULL,29); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (373,366,'object','ac cars-cobra 427-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559805527,1579775835,2,0,'AP','AccessoryPart',NULL,NULL,27); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (377,362,'object','alfa romeo-1900-rims-spoked wheel','/Product Data/Accessories/rims/',31,1,1559805925,1579775835,2,0,'AP','AccessoryPart',NULL,NULL,28); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (378,362,'object','alfa romeo-1900-rims-simple','/Product Data/Accessories/rims/',30,1,1559805982,1579775835,2,0,'AP','AccessoryPart',NULL,NULL,27); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (379,364,'object','alfa romeo-2000-head lights','/Product Data/Accessories/lights/head lights/',31,1,1559806037,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,27); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (380,361,'folder','steering wheels','/Product Data/Accessories/',NULL,1,1559806123,1559806123,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (381,380,'object','alfa romeo-giulietta-steering wheels','/Product Data/Accessories/steering wheels/',0,1,1559806138,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,25); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (382,364,'object','alfa romeo-giulietta-head lights','/Product Data/Accessories/lights/head lights/',32,1,1559806211,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,29); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (383,366,'object','alfa romeo-giulietta-indicator lights','/Product Data/Accessories/lights/indicator lights/',1,1,1559806249,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,27); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (384,365,'object','alfa romeo-spider-tail lights','/Product Data/Accessories/lights/tail lights/',1,1,1559806318,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,25); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (385,364,'object','alfa romeo-gulietta sprint speciale-head lights','/Product Data/Accessories/lights/head lights/',33,1,1559806379,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,26); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (386,362,'object','alfa romeo-gulietta sprint speciale-rims','/Product Data/Accessories/rims/',32,1,1559806448,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,24); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (387,380,'object','alfa romeo-gulietta sprint speciale-steering wheels','/Product Data/Accessories/steering wheels/',0,1,1559806505,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,23); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (388,364,'object','alfa romeo-1900-head lights','/Product Data/Accessories/lights/head lights/',30,1,1559806547,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,25); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (389,744,'folder','Categories','/Product Data/',1,1,1559806996,1565783310,2,2,NULL,NULL,NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (390,564,'object','cars','/Product Data/Categories/products/',0,1,1559807034,1562571244,2,2,'CA','Category',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (392,564,'object','spare parts','/Product Data/Categories/products/',1,1,1559807059,1565794345,2,2,'CA','Category',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (393,392,'object','lights','/Product Data/Categories/products/spare parts/',0,1,1559807086,1560249814,2,2,'CA','Category',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (394,393,'object','head lamps','/Product Data/Categories/products/spare parts/lights/',0,1,1559807096,1560249923,2,2,'CA','Category',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (395,393,'object','indicator lights','/Product Data/Categories/products/spare parts/lights/',0,1,1559807111,1560249927,2,2,'CA','Category',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (396,393,'object','tail lights','/Product Data/Categories/products/spare parts/lights/',0,1,1559807122,1560249931,2,2,'CA','Category',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (397,392,'object','rims','/Product Data/Categories/products/spare parts/',0,1,1559807414,1560249937,2,2,'CA','Category',NULL,NULL,6); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (399,392,'object','steering wheels','/Product Data/Categories/products/spare parts/',0,1,1559807625,1560249947,2,2,'CA','Category',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (400,365,'object','aston martin-db5-tail lights','/Product Data/Accessories/lights/tail lights/',2,1,1559807783,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,19); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (401,364,'object','aston martin-db5-head lights','/Product Data/Accessories/lights/head lights/',10,1,1559807884,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,18); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (402,366,'object','aston martin-db5-indicator lights','/Product Data/Accessories/lights/indicator lights/',2,1,1559807929,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,18); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (403,362,'object','aston martin-db5-rims','/Product Data/Accessories/rims/',8,1,1559807999,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,18); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (404,364,'object','aston martin-db6-head lights','/Product Data/Accessories/lights/head lights/',11,1,1559808083,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,16); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (405,364,'object','austin-healey-3000 mk ii-head lights','/Product Data/Accessories/lights/head lights/',12,1,1559808203,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,17); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (406,368,'object','austin-healey-3000 mk ii-windscreens','/Product Data/Accessories/windows/wind screens/',0,1,1559808289,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,18); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (407,392,'object','windscreens','/Product Data/Categories/products/spare parts/',0,1,1559808310,1560249957,2,2,'CA','Category',NULL,NULL,5); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (408,370,'object','austin-healey-3000 mk ii-hood ornaments','/Product Data/Accessories/hood ornaments/',0,1,1559808430,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,37); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (409,392,'object','hood ornaments','/Product Data/Categories/products/spare parts/',0,1,1559808456,1560249913,2,2,'CA','Category',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (410,362,'object','austin-healey-3000 mk ii-rims','/Product Data/Accessories/rims/',9,1,1559808503,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,16); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (411,380,'object','bmw-600-steering wheels','/Product Data/Accessories/steering wheels/',0,1,1559808611,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (412,368,'object','bmw-isetta-windscreens','/Product Data/Accessories/windows/wind screens/',0,1,1559808794,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,16); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (413,364,'object','bmw-isetta-head lights','/Product Data/Accessories/lights/head lights/',13,1,1559808838,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,16); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (414,364,'object','bmw-600-head lights','/Product Data/Accessories/lights/head lights/',14,1,1559808943,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,16); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (415,362,'object','bmw-507-rims','/Product Data/Accessories/rims/',10,1,1559808980,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,16); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (416,365,'object','bmw-507-tail lights','/Product Data/Accessories/lights/tail lights/',3,1,1559809050,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,16); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (418,364,'object','bmw-507-head lights','/Product Data/Accessories/lights/head lights/',15,1,1559809107,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (419,364,'object','bmw-335-head lights','/Product Data/Accessories/lights/head lights/',16,1,1559809155,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (420,380,'object','buick-special-steering wheels','/Product Data/Accessories/steering wheels/',0,1,1559809246,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (422,364,'object','buick-special-head lights','/Product Data/Accessories/lights/head lights/',17,1,1559809295,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (423,362,'object','buick-special-rims','/Product Data/Accessories/rims/',11,1,1559809332,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (424,364,'object','cadillac-eldorado-head lights','/Product Data/Accessories/lights/head lights/',18,1,1559809421,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (425,362,'object','cadillac-eldorado-rims','/Product Data/Accessories/rims/',12,1,1559809470,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (426,362,'object','cadillac-coupe de ville-rims','/Product Data/Accessories/rims/',13,1,1559809519,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (427,365,'object','chevrolet-corvette-tail lights','/Product Data/Accessories/lights/tail lights/',4,1,1559809730,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,16); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (428,364,'object','chevrolet-bel air-head lights','/Product Data/Accessories/lights/head lights/',19,1,1559809809,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (429,366,'object','chevrolet-bel air-tail lights','/Product Data/Accessories/lights/indicator lights/',3,1,1559809865,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (430,364,'object','chevrolet-corvette-head lights','/Product Data/Accessories/lights/head lights/',20,1,1559809947,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (431,362,'object','chevrolet-corvette-rims','/Product Data/Accessories/rims/',14,1,1559810012,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (432,380,'object','chevrolet-corvette-steering wheels','/Product Data/Accessories/steering wheels/',0,1,1559810049,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (433,365,'object','chevrolet-bel air-tail lights','/Product Data/Accessories/lights/tail lights/',5,1,1559810084,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,16); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (434,362,'object','chevrolet-corvette-rims-black','/Product Data/Accessories/rims/',15,1,1559810127,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,16); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (435,362,'object','chevrolet-bel air-rims','/Product Data/Accessories/rims/',16,1,1559810171,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (436,366,'object','citroen-ds-indicator lights-back','/Product Data/Accessories/lights/indicator lights/',4,1,1559810283,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (437,362,'object','citroen-2cv-rims','/Product Data/Accessories/rims/',17,1,1559810330,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (438,364,'object','citroen-2cv-head lights','/Product Data/Accessories/lights/head lights/',21,1,1559810403,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (439,366,'object','citroen-2cv-indicator lights','/Product Data/Accessories/lights/indicator lights/',5,1,1559810460,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (440,370,'object','citroen-2cv-hood ornaments','/Product Data/Accessories/hood ornaments/',0,1,1559810492,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,16); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (441,364,'object','citroen-ds-head lights-back','/Product Data/Accessories/lights/head lights/',22,1,1559810532,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (442,364,'object','dodge-charger-head lights','/Product Data/Accessories/lights/head lights/',23,1,1559810637,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (443,368,'object','dodge-charger-windscreens','/Product Data/Accessories/windows/wind screens/',0,1,1559810697,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (444,362,'object','dodge-charger-rims','/Product Data/Accessories/rims/',18,1,1559810738,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (445,362,'object','dodge-charger-rims-black','/Product Data/Accessories/rims/',19,1,1559810784,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,14); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (446,366,'object','ferrari-testarossa-indicator lights','/Product Data/Accessories/lights/indicator lights/',6,1,1559810897,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (447,364,'object','ferrari-250 gt-head lights','/Product Data/Accessories/lights/head lights/',24,1,1559810953,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (448,362,'object','ferrari-250 gt-rims','/Product Data/Accessories/rims/',20,1,1559811002,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (449,362,'object','ferrari-testarossa-rims','/Product Data/Accessories/rims/',21,1,1559811055,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (450,365,'object','ferrari-testarossa-tail lights','/Product Data/Accessories/lights/tail lights/',6,1,1559811091,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (451,380,'object','ferrari-250 gt-steering wheels','/Product Data/Accessories/steering wheels/',0,1,1559811133,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (452,368,'object','fiat-500-windscreens','/Product Data/Accessories/windows/wind screens/',0,1,1559811217,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (453,366,'object','fiat-500-indicator lights','/Product Data/Accessories/lights/indicator lights/',7,1,1559811273,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (454,364,'object','fiat-500-head lights','/Product Data/Accessories/lights/head lights/',25,1,1559811319,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (455,362,'object','fiat-500-rims','/Product Data/Accessories/rims/',22,1,1559811350,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (456,365,'object','fiat-500-tail lights','/Product Data/Accessories/lights/tail lights/',7,1,1559811385,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (457,362,'object','ford-thunderbird-rims','/Product Data/Accessories/rims/',23,1,1559811537,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (458,364,'object','ford-thunderbird-head lights','/Product Data/Accessories/lights/head lights/',26,1,1559811580,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (459,365,'object','ford-mustang-tail lights','/Product Data/Accessories/lights/tail lights/',8,1,1559811620,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (460,370,'object','ford-mustang-hood ornaments','/Product Data/Accessories/hood ornaments/',0,1,1559811666,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (461,364,'object','ford-mustang-head lights','/Product Data/Accessories/lights/head lights/',27,1,1559811704,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (462,366,'object','ford-mustang-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559811738,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (463,365,'object','ford-thunderbird-tail lights','/Product Data/Accessories/lights/tail lights/',9,1,1559811764,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (464,380,'object','jaguar-mark ix-steering wheels','/Product Data/Accessories/steering wheels/',0,1,1559812062,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (465,365,'object','jaguar-xk150-tail lights','/Product Data/Accessories/lights/tail lights/',10,1,1559812136,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (466,364,'object','jaguar-xk150-head lights','/Product Data/Accessories/lights/head lights/',28,1,1559812193,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (467,366,'object','jaguar-xk150-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559812238,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (468,370,'object','jaguar-xk150-hood ornaments','/Product Data/Accessories/hood ornaments/',0,1,1559812279,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (469,362,'object','jaguar-mk2-rims-simple','/Product Data/Accessories/rims/',24,1,1559812317,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (470,362,'object','jaguar-mk2-rims-spoked wheel','/Product Data/Accessories/rims/',25,1,1559812370,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (471,364,'object','jaguar-e-type-head lights','/Product Data/Accessories/lights/head lights/',29,1,1559812407,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (472,366,'object','jaguar-e-type-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559812441,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (473,365,'object','jaguar-mk2-tail lights','/Product Data/Accessories/lights/tail lights/',11,1,1559812487,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (474,370,'object','jaguar-mk2-hood ornaments','/Product Data/Accessories/hood ornaments/',0,1,1559812532,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (475,365,'object','jaguar-e-type-tail lights','/Product Data/Accessories/lights/tail lights/',12,1,1559812558,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (476,364,'object','jaguar-xk140-head lights','/Product Data/Accessories/lights/head lights/',34,1,1559812605,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (477,362,'object','jaguar-xk140-rims','/Product Data/Accessories/rims/',26,1,1559812667,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (478,365,'object','jaguar-mark x-tail lights','/Product Data/Accessories/lights/tail lights/',13,1,1559812713,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (479,364,'object','jaguar-mark x-head lights','/Product Data/Accessories/lights/head lights/',35,1,1559812760,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (480,362,'object','jaguar-e-type-rims','/Product Data/Accessories/rims/',27,1,1559812801,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (481,380,'object','jaguar-mk2-steering wheels','/Product Data/Accessories/steering wheels/',0,1,1559812857,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (482,362,'object','lincoln motor company-continental-rims','/Product Data/Accessories/rims/',28,1,1559825468,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (484,366,'object','mercedes-benz-w110-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559825831,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (485,365,'object','mercedes-benz-w113-tail lights','/Product Data/Accessories/lights/tail lights/',14,1,1559825902,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (486,364,'object','mercedes-benz-300 sl-head lights','/Product Data/Accessories/lights/head lights/',36,1,1559825959,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (487,365,'object','mercedes-benz-300 sl-tail lights','/Product Data/Accessories/lights/tail lights/',15,1,1559826001,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (488,365,'object','mercedes-benz-190 sl-tail lights','/Product Data/Accessories/lights/tail lights/',0,1,1559830590,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (489,362,'object','mercedes-benz-300 sl-rims','/Product Data/Accessories/rims/',29,1,1559830664,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (490,362,'object','mercedes-benz-190 sl-rims','/Product Data/Accessories/rims/',33,1,1559830697,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (492,380,'object','mercedes-benz-190 sl-steering wheels','/Product Data/Accessories/steering wheels/',0,1,1559830868,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (493,364,'object','mercedes-benz-190 sl-head lights','/Product Data/Accessories/lights/head lights/',37,1,1559830909,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (494,366,'object','mercedes-benz-190 sl-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559830950,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (495,364,'object','mercedes-benz-w111-head lights','/Product Data/Accessories/lights/head lights/',38,1,1559831011,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (496,364,'object','mercedes-benz-220-head lights','/Product Data/Accessories/lights/head lights/',39,1,1559831069,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (497,366,'object','mercedes-benz-220-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559831115,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (498,368,'object','mercedes-benz-220-windscreens','/Product Data/Accessories/windows/wind screens/',0,1,1559831146,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (499,362,'object','mercedes-benz-220-rims','/Product Data/Accessories/rims/',34,1,1559831190,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (500,362,'object','mercedes-benz-220-rims-blue','/Product Data/Accessories/rims/',35,1,1559831234,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (501,365,'object','mercedes-benz-w128-tail lights','/Product Data/Accessories/lights/tail lights/',0,1,1559831284,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (502,364,'object','mercedes-benz-w113-head lights','/Product Data/Accessories/lights/head lights/',40,1,1559831354,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (503,364,'object','mercedes-benz-w110-head lights','/Product Data/Accessories/lights/head lights/',41,1,1559831396,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (504,366,'object','mercedes-benz-w110-indicator lights-splitted','/Product Data/Accessories/lights/indicator lights/',0,1,1559831447,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (505,365,'object','mercedes-benz-w110-tail lights','/Product Data/Accessories/lights/tail lights/',0,1,1559831482,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (506,365,'object','mercedes-benz-220-tail lights','/Product Data/Accessories/lights/tail lights/',0,1,1559831615,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (507,365,'object','mercedes-benz-w111-tail lights','/Product Data/Accessories/lights/tail lights/',0,1,1559831686,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (508,364,'object','mercury-comet-head lights','/Product Data/Accessories/lights/head lights/',42,1,1559831980,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (509,362,'object','mercury-comet-rims','/Product Data/Accessories/rims/',36,1,1559832076,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (510,364,'object','mg cars-mga-head lights','/Product Data/Accessories/lights/head lights/',43,1,1559832145,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (511,370,'object','mg cars-mga-hood ornaments','/Product Data/Accessories/hood ornaments/',0,1,1559832189,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (512,366,'object','mg cars-mga-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559832215,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,10); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (513,362,'object','mg cars-mga-rims','/Product Data/Accessories/rims/',1,1,1559832256,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (514,364,'object','peugeot-403-head lights','/Product Data/Accessories/lights/head lights/',0,1,1559832413,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (515,366,'object','peugeot-403-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559832534,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,10); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (516,365,'object','peugeot-403-tail lights','/Product Data/Accessories/lights/tail lights/',0,1,1559832573,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,10); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (517,362,'object','pontiac-bonneville-rims','/Product Data/Accessories/rims/',2,1,1559832615,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (518,365,'object','porsche-911-tail lights','/Product Data/Accessories/lights/tail lights/',0,1,1559832748,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (519,362,'object','porsche-911-rims','/Product Data/Accessories/rims/',3,1,1559832800,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (520,364,'object','porsche-356-head lights','/Product Data/Accessories/lights/head lights/',1,1,1559832855,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (521,366,'object','porsche-356-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559832903,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,10); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (522,364,'object','renault-r4-head lights','/Product Data/Accessories/lights/head lights/',2,1,1559832949,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (523,366,'object','renault-r4-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559832991,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,10); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (524,368,'object','renault-r4-windscreens','/Product Data/Accessories/windows/wind screens/',0,1,1559833040,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (525,362,'object','renault-r4-rims','/Product Data/Accessories/rims/',4,1,1559833074,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (526,364,'object','triumph-tr 6-head lights','/Product Data/Accessories/lights/head lights/',3,1,1559833193,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (527,365,'object','triumph-tr 6-tail lights','/Product Data/Accessories/lights/tail lights/',0,1,1559833232,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (528,364,'object','triumph-tr 3-head lights','/Product Data/Accessories/lights/head lights/',4,1,1559833273,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,10); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (529,370,'object','triumph-tr 3-hood ornaments','/Product Data/Accessories/hood ornaments/',0,1,1559833322,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (530,380,'object','triumph-tr 6-steering wheels','/Product Data/Accessories/steering wheels/',0,1,1559833392,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (531,362,'object','triumph-tr 4-rims','/Product Data/Accessories/rims/',5,1,1559833445,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (532,364,'object','vw-type 2-head lights','/Product Data/Accessories/lights/head lights/',5,1,1559833617,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (533,366,'object','vw-type 2-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559833658,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,10); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (534,362,'object','vw-type 2-rims','/Product Data/Accessories/rims/',6,1,1559833691,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (535,365,'object','vw-type 2-tail lights','/Product Data/Accessories/lights/tail lights/',0,1,1559833738,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,10); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (536,370,'object','vw-type 2-hood ornaments','/Product Data/Accessories/hood ornaments/',0,1,1559833809,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (537,364,'object','vw-karmann-head lights','/Product Data/Accessories/lights/head lights/',6,1,1559833885,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (538,366,'object','vw-karmann-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559833932,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,10); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (539,365,'object','vw-karmann-tail lights','/Product Data/Accessories/lights/tail lights/',0,1,1559833969,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,10); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (540,364,'object','vw-käfer-head lights','/Product Data/Accessories/lights/head lights/',7,1,1559834033,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (541,366,'object','vw-käfer-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559834106,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (542,362,'object','vw-käfer-rims','/Product Data/Accessories/rims/',7,1,1559834157,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (543,365,'object','vw-käfer-tail lights-1303','/Product Data/Accessories/lights/tail lights/',0,1,1559834196,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (544,365,'object','vw-käfer-tail lights','/Product Data/Accessories/lights/tail lights/',0,1,1559834233,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (545,390,'object','sport and performance','/Product Data/Categories/products/cars/',0,1,1559834991,1565794964,2,2,'CA','Category',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (546,390,'object','luxury','/Product Data/Categories/products/cars/',0,1,1559835017,1565274276,2,2,'CA','Category',NULL,NULL,6); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (547,390,'object','economy','/Product Data/Categories/products/cars/',0,1,1559835061,1565274267,2,2,'CA','Category',NULL,NULL,5); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (548,547,'object','city cars','/Product Data/Categories/products/cars/economy/',0,1,1559835079,1560249676,2,2,'CA','Category',NULL,NULL,5); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (550,546,'object','executive cars','/Product Data/Categories/products/cars/luxury/',0,1,1559835111,1560249500,2,2,'CA','Category',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (551,547,'object','family cars','/Product Data/Categories/products/cars/economy/',0,1,1559835124,1560249758,2,2,'CA','Category',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (552,546,'object','full-size cars','/Product Data/Categories/products/cars/luxury/',0,1,1559835135,1560249736,2,2,'CA','Category',NULL,NULL,5); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (553,546,'object','full-size luxury cars','/Product Data/Categories/products/cars/luxury/',0,1,1559835147,1562571592,2,2,'CA','Category',NULL,NULL,6); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (555,545,'object','grand tourer','/Product Data/Categories/products/cars/sport and performance/',0,1,1559835165,1560249628,2,2,'CA','Category',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (556,390,'object','commercial','/Product Data/Categories/products/cars/',0,1,1559835179,1565794831,2,2,'CA','Category',NULL,NULL,6); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (557,546,'object','mid-size luxury cars','/Product Data/Categories/products/cars/luxury/',0,1,1559835195,1562571708,2,2,'CA','Category',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (558,545,'object','muscle cars','/Product Data/Categories/products/cars/sport and performance/',0,1,1559835223,1560249626,2,2,'CA','Category',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (559,545,'object','sports cars','/Product Data/Categories/products/cars/sport and performance/',0,1,1559835233,1560249623,2,2,'CA','Category',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (560,546,'object','personal luxury cars','/Product Data/Categories/products/cars/luxury/',0,1,1559835243,1560249668,2,2,'CA','Category',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (561,547,'object','economy cars','/Product Data/Categories/products/cars/economy/',0,1,1559901583,1560249733,2,2,'CA','Category',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (562,1,'folder','Shop','/',0,1,1562158513,1565792956,2,2,NULL,NULL,NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (563,695,'object','default','/Shop/Filter-Definitions/',2,1,1562158519,1566914343,2,2,'EF_FD','FilterDefinition',NULL,NULL,28); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (564,389,'object','products','/Product Data/Categories/',0,1,1562243853,1565276047,2,2,'CA','Category',NULL,NULL,5); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (693,756,'object','tax','/Shop/Tax-Definitions/',0,1,1565267314,1565793288,2,2,'EF_OSTC','OnlineShopTaxClass',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (695,562,'folder','Filter-Definitions','/Shop/',0,1,1565360765,1565793311,2,2,NULL,NULL,NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (696,757,'object','chrevorlet','/Shop/Filter-Definitions/Landing-Pages/',3,1,1565360778,1566914448,2,2,'EF_FD','FilterDefinition',NULL,NULL,5); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (697,757,'object','ford','/Shop/Filter-Definitions/Landing-Pages/',2,1,1565361008,1566914463,2,2,'EF_FD','FilterDefinition',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (698,757,'object','vans','/Shop/Filter-Definitions/Landing-Pages/',0,1,1565361229,1566914499,2,2,'EF_FD','FilterDefinition',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (699,757,'object','volkswagen','/Shop/Filter-Definitions/Landing-Pages/',1,1,1565361411,1566914520,2,2,'EF_FD','FilterDefinition',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (702,1,'folder','Customer Management','/',0,1,1565686891,1565784848,2,2,NULL,NULL,NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (703,702,'folder','customers','/Customer Management/',NULL,1,1565686898,1565686898,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (707,703,'folder','--','/Customer Management/customers/',NULL,1,1565703223,1565703223,1,2,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (739,703,'folder','AT','/Customer Management/customers/',NULL,1,1565775938,1565775938,1,2,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (744,1,'folder','Product Data','/',NULL,1,1565783234,1565783234,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (756,562,'folder','Tax-Definitions','/Shop/',0,1,1565793277,1565793286,2,2,NULL,NULL,NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (757,695,'folder','Landing-Pages','/Shop/Filter-Definitions/',0,1,1565793317,1565793317,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (758,695,'folder','Categories','/Shop/Filter-Definitions/',1,1,1565793331,1565793331,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (759,562,'folder','Vouchers','/Shop/',NULL,1,1565793356,1565793356,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (760,758,'object','spare-parts','/Shop/Filter-Definitions/Categories/',0,1,1565793853,1566914397,2,2,'EF_FD','FilterDefinition',NULL,NULL,6); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (761,758,'object','commercial-cars','/Shop/Filter-Definitions/Categories/',0,1,1565794643,1566914375,2,2,'EF_FD','FilterDefinition',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (762,758,'object','sport','/Shop/Filter-Definitions/Categories/',2,1,1565794883,1566914426,2,2,'EF_FD','FilterDefinition',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (763,1,'folder','News','/',NULL,1,1565947986,1565947986,2,2,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (765,763,'object','Montery Car Week Spring Edition','/News/',0,1,1565948018,1567082073,2,2,'NE','News',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (766,763,'object','Vintage Car Auction Detroit','/News/',0,1,1565948484,1567072392,2,2,'NE','News',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (767,763,'object','Driven Chevrolet Implala','/News/',0,1,1565948509,1642779852,2,1,'NE','News',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (768,763,'object','Historic Racing in Le Mans','/News/',0,1,1565948556,1567072218,2,2,'NE','News',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (769,763,'object','Announcement: Documentary Movie about Henry Ford','/News/',0,1,1565948593,1567072141,2,2,'NE','News',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (770,763,'object','Rare for a Reason - Ford Mustang','/News/',0,1,1565948622,1567072368,2,2,'NE','News',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (771,763,'object','Li Europan lingues es membres','/News/',0,1,1565948640,1567072261,2,2,'NE','News',NULL,NULL,6); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (772,763,'object','Lor separat existentie es un myth','/News/',0,1,1565948655,1567072272,2,2,'NE','News',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (773,763,'object','A un Angleso it va semblar un simplificat','/News/',0,1,1565948670,1567072124,2,2,'NE','News',NULL,NULL,11); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (815,703,'folder','_temp','/Customer Management/customers/',NULL,1,1566579635,1566579635,1,2,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (819,831,'object','Customer-Type','/Customer Management/segments/calculated/',2,1,1566653217,1566671573,2,2,'1','CustomerSegmentGroup',NULL,NULL,6); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (824,819,'object','New-Customer','/Customer Management/segments/calculated/Customer-Type/',0,1,1566653501,1566829396,2,2,'2','CustomerSegment',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (825,819,'object','Regular-Customer','/Customer Management/segments/calculated/Customer-Type/',0,1,1566653518,1566829431,2,2,'2','CustomerSegment',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (826,819,'object','VIP-Customer','/Customer Management/segments/calculated/Customer-Type/',0,1,1566653530,1566829443,2,2,'2','CustomerSegment',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (830,702,'folder','segments','/Customer Management/',NULL,1,1566671485,1566671485,1,0,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (831,830,'folder','calculated','/Customer Management/segments/',NULL,1,1566671485,1566671485,1,0,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (832,831,'object','State','/Customer Management/segments/calculated/',0,1,1566671486,1566671861,0,2,'1','CustomerSegmentGroup',NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (833,831,'object','Gender','/Customer Management/segments/calculated/',1,1,1566671486,1566671857,0,2,'1','CustomerSegmentGroup',NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (834,833,'object','male','/Customer Management/segments/calculated/Gender/',NULL,1,1566671486,1566671486,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (835,833,'object','female','/Customer Management/segments/calculated/Gender/',NULL,1,1566671486,1566671486,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (836,833,'object','not-set','/Customer Management/segments/calculated/Gender/',NULL,1,1566671486,1566671486,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (837,739,'folder','5020','/Customer Management/customers/AT/',NULL,1,1566671506,1566671506,1,2,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (838,832,'folder','AT','/Customer Management/segments/calculated/State/',NULL,1,1566671506,1566671506,1,2,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (839,838,'object','AT - Salzburg','/Customer Management/segments/calculated/State/AT/',NULL,1,1566671506,1566671506,2,2,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (847,838,'object','AT - Oberösterreich','/Customer Management/segments/calculated/State/AT/',NULL,1,1566671758,1566671758,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (859,831,'object','VisitingCount','/Customer Management/segments/calculated/',0,1,1566672569,1566672588,2,2,'1','CustomerSegmentGroup',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (860,859,'object','at least once','/Customer Management/segments/calculated/VisitingCount/',0,1,1566672608,1566672621,2,2,'2','CustomerSegment',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (861,859,'object','3 times','/Customer Management/segments/calculated/VisitingCount/',0,1,1566672643,1566672654,2,2,'2','CustomerSegment',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (862,859,'object','5 times','/Customer Management/segments/calculated/VisitingCount/',0,1,1566672670,1566672681,2,2,'2','CustomerSegment',NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (863,859,'object','10 times','/Customer Management/segments/calculated/VisitingCount/',0,1,1566672694,1566672711,2,2,'2','CustomerSegment',NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (864,759,'object','Free-Shipping','/Shop/Vouchers/',0,1,1566741057,1566742433,2,2,'EF_OSVS','OnlineShopVoucherSeries',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (865,759,'object','Commercial-Discount','/Shop/Vouchers/',0,1,1566741979,1566742015,2,2,'EF_OSVS','OnlineShopVoucherSeries',NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (872,757,'object','sale','/Shop/Filter-Definitions/Landing-Pages/',2,1,1562158519,1566914482,2,2,'EF_FD','FilterDefinition',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (873,389,'object','sale','/Product Data/Categories/',0,1,1566810276,1566810487,2,2,'CA','Category',NULL,NULL,5); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (874,831,'object','Interest-Target-Groups','/Customer Management/segments/calculated/',0,1,1566824695,1566824759,2,2,'1','CustomerSegmentGroup',NULL,NULL,6); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (875,874,'object','Sports-Cars-Fan','/Customer Management/segments/calculated/Interest-Target-Groups/',0,1,1566824774,1566829487,2,2,'2','CustomerSegment',NULL,NULL,5); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (876,874,'object','Economy-Cars-Fan','/Customer Management/segments/calculated/Interest-Target-Groups/',0,1,1566824799,1566829461,2,2,'2','CustomerSegment',NULL,NULL,5); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (877,874,'object','Luxury-Cars-Fan','/Customer Management/segments/calculated/Interest-Target-Groups/',0,1,1566824835,1566829472,2,2,'2','CustomerSegment',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (960,831,'object','Interest Manufacturer','/Customer Management/segments/calculated/',NULL,1,1566893533,1566893533,2,2,'1','CustomerSegmentGroup',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (961,960,'object','Jaguar','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893534,1566893534,2,2,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (962,831,'object','Interest Car Class','/Customer Management/segments/calculated/',NULL,1,1566893534,1566893534,2,2,'1','CustomerSegmentGroup',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (963,962,'object','sports car','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893534,1566893534,2,2,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (964,831,'object','Interest Body Style','/Customer Management/segments/calculated/',NULL,1,1566893534,1566893534,2,2,'1','CustomerSegmentGroup',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (965,964,'object','2-door roadster','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893534,1566893534,2,2,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (966,960,'object','Citroen','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893534,1566893534,2,2,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (967,962,'object','Economy car','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893534,1566893534,2,2,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (968,964,'object','4-door sedan','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893534,1566893534,2,2,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (969,960,'object','AC Cars','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893534,1566893534,2,2,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (970,960,'object','Alfa Romeo','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893534,1566893534,2,2,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (971,960,'object','Austin-Healey','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893534,1566893534,2,2,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (972,960,'object','Dodge','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893534,1566893534,2,2,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (973,964,'object','2-door coupé','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893737,1566893737,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (974,962,'object','Mid-size luxury','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893737,1566893737,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (975,962,'object','Family car','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893738,1566893738,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (976,960,'object','Buick','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893739,1566893739,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (977,962,'object','Full-Size','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893739,1566893739,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (978,960,'object','Cadillac','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893739,1566893739,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (979,964,'object','4-door 4-window hardtop','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893739,1566893739,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (980,964,'object','2-door hardtop','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893739,1566893739,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (981,962,'object','Personal luxury car','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893740,1566893740,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (982,964,'object','2-door convertible','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893740,1566893740,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (983,960,'object','Chevrolet','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893740,1566893740,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (984,962,'object','Executive car','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893741,1566893741,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (985,960,'object','Ferrari','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893742,1566893742,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (986,964,'object','2-door berlinetta','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893742,1566893742,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (987,960,'object','Fiat','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893742,1566893742,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (988,962,'object','City Car','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893742,1566893742,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (989,960,'object','Ford','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893742,1566893742,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (990,962,'object','Muscle Car','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893742,1566893742,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (991,960,'object','Lamborghini','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893743,1566893743,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (992,960,'object','Lincoln','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893744,1566893744,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (993,960,'object','Mercedes','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893744,1566893744,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (994,964,'object','roadster','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893744,1566893744,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (995,960,'object','Mercury','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893745,1566893745,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (996,960,'object','MG','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893745,1566893745,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (997,960,'object','Peugeot','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893745,1566893745,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (998,960,'object','Pontiac','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893745,1566893745,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (999,960,'object','Porsche','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893746,1566893746,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1000,964,'object','2-door targa top','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893746,1566893746,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1001,960,'object','Renault','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893746,1566893746,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1002,964,'object','5-door hatchback','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893746,1566893746,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1003,960,'object','VEB Sachsenring','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893746,1566893746,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1004,960,'object','Triumph','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893746,1566893746,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1005,960,'object','VW','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893747,1566893747,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1006,964,'object','2-door sedan','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893748,1566893748,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1007,962,'object','Light commercial vehicle','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893749,1566893749,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1008,964,'object','4-5-door minibus','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893749,1566893749,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1009,960,'object','Aston Martin','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893749,1566893749,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1010,962,'object','Grand tourer','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893749,1566893749,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1011,962,'object','Full-size luxury car','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893751,1566893751,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1012,960,'object','BMW','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893752,1566893752,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1013,964,'object','4-door cabriolet','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893753,1566893753,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1014,960,'object','Morris','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893755,1566893755,0,0,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1015,1026,'object','Fred-Flintstone','/Customer Management/customers/AT/1020/',0,1,1566901883,1643292624,2,0,'CU','Customer',NULL,NULL,15); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1016,1026,'object','Wilma-Flintstone','/Customer Management/customers/AT/1020/',0,1,1566902001,1643291617,2,0,'CU','Customer',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1017,1026,'object','Pebbles-Flintstone','/Customer Management/customers/AT/1020/',0,1,1566902051,1643291281,2,0,'CU','Customer',NULL,NULL,16); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1018,1026,'object','Dino-Flintstone','/Customer Management/customers/AT/1020/',0,1,1566902093,1643290226,2,0,'CU','Customer',NULL,NULL,19); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1019,1029,'object','Barney-Rubble','/Customer Management/customers/DE/63741/',0,1,1566902127,1566907031,2,2,'CU','Customer',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1020,1029,'object','Betty-Rubble','/Customer Management/customers/DE/63741/',0,1,1566902158,1566912074,2,0,'CU','Customer',NULL,NULL,24); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1021,1029,'object','Bamm-Bamm-Rubble','/Customer Management/customers/DE/63741/',0,1,1566902184,1566908278,2,0,'CU','Customer',NULL,NULL,12); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1022,1033,'object','Joe-Rockhead','/Customer Management/customers/US/98109/',0,1,1566902221,1567410149,2,2,'CU','Customer',NULL,NULL,10); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1023,1034,'object','Pearl-Slaghoople','/Customer Management/customers/US/94015/',0,1,1566902259,1643118632,2,1,'CU','Customer',NULL,NULL,8); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1024,837,'object','Tex-Hardrock','/Customer Management/customers/AT/5020/',0,1,1566902297,1566903187,2,2,'CU','Customer',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1025,1035,'object','Sam-Slagheap','/Customer Management/customers/DE/13158/',0,1,1566902331,1566903188,2,2,'CU','Customer',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1026,739,'folder','1020','/Customer Management/customers/AT/',NULL,1,1566902474,1566902474,1,2,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1027,838,'object','AT - Wien','/Customer Management/segments/calculated/State/AT/',NULL,1,1566902475,1566902475,2,2,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1028,703,'folder','DE','/Customer Management/customers/',NULL,1,1566902765,1566902765,1,2,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1029,1028,'folder','63741','/Customer Management/customers/DE/',NULL,1,1566902765,1566902765,1,2,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1030,832,'folder','DE','/Customer Management/segments/calculated/State/',NULL,1,1566902766,1566902766,1,2,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1031,1030,'object','DE - Bayern','/Customer Management/segments/calculated/State/DE/',NULL,1,1566902766,1566902766,2,2,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1032,703,'folder','US','/Customer Management/customers/',NULL,1,1566902874,1566902874,1,2,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1033,1032,'folder','98109','/Customer Management/customers/US/',NULL,1,1566902874,1566902874,1,2,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1034,1032,'folder','94015','/Customer Management/customers/US/',NULL,1,1566902925,1566902925,1,2,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1035,1028,'folder','13158','/Customer Management/customers/DE/',NULL,1,1566903031,1566903031,1,2,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1036,1030,'object','DE - Berlin','/Customer Management/segments/calculated/State/DE/',NULL,1,1566903031,1566903031,2,2,'2','CustomerSegment',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1045,1047,'object','Dino-Flinttone','/Customer Management/customers/AU/1020/',0,1,1566906643,1639403473,2,1,'CU','Customer',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1046,703,'folder','AU','/Customer Management/customers/',NULL,1,1566906693,1566906693,1,2,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1047,1046,'folder','1020','/Customer Management/customers/AU/',NULL,1,1566906693,1566906693,1,2,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1048,1029,'object','Barney-Rubbl','/Customer Management/customers/DE/63741/',0,1,1566906977,1566908246,2,2,'CU','Customer',NULL,NULL,6); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1073,1,'folder','upload','/',NULL,1,1566916747,1566916747,1,0,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1086,1073,'folder','new','/upload/',NULL,1,1566995185,1566995185,1,0,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1088,1086,'object','Kafer-1566995226','/upload/new/',0,0,1566995226,1566995426,0,2,'CAR','Car',NULL,NULL,5); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1092,864,'object','free_shipping','/Shop/Vouchers/Free-Shipping/',NULL,1,1566995338,1566995338,0,0,'EF_OSVT','OnlineShopVoucherToken',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1093,1086,'object','Cobra-1566995353','/upload/new/',0,0,1566995353,1642779611,0,1,'CAR','Car',NULL,NULL,3); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1094,1086,'object','DB3-1566995468','/upload/new/',0,1,1566995468,1579775917,0,0,'CAR','Car',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1095,1086,'object','203-1566995526','/upload/new/',NULL,NULL,1566995526,1566995526,0,0,'CAR','Car',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1101,707,'folder','--','/Customer Management/customers/--/',NULL,1,1567080000,1567080000,1,0,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1111,865,'object','com_6132','/Shop/Vouchers/Commercial-Discount/',NULL,1,1567157538,1567157538,0,0,'EF_OSVT','OnlineShopVoucherToken',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1119,1,'folder','Events','/',NULL,1,1568799358,1568799358,1,1,NULL,NULL,NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1120,1119,'object','Classic Expo Salzburg','/Events/',0,1,1568799577,1568803474,1,1,'EV','Event',NULL,NULL,5); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1121,1119,'object','Auto Messe Salzburg','/Events/',0,1,1568799578,1642779847,1,1,'EV','Event',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1122,1119,'object','Retro Classics','/Events/',0,1,1568799579,1568803521,1,1,'EV','Event',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1123,1119,'object','Vienna Auto Show','/Events/',0,1,1568799580,1568803541,1,1,'EV','Event',NULL,NULL,7); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1124,1119,'object','Custom Wheels Vienna','/Events/',0,1,1568799580,1568803484,1,1,'EV','Event',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1125,1119,'object','International Motor Show','/Events/',0,1,1568799581,1568803499,1,1,'EV','Event',NULL,NULL,5); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1126,1119,'object','Thermen - Classic 2019','/Events/',0,1,1568799583,1568803530,1,1,'EV','Event',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1127,1119,'object','Oldtimer Expo 2019','/Events/',0,1,1568799583,1568803509,1,1,'EV','Event',NULL,NULL,4); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1157,562,'folder','Orders','/Shop/',0,1,1643290009,1643290009,1,0,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1158,1157,'folder','2022','/Shop/Orders/',0,1,1643290009,1643290009,1,0,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1159,1158,'folder','01','/Shop/Orders/2022/',0,1,1643290009,1643290009,1,0,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1160,1159,'folder','27','/Shop/Orders/2022/01/',0,1,1643290009,1643290009,1,0,NULL,NULL,NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1161,1160,'object','ord_61f29d99992e7','/Shop/Orders/2022/01/27/',0,1,1643290009,1643290057,0,0,'EF_OSO','OnlineShopOrder',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1162,1161,'object','74_74','/Shop/Orders/2022/01/27/ord_61f29d99992e7/',0,1,1643290009,1643290009,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1163,1161,'object','438_438_gift','/Shop/Orders/2022/01/27/ord_61f29d99992e7/',0,1,1643290009,1643290009,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,1); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1164,1160,'object','ord_61f29e71db3cc','/Shop/Orders/2022/01/27/',0,1,1643290225,1643290332,0,0,'EF_OSO','OnlineShopOrder',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1165,1164,'object','262_262','/Shop/Orders/2022/01/27/ord_61f29e71db3cc/',0,1,1643290226,1643290226,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1166,1164,'object','377_377','/Shop/Orders/2022/01/27/ord_61f29e71db3cc/',0,1,1643290226,1643290226,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1167,1160,'object','ord_61f29f7cd4a36','/Shop/Orders/2022/01/27/',0,1,1643290492,1643290516,0,0,'EF_OSO','OnlineShopOrder',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1168,1167,'object','105_105','/Shop/Orders/2022/01/27/ord_61f29f7cd4a36/',0,1,1643290493,1643290493,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1169,1160,'object','ord_61f2a19c2cc23','/Shop/Orders/2022/01/27/',0,1,1643291036,1643291124,0,0,'EF_OSO','OnlineShopOrder',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1170,1169,'object','125_125','/Shop/Orders/2022/01/27/ord_61f2a19c2cc23/',0,1,1643291036,1643291036,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1171,1160,'object','ord_61f2a290b8f47','/Shop/Orders/2022/01/27/',0,1,1643291280,1643291381,0,0,'EF_OSO','OnlineShopOrder',NULL,NULL,13); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1172,1171,'object','235_235','/Shop/Orders/2022/01/27/ord_61f2a290b8f47/',0,1,1643291280,1643291280,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1173,1171,'object','12_12','/Shop/Orders/2022/01/27/ord_61f2a290b8f47/',0,1,1643291281,1643291281,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1174,1160,'object','ord_61f2a3e0a8fe3','/Shop/Orders/2022/01/27/',0,1,1643291616,1643291842,0,0,'EF_OSO','OnlineShopOrder',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1175,1174,'object','316_316','/Shop/Orders/2022/01/27/ord_61f2a3e0a8fe3/',0,1,1643291616,1643291616,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1176,1174,'object','54_54','/Shop/Orders/2022/01/27/ord_61f2a3e0a8fe3/',0,1,1643291616,1643291616,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1177,1160,'object','ord_61f2a57dddfb5','/Shop/Orders/2022/01/27/',0,1,1643292029,1643292086,0,0,'EF_OSO','OnlineShopOrder',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1178,1177,'object','58_58','/Shop/Orders/2022/01/27/ord_61f2a57dddfb5/',0,1,1643292030,1643292030,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1179,1160,'object','ord_61f2a6358659e','/Shop/Orders/2022/01/27/',0,1,1643292213,1643292270,0,0,'EF_OSO','OnlineShopOrder',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1180,1179,'object','420_420','/Shop/Orders/2022/01/27/ord_61f2a6358659e/',0,1,1643292213,1643292213,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1181,1179,'object','452_452','/Shop/Orders/2022/01/27/ord_61f2a6358659e/',0,1,1643292213,1643292213,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1182,1160,'object','ord_61f2a6832b14a','/Shop/Orders/2022/01/27/',0,1,1643292291,1643292334,0,0,'EF_OSO','OnlineShopOrder',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1183,1182,'object','70_70','/Shop/Orders/2022/01/27/ord_61f2a6832b14a/',0,1,1643292291,1643292291,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1184,1160,'object','ord_61f2a6dd66b56','/Shop/Orders/2022/01/27/',0,1,1643292381,1643292487,0,0,'EF_OSO','OnlineShopOrder',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1185,1184,'object','161_161','/Shop/Orders/2022/01/27/ord_61f2a6dd66b56/',0,1,1643292381,1643292381,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1186,1160,'object','ord_61f2a7cfd8682','/Shop/Orders/2022/01/27/',0,1,1643292623,1643292644,0,0,'EF_OSO','OnlineShopOrder',NULL,NULL,9); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1187,1186,'object','139_139','/Shop/Orders/2022/01/27/ord_61f2a7cfd8682/',0,1,1643292624,1643292624,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES (1188,1186,'object','116_116','/Shop/Orders/2022/01/27/ord_61f2a7cfd8682/',0,1,1643292624,1643292624,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1,0,'folder','','/',999999,1,1557393622,1557393622,1,1,NULL,NULL,NULL,NULL,0); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (2,744,'folder','Cars','/Product Data/',2,1,1557394646,1565783301,2,2,NULL,NULL,NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (3,744,'folder','Manufacturer','/Product Data/',0,1,1557394650,1565783319,2,2,NULL,NULL,NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (4,3,'object','Jaguar','/Product Data/Manufacturer/',0,1,1557394656,1559903309,2,2,'MA','Manufacturer',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (5,744,'folder','Body-Styles','/Product Data/',3,1,1557394666,1565783290,2,2,NULL,NULL,NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (6,5,'object','2-door roadster','/Product Data/Body-Styles/',0,1,1557394675,1565623766,2,2,'BS','BodyStyle',NULL,NULL,6); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (7,5,'object','2-door coupé','/Product Data/Body-Styles/',0,1,1557394684,1565623773,2,2,'BS','BodyStyle',NULL,NULL,6); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (8,2,'folder','jaguar','/Product Data/Cars/',0,1,1557394698,1557394698,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (9,8,'object','E-Type','/Product Data/Cars/jaguar/',0,1,1557394706,1579775893,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (10,9,'object','coupé','/Product Data/Cars/jaguar/E-Type/',0,1,1557394772,1579775893,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (11,9,'object','cabrio','/Product Data/Cars/jaguar/E-Type/',0,1,1557394777,1579775894,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (12,11,'object','red','/Product Data/Cars/jaguar/E-Type/cabrio/',0,1,1557395100,1579775894,2,0,'CAR','Car',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (13,11,'object','white','/Product Data/Cars/jaguar/E-Type/cabrio/',0,1,1557395131,1579775894,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (14,11,'object','green','/Product Data/Cars/jaguar/E-Type/cabrio/',0,1,1557395244,1579775894,2,0,'CAR','Car',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (15,10,'object','blue','/Product Data/Cars/jaguar/E-Type/coupé/',0,1,1557395274,1579775894,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (16,10,'object','red','/Product Data/Cars/jaguar/E-Type/coupé/',0,1,1557395374,1593600004,2,1,'CAR','Car',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (17,8,'object','MK2','/Product Data/Cars/jaguar/',0,1,1557395764,1579775894,2,0,'CAR','Car',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (19,17,'object','white','/Product Data/Cars/jaguar/MK2/',0,1,1557396098,1579775894,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (20,17,'object','black','/Product Data/Cars/jaguar/MK2/',0,1,1557396325,1579775894,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (21,8,'object','XK140','/Product Data/Cars/jaguar/',0,1,1557396376,1579775894,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (22,21,'object','cabrio','/Product Data/Cars/jaguar/XK140/',0,1,1557396524,1579775894,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (23,21,'object','coupé','/Product Data/Cars/jaguar/XK140/',0,1,1557396529,1579775894,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (24,22,'object','black','/Product Data/Cars/jaguar/XK140/cabrio/',0,1,1557396563,1579775895,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (25,22,'object','white','/Product Data/Cars/jaguar/XK140/cabrio/',0,1,1557396590,1579775895,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (26,23,'object','red','/Product Data/Cars/jaguar/XK140/coupé/',0,1,1557396666,1579775895,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (27,2,'folder','alfa romeo','/Product Data/Cars/',16,1,1557397000,1557397000,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (28,3,'object','Alfa Romeo','/Product Data/Manufacturer/',0,1,1557397007,1559902397,2,2,'MA','Manufacturer',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (29,27,'object','Giulietta','/Product Data/Cars/alfa romeo/',0,1,1557397054,1579775895,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (30,29,'object','red','/Product Data/Cars/alfa romeo/Giulietta/',0,1,1557397218,1593599299,2,1,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (31,29,'object','white','/Product Data/Cars/alfa romeo/Giulietta/',0,1,1557397253,1579775895,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (32,27,'object','Spider','/Product Data/Cars/alfa romeo/',0,1,1557397433,1579775895,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (33,32,'object','red','/Product Data/Cars/alfa romeo/Spider/',0,1,1557397544,1579775895,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (34,32,'object','blue','/Product Data/Cars/alfa romeo/Spider/',0,1,1557397688,1579775895,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (35,3,'object','Austin-Healey','/Product Data/Manufacturer/',0,1,1557397938,1559902731,2,2,'MA','Manufacturer',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (36,2,'folder','austin-healey','/Product Data/Cars/',17,1,1557397949,1557397949,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (37,36,'object','3000','/Product Data/Cars/austin-healey/',0,1,1557397953,1579775895,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (38,37,'object','red','/Product Data/Cars/austin-healey/3000/',0,1,1557398056,1579775895,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (39,3,'object','Buick','/Product Data/Manufacturer/',0,1,1557429322,1559902868,2,2,'MA','Manufacturer',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (40,2,'folder','buick','/Product Data/Cars/',18,1,1557429333,1557429333,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (41,40,'object','Special','/Product Data/Cars/buick/',0,1,1557429345,1579775895,2,0,'CAR','Car',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (42,5,'object','4-door sedan','/Product Data/Body-Styles/',0,1,1557429466,1565623909,2,2,'BS','BodyStyle',NULL,NULL,6); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (43,41,'object','blue','/Product Data/Cars/buick/Special/',0,1,1557429742,1579775896,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (44,41,'object','red','/Product Data/Cars/buick/Special/',0,1,1557429796,1579775896,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (45,3,'object','Cadillac','/Product Data/Manufacturer/',0,1,1557429859,1559902917,2,2,'MA','Manufacturer',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (46,2,'folder','cadillac','/Product Data/Cars/',19,1,1557429871,1557429871,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (47,46,'object','Coupe De Ville','/Product Data/Cars/cadillac/',0,1,1557429907,1579775896,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (48,47,'object','4-door','/Product Data/Cars/cadillac/Coupe De Ville/',0,1,1557430181,1579775896,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (49,5,'object','4-door 4-window hardtop','/Product Data/Body-Styles/',0,1,1557430202,1565623966,2,2,'BS','BodyStyle',NULL,NULL,5); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (50,5,'object','2-door hardtop','/Product Data/Body-Styles/',0,1,1557430229,1565623992,2,2,'BS','BodyStyle',NULL,NULL,6); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (51,48,'object','blue','/Product Data/Cars/cadillac/Coupe De Ville/4-door/',0,1,1557430271,1579775896,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (52,47,'object','2-door','/Product Data/Cars/cadillac/Coupe De Ville/',0,1,1557430429,1579775896,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (53,52,'object','blue','/Product Data/Cars/cadillac/Coupe De Ville/2-door/',0,1,1557430458,1579775896,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (54,52,'object','black','/Product Data/Cars/cadillac/Coupe De Ville/2-door/',0,1,1557430517,1579775896,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (55,46,'object','Eldorado','/Product Data/Cars/cadillac/',0,1,1557430682,1579775896,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (56,5,'object','2-door convertible','/Product Data/Body-Styles/',0,1,1557430763,1565623724,2,2,'BS','BodyStyle',NULL,NULL,5); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (57,55,'object','green','/Product Data/Cars/cadillac/Eldorado/',0,1,1557430969,1579775896,2,0,'CAR','Car',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (58,55,'object','red','/Product Data/Cars/cadillac/Eldorado/',0,1,1557431197,1579775896,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (59,3,'object','Chevrolet','/Product Data/Manufacturer/',0,1,1557431290,1559902971,2,2,'MA','Manufacturer',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (60,2,'folder','chevrolet','/Product Data/Cars/',20,1,1557431307,1557431307,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (61,60,'object','Bel Air','/Product Data/Cars/chevrolet/',0,1,1557431318,1579775897,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (62,61,'object','2-door','/Product Data/Cars/chevrolet/Bel Air/',0,1,1557432568,1579775897,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (63,62,'object','red','/Product Data/Cars/chevrolet/Bel Air/2-door/',0,1,1557432701,1579775897,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (64,61,'object','4-door','/Product Data/Cars/chevrolet/Bel Air/',0,1,1557432893,1579775897,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (66,64,'object','blue','/Product Data/Cars/chevrolet/Bel Air/4-door/',0,1,1557432970,1579775897,2,0,'CAR','Car',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (67,64,'object','red','/Product Data/Cars/chevrolet/Bel Air/4-door/',0,1,1557433080,1593599974,2,1,'CAR','Car',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (68,60,'object','Corvette','/Product Data/Cars/chevrolet/',0,1,1557433198,1579775897,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (69,68,'object','red','/Product Data/Cars/chevrolet/Corvette/',0,1,1557433554,1579775897,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (70,68,'object','black','/Product Data/Cars/chevrolet/Corvette/',0,1,1557433607,1579775897,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (71,3,'object','Citroen','/Product Data/Manufacturer/',0,1,1557433728,1559903034,2,2,'MA','Manufacturer',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (72,2,'folder','citroen','/Product Data/Cars/',21,1,1557433744,1557433744,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (73,72,'object','2CV','/Product Data/Cars/citroen/',0,1,1557433753,1579775897,2,0,'CAR','Car',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (74,73,'object','yellow','/Product Data/Cars/citroen/2CV/',0,1,1557434023,1579775897,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (75,73,'object','red','/Product Data/Cars/citroen/2CV/',0,1,1557434107,1579775897,2,0,'CAR','Car',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (76,72,'object','DS','/Product Data/Cars/citroen/',0,1,1557434260,1579775898,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (77,76,'object','green','/Product Data/Cars/citroen/DS/',0,1,1557434640,1579775898,2,0,'CAR','Car',NULL,NULL,16); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (78,76,'object','black','/Product Data/Cars/citroen/DS/',0,1,1557434847,1579775898,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (79,2,'folder','ac cars','/Product Data/Cars/',22,1,1558033965,1558033965,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (80,3,'object','AC Cars','/Product Data/Manufacturer/',0,1,1558033974,1559902327,2,2,'MA','Manufacturer',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (81,79,'object','Cobra 427','/Product Data/Cars/ac cars/',0,1,1558033991,1579775898,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (82,81,'object','blue','/Product Data/Cars/ac cars/Cobra 427/',0,1,1558034185,1579775898,2,0,'CAR','Car',NULL,NULL,19); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (83,3,'object','Dodge','/Product Data/Manufacturer/',0,1,1558034326,1559903122,2,2,'MA','Manufacturer',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (84,2,'folder','dodge','/Product Data/Cars/',23,1,1558034336,1558034336,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (85,84,'object','Charger','/Product Data/Cars/dodge/',0,1,1558034344,1579775898,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (86,85,'object','second generation','/Product Data/Cars/dodge/Charger/',0,1,1558035613,1579775898,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (87,86,'object','red','/Product Data/Cars/dodge/Charger/second generation/',0,1,1558035642,1579775898,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (88,86,'object','orange','/Product Data/Cars/dodge/Charger/second generation/',0,1,1558035679,1579775898,2,0,'CAR','Car',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (89,85,'object','third generation','/Product Data/Cars/dodge/Charger/',0,1,1558035764,1579775898,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (90,89,'object','yellow','/Product Data/Cars/dodge/Charger/third generation/',0,1,1558035795,1579775898,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (91,89,'object','black','/Product Data/Cars/dodge/Charger/third generation/',0,1,1558035855,1579775898,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (92,86,'object','black','/Product Data/Cars/dodge/Charger/second generation/',0,1,1558036182,1579775899,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (93,3,'object','Ferrari','/Product Data/Manufacturer/',0,1,1558037078,1559903175,2,2,'MA','Manufacturer',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (94,2,'folder','ferrari','/Product Data/Cars/',24,1,1558037091,1558037091,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (95,94,'object','Testarossa','/Product Data/Cars/ferrari/',0,1,1558037246,1579775899,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (96,5,'object','2-door berlinetta','/Product Data/Body-Styles/',0,1,1558037327,1565623699,2,2,'BS','BodyStyle',NULL,NULL,5); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (97,95,'object','red','/Product Data/Cars/ferrari/Testarossa/',0,1,1558037422,1579775899,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (98,95,'object','yellow','/Product Data/Cars/ferrari/Testarossa/',0,1,1558037630,1579775899,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (99,2,'folder','fiat','/Product Data/Cars/',25,1,1558037905,1558037905,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (100,3,'object','Fiat','/Product Data/Manufacturer/',0,1,1558037911,1559903225,2,2,'MA','Manufacturer',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (101,99,'object','500','/Product Data/Cars/fiat/',0,1,1558037919,1579775899,2,0,'CAR','Car',NULL,NULL,10); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (102,101,'object','black','/Product Data/Cars/fiat/500/',0,1,1558038102,1579775899,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (103,101,'object','red','/Product Data/Cars/fiat/500/',0,1,1558038139,1579775899,2,0,'CAR','Car',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (104,101,'object','orange','/Product Data/Cars/fiat/500/',0,1,1558038215,1579775899,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (105,101,'object','yellow','/Product Data/Cars/fiat/500/',0,1,1558038252,1579775899,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (106,3,'object','Ford','/Product Data/Manufacturer/',0,1,1558038331,1559903261,2,2,'MA','Manufacturer',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (107,2,'folder','ford','/Product Data/Cars/',26,1,1558038339,1558038339,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (108,107,'object','Mustang','/Product Data/Cars/ford/',0,1,1558038344,1579775899,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (109,108,'object','convertible','/Product Data/Cars/ford/Mustang/',0,1,1558038715,1579775899,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (110,109,'object','red','/Product Data/Cars/ford/Mustang/convertible/',0,1,1558038763,1579775899,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (111,109,'object','black','/Product Data/Cars/ford/Mustang/convertible/',0,1,1558038820,1579775900,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (112,109,'object','blue','/Product Data/Cars/ford/Mustang/convertible/',0,1,1558038850,1579775900,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (113,108,'object','coupe','/Product Data/Cars/ford/Mustang/',0,1,1558038878,1579775900,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (114,113,'object','red','/Product Data/Cars/ford/Mustang/coupe/',0,1,1558038899,1579775900,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (115,113,'object','yellow','/Product Data/Cars/ford/Mustang/coupe/',0,1,1558038964,1579775900,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (116,113,'object','brown','/Product Data/Cars/ford/Mustang/coupe/',0,1,1558038997,1579775900,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (117,107,'object','Thunderbird','/Product Data/Cars/ford/',0,1,1558039054,1579775900,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (118,117,'object','black','/Product Data/Cars/ford/Thunderbird/',0,1,1558039342,1579775900,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (119,117,'object','red','/Product Data/Cars/ford/Thunderbird/',0,1,1558039380,1579775900,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (120,117,'object','blue','/Product Data/Cars/ford/Thunderbird/',0,1,1558039413,1579775900,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (121,3,'object','Lamborghini','/Product Data/Manufacturer/',0,1,1558039570,1559903351,2,2,'MA','Manufacturer',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (122,2,'folder','lamborghini','/Product Data/Cars/',15,1,1558039578,1558039578,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (123,122,'object','Miura','/Product Data/Cars/lamborghini/',0,1,1558039590,1579775900,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (124,123,'object','yellow','/Product Data/Cars/lamborghini/Miura/',0,1,1558039830,1579775900,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (125,123,'object','blue','/Product Data/Cars/lamborghini/Miura/',0,1,1558040213,1579775900,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (126,123,'object','green','/Product Data/Cars/lamborghini/Miura/',0,1,1558040242,1579775901,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (127,3,'object','Lincoln','/Product Data/Manufacturer/',0,1,1558466658,1559903410,2,2,'MA','Manufacturer',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (128,2,'folder','lincoln','/Product Data/Cars/',14,1,1558466680,1558466680,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (129,128,'object','Continental','/Product Data/Cars/lincoln/',0,1,1558466693,1579775901,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (130,129,'object','convertible','/Product Data/Cars/lincoln/Continental/',0,1,1558467093,1579775901,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (131,130,'object','red','/Product Data/Cars/lincoln/Continental/convertible/',0,1,1558467134,1579775901,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (132,129,'object','sedan','/Product Data/Cars/lincoln/Continental/',0,1,1558467269,1579775901,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (133,132,'object','white','/Product Data/Cars/lincoln/Continental/sedan/',0,1,1558467292,1579775901,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (134,3,'object','Mercedes','/Product Data/Manufacturer/',0,1,1558467366,1559903464,2,2,'MA','Manufacturer',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (135,2,'folder','mercedes','/Product Data/Cars/',13,1,1558467381,1558467381,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (136,135,'object','190sl','/Product Data/Cars/mercedes/',0,1,1558467423,1579775901,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (137,5,'object','roadster','/Product Data/Body-Styles/',0,1,1558467581,1565624046,2,2,'BS','BodyStyle',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (138,136,'object','black','/Product Data/Cars/mercedes/190sl/',0,1,1558467657,1579775901,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (139,136,'object','silver','/Product Data/Cars/mercedes/190sl/',0,1,1558467841,1579775901,2,0,'CAR','Car',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (140,135,'object','300sl','/Product Data/Cars/mercedes/',0,1,1558468232,1579775901,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (141,140,'object','roadster','/Product Data/Cars/mercedes/300sl/',0,1,1558468425,1579775901,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (142,140,'object','coupe','/Product Data/Cars/mercedes/300sl/',0,1,1558468522,1579775901,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (143,142,'object','silver','/Product Data/Cars/mercedes/300sl/coupe/',0,1,1558468538,1579775902,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (144,141,'object','black','/Product Data/Cars/mercedes/300sl/roadster/',0,1,1558468731,1579775902,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (145,3,'object','Mercury','/Product Data/Manufacturer/',0,1,1558469356,1559903549,2,2,'MA','Manufacturer',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (146,2,'folder','mercury','/Product Data/Cars/',1,1,1558469369,1558469369,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (147,146,'object','Comet','/Product Data/Cars/mercury/',0,1,1558469388,1579775902,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (148,147,'object','2-door','/Product Data/Cars/mercury/Comet/',0,1,1558469590,1579775902,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (149,148,'object','beige','/Product Data/Cars/mercury/Comet/2-door/',0,1,1558469607,1579775902,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (150,148,'object','black','/Product Data/Cars/mercury/Comet/2-door/',0,1,1558469710,1579775902,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (151,147,'object','4-door-sedan','/Product Data/Cars/mercury/Comet/',0,1,1558469836,1579775902,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (152,151,'object','black','/Product Data/Cars/mercury/Comet/4-door-sedan/',0,1,1558469848,1579775902,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (153,3,'object','MG','/Product Data/Manufacturer/',0,1,1558469982,1559903616,2,2,'MA','Manufacturer',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (154,2,'folder','mg','/Product Data/Cars/',2,1,1558470030,1558470030,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (155,154,'object','MGA','/Product Data/Cars/mg/',0,1,1558470035,1579775902,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (156,155,'object','red','/Product Data/Cars/mg/MGA/',0,1,1558470244,1579775902,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (157,155,'object','white','/Product Data/Cars/mg/MGA/',0,1,1558470288,1579775902,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (158,3,'object','Peugeot','/Product Data/Manufacturer/',0,1,1558470975,1559903723,2,2,'MA','Manufacturer',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (159,2,'folder','peugeot','/Product Data/Cars/',4,1,1558470991,1558470991,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (160,159,'object','403','/Product Data/Cars/peugeot/',0,1,1558471001,1579775902,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (161,160,'object','green','/Product Data/Cars/peugeot/403/',0,1,1558471194,1579775903,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (162,160,'object','white','/Product Data/Cars/peugeot/403/',0,1,1558471229,1579775903,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (163,3,'object','Pontiac','/Product Data/Manufacturer/',0,1,1558471651,1559903749,2,2,'MA','Manufacturer',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (164,2,'folder','pontiac','/Product Data/Cars/',5,1,1558471660,1558471660,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (165,164,'object','Bonneville','/Product Data/Cars/pontiac/',0,1,1558471671,1579775903,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (166,165,'object','red','/Product Data/Cars/pontiac/Bonneville/',0,1,1558471782,1579775903,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (167,3,'object','Porsche','/Product Data/Manufacturer/',0,1,1558704954,1559903823,2,2,'MA','Manufacturer',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (168,2,'folder','porsche','/Product Data/Cars/',6,1,1558704962,1558704962,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (169,168,'object','911','/Product Data/Cars/porsche/',0,1,1558704967,1579775903,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (170,169,'object','targa','/Product Data/Cars/porsche/911/',0,1,1558705142,1579775903,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (171,5,'object','2-door targa top','/Product Data/Body-Styles/',0,1,1558705166,1565624073,2,2,'BS','BodyStyle',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (172,170,'object','yellow','/Product Data/Cars/porsche/911/targa/',0,1,1558705184,1579775903,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (173,169,'object','coupe','/Product Data/Cars/porsche/911/',0,1,1558705223,1579775903,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (174,173,'object','green','/Product Data/Cars/porsche/911/coupe/',0,1,1558705232,1579775903,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (175,173,'object','red','/Product Data/Cars/porsche/911/coupe/',0,1,1558705322,1579775903,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (176,3,'object','Renault','/Product Data/Manufacturer/',0,1,1558705362,1559903890,2,2,'MA','Manufacturer',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (177,2,'folder','renault','/Product Data/Cars/',7,1,1558705370,1558705370,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (178,177,'object','R4','/Product Data/Cars/renault/',0,1,1558705374,1579775903,2,0,'CAR','Car',NULL,NULL,10); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (179,5,'object','5-door hatchback','/Product Data/Body-Styles/',0,1,1558705418,1565624093,2,2,'BS','BodyStyle',NULL,NULL,6); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (180,178,'object','red','/Product Data/Cars/renault/R4/',0,1,1558705515,1579775903,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (181,3,'object','VEB Sachsenring','/Product Data/Manufacturer/',0,1,1558705642,1559904058,2,2,'MA','Manufacturer',NULL,NULL,5); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (182,2,'folder','trabant','/Product Data/Cars/',8,1,1558705647,1558705647,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (183,182,'object','601','/Product Data/Cars/trabant/',0,1,1558705655,1579775904,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (184,183,'object','beige','/Product Data/Cars/trabant/601/',0,1,1558705736,1579775904,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (185,3,'object','Triumph','/Product Data/Manufacturer/',0,1,1558705789,1559904435,2,2,'MA','Manufacturer',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (186,2,'folder','triumph','/Product Data/Cars/',9,1,1558705798,1558705798,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (187,186,'object','TR 6','/Product Data/Cars/triumph/',0,1,1558705893,1579775904,2,0,'CAR','Car',NULL,NULL,10); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (188,187,'object','green','/Product Data/Cars/triumph/TR 6/',0,1,1558706032,1579775904,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (189,187,'object','red','/Product Data/Cars/triumph/TR 6/',0,1,1558706072,1579775904,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (190,186,'object','TR 4','/Product Data/Cars/triumph/',0,1,1558706253,1579775904,2,0,'CAR','Car',NULL,NULL,10); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (191,190,'object','white','/Product Data/Cars/triumph/TR 4/',0,1,1558706346,1579775904,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (192,190,'object','red','/Product Data/Cars/triumph/TR 4/',0,1,1558706423,1579775904,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (193,186,'object','TR 3','/Product Data/Cars/triumph/',0,1,1558706481,1579775904,2,0,'CAR','Car',NULL,NULL,10); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (194,193,'object','white','/Product Data/Cars/triumph/TR 3/',0,1,1558706583,1579775904,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (195,193,'object','green','/Product Data/Cars/triumph/TR 3/',0,1,1558706656,1579775904,2,0,'CAR','Car',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (196,193,'object','red','/Product Data/Cars/triumph/TR 3/',0,1,1558706731,1579775904,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (197,168,'object','356','/Product Data/Cars/porsche/',0,1,1558706843,1579775904,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (198,204,'object','red','/Product Data/Cars/porsche/356/356 C/',0,1,1558706963,1579775905,2,0,'CAR','Car',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (199,197,'object','365','/Product Data/Cars/porsche/356/',0,1,1558707043,1579775905,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (200,199,'object','beige','/Product Data/Cars/porsche/356/365/',0,1,1558707051,1579775905,2,0,'CAR','Car',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (201,197,'object','356 B','/Product Data/Cars/porsche/356/',0,1,1558707138,1579775905,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (202,199,'object','green','/Product Data/Cars/porsche/356/365/',0,1,1558707165,1579775905,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (203,201,'object','blue','/Product Data/Cars/porsche/356/356 B/',0,1,1558707377,1579775905,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (204,197,'object','356 C','/Product Data/Cars/porsche/356/',0,1,1558707431,1579775905,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (205,204,'object','white','/Product Data/Cars/porsche/356/356 C/',0,1,1558707568,1579775905,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (206,3,'object','VW','/Product Data/Manufacturer/',0,1,1559049045,1559049048,2,2,'MA','Manufacturer',NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (207,2,'folder','vw','/Product Data/Cars/',10,1,1559049052,1559049052,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (208,207,'object','Käfer','/Product Data/Cars/vw/',0,1,1559049413,1579775905,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (209,208,'object','1200','/Product Data/Cars/vw/Käfer/',0,1,1559049444,1579775905,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (210,208,'object','1303','/Product Data/Cars/vw/Käfer/',0,1,1559049464,1579775905,2,0,'CAR','Car',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (211,208,'object','1302','/Product Data/Cars/vw/Käfer/',0,1,1559049473,1579775905,2,0,'CAR','Car',NULL,NULL,10); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (212,209,'object','2-door-saloon','/Product Data/Cars/vw/Käfer/1200/',0,1,1559049774,1579775905,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (213,5,'object','2-door sedan','/Product Data/Body-Styles/',0,1,1559049789,1565624106,2,2,'BS','BodyStyle',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (215,212,'object','beige','/Product Data/Cars/vw/Käfer/1200/2-door-saloon/',1,1,1559049850,1579775906,2,0,'CAR','Car',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (216,212,'object','blue','/Product Data/Cars/vw/Käfer/1200/2-door-saloon/',0,1,1559049993,1579775906,2,0,'CAR','Car',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (217,211,'object','blue','/Product Data/Cars/vw/Käfer/1302/',0,1,1559050266,1579775906,2,0,'CAR','Car',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (218,210,'object','2-door-saloon','/Product Data/Cars/vw/Käfer/1303/',0,1,1559050340,1579775906,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (219,210,'object','cabrio','/Product Data/Cars/vw/Käfer/1303/',0,1,1559050345,1579775906,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (220,218,'object','white','/Product Data/Cars/vw/Käfer/1303/2-door-saloon/',0,1,1559050366,1579775906,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (221,219,'object','blue','/Product Data/Cars/vw/Käfer/1303/cabrio/',0,1,1559050483,1579775906,2,0,'CAR','Car',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (222,219,'object','green','/Product Data/Cars/vw/Käfer/1303/cabrio/',0,1,1559050532,1579775906,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (223,212,'object','yellow','/Product Data/Cars/vw/Käfer/1200/2-door-saloon/',0,1,1559050685,1579775906,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (224,218,'object','blue','/Product Data/Cars/vw/Käfer/1303/2-door-saloon/',0,1,1559050711,1579775906,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (225,207,'object','Karmann','/Product Data/Cars/vw/',0,1,1559050975,1579775907,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (226,225,'object','coupe','/Product Data/Cars/vw/Karmann/',0,1,1559051107,1579775907,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (227,226,'object','beige','/Product Data/Cars/vw/Karmann/coupe/',0,1,1559051127,1579775907,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (228,226,'object','yellow','/Product Data/Cars/vw/Karmann/coupe/',0,1,1559051154,1579775907,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (229,226,'object','red','/Product Data/Cars/vw/Karmann/coupe/',0,1,1559051232,1579775907,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (230,225,'object','cabrio','/Product Data/Cars/vw/Karmann/',0,1,1559051259,1579775907,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (231,226,'object','silver','/Product Data/Cars/vw/Karmann/coupe/',0,1,1559051272,1579775907,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (232,230,'object','green','/Product Data/Cars/vw/Karmann/cabrio/',0,1,1559051330,1579775907,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (233,207,'object','Type 2','/Product Data/Cars/vw/',0,1,1559051495,1579775907,2,0,'CAR','Car',NULL,NULL,10); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (234,5,'object','4-5-door minibus','/Product Data/Body-Styles/',0,1,1559051523,1565624114,2,2,'BS','BodyStyle',NULL,NULL,5); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (235,233,'object','orange','/Product Data/Cars/vw/Type 2/',0,1,1559051754,1579775907,2,0,'CAR','Car',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (236,233,'object','red','/Product Data/Cars/vw/Type 2/',0,1,1559051805,1579775907,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (238,233,'object','blue','/Product Data/Cars/vw/Type 2/',0,1,1559051986,1579775907,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (240,3,'object','Aston Martin','/Product Data/Manufacturer/',0,1,1559052282,1559902601,2,2,'MA','Manufacturer',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (241,2,'folder','aston martin','/Product Data/Cars/',11,1,1559052291,1559052291,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (242,241,'object','DB5','/Product Data/Cars/aston martin/',0,1,1559052301,1579775908,2,0,'CAR','Car',NULL,NULL,10); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (243,242,'object','coupe','/Product Data/Cars/aston martin/DB5/',0,1,1559052486,1579775908,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (244,243,'object','silver','/Product Data/Cars/aston martin/DB5/coupe/',0,1,1559052499,1593599948,2,1,'CAR','Car',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (245,243,'object','green','/Product Data/Cars/aston martin/DB5/coupe/',0,1,1559052615,1579775908,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (246,242,'object','convertible','/Product Data/Cars/aston martin/DB5/',0,1,1559052703,1579775908,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (247,246,'object','silver','/Product Data/Cars/aston martin/DB5/convertible/',0,1,1559052713,1579775908,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (248,241,'object','DB6','/Product Data/Cars/aston martin/',0,1,1559052808,1579775908,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (249,248,'object','red','/Product Data/Cars/aston martin/DB6/',0,1,1559052950,1579775908,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (250,248,'object','green','/Product Data/Cars/aston martin/DB6/',0,1,1559053039,1579775908,2,0,'CAR','Car',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (251,94,'object','250 GT','/Product Data/Cars/ferrari/',0,1,1559053403,1579775908,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (252,251,'object','red','/Product Data/Cars/ferrari/250 GT/',0,1,1559053522,1579775908,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (253,251,'object','blue','/Product Data/Cars/ferrari/250 GT/',0,1,1559053528,1579775908,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (254,60,'object','Impala','/Product Data/Cars/chevrolet/',0,1,1559053764,1579775908,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (256,254,'object','hardtop','/Product Data/Cars/chevrolet/Impala/',0,1,1559053914,1579775909,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (257,256,'object','white','/Product Data/Cars/chevrolet/Impala/hardtop/',0,1,1559053924,1579775909,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (258,254,'object','convertible','/Product Data/Cars/chevrolet/Impala/',0,1,1559053931,1579775909,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (259,258,'object','white','/Product Data/Cars/chevrolet/Impala/convertible/',0,1,1559053940,1579775909,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (260,27,'object','1900','/Product Data/Cars/alfa romeo/',0,1,1559142237,1579775909,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (261,260,'object','berlina','/Product Data/Cars/alfa romeo/1900/',0,1,1559142464,1579775909,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (262,261,'object','silver','/Product Data/Cars/alfa romeo/1900/berlina/',0,1,1559142510,1579775909,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (263,261,'object','black','/Product Data/Cars/alfa romeo/1900/berlina/',0,1,1559142610,1579775909,2,0,'CAR','Car',NULL,NULL,17); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (264,260,'object','sprint','/Product Data/Cars/alfa romeo/1900/',0,1,1559142691,1579775909,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (265,264,'object','blue','/Product Data/Cars/alfa romeo/1900/sprint/',0,1,1559142761,1579775909,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (266,264,'object','silver','/Product Data/Cars/alfa romeo/1900/sprint/',0,1,1559142864,1579775909,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (267,27,'object','2000','/Product Data/Cars/alfa romeo/',0,1,1559142933,1579775909,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (268,267,'object','berlina','/Product Data/Cars/alfa romeo/2000/',0,1,1559143071,1579775909,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (269,268,'object','blue','/Product Data/Cars/alfa romeo/2000/berlina/',0,1,1559143090,1579775909,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (270,267,'object','spider','/Product Data/Cars/alfa romeo/2000/',0,1,1559143238,1579775910,2,0,'CAR','Car',NULL,NULL,10); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (271,270,'object','white','/Product Data/Cars/alfa romeo/2000/spider/',0,1,1559143246,1579775910,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (272,27,'object','Gulietta Sprint Speciale','/Product Data/Cars/alfa romeo/',0,1,1559143506,1579775910,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (273,272,'object','green','/Product Data/Cars/alfa romeo/Gulietta Sprint Speciale/',0,1,1559143590,1579775910,2,0,'CAR','Car',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (274,272,'object','red','/Product Data/Cars/alfa romeo/Gulietta Sprint Speciale/',0,1,1559143703,1579775910,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (275,27,'object','Montreal','/Product Data/Cars/alfa romeo/',0,1,1559143798,1579775910,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (276,275,'object','blue','/Product Data/Cars/alfa romeo/Montreal/',0,1,1559143926,1579775910,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (277,275,'object','red','/Product Data/Cars/alfa romeo/Montreal/',0,1,1559143979,1579775910,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (278,275,'object','white','/Product Data/Cars/alfa romeo/Montreal/',0,1,1559144028,1579775910,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (279,37,'object','white','/Product Data/Cars/austin-healey/3000/',0,1,1559144374,1579775910,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (280,37,'object','blue','/Product Data/Cars/austin-healey/3000/',0,1,1559144414,1579775910,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (281,8,'object','Mark IX','/Product Data/Cars/jaguar/',0,1,1559308422,1579775911,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (282,281,'object','red','/Product Data/Cars/jaguar/Mark IX/',0,1,1559308623,1579775911,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (283,281,'object','black','/Product Data/Cars/jaguar/Mark IX/',0,1,1559308789,1579775911,2,0,'CAR','Car',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (284,8,'object','Mark X','/Product Data/Cars/jaguar/',0,1,1559308945,1579775911,2,0,'CAR','Car',NULL,NULL,10); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (285,284,'object','black','/Product Data/Cars/jaguar/Mark X/',0,1,1559309040,1579775911,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (286,284,'object','blue','/Product Data/Cars/jaguar/Mark X/',0,1,1559309161,1579775911,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (287,284,'object','red','/Product Data/Cars/jaguar/Mark X/',0,1,1559309214,1579775911,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (288,17,'object','silver','/Product Data/Cars/jaguar/MK2/',0,1,1559309362,1579775911,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (289,8,'object','XK150','/Product Data/Cars/jaguar/',0,1,1559309546,1579775911,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (290,289,'object','roadster','/Product Data/Cars/jaguar/XK150/',0,1,1559309592,1579775911,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (291,289,'object','coupe','/Product Data/Cars/jaguar/XK150/',0,1,1559309613,1579775911,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (292,290,'object','white','/Product Data/Cars/jaguar/XK150/roadster/',0,1,1559309677,1579775911,2,0,'CAR','Car',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (293,291,'object','green','/Product Data/Cars/jaguar/XK150/coupe/',0,1,1559309764,1579775911,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (294,291,'object','white','/Product Data/Cars/jaguar/XK150/coupe/',0,1,1559309781,1579775912,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (295,290,'object','black','/Product Data/Cars/jaguar/XK150/roadster/',0,1,1559309839,1579775912,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (296,168,'object','928','/Product Data/Cars/porsche/',0,1,1559735452,1579775912,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (297,296,'object','red','/Product Data/Cars/porsche/928/',0,1,1559735584,1579775912,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (298,296,'object','blue','/Product Data/Cars/porsche/928/',0,1,1559735676,1579775912,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (299,296,'object','grey','/Product Data/Cars/porsche/928/',0,1,1559735740,1579775912,2,0,'CAR','Car',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (300,3,'object','BMW','/Product Data/Manufacturer/',0,1,1559736158,1566915983,2,2,'MA','Manufacturer',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (301,2,'folder','bmw','/Product Data/Cars/',12,1,1559736170,1559736170,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (302,301,'object','Isetta','/Product Data/Cars/bmw/',0,1,1559736176,1579775912,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (303,302,'object','beige','/Product Data/Cars/bmw/Isetta/',0,1,1559736475,1579775912,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (304,302,'object','blue','/Product Data/Cars/bmw/Isetta/',0,1,1559736594,1579775912,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (305,302,'object','light-blue','/Product Data/Cars/bmw/Isetta/',0,1,1559736659,1579775912,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (306,302,'object','blue1','/Product Data/Cars/bmw/Isetta/',0,1,1559736725,1579775912,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (307,301,'object','600','/Product Data/Cars/bmw/',0,1,1559736788,1579775913,2,0,'CAR','Car',NULL,NULL,10); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (308,307,'object','red','/Product Data/Cars/bmw/600/',0,1,1559737014,1579775913,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (309,307,'object','yellow','/Product Data/Cars/bmw/600/',0,1,1559737136,1579775913,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (310,301,'object','507','/Product Data/Cars/bmw/',0,1,1559737223,1579775913,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (311,310,'object','red','/Product Data/Cars/bmw/507/',0,1,1559737334,1579775913,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (312,310,'object','white','/Product Data/Cars/bmw/507/',0,1,1559737474,1579775913,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (313,301,'object','335','/Product Data/Cars/bmw/',0,1,1559737657,1579775913,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (314,313,'object','cabriolet','/Product Data/Cars/bmw/335/',0,1,1559737833,1579775913,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (315,5,'object','4-door cabriolet','/Product Data/Body-Styles/',0,1,1559737852,1565624123,2,2,'BS','BodyStyle',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (316,314,'object','grey','/Product Data/Cars/bmw/335/cabriolet/',0,1,1559737870,1579775913,2,0,'CAR','Car',NULL,NULL,16); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (317,313,'object','berline','/Product Data/Cars/bmw/335/',0,1,1559738042,1579775913,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (318,317,'object','black','/Product Data/Cars/bmw/335/berline/',0,1,1559738056,1579775913,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (319,135,'object','W187','/Product Data/Cars/mercedes/',0,1,1559738533,1579775913,2,0,'CAR','Car',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (320,319,'object','limousine','/Product Data/Cars/mercedes/W187/',0,1,1559738651,1579775913,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (321,320,'object','red','/Product Data/Cars/mercedes/W187/limousine/',0,1,1559738671,1579775914,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (322,319,'object','cabriolet-a','/Product Data/Cars/mercedes/W187/',0,1,1559738735,1579775914,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (323,322,'object','green','/Product Data/Cars/mercedes/W187/cabriolet-a/',0,1,1559738752,1579775914,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (324,319,'object','cabriolet-b','/Product Data/Cars/mercedes/W187/',0,1,1559738805,1579775914,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (325,324,'object','blue','/Product Data/Cars/mercedes/W187/cabriolet-b/',0,1,1559738815,1579775914,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (326,324,'object','grey','/Product Data/Cars/mercedes/W187/cabriolet-b/',0,1,1559738872,1579775914,2,0,'CAR','Car',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (327,135,'object','W128','/Product Data/Cars/mercedes/',0,1,1559739159,1579775914,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (328,330,'object','blue','/Product Data/Cars/mercedes/W128/sedan/',0,1,1559739322,1579775914,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (329,330,'object','beige','/Product Data/Cars/mercedes/W128/sedan/',1,1,1559739371,1579775914,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (330,327,'object','sedan','/Product Data/Cars/mercedes/W128/',0,1,1559739433,1579775914,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (331,327,'object','coupe','/Product Data/Cars/mercedes/W128/',0,1,1559739454,1579775914,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (332,331,'object','silver','/Product Data/Cars/mercedes/W128/coupe/',0,1,1559739467,1579775914,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (333,327,'object','cabriolet','/Product Data/Cars/mercedes/W128/',0,1,1559739566,1579775915,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (334,333,'object','black','/Product Data/Cars/mercedes/W128/cabriolet/',0,1,1559739579,1579775915,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (335,135,'object','W111','/Product Data/Cars/mercedes/',0,1,1559739759,1579775915,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (336,335,'object','sedan','/Product Data/Cars/mercedes/W111/',0,1,1559740353,1579775915,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (337,336,'object','black','/Product Data/Cars/mercedes/W111/sedan/',0,1,1559740370,1579775915,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (338,336,'object','grey','/Product Data/Cars/mercedes/W111/sedan/',0,1,1559740464,1579775915,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (339,336,'object','beige','/Product Data/Cars/mercedes/W111/sedan/',0,1,1559740514,1579775915,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (340,335,'object','coupe','/Product Data/Cars/mercedes/W111/',0,1,1559740603,1579775915,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (341,340,'object','white','/Product Data/Cars/mercedes/W111/coupe/',0,1,1559740611,1579775915,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (342,340,'object','red','/Product Data/Cars/mercedes/W111/coupe/',0,1,1559740663,1579775915,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (343,335,'object','cabriolet','/Product Data/Cars/mercedes/W111/',0,1,1559740729,1579775915,2,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (344,343,'object','white','/Product Data/Cars/mercedes/W111/cabriolet/',0,1,1559740736,1579775916,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (345,135,'object','W110','/Product Data/Cars/mercedes/',0,1,1559740941,1579775916,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (346,345,'object','white','/Product Data/Cars/mercedes/W110/',0,1,1559741031,1579775916,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (347,345,'object','blue','/Product Data/Cars/mercedes/W110/',0,1,1559741141,1579775916,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (348,345,'object','black','/Product Data/Cars/mercedes/W110/',0,1,1559741200,1579775916,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (349,135,'object','W113','/Product Data/Cars/mercedes/',0,1,1559741430,1579775916,2,0,'CAR','Car',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (350,349,'object','red','/Product Data/Cars/mercedes/W113/',0,1,1559741586,1579775916,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (351,349,'object','dark-grey','/Product Data/Cars/mercedes/W113/',0,1,1559741717,1579775916,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (352,349,'object','white','/Product Data/Cars/mercedes/W113/',0,1,1559741819,1579775916,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (353,349,'object','silver','/Product Data/Cars/mercedes/W113/',0,1,1559741872,1579775916,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (355,3,'object','Morris','/Product Data/Manufacturer/',0,1,1559743023,1559903678,2,2,'MA','Manufacturer',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (356,2,'folder','morris','/Product Data/Cars/',27,1,1559743030,1559743030,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (357,356,'object','Mini','/Product Data/Cars/morris/',0,1,1559743034,1579775916,2,0,'CAR','Car',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (358,357,'object','beige','/Product Data/Cars/morris/Mini/',0,1,1559743270,1579775916,2,0,'CAR','Car',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (359,357,'object','blue','/Product Data/Cars/morris/Mini/',0,1,1559743334,1579775917,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (360,357,'object','lightblue','/Product Data/Cars/morris/Mini/',0,1,1559743382,1579775917,2,0,'CAR','Car',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (361,744,'folder','Accessories','/Product Data/',4,1,1559804883,1565783281,2,2,NULL,NULL,NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (362,361,'folder','rims','/Product Data/Accessories/',NULL,1,1559805173,1559805173,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (363,361,'folder','lights','/Product Data/Accessories/',NULL,1,1559805178,1559805178,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (364,363,'folder','head lights','/Product Data/Accessories/lights/',0,1,1559805185,1559805185,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (365,363,'folder','tail lights','/Product Data/Accessories/lights/',2,1,1559805201,1559805201,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (366,363,'folder','indicator lights','/Product Data/Accessories/lights/',3,1,1559805227,1559805227,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (367,361,'folder','windows','/Product Data/Accessories/',0,1,1559805239,1559805256,2,2,NULL,NULL,NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (368,367,'folder','wind screens','/Product Data/Accessories/windows/',NULL,1,1559805248,1559805248,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (370,361,'folder','hood ornaments','/Product Data/Accessories/',NULL,1,1559805292,1559805292,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (372,364,'object','ac cars-cobra 427-head lights','/Product Data/Accessories/lights/head lights/',8,1,1559805464,1579775835,2,0,'AP','AccessoryPart',NULL,NULL,29); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (373,366,'object','ac cars-cobra 427-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559805527,1579775835,2,0,'AP','AccessoryPart',NULL,NULL,27); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (377,362,'object','alfa romeo-1900-rims-spoked wheel','/Product Data/Accessories/rims/',31,1,1559805925,1579775835,2,0,'AP','AccessoryPart',NULL,NULL,28); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (378,362,'object','alfa romeo-1900-rims-simple','/Product Data/Accessories/rims/',30,1,1559805982,1579775835,2,0,'AP','AccessoryPart',NULL,NULL,27); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (379,364,'object','alfa romeo-2000-head lights','/Product Data/Accessories/lights/head lights/',31,1,1559806037,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,27); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (380,361,'folder','steering wheels','/Product Data/Accessories/',NULL,1,1559806123,1559806123,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (381,380,'object','alfa romeo-giulietta-steering wheels','/Product Data/Accessories/steering wheels/',0,1,1559806138,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,25); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (382,364,'object','alfa romeo-giulietta-head lights','/Product Data/Accessories/lights/head lights/',32,1,1559806211,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,29); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (383,366,'object','alfa romeo-giulietta-indicator lights','/Product Data/Accessories/lights/indicator lights/',1,1,1559806249,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,27); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (384,365,'object','alfa romeo-spider-tail lights','/Product Data/Accessories/lights/tail lights/',1,1,1559806318,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,25); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (385,364,'object','alfa romeo-gulietta sprint speciale-head lights','/Product Data/Accessories/lights/head lights/',33,1,1559806379,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,26); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (386,362,'object','alfa romeo-gulietta sprint speciale-rims','/Product Data/Accessories/rims/',32,1,1559806448,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,24); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (387,380,'object','alfa romeo-gulietta sprint speciale-steering wheels','/Product Data/Accessories/steering wheels/',0,1,1559806505,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,23); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (388,364,'object','alfa romeo-1900-head lights','/Product Data/Accessories/lights/head lights/',30,1,1559806547,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,25); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (389,744,'folder','Categories','/Product Data/',1,1,1559806996,1565783310,2,2,NULL,NULL,NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (390,564,'object','cars','/Product Data/Categories/products/',0,1,1559807034,1562571244,2,2,'CA','Category',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (392,564,'object','spare parts','/Product Data/Categories/products/',1,1,1559807059,1565794345,2,2,'CA','Category',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (393,392,'object','lights','/Product Data/Categories/products/spare parts/',0,1,1559807086,1560249814,2,2,'CA','Category',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (394,393,'object','head lamps','/Product Data/Categories/products/spare parts/lights/',0,1,1559807096,1560249923,2,2,'CA','Category',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (395,393,'object','indicator lights','/Product Data/Categories/products/spare parts/lights/',0,1,1559807111,1560249927,2,2,'CA','Category',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (396,393,'object','tail lights','/Product Data/Categories/products/spare parts/lights/',0,1,1559807122,1560249931,2,2,'CA','Category',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (397,392,'object','rims','/Product Data/Categories/products/spare parts/',0,1,1559807414,1560249937,2,2,'CA','Category',NULL,NULL,6); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (399,392,'object','steering wheels','/Product Data/Categories/products/spare parts/',0,1,1559807625,1560249947,2,2,'CA','Category',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (400,365,'object','aston martin-db5-tail lights','/Product Data/Accessories/lights/tail lights/',2,1,1559807783,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,19); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (401,364,'object','aston martin-db5-head lights','/Product Data/Accessories/lights/head lights/',10,1,1559807884,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,18); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (402,366,'object','aston martin-db5-indicator lights','/Product Data/Accessories/lights/indicator lights/',2,1,1559807929,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,18); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (403,362,'object','aston martin-db5-rims','/Product Data/Accessories/rims/',8,1,1559807999,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,18); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (404,364,'object','aston martin-db6-head lights','/Product Data/Accessories/lights/head lights/',11,1,1559808083,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,16); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (405,364,'object','austin-healey-3000 mk ii-head lights','/Product Data/Accessories/lights/head lights/',12,1,1559808203,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,17); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (406,368,'object','austin-healey-3000 mk ii-windscreens','/Product Data/Accessories/windows/wind screens/',0,1,1559808289,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,18); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (407,392,'object','windscreens','/Product Data/Categories/products/spare parts/',0,1,1559808310,1560249957,2,2,'CA','Category',NULL,NULL,5); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (408,370,'object','austin-healey-3000 mk ii-hood ornaments','/Product Data/Accessories/hood ornaments/',0,1,1559808430,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,37); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (409,392,'object','hood ornaments','/Product Data/Categories/products/spare parts/',0,1,1559808456,1560249913,2,2,'CA','Category',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (410,362,'object','austin-healey-3000 mk ii-rims','/Product Data/Accessories/rims/',9,1,1559808503,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,16); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (411,380,'object','bmw-600-steering wheels','/Product Data/Accessories/steering wheels/',0,1,1559808611,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (412,368,'object','bmw-isetta-windscreens','/Product Data/Accessories/windows/wind screens/',0,1,1559808794,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,16); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (413,364,'object','bmw-isetta-head lights','/Product Data/Accessories/lights/head lights/',13,1,1559808838,1579775836,2,0,'AP','AccessoryPart',NULL,NULL,16); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (414,364,'object','bmw-600-head lights','/Product Data/Accessories/lights/head lights/',14,1,1559808943,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,16); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (415,362,'object','bmw-507-rims','/Product Data/Accessories/rims/',10,1,1559808980,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,16); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (416,365,'object','bmw-507-tail lights','/Product Data/Accessories/lights/tail lights/',3,1,1559809050,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,16); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (418,364,'object','bmw-507-head lights','/Product Data/Accessories/lights/head lights/',15,1,1559809107,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (419,364,'object','bmw-335-head lights','/Product Data/Accessories/lights/head lights/',16,1,1559809155,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (420,380,'object','buick-special-steering wheels','/Product Data/Accessories/steering wheels/',0,1,1559809246,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (422,364,'object','buick-special-head lights','/Product Data/Accessories/lights/head lights/',17,1,1559809295,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (423,362,'object','buick-special-rims','/Product Data/Accessories/rims/',11,1,1559809332,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (424,364,'object','cadillac-eldorado-head lights','/Product Data/Accessories/lights/head lights/',18,1,1559809421,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (425,362,'object','cadillac-eldorado-rims','/Product Data/Accessories/rims/',12,1,1559809470,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (426,362,'object','cadillac-coupe de ville-rims','/Product Data/Accessories/rims/',13,1,1559809519,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (427,365,'object','chevrolet-corvette-tail lights','/Product Data/Accessories/lights/tail lights/',4,1,1559809730,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,16); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (428,364,'object','chevrolet-bel air-head lights','/Product Data/Accessories/lights/head lights/',19,1,1559809809,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (429,366,'object','chevrolet-bel air-tail lights','/Product Data/Accessories/lights/indicator lights/',3,1,1559809865,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (430,364,'object','chevrolet-corvette-head lights','/Product Data/Accessories/lights/head lights/',20,1,1559809947,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (431,362,'object','chevrolet-corvette-rims','/Product Data/Accessories/rims/',14,1,1559810012,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (432,380,'object','chevrolet-corvette-steering wheels','/Product Data/Accessories/steering wheels/',0,1,1559810049,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (433,365,'object','chevrolet-bel air-tail lights','/Product Data/Accessories/lights/tail lights/',5,1,1559810084,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,16); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (434,362,'object','chevrolet-corvette-rims-black','/Product Data/Accessories/rims/',15,1,1559810127,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,16); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (435,362,'object','chevrolet-bel air-rims','/Product Data/Accessories/rims/',16,1,1559810171,1579775837,2,0,'AP','AccessoryPart',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (436,366,'object','citroen-ds-indicator lights-back','/Product Data/Accessories/lights/indicator lights/',4,1,1559810283,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (437,362,'object','citroen-2cv-rims','/Product Data/Accessories/rims/',17,1,1559810330,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (438,364,'object','citroen-2cv-head lights','/Product Data/Accessories/lights/head lights/',21,1,1559810403,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (439,366,'object','citroen-2cv-indicator lights','/Product Data/Accessories/lights/indicator lights/',5,1,1559810460,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (440,370,'object','citroen-2cv-hood ornaments','/Product Data/Accessories/hood ornaments/',0,1,1559810492,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,16); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (441,364,'object','citroen-ds-head lights-back','/Product Data/Accessories/lights/head lights/',22,1,1559810532,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (442,364,'object','dodge-charger-head lights','/Product Data/Accessories/lights/head lights/',23,1,1559810637,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (443,368,'object','dodge-charger-windscreens','/Product Data/Accessories/windows/wind screens/',0,1,1559810697,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (444,362,'object','dodge-charger-rims','/Product Data/Accessories/rims/',18,1,1559810738,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (445,362,'object','dodge-charger-rims-black','/Product Data/Accessories/rims/',19,1,1559810784,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,14); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (446,366,'object','ferrari-testarossa-indicator lights','/Product Data/Accessories/lights/indicator lights/',6,1,1559810897,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (447,364,'object','ferrari-250 gt-head lights','/Product Data/Accessories/lights/head lights/',24,1,1559810953,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (448,362,'object','ferrari-250 gt-rims','/Product Data/Accessories/rims/',20,1,1559811002,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (449,362,'object','ferrari-testarossa-rims','/Product Data/Accessories/rims/',21,1,1559811055,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (450,365,'object','ferrari-testarossa-tail lights','/Product Data/Accessories/lights/tail lights/',6,1,1559811091,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (451,380,'object','ferrari-250 gt-steering wheels','/Product Data/Accessories/steering wheels/',0,1,1559811133,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (452,368,'object','fiat-500-windscreens','/Product Data/Accessories/windows/wind screens/',0,1,1559811217,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (453,366,'object','fiat-500-indicator lights','/Product Data/Accessories/lights/indicator lights/',7,1,1559811273,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (454,364,'object','fiat-500-head lights','/Product Data/Accessories/lights/head lights/',25,1,1559811319,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (455,362,'object','fiat-500-rims','/Product Data/Accessories/rims/',22,1,1559811350,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (456,365,'object','fiat-500-tail lights','/Product Data/Accessories/lights/tail lights/',7,1,1559811385,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (457,362,'object','ford-thunderbird-rims','/Product Data/Accessories/rims/',23,1,1559811537,1579775838,2,0,'AP','AccessoryPart',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (458,364,'object','ford-thunderbird-head lights','/Product Data/Accessories/lights/head lights/',26,1,1559811580,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (459,365,'object','ford-mustang-tail lights','/Product Data/Accessories/lights/tail lights/',8,1,1559811620,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (460,370,'object','ford-mustang-hood ornaments','/Product Data/Accessories/hood ornaments/',0,1,1559811666,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (461,364,'object','ford-mustang-head lights','/Product Data/Accessories/lights/head lights/',27,1,1559811704,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (462,366,'object','ford-mustang-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559811738,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (463,365,'object','ford-thunderbird-tail lights','/Product Data/Accessories/lights/tail lights/',9,1,1559811764,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (464,380,'object','jaguar-mark ix-steering wheels','/Product Data/Accessories/steering wheels/',0,1,1559812062,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (465,365,'object','jaguar-xk150-tail lights','/Product Data/Accessories/lights/tail lights/',10,1,1559812136,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (466,364,'object','jaguar-xk150-head lights','/Product Data/Accessories/lights/head lights/',28,1,1559812193,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (467,366,'object','jaguar-xk150-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559812238,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (468,370,'object','jaguar-xk150-hood ornaments','/Product Data/Accessories/hood ornaments/',0,1,1559812279,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (469,362,'object','jaguar-mk2-rims-simple','/Product Data/Accessories/rims/',24,1,1559812317,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (470,362,'object','jaguar-mk2-rims-spoked wheel','/Product Data/Accessories/rims/',25,1,1559812370,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (471,364,'object','jaguar-e-type-head lights','/Product Data/Accessories/lights/head lights/',29,1,1559812407,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (472,366,'object','jaguar-e-type-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559812441,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (473,365,'object','jaguar-mk2-tail lights','/Product Data/Accessories/lights/tail lights/',11,1,1559812487,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (474,370,'object','jaguar-mk2-hood ornaments','/Product Data/Accessories/hood ornaments/',0,1,1559812532,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (475,365,'object','jaguar-e-type-tail lights','/Product Data/Accessories/lights/tail lights/',12,1,1559812558,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (476,364,'object','jaguar-xk140-head lights','/Product Data/Accessories/lights/head lights/',34,1,1559812605,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (477,362,'object','jaguar-xk140-rims','/Product Data/Accessories/rims/',26,1,1559812667,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (478,365,'object','jaguar-mark x-tail lights','/Product Data/Accessories/lights/tail lights/',13,1,1559812713,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (479,364,'object','jaguar-mark x-head lights','/Product Data/Accessories/lights/head lights/',35,1,1559812760,1579775839,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (480,362,'object','jaguar-e-type-rims','/Product Data/Accessories/rims/',27,1,1559812801,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (481,380,'object','jaguar-mk2-steering wheels','/Product Data/Accessories/steering wheels/',0,1,1559812857,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (482,362,'object','lincoln motor company-continental-rims','/Product Data/Accessories/rims/',28,1,1559825468,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (484,366,'object','mercedes-benz-w110-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559825831,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (485,365,'object','mercedes-benz-w113-tail lights','/Product Data/Accessories/lights/tail lights/',14,1,1559825902,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (486,364,'object','mercedes-benz-300 sl-head lights','/Product Data/Accessories/lights/head lights/',36,1,1559825959,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (487,365,'object','mercedes-benz-300 sl-tail lights','/Product Data/Accessories/lights/tail lights/',15,1,1559826001,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (488,365,'object','mercedes-benz-190 sl-tail lights','/Product Data/Accessories/lights/tail lights/',0,1,1559830590,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (489,362,'object','mercedes-benz-300 sl-rims','/Product Data/Accessories/rims/',29,1,1559830664,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (490,362,'object','mercedes-benz-190 sl-rims','/Product Data/Accessories/rims/',33,1,1559830697,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (492,380,'object','mercedes-benz-190 sl-steering wheels','/Product Data/Accessories/steering wheels/',0,1,1559830868,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (493,364,'object','mercedes-benz-190 sl-head lights','/Product Data/Accessories/lights/head lights/',37,1,1559830909,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (494,366,'object','mercedes-benz-190 sl-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559830950,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (495,364,'object','mercedes-benz-w111-head lights','/Product Data/Accessories/lights/head lights/',38,1,1559831011,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (496,364,'object','mercedes-benz-220-head lights','/Product Data/Accessories/lights/head lights/',39,1,1559831069,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (497,366,'object','mercedes-benz-220-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559831115,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (498,368,'object','mercedes-benz-220-windscreens','/Product Data/Accessories/windows/wind screens/',0,1,1559831146,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (499,362,'object','mercedes-benz-220-rims','/Product Data/Accessories/rims/',34,1,1559831190,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (500,362,'object','mercedes-benz-220-rims-blue','/Product Data/Accessories/rims/',35,1,1559831234,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (501,365,'object','mercedes-benz-w128-tail lights','/Product Data/Accessories/lights/tail lights/',0,1,1559831284,1579775840,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (502,364,'object','mercedes-benz-w113-head lights','/Product Data/Accessories/lights/head lights/',40,1,1559831354,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (503,364,'object','mercedes-benz-w110-head lights','/Product Data/Accessories/lights/head lights/',41,1,1559831396,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (504,366,'object','mercedes-benz-w110-indicator lights-splitted','/Product Data/Accessories/lights/indicator lights/',0,1,1559831447,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (505,365,'object','mercedes-benz-w110-tail lights','/Product Data/Accessories/lights/tail lights/',0,1,1559831482,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (506,365,'object','mercedes-benz-220-tail lights','/Product Data/Accessories/lights/tail lights/',0,1,1559831615,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (507,365,'object','mercedes-benz-w111-tail lights','/Product Data/Accessories/lights/tail lights/',0,1,1559831686,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (508,364,'object','mercury-comet-head lights','/Product Data/Accessories/lights/head lights/',42,1,1559831980,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (509,362,'object','mercury-comet-rims','/Product Data/Accessories/rims/',36,1,1559832076,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (510,364,'object','mg cars-mga-head lights','/Product Data/Accessories/lights/head lights/',43,1,1559832145,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (511,370,'object','mg cars-mga-hood ornaments','/Product Data/Accessories/hood ornaments/',0,1,1559832189,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (512,366,'object','mg cars-mga-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559832215,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,10); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (513,362,'object','mg cars-mga-rims','/Product Data/Accessories/rims/',1,1,1559832256,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (514,364,'object','peugeot-403-head lights','/Product Data/Accessories/lights/head lights/',0,1,1559832413,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (515,366,'object','peugeot-403-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559832534,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,10); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (516,365,'object','peugeot-403-tail lights','/Product Data/Accessories/lights/tail lights/',0,1,1559832573,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,10); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (517,362,'object','pontiac-bonneville-rims','/Product Data/Accessories/rims/',2,1,1559832615,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (518,365,'object','porsche-911-tail lights','/Product Data/Accessories/lights/tail lights/',0,1,1559832748,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (519,362,'object','porsche-911-rims','/Product Data/Accessories/rims/',3,1,1559832800,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (520,364,'object','porsche-356-head lights','/Product Data/Accessories/lights/head lights/',1,1,1559832855,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (521,366,'object','porsche-356-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559832903,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,10); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (522,364,'object','renault-r4-head lights','/Product Data/Accessories/lights/head lights/',2,1,1559832949,1579775841,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (523,366,'object','renault-r4-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559832991,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,10); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (524,368,'object','renault-r4-windscreens','/Product Data/Accessories/windows/wind screens/',0,1,1559833040,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (525,362,'object','renault-r4-rims','/Product Data/Accessories/rims/',4,1,1559833074,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (526,364,'object','triumph-tr 6-head lights','/Product Data/Accessories/lights/head lights/',3,1,1559833193,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (527,365,'object','triumph-tr 6-tail lights','/Product Data/Accessories/lights/tail lights/',0,1,1559833232,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (528,364,'object','triumph-tr 3-head lights','/Product Data/Accessories/lights/head lights/',4,1,1559833273,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,10); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (529,370,'object','triumph-tr 3-hood ornaments','/Product Data/Accessories/hood ornaments/',0,1,1559833322,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (530,380,'object','triumph-tr 6-steering wheels','/Product Data/Accessories/steering wheels/',0,1,1559833392,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (531,362,'object','triumph-tr 4-rims','/Product Data/Accessories/rims/',5,1,1559833445,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (532,364,'object','vw-type 2-head lights','/Product Data/Accessories/lights/head lights/',5,1,1559833617,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (533,366,'object','vw-type 2-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559833658,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,10); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (534,362,'object','vw-type 2-rims','/Product Data/Accessories/rims/',6,1,1559833691,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (535,365,'object','vw-type 2-tail lights','/Product Data/Accessories/lights/tail lights/',0,1,1559833738,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,10); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (536,370,'object','vw-type 2-hood ornaments','/Product Data/Accessories/hood ornaments/',0,1,1559833809,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (537,364,'object','vw-karmann-head lights','/Product Data/Accessories/lights/head lights/',6,1,1559833885,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (538,366,'object','vw-karmann-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559833932,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,10); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (539,365,'object','vw-karmann-tail lights','/Product Data/Accessories/lights/tail lights/',0,1,1559833969,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,10); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (540,364,'object','vw-käfer-head lights','/Product Data/Accessories/lights/head lights/',7,1,1559834033,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (541,366,'object','vw-käfer-indicator lights','/Product Data/Accessories/lights/indicator lights/',0,1,1559834106,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (542,362,'object','vw-käfer-rims','/Product Data/Accessories/rims/',7,1,1559834157,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (543,365,'object','vw-käfer-tail lights-1303','/Product Data/Accessories/lights/tail lights/',0,1,1559834196,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (544,365,'object','vw-käfer-tail lights','/Product Data/Accessories/lights/tail lights/',0,1,1559834233,1579775842,2,0,'AP','AccessoryPart',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (545,390,'object','sport and performance','/Product Data/Categories/products/cars/',0,1,1559834991,1565794964,2,2,'CA','Category',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (546,390,'object','luxury','/Product Data/Categories/products/cars/',0,1,1559835017,1565274276,2,2,'CA','Category',NULL,NULL,6); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (547,390,'object','economy','/Product Data/Categories/products/cars/',0,1,1559835061,1565274267,2,2,'CA','Category',NULL,NULL,5); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (548,547,'object','city cars','/Product Data/Categories/products/cars/economy/',0,1,1559835079,1560249676,2,2,'CA','Category',NULL,NULL,5); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (550,546,'object','executive cars','/Product Data/Categories/products/cars/luxury/',0,1,1559835111,1560249500,2,2,'CA','Category',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (551,547,'object','family cars','/Product Data/Categories/products/cars/economy/',0,1,1559835124,1560249758,2,2,'CA','Category',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (552,546,'object','full-size cars','/Product Data/Categories/products/cars/luxury/',0,1,1559835135,1560249736,2,2,'CA','Category',NULL,NULL,5); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (553,546,'object','full-size luxury cars','/Product Data/Categories/products/cars/luxury/',0,1,1559835147,1562571592,2,2,'CA','Category',NULL,NULL,6); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (555,545,'object','grand tourer','/Product Data/Categories/products/cars/sport and performance/',0,1,1559835165,1560249628,2,2,'CA','Category',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (556,390,'object','commercial','/Product Data/Categories/products/cars/',0,1,1559835179,1565794831,2,2,'CA','Category',NULL,NULL,6); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (557,546,'object','mid-size luxury cars','/Product Data/Categories/products/cars/luxury/',0,1,1559835195,1562571708,2,2,'CA','Category',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (558,545,'object','muscle cars','/Product Data/Categories/products/cars/sport and performance/',0,1,1559835223,1560249626,2,2,'CA','Category',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (559,545,'object','sports cars','/Product Data/Categories/products/cars/sport and performance/',0,1,1559835233,1560249623,2,2,'CA','Category',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (560,546,'object','personal luxury cars','/Product Data/Categories/products/cars/luxury/',0,1,1559835243,1560249668,2,2,'CA','Category',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (561,547,'object','economy cars','/Product Data/Categories/products/cars/economy/',0,1,1559901583,1560249733,2,2,'CA','Category',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (562,1,'folder','Shop','/',0,1,1562158513,1565792956,2,2,NULL,NULL,NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (563,695,'object','default','/Shop/Filter-Definitions/',2,1,1562158519,1566914343,2,2,'EF_FD','FilterDefinition',NULL,NULL,28); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (564,389,'object','products','/Product Data/Categories/',0,1,1562243853,1565276047,2,2,'CA','Category',NULL,NULL,5); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (693,756,'object','tax','/Shop/Tax-Definitions/',0,1,1565267314,1565793288,2,2,'EF_OSTC','OnlineShopTaxClass',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (695,562,'folder','Filter-Definitions','/Shop/',0,1,1565360765,1565793311,2,2,NULL,NULL,NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (696,757,'object','chrevorlet','/Shop/Filter-Definitions/Landing-Pages/',3,1,1565360778,1566914448,2,2,'EF_FD','FilterDefinition',NULL,NULL,5); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (697,757,'object','ford','/Shop/Filter-Definitions/Landing-Pages/',2,1,1565361008,1566914463,2,2,'EF_FD','FilterDefinition',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (698,757,'object','vans','/Shop/Filter-Definitions/Landing-Pages/',0,1,1565361229,1566914499,2,2,'EF_FD','FilterDefinition',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (699,757,'object','volkswagen','/Shop/Filter-Definitions/Landing-Pages/',1,1,1565361411,1566914520,2,2,'EF_FD','FilterDefinition',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (702,1,'folder','Customer Management','/',0,1,1565686891,1565784848,2,2,NULL,NULL,NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (703,702,'folder','customers','/Customer Management/',NULL,1,1565686898,1565686898,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (707,703,'folder','--','/Customer Management/customers/',NULL,1,1565703223,1565703223,1,2,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (739,703,'folder','AT','/Customer Management/customers/',NULL,1,1565775938,1565775938,1,2,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (744,1,'folder','Product Data','/',NULL,1,1565783234,1565783234,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (756,562,'folder','Tax-Definitions','/Shop/',0,1,1565793277,1565793286,2,2,NULL,NULL,NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (757,695,'folder','Landing-Pages','/Shop/Filter-Definitions/',0,1,1565793317,1565793317,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (758,695,'folder','Categories','/Shop/Filter-Definitions/',1,1,1565793331,1565793331,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (759,562,'folder','Vouchers','/Shop/',NULL,1,1565793356,1565793356,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (760,758,'object','spare-parts','/Shop/Filter-Definitions/Categories/',0,1,1565793853,1566914397,2,2,'EF_FD','FilterDefinition',NULL,NULL,6); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (761,758,'object','commercial-cars','/Shop/Filter-Definitions/Categories/',0,1,1565794643,1566914375,2,2,'EF_FD','FilterDefinition',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (762,758,'object','sport','/Shop/Filter-Definitions/Categories/',2,1,1565794883,1566914426,2,2,'EF_FD','FilterDefinition',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (763,1,'folder','News','/',NULL,1,1565947986,1565947986,2,2,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (765,763,'object','Montery Car Week Spring Edition','/News/',0,1,1565948018,1567082073,2,2,'NE','News',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (766,763,'object','Vintage Car Auction Detroit','/News/',0,1,1565948484,1567072392,2,2,'NE','News',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (767,763,'object','Driven Chevrolet Implala','/News/',0,1,1565948509,1642779852,2,1,'NE','News',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (768,763,'object','Historic Racing in Le Mans','/News/',0,1,1565948556,1567072218,2,2,'NE','News',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (769,763,'object','Announcement: Documentary Movie about Henry Ford','/News/',0,1,1565948593,1567072141,2,2,'NE','News',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (770,763,'object','Rare for a Reason - Ford Mustang','/News/',0,1,1565948622,1567072368,2,2,'NE','News',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (771,763,'object','Li Europan lingues es membres','/News/',0,1,1565948640,1567072261,2,2,'NE','News',NULL,NULL,6); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (772,763,'object','Lor separat existentie es un myth','/News/',0,1,1565948655,1567072272,2,2,'NE','News',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (773,763,'object','A un Angleso it va semblar un simplificat','/News/',0,1,1565948670,1567072124,2,2,'NE','News',NULL,NULL,11); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (815,703,'folder','_temp','/Customer Management/customers/',NULL,1,1566579635,1566579635,1,2,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (819,831,'object','Customer-Type','/Customer Management/segments/calculated/',2,1,1566653217,1566671573,2,2,'1','CustomerSegmentGroup',NULL,NULL,6); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (824,819,'object','New-Customer','/Customer Management/segments/calculated/Customer-Type/',0,1,1566653501,1566829396,2,2,'2','CustomerSegment',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (825,819,'object','Regular-Customer','/Customer Management/segments/calculated/Customer-Type/',0,1,1566653518,1566829431,2,2,'2','CustomerSegment',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (826,819,'object','VIP-Customer','/Customer Management/segments/calculated/Customer-Type/',0,1,1566653530,1566829443,2,2,'2','CustomerSegment',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (830,702,'folder','segments','/Customer Management/',NULL,1,1566671485,1566671485,1,0,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (831,830,'folder','calculated','/Customer Management/segments/',NULL,1,1566671485,1566671485,1,0,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (832,831,'object','State','/Customer Management/segments/calculated/',0,1,1566671486,1566671861,0,2,'1','CustomerSegmentGroup',NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (833,831,'object','Gender','/Customer Management/segments/calculated/',1,1,1566671486,1566671857,0,2,'1','CustomerSegmentGroup',NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (834,833,'object','male','/Customer Management/segments/calculated/Gender/',NULL,1,1566671486,1566671486,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (835,833,'object','female','/Customer Management/segments/calculated/Gender/',NULL,1,1566671486,1566671486,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (836,833,'object','not-set','/Customer Management/segments/calculated/Gender/',NULL,1,1566671486,1566671486,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (837,739,'folder','5020','/Customer Management/customers/AT/',NULL,1,1566671506,1566671506,1,2,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (838,832,'folder','AT','/Customer Management/segments/calculated/State/',NULL,1,1566671506,1566671506,1,2,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (839,838,'object','AT - Salzburg','/Customer Management/segments/calculated/State/AT/',NULL,1,1566671506,1566671506,2,2,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (847,838,'object','AT - Oberösterreich','/Customer Management/segments/calculated/State/AT/',NULL,1,1566671758,1566671758,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (859,831,'object','VisitingCount','/Customer Management/segments/calculated/',0,1,1566672569,1566672588,2,2,'1','CustomerSegmentGroup',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (860,859,'object','at least once','/Customer Management/segments/calculated/VisitingCount/',0,1,1566672608,1566672621,2,2,'2','CustomerSegment',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (861,859,'object','3 times','/Customer Management/segments/calculated/VisitingCount/',0,1,1566672643,1566672654,2,2,'2','CustomerSegment',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (862,859,'object','5 times','/Customer Management/segments/calculated/VisitingCount/',0,1,1566672670,1566672681,2,2,'2','CustomerSegment',NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (863,859,'object','10 times','/Customer Management/segments/calculated/VisitingCount/',0,1,1566672694,1566672711,2,2,'2','CustomerSegment',NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (864,759,'object','Free-Shipping','/Shop/Vouchers/',0,1,1566741057,1566742433,2,2,'EF_OSVS','OnlineShopVoucherSeries',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (865,759,'object','Commercial-Discount','/Shop/Vouchers/',0,1,1566741979,1566742015,2,2,'EF_OSVS','OnlineShopVoucherSeries',NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (872,757,'object','sale','/Shop/Filter-Definitions/Landing-Pages/',2,1,1562158519,1566914482,2,2,'EF_FD','FilterDefinition',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (873,389,'object','sale','/Product Data/Categories/',0,1,1566810276,1566810487,2,2,'CA','Category',NULL,NULL,5); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (874,831,'object','Interest-Target-Groups','/Customer Management/segments/calculated/',0,1,1566824695,1566824759,2,2,'1','CustomerSegmentGroup',NULL,NULL,6); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (875,874,'object','Sports-Cars-Fan','/Customer Management/segments/calculated/Interest-Target-Groups/',0,1,1566824774,1566829487,2,2,'2','CustomerSegment',NULL,NULL,5); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (876,874,'object','Economy-Cars-Fan','/Customer Management/segments/calculated/Interest-Target-Groups/',0,1,1566824799,1566829461,2,2,'2','CustomerSegment',NULL,NULL,5); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (877,874,'object','Luxury-Cars-Fan','/Customer Management/segments/calculated/Interest-Target-Groups/',0,1,1566824835,1566829472,2,2,'2','CustomerSegment',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (960,831,'object','Interest Manufacturer','/Customer Management/segments/calculated/',NULL,1,1566893533,1566893533,2,2,'1','CustomerSegmentGroup',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (961,960,'object','Jaguar','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893534,1566893534,2,2,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (962,831,'object','Interest Car Class','/Customer Management/segments/calculated/',NULL,1,1566893534,1566893534,2,2,'1','CustomerSegmentGroup',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (963,962,'object','sports car','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893534,1566893534,2,2,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (964,831,'object','Interest Body Style','/Customer Management/segments/calculated/',NULL,1,1566893534,1566893534,2,2,'1','CustomerSegmentGroup',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (965,964,'object','2-door roadster','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893534,1566893534,2,2,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (966,960,'object','Citroen','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893534,1566893534,2,2,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (967,962,'object','Economy car','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893534,1566893534,2,2,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (968,964,'object','4-door sedan','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893534,1566893534,2,2,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (969,960,'object','AC Cars','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893534,1566893534,2,2,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (970,960,'object','Alfa Romeo','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893534,1566893534,2,2,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (971,960,'object','Austin-Healey','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893534,1566893534,2,2,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (972,960,'object','Dodge','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893534,1566893534,2,2,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (973,964,'object','2-door coupé','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893737,1566893737,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (974,962,'object','Mid-size luxury','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893737,1566893737,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (975,962,'object','Family car','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893738,1566893738,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (976,960,'object','Buick','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893739,1566893739,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (977,962,'object','Full-Size','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893739,1566893739,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (978,960,'object','Cadillac','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893739,1566893739,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (979,964,'object','4-door 4-window hardtop','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893739,1566893739,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (980,964,'object','2-door hardtop','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893739,1566893739,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (981,962,'object','Personal luxury car','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893740,1566893740,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (982,964,'object','2-door convertible','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893740,1566893740,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (983,960,'object','Chevrolet','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893740,1566893740,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (984,962,'object','Executive car','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893741,1566893741,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (985,960,'object','Ferrari','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893742,1566893742,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (986,964,'object','2-door berlinetta','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893742,1566893742,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (987,960,'object','Fiat','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893742,1566893742,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (988,962,'object','City Car','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893742,1566893742,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (989,960,'object','Ford','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893742,1566893742,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (990,962,'object','Muscle Car','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893742,1566893742,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (991,960,'object','Lamborghini','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893743,1566893743,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (992,960,'object','Lincoln','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893744,1566893744,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (993,960,'object','Mercedes','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893744,1566893744,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (994,964,'object','roadster','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893744,1566893744,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (995,960,'object','Mercury','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893745,1566893745,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (996,960,'object','MG','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893745,1566893745,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (997,960,'object','Peugeot','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893745,1566893745,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (998,960,'object','Pontiac','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893745,1566893745,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (999,960,'object','Porsche','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893746,1566893746,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1000,964,'object','2-door targa top','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893746,1566893746,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1001,960,'object','Renault','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893746,1566893746,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1002,964,'object','5-door hatchback','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893746,1566893746,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1003,960,'object','VEB Sachsenring','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893746,1566893746,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1004,960,'object','Triumph','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893746,1566893746,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1005,960,'object','VW','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893747,1566893747,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1006,964,'object','2-door sedan','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893748,1566893748,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1007,962,'object','Light commercial vehicle','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893749,1566893749,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1008,964,'object','4-5-door minibus','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893749,1566893749,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1009,960,'object','Aston Martin','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893749,1566893749,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1010,962,'object','Grand tourer','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893749,1566893749,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1011,962,'object','Full-size luxury car','/Customer Management/segments/calculated/Interest Car Class/',NULL,1,1566893751,1566893751,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1012,960,'object','BMW','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893752,1566893752,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1013,964,'object','4-door cabriolet','/Customer Management/segments/calculated/Interest Body Style/',NULL,1,1566893753,1566893753,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1014,960,'object','Morris','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,1,1566893755,1566893755,0,0,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1015,1026,'object','Fred-Flintstone','/Customer Management/customers/AT/1020/',0,1,1566901883,1643292624,2,0,'CU','Customer',NULL,NULL,15); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1016,1026,'object','Wilma-Flintstone','/Customer Management/customers/AT/1020/',0,1,1566902001,1643291617,2,0,'CU','Customer',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1017,1026,'object','Pebbles-Flintstone','/Customer Management/customers/AT/1020/',0,1,1566902051,1643291281,2,0,'CU','Customer',NULL,NULL,16); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1018,1026,'object','Dino-Flintstone','/Customer Management/customers/AT/1020/',0,1,1566902093,1643290226,2,0,'CU','Customer',NULL,NULL,19); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1019,1029,'object','Barney-Rubble','/Customer Management/customers/DE/63741/',0,1,1566902127,1566907031,2,2,'CU','Customer',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1020,1029,'object','Betty-Rubble','/Customer Management/customers/DE/63741/',0,1,1566902158,1566912074,2,0,'CU','Customer',NULL,NULL,24); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1021,1029,'object','Bamm-Bamm-Rubble','/Customer Management/customers/DE/63741/',0,1,1566902184,1566908278,2,0,'CU','Customer',NULL,NULL,12); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1022,1033,'object','Joe-Rockhead','/Customer Management/customers/US/98109/',0,1,1566902221,1567410149,2,2,'CU','Customer',NULL,NULL,10); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1023,1034,'object','Pearl-Slaghoople','/Customer Management/customers/US/94015/',0,1,1566902259,1643118632,2,1,'CU','Customer',NULL,NULL,8); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1024,837,'object','Tex-Hardrock','/Customer Management/customers/AT/5020/',0,1,1566902297,1566903187,2,2,'CU','Customer',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1025,1035,'object','Sam-Slagheap','/Customer Management/customers/DE/13158/',0,1,1566902331,1566903188,2,2,'CU','Customer',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1026,739,'folder','1020','/Customer Management/customers/AT/',NULL,1,1566902474,1566902474,1,2,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1027,838,'object','AT - Wien','/Customer Management/segments/calculated/State/AT/',NULL,1,1566902475,1566902475,2,2,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1028,703,'folder','DE','/Customer Management/customers/',NULL,1,1566902765,1566902765,1,2,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1029,1028,'folder','63741','/Customer Management/customers/DE/',NULL,1,1566902765,1566902765,1,2,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1030,832,'folder','DE','/Customer Management/segments/calculated/State/',NULL,1,1566902766,1566902766,1,2,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1031,1030,'object','DE - Bayern','/Customer Management/segments/calculated/State/DE/',NULL,1,1566902766,1566902766,2,2,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1032,703,'folder','US','/Customer Management/customers/',NULL,1,1566902874,1566902874,1,2,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1033,1032,'folder','98109','/Customer Management/customers/US/',NULL,1,1566902874,1566902874,1,2,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1034,1032,'folder','94015','/Customer Management/customers/US/',NULL,1,1566902925,1566902925,1,2,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1035,1028,'folder','13158','/Customer Management/customers/DE/',NULL,1,1566903031,1566903031,1,2,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1036,1030,'object','DE - Berlin','/Customer Management/segments/calculated/State/DE/',NULL,1,1566903031,1566903031,2,2,'2','CustomerSegment',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1045,1047,'object','Dino-Flinttone','/Customer Management/customers/AU/1020/',0,1,1566906643,1639403473,2,1,'CU','Customer',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1046,703,'folder','AU','/Customer Management/customers/',NULL,1,1566906693,1566906693,1,2,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1047,1046,'folder','1020','/Customer Management/customers/AU/',NULL,1,1566906693,1566906693,1,2,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1048,1029,'object','Barney-Rubbl','/Customer Management/customers/DE/63741/',0,1,1566906977,1566908246,2,2,'CU','Customer',NULL,NULL,6); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1073,1,'folder','upload','/',NULL,1,1566916747,1566916747,1,0,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1086,1073,'folder','new','/upload/',NULL,1,1566995185,1566995185,1,0,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1088,1086,'object','Kafer-1566995226','/upload/new/',0,0,1566995226,1566995426,0,2,'CAR','Car',NULL,NULL,5); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1092,864,'object','free_shipping','/Shop/Vouchers/Free-Shipping/',NULL,1,1566995338,1566995338,0,0,'EF_OSVT','OnlineShopVoucherToken',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1093,1086,'object','Cobra-1566995353','/upload/new/',0,0,1566995353,1642779611,0,1,'CAR','Car',NULL,NULL,3); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1094,1086,'object','DB3-1566995468','/upload/new/',0,1,1566995468,1579775917,0,0,'CAR','Car',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1095,1086,'object','203-1566995526','/upload/new/',NULL,NULL,1566995526,1566995526,0,0,'CAR','Car',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1101,707,'folder','--','/Customer Management/customers/--/',NULL,1,1567080000,1567080000,1,0,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1111,865,'object','com_6132','/Shop/Vouchers/Commercial-Discount/',NULL,1,1567157538,1567157538,0,0,'EF_OSVT','OnlineShopVoucherToken',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1119,1,'folder','Events','/',NULL,1,1568799358,1568799358,1,1,NULL,NULL,NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1120,1119,'object','Classic Expo Salzburg','/Events/',0,1,1568799577,1568803474,1,1,'EV','Event',NULL,NULL,5); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1121,1119,'object','Auto Messe Salzburg','/Events/',0,1,1568799578,1642779847,1,1,'EV','Event',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1122,1119,'object','Retro Classics','/Events/',0,1,1568799579,1568803521,1,1,'EV','Event',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1123,1119,'object','Vienna Auto Show','/Events/',0,1,1568799580,1568803541,1,1,'EV','Event',NULL,NULL,7); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1124,1119,'object','Custom Wheels Vienna','/Events/',0,1,1568799580,1568803484,1,1,'EV','Event',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1125,1119,'object','International Motor Show','/Events/',0,1,1568799581,1568803499,1,1,'EV','Event',NULL,NULL,5); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1126,1119,'object','Thermen - Classic 2019','/Events/',0,1,1568799583,1568803530,1,1,'EV','Event',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1127,1119,'object','Oldtimer Expo 2019','/Events/',0,1,1568799583,1568803509,1,1,'EV','Event',NULL,NULL,4); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1157,562,'folder','Orders','/Shop/',0,1,1643290009,1643290009,1,0,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1158,1157,'folder','2022','/Shop/Orders/',0,1,1643290009,1643290009,1,0,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1159,1158,'folder','01','/Shop/Orders/2022/',0,1,1643290009,1643290009,1,0,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1160,1159,'folder','27','/Shop/Orders/2022/01/',0,1,1643290009,1643290009,1,0,NULL,NULL,NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1161,1160,'object','ord_61f29d99992e7','/Shop/Orders/2022/01/27/',0,1,1643290009,1643290057,0,0,'EF_OSO','OnlineShopOrder',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1162,1161,'object','74_74','/Shop/Orders/2022/01/27/ord_61f29d99992e7/',0,1,1643290009,1643290009,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1163,1161,'object','438_438_gift','/Shop/Orders/2022/01/27/ord_61f29d99992e7/',0,1,1643290009,1643290009,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,1); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1164,1160,'object','ord_61f29e71db3cc','/Shop/Orders/2022/01/27/',0,1,1643290225,1643290332,0,0,'EF_OSO','OnlineShopOrder',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1165,1164,'object','262_262','/Shop/Orders/2022/01/27/ord_61f29e71db3cc/',0,1,1643290226,1643290226,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1166,1164,'object','377_377','/Shop/Orders/2022/01/27/ord_61f29e71db3cc/',0,1,1643290226,1643290226,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1167,1160,'object','ord_61f29f7cd4a36','/Shop/Orders/2022/01/27/',0,1,1643290492,1643290516,0,0,'EF_OSO','OnlineShopOrder',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1168,1167,'object','105_105','/Shop/Orders/2022/01/27/ord_61f29f7cd4a36/',0,1,1643290493,1643290493,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1169,1160,'object','ord_61f2a19c2cc23','/Shop/Orders/2022/01/27/',0,1,1643291036,1643291124,0,0,'EF_OSO','OnlineShopOrder',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1170,1169,'object','125_125','/Shop/Orders/2022/01/27/ord_61f2a19c2cc23/',0,1,1643291036,1643291036,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1171,1160,'object','ord_61f2a290b8f47','/Shop/Orders/2022/01/27/',0,1,1643291280,1643291381,0,0,'EF_OSO','OnlineShopOrder',NULL,NULL,13); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1172,1171,'object','235_235','/Shop/Orders/2022/01/27/ord_61f2a290b8f47/',0,1,1643291280,1643291280,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1173,1171,'object','12_12','/Shop/Orders/2022/01/27/ord_61f2a290b8f47/',0,1,1643291281,1643291281,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1174,1160,'object','ord_61f2a3e0a8fe3','/Shop/Orders/2022/01/27/',0,1,1643291616,1643291842,0,0,'EF_OSO','OnlineShopOrder',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1175,1174,'object','316_316','/Shop/Orders/2022/01/27/ord_61f2a3e0a8fe3/',0,1,1643291616,1643291616,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1176,1174,'object','54_54','/Shop/Orders/2022/01/27/ord_61f2a3e0a8fe3/',0,1,1643291616,1643291616,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1177,1160,'object','ord_61f2a57dddfb5','/Shop/Orders/2022/01/27/',0,1,1643292029,1643292086,0,0,'EF_OSO','OnlineShopOrder',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1178,1177,'object','58_58','/Shop/Orders/2022/01/27/ord_61f2a57dddfb5/',0,1,1643292030,1643292030,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1179,1160,'object','ord_61f2a6358659e','/Shop/Orders/2022/01/27/',0,1,1643292213,1643292270,0,0,'EF_OSO','OnlineShopOrder',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1180,1179,'object','420_420','/Shop/Orders/2022/01/27/ord_61f2a6358659e/',0,1,1643292213,1643292213,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1181,1179,'object','452_452','/Shop/Orders/2022/01/27/ord_61f2a6358659e/',0,1,1643292213,1643292213,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1182,1160,'object','ord_61f2a6832b14a','/Shop/Orders/2022/01/27/',0,1,1643292291,1643292334,0,0,'EF_OSO','OnlineShopOrder',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1183,1182,'object','70_70','/Shop/Orders/2022/01/27/ord_61f2a6832b14a/',0,1,1643292291,1643292291,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1184,1160,'object','ord_61f2a6dd66b56','/Shop/Orders/2022/01/27/',0,1,1643292381,1643292487,0,0,'EF_OSO','OnlineShopOrder',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1185,1184,'object','161_161','/Shop/Orders/2022/01/27/ord_61f2a6dd66b56/',0,1,1643292381,1643292381,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1186,1160,'object','ord_61f2a7cfd8682','/Shop/Orders/2022/01/27/',0,1,1643292623,1643292644,0,0,'EF_OSO','OnlineShopOrder',NULL,NULL,9); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1187,1186,'object','139_139','/Shop/Orders/2022/01/27/ord_61f2a7cfd8682/',0,1,1643292624,1643292624,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); +INSERT INTO objects (`id`,`parentId`,`type`,`key`,`path`,`index`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`classId`,`className`,`childrenSortBy`,`childrenSortOrder`,`versionCount`) VALUES (1188,1186,'object','116_116','/Shop/Orders/2022/01/27/ord_61f2a7cfd8682/',0,1,1643292624,1643292624,0,0,'EF_OSOI','OnlineShopOrderItem',NULL,NULL,2); diff --git a/dump/data-1-settings_store.sql b/dump/data-1-settings_store.sql index 93e5621e..872b5292 100644 --- a/dump/data-1-settings_store.sql +++ b/dump/data-1-settings_store.sql @@ -80,8 +80,8 @@ INSERT INTO settings_store (`id`,`scope`,`data`,`type`) VALUES ('reports','pimco INSERT INTO settings_store (`id`,`scope`,`data`,`type`) VALUES ('shop','pimcore_data_hub','{\"general\":{\"active\":true,\"type\":\"graphql\",\"name\":\"shop\",\"description\":\"Shop related information like Orders, OrderItems, Vouchers.\",\"group\":\"\",\"sqlObjectCondition\":\"\",\"modificationDate\":1640088584,\"path\":null,\"createDate\":1640088584},\"schema\":{\"queryEntities\":{\"OnlineShopOrder\":{\"id\":\"OnlineShopOrder\",\"name\":\"OnlineShopOrder\",\"columnConfig\":{\"columns\":[{\"attributes\":{\"attribute\":\"ordernumber\",\"label\":\"Ordernumber\",\"dataType\":\"input\",\"layout\":{\"fieldtype\":\"input\",\"width\":400,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":255,\"phpdocType\":\"string\",\"regex\":\"\",\"unique\":null,\"showCharCount\":null,\"name\":\"ordernumber\",\"title\":\"Ordernumber\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":\"\",\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":true,\"visibleSearch\":true}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"orderState\",\"label\":\"OrderState\",\"dataType\":\"select\",\"layout\":{\"fieldtype\":\"select\",\"options\":[{\"key\":\"Committed\",\"value\":\"committed\"},{\"key\":\"Cancelled\",\"value\":\"cancelled\"},{\"key\":\"Payment Pending\",\"value\":\"paymentPending\"},{\"key\":\"Aborted\",\"value\":\"aborted\"}],\"width\":400,\"defaultValue\":\"\",\"optionsProviderClass\":\"\",\"optionsProviderData\":\"\",\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":190,\"phpdocType\":\"string\",\"dynamicOptions\":false,\"name\":\"orderState\",\"title\":\"OrderState\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":true,\"visibleSearch\":true}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"orderdate\",\"label\":\"Orderdate\",\"dataType\":\"datetime\",\"layout\":{\"fieldtype\":\"datetime\",\"queryColumnType\":\"bigint(20)\",\"columnType\":\"bigint(20)\",\"phpdocType\":\"\\\\Carbon\\\\Carbon\",\"defaultValue\":null,\"useCurrentDate\":false,\"name\":\"orderdate\",\"title\":\"Orderdate\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":\"\",\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":true,\"visibleSearch\":true}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"items\",\"label\":\"Items\",\"dataType\":\"manyToManyObjectRelation\",\"layout\":{\"fieldtype\":\"manyToManyObjectRelation\",\"width\":\"\",\"height\":\"\",\"maxItems\":\"\",\"queryColumnType\":\"text\",\"phpdocType\":\"array\",\"relationType\":true,\"visibleFields\":null,\"optimizedAdminLoading\":false,\"visibleFieldDefinitions\":[],\"lazyLoading\":false,\"classes\":[{\"classes\":\"OnlineShopOrderItem\"}],\"pathFormatterClass\":\"\",\"name\":\"items\",\"title\":\"Items\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":\"\",\"datatype\":\"data\",\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"comment\",\"label\":\"Comment\",\"dataType\":\"textarea\",\"layout\":{\"fieldtype\":\"textarea\",\"width\":400,\"height\":200,\"maxLength\":null,\"showCharCount\":null,\"excludeFromSearchIndex\":false,\"queryColumnType\":\"longtext\",\"columnType\":\"longtext\",\"phpdocType\":\"string\",\"name\":\"comment\",\"title\":\"Comment\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"customerOrderData\",\"label\":\"Customer Order Data\",\"dataType\":\"input\",\"layout\":{\"fieldtype\":\"input\",\"width\":400,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":255,\"phpdocType\":\"string\",\"regex\":\"\",\"unique\":null,\"showCharCount\":null,\"name\":\"customerOrderData\",\"title\":\"Customer Order Data\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"voucherTokens\",\"label\":\"Voucher Tokens\",\"dataType\":\"manyToManyObjectRelation\",\"layout\":{\"fieldtype\":\"manyToManyObjectRelation\",\"width\":\"\",\"height\":\"\",\"maxItems\":\"\",\"queryColumnType\":\"text\",\"phpdocType\":\"array\",\"relationType\":true,\"visibleFields\":null,\"optimizedAdminLoading\":false,\"visibleFieldDefinitions\":[],\"lazyLoading\":false,\"classes\":[{\"classes\":\"OnlineShopVoucherToken\"}],\"pathFormatterClass\":null,\"name\":\"voucherTokens\",\"title\":\"Voucher Tokens\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"giftItems\",\"label\":\"Gift Items\",\"dataType\":\"manyToManyObjectRelation\",\"layout\":{\"fieldtype\":\"manyToManyObjectRelation\",\"width\":\"\",\"height\":\"\",\"maxItems\":\"\",\"queryColumnType\":\"text\",\"phpdocType\":\"array\",\"relationType\":true,\"visibleFields\":null,\"optimizedAdminLoading\":false,\"visibleFieldDefinitions\":[],\"lazyLoading\":true,\"classes\":[{\"classes\":\"OnlineShopOrderItem\"}],\"pathFormatterClass\":\"\",\"name\":\"giftItems\",\"title\":\"Gift Items\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"subTotalNetPrice\",\"label\":\"SubTotalNetPrice\",\"dataType\":\"numeric\",\"layout\":{\"fieldtype\":\"numeric\",\"width\":400,\"defaultValue\":null,\"queryColumnType\":\"double\",\"columnType\":\"double\",\"phpdocType\":\"float\",\"integer\":false,\"unsigned\":false,\"minValue\":null,\"maxValue\":null,\"unique\":null,\"decimalSize\":19,\"decimalPrecision\":4,\"name\":\"subTotalNetPrice\",\"title\":\"SubTotalNetPrice\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"subTotalPrice\",\"label\":\"SubTotalPrice\",\"dataType\":\"numeric\",\"layout\":{\"fieldtype\":\"numeric\",\"width\":400,\"defaultValue\":null,\"queryColumnType\":\"double\",\"columnType\":\"double\",\"phpdocType\":\"float\",\"integer\":false,\"unsigned\":false,\"minValue\":null,\"maxValue\":null,\"unique\":null,\"decimalSize\":19,\"decimalPrecision\":4,\"name\":\"subTotalPrice\",\"title\":\"SubTotalPrice\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":\"\",\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"totalNetPrice\",\"label\":\"TotalNetPrice\",\"dataType\":\"numeric\",\"layout\":{\"fieldtype\":\"numeric\",\"width\":400,\"defaultValue\":null,\"queryColumnType\":\"double\",\"columnType\":\"double\",\"phpdocType\":\"float\",\"integer\":false,\"unsigned\":false,\"minValue\":null,\"maxValue\":null,\"unique\":null,\"decimalSize\":19,\"decimalPrecision\":4,\"name\":\"totalNetPrice\",\"title\":\"TotalNetPrice\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"totalPrice\",\"label\":\"TotalPrice\",\"dataType\":\"numeric\",\"layout\":{\"fieldtype\":\"numeric\",\"width\":400,\"defaultValue\":null,\"queryColumnType\":\"double\",\"columnType\":\"double\",\"phpdocType\":\"float\",\"integer\":false,\"unsigned\":false,\"minValue\":null,\"maxValue\":null,\"unique\":null,\"decimalSize\":19,\"decimalPrecision\":4,\"name\":\"totalPrice\",\"title\":\"TotalPrice\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":\"\",\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"currency\",\"label\":\"Currency\",\"dataType\":\"input\",\"layout\":{\"fieldtype\":\"input\",\"width\":null,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":255,\"phpdocType\":\"string\",\"regex\":\"\",\"unique\":null,\"showCharCount\":null,\"name\":\"currency\",\"title\":\"Currency\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"customer\",\"label\":\"Customer\",\"dataType\":\"manyToOneRelation\",\"layout\":{\"fieldtype\":\"manyToOneRelation\",\"width\":400,\"assetUploadPath\":\"\",\"relationType\":true,\"queryColumnType\":{\"id\":\"int(11)\",\"type\":\"enum(\'document\',\'asset\',\'object\')\"},\"phpdocType\":\"\\\\Pimcore\\\\Model\\\\Document\\\\Page | \\\\Pimcore\\\\Model\\\\Document\\\\Snippet | \\\\Pimcore\\\\Model\\\\Document | \\\\Pimcore\\\\Model\\\\Asset | \\\\Pimcore\\\\Model\\\\DataObject\\\\AbstractObject\",\"objectsAllowed\":true,\"assetsAllowed\":false,\"assetTypes\":[],\"documentsAllowed\":false,\"documentTypes\":[],\"lazyLoading\":true,\"classes\":[{\"classes\":\"Customer\"}],\"pathFormatterClass\":\"\",\"name\":\"customer\",\"title\":\"Customer\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"deliveryFirstname\",\"label\":\"Firstname\",\"dataType\":\"input\",\"layout\":{\"fieldtype\":\"input\",\"width\":400,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":255,\"phpdocType\":\"string\",\"regex\":\"\",\"unique\":null,\"showCharCount\":null,\"name\":\"deliveryFirstname\",\"title\":\"Firstname\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"deliveryLastname\",\"label\":\"Lastname\",\"dataType\":\"input\",\"layout\":{\"fieldtype\":\"input\",\"width\":400,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":255,\"phpdocType\":\"string\",\"regex\":\"\",\"unique\":null,\"showCharCount\":null,\"name\":\"deliveryLastname\",\"title\":\"Lastname\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"deliveryCompany\",\"label\":\"Company\",\"dataType\":\"input\",\"layout\":{\"fieldtype\":\"input\",\"width\":400,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":255,\"phpdocType\":\"string\",\"regex\":\"\",\"unique\":null,\"showCharCount\":null,\"name\":\"deliveryCompany\",\"title\":\"Company\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"deliveryStreet\",\"label\":\"Street\",\"dataType\":\"input\",\"layout\":{\"fieldtype\":\"input\",\"width\":400,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":255,\"phpdocType\":\"string\",\"regex\":\"\",\"unique\":null,\"showCharCount\":null,\"name\":\"deliveryStreet\",\"title\":\"Street\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"deliveryZip\",\"label\":\"Zip\",\"dataType\":\"input\",\"layout\":{\"fieldtype\":\"input\",\"width\":400,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":255,\"phpdocType\":\"string\",\"regex\":\"\",\"unique\":null,\"showCharCount\":null,\"name\":\"deliveryZip\",\"title\":\"Zip\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"deliveryCity\",\"label\":\"City\",\"dataType\":\"input\",\"layout\":{\"fieldtype\":\"input\",\"width\":400,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":255,\"phpdocType\":\"string\",\"regex\":\"\",\"unique\":null,\"showCharCount\":null,\"name\":\"deliveryCity\",\"title\":\"City\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"paymentInfo\",\"label\":\"Payment Informations\",\"dataType\":\"fieldcollections\",\"layout\":{\"fieldtype\":\"fieldcollections\",\"phpdocType\":\"\\\\Pimcore\\\\Model\\\\DataObject\\\\Fieldcollection\",\"allowedTypes\":[\"PaymentInfo\"],\"lazyLoading\":false,\"maxItems\":\"\",\"disallowAddRemove\":true,\"disallowReorder\":true,\"collapsed\":false,\"collapsible\":false,\"border\":false,\"name\":\"paymentInfo\",\"title\":\"Payment Informations\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":false,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"paymentReference\",\"label\":\"Payment Ref.\",\"dataType\":\"input\",\"layout\":{\"fieldtype\":\"input\",\"width\":400,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":255,\"phpdocType\":\"string\",\"regex\":\"\",\"unique\":null,\"showCharCount\":null,\"name\":\"paymentReference\",\"title\":\"Payment Ref.\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false}]}},\"OnlineShopOrderItem\":{\"id\":\"OnlineShopOrderItem\",\"name\":\"OnlineShopOrderItem\",\"columnConfig\":{\"columns\":[{\"attributes\":{\"attribute\":\"orderState\",\"label\":\"Order Item State\",\"dataType\":\"select\",\"layout\":{\"fieldtype\":\"select\",\"options\":[{\"key\":\"Committed\",\"value\":\"committed\"},{\"key\":\"Cancelled\",\"value\":\"cancelled\"}],\"width\":400,\"defaultValue\":\"\",\"optionsProviderClass\":null,\"optionsProviderData\":null,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":190,\"phpdocType\":\"string\",\"dynamicOptions\":false,\"name\":\"orderState\",\"title\":\"Order Item State\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":false,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"productNumber\",\"label\":\"Produktnummer\",\"dataType\":\"input\",\"layout\":{\"fieldtype\":\"input\",\"width\":400,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":255,\"phpdocType\":\"string\",\"regex\":\"\",\"unique\":false,\"showCharCount\":false,\"name\":\"productNumber\",\"title\":\"Produktnummer\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":\"\",\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":true,\"visibleSearch\":true}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"productName\",\"label\":\"Produktname\",\"dataType\":\"input\",\"layout\":{\"fieldtype\":\"input\",\"width\":400,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":255,\"phpdocType\":\"string\",\"regex\":\"\",\"unique\":false,\"showCharCount\":false,\"name\":\"productName\",\"title\":\"Produktname\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":\"\",\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":true,\"visibleSearch\":true}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"amount\",\"label\":\"Amount\",\"dataType\":\"numeric\",\"layout\":{\"fieldtype\":\"numeric\",\"width\":400,\"defaultValue\":null,\"queryColumnType\":\"double\",\"columnType\":\"double\",\"phpdocType\":\"float\",\"integer\":false,\"unsigned\":false,\"minValue\":null,\"maxValue\":null,\"unique\":false,\"decimalSize\":null,\"decimalPrecision\":null,\"name\":\"amount\",\"title\":\"Amount\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":\"\",\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":true,\"visibleSearch\":true}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"totalNetPrice\",\"label\":\"NetPrice\",\"dataType\":\"numeric\",\"layout\":{\"fieldtype\":\"numeric\",\"width\":400,\"defaultValue\":null,\"queryColumnType\":\"double\",\"columnType\":\"double\",\"phpdocType\":\"float\",\"integer\":false,\"unsigned\":false,\"minValue\":null,\"maxValue\":null,\"unique\":null,\"decimalSize\":null,\"decimalPrecision\":null,\"name\":\"totalNetPrice\",\"title\":\"NetPrice\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"totalPrice\",\"label\":\"Price\",\"dataType\":\"numeric\",\"layout\":{\"fieldtype\":\"numeric\",\"width\":400,\"defaultValue\":null,\"queryColumnType\":\"double\",\"columnType\":\"double\",\"phpdocType\":\"float\",\"integer\":false,\"unsigned\":false,\"minValue\":null,\"maxValue\":null,\"unique\":null,\"decimalSize\":null,\"decimalPrecision\":null,\"name\":\"totalPrice\",\"title\":\"Price\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":\"\",\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"pricingRules\",\"label\":\"Pricing Rules\",\"dataType\":\"fieldcollections\",\"layout\":{\"fieldtype\":\"fieldcollections\",\"phpdocType\":\"\\\\Pimcore\\\\Model\\\\DataObject\\\\Fieldcollection\",\"allowedTypes\":[\"PricingRule\"],\"lazyLoading\":true,\"maxItems\":\"\",\"disallowAddRemove\":false,\"disallowReorder\":false,\"collapsed\":false,\"collapsible\":false,\"border\":false,\"name\":\"pricingRules\",\"title\":\"Pricing Rules\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"comment\",\"label\":\"Comment\",\"dataType\":\"textarea\",\"layout\":{\"fieldtype\":\"textarea\",\"width\":400,\"height\":\"\",\"maxLength\":null,\"showCharCount\":null,\"excludeFromSearchIndex\":false,\"queryColumnType\":\"longtext\",\"columnType\":\"longtext\",\"phpdocType\":\"string\",\"name\":\"comment\",\"title\":\"Comment\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false}]}},\"OnlineShopVoucherToken\":{\"id\":\"OnlineShopVoucherToken\",\"name\":\"OnlineShopVoucherToken\",\"columnConfig\":{\"columns\":[{\"attributes\":{\"attribute\":\"tokenId\",\"label\":\"Token ID\",\"dataType\":\"numeric\",\"layout\":{\"fieldtype\":\"numeric\",\"width\":500,\"defaultValue\":null,\"queryColumnType\":\"double\",\"columnType\":\"double\",\"phpdocType\":\"float\",\"integer\":false,\"unsigned\":false,\"minValue\":null,\"maxValue\":null,\"unique\":false,\"decimalSize\":null,\"decimalPrecision\":null,\"name\":\"tokenId\",\"title\":\"Token ID\",\"tooltip\":\"\",\"mandatory\":true,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":true,\"visibleSearch\":true}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"token\",\"label\":\"Token\",\"dataType\":\"input\",\"layout\":{\"fieldtype\":\"input\",\"width\":500,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":255,\"phpdocType\":\"string\",\"regex\":\"\",\"unique\":false,\"showCharCount\":false,\"name\":\"token\",\"title\":\"Token\",\"tooltip\":\"\",\"mandatory\":true,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":true,\"visibleSearch\":true}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"voucherSeries\",\"label\":\"Voucher Series\",\"dataType\":\"manyToOneRelation\",\"layout\":{\"fieldtype\":\"manyToOneRelation\",\"width\":500,\"assetUploadPath\":\"\",\"relationType\":true,\"queryColumnType\":{\"id\":\"int(11)\",\"type\":\"enum(\'document\',\'asset\',\'object\')\"},\"phpdocType\":\"\\\\Pimcore\\\\Model\\\\Document\\\\Page | \\\\Pimcore\\\\Model\\\\Document\\\\Snippet | \\\\Pimcore\\\\Model\\\\Document | \\\\Pimcore\\\\Model\\\\Asset | \\\\Pimcore\\\\Model\\\\DataObject\\\\AbstractObject\",\"objectsAllowed\":true,\"assetsAllowed\":false,\"assetTypes\":[],\"documentsAllowed\":false,\"documentTypes\":[],\"lazyLoading\":false,\"classes\":[{\"classes\":\"OnlineShopVoucherSeries\"}],\"pathFormatterClass\":null,\"name\":\"voucherSeries\",\"title\":\"Voucher Series\",\"tooltip\":\"\",\"mandatory\":true,\"noteditable\":true,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false}]}},\"Customer\":{\"id\":\"Customer\",\"name\":\"Customer\",\"columnConfig\":{\"columns\":[{\"attributes\":{\"attribute\":\"gender\",\"label\":\"Gender\",\"dataType\":\"gender\",\"layout\":{\"fieldtype\":\"gender\",\"options\":[{\"key\":\"male\",\"value\":\"male\"},{\"key\":\"female\",\"value\":\"female\"},{\"key\":\"\",\"value\":\"unknown\"}],\"width\":\"\",\"defaultValue\":null,\"optionsProviderClass\":null,\"optionsProviderData\":null,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":\"190\",\"phpdocType\":\"string\",\"dynamicOptions\":false,\"name\":\"gender\",\"title\":\"Gender\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":false,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":true,\"visibleSearch\":true}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"firstname\",\"label\":\"Firstname\",\"dataType\":\"firstname\",\"layout\":{\"fieldtype\":\"firstname\",\"width\":400,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":190,\"phpdocType\":\"string\",\"regex\":\"\",\"unique\":false,\"showCharCount\":null,\"name\":\"firstname\",\"title\":\"Firstname\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":false,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":true,\"visibleSearch\":true}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"lastname\",\"label\":\"Lastname\",\"dataType\":\"lastname\",\"layout\":{\"fieldtype\":\"lastname\",\"width\":400,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":190,\"phpdocType\":\"string\",\"regex\":\"\",\"unique\":false,\"showCharCount\":null,\"name\":\"lastname\",\"title\":\"Lastname\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":false,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":true,\"visibleSearch\":true}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"company\",\"label\":\"Company\",\"dataType\":\"input\",\"layout\":{\"fieldtype\":\"input\",\"width\":null,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":190,\"phpdocType\":\"string\",\"regex\":\"\",\"unique\":false,\"showCharCount\":false,\"name\":\"company\",\"title\":\"Company\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":false,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"email\",\"label\":\"Email\",\"dataType\":\"email\",\"layout\":{\"fieldtype\":\"email\",\"width\":400,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":190,\"phpdocType\":\"string\",\"regex\":\"\",\"unique\":false,\"showCharCount\":null,\"name\":\"email\",\"title\":\"Email\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":false,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":true,\"visibleSearch\":true}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"street\",\"label\":\"Street\",\"dataType\":\"input\",\"layout\":{\"fieldtype\":\"input\",\"width\":400,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":190,\"phpdocType\":\"string\",\"regex\":\"\",\"unique\":false,\"showCharCount\":null,\"name\":\"street\",\"title\":\"Street\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":false,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"zip\",\"label\":\"Zip\",\"dataType\":\"input\",\"layout\":{\"fieldtype\":\"input\",\"width\":400,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":190,\"phpdocType\":\"string\",\"regex\":\"\",\"unique\":false,\"showCharCount\":null,\"name\":\"zip\",\"title\":\"Zip\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":false,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"countryCode\",\"label\":\"Country\",\"dataType\":\"country\",\"layout\":{\"fieldtype\":\"country\",\"restrictTo\":\"\",\"options\":[{\"key\":\"Afghanistan\",\"value\":\"AF\"},{\"key\":\"Albania\",\"value\":\"AL\"},{\"key\":\"Algeria\",\"value\":\"DZ\"},{\"key\":\"American Samoa\",\"value\":\"AS\"},{\"key\":\"Andorra\",\"value\":\"AD\"},{\"key\":\"Angola\",\"value\":\"AO\"},{\"key\":\"Anguilla\",\"value\":\"AI\"},{\"key\":\"Antigua and Barbuda\",\"value\":\"AG\"},{\"key\":\"Argentina\",\"value\":\"AR\"},{\"key\":\"Armenia\",\"value\":\"AM\"},{\"key\":\"Aruba\",\"value\":\"AW\"},{\"key\":\"Australia\",\"value\":\"AU\"},{\"key\":\"Austria\",\"value\":\"AT\"},{\"key\":\"Azerbaijan\",\"value\":\"AZ\"},{\"key\":\"Bahamas\",\"value\":\"BS\"},{\"key\":\"Bahrain\",\"value\":\"BH\"},{\"key\":\"Bangladesh\",\"value\":\"BD\"},{\"key\":\"Barbados\",\"value\":\"BB\"},{\"key\":\"Belarus\",\"value\":\"BY\"},{\"key\":\"Belgium\",\"value\":\"BE\"},{\"key\":\"Belize\",\"value\":\"BZ\"},{\"key\":\"Benin\",\"value\":\"BJ\"},{\"key\":\"Bermuda\",\"value\":\"BM\"},{\"key\":\"Bhutan\",\"value\":\"BT\"},{\"key\":\"Bolivia\",\"value\":\"BO\"},{\"key\":\"Bosnia and Herzegovina\",\"value\":\"BA\"},{\"key\":\"Botswana\",\"value\":\"BW\"},{\"key\":\"Brazil\",\"value\":\"BR\"},{\"key\":\"British Indian Ocean Territory\",\"value\":\"IO\"},{\"key\":\"British Virgin Islands\",\"value\":\"VG\"},{\"key\":\"Brunei\",\"value\":\"BN\"},{\"key\":\"Bulgaria\",\"value\":\"BG\"},{\"key\":\"Burkina Faso\",\"value\":\"BF\"},{\"key\":\"Burundi\",\"value\":\"BI\"},{\"key\":\"Cambodia\",\"value\":\"KH\"},{\"key\":\"Cameroon\",\"value\":\"CM\"},{\"key\":\"Canada\",\"value\":\"CA\"},{\"key\":\"Canary Islands\",\"value\":\"IC\"},{\"key\":\"Cape Verde\",\"value\":\"CV\"},{\"key\":\"Caribbean Netherlands\",\"value\":\"BQ\"},{\"key\":\"Cayman Islands\",\"value\":\"KY\"},{\"key\":\"Central African Republic\",\"value\":\"CF\"},{\"key\":\"Ceuta and Melilla\",\"value\":\"EA\"},{\"key\":\"Chad\",\"value\":\"TD\"},{\"key\":\"Chile\",\"value\":\"CL\"},{\"key\":\"China\",\"value\":\"CN\"},{\"key\":\"Christmas Island\",\"value\":\"CX\"},{\"key\":\"Cocos (Keeling) Islands\",\"value\":\"CC\"},{\"key\":\"Colombia\",\"value\":\"CO\"},{\"key\":\"Comoros\",\"value\":\"KM\"},{\"key\":\"Congo - Brazzaville\",\"value\":\"CG\"},{\"key\":\"Congo - Kinshasa\",\"value\":\"CD\"},{\"key\":\"Cook Islands\",\"value\":\"CK\"},{\"key\":\"Costa Rica\",\"value\":\"CR\"},{\"key\":\"Croatia\",\"value\":\"HR\"},{\"key\":\"Cuba\",\"value\":\"CU\"},{\"key\":\"Cura\\u00e7ao\",\"value\":\"CW\"},{\"key\":\"Cyprus\",\"value\":\"CY\"},{\"key\":\"Czech Republic\",\"value\":\"CZ\"},{\"key\":\"C\\u00f4te d\\u2019Ivoire\",\"value\":\"CI\"},{\"key\":\"Denmark\",\"value\":\"DK\"},{\"key\":\"Diego Garcia\",\"value\":\"DG\"},{\"key\":\"Djibouti\",\"value\":\"DJ\"},{\"key\":\"Dominica\",\"value\":\"DM\"},{\"key\":\"Dominican Republic\",\"value\":\"DO\"},{\"key\":\"Ecuador\",\"value\":\"EC\"},{\"key\":\"Egypt\",\"value\":\"EG\"},{\"key\":\"El Salvador\",\"value\":\"SV\"},{\"key\":\"Equatorial Guinea\",\"value\":\"GQ\"},{\"key\":\"Eritrea\",\"value\":\"ER\"},{\"key\":\"Estonia\",\"value\":\"EE\"},{\"key\":\"Ethiopia\",\"value\":\"ET\"},{\"key\":\"Falkland Islands\",\"value\":\"FK\"},{\"key\":\"Faroe Islands\",\"value\":\"FO\"},{\"key\":\"Fiji\",\"value\":\"FJ\"},{\"key\":\"Finland\",\"value\":\"FI\"},{\"key\":\"France\",\"value\":\"FR\"},{\"key\":\"French Guiana\",\"value\":\"GF\"},{\"key\":\"French Polynesia\",\"value\":\"PF\"},{\"key\":\"Gabon\",\"value\":\"GA\"},{\"key\":\"Gambia\",\"value\":\"GM\"},{\"key\":\"Georgia\",\"value\":\"GE\"},{\"key\":\"Germany\",\"value\":\"DE\"},{\"key\":\"Ghana\",\"value\":\"GH\"},{\"key\":\"Gibraltar\",\"value\":\"GI\"},{\"key\":\"Greece\",\"value\":\"GR\"},{\"key\":\"Greenland\",\"value\":\"GL\"},{\"key\":\"Grenada\",\"value\":\"GD\"},{\"key\":\"Guadeloupe\",\"value\":\"GP\"},{\"key\":\"Guam\",\"value\":\"GU\"},{\"key\":\"Guatemala\",\"value\":\"GT\"},{\"key\":\"Guernsey\",\"value\":\"GG\"},{\"key\":\"Guinea\",\"value\":\"GN\"},{\"key\":\"Guinea-Bissau\",\"value\":\"GW\"},{\"key\":\"Guyana\",\"value\":\"GY\"},{\"key\":\"Haiti\",\"value\":\"HT\"},{\"key\":\"Honduras\",\"value\":\"HN\"},{\"key\":\"Hong Kong SAR China\",\"value\":\"HK\"},{\"key\":\"Hungary\",\"value\":\"HU\"},{\"key\":\"Iceland\",\"value\":\"IS\"},{\"key\":\"India\",\"value\":\"IN\"},{\"key\":\"Indonesia\",\"value\":\"ID\"},{\"key\":\"Iran\",\"value\":\"IR\"},{\"key\":\"Iraq\",\"value\":\"IQ\"},{\"key\":\"Ireland\",\"value\":\"IE\"},{\"key\":\"Isle of Man\",\"value\":\"IM\"},{\"key\":\"Israel\",\"value\":\"IL\"},{\"key\":\"Italy\",\"value\":\"IT\"},{\"key\":\"Jamaica\",\"value\":\"JM\"},{\"key\":\"Japan\",\"value\":\"JP\"},{\"key\":\"Jersey\",\"value\":\"JE\"},{\"key\":\"Jordan\",\"value\":\"JO\"},{\"key\":\"Kazakhstan\",\"value\":\"KZ\"},{\"key\":\"Kenya\",\"value\":\"KE\"},{\"key\":\"Kiribati\",\"value\":\"KI\"},{\"key\":\"Kosovo\",\"value\":\"XK\"},{\"key\":\"Kuwait\",\"value\":\"KW\"},{\"key\":\"Kyrgyzstan\",\"value\":\"KG\"},{\"key\":\"Laos\",\"value\":\"LA\"},{\"key\":\"Latvia\",\"value\":\"LV\"},{\"key\":\"Lebanon\",\"value\":\"LB\"},{\"key\":\"Lesotho\",\"value\":\"LS\"},{\"key\":\"Liberia\",\"value\":\"LR\"},{\"key\":\"Libya\",\"value\":\"LY\"},{\"key\":\"Liechtenstein\",\"value\":\"LI\"},{\"key\":\"Lithuania\",\"value\":\"LT\"},{\"key\":\"Luxembourg\",\"value\":\"LU\"},{\"key\":\"Macau SAR China\",\"value\":\"MO\"},{\"key\":\"Macedonia\",\"value\":\"MK\"},{\"key\":\"Madagascar\",\"value\":\"MG\"},{\"key\":\"Malawi\",\"value\":\"MW\"},{\"key\":\"Malaysia\",\"value\":\"MY\"},{\"key\":\"Mali\",\"value\":\"ML\"},{\"key\":\"Malta\",\"value\":\"MT\"},{\"key\":\"Marshall Islands\",\"value\":\"MH\"},{\"key\":\"Martinique\",\"value\":\"MQ\"},{\"key\":\"Mauritania\",\"value\":\"MR\"},{\"key\":\"Mauritius\",\"value\":\"MU\"},{\"key\":\"Mayotte\",\"value\":\"YT\"},{\"key\":\"Mexico\",\"value\":\"MX\"},{\"key\":\"Micronesia\",\"value\":\"FM\"},{\"key\":\"Moldova\",\"value\":\"MD\"},{\"key\":\"Monaco\",\"value\":\"MC\"},{\"key\":\"Mongolia\",\"value\":\"MN\"},{\"key\":\"Montenegro\",\"value\":\"ME\"},{\"key\":\"Montserrat\",\"value\":\"MS\"},{\"key\":\"Morocco\",\"value\":\"MA\"},{\"key\":\"Mozambique\",\"value\":\"MZ\"},{\"key\":\"Myanmar (Burma)\",\"value\":\"MM\"},{\"key\":\"Namibia\",\"value\":\"NA\"},{\"key\":\"Nauru\",\"value\":\"NR\"},{\"key\":\"Nepal\",\"value\":\"NP\"},{\"key\":\"Netherlands\",\"value\":\"NL\"},{\"key\":\"New Caledonia\",\"value\":\"NC\"},{\"key\":\"New Zealand\",\"value\":\"NZ\"},{\"key\":\"Nicaragua\",\"value\":\"NI\"},{\"key\":\"Niger\",\"value\":\"NE\"},{\"key\":\"Nigeria\",\"value\":\"NG\"},{\"key\":\"Niue\",\"value\":\"NU\"},{\"key\":\"Norfolk Island\",\"value\":\"NF\"},{\"key\":\"North Korea\",\"value\":\"KP\"},{\"key\":\"Northern Mariana Islands\",\"value\":\"MP\"},{\"key\":\"Norway\",\"value\":\"NO\"},{\"key\":\"Oman\",\"value\":\"OM\"},{\"key\":\"Pakistan\",\"value\":\"PK\"},{\"key\":\"Palau\",\"value\":\"PW\"},{\"key\":\"Palestinian Territories\",\"value\":\"PS\"},{\"key\":\"Panama\",\"value\":\"PA\"},{\"key\":\"Papua New Guinea\",\"value\":\"PG\"},{\"key\":\"Paraguay\",\"value\":\"PY\"},{\"key\":\"Peru\",\"value\":\"PE\"},{\"key\":\"Philippines\",\"value\":\"PH\"},{\"key\":\"Pitcairn Islands\",\"value\":\"PN\"},{\"key\":\"Poland\",\"value\":\"PL\"},{\"key\":\"Portugal\",\"value\":\"PT\"},{\"key\":\"Puerto Rico\",\"value\":\"PR\"},{\"key\":\"Qatar\",\"value\":\"QA\"},{\"key\":\"Romania\",\"value\":\"RO\"},{\"key\":\"Russia\",\"value\":\"RU\"},{\"key\":\"Rwanda\",\"value\":\"RW\"},{\"key\":\"R\\u00e9union\",\"value\":\"RE\"},{\"key\":\"Saint Barth\\u00e9lemy\",\"value\":\"BL\"},{\"key\":\"Saint Helena\",\"value\":\"SH\"},{\"key\":\"Saint Kitts and Nevis\",\"value\":\"KN\"},{\"key\":\"Saint Lucia\",\"value\":\"LC\"},{\"key\":\"Saint Martin\",\"value\":\"MF\"},{\"key\":\"Saint Pierre and Miquelon\",\"value\":\"PM\"},{\"key\":\"Samoa\",\"value\":\"WS\"},{\"key\":\"San Marino\",\"value\":\"SM\"},{\"key\":\"Saudi Arabia\",\"value\":\"SA\"},{\"key\":\"Senegal\",\"value\":\"SN\"},{\"key\":\"Serbia\",\"value\":\"RS\"},{\"key\":\"Seychelles\",\"value\":\"SC\"},{\"key\":\"Sierra Leone\",\"value\":\"SL\"},{\"key\":\"Singapore\",\"value\":\"SG\"},{\"key\":\"Sint Maarten\",\"value\":\"SX\"},{\"key\":\"Slovakia\",\"value\":\"SK\"},{\"key\":\"Slovenia\",\"value\":\"SI\"},{\"key\":\"Solomon Islands\",\"value\":\"SB\"},{\"key\":\"Somalia\",\"value\":\"SO\"},{\"key\":\"South Africa\",\"value\":\"ZA\"},{\"key\":\"South Korea\",\"value\":\"KR\"},{\"key\":\"South Sudan\",\"value\":\"SS\"},{\"key\":\"Spain\",\"value\":\"ES\"},{\"key\":\"Sri Lanka\",\"value\":\"LK\"},{\"key\":\"St. Vincent & Grenadines\",\"value\":\"VC\"},{\"key\":\"Sudan\",\"value\":\"SD\"},{\"key\":\"Suriname\",\"value\":\"SR\"},{\"key\":\"Svalbard and Jan Mayen\",\"value\":\"SJ\"},{\"key\":\"Swaziland\",\"value\":\"SZ\"},{\"key\":\"Sweden\",\"value\":\"SE\"},{\"key\":\"Switzerland\",\"value\":\"CH\"},{\"key\":\"Syria\",\"value\":\"SY\"},{\"key\":\"S\\u00e3o Tom\\u00e9 and Pr\\u00edncipe\",\"value\":\"ST\"},{\"key\":\"Taiwan\",\"value\":\"TW\"},{\"key\":\"Tanzania\",\"value\":\"TZ\"},{\"key\":\"Thailand\",\"value\":\"TH\"},{\"key\":\"Timor-Leste\",\"value\":\"TL\"},{\"key\":\"Togo\",\"value\":\"TG\"},{\"key\":\"Tokelau\",\"value\":\"TK\"},{\"key\":\"Tonga\",\"value\":\"TO\"},{\"key\":\"Trinidad and Tobago\",\"value\":\"TT\"},{\"key\":\"Tunisia\",\"value\":\"TN\"},{\"key\":\"Turkey\",\"value\":\"TR\"},{\"key\":\"Turks and Caicos Islands\",\"value\":\"TC\"},{\"key\":\"Tuvalu\",\"value\":\"TV\"},{\"key\":\"U.S. Outlying Islands\",\"value\":\"UM\"},{\"key\":\"U.S. Virgin Islands\",\"value\":\"VI\"},{\"key\":\"Uganda\",\"value\":\"UG\"},{\"key\":\"Ukraine\",\"value\":\"UA\"},{\"key\":\"United Arab Emirates\",\"value\":\"AE\"},{\"key\":\"United Kingdom\",\"value\":\"GB\"},{\"key\":\"United States\",\"value\":\"US\"},{\"key\":\"Uruguay\",\"value\":\"UY\"},{\"key\":\"Uzbekistan\",\"value\":\"UZ\"},{\"key\":\"Vanuatu\",\"value\":\"VU\"},{\"key\":\"Venezuela\",\"value\":\"VE\"},{\"key\":\"Vietnam\",\"value\":\"VN\"},{\"key\":\"Wallis and Futuna\",\"value\":\"WF\"},{\"key\":\"Western Sahara\",\"value\":\"EH\"},{\"key\":\"Yemen\",\"value\":\"YE\"},{\"key\":\"Zambia\",\"value\":\"ZM\"},{\"key\":\"Zimbabwe\",\"value\":\"ZW\"},{\"key\":\"\\u00c5land Islands\",\"value\":\"AX\"}],\"width\":\"\",\"defaultValue\":null,\"optionsProviderClass\":null,\"optionsProviderData\":null,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":\"190\",\"phpdocType\":\"string\",\"dynamicOptions\":false,\"name\":\"countryCode\",\"title\":\"Country\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":false,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false},{\"attributes\":{\"attribute\":\"phone\",\"label\":\"phone\",\"dataType\":\"input\",\"layout\":{\"fieldtype\":\"input\",\"width\":400,\"queryColumnType\":\"varchar\",\"columnType\":\"varchar\",\"columnLength\":190,\"phpdocType\":\"string\",\"regex\":\"\",\"unique\":false,\"showCharCount\":null,\"name\":\"phone\",\"title\":\"phone\",\"tooltip\":\"\",\"mandatory\":false,\"noteditable\":false,\"index\":false,\"locked\":false,\"style\":\"\",\"permissions\":null,\"datatype\":\"data\",\"relationType\":false,\"invisible\":false,\"visibleGridView\":false,\"visibleSearch\":false}},\"isOperator\":false}]}}},\"mutationEntities\":[],\"specialEntities\":{\"document\":{\"read\":false,\"create\":false,\"update\":false,\"delete\":false},\"document_folder\":{\"read\":false,\"create\":false,\"update\":false,\"delete\":false},\"asset\":{\"read\":true,\"create\":false,\"update\":false,\"delete\":false},\"asset_folder\":{\"read\":true,\"create\":false,\"update\":false,\"delete\":false},\"asset_listing\":{\"read\":false,\"create\":false,\"update\":false,\"delete\":false},\"object_folder\":{\"read\":true,\"create\":false,\"update\":false,\"delete\":false}}},\"security\":{\"method\":\"datahub_apikey\",\"apikey\":\"295b86489dca91a4aafaac8315cdb84a\",\"skipPermissionCheck\":false},\"workspaces\":{\"asset\":[{\"read\":true,\"cpath\":\"\\/Car Images\",\"create\":false,\"update\":false,\"delete\":false,\"id\":\"extModel16109-2\"},{\"read\":true,\"cpath\":\"\\/Brand Logos\",\"create\":false,\"update\":false,\"delete\":false,\"id\":\"extModel16109-1\"}],\"document\":[],\"object\":[{\"read\":true,\"cpath\":\"\\/Shop\",\"create\":false,\"update\":false,\"delete\":false,\"id\":\"extModel16141-1\"}]}}','string'); INSERT INTO settings_store (`id`,`scope`,`data`,`type`) VALUES ('standardTeaser','pimcore_image_thumbnails','{\"items\":[{\"method\":\"cover\",\"arguments\":{\"width\":350,\"height\":235,\"positioning\":\"center\",\"forceResize\":false}}],\"medias\":[],\"name\":\"standardTeaser\",\"description\":\"\",\"group\":\"Areas\",\"format\":\"SOURCE\",\"quality\":85,\"highResolution\":0,\"preserveColor\":false,\"preserveMetaData\":false,\"rasterizeSVG\":false,\"downloadable\":false,\"modificationDate\":1643107659,\"creationDate\":1566220896,\"preserveAnimation\":false}','string'); INSERT INTO settings_store (`id`,`scope`,`data`,`type`) VALUES ('web_to_print','pimcore_web_to_print','{\"enableInDefaultView\":true,\"generalTool\":\"pdfreactor\",\"generalDocumentSaveMode\":\"default\",\"pdfreactorProtocol\":\"https\",\"pdfreactorServer\":\"cloud.pdfreactor.com\",\"pdfreactorServerPort\":\"443\",\"pdfreactorBaseUrl\":\"https:\\/\\/demo.pimcore.fun\",\"pdfreactorApiKey\":\"\",\"pdfreactorLicence\":\"\",\"pdfreactorEnableLenientHttpsMode\":false,\"pdfreactorEnableDebugMode\":false,\"headlessChromeSettings\":\"\"}','string'); -INSERT INTO settings_store (`id`,`scope`,`data`,`type`) VALUES ('Workflow_Done-All','pimcore_custom_reports','{\"name\":\"Workflow_Done-All\",\"sql\":\"\",\"dataSourceConfig\":[{\"sql\":\"o_id, o_key, name, carClass FROM object_localized_CAR_en WHERE o_id IN (SELECT cid FROM element_workflow_state WHERE place = \'done_all\') \",\"from\":\"\",\"where\":\"\",\"groupby\":\"\",\"type\":\"sql\"}],\"columnConfiguration\":[{\"name\":\"o_id\",\"display\":true,\"export\":true,\"order\":true,\"width\":80,\"label\":\"ID\",\"columnAction\":\"openObject\",\"id\":\"extModel309-1\"},{\"name\":\"o_key\",\"display\":true,\"export\":true,\"order\":true,\"width\":200,\"label\":\"Key\",\"id\":\"extModel309-2\"},{\"name\":\"name\",\"display\":true,\"export\":true,\"order\":true,\"width\":200,\"label\":\"Name\",\"id\":\"extModel309-3\"},{\"name\":\"carClass\",\"display\":true,\"export\":true,\"order\":true,\"width\":200,\"label\":\"Car Class\",\"id\":\"extModel309-4\"}],\"niceName\":\"Done All\",\"group\":\"Workflow\",\"groupIconClass\":\"\",\"iconClass\":\"pimcore_icon_workflow_action\",\"menuShortcut\":true,\"reportClass\":\"\",\"chartType\":null,\"pieColumn\":null,\"pieLabelColumn\":null,\"xAxis\":null,\"yAxis\":[],\"modificationDate\":1643205309,\"creationDate\":1567408710,\"shareGlobally\":false,\"sharedUserNames\":[],\"sharedRoleNames\":[]}','string'); -INSERT INTO settings_store (`id`,`scope`,`data`,`type`) VALUES ('Workflow_TODO','pimcore_custom_reports','{\"name\":\"Workflow_TODO\",\"sql\":\"\",\"dataSourceConfig\":[{\"sql\":\"o_id, o_key, name, carClass FROM object_localized_CAR_en WHERE o_id IN (SELECT cid FROM element_workflow_state WHERE place = \'ToDo\') \",\"from\":\"\",\"where\":\"\",\"groupby\":\"\",\"type\":\"sql\"}],\"columnConfiguration\":[{\"name\":\"o_id\",\"display\":true,\"export\":true,\"order\":true,\"width\":80,\"label\":\"ID\",\"columnAction\":\"openObject\",\"id\":\"extModel587-1\"},{\"name\":\"o_key\",\"display\":true,\"export\":true,\"order\":true,\"width\":200,\"label\":\"Key\",\"id\":\"extModel587-2\"},{\"name\":\"name\",\"display\":true,\"export\":true,\"order\":true,\"width\":200,\"label\":\"Name\",\"id\":\"extModel587-3\"},{\"name\":\"carClass\",\"display\":true,\"export\":true,\"order\":true,\"width\":200,\"label\":\"Car Class\",\"id\":\"extModel587-4\"}],\"niceName\":\"TODOs\",\"group\":\"Workflow\",\"groupIconClass\":\"\",\"iconClass\":\"pimcore_icon_workflow_action\",\"menuShortcut\":true,\"reportClass\":\"\",\"chartType\":null,\"pieColumn\":null,\"pieLabelColumn\":null,\"xAxis\":null,\"yAxis\":[],\"modificationDate\":1643205183,\"creationDate\":1567408234,\"shareGlobally\":false,\"sharedUserNames\":[],\"sharedRoleNames\":[]}','string'); +INSERT INTO settings_store (`id`,`scope`,`data`,`type`) VALUES ('Workflow_Done-All','pimcore_custom_reports','{\"name\":\"Workflow_Done-All\",\"sql\":\"\",\"dataSourceConfig\":[{\"sql\":\"id, key, name, carClass FROM object_localized_CAR_en WHERE id IN (SELECT cid FROM element_workflow_state WHERE place = \'done_all\') \",\"from\":\"\",\"where\":\"\",\"groupby\":\"\",\"type\":\"sql\"}],\"columnConfiguration\":[{\"name\":\"id\",\"display\":true,\"export\":true,\"order\":true,\"width\":80,\"label\":\"ID\",\"columnAction\":\"openObject\",\"id\":\"extModel309-1\"},{\"name\":\"key\",\"display\":true,\"export\":true,\"order\":true,\"width\":200,\"label\":\"Key\",\"id\":\"extModel309-2\"},{\"name\":\"name\",\"display\":true,\"export\":true,\"order\":true,\"width\":200,\"label\":\"Name\",\"id\":\"extModel309-3\"},{\"name\":\"carClass\",\"display\":true,\"export\":true,\"order\":true,\"width\":200,\"label\":\"Car Class\",\"id\":\"extModel309-4\"}],\"niceName\":\"Done All\",\"group\":\"Workflow\",\"groupIconClass\":\"\",\"iconClass\":\"pimcore_icon_workflow_action\",\"menuShortcut\":true,\"reportClass\":\"\",\"chartType\":null,\"pieColumn\":null,\"pieLabelColumn\":null,\"xAxis\":null,\"yAxis\":[],\"modificationDate\":1643205309,\"creationDate\":1567408710,\"shareGlobally\":false,\"sharedUserNames\":[],\"sharedRoleNames\":[]}','string'); +INSERT INTO settings_store (`id`,`scope`,`data`,`type`) VALUES ('Workflow_TODO','pimcore_custom_reports','{\"name\":\"Workflow_TODO\",\"sql\":\"\",\"dataSourceConfig\":[{\"sql\":\"id, key, name, carClass FROM object_localized_CAR_en WHERE id IN (SELECT cid FROM element_workflow_state WHERE place = \'ToDo\') \",\"from\":\"\",\"where\":\"\",\"groupby\":\"\",\"type\":\"sql\"}],\"columnConfiguration\":[{\"name\":\"id\",\"display\":true,\"export\":true,\"order\":true,\"width\":80,\"label\":\"ID\",\"columnAction\":\"openObject\",\"id\":\"extModel587-1\"},{\"name\":\"key\",\"display\":true,\"export\":true,\"order\":true,\"width\":200,\"label\":\"Key\",\"id\":\"extModel587-2\"},{\"name\":\"name\",\"display\":true,\"export\":true,\"order\":true,\"width\":200,\"label\":\"Name\",\"id\":\"extModel587-3\"},{\"name\":\"carClass\",\"display\":true,\"export\":true,\"order\":true,\"width\":200,\"label\":\"Car Class\",\"id\":\"extModel587-4\"}],\"niceName\":\"TODOs\",\"group\":\"Workflow\",\"groupIconClass\":\"\",\"iconClass\":\"pimcore_icon_workflow_action\",\"menuShortcut\":true,\"reportClass\":\"\",\"chartType\":null,\"pieColumn\":null,\"pieLabelColumn\":null,\"xAxis\":null,\"yAxis\":[],\"modificationDate\":1643205183,\"creationDate\":1567408234,\"shareGlobally\":false,\"sharedUserNames\":[],\"sharedRoleNames\":[]}','string'); INSERT INTO settings_store (`id`,`scope`,`data`,`type`) VALUES ('CarReview', 'pimcore_object_custom_layout', '{"id":"CarReview","name":"Review","description":"","creationDate":1566996420,"modificationDate":1665477492,"userOwner":2,"userModification":0,"classId":"CAR","layoutDefinitions":{"name":"pimcore_root","type":null,"region":null,"title":null,"width":0,"height":0,"collapsible":false,"collapsed":false,"bodyStyle":null,"datatype":"layout","permissions":null,"children":[{"name":"Layout","type":null,"region":null,"title":"","width":null,"height":null,"collapsible":false,"collapsed":false,"bodyStyle":"","datatype":"layout","permissions":null,"children":[{"name":"Data Quality","type":null,"region":null,"title":"Data Quality","width":null,"height":null,"collapsible":false,"collapsed":false,"bodyStyle":"","datatype":"layout","permissions":null,"children":[{"name":"QualitySummary","type":null,"region":null,"title":"","width":null,"height":null,"collapsible":false,"collapsed":false,"bodyStyle":"padding: .75rem 1.25rem; color: #0c5460; background-color: #d1ecf1; border-color: #bee5eb; border-radius: .25rem;","datatype":"layout","permissions":null,"children":[],"locked":false,"fieldtype":"text","html":"","renderingClass":"@App\\\\Model\\\\Product\\\\CalculatedValue\\\\QualityCalculator","renderingData":"","border":false},{"name":"localizedfields","title":"","tooltip":"","mandatory":false,"noteditable":false,"index":null,"locked":false,"style":"","permissions":null,"datatype":"data","fieldtype":"localizedfields","relationType":false,"invisible":false,"visibleGridView":true,"visibleSearch":true,"children":[{"name":"textsAvailable","title":"Texts Available","tooltip":"","mandatory":false,"noteditable":false,"index":false,"locked":false,"style":"","permissions":null,"datatype":"data","fieldtype":"calculatedValue","relationType":false,"invisible":false,"visibleGridView":false,"visibleSearch":false,"elementType":"input","width":0,"calculatorType":"class","calculatorExpression":null,"calculatorClass":"@App\\\\Model\\\\Product\\\\CalculatedValue\\\\QualityCalculator","queryColumnType":"varchar","columnLength":190}],"region":null,"layout":null,"width":"","height":"","maxTabs":null,"border":false,"provideSplitView":false,"tabPosition":null,"hideLabelsWhenTabsReached":null,"fieldDefinitionsCache":null,"permissionView":null,"permissionEdit":null,"labelWidth":210,"labelAlign":"left"},{"name":"Layout","type":null,"region":null,"title":"","width":null,"height":null,"collapsible":false,"collapsed":false,"bodyStyle":"","datatype":"layout","permissions":null,"children":[{"name":"attributesAvailable","title":"Attributes Available","tooltip":"","mandatory":false,"noteditable":false,"index":false,"locked":false,"style":"","permissions":null,"datatype":"data","fieldtype":"calculatedValue","relationType":false,"invisible":false,"visibleGridView":false,"visibleSearch":false,"elementType":"input","width":0,"calculatorType":"class","calculatorExpression":null,"calculatorClass":"@App\\\\Model\\\\Product\\\\CalculatedValue\\\\QualityCalculator","queryColumnType":"varchar","columnLength":190},{"name":"saleInformationAvailable","title":"Sale Information Available","tooltip":"","mandatory":false,"noteditable":false,"index":false,"locked":false,"style":"","permissions":null,"datatype":"data","fieldtype":"calculatedValue","relationType":false,"invisible":false,"visibleGridView":false,"visibleSearch":false,"elementType":"input","width":0,"calculatorType":"class","calculatorExpression":null,"calculatorClass":"@App\\\\Model\\\\Product\\\\CalculatedValue\\\\QualityCalculator","queryColumnType":"varchar","columnLength":190},{"name":"imagesAvailable","title":"Images Available","tooltip":"","mandatory":false,"noteditable":false,"index":false,"locked":false,"style":"","permissions":null,"datatype":"data","fieldtype":"calculatedValue","relationType":false,"invisible":false,"visibleGridView":false,"visibleSearch":false,"elementType":"input","width":0,"calculatorType":"class","calculatorExpression":null,"calculatorClass":"@App\\\\Model\\\\Product\\\\CalculatedValue\\\\QualityCalculator","queryColumnType":"varchar","columnLength":190}],"locked":false,"fieldtype":"panel","layout":null,"border":false,"icon":"","labelWidth":210,"labelAlign":"left"}],"locked":false,"fieldtype":"panel","layout":null,"border":false,"icon":"","labelWidth":180,"labelAlign":"left"},{"name":"Basedata","type":null,"region":null,"title":"Basedata","width":null,"height":null,"collapsible":false,"collapsed":false,"bodyStyle":"","datatype":"layout","permissions":null,"children":[{"name":"localizedfields","title":"","tooltip":"","mandatory":false,"noteditable":false,"index":null,"locked":false,"style":"","permissions":null,"datatype":"data","fieldtype":"localizedfields","relationType":false,"invisible":false,"visibleGridView":true,"visibleSearch":true,"children":[{"name":"name","title":"Name","tooltip":"","mandatory":false,"noteditable":false,"index":false,"locked":false,"style":"","permissions":null,"datatype":"data","fieldtype":"input","relationType":false,"invisible":false,"visibleGridView":true,"visibleSearch":true,"width":null,"defaultValue":null,"queryColumnType":"varchar","columnType":"varchar","columnLength":190,"regex":"","regexFlags":[],"unique":false,"showCharCount":false,"defaultValueGenerator":""},{"name":"description","title":"Description","tooltip":"","mandatory":false,"noteditable":false,"index":false,"locked":false,"style":"","permissions":null,"datatype":"data","fieldtype":"wysiwyg","relationType":false,"invisible":false,"visibleGridView":false,"visibleSearch":false,"width":"","height":"","queryColumnType":"longtext","columnType":"longtext","toolbarConfig":"","excludeFromSearchIndex":false,"maxCharacters":0}],"region":null,"layout":null,"width":"","height":"","maxTabs":null,"border":false,"provideSplitView":false,"tabPosition":"top","hideLabelsWhenTabsReached":null,"fieldDefinitionsCache":null,"permissionView":null,"permissionEdit":null,"labelWidth":0,"labelAlign":"left"},{"name":"series","title":"Series","tooltip":"","mandatory":false,"noteditable":false,"index":false,"locked":false,"style":"","permissions":null,"datatype":"data","fieldtype":"input","relationType":false,"invisible":true,"visibleGridView":false,"visibleSearch":false,"width":null,"defaultValue":null,"queryColumnType":"varchar","columnType":"varchar","columnLength":190,"regex":"","regexFlags":[],"unique":false,"showCharCount":false,"defaultValueGenerator":""},{"name":"manufacturer","title":"Manufacturer","tooltip":"","mandatory":false,"noteditable":false,"index":false,"locked":false,"style":"","permissions":null,"datatype":"data","fieldtype":"manyToOneRelation","relationType":true,"invisible":false,"visibleGridView":false,"visibleSearch":false,"classes":[{"classes":"Manufacturer"}],"pathFormatterClass":"","width":400,"assetInlineDownloadAllowed":false,"assetUploadPath":"","allowToClearRelation":true,"queryColumnType":{"id":"int(11)","type":"enum(''document'',''asset'',''object'')"},"objectsAllowed":true,"assetsAllowed":false,"assetTypes":[],"documentsAllowed":false,"documentTypes":[]},{"name":"bodyStyle","title":"Body Style","tooltip":"","mandatory":false,"noteditable":false,"index":false,"locked":false,"style":"","permissions":null,"datatype":"data","fieldtype":"manyToOneRelation","relationType":true,"invisible":false,"visibleGridView":true,"visibleSearch":true,"classes":[{"classes":"BodyStyle"}],"pathFormatterClass":"","width":400,"assetInlineDownloadAllowed":false,"assetUploadPath":"","allowToClearRelation":true,"queryColumnType":{"id":"int(11)","type":"enum(''document'',''asset'',''object'')"},"objectsAllowed":true,"assetsAllowed":false,"assetTypes":[],"documentsAllowed":false,"documentTypes":[]},{"name":"carClass","title":"Class","tooltip":"","mandatory":false,"noteditable":false,"index":false,"locked":false,"style":"","permissions":null,"datatype":"data","fieldtype":"select","relationType":false,"invisible":false,"visibleGridView":false,"visibleSearch":false,"options":[{"key":"Full-size luxury car","value":"Full-size luxury car"},{"key":"Grand tourer","value":"Grand tourer"},{"key":"Light commercial vehicle","value":"Light commercial vehicle"},{"key":"Muscle Car","value":"Muscle Car"},{"key":"City Car","value":"City Car"},{"key":"Executive car","value":"Executive car"},{"key":"Economy car","value":"Economy car"},{"key":"Personal luxury car","value":"Personal luxury car"},{"key":"Full-Size","value":"Full-Size"},{"key":"Family car","value":"Family car"},{"key":"Mid-size luxury","value":"Mid-size luxury"},{"key":"sports car","value":"sports car"}],"width":300,"defaultValue":"","optionsProviderClass":"","optionsProviderData":"","queryColumnType":"varchar","columnType":"varchar","columnLength":190,"dynamicOptions":false,"defaultValueGenerator":""},{"name":"productionYear","title":"Production Year","tooltip":"","mandatory":false,"noteditable":false,"index":false,"locked":false,"style":"","permissions":null,"datatype":"data","fieldtype":"numeric","relationType":false,"invisible":false,"visibleGridView":false,"visibleSearch":false,"width":300,"defaultValue":null,"queryColumnType":"double","columnType":"double","integer":true,"unsigned":true,"minValue":null,"maxValue":null,"unique":false,"decimalSize":null,"decimalPrecision":null,"defaultValueGenerator":""},{"name":"color","title":"Color","tooltip":"","mandatory":false,"noteditable":false,"index":false,"locked":false,"style":"","permissions":null,"datatype":"data","fieldtype":"multiselect","relationType":false,"invisible":false,"visibleGridView":true,"visibleSearch":true,"options":[{"key":"grey","value":"grey"},{"key":"beige","value":"beige"},{"key":"silver","value":"silver"},{"key":"brown","value":"brown"},{"key":"orange","value":"orange"},{"key":"yellow","value":"yellow"},{"key":"blue","value":"blue"},{"key":"black","value":"black"},{"key":"green","value":"green"},{"key":"red","value":"red"},{"key":"white","value":"white"}],"width":"","height":"","maxItems":null,"renderType":"list","optionsProviderClass":"","optionsProviderData":"","queryColumnType":"text","columnType":"text","dynamicOptions":false},{"name":"country","title":"Country","tooltip":"","mandatory":false,"noteditable":false,"index":false,"locked":false,"style":"","permissions":null,"datatype":"data","fieldtype":"country","relationType":false,"invisible":false,"visibleGridView":false,"visibleSearch":false,"options":null,"width":"","defaultValue":null,"optionsProviderClass":null,"optionsProviderData":null,"queryColumnType":"varchar","columnType":"varchar","columnLength":190,"dynamicOptions":false,"defaultValueGenerator":"","restrictTo":""},{"name":"categories","title":"Categories","tooltip":"","mandatory":false,"noteditable":false,"index":false,"locked":false,"style":"","permissions":null,"datatype":"data","fieldtype":"manyToManyObjectRelation","relationType":true,"invisible":false,"visibleGridView":false,"visibleSearch":false,"classes":[{"classes":"Category"}],"pathFormatterClass":"","width":"","height":"","maxItems":null,"queryColumnType":"text","visibleFields":"id,name,fullpath","allowToCreateNewObject":true,"allowToClearRelation":true,"optimizedAdminLoading":false,"enableTextSelection":false,"visibleFieldDefinitions":[]}],"locked":false,"fieldtype":"panel","layout":null,"border":false,"icon":null,"labelWidth":100,"labelAlign":"left"},{"name":"Media","type":null,"region":null,"title":"Media","width":null,"height":null,"collapsible":false,"collapsed":false,"bodyStyle":"","datatype":"layout","permissions":null,"children":[{"name":"gallery","title":"Gallery","tooltip":"","mandatory":false,"noteditable":false,"index":false,"locked":false,"style":"","permissions":null,"datatype":"data","fieldtype":"imageGallery","relationType":false,"invisible":false,"visibleGridView":false,"visibleSearch":false,"queryColumnType":{"images":"text","hotspots":"longtext"},"columnType":{"images":"text","hotspots":"longtext"},"width":300,"height":300,"uploadPath":"","ratioX":null,"ratioY":null,"predefinedDataTemplates":""},{"name":"genericImages","title":"Generic Images","tooltip":"","mandatory":false,"noteditable":false,"index":false,"locked":false,"style":"","permissions":null,"datatype":"data","fieldtype":"imageGallery","relationType":false,"invisible":false,"visibleGridView":false,"visibleSearch":false,"queryColumnType":{"images":"text","hotspots":"longtext"},"columnType":{"images":"text","hotspots":"longtext"},"width":300,"height":300,"uploadPath":"","ratioX":null,"ratioY":null,"predefinedDataTemplates":""}],"locked":false,"fieldtype":"panel","layout":null,"border":false,"icon":null,"labelWidth":100,"labelAlign":"left"},{"name":"Attributes","type":null,"region":null,"title":"Attributes","width":null,"height":null,"collapsible":false,"collapsed":false,"bodyStyle":"","datatype":"layout","permissions":null,"children":[{"name":"attributes","title":"Attributes","tooltip":"","mandatory":false,"noteditable":false,"index":false,"locked":false,"style":"","permissions":null,"datatype":"data","fieldtype":"objectbricks","relationType":false,"invisible":false,"visibleGridView":false,"visibleSearch":false,"allowedTypes":["Dimensions","Transmission","Bodywork","Engine"],"maxItems":null,"border":false}],"locked":false,"fieldtype":"panel","layout":null,"border":false,"icon":null,"labelWidth":100,"labelAlign":"left"},{"name":"Sale Information","type":null,"region":null,"title":"Sale Information","width":null,"height":null,"collapsible":false,"collapsed":false,"bodyStyle":"","datatype":"layout","permissions":null,"children":[{"name":"saleInformation","title":"Sale Information","tooltip":"","mandatory":false,"noteditable":false,"index":false,"locked":false,"style":"","permissions":null,"datatype":"data","fieldtype":"objectbricks","relationType":false,"invisible":false,"visibleGridView":false,"visibleSearch":false,"allowedTypes":["SaleInformation"],"maxItems":null,"border":false},{"name":"location","title":"Location","tooltip":"","mandatory":false,"noteditable":false,"index":false,"locked":false,"style":"","permissions":null,"datatype":"data","fieldtype":"geopoint","relationType":false,"invisible":false,"visibleGridView":false,"visibleSearch":false,"lat":0,"lng":0,"zoom":1,"width":null,"height":null,"mapType":"roadmap","queryColumnType":{"longitude":"double","latitude":"double"},"columnType":{"longitude":"double","latitude":"double"}}],"locked":false,"fieldtype":"panel","layout":null,"border":false,"icon":null,"labelWidth":100,"labelAlign":"left"},{"name":"System Data","type":null,"region":null,"title":"System Data","width":null,"height":null,"collapsible":false,"collapsed":false,"bodyStyle":"","datatype":"layout","permissions":null,"children":[{"name":"Layout","type":null,"region":null,"title":"","width":null,"height":null,"collapsible":false,"collapsed":false,"bodyStyle":"","datatype":"layout","permissions":null,"children":[],"locked":false,"fieldtype":"text","html":"
\\nDefine type of Car object to manage, which elements should be visible in shop and which are only helper objects to take advantage of data inheritance.\\n