diff --git a/database/full.sql b/database/full.sql index d6d5046..6f6841c 100644 --- a/database/full.sql +++ b/database/full.sql @@ -1,24 +1,100 @@ -/* Full database dump: schema + data */ +/*M!999999\- enable the sandbox mode */ +-- MariaDB dump 10.19 Distrib 10.11.14-MariaDB, for debian-linux-gnu (x86_64) +-- +-- Host: 127.0.0.1 Database: app_39514 +-- ------------------------------------------------------ +-- Server version 10.11.14-MariaDB-0+deb12u2 -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -SET time_zone = '+00:00'; -SET NAMES utf8mb4; -SET FOREIGN_KEY_CHECKS = 0; +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8mb4 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `tbl_auth` +-- DROP TABLE IF EXISTS `tbl_auth`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_auth` ( `cl_auth_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cl_auth_user` varchar(190) NOT NULL, `cl_auth_pass` varchar(255) NOT NULL, - `cl_auth_right` enum('admin','member') NOT NULL DEFAULT 'member', + `cl_auth_right` enum('admin','moderator','member') NOT NULL DEFAULT 'member', PRIMARY KEY (`cl_auth_id`), UNIQUE KEY `cl_auth_user` (`cl_auth_user`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; -INSERT INTO `tbl_auth` (`cl_auth_id`,`cl_auth_user`,`cl_auth_pass`,`cl_auth_right`) VALUES -('1','admin','$2y$10$plsEB.PQbUfUC.cb7YMhPOyUxB2hZdwHEzG.tpB1HK71dUI3Zn3au','admin'); +-- +-- Dumping data for table `tbl_auth` +-- + +LOCK TABLES `tbl_auth` WRITE; +/*!40000 ALTER TABLE `tbl_auth` DISABLE KEYS */; +INSERT INTO `tbl_auth` VALUES +(1,'admin','$2y$10$plsEB.PQbUfUC.cb7YMhPOyUxB2hZdwHEzG.tpB1HK71dUI3Zn3au','admin'), +(3,'admin2','$2y$10$Ka5zHqOaIjI35g4fzS.BVOyvSJc7gTCiZWgWsU1olRXiSOixZXBw6','member'); +/*!40000 ALTER TABLE `tbl_auth` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tbl_page_access` +-- + +DROP TABLE IF EXISTS `tbl_page_access`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `tbl_page_access` ( + `cl_page_access_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `cl_page_key` varchar(190) NOT NULL, + `cl_page_file` varchar(190) NOT NULL, + `cl_page_label` varchar(190) NOT NULL, + `cl_allow_admin` tinyint(1) NOT NULL DEFAULT 1, + `cl_allow_moderator` tinyint(1) NOT NULL DEFAULT 0, + `cl_allow_member` tinyint(1) NOT NULL DEFAULT 0, + `cl_updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + PRIMARY KEY (`cl_page_access_id`), + UNIQUE KEY `cl_page_key` (`cl_page_key`), + UNIQUE KEY `cl_page_file` (`cl_page_file`) +) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tbl_page_access` +-- + +LOCK TABLES `tbl_page_access` WRITE; +/*!40000 ALTER TABLE `tbl_page_access` DISABLE KEYS */; +INSERT INTO `tbl_page_access` VALUES +(1,'scnotification','scnotification.php','NOTIF DISCORD',1,0,0,'2026-04-15 14:15:11'), +(2,'scpreset','scpreset.php','Presets Vaisseau',1,1,1,'2026-04-15 14:44:49'), +(3,'scwebhook','scwebhook.php','WEBHOOK',1,0,0,'2026-04-15 13:54:39'), +(4,'scitems','scitems.php','Base d\'Objets',1,0,0,'2026-04-15 14:06:35'), +(5,'scstatsitem','scstatsitem.php','Stats Item',1,0,0,'2026-04-15 14:06:35'), +(6,'scitemcustom','scitemcustom.php','OBJETS PERSONNALISES',1,1,1,'2026-05-06 23:00:18'), +(7,'scmining','scmining.php','Scanner Minage',1,0,0,'2026-04-15 14:06:35'), +(8,'scmanufactures','scmanufactures.php','Manufactures',1,0,0,'2026-04-15 14:06:35'), +(9,'scvaisseaux','scvaisseaux.php','Vaisseaux',1,0,0,'2026-04-15 14:33:02'), +(10,'sccharacters','sccharacters.php','Personnages',1,0,1,'2026-04-16 00:17:34'), +(11,'scmanutention','scmanutention.php','Manutention',1,0,0,'2026-05-06 22:23:27'); +/*!40000 ALTER TABLE `tbl_page_access` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tbl_scbanners` +-- DROP TABLE IF EXISTS `tbl_scbanners`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_scbanners` ( `cl_scbanner_id` int(11) NOT NULL AUTO_INCREMENT, `cl_scbanner_name` varchar(255) NOT NULL, @@ -26,18563 +102,308 @@ CREATE TABLE `tbl_scbanners` ( `cl_scbanner_border_color` varchar(20) NOT NULL DEFAULT '#ffae00', PRIMARY KEY (`cl_scbanner_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; -INSERT INTO `tbl_scbanners` (`cl_scbanner_id`,`cl_scbanner_name`,`cl_scbanner_url`,`cl_scbanner_border_color`) VALUES -('1','Code 8','https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless','#FF3B30'), -('2','Code 4','https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless','#FFAE00'), -('3','Code 2','http://www.fdsfds.fr/img.png','#5FB6F5'); +-- +-- Dumping data for table `tbl_scbanners` +-- + +LOCK TABLES `tbl_scbanners` WRITE; +/*!40000 ALTER TABLE `tbl_scbanners` DISABLE KEYS */; +INSERT INTO `tbl_scbanners` VALUES +(1,'Code 8','https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless','#FF3B30'), +(2,'Code 4','https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless','#FFAE00'), +(3,'Code 2','http://www.fdsfds.fr/img.png','#5FB6F5'); +/*!40000 ALTER TABLE `tbl_scbanners` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tbl_sccharacteritems` +-- + +DROP TABLE IF EXISTS `tbl_sccharacteritems`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `tbl_sccharacteritems` ( + `cl_sccharacteritem_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `cl_sccharacteritem_character_id` int(10) unsigned NOT NULL, + `cl_sccharacteritem_source` enum('base','custom') NOT NULL DEFAULT 'base', + `cl_sccharacteritem_scobjs_id` int(10) unsigned DEFAULT NULL, + `cl_sccharacteritem_scitemcustom_id` int(11) DEFAULT NULL, + `cl_sccharacteritem_slot` varchar(120) NOT NULL DEFAULT '', + `cl_sccharacteritem_quantity` int(10) unsigned DEFAULT NULL, + `cl_sccharacteritem_note` text DEFAULT NULL, + `cl_sccharacteritem_sort_order` int(10) unsigned NOT NULL DEFAULT 0, + `cl_sccharacteritem_created_at` datetime NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`cl_sccharacteritem_id`), + KEY `idx_sccharacteritem_character` (`cl_sccharacteritem_character_id`), + KEY `idx_sccharacteritem_scobjs` (`cl_sccharacteritem_scobjs_id`), + KEY `idx_sccharacteritem_scitemcustom` (`cl_sccharacteritem_scitemcustom_id`), + KEY `idx_sccharacteritem_character_sort` (`cl_sccharacteritem_character_id`,`cl_sccharacteritem_sort_order`,`cl_sccharacteritem_id`), + CONSTRAINT `fk_sccharacteritem_character` FOREIGN KEY (`cl_sccharacteritem_character_id`) REFERENCES `tbl_sccharacters` (`cl_sccharacter_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_sccharacteritem_scitemcustom` FOREIGN KEY (`cl_sccharacteritem_scitemcustom_id`) REFERENCES `tbl_scitemcustom` (`cl_scitemcustom_id`) ON DELETE SET NULL ON UPDATE CASCADE, + CONSTRAINT `fk_sccharacteritem_scobjs` FOREIGN KEY (`cl_sccharacteritem_scobjs_id`) REFERENCES `tbl_scobjs` (`cl_scobjs_id`) ON DELETE SET NULL ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tbl_sccharacteritems` +-- + +LOCK TABLES `tbl_sccharacteritems` WRITE; +/*!40000 ALTER TABLE `tbl_sccharacteritems` DISABLE KEYS */; +INSERT INTO `tbl_sccharacteritems` VALUES +(1,1,'custom',NULL,2,'',NULL,NULL,5,'2026-04-15 22:49:38'), +(2,1,'base',14855,NULL,'',NULL,NULL,2,'2026-04-15 22:51:20'), +(4,1,'base',18116,NULL,'armor',NULL,NULL,3,'2026-04-15 23:03:26'), +(6,1,'base',10541,NULL,'armor',NULL,NULL,1,'2026-04-15 23:26:43'), +(7,1,'base',14910,NULL,'armor',NULL,NULL,4,'2026-04-15 23:27:41'), +(9,1,'base',12676,NULL,'tools',NULL,NULL,6,'2026-04-16 00:18:29'), +(10,1,'base',14585,NULL,'consumables',5,NULL,7,'2026-04-16 00:21:15'), +(11,1,'base',7993,NULL,'consumables',4,NULL,8,'2026-04-16 00:21:42'); +/*!40000 ALTER TABLE `tbl_sccharacteritems` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tbl_sccharacters` +-- + +DROP TABLE IF EXISTS `tbl_sccharacters`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `tbl_sccharacters` ( + `cl_sccharacter_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `cl_sccharacter_owner_auth_id` int(10) unsigned NOT NULL, + `cl_sccharacter_name` varchar(190) NOT NULL, + `cl_sccharacter_role` varchar(190) NOT NULL DEFAULT '', + `cl_sccharacter_faction` varchar(190) NOT NULL DEFAULT '', + `cl_sccharacter_org_rsi_url` varchar(255) NOT NULL DEFAULT '', + `cl_sccharacter_is_player` tinyint(1) NOT NULL DEFAULT 0, + `cl_sccharacter_player_handle` varchar(190) NOT NULL DEFAULT '', + `cl_sccharacter_avatar_url` varchar(255) NOT NULL DEFAULT '', + `cl_sccharacter_description` text DEFAULT NULL, + `cl_sccharacter_notes` text DEFAULT NULL, + `cl_sccharacter_share_token` varchar(64) NOT NULL, + `cl_sccharacter_share_enabled` tinyint(1) NOT NULL DEFAULT 0, + `cl_sccharacter_is_pinned` tinyint(1) NOT NULL DEFAULT 0, + `cl_sccharacter_category_order` text DEFAULT NULL, + `cl_sccharacter_created_at` datetime NOT NULL DEFAULT current_timestamp(), + `cl_sccharacter_updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + PRIMARY KEY (`cl_sccharacter_id`), + UNIQUE KEY `uq_sccharacter_share_token` (`cl_sccharacter_share_token`), + KEY `idx_sccharacter_owner` (`cl_sccharacter_owner_auth_id`), + KEY `idx_sccharacter_name` (`cl_sccharacter_name`), + CONSTRAINT `fk_sccharacter_owner_auth` FOREIGN KEY (`cl_sccharacter_owner_auth_id`) REFERENCES `tbl_auth` (`cl_auth_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tbl_sccharacters` +-- + +LOCK TABLES `tbl_sccharacters` WRITE; +/*!40000 ALTER TABLE `tbl_sccharacters` DISABLE KEYS */; +INSERT INTO `tbl_sccharacters` VALUES +(1,1,'John Castella','Agent','','https://robertsspaceindustries.com/en/orgs/REACT',1,'swef','https://robertsspaceindustries.com/media/mb29p1oasrfcsr/heap_infobox/1253341158_2.jpg','Personnage de test',NULL,'42896cf2413f4272c22d451c69cfbe83',1,1,'[\"armor\",\"weapon\",\"tools\",\"consumables\",\"ammunition\",\"attachments\",\"clothing\",\"cargo\",\"ship\",\"access\",\"misc\"]','2026-04-15 22:26:07','2026-04-16 09:28:56'), +(2,1,'Amara Kintanuella','Agent','','',0,'','https://robertsspaceindustries.com/media/whrytq3flsl8nr/heap_infobox/95eccb0d-563d-4b3e-845e-Ea2621211c71.png',NULL,NULL,'788b8fafdd540d6fea41970a4b86799e',1,0,'[\"weapon\",\"armor\",\"tools\",\"consumables\",\"ammunition\",\"attachments\",\"clothing\",\"cargo\",\"ship\",\"access\",\"misc\"]','2026-04-16 00:04:07','2026-04-16 09:42:57'); +/*!40000 ALTER TABLE `tbl_sccharacters` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tbl_scitemcustom` +-- + +DROP TABLE IF EXISTS `tbl_scitemcustom`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `tbl_scitemcustom` ( + `cl_scitemcustom_id` int(11) NOT NULL AUTO_INCREMENT, + `cl_scitemcustom_owner_auth_id` int(10) unsigned DEFAULT NULL, + `cl_scitemcustom_obj_id` int(10) unsigned NOT NULL, + `cl_scitemcustom_created_at` datetime NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`cl_scitemcustom_id`), + KEY `idx_scitemcustom_obj` (`cl_scitemcustom_obj_id`), + KEY `idx_scitemcustom_owner` (`cl_scitemcustom_owner_auth_id`), + CONSTRAINT `fk_scitemcustom_obj` FOREIGN KEY (`cl_scitemcustom_obj_id`) REFERENCES `tbl_scobjs` (`cl_scobjs_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_scitemcustom_owner_auth` FOREIGN KEY (`cl_scitemcustom_owner_auth_id`) REFERENCES `tbl_auth` (`cl_auth_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tbl_scitemcustom` +-- + +LOCK TABLES `tbl_scitemcustom` WRITE; +/*!40000 ALTER TABLE `tbl_scitemcustom` DISABLE KEYS */; +INSERT INTO `tbl_scitemcustom` VALUES +(1,NULL,9691,'2026-04-08 18:35:15'), +(2,1,9691,'2026-04-08 19:02:41'), +(3,1,6157,'2026-04-08 21:38:23'), +(4,3,1896,'2026-04-15 14:11:11'), +(5,1,12311,'2026-05-06 22:54:24'), +(6,1,6157,'2026-05-06 22:59:45'); +/*!40000 ALTER TABLE `tbl_scitemcustom` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tbl_scitemcustomstat` +-- + +DROP TABLE IF EXISTS `tbl_scitemcustomstat`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `tbl_scitemcustomstat` ( + `cl_scitemcustomstat_id` int(11) NOT NULL AUTO_INCREMENT, + `cl_scitemcustomstat_itemcustom_id` int(11) NOT NULL, + `cl_scitemcustomstat_stat_id` int(11) NOT NULL, + `cl_scitemcustomstat_sign` enum('+','','-') NOT NULL DEFAULT '+', + `cl_scitemcustomstat_value` decimal(10,2) NOT NULL DEFAULT 0.00, + `cl_scitemcustomstat_created_at` datetime NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`cl_scitemcustomstat_id`), + UNIQUE KEY `uq_scitemcustomstat_item_stat` (`cl_scitemcustomstat_itemcustom_id`,`cl_scitemcustomstat_stat_id`), + KEY `idx_scitemcustomstat_item` (`cl_scitemcustomstat_itemcustom_id`), + KEY `idx_scitemcustomstat_stat` (`cl_scitemcustomstat_stat_id`), + CONSTRAINT `fk_scitemcustomstat_item` FOREIGN KEY (`cl_scitemcustomstat_itemcustom_id`) REFERENCES `tbl_scitemcustom` (`cl_scitemcustom_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_scitemcustomstat_stat` FOREIGN KEY (`cl_scitemcustomstat_stat_id`) REFERENCES `tbl_scstatsitem` (`cl_scstatsitem_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tbl_scitemcustomstat` +-- + +LOCK TABLES `tbl_scitemcustomstat` WRITE; +/*!40000 ALTER TABLE `tbl_scitemcustomstat` DISABLE KEYS */; +INSERT INTO `tbl_scitemcustomstat` VALUES +(1,1,2,'+',5.00,'2026-04-08 18:35:44'), +(2,1,1,'+',10.00,'2026-04-08 18:35:53'), +(3,2,2,'+',50.00,'2026-04-08 19:02:52'), +(4,2,1,'+',25.00,'2026-04-08 19:03:08'), +(5,3,5,'',850.00,'2026-04-08 21:46:22'), +(6,3,6,'',0.50,'2026-04-08 22:01:49'), +(8,4,2,'+',10.00,'2026-04-15 14:11:36'), +(9,6,5,'',999.00,'2026-05-06 23:00:00'), +(10,6,6,'',1.00,'2026-05-06 23:00:18'); +/*!40000 ALTER TABLE `tbl_scitemcustomstat` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tbl_scmanufactures` +-- DROP TABLE IF EXISTS `tbl_scmanufactures`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_scmanufactures` ( `cl_scmanufactures_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cl_scmanufactures_name` varchar(255) NOT NULL, PRIMARY KEY (`cl_scmanufactures_id`), UNIQUE KEY `cl_scmanufactures_name` (`cl_scmanufactures_name`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - -INSERT INTO `tbl_scmanufactures` (`cl_scmanufactures_id`,`cl_scmanufactures_name`) VALUES -('2','Aegis Dynamics'), -('3','Anvil Aerospace'), -('1','Argo Astronautics'); - -DROP TABLE IF EXISTS `tbl_scobjs`; -CREATE TABLE `tbl_scobjs` ( - `cl_scobjs_id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `cl_scobjs_name` varchar(255) NOT NULL, - `cl_scobjs_type` varchar(100) DEFAULT NULL, - `cl_scobjs_subtype` varchar(100) DEFAULT NULL, - `cl_scobjs_uuid` varchar(100) NOT NULL, - `cl_scobjs_rarity` varchar(10) DEFAULT '', - `cl_scobjs_about` text DEFAULT NULL, - `cl_scobjs_description` text DEFAULT NULL, - PRIMARY KEY (`cl_scobjs_id`), - UNIQUE KEY `cl_scobjs_uuid` (`cl_scobjs_uuid`) -) ENGINE=InnoDB AUTO_INCREMENT=18305 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('1','Odyssey II Helmet Alpha','Armor','Helmet','0190a637-936f-4834-812b-f945a0413467','','',NULL), -('2','Seat','Usable','UNDEFINED','a41b969c-9262-435c-aef7-ad2107af088c','','',NULL), -('3','Odyssey II Undersuit Multi','Armor','Undersuit','a1a0fa79-085a-4a1a-b325-ebaee413ae36','','',NULL), -('4','RSI_Constellation_TA_BayWall_Left','Container','UNDEFINED','6079a4f9-df9b-43ab-8443-8b32550bdb7e','','',NULL), -('5','Nomad Conifer Livery','Paints','UNDEFINED','f913c14c-d253-4c1b-a508-d5d94f278ac5','','',NULL), -('6','TRGT. STATUS','Seat','UNDEFINED','84c7b1fa-eba8-4713-be94-109d3a277190','','',NULL), -('7','Radar_Display_ESPR_Prowler','Display','UNDEFINED','c170ed0f-3d01-4ea0-8538-c1a552c93642','','',NULL), -('8','ANVL_Hornet_F7CM_Mk2_Dashboard_Copilot','SeatDashboard','UNDEFINED','831eed03-7605-4ae5-bf31-86f8de4cfdf2','','',NULL), -('9','DRAK_Dragonfly_SCItem_Dashboard_CoPilot','SeatDashboard','UNDEFINED','5f63d6e5-a417-4d78-98d4-219f49d51229','','',NULL), -('10','RSI_Zeus_Thruster_Mav','ManneuverThruster','UNDEFINED','2a690f30-4a5e-406b-881c-af95c3830fd7','','',NULL), -('11','Starlancer Updraft Livery','Paints','UNDEFINED','ca62763f-d41b-4008-a761-e32def5b5894','','',NULL), -('12','m_human_mannequin_clothing_TandS_Civ03','ShopDisplay','UNDEFINED','1c15d7ae-6254-46a1-b4a6-1db0663f3bee','','',NULL), -('13','Antium Legs Moss Camo ','Armor','Legs','1f5e4a0d-ca1b-449b-b2ad-f165df283c91','','',NULL), -('14','display_components_platbay_counter_b_1slot','ShopDisplay','UNDEFINED','43dced5f-ec0c-4a65-94c9-bb150174fa00','','',NULL), -('15','Carryable_2H_FL_Container_Anim_multitool_1_citizencon2953_1_a','Misc','UNDEFINED','387ad3ab-5d5f-49d4-bb44-c4357d2b0b8c','','',NULL), -('16','Morozov-SH-S Helmet Terrene','Armor','Helmet','503c6b97-7e0b-4763-98e5-5b00308fe459','','',NULL), -('17','Neoni Tengubi Helmet','Armor','Helmet','0337fb43-2015-453a-bcd3-fa70bfea2766','','',NULL), -('18','TRGT. STATUS','Seat','UNDEFINED','32a5ce22-15ea-4cb8-a449-f05536dfdb13','','',NULL), -('19','Odyssey II Helmet Alpha','Armor','Helmet','be1bb439-e2c8-4b6c-90d2-af4b0a8e130e','','',NULL), -('20','RSI_Constellation_Phoenix_Thruster_Mav_Joint','ManneuverThruster','JointThruster','5f7cb35d-e25b-415f-b0a3-292f91416280','','',NULL), -('21','Altruciatoxin','Cargo','Cargo','169b534b-6d61-4cad-b275-694fc5a04574','','',NULL), -('22','Seat','Usable','UNDEFINED','51ac4cec-f08e-4c11-bce5-23912edddf0d','','',NULL), -('23','Hercules Starlifter Draco Livery','Paints','UNDEFINED','e5382652-80ce-4e07-8a66-d267c4e17ad2','','',NULL), -('24','Clash Core','Armor','Torso','87f8d046-ae68-45c7-93eb-49204a7e0e94','','',NULL), -('25','Redeemer Scrubland Camo Livery','Paints','UNDEFINED','7874817d-fee0-4578-9f6c-5d2840182033','','',NULL), -('26','Seat','Usable','UNDEFINED','aff6a865-74e7-48ea-8592-b0269abe295f','','',NULL), -('27','H_Dashboard_Projector_HUD_RSI_Aurora','Display','UNDEFINED','0843ceac-039c-4597-97dd-214602a4f927','','',NULL), -('28','Internal Tank','FuelTank','Fuel','7eb19d22-9ab6-469d-a9bf-c5b70ae7e876','','',NULL), -('29','RSI_Zeus_CL_Thruster_Main_Top_Left','MainThruster','UNDEFINED','9808ecb4-8e4d-482c-b4df-4f5b98ac14c0','','',NULL), -('30','Clothing_Torso2_Unified','Char_Clothing_Torso_2','UNDEFINED','2345de7a-585d-4e4c-a0ca-cc33511ad255','','',NULL), -('31','Seat','SeatAccess','UNDEFINED','837dc6f0-360d-4995-9586-3bfb6b67b2df','','',NULL), -('32','5CA \'Akura\'','Shield','UNDEFINED','51bf9a6e-0ad7-49d2-8d41-d1d5e69669e6','','',NULL), -('33','TwoStateAnimator_Instanced','Misc','Default','389e3236-8372-444e-87eb-b7f444a2177f','','',NULL), -('34','Door Control','Door','UNDEFINED','5d4b6d12-3b19-47ba-ab07-b0be0ed17b76','','',NULL), -('35','Ranta Dung','Cargo','Cargo','0c538438-072a-4038-9d3c-87de08620bfc','','',NULL), -('36','Golem Flashpoint Livery','Paints','UNDEFINED','7e19ec04-acd7-466e-98e9-857fbc3ca000','','',NULL), -('37','Palatino Legs Shadow Gild','Armor','Legs','6bd54e97-7a6a-4daa-823b-491c031d7932','','',NULL), -('38','facial_hair_038','Char_Head_Beard','UNDEFINED','0b797354-6eb0-41df-a81a-42677c7b61af','','',NULL), -('39','Ranta Dung','Cargo','Cargo','904f0a72-211f-4e54-b0eb-eb5a06808b79','','',NULL), -('40','Quell Suppressor1','WeaponAttachment','Barrel','64922909-1036-4fbf-a55f-2388fe03e865','','',NULL), -('41','ANVL_Door_Decal_Carrack_Deck2','Decal','DoorPart','5f151f57-55e8-4df4-aa7b-a796d02b4406','','',NULL), -('42','Internal Tank','FuelTank','Fuel','50df8799-d4d8-49b9-b5f1-9d6af03e38a6','','',NULL), -('43','Ursa Oasis Livery','Paints','UNDEFINED','d2399780-8e0e-4557-b038-b379e5c312d5','','',NULL), -('44','Bed','Usable','UNDEFINED','28b933ad-5c88-43cc-a4aa-060699c064a4','','',NULL), -('45','Seat','Usable','UNDEFINED','a82bd240-4d06-4beb-ae13-a17eb212373e','','',NULL), -('46','Agricium (Ore)','Cargo','Cargo','f45fc3f0-18aa-4765-826a-110d8cb9961b','','',NULL), -('47','TrueDef-Pro Arms Grey/Green','Armor','Arms','3601dfc8-adfe-4ef0-a8e0-26cbd16d95ad','','',NULL), -('48','DRAK_Cutlass_Red_Thruster_Maneuver_Vertical_Negative','ManneuverThruster','JointThruster','d8c50f88-52ce-4d3f-b2b8-954811feb9c6','','',NULL), -('49','Carryable_2H_FL_05x05x05_MissionItem_Jackolantern','Misc','UNDEFINED','2795594c-e919-4b13-b01a-4a7d6a7a652d','','',NULL), -('50','CRUS_Spirit_Thruster_VTOL_Aux_Front','MainThruster','UNDEFINED','a66bd731-e0b7-4ba9-80ec-e0446fb341ca','','',NULL), -('51','Landlite Boots Orange','Char_Clothing_Feet','UNDEFINED','7d1fa3ac-1a28-44b0-9700-49525f6311a0','','',NULL), -('52','C8 Pisces Heartbeat Livery','Paints','UNDEFINED','5b06e19a-57e1-4424-9705-1c07c1cd2049','','',NULL), -('53','DockingTube_Fuel_Ports_DRAK_Clipper','DockingCollar','UNDEFINED','43346162-b438-4595-ad47-463406f76fa3','','',NULL), -('54','Manned Turret','TurretBase','MannedTurret','090d3ed5-6462-41cf-a2a7-2ed1a11a8106','','',NULL), -('55','RSI_Scorpius_Component_Cover','Misc','UNDEFINED','48f489d1-e3d5-464f-99d5-1632e0dc763e','','',NULL), -('56','Bed','Usable','UNDEFINED','12479303-c2b0-4a89-9495-88473a0a2b09','','',NULL), -('57','INTK_ANVL_Terrapin','FuelIntake','Fuel','0954c570-fa2b-41b8-85d8-732e31e0ec20','','',NULL), -('58','Sadaryx Focus Lens','Battery','Cargo','ae5dda5e-4278-4846-99df-4db1c2274429','','',NULL), -('59','Lasing Catalyst','Battery','Cargo','374c991e-b2ba-4e4b-8ea4-fb8deacabcee','','',NULL), -('60','Colonialism_Outpost_RN_Single_Liquid_Tank_Unit','FuelTank','UNDEFINED','30f76263-c0d5-4eff-a5f7-180195779c0d','','',NULL), -('61','Baru Gloves Slate (Left Only)','Char_Clothing_Hands','UNDEFINED','67d77c60-6329-4872-ab85-54e51d1fc7fe','','',NULL), -('62','Coda Pistol','Weapon','Small','b97279f7-b795-4f17-9458-022068edd98f','','',NULL), -('63','Reclaimer 2954 Best in Show Livery','Paints','UNDEFINED','534a45f2-fecf-4aea-b141-59d1e95b6269','','',NULL), -('64','P6-LR \"Gideon\" Sniper Rifle','Weapon','Medium','22a62459-d4f6-48cd-8c32-79572b5c35bd','','',NULL), -('65','Projector_HUD_Mining_ROCDS','Display','UNDEFINED','5d2c9019-540f-49d1-9a6f-c71350aab348','','',NULL), -('66','Internal Tank','FuelTank','Fuel','7c14e9dd-6a5f-4681-a2d1-b2f1758f88b6','','',NULL), -('67','Seat','SeatAccess','UNDEFINED','e4c8f021-feab-4209-8573-fa31a3b541a1','','',NULL), -('68','DRAK_Vulture_Component_Power','Player','UNDEFINED','8eac8173-0cca-40b1-a14a-33ff643bb01f','','',NULL), -('69','Personal Storage','Cargo','UNDEFINED','d658f2ad-9527-4c2e-9ebe-43973f028efe','','',NULL), -('70','Seat','SeatAccess','UNDEFINED','bc26bf35-ae45-4701-94b9-1d85a03229a8','','',NULL), -('71','Venture Helmet White','Armor','Helmet','28c76343-8da9-495a-9339-3d5de02e6c3c','','',NULL), -('72','Reliant Gilroy Gimbal','Turret','GunTurret','433251b0-f28d-4aa3-83f1-4ae45a1a0137','','',NULL), -('73','Voidripper Sea Shiver Helmet','Armor','Helmet','a761af5b-9971-48c0-9bc4-fd7547c899a4','','',NULL), -('74','Door Control','Door','UNDEFINED','79877961-0895-4f60-8299-65c71b99a82f','','',NULL), -('75','ARGO_MPUV_1T_Thruster_Aux_Front','ManneuverThruster','FixedThruster','5235ab87-2188-4964-bacb-87fa6b82374d','','',NULL), -('76','Door Control','Door','UNDEFINED','2f17af9a-66b9-4f18-80b0-6264dd94dc15','','',NULL), -('77','V60-26','Radar','MidRangeRadar','ad4f59d3-1fca-470a-bece-a14484e9ff61','','',NULL), -('78','Origin 350r Racing Flight Suit','Armor','Undersuit','eff4fdff-304b-4879-aba0-a2249f76bdc1','','',NULL), -('79','WowBlast Desperado Toy Pistol Red','Weapon','Small','413242d8-ce09-4eb7-88d4-9841139ade80','','',NULL), -('80','Seat','SeatAccess','UNDEFINED','1508f769-2169-493b-8c5e-2512e9347155','','',NULL), -('81','Pepper','Misc','UNDEFINED','8a1d093a-901d-4059-826c-c16a8661b24f','','',NULL), -('82','Seat','Usable','UNDEFINED','cec564cd-96ed-4af3-b455-7e2523b0631e','','',NULL), -('83','sc_nvy_bdu_engineer_belt_01_01_refinery','Char_Clothing_Torso_2','UNDEFINED','de1b1deb-9465-4d3f-97f0-854a9affb4a4','','',NULL), -('84','Oracle Helmet Abyss','Armor','Helmet','0d20cc30-0d6f-48b4-b2a1-79ff88e52204','','',NULL), -('85','DustUp Core Desert','Armor','Torso','398a3688-07c5-4c2b-8d0e-736979ba2834','','',NULL), -('86','display_cabinet_small_14x03x0150','ShopDisplay','Default','79f38048-7898-48c4-ba1c-6b0d3d54913f','','',NULL), -('87','Sabre Black Magic Livery','Paints','UNDEFINED','b1631b1d-a020-4374-99c1-c47a2d4b09d7','','',NULL), -('88','ARGO_MPUV_1T_Thruster_Aux_Side','ManneuverThruster','FixedThruster','12cfce99-e537-44b2-bbaa-ef4b58b14fe8','','',NULL), -('89','HRST_LaserRepeater_Barrel_S6','WeaponAttachment','Barrel','34f81bdf-0386-46f7-99c3-6c33dca020e4','','',NULL), -('90','Flight Blade','FlightController','UNDEFINED','213afa92-08c7-400c-b4b4-8a5c26b500ab','','',NULL), -('91','AEGS_Sabre_Thruster_Retro','ManneuverThruster','FixedThruster','7bf0f682-2029-4259-ae25-7bf5e87274ba','','',NULL), -('92','display_1_5m_a_centermass_1port','ShopDisplay','Default','311fdcda-66d3-4f4c-a0d8-38c69c66f871','','',NULL), -('93','XNAA_SanTokYai_Thruster_Mav_Retro','ManneuverThruster','FlexThruster','0a0e7c8f-cd5a-4386-8931-d623137a78ae','','',NULL), -('94','Carryable_1H_CY_utensil_shaker_1_top_a','Misc','UNDEFINED','e2260cd9-4172-4202-be68-38dd0e086435','','',NULL), -('95','box_fabric_1_005x005x005_b','Cargo','UNDEFINED','6b1a75e3-ee0a-45a8-8c46-aaf9fd91e311','','',NULL), -('96','Prim Shoes Olive','Char_Clothing_Feet','UNDEFINED','404697e5-efac-4da8-9870-93166f942682','','',NULL), -('97','Odyssey II Helmet Twilight','Armor','Helmet','d1556dc9-09e3-48ef-9484-a864e3b6b711','','',NULL), -('98','MRAI_Guardian_Thruster_Mav_Bottom','ManneuverThruster','FixedThruster','29c720fb-8cfa-44b4-ab60-5c5c4dadb7f1','','',NULL), -('99','RAFT microTech Livery','Paints','UNDEFINED','6e318f10-454c-4631-bbf8-09f632342635','','',NULL), -('100','Carryable_1H_SQ_heatpack_1_c','Misc','UNDEFINED','4608a00d-ae0f-489d-a088-70f755c86381','','',NULL), -('101','Lancet MH1 Mining Laser','Mining','Gun','ba94a262-bc0a-4484-9bbd-a4be7a2ec3e7','','',NULL), -('102','S00 Hofstede','Mining','Gun','1c2bab01-941b-4515-a6a4-5845aaa95696','','',NULL), -('103','Golden Medmon','Cargo','Cargo','2bfa7f83-82cf-45a0-9ed7-7e0da124f461','','',NULL), -('104','facial_hair_020','Char_Head_Beard','UNDEFINED','7b5556a2-c331-4192-b1f9-0941d778b7e3','','',NULL), -('105','Fotia Seedpod','Cargo','Cargo','d96b15e2-0731-4cbf-bc1c-631d34f2a742','','',NULL), -('106','ESPR_BallisticCannon_PowerArray_S5','WeaponAttachment','PowerArray','2a558e7b-8756-419c-a2e5-c0f9bc72ded4','','',NULL), -('107','Carryable_2H_FL_ball_yoga_1_a','Misc','UNDEFINED','5f49d1a1-1e04-4a22-bc53-55a488df65e0','','',NULL), -('108','ZapJet','PowerPlant','Power','cebbf547-717e-478e-8d52-81f786477295','','',NULL), -('109','HEAT','CoolerController','UNDEFINED','b935e5d8-dead-47c5-8937-382c3aa11682','','',NULL), -('110','MISC_Starfarer_SCItem_Seat_Sup_Right','Seat','UNDEFINED','bc22b810-27bb-4dbb-ae55-e1700f27079f','','',NULL), -('111','Bed','Usable','UNDEFINED','d8afc3ae-f132-46f2-b6f5-60456f7c56fd','','',NULL), -('112','IAE 2953 Hat White','Char_Clothing_Hat','UNDEFINED','0d385856-b8fc-46b7-b0e6-4a242c7c9c67','','',NULL), -('113','Invictus 2953 T-Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','6fdb2d68-1045-469b-a10a-e1081e2db86d','','',NULL), -('114','Door Control','ControlPanel','DoorPart','fe69bf01-f2f0-48dd-9e39-d59cba6606cf','','',NULL), -('115','DRAK_Cutter_Thruster_MainRetro','ManneuverThruster','Retro','49d89ec5-a563-420b-8670-3be723c7b99f','','',NULL), -('116','Kino Shoes Sienna','Char_Clothing_Feet','UNDEFINED','c6acb5a1-0b64-4202-871f-efd90d7ac42d','','',NULL), -('117','ControlPanel_Screen_LightControl_9x16','ControlPanel','DoorPart','549cba04-c035-4671-abb6-bd7327de0596','','',NULL), -('118','Ketchum Beanie Olive','Char_Clothing_Hat','UNDEFINED','32a8a688-a5f5-41df-ad00-e7c42f95d544','','',NULL), -('119','Horizon Helmet Violet','Armor','Helmet','b04729d9-0f52-4587-9db4-a429a2ac9e8f','','',NULL), -('120','Frost-Star','Cooler','UNDEFINED','d8059126-352a-4be5-bfc9-15cf4fb05439','','',NULL), -('121','Aluminum','Cargo','Cargo','5b0c1e9f-90f2-4694-9191-bf23080173b3','','',NULL), -('122','Internal Tank','FuelTank','Fuel','66561c57-a1f0-45c8-a7f2-90119a3fe25b','','',NULL), -('123','RSI_Polaris_Fake_Door_Cargo_Left','Misc','UNDEFINED','4233b5d6-ed9a-468a-9801-f3aa8608498d','','',NULL), -('124','CBH-3 Helmet Olive','Armor','Helmet','62e76c40-c11e-4ed7-be4a-26e6847af960','','',NULL), -('125','MISC_Starlancer_Thruster_Mav_Small','ManneuverThruster','FixedThruster','6441c874-6433-47c8-8389-196926f23bb2','','',NULL), -('126','Internal Tank','FuelTank','Fuel','5d0281eb-3b71-46e4-9ac3-9dc9bc9be81f','','',NULL), -('127','hooks_torso1_03x01x04_03Ports','ShopDisplay','Default','3ada4ae1-1f4e-4ffb-8d7c-6aa1f383b75c','','',NULL), -('128','Karoby Energy Bar (Cranberry, Green Tea & Carob)','Food','Bar','b2497354-217a-4310-8ab8-d3c633d2e8a2','','',NULL), -('129','CNOU_Mustang_Gamma_Thruster_Aux','MainThruster','FixedThruster','5d6f6fd3-edfe-442d-b578-806b2a527ab8','','',NULL), -('130','Harlowe Shirt microTech','Char_Clothing_Torso_0','UNDEFINED','8948a26f-f2e3-42ea-b4b7-8e6ae160fe67','','',NULL), -('131','RSI_Apollo_Thruster_Main_Nacelle','MainThruster','FixedThruster','42044e81-6855-0f44-6761-6d3ec28d6c84','','',NULL), -('132','DoorProximitySensor_2x1x1_3','Sensor','DoorPart','5809dbeb-af65-4c47-b5ae-c1d289b5c2b5','','',NULL), -('133','Bed','Seat','UNDEFINED','b455c6ab-d37d-41dc-82eb-e02c0ad766cb','','',NULL), -('134','Turret','Container','Cargo','d9c6e66e-1a94-49f5-924d-0af1598875c8','','',NULL), -('135','H_Dashboard_Projector_HUD_RSI_Polaris_P','Display','UNDEFINED','652bb88e-e934-4526-9754-a54dab49a43e','','',NULL), -('136','Aegis Retaliator Torpedo Rack','MissileLauncher','MissileRack','2a1bedaa-53e5-4059-b979-275ac50eb4d5','','',NULL), -('137','Mivaldi Pants Black','Char_Clothing_Legs','UNDEFINED','523963bf-a1f5-4e5b-97bb-7a853a68f610','','',NULL), -('138','Horizon Helmet Tan','Armor','Helmet','5e00fc5d-1c87-4b53-92f9-fe619451bcb0','','',NULL), -('139','Hephaestanite (Raw)','Cargo','Cargo','c4b99718-eafb-4f87-8e6c-76c78ea76709','','',NULL), -('140','Mug','Misc','UNDEFINED','4402ed9f-d1c6-46f4-92c3-0a794934ddd4','','',NULL), -('141','Door Control','Door','UNDEFINED','8411a71d-9f10-4125-ba6e-aef4a31077ec','','',NULL), -('142','NDB-26 Repeater','Weapon','Gun','fecbf518-e3e5-4e58-905a-729a02e86265','','',NULL), -('143','display_booth_stand_4_weapon_0114x00325x015','ShopDisplay','Default','2554b275-ea20-433b-8a86-1d338190a23b','','',NULL), -('144','Door','Door','UNDEFINED','d552fe5b-9b28-4228-9f1d-ea7d9ae9a975','','',NULL), -('145','Riccite (Ore)','Cargo','Cargo','748317af-019a-44b7-9e93-1111a7a919b8','','',NULL), -('146','VNCL_Gen2_PlasmaCannon_Barrel_S2','WeaponAttachment','Barrel','ce49413f-8de3-4025-94d7-be5fd245c8d7','','',NULL), -('147','PAB-1 Legs Grey','Armor','Legs','360975a4-2088-452d-be3d-dc4bb7c2428b','','',NULL), -('148','Internal Tank','QuantumFuelTank','QuantumFuel','43449fbd-4ea9-49a8-1ce2-ba315cb756be','','',NULL), -('149','Carryable_1H_CY_drug_stomachmedicine_1_b','Misc','UNDEFINED','2d9bac72-82ab-4ac1-8dab-678ac9d82dee','','',NULL), -('150','AEGS_Sabre_Thruster_Mav_TopFL','ManneuverThruster','JointThruster','37d14bb4-aa46-4b7e-874c-11524f942993','','',NULL), -('151','Sakura Fun Blue ORC-mkX Armor Bobblehead','Flair_Cockpit','Flair_Static','680911bf-f6c0-43c6-a65e-dec33e31eaa8','','',NULL), -('152','Personal Storage','Cargo','UNDEFINED','f123e337-4b0b-4746-89cc-0a5d4585f1e8','','',NULL), -('153','X1 Shadow Livery','Paints','UNDEFINED','a2d90b2a-7f1a-4ab9-9b02-f7f1c88be2cf','','',NULL), -('154','Mercury Star Runner Nightrunner Livery','Paints','UNDEFINED','90a87603-95e6-4024-b111-1b19507562ae','','',NULL), -('155','Flight Blade','FlightController','UNDEFINED','de18876b-533a-4cb8-9edb-1a7c9eef70b9','','',NULL), -('156','Riccite (Ore)','Cargo','Cargo','61c301c1-4bbf-4c18-8e94-8b70a160f151','','',NULL), -('157','Cambio-Lite SRT Canister','WeaponAttachment','Magazine','5ea0d020-8e9c-4a33-8fad-757651e1088d','','',NULL), -('158','Internal Tank','FuelTank','Fuel','611ee0b8-f9a7-4561-bcea-387240066d05','','',NULL), -('159','Campo Shoes','Char_Clothing_Feet','UNDEFINED','da5db419-0a58-40e3-9bce-67623e065b19','','',NULL), -('160','Door Control','ControlPanel','DoorPart','f7b09bd0-b6bf-4bc6-91d8-14fd2dcd6747','','',NULL), -('161','Molina Mold Samples','Cargo','Cargo','e0a84819-775b-445f-90f5-13d6f0dfad71','','',NULL), -('162','DockingTube_Fuel_Ports_KRIG_P52_Merlin','DockingCollar','UNDEFINED','a1690087-2907-4261-8ea2-88f4d19e9fce','','',NULL), -('163','Citadel Arms Earthwork','Armor','Arms','7dd10213-c4dd-4f18-8eb2-7242471db025','','',NULL), -('164','Carryable_TBO_FL_2SCU_Commodity_Organic_Armillaria','Cargo','Cargo','3b7414d1-44c3-4c65-a8c5-30cda0030b58','','',NULL), -('165','Seat','SeatAccess','UNDEFINED','d187f273-655c-429d-b91e-cd9e9d06cb7c','','',NULL), -('166','DRAK_Caterpillar_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','9331b167-31db-4a86-b4da-a0eb980ad014','','',NULL), -('167','Defiance Helmet (Modified)','Armor','Helmet','29b03c7a-8dbf-4411-8f2c-226266b94a31','','',NULL), -('168','RSI_Apollo_Medivac_Thruster_Retro_Nacelle','ManneuverThruster','FixedThruster','44e2093d-8aa5-b1af-fff0-8b1296bfbca2','','',NULL), -('169','Door Control','Door','UNDEFINED','b44d6e37-b11f-4263-ad7a-e18258e6d6f6','','',NULL), -('170','Nomad Foundation Fest Livery','Paints','UNDEFINED','3e819a18-bc98-4a13-9dd4-cb339853a17f','','',NULL), -('171','Door Control','Door','UNDEFINED','f8dfcf6b-cc09-4ce1-a634-50d4b88b6baf','','',NULL), -('172','ANVL_Paladin_Thruster_Vtol_right','MainThruster','UNDEFINED','d417da2d-d393-4975-b5d0-701f16951f6b','','',NULL), -('173','ORIG_350r_Thruster_Main','MainThruster','FixedThruster','890c997e-573e-4a00-bf5c-a028c6c23868','','',NULL), -('174','Inquisitor Legs Ignitor','Armor','Legs','43a9467d-e153-447f-af53-31b18cd3fbb4','','',NULL), -('175','Vehicle_Screen_MFD_Holographic_Prowler_TR','Display','UNDEFINED','db0d31f7-1555-4c1e-a036-3580640d1de4','','',NULL), -('176','TrailTuff Boots','Char_Clothing_Feet','UNDEFINED','ec4add03-cb59-4c8e-806f-341b7ea2033d','','',NULL), -('177','Flight Blade','FlightController','UNDEFINED','da03cfe3-3bba-4707-bb81-a2895f00aeff','','',NULL), -('178','Flight Blade','FlightController','UNDEFINED','d549df82-6c3a-4f8c-bdfd-d89975a30c51','','',NULL), -('179','PU_SurfaceOutpost_PowerPlant','Cargo','Small','84334675-3dea-46d6-a5f5-bce864d3f929','','',NULL), -('180','AEGS_Reclaimer_Locker_Door_R','Player','UNDEFINED','9857b10d-38aa-4a66-84dc-d3bc4d32304b','','',NULL), -('181','Door Control','ControlPanel','DoorPart','bb90e37f-c772-40ec-9080-fe7fe345ffd0','','',NULL), -('182','Silverton Jacket AA Transport','Char_Clothing_Torso_1','UNDEFINED','af8854a4-8fd8-40ea-8316-86d26bda2adb','','',NULL), -('183','Silverton Jacket AA Defense','Char_Clothing_Torso_1','UNDEFINED','99d1661c-6494-4268-8a0d-64ce04b1ca38','','',NULL), -('184','Fluorine','Cargo','Cargo','4c758aa4-1279-428c-b773-488b69bfafac','','',NULL), -('185','DRAK_Vulture_Thruster_Maneuver_Bottom','ManneuverThruster','FixedThruster','8f7c5365-5658-41f5-b363-e36428ab9d76','','',NULL), -('186','Silverton Jacket Brown','Char_Clothing_Torso_1','UNDEFINED','47fcf5a3-c00d-4a75-906b-0183f1aa32e0','','',NULL), -('187','Silverton Jacket CFP','Char_Clothing_Torso_1','UNDEFINED','5d57c2bd-3b1a-4eb1-b4fc-cb284d7ccae5','','',NULL), -('188','RSI_Aurora_CL_Thruster_Retro','MainThruster','FixedThruster','4d26bd95-3b07-438a-a9b9-b0a1bee8cffd','','',NULL), -('189','Silverton Jacket AA Collections','Char_Clothing_Torso_1','UNDEFINED','8b98c7ca-35a1-4c8e-ad7e-a24eef4d6aab','','',NULL), -('190','Ship Ammunition','Cargo','Cargo','4d9d49ee-c3a9-48b3-a1cb-e996dffe9a21','','',NULL), -('191','Door','Door','UNDEFINED','d2dd78a7-511e-43c5-b0a2-ecc056f8e642','','',NULL), -('192','Manned Turret','TurretBase','MannedTurret','a65e8a18-83bf-4999-b07b-9c2af89e7bc0','','',NULL), -('193','Door','Door','UNDEFINED','5e4ec599-274c-431d-92e1-69af7f6428bf','','',NULL), -('194','Seat','SeatAccess','UNDEFINED','d04b3c8c-36d1-4dfe-9a46-74b7d3d517d1','','',NULL), -('195','m_human_mannequin_clothing_Casaba_a18_01','ShopDisplay','UNDEFINED','dce8f823-31c7-4e93-a6c6-545c9e4b489f','','',NULL), -('196','Seat','Usable','UNDEFINED','d28e4fff-1ffc-410e-9862-0face99226ec','','',NULL), -('197','Orison T-Shirt Black','Char_Clothing_Torso_0','UNDEFINED','2203a993-73f7-4ade-95b8-4fc2039e45d2','','',NULL), -('198','XNAA_SanTokYai_Ground_Refueling_Port','Door','UNDEFINED','8733e85a-4f6c-4801-bf25-da915859fdbd','','',NULL), -('199','BANU_TachyonCannon_PowerArray_S1','WeaponAttachment','PowerArray','3085212a-53da-485a-98e6-8c207ab9705a','','',NULL), -('200','Dashboard','SeatDashboard','UNDEFINED','df5ebd6b-6ee3-4fdc-8014-b09bd096a0a4','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('201','Ana Arms Wao','Armor','Arms','5c144503-21bf-409c-808b-5119b885846d','','',NULL), -('202','Venture Legs Twilight','Armor','Legs','6de6cdd2-6087-4dbd-8a13-c950b5b572b5','','',NULL), -('203','Berry Blend Smoothie','Drink','Bottle','d4ccc36c-824f-41aa-9fa2-5012aa1f1bee','','',NULL), -('204','Internal Tank','QuantumFuelTank','QuantumFuel','e053736f-1487-4cb3-81cd-28ffc23d9c6c','','',NULL), -('205','Test_Clovis_Datapad_Clue02_4x3_Screen','Display','UNDEFINED','a314ebb0-195e-470f-a970-75785b62b08e','','',NULL), -('206','Paint_Perseus_Beige_Blue_Brown','Paints','UNDEFINED','034ea1a3-ea95-472d-bc71-3527317a7bea','','',NULL), -('207','XNAA_SanTokYai_Thruster_Mav_02_Right','ManneuverThruster','FlexThruster','65fbb0ad-90b3-4de2-a83c-64769a3c0f28','','',NULL), -('208','m_human_mannequin_ship_jacker_surv_helm','ShopDisplay','UNDEFINED','c8e4118c-2958-48b4-bd7d-01bbcea7995a','','',NULL), -('209','sc_marine_bdu_pants_01_01_01','Char_Clothing_Legs','UNDEFINED','0806aeb9-4fd5-42e9-89ba-5cda1f7a2a8a','','',NULL), -('210','Seat','SeatAccess','UNDEFINED','8240c600-fd1b-436c-abaf-b5521c523b97','','',NULL), -('211','RSI_Constellation_Phoenix_Thruster_Turbine_Front','ManneuverThruster','JointThruster','0515e9c4-4fe8-4a96-9ada-f530d233dc02','','',NULL), -('212','Table_ORIG_600i_Dining_4','Usable','UNDEFINED','9f194498-a034-4548-90c7-69001f905413','','',NULL), -('213','Ketchum Beanie Seagreen','Char_Clothing_Hat','UNDEFINED','bc050f2b-b0a3-48f0-8891-926536346507','','',NULL), -('214','Martel Dress','Char_Clothing_Torso_1','UNDEFINED','7f2e87a5-dcb3-4be5-93ed-ebb640fa7b5d','','',NULL), -('215','Door Control','ControlPanel','DoorPart','ebca738c-3b2d-45e2-9d14-ba95a6a79411','','',NULL), -('216','Defiance Arms Firestarter','Armor','Arms','4470ccc2-74ae-473c-bbf5-e6e67169982f','','',NULL), -('217','Corundum','Cargo','Cargo','cdb60e1c-0889-4c5b-8d1e-07a3d2f91cae','','',NULL), -('218','ForceFlex Undersuit Black/Orange','Armor','Undersuit','8a7b17d2-7199-4423-9afd-1740673c81d0','','',NULL), -('219','LightBlossom','PowerPlant','Power','a117d541-aa61-49fd-ae53-469b0fdf7ccd','','',NULL), -('220','MASTER_bottle_carryable_1h','Cargo','UNDEFINED','9e87c6a6-4cde-43a3-bec0-b1a5ca8df356','','',NULL), -('221','Door Control','ControlPanel','DoorPart','faedef83-c869-4297-a388-60ef776ed3d1','','',NULL), -('222','Edgewear Pants Purple','Char_Clothing_Legs','UNDEFINED','a35606af-38cb-4abc-a4c0-73db74ef0b88','','',NULL), -('223','RSI_Constellation_Andromeda_Thruster_Turbine_Front','ManneuverThruster','JointThruster','ce0b433b-8221-42e8-a969-fd97c67da844','','',NULL), -('224','WeaponMount_Gun_S1_DRAK_Cutlass_Steel','WeaponMount','WeaponControl','ec1414ad-644c-43f8-9680-65944f2de131','','',NULL), -('225','Door Control','ControlPanel','DoorPart','1a1f57cb-24c7-4b4a-92f0-41026893bcfa','','',NULL), -('226','Baru Gloves Viridian (Left Only)','Char_Clothing_Hands','UNDEFINED','ac9cf610-bde5-45a9-9f26-90b67cd76da8','','',NULL), -('227','Armor_Crate_CZ_Firerat_002','Usable','UNDEFINED','8191ec7f-ae03-400e-a274-a1cdde0630a7','','',NULL), -('228','Col_A_Airlock_Tube_Door_Double_Int_NoNav','Door','AirlockPart','a71277af-2a38-46ce-a626-51df13ac2fb0','','',NULL), -('229','DRAK_Cutter_Thruster_Addon','Misc','UNDEFINED','4af99c0c-ef18-45b6-a85a-6a78d75a32d5','','',NULL), -('230','Construction Rubble','Cargo','Cargo','65a60582-feb1-46f3-ab88-6e62c6a2517f','','',NULL), -('231','Placeholder - SPV Jacket','Char_Clothing_Torso_1','UNDEFINED','179604be-2009-49b8-a18d-8f1be7aa69b0','','',NULL), -('232','MISC_Fury_Thruster_Main_Bottom_MX','MainThruster','JointThruster','c4fafcd7-e7b1-4f23-84ec-0a17c50616fe','','',NULL), -('233','Defiance Legs Sunchaser','Armor','Legs','94beda1c-19cd-4212-ba3f-dcb497e7f911','','',NULL), -('234','Venator Boots Sleet','Char_Clothing_Feet','UNDEFINED','2f624955-b713-449b-b8f1-489b6cc4d069','','',NULL), -('235','Creese Skullsnap Jacket','Char_Clothing_Torso_1','UNDEFINED','6dcd61c2-6a3b-437e-85cc-b3c4e33c6795','','',NULL), -('236','Blood_Decal_Splatter2','Decal','DoorPart','4338280b-b7d4-4eb4-927c-f9702342bd38','','',NULL), -('237','UrbEx Boots Dawn','Char_Clothing_Feet','UNDEFINED','bc842c39-1fbd-4a65-b466-351f6ec72069','','',NULL), -('238','Door_ChipReader_Prelude_Access','Door','UNDEFINED','f29dd944-a5fe-4dd1-83cf-c661fc69ed07','','',NULL), -('239','Weapon_Rack_Cz_Firerat_005','Usable','UNDEFINED','bb22ff73-2bba-4885-9e28-e9cac1f1219c','','',NULL), -('240','Hyperion','QuantumDrive','UNDEFINED','aaf32974-612a-4287-a2ba-98f590b193a1','','',NULL), -('241','RCMBNT-PWL-1','InventoryContainer','Cargo','3836161f-d7a4-4792-b43e-2bdea8294bcc','','',NULL), -('242','Railing_Straight_4m_Lowtech_Catwalk_B','Usable','UNDEFINED','1f20b871-7e19-4435-9053-ed02f261e1a1','','',NULL), -('243','RSI_Apollo_OC_Right_Tier_1','Room','UNDEFINED','4a92b421-176a-b058-a2e8-5d5aa20183b2','','',NULL), -('244','Vesta','QuantumDrive','UNDEFINED','5d57c71c-7122-4567-86ee-0936091ee182','','',NULL), -('245','HRST_LaserScatterGun_Ventilation_S3','WeaponAttachment','Ventilation','8c862c60-1f8d-462a-a939-d58687036116','','',NULL), -('246','Hephaestanite','Cargo','Cargo','5bdc83bd-4093-4e93-994d-5f5cf056609f','','',NULL), -('247','Prim Shoes Sienna','Char_Clothing_Feet','UNDEFINED','02406d0f-eb4d-4976-8764-2cfff4c56745','','',NULL), -('248','Testudo Helmet Deathblow','Armor','Helmet','51a0c0bc-a673-42d5-bba7-9441d4b6e775','','',NULL), -('249','Helix II Mining Laser','Mining','Gun','3bcde69d-3e3a-4f78-b2cb-8189b349e4d2','','',NULL), -('250','Prowler Torchbearer Livery','Paints','UNDEFINED','c32bebb4-4519-439e-800c-604f7c902250','','',NULL), -('251','Tempo Jacket Silver','Char_Clothing_Torso_1','UNDEFINED','60f01e05-cacd-4671-8984-562760a6ad82','','',NULL), -('252','Sabre Starlight Livery','Paints','UNDEFINED','80ac0aec-d3ba-42a5-ba4e-454f313d5467','','',NULL), -('253','BR-2 Shotgun','Weapon','Medium','70fba024-7de1-4b3e-b169-256a77cc080f','','',NULL), -('254','Door Control','Door','UNDEFINED','5e8b6fc5-c23f-4d69-afb2-dcab9e01fe3a','','',NULL), -('255','ESPR_LaserCannon_Ventilation_S5','WeaponAttachment','Ventilation','de755665-7c6b-4fd6-b9df-999b58e4d53d','','',NULL), -('256','Artimex Core Canuto','Armor','Torso','3651e503-7472-4fdf-910b-9c824be497be','','',NULL), -('257','Dust Devil Armor Legs','Armor','Legs','88c0468f-9ef6-4ed1-87c2-725db632ddd2','','',NULL), -('258','Radar','Radar','MidRangeRadar','05166c08-0e57-47ca-be82-7b8aee16e831','','',NULL), -('259','SoftLock_Terminal_Standard_Starfarer_Fuel_Pods_Ship_L3','Display','UNDEFINED','507be7a1-0a1e-44e2-9e2f-ddf16e7f20c2','','',NULL), -('260','Stud','Char_Head_Piercings','UNDEFINED','31452915-0824-40c9-a180-919d0a81cd37','','',NULL), -('261','Seat','Usable','UNDEFINED','13d5bd64-0a06-4e69-ba2b-3b6adaaeb1cd','','',NULL), -('262','MISC_Starlancer_Elevator_Exterior_Gate','Door','UNDEFINED','ef9da812-8ff1-4d62-8ff8-3e231dcde497','','',NULL), -('263','Wuotan Seed','Misc','Harvestable','9b7febe0-9594-4637-941f-90b850aeef9b','','',NULL), -('264','Seat','SeatAccess','UNDEFINED','0c72fc1c-814a-424c-b410-3f54f2248d4e','','',NULL), -('265','Chiron Core','Armor','Torso','c01a3ba9-8c23-4ca2-b380-4442ae2a89de','','',NULL), -('266','Clempt Pants Orange','Char_Clothing_Legs','UNDEFINED','2238c239-5b44-4645-86db-c0e0afd6c2ee','','',NULL), -('267','Aril Backpack Red Alert','Armor','Backpack','2ffe84b3-a881-4b82-bb1d-9cbf3b1e340c','','',NULL), -('268','Door Control','Door','UNDEFINED','bcf908b2-10c8-4990-a001-087352ab10a2','','',NULL), -('269','DockingTube_Fuel_Ports_RSI_Constellation_Andromeda','DockingCollar','UNDEFINED','8e7e0363-84da-42b2-b800-c4c0ce4f974b','','',NULL), -('270','Carryable_2H_CY_container_ore_1_short_a','Misc','UNDEFINED','51c28492-977b-4f57-86a7-a2fe815294ae','','',NULL), -('271','Internal Tank','QuantumFuelTank','QuantumFuel','a9f08dfe-cb58-4d03-bb4a-decf6b02dfba','','',NULL), -('272','BEHR_LaserCannon_PowerArray_S5','WeaponAttachment','PowerArray','4e8e5fe3-5fad-4ab9-a583-c37aaa4e5693','','',NULL), -('273','XNAA_SanTokYai_Gills_Right','AttachedPart','UNDEFINED','8110a394-5f2b-495e-b733-1dd374026447','','',NULL), -('274','Flight Blade','FlightController','UNDEFINED','12d6241a-7151-4c05-ad82-316b32b0aa3c','','',NULL), -('275','Inquisitor Arms White','Armor','Arms','c4d91251-ef35-425d-ac6a-4c40f653f304','','',NULL), -('276','Tuvois Jacket Orange','Char_Clothing_Torso_1','UNDEFINED','bbad4646-c86e-43a7-b95c-bed0acb38213','','',NULL), -('277','Iron','Cargo','Cargo','026dd443-f17b-45bf-b18d-fbdef6e8c7b3','','',NULL), -('278','MISC_Starlancer_TAC_Camera_Turret','Misc','UNDEFINED','630f4a6f-514b-47ea-ba55-7bd46f1db42d','','',NULL), -('279','Gladius Frostbite Camo Livery','Paints','UNDEFINED','a6ff2516-37d6-49ee-95cf-fde3d8de85e5','','',NULL), -('280','expo_display_shirts_and_hats_argo','ShopDisplay','Default','bcd53c7f-6faf-46d5-b5e2-d90b80d46cd2','','',NULL), -('281','Weapon_Rack_1_VOLT_LMG_AmmoOnly_001','Usable','UNDEFINED','5c12aaff-1fb8-4c44-b90f-f4fdde6ac7f0','','',NULL), -('282','Scorpius Antares PHB Flight Blade','FlightController','UNDEFINED','b8ca88ad-79fe-4220-8647-8ea9b2dbd403','','',NULL), -('283','AEGS_Javelin_Xenothreat_wall','Misc','UNDEFINED','6c3681a1-a4c0-4e74-9cbd-ede8ce3fc7ce','','',NULL), -('284','Elevator Control','Door','UNDEFINED','ff7ccea6-2fc6-4669-8696-8bd7617897ee','','',NULL), -('285','TrueDef-Pro Legs','Armor','Legs','2816e88f-f39c-4187-9da3-96807712a9b9','','',NULL), -('286','Zip','Misc','Harvestable','92077314-eb31-465b-8828-8d231b85fb96','','',NULL), -('287','Door Control','Door','UNDEFINED','c340128a-af9d-4518-8f7e-b5267e576e67','','',NULL), -('288','Omnitrek Jacket Sandbar','Char_Clothing_Torso_1','UNDEFINED','779f9ff9-f023-47ee-9004-113d8183d284','','',NULL), -('289','Arclight \"Nightstalker\" Pistol','Weapon','Small','cdf93f20-7fec-4a8f-a284-09a18a1b8969','','',NULL), -('290','Creese Jacket','Char_Clothing_Torso_1','UNDEFINED','23b0a448-5c10-4f51-9b0c-5e10c4068d63','','',NULL), -('291','Morozov-SH Arms Snowdrift','Armor','Arms','5da17f91-240e-4584-8c50-d3b38fa31c89','','',NULL), -('292','Adiva Jacket Green','Char_Clothing_Torso_1','UNDEFINED','a723b4e0-f764-4fa2-89d8-b5ec82f749d3','','',NULL), -('293','AEGS_Retaliator_Thruster_Main','MainThruster','FixedThruster','854c8869-c54a-45e9-8e4b-99363eaffc90','','',NULL), -('294','Oracle Helmet Black','Armor','Helmet','0907f3f9-ef08-446f-8a0c-003876d53bf9','','',NULL), -('295','Inquisitor Legs Yellow','Armor','Legs','5134ba67-3c3c-4a72-99af-e7641c4d1a69','','',NULL), -('296','Libio Jacket Orange','Char_Clothing_Torso_1','UNDEFINED','13960fb4-de5c-4cb7-80e3-c3a273a559fc','','',NULL), -('297','Door Control','ControlPanel','DoorPart','3913f72a-ead2-46ad-97a1-6ff41f5a78c7','','',NULL), -('298','ANVL_Paladin_Thruster','ManneuverThruster','UNDEFINED','f8e24e2a-2d6f-4ddc-a878-b3bf61587954','','',NULL), -('299','Artimex Legs Red Alert','Armor','Legs','d4d203a9-5169-4b86-8b63-e169e8cbbb9d','','',NULL), -('300','JOKR_DistortionCannon_PowerArray_S2','WeaponAttachment','PowerArray','f73942ed-d8b7-4d11-9e35-68e1afd70438','','',NULL), -('301','Cyan QuikFlarePro','Weapon','Grenade','d2e37335-ba9d-429b-9854-b4d93e43e19b','','',NULL), -('302','Sol Detox Smoothie','Drink','Bottle','43f02e2a-91bd-48fa-9605-14cb1afd8ca3','','',NULL), -('303','Cirrus Boots Yellow','Char_Clothing_Feet','UNDEFINED','10d3f0ac-e8de-4200-a3c6-10582d66211a','','',NULL), -('304','Arden-SL Arms','Armor','Arms','8e429569-4dc8-4cbf-81ba-7c3dbd8e4e71','','',NULL), -('305','Degnous Root','Cargo','Cargo','f82b890a-5bd4-48f3-b099-d5da66c73345','','',NULL), -('306','Door Control','Door','UNDEFINED','657ce681-5548-40dc-a27e-144ebe639f8e','','',NULL), -('307','Davin Work Gloves Twilight','Char_Clothing_Hands','UNDEFINED','14a85a12-6635-45d2-a7aa-cf9a52ad2a1c','','',NULL), -('308','Agricium','Cargo','Cargo','541740b1-66ae-496c-a88a-cc1b0028745d','','',NULL), -('309','T.A.B.A. Container Model','Misc','Flair_Wall_Picture','9b956ea3-e7ed-46ca-85fb-18793979f70f','','',NULL), -('310','Safehab','LifeSupportGenerator','UNDEFINED','748aa523-77af-462e-93bb-4d6a4627f66b','','',NULL), -('311','Oracle Helmet Pariah','Armor','Helmet','43b057f4-38db-486b-b153-2ab4d33ce56c','','',NULL), -('312','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','49f405a8-e9e6-47b1-a091-85989d39df68','','',NULL), -('313','Nyman Jacket Orange','Char_Clothing_Torso_1','UNDEFINED','e2275ae2-6087-40ab-b3d2-69cb9d575498','','',NULL), -('314','Inmate Workpack','Armor','Backpack','80674bc3-0798-45cc-9bc0-3a46cb140f91','','',NULL), -('315','Seat','Usable','UNDEFINED','6360bc11-e3e6-4145-a080-9da53c77c90f','','',NULL), -('316','Door_Ship_Sensor_Proximity_Toggle','Sensor','DoorPart','8b13345c-5487-4db3-a4ab-924d3d430183','','',NULL), -('317','ATLS Ironside Livery','Paints','UNDEFINED','6c3eede4-e767-4ed2-a818-0bcad1afa164','','',NULL), -('318','fruit_tray_2_d','Misc','UNDEFINED','02876f36-7d58-4ec7-a1db-326bcbb5b5d2','','',NULL), -('319','Seat','SeatAccess','UNDEFINED','88993b8a-f2bc-4e00-bf27-641db90aa3d6','','',NULL), -('320','Outback Core Molehill Brown','Armor','Torso','ffe71b31-f0ab-44f3-8ee7-aa4cf91f0ded','','',NULL), -('321','Weight_Rack_Dumbbell_1_c','Misc','UNDEFINED','4ff0264d-4006-45a3-b9be-d72f11742796','','',NULL), -('322','DRAK_Cutter_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','e1fc094b-d985-4384-8e91-bdc41b615e3f','','',NULL), -('323','Kaswal Jacket Sand','Char_Clothing_Torso_1','UNDEFINED','b364b092-7cd2-4f4e-96a9-819bd9d6690c','','',NULL), -('324','Siebe Helmet Beachhead','Armor','Helmet','c42cf235-268a-407c-ba7f-e586f37ed1e2','','',NULL), -('325','MSD-212 Missile Rack ','MissileLauncher','MissileRack','b684b116-ba0d-41fb-82fb-720ecd6d4d21','','',NULL), -('326','FP_TV_Visor','Visor','UNDEFINED','17eb6935-15e3-4d9f-a862-2db6a6050146','','',NULL), -('327','Seat','Usable','UNDEFINED','8cf405d0-ae78-4336-99f2-b0931a1a69f1','','',NULL), -('328','Door','Door','UNDEFINED','14c15f96-7906-4d23-a179-64240f70577c','','',NULL), -('329','CRUS_Starlifter_SCItem_Turret_Seat_Right','Seat','UNDEFINED','f0e7b6bf-9035-4ff6-8c39-1db071ec0f8f','','',NULL), -('330','AAT-34 Turret','Turret','MannedTurret','91c95df0-082f-49c1-ae5d-e113ccf7d059','','',NULL), -('331','Revenant Gatling','Weapon','Gun','8bd04e05-8694-4f25-801f-a92c2a6b0169','','',NULL), -('332','DRAK_Caterpillar_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','9e2c12c7-e282-40fc-94c2-b5d76759ebbf','','',NULL), -('333','TRGT. STATUS','Seat','UNDEFINED','a87937c9-f96f-49a1-b384-c6e6830e7a7c','','',NULL), -('334','MacFlex Backpack Canary Yellow','Armor','Backpack','5efb60f7-0296-4f1f-8871-f4548ae67727','','',NULL), -('335','CRUS_Star_Runner_Dashboard_Pilot_Right','SeatDashboard','UNDEFINED','e37515b7-799e-48bd-a8dc-f9624c3090cf','','',NULL), -('336','DockingTube_Fuel_Ports_GRIN_STV','DockingCollar','UNDEFINED','f2b13d68-ebf6-4dfc-8a23-0e8b267ffb07','','',NULL), -('337','Revenant Pod','Cargo','Cargo','233a1be4-4ea2-4fcc-8c07-b2da47684c51','','',NULL), -('338','AEGS_Raven_CML_Flare','WeaponDefensive','CountermeasureLauncher','efaf7676-0555-4d24-bab3-41012ba98395','','',NULL), -('339','ORIG_30i_Weapon_Mount','Misc','UNDEFINED','dadb0069-0257-40a4-8d6c-07ae5cf45eac','','',NULL), -('340','H_Dashboard_Projector_HUD_VNCL_Stinger','Display','UNDEFINED','22c6ad57-6f63-4dba-8f9d-7057b3e4d610','','',NULL), -('341','MacFlex Legs Black','Armor','Legs','176870b5-382f-4ac9-aea3-672534424433','','',NULL), -('342','Ma\'s Ready to Eat Fish Home Stew','Food','Tin','e2268429-391c-49d4-93b1-2ff86a34b752','','',NULL), -('343','Pitambu','Cargo','Cargo','bbddb1be-6a54-4fb0-b435-844bb436357d','','',NULL), -('344','Internal Tank','FuelTank','Fuel','8dcf0acf-25d1-4995-9514-e091e138d3d3','','',NULL), -('345','Corsair Eternity Livery','Paints','UNDEFINED','d0a4999e-18c4-4bf0-b7ab-0bd6ac08dc39','','',NULL), -('346','Strata Arms Lodestar','Armor','Arms','ac489d5c-a45b-4b1d-ad5d-4d51d6083a76','','',NULL), -('347','Seat','Usable','UNDEFINED','3d5a13ee-c1fa-46a9-8668-acf6454ff960','','',NULL), -('348','Door','Door','UNDEFINED','f2ef063b-a030-402a-b2ee-6530792a85e5','','',NULL), -('349','Seat','SeatAccess','UNDEFINED','4a8a6d1b-c1fa-4367-9e91-25661fdb151a','','',NULL), -('350','Ht_AirlockDoorPanelScreen_Fake','Misc','UNDEFINED','bf0daaf3-7425-4aee-8c46-590be5c09cbb','','',NULL), -('351','IndVest Jacket Imperial','Char_Clothing_Torso_1','UNDEFINED','a74f9666-f7d4-4e21-abed-400174af6d93','','',NULL), -('352','UNE Gold Ingot (Damaged)','Misc','UNDEFINED','75108e51-f04e-4f9a-a5e2-0dfbdf513728','','',NULL), -('353','Access','SeatAccess','UNDEFINED','74678286-b084-4a0c-bbe4-5bcb7714d0a9','','',NULL), -('354','F55 \"Mark I\" LMG','Weapon','Medium','8260cda3-1bbf-4f0e-9162-0bd921b5ff4d','','',NULL), -('355','Internal Tank','QuantumFuelTank','QuantumFuel','9815d0b9-cf92-47f7-9ad7-b87c6067b3c2','','',NULL), -('356','ANVL_F7CR_Mk2_LeftAntenna','Misc','UNDEFINED','3a80ec3f-7d3d-442a-8b0c-4bcc8ccc1d3c','','',NULL), -('357','Overlord Arms Mirador','Armor','Arms','2a76ac41-a1e3-4b66-97f9-b829c7d7140a','','',NULL), -('358','Amioshi Plague','Cargo','Cargo','b6e11c93-537a-4d86-bb70-53c03f5bf8e1','','',NULL), -('359','Lillo Pants Red','Char_Clothing_Legs','UNDEFINED','f9394ae7-6eab-4f45-b4c0-4bd6a10f2890','','',NULL), -('360','Carryable_1H_CY_party_canape_1_a','Misc','UNDEFINED','1359393f-1274-4e26-8342-9a39047b9a6f','','',NULL), -('361','ARMR_AEGS_Vanguard_Sentinel','Armor','Medium','4a07a7bf-bc94-4f41-9a0b-7ee58fb7c008','','',NULL), -('362','ARGO_MPUV_Thruster_Aux_Fixed_Front_03','ManneuverThruster','FixedThruster','4f0e0b30-404a-4f0c-a194-8681d77ada45','','',NULL), -('363','HRST_LaserRepeater_FiringMechanism_S3_Storm','WeaponAttachment','FiringMechanism','e1f8b67e-9f79-4133-b5c6-568a4465bd33','','',NULL), -('364','AEGS_Door_Decal_WallPanel_04','Decal','DoorPart','8ad2bd48-791a-4e81-89e8-41df54650011','','',NULL), -('365','Li-Tok Boots Red','Char_Clothing_Feet','UNDEFINED','866ee36e-eb00-4978-9f10-30d211168cdb','','',NULL), -('366','TMSB-5 Gimbal Mount','Turret','GunTurret','fbccf8e2-2085-48c3-bfa8-00226450636d','','',NULL), -('367','Novikov Backpack Crush','Armor','Backpack','eeaec661-8544-4554-947a-e685fbe6c418','','',NULL), -('368','Novikov Backpack Smolder','Armor','Backpack','855aabae-2c59-4a79-9e81-0376f9ddc7f6','','',NULL), -('369','Novikov Backpack','Armor','Backpack','6eec764f-f5df-4760-90bc-594c8c16fa86','','',NULL), -('370','ARMR_AEGS_Vanguard','Armor','Medium','e3f09e0c-909b-4c0c-bcc6-bc4750122594','','',NULL), -('371','Util_A_Airlock_Door_Ext','Door','AirlockPart','5f5031c2-5f96-4f40-a905-a4627acce93a','','',NULL), -('372','Sustenance_CoffeeMachine_Lorville_Habitat','Cargo','UNDEFINED','3b48df9e-3f33-4f6e-941b-dff2c8fe639e','','',NULL), -('373','DRAK_Clipper_Thruster_Main_Aux_Left','MainThruster','UNDEFINED','e3ee0fba-07e2-438c-98ce-d9c99a7db33a','','',NULL), -('374','Soy Sauce','Misc','UNDEFINED','1d92bb81-eabe-4dab-bf6e-756f008da13d','','',NULL), -('375','Door Control','Door','UNDEFINED','82e3fef6-d6b2-413c-ac7d-ef592ba9b3cc','','',NULL), -('376','Door Control','Usable','UNDEFINED','247e4bf9-c7e3-4429-b7b3-c2159851adcc','','',NULL), -('377','Missile Rack','MissileLauncher','MissileRack','1c31e0ae-b8d4-47b9-ae5b-ad37a6fe04f3','','',NULL), -('378','Day of the Vara \'54 Coin','Misc','Utility','41c588af-d711-40e6-b720-0cab6dbe46bb','','',NULL), -('379','ORIG_85X_Thruster_Mav_Fixed_03_Right','ManneuverThruster','FixedThruster','7380eb71-68de-4087-b92c-187fb8af3c7b','','',NULL), -('380','Deadhead Helmet','Armor','Helmet','b6113018-f3d2-4ae2-982d-0ef420c74994','','',NULL), -('381','Sadaryx','Misc','Harvestable','51b456cd-e73e-42a8-b36e-0bf6fbe29ce6','','',NULL), -('382','Highball Glass','Drink','UNDEFINED','8edc4608-96df-46be-b234-8373fb5a9101','','',NULL), -('383','Ares Star Fighter Meridian Livery','Paints','UNDEFINED','8ee4ed66-24ed-46e5-934a-c1ccf1e2e9d2','','',NULL), -('384','RSI_Aurora_MR_Thruster_Mav_Joint_01','ManneuverThruster','JointThruster','b067d76a-ea8e-49a3-988c-580aa23c90c3','','',NULL), -('385','P4-AR Magazine (40 cap)','WeaponAttachment','Magazine','1f8845fb-22de-4c73-b6e6-ed1d1b066808','','',NULL), -('386','Savrilium','Cargo','Cargo','e6876bf2-5675-4f62-b692-26a94113d962','','',NULL), -('387','Asgard Best in Show 2955 Livery','Paints','UNDEFINED','21e8ead3-4020-4bee-a941-5913f12a7ee9','','',NULL), -('388','Starlancer Mojave Livery','Paints','UNDEFINED','24e50568-f7c9-47e4-870e-33e6ccff4346','','',NULL), -('389','Strata Helmet microTech Black','Armor','Helmet','93e88edf-36cf-445b-a266-832c78cf9394','','',NULL), -('390','Flight Blade','FlightController','UNDEFINED','91dd0aa2-fe69-4721-a55c-bdc54367a50e','','',NULL), -('391','Thorshu Grey','Misc','UNDEFINED','58401159-8339-4e4c-828e-c8765a6faeed','','',NULL), -('392','ARMR_DRAK_Herald','Armor','Medium','91644944-44d9-486c-9141-fb4909f7ee10','','',NULL), -('393','MASTER_screen_16x9_4_0144x0081_a','Display','UNDEFINED','bb6166b5-711f-44dd-80bb-d9e4238c7579','','',NULL), -('394','Internal Tank','FuelTank','Fuel','285b8cc7-7683-4408-9135-f7d8001020c5','','',NULL), -('395','Inquisitor Arms Earthwork','Armor','Arms','fdb9bd1a-236f-4d0f-93e7-8b6a410838d4','','',NULL), -('396','Helium','Cargo','Cargo','22fa378d-3bb5-427d-b597-ba113343af00','','',NULL), -('397','Table_Booth_4_Seat_rdwn_a','Usable','UNDEFINED','de1a6233-9a3c-48ce-bca0-bfcba2308ed6','','',NULL), -('398','Door Control','Door','UNDEFINED','e4240d06-5a8c-4dde-b47f-9f8ea9667994','','',NULL), -('399','mod_tray_hotdog_1_b','ShopDisplay','Default','4d71778f-2c5f-4fe8-9e84-7ee00a650e4e','','',NULL), -('400','Silco Shirt Calypso','Char_Clothing_Torso_0','UNDEFINED','9e5e8be5-5b9e-4a72-b228-b7e456cade33','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('401','Bed','Usable','UNDEFINED','aecc7ab0-b0a1-47f8-8386-4bfb3efe654e','','',NULL), -('402','Door Control','Door','UNDEFINED','7d1e3bfb-0f1e-42eb-9807-25621a8a8534','','',NULL), -('403','Internal Tank','QuantumFuelTank','QuantumFuel','cf5f8095-85f9-478d-9dd9-ef2cfa823546','','',NULL), -('404','Apollo Tier 2 Module Right','Module','UNDEFINED','4f374a14-98ec-5481-2c07-dd369c257dbe','','',NULL), -('405','Seat','Usable','UNDEFINED','47f470c4-ca27-4749-a12a-228760b976c0','','',NULL), -('406','\'Chaos\' III Missile','Missile','Missile','d4408421-e939-4e34-9902-0644fa6934be','','',NULL), -('407','Hydrogen Fuel','Cargo','Cargo','61cace6e-5870-44ff-ae79-c8d06a635e52','','',NULL), -('408','Avenger Titan PHB Flight Blade','FlightController','UNDEFINED','5428d0f1-4580-430d-aed0-bfde5074aa4f','','',NULL), -('409','Anvl_Carrack_Cargopod','Door','UNDEFINED','3230a2db-ef48-4377-ba10-d72d46f7c161','','',NULL), -('410','Glass_Alcohol','Misc','UNDEFINED','51ca26c2-307e-406d-9dbb-3578ea6ba372','','',NULL), -('411','Flight Blade','FlightController','UNDEFINED','d20c0a8b-075b-4835-ae3a-740f4ceed137','','',NULL), -('412','Fhaal Fire Kacho','Food','Box','d286214d-fa11-4ee5-97e3-8dcac74987e9','','',NULL), -('413','Harlowe Shirt Olive','Char_Clothing_Torso_0','UNDEFINED','7294b67f-ecbb-4c85-8654-bf97491a1446','','',NULL), -('414','DoorProximitySensor_3x5x3_Directional_Proximity','Sensor','DoorPart','237e390e-79cf-487e-9309-ec8dd6912b96','','',NULL), -('415','Book','Misc','UNDEFINED','511b1818-8bbd-49d1-b036-32f01d8298ac','','',NULL), -('416','Book','Misc','UNDEFINED','504cbea5-06f3-4fef-9550-996efc595306','','',NULL), -('417','Bantam Hat Badger Bad','Char_Clothing_Hat','UNDEFINED','73bd98d8-8d41-4ff2-8234-375bc9fb72f6','','',NULL), -('418','Hull C Bombora Livery','Paints','UNDEFINED','6aa081c4-10e5-4137-b695-bc7d981bd9e2','','',NULL), -('419','Scourge \"Desert Shadow\" Railgun','Weapon','Large','35e6ac2c-6734-47d7-bc9a-b7e5084dc48e','','',NULL), -('420','Samya Tank Moss','Char_Clothing_Torso_0','UNDEFINED','f8502628-b8f3-40ec-8cd6-879d894d7d05','','',NULL), -('421','Bexalite (Raw)','Cargo','Cargo','09dc9bcf-d779-47bf-aab7-e3ed2b4af523','','',NULL), -('422','DynaFlex','Cargo','Cargo','891e91fd-2203-445c-9b8e-43a86314c6f6','','',NULL), -('423','Seat','Usable','UNDEFINED','bdff613b-5ab7-4401-8262-0e22954770a3','','',NULL), -('424','Carryable_1H_CY_utensil_muddler_1_a','Misc','UNDEFINED','221601d6-bdf4-4bb4-8c26-6670d4c586a0','','',NULL), -('425','Seat','SeatAccess','UNDEFINED','f6f90f04-b5f5-46dd-aaa4-cc9c567ec4e0','','',NULL), -('426','sc_nvy_bdu_longsleeve_shirt_01_01_01','Char_Clothing_Torso_1','UNDEFINED','553356b7-b384-482e-b488-294637ce5125','','',NULL), -('427','m_human_mannequin_rsi_suit_06','ShopDisplay','UNDEFINED','c3c39bff-ce53-4cc6-a6ef-b1d7066b79c1','','',NULL), -('428','MSD-543 Missile Rack','MissileLauncher','MissileRack','d352d236-fd73-4e99-8cc9-83aa4967dac1','','',NULL), -('429','Laranite','Cargo','Cargo','8b9da2ec-91c4-4342-8609-150923aa8e59','','',NULL), -('430','Azrael Helmet Sapphire','Armor','Helmet','d6a33301-c34f-44a3-b6ee-cb85fb0f7776','','',NULL), -('431','Anvil Noise Launcher','WeaponDefensive','CountermeasureLauncher','9d0c3815-be70-4370-99a6-c2418bca729d','','',NULL), -('432','Seat','SeatAccess','UNDEFINED','5d870810-6c80-4c27-bce1-6a967c0e53ba','','',NULL), -('433','Tempus Tank Charcoal','Char_Clothing_Torso_0','UNDEFINED','5fdf0c0b-02b5-425a-b966-1ec2b3480f32','','',NULL), -('434','SCItemDisplayScreen_ATLS_ScreenCoverRight','Display','Default','b92ab2ec-e4c9-4e0e-989a-04e1f2f58b6b','','',NULL), -('435','ATLS Lionheart Livery','Paints','UNDEFINED','3a5851bc-9f28-43ad-9ad9-de0fcafcd497','','',NULL), -('436','HexaPolyMesh Coating','Cargo','Cargo','bb86e32a-8807-48ed-a72d-8a8028ad138e','','',NULL), -('437','Venture Arms Black','Armor','Arms','be4c4b4d-c544-451e-b0c3-509f72aa2723','','',NULL), -('438','C4-163f S5 Hornet Mk I Ball Turret','Turret','BallTurret','a68472d0-ba22-4fd9-9287-10bdc6c0fe08','','',NULL), -('439','Cutter Citizens for Prosperity Garnet Livery','Paints','UNDEFINED','a1441184-5bd9-4f11-b2dd-84f7c318e83b','','',NULL), -('440','PAB-1 Arms Tan','Armor','Arms','37bbda5f-0657-4ed7-b01b-a00e827f3640','','',NULL), -('441','PT3 \"Deadfall\" (3x Holographic)','WeaponAttachment','IronSight','01828239-6f9b-40a0-80ff-a3dc6370c526','','',NULL), -('442','ANVL_Paladin_Thruster_Main','MainThruster','UNDEFINED','e88e0302-be74-45d3-a691-ad5c3e11ff95','','',NULL), -('443','Soap','Misc','UNDEFINED','1ba2c508-4aa7-4ec9-a2a7-cf816be79180','','',NULL), -('444','ARGO_CSV_Cargo_Rack','Container','Cargo','22f1635d-e7fb-4591-a995-809d1ab0176c','','',NULL), -('445','Ponos Boots Purple','Char_Clothing_Feet','UNDEFINED','40dc3e8d-eccf-4baf-b605-07b27749c862','','',NULL), -('446','Luminalia Mug','Drink','UNDEFINED','c6b9bf98-f832-4903-867a-7ec195222d7c','','',NULL), -('447','Book','Misc','UNDEFINED','3453c659-d16d-425b-af75-d72a8810efae','','',NULL), -('448','Door Control','ControlPanel','DoorPart','46d26849-aa3d-4fe6-b24e-931268d29d0e','','',NULL), -('449','Avenger Deck the Hull Livery','Paints','UNDEFINED','c5c76216-d192-40c3-a373-fe03800b5465','','',NULL), -('450','Nitrogen','Cargo','Cargo','35186e00-739c-493d-ab7d-d22aa9eba2df','','',NULL), -('451','shelf_02_a_02x007x00375_2ports','ShopDisplay','Default','d540cfe2-6e6e-41d7-bbf2-31def8c5291c','','',NULL), -('452','Kino Shoes Black','Char_Clothing_Feet','UNDEFINED','d85011cb-e47b-476c-95b5-ac3e2a1314f9','','',NULL), -('453','Vehicle_Screen_MFD_Holographic_ORIG_X1_L','Display','UNDEFINED','a99ca937-34a3-4fc3-8588-abfcfc02456f','','',NULL), -('454','Seat','SeatAccess','UNDEFINED','c1813d44-d05b-4db3-b132-2f7f87606869','','',NULL), -('455','Talon Cobalt Livery','Paints','UNDEFINED','5b31eacf-b3dd-492c-acd3-c1b3d0adfdb5','','',NULL), -('456','Flight Blade','FlightController','UNDEFINED','d6659a00-5612-4d7c-98ed-371541e698b6','','',NULL), -('457','GAMA_Syulen_Headlight_Right','Misc','UNDEFINED','582568b7-79c2-4ad4-8cfe-93644b6cbf01','','',NULL), -('458','VariPuck S6 Gimbal Mount','Turret','GunTurret','baa24284-b180-4dcb-a08f-2b279e4e7109','','',NULL), -('459','DRAK_Cutter_Winglets_Expo_Right','Misc','UNDEFINED','e81b8b5c-cd60-4682-8839-f0103742aa69','','',NULL), -('460','Testudo Helmet Nightveil','Armor','Helmet','59814847-c7a3-4744-a40c-2496e9c2f7d9','','',NULL), -('461','Shipment','Misc','UNDEFINED','43043529-76d5-4f8e-bcec-c3298195abc8','','',NULL), -('462','Door','Door','UNDEFINED','daf0758d-f019-421c-afac-f9bb535500ec','','',NULL), -('463','XIAN_Scout_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','87f0b19e-bf34-4565-9ea3-e4bd4bc05d67','','',NULL), -('464','Sorel Hat','Char_Clothing_Hat','UNDEFINED','5d17f852-84fb-411a-b784-27f94c82884a','','',NULL), -('465','EX-T10-EM \"Executor\" Torpedo','Missile','Torpedo','2745623e-6ff5-4191-b95b-46c1dfbce795','','',NULL), -('466','Edgewear Pants Blue','Char_Clothing_Legs','UNDEFINED','98385d8b-5d09-4195-9b44-e6c850fe4651','','',NULL), -('467','Argus Helmet Black/Gold/Silver','Armor','Helmet','3acf51a4-9e8f-406f-a857-7ecd3b53e1c0','','',NULL), -('468','DynaFlex','Cargo','Cargo','2f4816cd-79af-4479-92ab-ac14f25ce95e','','',NULL), -('469','Hunter','Radar','MidRangeRadar','ddc4c394-da22-4ecf-8df9-30db6edc7535','','',NULL), -('470','Keystone Jacket Onyx','Char_Clothing_Torso_1','UNDEFINED','0282627a-aeea-4c64-ac18-3afc7e27a2af','','',NULL), -('471','Mivaldi Pants Sienna','Char_Clothing_Legs','UNDEFINED','c49230b7-fb17-49d4-85bf-3006284a399d','','',NULL), -('472','Horizon Helmet Aqua','Armor','Helmet','d748b325-21bb-49a4-9cbf-fbdd56eddf74','','',NULL), -('473','Copper','Cargo','Cargo','5d553a61-3f15-4219-8065-3c7587323f26','','',NULL), -('474','Quartz','Cargo','Cargo','fbb353b5-058d-4929-aece-dba5f395b848','','',NULL), -('475','Bexalite','Cargo','Cargo','51d8d642-f0e4-4d98-9ce7-e9d4c25a109e','','',NULL), -('476','Internal Tank','QuantumFuelTank','QuantumFuel','d7b1baa2-41a0-46d4-8a2e-3143417dfc9a','','',NULL), -('477','Food_bowl_cereal_01_c','Food','Consumable','28b87f18-4a63-4f22-b6a8-4b39ca76c07c','','',NULL), -('478','SHIELDS','ShieldController','UNDEFINED','c39d6c9e-cf8b-4d87-91dc-da1fbe2b0109','','',NULL), -('479','KRON_LaserCannon_FiringMechanism_S2','WeaponAttachment','FiringMechanism','5bccf5df-dd6d-496b-8845-452782ef2dd7','','',NULL), -('480','FBL-8a Legs Desert Digital','Armor','Legs','0eb8f884-d644-4c26-af5b-ec91b88b732c','','',NULL), -('481','Seat','SeatAccess','UNDEFINED','d698096f-2a5d-47e9-b41b-e968977a1d44','','',NULL), -('482','VNCL_Gen2_PlasmaCannon_Barrel_S4','WeaponAttachment','Barrel','79b7ca4a-27b1-45f2-b62c-631d47a46a9d','','',NULL), -('483','INTK_RSI_Aurora_MR','FuelIntake','Fuel','b34c21ff-7eee-41f9-967a-0acc0cadcafa','','',NULL), -('484','Second Tevarin War Red Dress Trousers','Char_Clothing_Legs','UNDEFINED','9fb2d174-c31d-4cf7-888f-863ba6f9bbe7','','',NULL), -('485','PAB-1 Legs Dark Red','Armor','Legs','be1669d9-4b51-4971-8cbe-6828201c2916','','',NULL), -('486','Lastaprene','Cargo','Cargo','8621467b-12fd-4d84-a2d1-e846be942f7f','','',NULL), -('487','Radar_Display_Screen_GroundVehicle','Display','UNDEFINED','ba184544-d9e8-44e5-98f7-2f86d91ea56a','','',NULL), -('488','Meteor Disco Livery','Paints','UNDEFINED','977be180-d7f3-4863-9d63-2abaa2092ce6','','',NULL), -('489','MISC_Hull_C_CargoGrid','CargoGrid','UNDEFINED','683b73dc-cf13-41cd-896c-95c1ed9ab540','','',NULL), -('490','Argon','Cargo','Cargo','e675a2c1-d6e4-4f9d-bbc2-d857dcfbb471','','',NULL), -('491','Door Control','ControlPanel','DoorPart','4089acae-adfc-4a4f-ac15-65eb43dbf4c2','','',NULL), -('492','display_components_noGeo_01Port_s00','ShopDisplay','UNDEFINED','2af77ccf-8e37-49fe-b22f-d4e0de9b4ebf','','',NULL), -('493','Caterpillar Ghoulish Green Livery','Paints','UNDEFINED','2379b054-ef12-418f-aa22-e966ed30f5c5','','',NULL), -('494','Antium Helmet Moss Camo ','Armor','Helmet','f0139701-4e14-46c1-a92a-e79a768dc788','','',NULL), -('495','S71 \"Scorched\" Rifle','Weapon','Medium','815ce494-7d37-4879-8336-38054db71e6e','','',NULL), -('496','Internal Tank','QuantumFuelTank','QuantumFuel','2e1bc0c4-a1e2-42d5-bfa0-ca1861858024','','',NULL), -('497','ControlPanel_LightSwitch_CRUS','ControlPanel','DoorPart','3a62e261-bc25-45ff-9801-7fb1141fb6cb','','',NULL), -('498','Access','SeatAccess','UNDEFINED','ec7784a8-ee2f-4cec-a7f8-78b1986439a4','','',NULL), -('499','Seat','SeatAccess','UNDEFINED','000ec670-7acc-4771-b567-7c939d2a80c0','','',NULL), -('500','Irradiated Valakkar Pearl (Grade AA)','Misc','Harvestable','e738c605-8ef7-4238-8170-5db0c4c9c15d','E','',NULL), -('501','TRGT. STATUS','Seat','UNDEFINED','d15e4e6b-8843-4e9e-9f6c-65fe51c6eef3','','',NULL), -('502','SureGrip PR-S2 Tractor Beam','TractorBeam','UNDEFINED','93e4822f-6e58-4613-82e9-800dedc9419a','','',NULL), -('503','Ecouter','Radar','MidRangeRadar','b0ccd135-4424-417c-95e4-594a88d9b72f','','',NULL), -('504','Osoian Hides','Cargo','Cargo','5a5ef908-3355-4ad5-ae58-dbdec03fdce5','','',NULL), -('505','Morozov-SH-S Helmet Vesper','Armor','Helmet','f2869fa0-1149-4b35-bab5-b51b1291f3ed','','',NULL), -('506','BEHR_LaserCannon_Barrel_S1','WeaponAttachment','Barrel','fe270585-b84f-4e4a-ae6b-b4b8d0cc7b82','','',NULL), -('507','Medical Bed','Usable','UNDEFINED','d246e2e1-a0f6-4e6b-8d99-8a1a2847a7e2','','',NULL), -('508','Legion Jacket','Char_Clothing_Torso_1','UNDEFINED','9c478af1-acfd-4e88-b065-c5ebeb05f507','','',NULL), -('509','Carryable_TBO_FL_32SCU_Commodity_ProcessedGoods_ElectronicsEquipment','Cargo','Cargo','82af2464-d1f5-4f59-ae83-3f4ac7d09495','','',NULL), -('510','Internal Tank','QuantumFuelTank','QuantumFuel','1437f503-9da7-4a37-bacf-a40719cd1036','','',NULL), -('511','Freeze','Cargo','Cargo','67b794fe-a029-45a2-83c4-31dd44ca387f','','',NULL), -('512','MISC_Reliant_Thruster_Mav_Fixed_Lateral','ManneuverThruster','FixedThruster','96edd8d6-3483-4d5f-b781-9f9e3825699b','','',NULL), -('513','StorageCage_Quantum_Empty','Cargo','UNDEFINED','0a3ce096-9ba4-44e9-b1f2-02e51eda45cd','','',NULL), -('514','ESPR_Prowler_Thruster_Mav_Up_Utility','ManneuverThruster','UNDEFINED','1f872a81-3ee5-4edf-8d5c-d85f6d9d3632','','',NULL), -('515','Seat','SeatAccess','UNDEFINED','45304879-94d9-4558-ad18-a2b0486584d2','','',NULL), -('516','AEGS_Retaliator_CargoGrid_Front','CargoGrid','UNDEFINED','7731b234-9a33-4089-9ecf-28b380e5e7d3','','',NULL), -('517','TrueDef-Pro Arms Black/Silver','Armor','Arms','0871980a-5ee0-400a-a228-ec370e3bc229','','',NULL), -('518','Internal Tank','QuantumFuelTank','QuantumFuel','b82b688d-34be-4c3a-8e96-6568f57f5a5b','','',NULL), -('519','Paint_Mantis_Procyon','Paints','UNDEFINED','dbbbc9e6-5c3f-4398-beac-32b6251e7959','','',NULL), -('520','Vehicle_Screen_MFD_Holographic_ORIG_300i_TL','Display','UNDEFINED','3375d7d3-98f2-4371-acf4-f7e3640c8ef9','','',NULL), -('521','BEHR_BallisticGatling_Ventilation_S6','WeaponAttachment','Ventilation','3260477b-ff8a-43a4-81bd-7f60323cc6c0','','',NULL), -('522','Good Enough Shirt Brown','Char_Clothing_Torso_0','UNDEFINED','20bceacc-3353-4009-a575-fdd2a75da905','','',NULL), -('523','Aurora Mk I Record Breaker Livery','Paints','UNDEFINED','5b9005f4-bc58-49bd-98a2-c6d2535580a5','','',NULL), -('524','Radar_Display_Starlancer_Turret','Display','UNDEFINED','650079b7-29c4-4980-b36e-2726099fdb27','','',NULL), -('525','Horde Jacket','Char_Clothing_Torso_1','UNDEFINED','e87b0230-efaf-4719-a8ac-de98b3b7c576','','',NULL), -('526','RAFT ArcCorp Livery','Paints','UNDEFINED','adf07b12-f8d6-4baa-ab12-c5788e43e68a','','',NULL), -('527','Molina Mold Treatment','Cargo','Cargo','edd8e509-a5bf-4f23-8b37-b4b6ce8a78d4','','',NULL), -('528','BANU_TachyonCannon_PowerArray_S3','WeaponAttachment','PowerArray','b434af83-1dbe-4466-b9a5-e7dbc5a18db7','','',NULL), -('529','VariPuck S4 Gimbal Mount','Turret','GunTurret','0bff5ad1-931a-4d4d-83b9-a312b1404a97','','',NULL), -('530','ThermoWeave Hood','Char_Clothing_Hat','UNDEFINED','e3026bc6-e2f8-429e-8f07-acc929ff68e2','','',NULL), -('531','Venture Core \"Rust Society\"','Armor','Torso','c4eeae4b-e239-4ce2-bfb9-322e64ad4746','','',NULL), -('532','Seat','Usable','UNDEFINED','a691524e-ad58-43ff-b383-bb16d8134059','','',NULL), -('533','Carbon-Silk','Cargo','Cargo','55a58048-0678-4de1-99bf-cd8e28d641d5','','',NULL), -('534','Tempo Jacket Purple','Char_Clothing_Torso_1','UNDEFINED','dd1865f0-7246-4206-b5f4-3ce0481f08d2','','',NULL), -('535','Morozov-SH-I Legs Pyrotechnic','Armor','Legs','a9023a85-9ccd-4576-9c14-0302d3f1422e','','',NULL), -('536','DRAK_Cutlass_Steel_Thruster_Maneuver','ManneuverThruster','JointThruster','b3f25f3d-08df-4ea6-9094-f953dc739d0d','','',NULL), -('537','Torreto Pants Dark Blue','Char_Clothing_Legs','UNDEFINED','c2f17b28-eb6a-4f3c-8105-7057b7da91f3','','',NULL), -('538','DockingTube_Fuel_Ports_ANVL_Arrow','DockingCollar','UNDEFINED','42fc35ba-7c25-4d02-914a-041849e969af','','',NULL), -('539','Railing_Straight_5m_Hurston_Lorville_Glass_A','Usable','UNDEFINED','ea29e0fe-a231-48c4-9056-d01703dc3281','','',NULL), -('540','Ursa Deck the Hull Livery','Paints','UNDEFINED','5114824e-5a3a-4708-b7ac-1e8a6d892667','','',NULL), -('541','Ketchum Beanie Yellow','Char_Clothing_Hat','UNDEFINED','fbe1f014-022e-496d-ac0e-e754851cbf54','','',NULL), -('542','Weapon_Rack_1_GMNI_Rifle_Common_001','Usable','UNDEFINED','af8e391a-cb75-478f-a514-6abe8740f7a1','','',NULL), -('543','MISC_Starlancer_Thruster_Mav','ManneuverThruster','FixedThruster','fdeba729-2913-4625-8887-afc2ddc040ac','','',NULL), -('544','CNOU_Mustang_Cargo_Box_Fake','Cargo','UNDEFINED','093e108b-111a-4106-8bf2-b6666d02eb0a','','',NULL), -('545','Defiance Arms Desert','Armor','Arms','6421ce8b-3b88-4f1e-bdaa-5a81f4890ad4','','',NULL), -('546','TRGT. STATUS','Seat','UNDEFINED','452d3ec0-34c8-4c7a-917a-384df30d5385','','',NULL), -('547','behr_ltp_01_primed','FPS_Deployable','Small','653d84a2-123b-4993-93b1-5550182e9542','','',NULL), -('548','ForceFlex Undersuit Wood Camo','Armor','Undersuit','946e31c8-edc1-44fb-9e86-200ae3ca6709','','',NULL), -('549','Aurora Mk I Dread Pirate Livery','Paints','UNDEFINED','b19bcc93-5294-4f62-b93c-b060b9e3be46','','',NULL), -('550','Tulsi Jacket Olive','Char_Clothing_Torso_1','UNDEFINED','63094b13-3ef8-45bd-aa34-4b6c36eff5ce','','',NULL), -('551','Heart of the Woods','Cargo','Cargo','dccf6070-9b38-4189-b9c9-e9e65a602c58','','',NULL), -('552','Drake Cutlass Steel Remote Turret','Turret','TopTurret','f3c73f6d-f497-4f21-a5b5-cef56d52ae96','','',NULL), -('553','Strata Helmet Shooting Star','Armor','Helmet','7d2d71de-993f-4a41-aeef-fcb431962974','','',NULL), -('554','BR-2 Shotgun','Weapon','Medium','b2a41e82-ae28-4c40-b8c1-6551f46a44c0','','',NULL), -('555','CNOU_Nomad_Component_Shield','Player','UNDEFINED','ffb6f3f4-f109-40e8-a11c-da26a4db9142','','',NULL), -('556','Devastator Shotgun','Weapon','Medium','e5b42569-10da-40a5-a16f-497f5b84cf3c','','',NULL), -('557','Seat','SeatAccess','UNDEFINED','31df4d70-2084-40c7-9712-0790e242da82','','',NULL), -('558','Carryable_1H_CY_utensil_rimmer_1_a','Misc','UNDEFINED','d9fe8e0c-3ddf-4076-a001-9cf7cbefc722','','',NULL), -('559','MISC_Reliant_Seat_Bed_Lower','Seat','UNDEFINED','ea6f450e-92a8-4418-84e1-154521bf09e4','','',NULL), -('560','Turret','Turret','BallTurret','09196459-f7ba-4423-af45-da8865736cb6','','',NULL), -('561','Reliant Tana Missile Launcher','MissileLauncher','MissileRack','d4cb1e57-fe95-48b8-b8ee-844c4344a7e2','','',NULL), -('562','Door Control','ControlPanel','DoorPart','d91842dd-4fdc-4c5e-a793-1185cf03779c','','',NULL), -('563','Venture Arms Executive','Armor','Arms','fd4178cb-4716-40f4-a97a-cc3f7c19e36e','','',NULL), -('564','Reclaimed Water','Drink','Bottle','1329c84c-61be-46f0-a4bc-3eafe496d8a3','','',NULL), -('565','Badami Gloves Deadwood','Char_Clothing_Hands','UNDEFINED','dcdd9be5-3fac-42c1-bf33-fe77c3291e63','','',NULL), -('566','ht_table_booth_1_a','Usable','UNDEFINED','589e41e9-40ea-4ae1-bdb5-5c96270773b2','','',NULL), -('567','Flight Blade','FlightController','UNDEFINED','aec88430-bbb3-4651-b428-141fba113eb7','','',NULL), -('568','Badami Gloves Graphite','Char_Clothing_Hands','UNDEFINED','621b11aa-8e95-4536-a40a-5792e7abbc5e','','',NULL), -('569','Badami Gloves Olivine','Char_Clothing_Hands','UNDEFINED','2eb29dba-ada5-48ff-b88b-8634a64d0a63','','',NULL), -('570','FBL-8a Arms (Modified)','Armor','Arms','b43b2149-0059-4063-a9f6-67d4ec7ec9f9','','',NULL), -('571','Weapon_Rack_1_Volt_Rifle_Uncommon_002','Usable','UNDEFINED','d351d583-d503-4232-8e56-52b2c40b52e7','','',NULL), -('572','ComfortAir Max','LifeSupportGenerator','UNDEFINED','6d7adf8f-332e-41dd-820d-f32fc5038ba8','','',NULL), -('573','ForceFlex Undersuit Forest Digi','Armor','Undersuit','880a7e7e-2cb9-4a73-950d-9e0aab28d9c6','','',NULL), -('574','Ball','Char_Head_Piercings','UNDEFINED','54258cd5-c5e6-487b-99dc-97aa88eb9506','','',NULL), -('575','ORIG_600_CargoGrid_Module_Small','CargoGrid','UNDEFINED','e950b966-17a0-4961-ade3-c56438853ca1','','',NULL), -('576','expo_display_shirts_and_hats_rsi','ShopDisplay','Default','910a4da1-34bb-44ee-9feb-53bc4aeebe39','','',NULL), -('577','Bengal_BallisticGatling_Barrel_S6','WeaponAttachment','Barrel','a4da0ade-47dd-4a9d-b1b6-3d66a1db67b9','','',NULL), -('578','Weapon_Rack_1_KSAR_SMG_Common_001','Usable','UNDEFINED','42cfd2ca-2cf4-4ef8-9954-a4c8747d6777','','',NULL), -('579','Carryable_1H_SQ_DataPad_Fluff_StormBreaker_DataFacility_Safe01','Misc','UNDEFINED','602f3d3e-c763-458d-bc2b-f53db7174701','','',NULL), -('580','TE_weapon_box__klwe_sniper_energy_01','Misc','UNDEFINED','fe214721-4452-46cf-b688-91d2a23af812','','',NULL), -('581','Ketchum Beanie Purple','Char_Clothing_Hat','UNDEFINED','ad9f23dd-8107-410d-ba4c-77cb95319e4d','','',NULL), -('582','XNAA_SanTokYai_SeatAccess_Nose','SeatAccess','UNDEFINED','1f9b18aa-7021-4227-a16f-abd58dc71881','','',NULL), -('583','Omnitrek Jacket Backwoods','Char_Clothing_Torso_1','UNDEFINED','00357d5f-9c55-4362-b1de-3be9b88c5ebe','','',NULL), -('584','MISC_Starlancer_Thruster_Mav_Front_Small','ManneuverThruster','FixedThruster','21483ce4-0f85-4870-9305-a454d319901c','','',NULL), -('585','RSI_Bengal_SCItem_Turret_Seat_Single','Seat','UNDEFINED','b31471d4-fe9d-47c6-929a-5887ac163ee2','','',NULL), -('586','CNOU_Mustang_Delta_Thruster_Main','MainThruster','FixedThruster','cd41b930-dc6d-4669-997a-0c563d334338','','',NULL), -('587','P4-AR \"Desert Shadow\" Rifle','Weapon','Medium','bebd2169-fe99-4c8f-8fef-9f6be437e641','','',NULL), -('588','ORIG_890J_Dashboard_BattleBridge_Right','SeatDashboard','UNDEFINED','c345e903-0323-4955-842f-44e8f9c25a7b','','',NULL), -('589','Reliant Mako Livery','Paints','UNDEFINED','b917d675-3773-4d2f-8bf6-737ade0047af','','',NULL), -('590','Door_ChipReader_Vault','Door','UNDEFINED','a6cf419c-c248-43a5-9fa1-65d0576fdac1','','',NULL), -('591','Brace Mask','Char_Clothing_Hat','UNDEFINED','f0479098-81ae-41bb-8004-bbe6febbbd2d','','',NULL), -('592','H_Dashboard_Projector_HUD_DRAK_Buccaneer','Display','UNDEFINED','f080a7d9-c2b8-45f9-a408-33cafbbaf80e','','',NULL), -('593','Stinger Pit Viper Livery','Paints','UNDEFINED','715e954c-fb55-4c1a-86ff-e0b1629bbacc','','',NULL), -('594','Seat','SeatAccess','UNDEFINED','e67beae6-8c7d-4873-9840-eae1202ae7de','','',NULL), -('595','canister_liquid_1_a','Cargo','Cargo','4f011890-9bc4-4792-b928-2620e78b9056','','',NULL), -('596','Ammunition Crate','Cargo','Mission','205da803-629d-4eea-ae56-032b1f93ff46','','',NULL), -('597','canister_liquid_3_a','Cargo','Cargo','d80242ae-d57f-484d-8bab-83d35d38de33','','',NULL), -('598','Radar_Display_Hornet_F7CM','Display','UNDEFINED','ae83905d-9cd3-49d8-894b-f1683a506a1e','','',NULL), -('599','Second Tevarin War Service Jacket','Char_Clothing_Torso_1','UNDEFINED','54c35149-8b37-421a-9264-84379f9888c8','','',NULL), -('600','DRAK_Vulture_Component_Life_Support','Player','UNDEFINED','81940045-819c-4d69-85fd-0c8e1aca6a69','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('601','ARGO_RAFT_Thruster_Mav_Bottom','ManneuverThruster','FixedThruster','11902ff6-6729-43e8-84aa-2d54b19dbd78','','',NULL), -('602','RSI_Constellation_Taurus_Thruster_Retro','MainThruster','FixedThruster','955730ba-c56a-43cb-bee0-eb2b820810eb','','',NULL), -('603','Boomtube \"Clanguard\" Rocket Launcher','Weapon','Large','90dc57a7-7377-4956-9d25-152a6c59d873','','',NULL), -('604','Flight Blade','FlightController','UNDEFINED','4f3df11b-d49a-4334-bc0f-7c514b3d38d5','','',NULL), -('605','Stor*All Big Box Model H','Module','UNDEFINED','429514fc-786a-4f18-935d-bacbe838bddd','','',NULL), -('606','Katla Mask Blue','Char_Clothing_Hat','UNDEFINED','a8b97d1a-8933-4547-a428-5fe2ef7de5e6','','',NULL), -('607','Odyssey II Undersuit Alpha','Armor','Undersuit','f0705a24-2c09-43b0-b90f-ce84d06ec1cd','','',NULL), -('608','RSI_Aurora_GS_LN_Thruster_Retro','MainThruster','FixedThruster','3ba422dc-c987-4cd4-b98a-c7e6121e2db5','','',NULL), -('609','Venture Core Starcrossed','Armor','Torso','b96f40b3-d657-47f1-a9a1-46ace1f23f27','','',NULL), -('610','Door Control','ControlPanel','DoorPart','03124097-0dee-450b-a8e7-5c20bf738c13','','',NULL), -('611','sc_nvy_bdu_jumpsuit_01_01_11','Char_Clothing_Torso_1','UNDEFINED','0bc88ea8-ee7e-40ae-a12e-75a2788f4ff4','','',NULL), -('612','Antium Helmet Maroon','Armor','Helmet','9a87b121-6acb-40c8-a40e-303e2f4d2fe4','','',NULL), -('613','INTK_KRIG_P72_Archimedes','FuelIntake','Fuel','be7a89fa-08d7-44ba-a8b6-7c278811bb07','','',NULL), -('614','Corbel Legs Halcyon','Armor','Legs','8dadd817-c5c4-4bba-8fec-dec029eb029b','','',NULL), -('615','Internal Tank','QuantumFuelTank','QuantumFuel','f4480494-4351-41ef-afcc-a495221ece25','','',NULL), -('616','RSI_Bengal_Thruster_Mav_Joint','ManneuverThruster','JointThruster','6de1c097-2cab-4ba3-b0c9-bc1df45954ad','','',NULL), -('617','Venture Helmet Twilight','Armor','Helmet','8d883e69-b5ac-469d-bdc0-3f3f564ba9e9','','',NULL), -('618','TRGT. STATUS','Seat','UNDEFINED','c03b4118-f5fd-4c84-a3ce-035552949906','','',NULL), -('619','ADP Core White','Armor','Torso','aaaccbc3-aa86-4107-a249-152bb1313e32','','',NULL), -('620','PAB-1 Legs Desert','Armor','Legs','f415b965-5e2c-4e43-a115-d1cf49e1cb1a','','',NULL), -('621','Arbor MH1 Mining Laser','Mining','Gun','5b5d11f8-a2b0-4e6e-80c3-2437cc0accae','','',NULL), -('622','Dust Devil Armor Core','Armor','Torso','8640bf64-96b6-4cc8-ad9d-23a66588fc2b','','',NULL), -('623','Aurora Mk I Light and Dark Grey Livery','Paints','UNDEFINED','e622f95b-6058-4fc9-a866-0e51377d3d0a','','',NULL), -('624','Snarling Vanduul Helmet','Armor','Helmet','d6ed781b-4ca1-46ec-bd0f-23673bbc0ce5','','',NULL), -('625','plaque_advocacy_1_badge_a','Misc','UNDEFINED','0dc3925e-a7b0-462b-9bbe-d319e7fa33aa','','',NULL), -('626','Rustic Jacket Green','Char_Clothing_Torso_1','UNDEFINED','8f2d2cbb-767b-44e3-a4eb-f70ccce6ae1c','','',NULL), -('627','Ivers Boots Black','Char_Clothing_Feet','UNDEFINED','753e394f-472a-4853-b91b-73a5802a2564','','',NULL), -('628','Uncut SLAM','Cargo','Cargo','52b3782d-a0c0-4244-a9b5-41030f19efa2','','',NULL), -('629','DustUp Legs Desert','Armor','Legs','aa61c64c-d016-4830-9b19-5e5e834bf543','','',NULL), -('630','Burgundy Paisley Bandana','Char_Clothing_Hat','UNDEFINED','3abb4278-e7dc-4f08-8bab-45785d679c52','','',NULL), -('631','AEGS_Javelin_Escapepod_Cover','Misc','UNDEFINED','ea343a26-cf1d-4387-ac53-7ac0e881af6e','','',NULL), -('632','m_human_mannequin_clothing_TandS_Civ04','ShopDisplay','UNDEFINED','59b31b83-5d18-4879-b1df-938673b9c4f9','','',NULL), -('633','XenoThreat Encryption Key','Misc','Mission','ea40c891-0ce1-452e-8d9f-796bde9bcdf8','','',NULL), -('634','AEGS_Vanguard_Sentinel_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','8870805a-47df-43a9-96ef-1fc8a0781982','','',NULL), -('635','Odyssey II Undersuit Red/Black','Armor','Undersuit','d4be150a-d690-4f35-b36a-b3894b7e423b','','',NULL), -('636','Hull A Empyrean Livery','Paints','UNDEFINED','76f1f810-a0cb-441b-a2c5-d2c3661c7d43','','',NULL), -('637','Aurora Mk I High Roller Livery','Paints','UNDEFINED','8f7b16fc-4a66-4056-bfc5-c882a9570816','','',NULL), -('638','Oracle Helmet (Modified)','Armor','Helmet','3bb156ec-b515-4318-8633-4decddaac368','','',NULL), -('639','Seat','Usable','UNDEFINED','0210a36d-d42d-4e74-9c25-33b934e29a5c','','',NULL), -('640','Table_rdy_rm_prop_table_a','Usable','UNDEFINED','5d50dbb1-022a-4017-b65c-6a0477198abf','','',NULL), -('641','Galinstan','Cooler','UNDEFINED','7751572b-05ba-4a0c-816e-fdbd6bc68e6b','','',NULL), -('642','Condemnation Distortion Scattergun','Weapon','Gun','bad19f5c-7249-4d85-9430-040733eb6e4a','','',NULL), -('643','Pingala Seeds','Cargo','Cargo','349e934c-f869-40cd-adcc-ca25b2ea1e59','','',NULL), -('644','H_Dashboard_Projector_HUD_ANVL_Hornet_F7CM_Mk2_P','Display','UNDEFINED','c03dbe8a-37e8-4785-9b2a-a32a954e1634','','',NULL), -('645','TRGT. STATUS','Seat','UNDEFINED','ffca35dc-1eda-4665-a921-4f7ecd50df2f','','',NULL), -('646','CNOU_Mustang_Beta_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','8cd277bb-9a77-416e-ba43-62d7a5faba7f','','',NULL), -('647','INTK_CNOU_Mustang_Delta','FuelIntake','Fuel','0b257484-12d8-4fb3-af69-56cf1b805f0a','','',NULL), -('648','ORC-mkV Arms Purple','Armor','Arms','85f1ce17-dc5b-42f7-bf69-fc879a47517c','','',NULL), -('649','Stud','Char_Head_Piercings','UNDEFINED','4e332d2a-c647-4c51-89d7-310bc5fe88c8','','',NULL), -('650','RSI_Salvation_Salvage_Arm_Right','ToolArm','UNDEFINED','cf24865f-5073-4fd4-bcc3-a6e50f757ed8','','',NULL), -('651','Overlord Core Mirador','Armor','Torso','6da3a364-d7ea-48b4-b74f-c8492099db33','','',NULL), -('652','Scorpius Antares Standard Flight Blade','FlightController','UNDEFINED','667a39eb-314b-47ce-970e-ea645ad5d476','','',NULL), -('653','Internal Tank','QuantumFuelTank','QuantumFuel','92462548-ba09-459c-818e-c583b0c69e43','','',NULL), -('654','Dymantium','Cargo','Cargo','90be781a-2694-40e8-8214-bbd2fffeb3d5','','',NULL), -('655','BEHR_LaserCannon_FiringMechanism_S3','WeaponAttachment','FiringMechanism','993c1343-d1ad-4c91-bfdc-2093c8a7fc1e','','',NULL), -('656','Manned Turret','TurretBase','MannedTurret','5ad8dee7-9ba2-4e4c-8fff-412426416d14','','',NULL), -('657','Sabre Windbreak Livery','Paints','UNDEFINED','11440f75-f2ed-46c9-9485-6118999509fa','','',NULL), -('658','Door Control','Door','UNDEFINED','4c222dd8-87e2-4f6f-8ddb-c33b99d956b7','','',NULL), -('659','Seat','SeatAccess','UNDEFINED','087ded7c-6c60-4404-a093-6b84ecb11f14','','',NULL), -('660','Gadget_Cabinet_kegr_fire_extinguisher_01_Nozzle_high','Usable','UNDEFINED','c2afddf1-4975-411c-ae69-fd84eb992ffc','','',NULL), -('661','Paint_Hammerhead_Navy','Paints','UNDEFINED','e937bbe7-9ff0-40c6-a18d-474987b46f6d','','',NULL), -('662','Strata Core','Armor','Torso','068b179e-bb1b-471e-9bf8-2f27b0ff2d26','','',NULL), -('663','Magnus IV Water Bottle','Drink','Bottle','028f5476-9f68-4d88-bd0c-2d6db79d3538','','',NULL), -('664','Station_DockingAnimator_Docking_Arm_Ht_A','DockingAnimator','UNDEFINED','5af68ad4-d523-45b1-8867-fbbf6f117054','','',NULL), -('665','Carryable_1H_CY_drug_stomachmedicine_2_a','Misc','UNDEFINED','ab49c24a-90a5-4bdf-94e8-6252c495e536','','',NULL), -('666','Ammonia','Cargo','Cargo','7c61a3a4-c2a9-402f-8402-e28be7206618','','',NULL), -('667','LeMarque Pants Green','Char_Clothing_Legs','UNDEFINED','3e5146de-a75a-46b7-9a72-e20fda768476','','',NULL), -('668','Debnam Gloves White','Char_Clothing_Hands','UNDEFINED','99352ead-13f6-4c87-a27c-79835077989d','','',NULL), -('669','Ball','Char_Head_Piercings','UNDEFINED','af6909b5-40f9-41c1-9ff2-d016f743dc98','','',NULL), -('670','MISC Ore Pod','Container','Cargo','be59463e-669b-41f2-99fb-ed13f8b70b5d','','',NULL), -('671','Venture Legs Seagreen','Armor','Legs','a3f55b76-f6c2-4f06-a1d4-97748d88854f','','',NULL), -('672','DRAK_Corsair_Component_Panel_01','Player','UNDEFINED','3147d212-778d-4de7-a3a3-52dba62aca76','','',NULL), -('673','MSD-625 Missile Rack','MissileLauncher','MissileRack','6a84479b-bd8e-4330-9ed3-e1169cfc546e','','',NULL), -('674','ControlPanel_Screen_LightControl_9x16_util','ControlPanel','DoorPart','a40098b4-ac00-470f-8ab7-7248f68a4987','','',NULL), -('675','5MA \'Chimalli\'','Shield','UNDEFINED','8c2b0c60-881b-4163-9d72-b6b74806735a','','',NULL), -('676','Cordimon Jacket Tan','Char_Clothing_Torso_1','UNDEFINED','4876ca38-84d4-4913-83d7-4253426e26bb','','',NULL), -('677','Manned Turret','TurretBase','MannedTurret','4fdae43b-b31f-4fda-908e-e40df26c1595','','',NULL), -('678','Remote Turret','Turret','GunTurret','c765234f-2f12-4027-81cb-32601ac81b7d','','',NULL), -('679','Partillium','Cargo','Cargo','ed99ca32-048b-429b-8efb-b7a20279583a','','',NULL), -('680','Skellig Pants Dirt','Char_Clothing_Legs','UNDEFINED','10417679-641d-4ad9-bfc8-a504cf311601','','',NULL), -('681','San\'tok.yāi Gimbal Mount','Turret','GunTurret','595b8f46-2037-43f8-bfb8-6cbd984f2212','','',NULL), -('682','MOLE Greycat Livery','Paints','UNDEFINED','882a48f8-fd78-4afc-a849-a365efa108fd','','',NULL), -('683','Manticore Helmet','Armor','Helmet','aff93126-aee5-4fef-958f-bc30ba55158e','','',NULL), -('684','MacFlex Core Black','Armor','Torso','aa9dd02d-ead9-4056-9bc4-9adb1bea8cfa','','',NULL), -('685','Internal Tank','FuelTank','Fuel','0dcb71f8-73e9-4760-bda3-93e55c63709d','','',NULL), -('686','XNAA_SanTokYai_SeatAccess_Tail','SeatAccess','UNDEFINED','f9c75e54-917c-4fa7-86f6-95a1f0ae739c','','',NULL), -('687','Internal Tank','QuantumFuelTank','QuantumFuel','ab4b9e04-b599-401e-b529-394727c64c5a','','',NULL), -('688','DRAK_Cutter_Winglets_Base_Right','Misc','UNDEFINED','9b05a9be-2288-4816-bba9-84a5dbdb808d','','',NULL), -('689','RSI_Aurora_Mk2_Thruster_Retro_Right','ManneuverThruster','Retro','5035fcbe-0ff7-4d9d-9b64-50ae0aeefdc0','','',NULL), -('690','Internal Tank','FuelTank','Fuel','0a15831a-47f3-49ee-9ea4-c3a1b70acd22','','',NULL), -('691','Remote Turret','Turret','GunTurret','b854cb5f-38f1-435c-9d7a-3335a75f861f','','',NULL), -('692','un_can_drink_2_f','Misc','UNDEFINED','7f6c0820-f78f-4b99-a4bc-94738ed7b0ee','','',NULL), -('693','Shroud','Shield','UNDEFINED','b097ed3e-ee5e-4f18-ae79-dcf49687e27d','','',NULL), -('694','PLACEHOLDER','Char_Clothing_Hat','UNDEFINED','ef5164ab-edcc-40bb-9cd5-38d162457c29','','',NULL), -('695','Remote Turret','Turret','GunTurret','e52cf74a-5e7c-4ae0-be1a-2ec54a11bdd3','','',NULL), -('696','Ready-Up Helmet Imperial','Char_Clothing_Hat','UNDEFINED','8031d27a-fbfc-41a8-8df4-6ab897511d6e','','',NULL), -('697','ORIG_350r_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','90a9ab10-3b5a-41b2-9b68-4ebed5ea7d1f','','',NULL), -('698','MISC_Reliant_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','0689a4ee-828e-48b6-8255-3b019d7b3a98','','',NULL), -('699','fruit_plant_2_a_6002','Misc','UNDEFINED','e4d1247d-0b59-4098-aebf-046ea0b9046c','','',NULL), -('700','Manned Turret','TurretBase','MannedTurret','39bffb2c-8e04-47be-829d-7babf5811f1e','','',NULL), -('701','fruit_plant_2_a_4002','Misc','UNDEFINED','e5d860c6-86eb-4728-ad49-2d5da453df79','','',NULL), -('702','fruit_plant_2_a_5002','Misc','UNDEFINED','80a2168a-2d58-4c17-a6fe-b85cb61d69f9','','',NULL), -('703','fruit_plant_2_a_2002','Misc','UNDEFINED','4b541d2c-f27f-48e5-9dd1-e47e3c103ab3','','',NULL), -('704','fruit_plant_2_a_3002','Misc','UNDEFINED','8c04c1d1-390c-4d0d-87ef-fb032c47a429','','',NULL), -('705','ST-205 Missile Rack','MissileLauncher','MissileRack','abc830d4-b751-4c7d-9923-4a824fdfc311','','',NULL), -('706','TOAG_LaserGatling_PowerArray_S2','WeaponAttachment','PowerArray','89342b97-ae4e-4cf8-97ab-4d81412056dd','','',NULL), -('707','Workzone_Wall_Mechanic','Usable','UNDEFINED','d6744ded-9f8a-42f1-8320-b9804b94f0c7','','',NULL), -('708','colonialism_airlock_tube_large_default_lghtgrp','Lightgroup','AirlockPart','34b79a03-d472-4dbd-81ea-be271667c16d','','',NULL), -('709','ARMR_RSI_Meteor','Armor','Medium','57d93ff0-e186-4c75-8fd3-6644357ed962','','',NULL), -('710','K7 Pants Yellow','Char_Clothing_Legs','UNDEFINED','4266a145-86ea-4162-8731-b3ef03809b5f','','',NULL), -('711','ORC-mkV Arms Twilight','Armor','Arms','c11fcc95-323b-47e3-8288-03b08306364c','','',NULL), -('712','Door Control','Door','UNDEFINED','f1d36fcf-87ff-4efa-bde3-82ea7855002c','','',NULL), -('713','Door','Door','UNDEFINED','717c18c9-db8c-4160-92f4-c167da510cbc','','',NULL), -('714','Party Favors','Cargo','Cargo','bc0c516d-fedb-4a56-93c7-c477e8620d35','','',NULL), -('715','DRAK_Dragonfly_Thruster_Mav_Joint','ManneuverThruster','JointThruster','69c68787-2cd6-4bb3-8305-3492ef380667','','',NULL), -('716','Trommel','PowerPlant','Power','aa15e2df-d7b1-4e97-9e0d-7623a3a096b0','','',NULL), -('717','ANVL_Gladiator_Thruster_Retro','ManneuverThruster','FlexThruster','4a8290c3-3c56-48ac-ab1f-f68e10cb381c','','',NULL), -('718','facial_hair_034','Char_Head_Beard','UNDEFINED','43ae2c6b-fc03-447f-bcd7-88ccf4beccec','','',NULL), -('719','Waste','Cargo','Cargo','72fa0dc2-4d1a-4fa6-bc29-4777e995905c','','',NULL), -('720','Venture Core Violet','Armor','Torso','2f1fb5de-540f-403c-9e1e-46cb3c97dd59','','',NULL), -('721','SCItemDisplayScreen_ScreenSize_W64_H36_H74_Medical','Display','Default','fdd6d00b-b1c1-445a-a7bd-fd777b13b377','','',NULL), -('722','Seat','Usable','UNDEFINED','3eae8a05-581c-498a-bb1a-c5ac8831ae76','','',NULL), -('723','Quest','QuantumDrive','UNDEFINED','e4b7bb25-c233-458b-a2b0-b8534733d6be','','',NULL), -('724','CRUS_Starlifter_Thruster_Mav_A2','ManneuverThruster','JointThruster','72b1e74f-0e83-4125-8c0d-94ee6eed2014','','',NULL), -('725','ADP Legs Green','Armor','Legs','1ffc8d57-5293-4e60-b0e9-9669ec9615dc','','',NULL), -('726','Personal Storage','Cargo','UNDEFINED','7d4010d8-d477-4de1-b47d-ecf2e0a97892','','',NULL), -('727','kiosk_terminal_1_a','Display','UNDEFINED','e1b658e9-182c-4d63-9bb0-42dacd8bd1c0','','',NULL), -('728','Railing_Straight_1m_Propless','Usable','UNDEFINED','0911c459-d01e-4c92-8f31-11df535c4a8b','','',NULL), -('729','Default_LensDisplay','Visor','Personal','4ceab596-ef75-4881-970e-138c9c6fc30e','','',NULL), -('730','Food_bowl_cereal_01_b','Food','Consumable','3bb5b1c3-caea-4953-a1b4-9990735af445','','',NULL), -('731','Access','SeatAccess','UNDEFINED','825a0752-d11e-4f59-b9fd-4579051831c1','','',NULL), -('732','MG Scrip','Currency','UNDEFINED','0df18692-2cc7-4d9d-af85-95b8a7a45419','','',NULL), -('733','lt_light_flood_1_floor_a','Light','UNDEFINED','aa312d56-f052-4140-ae7b-44023b6b6364','','',NULL), -('734','KRON_LaserCannon_FiringMechanism_S3','WeaponAttachment','FiringMechanism','72326367-0f76-4d8b-bad9-f722892553d7','','',NULL), -('735','un_glass_cocktail_1_a','Misc','UNDEFINED','4577a966-119e-4873-bc12-6cfc12a2e595','','',NULL), -('736','Gasping Weevil Eggs','Cargo','Cargo','5ddd0a6b-e04c-435b-bb96-222f5868432e','','',NULL), -('737','Surge Module','MiningModifier','Gun','46643b07-bb39-4ac1-83e4-d428f0c01a75','','',NULL), -('738','Consolidated Outland Cavalry Ship Armor','Armor','Medium','43c34912-a619-4bf8-a8d0-9f1c7e5b3910','','',NULL), -('739','Armada','Shield','UNDEFINED','7ff2c313-51c7-459b-91e5-8afd089df32f','','',NULL), -('740','trolley_cargo_1_a','Misc','UNDEFINED','129b69a6-f7ec-457e-85c9-d2c9c22819f7','','',NULL), -('741','ANVL_Carrack_Thruster_Retro_Front','ManneuverThruster','FixedThruster','a8c6dd29-faf0-4c37-b92e-3caee7e33c37','','',NULL), -('742','ARMR_KRIG_l21_wolf','Armor','Medium','0b584311-efe4-4cd1-b32a-a480a5d20a09','','',NULL), -('743','StorageCage_Quantum_ZeroG_CustomLoadout','Cargo','UNDEFINED','e10b66ce-a561-45f0-b9bc-4aa833f9645e','','',NULL), -('744','MISC_Hull_C_FoldingStrut_2D_Outer','Cargo','UNDEFINED','a11dbe7b-4105-43db-b645-98b9917b6925','','',NULL), -('745','Ridgely Jacket Highland','Char_Clothing_Torso_1','UNDEFINED','fdd475c2-df2f-421a-b2f7-02116b19ed8c','','',NULL), -('746','MISC_Starlancer_Thruster_Mav_Small_Bottom','ManneuverThruster','FixedThruster','f3375c74-887a-4188-92af-2f08adb9f328','','',NULL), -('747','SureGrip HV-S2 Tractor Beam','TractorBeam','UNDEFINED','39d9b779-561f-42c2-9e6d-a832ed37a303','','',NULL), -('748','Odyssey II Undersuit Exec','Armor','Undersuit','7b730ead-2b14-4cd9-a23c-5adf13bb9fc0','','',NULL), -('749','Door','Door','UNDEFINED','57a42cbd-5d96-4dba-9ba3-3b56071b08cf','','',NULL), -('750','srvl_combat_heavy_legs_03_01_01','Armor','Legs','7975b72c-9988-4609-aa40-492e8953dd6e','','',NULL), -('751','ANVL_Hurricane_Thruster_Mav_Top','ManneuverThruster','JointThruster','3476a9c4-8061-4540-98bc-2fb3406f082c','','',NULL), -('752','Zeus Exploration Suit Starscape','Armor','Undersuit','8f1ff80f-1541-456e-97cc-72c02cbfb92f','','',NULL), -('753','ORC-mkV Arms Violet','Armor','Arms','3c3e5108-171d-43be-913d-805a6ee2733b','','',NULL), -('754','KRIG_P72_Archimedes_Thruster_Mav_Fixed_02_Bottom','ManneuverThruster','FixedThruster','58eb09de-2d2f-4124-af65-4889ae3cef25','','',NULL), -('755','display_ship_components_02x0075x0275_a_s0_power','ShopDisplay','UNDEFINED','3ba15a0b-6a5d-4020-8761-2347e6f57c1a','','',NULL), -('756','Overlord Core Dust Storm','Armor','Torso','3b1fc959-15dd-47a3-b86c-f731112326ab','','',NULL), -('757','Personal Storage','Cargo','UNDEFINED','1ad689ee-28ef-4bd4-b222-48a27b6d902d','','',NULL), -('758','Year of the Dog Envelope','Misc','UNDEFINED','ce32be63-b951-443d-aaed-fda8af3ca899','','',NULL), -('759','\'Dragon\' IV Missile','Missile','Missile','bc9adaf0-90a2-45e8-ba1d-5e0b56a76c92','','',NULL), -('760','Libio Jacket Aqua','Char_Clothing_Torso_1','UNDEFINED','6ad48848-17a2-4bc8-8fa0-55cae91dfd51','','',NULL), -('761','PAB-1 Core Greycat Edition','Armor','Torso','11d57a99-e741-41b2-93e9-4a9ecd910a1f','','',NULL), -('762','WEAPONS','WeaponController','UNDEFINED','9a945c31-8595-4c5d-a5e6-c42cb8ab6498','','',NULL), -('763','ANVL_Lightning_F8_Thruster_Main','MainThruster','FixedThruster','efbe76b3-0b35-431f-a956-043418ed36de','','',NULL), -('764','HRST_LaserScatterGun_PowerArray_S1','WeaponAttachment','PowerArray','b4e6b18a-c1e4-4d69-bb4b-c90ae7a4717d','','',NULL), -('765','Box','Cargo','Small','ac4d39ad-b4ba-45b1-827f-a75d384b75a0','','',NULL), -('766','Corbel Helmet Halcyon','Armor','Helmet','4ee6abaf-5b55-4877-9904-087210ecfc6d','','',NULL), -('767','Access','SeatAccess','UNDEFINED','6a7398a4-017f-4564-ba2c-e9b3e4ad06e2','','',NULL), -('768','Remote Turret','Turret','GunTurret','cd66e83e-d139-4981-ba7a-4faf0e47a382','','',NULL), -('769','Venture Legs \"Rust Society\"','Armor','Legs','926a2bf7-600a-4d19-a6fa-bba397eb0b53','','',NULL), -('770','Lynx Core Bloodstorm','Armor','Torso','7b0c2445-5f43-4a87-83da-1687c6cd0f64','','',NULL), -('771','ARMR_TMBL_Cyclone_TR','Armor','Medium','fe984446-2cbc-434a-a464-3332ea730270','','',NULL), -('772','Cliffback T-Shirt Black','Char_Clothing_Torso_0','UNDEFINED','c1497637-e863-405a-8c0b-fd3e2ae350bc','','',NULL), -('773','Ardent Boots Grey','Char_Clothing_Feet','UNDEFINED','80577e81-1fa4-4db3-a7f9-5432a4e62b79','','',NULL), -('774','DustUp Arms Desert','Armor','Arms','8c677dd2-79ee-4b40-97a8-baa97068358b','','',NULL), -('775','Seat','Usable','UNDEFINED','60b6aee9-9f19-41ca-9811-17731bac589c','','',NULL), -('776','m_human_mannequin_truDef_pro_light','ShopDisplay','UNDEFINED','9e33a0ce-1dae-43d5-b93c-54be34531a3a','','',NULL), -('777','Nyman Jacket Aqua','Char_Clothing_Torso_1','UNDEFINED','cfad8c46-2b62-4a61-9219-8910b210aa6b','','',NULL), -('778','PAB-1 Legs Imperial','Armor','Legs','3c38120f-ed09-4459-b8f8-3788665c83b2','','',NULL), -('779','ORC-mkX Arms (XenoThreat v2)','Armor','Arms','98fc2303-daae-4f4a-b8c4-0bf992535def','','',NULL), -('780','sc_marine_bdu_pants_01_01_eckhart','Char_Clothing_Legs','UNDEFINED','bf7124b8-8486-404b-b9f1-b0b1c3c6b09f','','',NULL), -('781','Railing_Straight_2m_LT_Delta_a','Usable','UNDEFINED','db377f62-4558-4a8b-b94f-9eccdc90d121','','',NULL), -('782','SureStop','Shield','UNDEFINED','925ec9df-cd0d-4c40-a5ad-6d22bdbfdeaa','','',NULL), -('783','Carryable_1H_CY_tool_manual_socket_2_a','Misc','UNDEFINED','75868e54-7e08-440f-9335-4e0e3403c6d9','','',NULL), -('784','H_Dashboard_Projector_HUD_VNCL_Glaive','Display','UNDEFINED','6da9294e-63cb-4502-ad3e-d2b02bd28eeb','','',NULL), -('785','Seat','SeatAccess','UNDEFINED','1c79e939-df93-4f84-aa3c-a2051c16c1ae','','',NULL), -('786','Crusader White Queen','Misc','UNDEFINED','695bc8fd-cc2d-4712-bf05-802b45084cec','','',NULL), -('787','Scalpel Sniper Rifle Magazine (12 cap)','WeaponAttachment','Magazine','d84a7601-c246-4384-88c3-b3be0fe10680','','',NULL), -('788','Aluminum','Cargo','Cargo','47e626bb-96f6-4f4d-974f-a7442756fcc0','','',NULL), -('789','Socoria','Radar','MidRangeRadar','c2ee37cb-4267-4075-9f50-104c4781e7c6','','',NULL), -('790','SF7B Gatling','Weapon','Gun','0995529d-f2ce-4436-9807-1389fa429569','','',NULL), -('791','PAB-1 Core Dark Red','Armor','Torso','6e002e16-8e0f-41d0-8793-d9b25889ee2c','','',NULL), -('792','Zeus ArcCorp Livery','Paints','UNDEFINED','4f305eb1-38c3-4d5c-ba7e-ab6eebc8d27f','','',NULL), -('793','ST-171 Missile Rack','MissileLauncher','MissileRack','59fd39c9-5771-4844-b81d-cbdd5ea6dc8f','','',NULL), -('794','Flight Blade','FlightController','UNDEFINED','f0e43ba1-b299-422e-9b91-a228d6481451','','',NULL), -('795','Bologna Sandwich','Food','Junk','4ef4f879-5817-4361-8101-e81e5122bad5','','',NULL), -('796','SHIELDS','ShieldController','UNDEFINED','31d9cdbb-fc1c-4bf7-9df7-d5acbe3b1333','','',NULL), -('797','AEGS_Sabre_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','55df5df6-b963-4445-8672-2bea5291e8a6','','',NULL), -('798','M9A Cannon','Weapon','Gun','e2caa49e-ece4-4c43-8514-786f29ac8810','','',NULL), -('799','Steel','Cargo','Cargo','a3e3e4d8-bb9a-47dc-8b7d-4c27fd0c5b3d','','',NULL), -('800','Venture Arms Dark Red','Armor','Arms','0e70727f-a21a-444f-a968-853b3ae24556','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('801','Flight Blade','FlightController','UNDEFINED','66b1ff14-95d2-4f29-a3c4-13e21599a835','','',NULL), -('802','PAB-1 Arms Sienna','Armor','Arms','54688289-a2ff-4eca-a22c-62ade17ce1c6','','',NULL), -('803','IonBurst','PowerPlant','Power','e5ce3ff8-e9a6-4f5c-872f-edf082422d39','','',NULL), -('804','Mining Modules','MiningModifier','Gun','c771d921-e4b1-4e45-85fa-8b517aca3d70','','',NULL), -('805','ARGO_MOTH_CargoGrid_RearLift','CargoGrid','UNDEFINED','a98730b6-717a-4314-9488-d2e660ee5391','','',NULL), -('806','Soap','Misc','UNDEFINED','a46aeaaf-7f51-44aa-a2cc-0b29ef9873bb','','',NULL), -('807','Ponos Boots Violet','Char_Clothing_Feet','UNDEFINED','5a0e34e1-472f-4d94-a8ef-673be7d4cc53','','',NULL), -('808','Balor HCH Helmet Executive','Armor','Helmet','cdddc807-70b4-4eb8-b6a4-bbbd6e85772f','','',NULL), -('809','Fotia Seedpod','Cargo','Cargo','4a374205-8195-4601-83ad-1bd59ff400d2','','',NULL), -('810','Pizza Box','Misc','UNDEFINED','42218328-771d-49fd-920a-e6507b0be399','','',NULL), -('811','Remote Turret','Turret','GunTurret','c1c90b07-15f3-40c7-aafd-bf99c25654dd','','',NULL), -('812','Seat','Usable','UNDEFINED','0cf2b5c6-4cc4-4323-b63a-a08245c96bde','','',NULL), -('813','H_Dashboard_Projector_HUD_ANVL_Hurricane','Display','UNDEFINED','0bfcb87f-4c0a-4950-9319-f51d7960b032','','',NULL), -('814','f_human_mannequin_slaver_light','ShopDisplay','UNDEFINED','e7ead102-a0b0-442c-b8ee-8af233d596df','','',NULL), -('815','Palatino Legs Necropolis','Armor','Legs','fea0df3c-6b88-4de2-ab90-dd318f70eb8f','','',NULL), -('816','shelf_shoe_3_highend_b','ShopDisplay','Default','42ae8d9d-ec3a-403d-9f6e-41b5313c0a12','','',NULL), -('817','WarmingSpot_Propless','Usable','UNDEFINED','9205519f-84ca-419c-b097-26f0bdfebab4','','',NULL), -('818','MISC_Hull_C_Ring_01','Room','UNDEFINED','3aa8a79b-8515-4fa0-bd50-71500290a101','','',NULL), -('819','Stirling Exploration Helmet Transistor Edition','Armor','Helmet','d28364fa-e46b-4e7f-b4da-62cded070559','','',NULL), -('820','Venture Helmet Seagreen','Armor','Helmet','a7386a26-e974-47cd-a58e-1ca1a444e6f6','','',NULL), -('821','Janalite','Cargo','Cargo','160bf868-2f4c-49aa-a7b9-bc62c9d18523','','',NULL), -('822','Hydrogen','Cargo','Cargo','f27be49a-eb78-4fb1-bfb2-9563c9f7d1c8','','',NULL), -('823','Aril Legs Black Cherry','Armor','Legs','19cb730c-bf9a-401a-9284-63027b359ea1','','',NULL), -('824','CRUS_Herclues_SCItem_Seat_CoPilot','Seat','UNDEFINED','f2aca5cc-f783-409b-83ad-ef4097254357','','',NULL), -('825','G-2 Helmet Seagreen','Armor','Helmet','a8be87b7-182c-4429-b19c-4809f3e3a74e','','',NULL), -('826','Aspis','Shield','UNDEFINED','37ae6971-46d1-4021-bb9f-353813df8e9f','','',NULL), -('827','Zenith \"Thunderstrike\" Laser Sniper Rifle','Weapon','Medium','8df5d8a3-8052-4504-91ff-4a4c9d33218d','','',NULL), -('828','Agricultural Supplies','Cargo','Cargo','7be15085-be27-4bc0-9508-85b1aea19b09','','',NULL), -('829','ARGO_ATLS_IKTI_SCItem_Seat_Driver','Seat','UNDEFINED','6921c36d-68dd-453b-ad41-dd3bc3b2ca07','','',NULL), -('830','Carryable_2H_FL_05x05x05_MissionItem_Present_a','Misc','UNDEFINED','45c83537-a263-4562-afff-739a25591dfe','','',NULL), -('831','Seat','Usable','UNDEFINED','7534cc6a-1581-40ec-be70-95aaf084b261','','',NULL), -('832','Cassidy Shirt','Char_Clothing_Torso_0','UNDEFINED','0819eba5-1055-48e4-96b4-0844e8e73fb5','','',NULL), -('833','Bed','Usable','UNDEFINED','155971ca-506e-4464-b566-edafbf49af57','','',NULL), -('834','ROC Dolivine Livery','Paints','UNDEFINED','fc832536-15b2-4a33-a7da-e2b99ea060f7','','',NULL), -('835','BEHR_JavelinBallisticCannon_Barrel_S7','WeaponAttachment','Barrel','08efc343-b3c6-4baa-bc55-13f01ecc9dbc','','',NULL), -('836','Walesko','FPS_Consumable','Hacking','cb19fec5-5fd6-4e8f-ade6-55ace68b7e69','','',NULL), -('837','MacFlex Core Sienna','Armor','Torso','cc175402-f03d-481c-9514-c0fe01fd96c5','','',NULL), -('838','BR-2 Shotgun Magazine (12 cap)','WeaponAttachment','Magazine','38555f2d-975f-4e3c-8d04-8196b59b17c6','','',NULL), -('839','ORIG_X1_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','954c5238-f90a-4d81-979b-1a20584f1fa8','','',NULL), -('840','AEGS_Sabre_Firebird_bombay_door_right_outer','Misc','UNDEFINED','b84535c2-267f-4e22-bd3c-e7857a5f3879','','',NULL), -('841','Construction Materials','Cargo','Cargo','5ee15a9b-4ce5-445b-a02d-415c63f43764','','',NULL), -('842','TRGT. STATUS','Seat','UNDEFINED','7b9dcd81-de75-4b34-bbe2-71c558d13404','','',NULL), -('843','Carryable_1H_CY_drug_calcar_1_a_PlayerCannotUse','Misc','UNDEFINED','032605ed-7797-4d2c-a230-6eb4295a11d3','','',NULL), -('844','Anvil Ballista S07 Missile Rack','GroundVehicleMissileLauncher','GroundVehicleMissileRack','9b1808e8-0ccf-4684-8ac8-8f42848786ad','','',NULL), -('845','GATS_BallisticCannon_Ventilation_S3','WeaponAttachment','Ventilation','e75799ef-d278-47b1-b667-9bf7528b23d4','','',NULL), -('846','KRON_LaserCannon_Ventilation_S2','WeaponAttachment','Ventilation','1f61bf1c-7a75-474b-9cfb-bca7be7202c9','','',NULL), -('847','Carryable_1H_CY_woundfiller_1_a','Misc','UNDEFINED','f2accc53-56b7-43cf-94a0-3d9abdf58131','','',NULL), -('848','Morningstar Helmet Orange','Armor','Helmet','2795e5a7-ac03-4790-9c70-371bbef1fd71','','',NULL), -('849','ARGO_SRV_Thruster_Mav_Bottom','ManneuverThruster','UNDEFINED','58e789b2-abf0-42ce-aed0-18b94374aa2a','','',NULL), -('850','ARGO_SRV_Thruster_VTOL','MainThruster','UNDEFINED','62b3a8ec-3fcb-4e27-867b-424d1642462d','','',NULL), -('851','Internal Tank','QuantumFuelTank','QuantumFuel','de281c58-2fd3-4816-bf11-b0457599e947','','',NULL), -('852','BEHR_LaserRepeater_Barrel_S10','WeaponAttachment','Barrel','25a70b98-80db-446e-b70e-233a5a758f72','','',NULL), -('853','Door','Door','UNDEFINED','5167f2fa-79ea-449d-82cc-6d4159e4b8af','','',NULL), -('854','TRGT. STATUS','Seat','UNDEFINED','419cba27-c9c5-4e98-a4a5-d0d862e1c802','','',NULL), -('855','Seat','Usable','UNDEFINED','20addaf9-2086-4294-983f-2ff1c0e19628','','',NULL), -('856','ASD Technician Hat','Char_Clothing_Hat','UNDEFINED','1411a87f-0544-465f-ac18-d06e70b1c640','','',NULL), -('857','KRIG_P52_Merlin_Thruster_Mav_Vertical_Up','ManneuverThruster','JointThruster','5c15bb8b-3b4b-4763-ba0e-2e99e2a41859','','',NULL), -('858','Internal Tank','FuelTank','Fuel','0af99fba-0f2e-4476-a8a5-817dfa2b8358','','',NULL), -('859','AEGS_Javelin_Thruster_Mav_Joint_01','ManneuverThruster','JointThruster','3bb025cf-20c8-4532-9460-0ce7241a636b','','',NULL), -('860','Waste','Cargo','Cargo','d0729f03-ac0f-41bd-b42b-edee3ce09e46','','',NULL), -('861','Golem Strongheart Livery','Paints','UNDEFINED','2b5acde1-50c1-4a6f-afe5-164ac3f1a6ae','','',NULL), -('862','Door_Ship_Sensor_Proximity_1x2x3','Sensor','DoorPart','3a823d07-89dc-4eda-890a-4b8f3b6082a3','','',NULL), -('863','Cleo Pants Navy Blue','Char_Clothing_Legs','UNDEFINED','3a5774ab-4ffd-4adc-bd5f-a6cd20959a8c','','',NULL), -('864','MASTER_screen_16x9_6_0064x0036_a','Display','UNDEFINED','860dd030-3e22-4e2f-b1e5-c74cc0434e2e','','',NULL), -('865','Ardent Boots Blue','Char_Clothing_Feet','UNDEFINED','974fea21-5f6d-4bfb-a9ea-5c6209049f86','','',NULL), -('866','Venture Core Executive','Armor','Torso','f11ebfcd-ceb8-4286-9231-6f1ff1867861','','',NULL), -('867','Vehicle_Screen_MFD_Holographic_MISC_Starlancer_L','Display','UNDEFINED','bf52ce47-c7e0-4c9d-a216-192571409f4d','','',NULL), -('868','Anysta','Radar','MidRangeRadar','d3b9d505-5bbc-48cc-b6e3-2ca49ac4a390','','',NULL), -('869','Table_6_Seat_RSI_Perseus','Usable','UNDEFINED','c6019de7-821c-46ca-a426-ac5bfa296cb2','','',NULL), -('870','Waylite Shoes Desert','Char_Clothing_Feet','UNDEFINED','900153fe-e56d-4cd8-9b08-cd871970ed1d','','',NULL), -('871','Seat','Usable','UNDEFINED','16ad421d-da45-49cf-a08d-dc878fca13b3','','',NULL), -('872','RSI_Apollo_Dashboard_Btn_Lights','AttachedPart','UNDEFINED','0e864396-660e-469f-bcee-ce94bee0ca30','','',NULL), -('873','Aloprat Skewer','Food','Consumable','a20b8066-3584-4e2b-b863-a32303767995','','',NULL), -('874','Fresnel \"Shadow Gild\" Energy LMG','Weapon','Medium','93ae8a77-efd2-4eb1-933f-f436a5789bb6','','',NULL), -('875','Ball','Char_Head_Piercings','UNDEFINED','992eab0b-f01e-4792-84e1-91d3e9c2a06c','','',NULL), -('876','Bed','Usable','UNDEFINED','bdd2d858-52ed-4eeb-bb73-869c86346be6','','',NULL), -('877','Clempt Pants Purple','Char_Clothing_Legs','UNDEFINED','ffa113ae-d79d-4d48-92e2-efa1c9606a13','','',NULL), -('878','Salluq Mask Brown','Char_Clothing_Hat','UNDEFINED','a2bd7c9c-204f-48b0-b4bc-a6d45fea9152','','',NULL), -('879','Artimex Helmet Elysium','Armor','Helmet','b3aebd44-acf3-4b2b-a171-7770d1eade90','','',NULL), -('880','TRGT. STATUS','Seat','UNDEFINED','5af6764d-a151-422f-b0be-007022561fbc','','',NULL), -('881','Hydrogen Fuel','Cargo','Cargo','11de316c-53c1-4ad2-a925-cd550bee4384','','',NULL), -('882','Utensil_Plate_TomatoCurry','Misc','UNDEFINED','9b46eaab-1b96-422c-8965-54f12b97ddf1','','',NULL), -('883','Counter_Bar_2m_fridge_DEPRECATED','Usable','UNDEFINED','d65950dd-fee5-44f3-bff7-42127da9612c','','',NULL), -('884','Seat','SeatAccess','UNDEFINED','53275ce6-96dd-408c-b79f-bbbabde30639','','',NULL), -('885','Flight Blade','FlightController','UNDEFINED','d2c4dd59-dcc3-4f5c-82f9-33425de40d02','','',NULL), -('886','Freelancer Ellroy\'s Livery','Paints','UNDEFINED','f142c310-514f-4ce5-ba0d-80f0363d8db7','','',NULL), -('887','AEGS_Javelin_Thruster_Mav_Main_02_Aux','ManneuverThruster','FixedThruster','13be6d8c-e94a-4384-ad7a-08373b0a86df','','',NULL), -('888','Fried Seanut with Sauce','Food','Consumable','e52e45bc-99ea-4479-b0c3-bdf6e6342957','','',NULL), -('889','Fresh Food','Cargo','Cargo','a5996a9f-c2b3-432d-8e8f-99befe58d870','','',NULL), -('890','MISC_Reliant_Thruster_Retro','ManneuverThruster','FixedThruster','44ec208d-de8f-4b4c-8cd8-d6e47d75014f','','',NULL), -('891','ANVL_Hawk_Thruster_Main','MainThruster','FixedThruster','58ed4e19-6f40-4338-9383-de7b418cf937','','',NULL), -('892','Manned Turret','TurretBase','MannedTurret','bd9f6f94-0e86-482b-a58a-d90eed2b326c','','',NULL), -('893','GATS_BallisticGatling_Ventilation_S3','WeaponAttachment','Ventilation','6026f8f4-32df-4f26-8ff2-0b4659a73f08','','',NULL), -('894','Strata Legs Lodestar','Armor','Legs','f2c1b30f-7ec6-4175-a114-1e524ec12f6a','','',NULL), -('895','DockingTube_Fuel_Ports_ANVL_Hornet','DockingCollar','UNDEFINED','8738dbe8-bf1c-4244-9f8b-0a6844d2308e','','',NULL), -('896','RSI_Meteor_Thruster_Mav_Joint','ManneuverThruster','JointThruster','4dfe0a27-eb04-4ae7-be4d-b3edea038791','','',NULL), -('897','ActorMovableWheel_Trolley_storage_cryo','Misc','Small','fc86abfb-2751-4200-8ba7-e1f5c0298d5e','','',NULL), -('898','Gadget_Cabinet_kegr_fire_extinguisher_01_Nozzle_low','Usable','UNDEFINED','bf13d7ec-f327-4123-993e-ea196483e4f2','','',NULL), -('899','Door','Door','UNDEFINED','d7e5524f-175a-46aa-92d4-f7550b4a3681','','',NULL), -('900','Harlowe Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','ded5074b-b50c-40b2-a8bf-a49e92c8255a','','',NULL), -('901','Internal Tank','FuelTank','Fuel','78f8554f-df59-410e-a44b-767b2fdfa3bc','','',NULL), -('902','Radar_Display_XNAA_STY','Display','UNDEFINED','ea3b9903-e0c2-416a-9459-064ca9f743e6','','',NULL), -('903','ANVL_Door_Decal_Carrack_EngCon','Decal','DoorPart','2689df01-6c15-4f06-a965-f452a117a892','','',NULL), -('904','Arctic','Cooler','UNDEFINED','e41f4682-381a-453e-802b-521ce84a26b6','','',NULL), -('905','Door','Door','UNDEFINED','8c714d36-8d36-4a26-899c-61692c12843e','','',NULL), -('906','Partillium','Cargo','Cargo','9d74869b-b825-4065-a43b-57a3e7760563','','',NULL), -('907','ATLS Thunderhead Livery','Paints','UNDEFINED','07c8e30c-fa4f-4ac3-ae39-33eae6a50be7','','',NULL), -('908','vanduul_thul_core_01_01_01','Armor','Torso','50b6c819-8540-4715-b90e-9b68213be5f4','','',NULL), -('909','StorageCage_Time','Cargo','UNDEFINED','cdd10d0a-ccd7-440b-8549-9ef8ae1f507d','','',NULL), -('910','GATS_BallisticGatling_Mounted_Barrel_S1_FakeHologram','WeaponAttachment','Barrel','97f48d42-0642-4183-81f0-78eeb6bdc2d5','','',NULL), -('911','Internal Tank','FuelTank','Fuel','39183bed-56ed-4b53-ae8e-e77603d1f82a','','',NULL), -('912','600i Fortuna Livery','Paints','UNDEFINED','b40c698a-38ce-411d-b151-bd532042a679','','',NULL), -('913','Remote Turret','Turret','PDCTurret','4e1c3b0d-8170-4129-a411-e1f92e5fe69e','','',NULL), -('914','COMMS','CommsController','UNDEFINED','ae1a186e-0f8c-4deb-8079-bfb54df4a8a7','','',NULL), -('915','ANVL_Door_Decal_Carrack_Deck4','Decal','DoorPart','28084c3f-2489-4024-be8d-1f0a0c91b378','','',NULL), -('916','Sabre Stormbringer Livery','Paints','UNDEFINED','c6aa2f3c-93a0-4392-9a51-71c3dcf2808a','','',NULL), -('917','JDRV_ORIG_S04_890J_SCItem','JumpDrive','UNDEFINED','5f54cdb1-8397-479f-9b14-8988fc53373e','','',NULL), -('918','Seat','SeatAccess','UNDEFINED','88c7a21d-9eb2-44d2-a84a-414c2297915b','','',NULL), -('919','Beacon Undersuit Twilight','Armor','Undersuit','5e03ea44-400b-4442-a962-ac5e65e8f866','','',NULL), -('920','Manned Turret','TurretBase','MannedTurret','f6a34767-b9a6-44ef-9f5f-16e7face001f','','',NULL), -('921','AEGS_Door_Decal_WallPanel_03','Decal','DoorPart','8f7332d7-3152-4880-857d-d059c5c64366','','',NULL), -('922','AEGS_Idris_SCItem_Seat_Bridge_Rear_Right','Seat','UNDEFINED','adfcb70d-2ceb-404c-8f48-b8d8e423f6a4','','',NULL), -('923','EE16 (16x Telescopic)','WeaponAttachment','IronSight','49d638ae-c9ca-4391-b0c7-2043d9ab4f42','','',NULL), -('924','Roughneck Pants (Modified)','Char_Clothing_Legs','UNDEFINED','d18826b8-a146-4bf1-a8c9-46d72dbf7135','','',NULL), -('925','ORC-mkX Arms Scorched','Armor','Arms','ebd3cf9f-b0a2-4208-baa1-cd9e6097c25e','','',NULL), -('926','Beryl (Raw)','Cargo','Cargo','d72908a6-a12c-44ac-939b-e45c57abd54a','','',NULL), -('927','VNCL_Stinger_Thruster_Retro_Fixed_Left','ManneuverThruster','FixedThruster','642fe9ab-5c3c-4b1f-bf20-e29a09be044d','','',NULL), -('928','Bed','Usable','UNDEFINED','a915e608-4abe-4d05-b100-95b14cbfcce2','','',NULL), -('929','Inert Materials','Cargo','Cargo','94863457-67c5-48c0-95de-74b15135efa6','','',NULL), -('930','Door Control','Door','UNDEFINED','8982eb5b-db6f-4815-9ed7-a26c329a4231','','',NULL), -('931','Silverton Pants CFP','Char_Clothing_Legs','UNDEFINED','2b3adcf0-d968-4752-b87a-bf083e97fa7e','','',NULL), -('932','AEGS_Door_Decal_Medbay','Decal','DoorPart','c2b52357-0475-4e04-977f-f66ceea0b298','','',NULL), -('933','Hannu Shirt','Char_Clothing_Torso_0','UNDEFINED','5b1b3eee-2b48-4ac5-887c-a7e62168acb0','','',NULL), -('934','Invictus 2953 T-Shirt Grey','Char_Clothing_Torso_0','UNDEFINED','744b5541-a4a3-406d-855b-3e15b01a9710','','',NULL), -('935','Door','DockingAnimator','UNDEFINED','d3408575-06d7-410d-b09d-817cd439223a','','',NULL), -('936','Seat','SeatAccess','UNDEFINED','64ed53da-c4c4-489e-8d8d-46d9eb1df0c9','','',NULL), -('937','AEGS_Vanguard_SCItem_Dashboard_Esc_Pod','SeatDashboard','UNDEFINED','6b57bace-bf6f-4e45-a657-1774a79b3280','','',NULL), -('938','Sabre Polar Camo Livery','Paints','UNDEFINED','ce0a3a9f-c3d7-45dd-8d05-ed869ae1c131','','',NULL), -('939','RSI Constellation Side Missile Rack','MissileLauncher','MissileRack','06b86102-1d01-4091-9da8-dccad7c835b1','','',NULL), -('940','Construction Rubble','Cargo','Cargo','88d985d9-e3e6-4a62-baa4-5cee2ed187bc','','',NULL), -('941','Crusader Black Rook','Misc','UNDEFINED','a205e53a-33b9-42bb-9929-a444bb45ea68','','',NULL), -('942','Table_Alley_4_Seat','Usable','UNDEFINED','b1cd38ea-e2c8-4e39-9625-a45260603b24','','',NULL), -('943','MASTER_screen_16x9_2_0064x0036_a','Display','UNDEFINED','ef8e5184-332e-42c7-a020-b2a1ce59dc26','','',NULL), -('944','Zeta-Prolanide','Cargo','Cargo','92c98bd5-803b-4c4a-9d9f-858e186067ac','','',NULL), -('945','TEST STRING NAME','Armor','Helmet','269dc312-1113-4e06-8a82-ef310dcc472a','','',NULL), -('946','Artisan Apron Kel-To','Char_Clothing_Torso_1','UNDEFINED','8f261dca-2f9f-4b13-9aeb-3890845b2adc','','',NULL), -('947','sc_nvy_bridgeofficer_pants_01_01_01','Char_Clothing_Legs','UNDEFINED','be95ba66-6e1e-4478-853f-e4510cdb0e51','','',NULL), -('948','Inquisitor Arms Raven','Armor','Arms','d92ffcf6-2601-4b55-9ad6-4c7e74e08286','','',NULL), -('949','ARMR_DRAK_Dragonfly','Armor','Medium','1f4b287e-cc88-4cf5-b7ba-2cab7ae5eeaf','','',NULL), -('950','Strata Helmet Hurston Black','Armor','Helmet','f050da8e-7460-4275-beb0-d4ea6caead73','','',NULL), -('951','Kavir Pants Spruce','Char_Clothing_Legs','UNDEFINED','b874ec01-5f07-4e53-93f2-aa0b095c7c32','','',NULL), -('952','Seat','SeatAccess','UNDEFINED','f6e791e1-9eaa-4da5-bf41-66e5d58c4616','','',NULL), -('953','Seat','SeatAccess','UNDEFINED','56df7df3-b723-4b60-bfda-af412f856300','','',NULL), -('954','display_16x9_1_0080x0045_a','Display','UNDEFINED','03434a30-f940-40bc-865d-6d5a9de37a0c','','',NULL), -('955','Available','Cargo','Cargo','febdb107-cb1f-4f38-b633-424ec829a507','','',NULL), -('956','Twenty-Sided Plushie Red','Misc','UNDEFINED','2dbbe5b5-e905-4535-a5bf-09aa0c6f8aa3','','',NULL), -('957','Weapon Rack','Usable','UNDEFINED','73a2e1d6-0ba8-4384-9c5f-fd1b5bd8bd02','','',NULL), -('958','Odyssey II Undersuit Alpha','Armor','Undersuit','14b28bd4-cf46-4c20-a65b-5df88fceac58','','',NULL), -('959','ORIG_400i_Dashboard_Pilot','SeatDashboard','UNDEFINED','0e361321-dd30-4d47-8c9e-71a313f75216','','',NULL), -('960','Silicon','Cargo','Cargo','9921ebd4-799f-4404-918d-013aa241e938','','',NULL), -('961','Freelancer 2951 Auspicious Red Ram Livery','Paints','UNDEFINED','c0de1fbb-e8ff-4d97-96c4-329b05dac742','','',NULL), -('962','ARGO_MOLE_Thruster_VTOL','MainThruster','FixedThruster','766fdc8f-3c07-43d2-819f-9f134d0af6e6','','',NULL), -('963','MISC_Starlancer_TAC_Thruster_Main','MainThruster','FixedThruster','468e75aa-d9cf-433d-99c7-8fa5f8db0176','','',NULL), -('964','Pyro RYT Multi-Tool','Weapon','Gadget','f35e3168-edd8-4e3d-a99a-28de49ed4d70','','',NULL), -('965','AEGS_Door_Decal_MissileRm','Decal','DoorPart','52651ed3-1d29-419c-a84a-ea0999495a3c','','',NULL), -('966','AEGS_Vanguard_SCItem_Seat_Bed_Lower_Sentinel','Seat','UNDEFINED','1815027c-13f0-4518-8e9f-ba1afe143921','','',NULL), -('967','Attrition-4 Repeater','Weapon','Gun','7bd374e9-9d2f-4659-94cf-840e79d23b34','','',NULL), -('968','DRAK_Cutlass_Thruster_Retro','MainThruster','FixedThruster','2a30fbef-8479-4f19-9c0b-34b37adae545','','',NULL), -('969','Killshot Rifle Magazine (45 Cap)','WeaponAttachment','Magazine','c40b7e8e-0f04-43d7-ac3a-7ffb8df071d8','','',NULL), -('970','TRGT. STATUS','Seat','UNDEFINED','08c4f5aa-f808-498a-9122-46d438bcf0c9','','',NULL), -('971','Invictus Hat Olive Green','Char_Clothing_Hat','UNDEFINED','a910c243-1510-42fa-b64e-e09cab638469','','',NULL), -('972','Seat','Usable','UNDEFINED','45477967-7a24-216c-4d2f-5d4f378e2c98','','',NULL), -('973','MISC Prospector - Noise Launcher','WeaponDefensive','CountermeasureLauncher','f27f7230-29b4-44f6-a803-8f25c6b1cdc1','','',NULL), -('974','Silverton Pants Jade','Char_Clothing_Legs','UNDEFINED','e20fe5a9-0a6b-4d63-b54d-7ea70be8e40d','','',NULL), -('975','Oracle Helmet Sandstorm','Armor','Helmet','3e48d826-1663-497e-8f21-3eaa67dab60f','','',NULL), -('976','Cargo_Comm_125x3_Metal_Titanium_a','Cargo','Cargo','77a341e1-bfa9-45a6-beab-dcd263048d90','','',NULL), -('977','Savrilium (Ore)','Cargo','Cargo','5af40118-749d-441d-a51c-b95428ce26e3','','',NULL), -('978','hooks_torso1_02x01x04_01Port','ShopDisplay','Default','829dd5c4-4432-408a-b37c-6560a06684e1','','',NULL), -('979','Blue Bilva','Cargo','Cargo','60f6d4db-5050-4ac3-8652-aeeba72242b8','','',NULL), -('980','Food_grey_grub_eggs','Food','Consumable','d2e01c7f-dfea-4954-baa3-2ef3dbb30831','','',NULL), -('981','99-BR/BL Pants','Char_Clothing_Legs','UNDEFINED','c9ea8c57-dceb-4804-967f-8828bb53b967','','',NULL), -('982','Book','Misc','UNDEFINED','5fbd9a82-d5f9-487e-b841-101e2e1eb82c','','',NULL), -('983','Venture Legs Lovestruck','Armor','Legs','23cb2160-f4b7-4f0f-8946-36211a5c29ee','','',NULL), -('984','volume_pants_01','Armor','Undersuit','6a7d73eb-7a6d-4ae7-8e9c-0cd5b6ad87e7','','',NULL), -('985','MacFlex Arms Dark Green','Armor','Arms','8c391306-e870-488e-ae64-2aaa381f08a9','','',NULL), -('986','Aril Arms Hazard','Armor','Arms','ef22e563-0ff2-4ad0-8ba3-c4e94f910c57','','',NULL), -('987','Door_RSI_Polaris_BlastShield','Door','UNDEFINED','68f95642-7f02-458a-bddb-93bebd945327','','',NULL), -('988','Seat','Usable','UNDEFINED','d0d68994-9a86-417b-93cd-b0c7f999d626','','',NULL), -('989','MISC_Starlancer_Thruster_Mav_Small_Front_Bottom','ManneuverThruster','FixedThruster','28f927f4-c5a2-4de0-9f00-91e55639e40e','','',NULL), -('990','Internal Tank','FuelTank','Fuel','559a686f-0b07-43ab-a6ce-e39165161acd','','',NULL), -('991','Carryable_1H_Cup_Cylinder8cm_CoffeeMachine','Misc','UNDEFINED','dc01bfde-f3d7-4bf1-abdb-bf5ece700b84','','',NULL), -('992','Door','Door','UNDEFINED','4788570a-76e6-6d9c-d8ac-6a6b28999b84','','',NULL), -('993','MRX \"Torrent\"','Weapon','Gun','647c70b5-1547-4c86-ba47-4aa452d3b506','','',NULL), -('994','Grammercy Food Service Cover','Char_Clothing_Hat','UNDEFINED','07c40bb5-38d3-4859-954c-73612179c8a1','','',NULL), -('995','Bed','Usable','UNDEFINED','db524d5f-114d-4973-8437-fe59a7cbde7b','','',NULL), -('996','ARGO_MPUV_Thruster_Aux_Fixed_01','ManneuverThruster','FixedThruster','80206af6-e4b9-4b31-b259-8830a14d3f83','','',NULL), -('997','Bioplastic','Cargo','Cargo','a6115aec-a72a-418e-aae2-a595d85b0a37','','',NULL), -('998','Door Control','Door','UNDEFINED','82433a44-3f5a-43a0-a99a-5c3d5f12f7d0','','',NULL), -('999','DCP Armor Legs True Valor','Armor','Legs','78f7c755-0282-45af-9ddd-77f9e79f559e','','',NULL), -('1000','Wooden Rooster Charm (Large)','Misc','UNDEFINED','11d8a5e3-f19f-40bb-b0d8-2c24193be5db','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('1001','Flareweed Stalk','Misc','Harvestable','3fb5efa8-9a85-48d7-a8fe-56caaef4329a','','',NULL), -('1002','MISC_Hull_C_CentralWalkway','Misc','UNDEFINED','d055d129-840f-4c8f-aba7-a31e43c37887','','',NULL), -('1003','Amiant Pod','Misc','Harvestable','8788316d-ccdb-4ca3-a1e0-9e6e11a0496f','','',NULL), -('1004','Vehicle_Screen_MFD_Holographic_Talon_BL','Display','UNDEFINED','13510462-6686-4a09-8037-902c7d24b423','','',NULL), -('1005','Outback Core Molten','Armor','Torso','ff253150-e479-4d27-a2fa-6bb5027bb0fc','','',NULL), -('1006','Door Control','Door','UNDEFINED','2bd3bc25-d7fc-450e-8be5-473732a71e51','','',NULL), -('1007','Inquisitor Core Seagreen','Armor','Torso','e0d81a8e-43da-4a87-99f4-12fb3f209e64','','',NULL), -('1008','ORIG_600i_Thruster_Mav_Fixed_03','ManneuverThruster','FixedThruster','f2d69d68-9ab6-4704-a231-348dc3ae21b9','','',NULL), -('1009','MaxLift Tractor Beam','Weapon','Gadget','27adea05-f94d-4439-872d-b043a631c34f','','',NULL), -('1010','RSI_Perseus_Seat_Access_Pilot','SeatAccess','UNDEFINED','e3ea37d2-9b72-45d9-90f1-f92680bf1be8','','',NULL), -('1011','CRUS_Starlifter_Door_Decal_Cooler_B','Decal','DoorPart','058f5f06-7b56-4285-b771-841b8f8f20db','','',NULL), -('1012','Sabre_Firebird_WingCap_Left','Misc','UNDEFINED','265c05e5-e559-4875-8c65-862e5516442f','','',NULL), -('1013','box_plastic_4_weapon_opened_005x010x00375_a_behr_rifle_ballistic_01','Misc','UNDEFINED','9b3f66a4-959a-4d72-a7b5-9c9bb0649645','','',NULL), -('1014','Seat','SeatAccess','UNDEFINED','a4bdb1f4-5177-4933-aa14-e88f3d6762aa','','',NULL), -('1015','Internal Tank','FuelTank','Fuel','87ffb1b8-f5e9-4145-b512-0c4ae6a0a88d','','',NULL), -('1016','Seat','Usable','UNDEFINED','6f631537-7bae-46ae-ab2b-ebc020636310','','',NULL), -('1017','Bed','Usable','UNDEFINED','e4bd4b33-ea38-4e68-81a4-a12003e01238','','',NULL), -('1018','Internal Tank','QuantumFuelTank','QuantumFuel','a031cc14-e14d-4ba8-8cdc-48990c4fdc86','','',NULL), -('1019','DuraWork Pants Horizon','Char_Clothing_Legs','UNDEFINED','6e15bb7e-f957-45ae-95cf-6bcf574211c5','','',NULL), -('1020','Manned Turret','TurretBase','MannedTurret','c7a58dc6-24c5-4ee8-b181-39e6557f1ac7','','',NULL), -('1021','Stims','Cargo','Cargo','6fa73197-94dc-4300-a400-68f04fcb6660','','',NULL), -('1022','Morozov-SH Legs Redshift','Armor','Legs','56877888-3a10-4fb0-a6b9-9aed03841763','','',NULL), -('1023','Crusader White Knight','Misc','UNDEFINED','78f9d8ca-a005-4756-9b9e-e748db77893b','','',NULL), -('1024','Couloir Shoes WhiteHex','Char_Clothing_Feet','UNDEFINED','8751146f-33ae-4c0d-859a-f3c213a3ca43','','',NULL), -('1025','Nomad Cherry Blossom Livery','Paints','UNDEFINED','8b3ce321-ea1d-4ed6-9471-2c213f9471f9','','',NULL), -('1026','Monde Legs Crimson Camo','Armor','Legs','20c72bc9-00df-4a8d-b433-45c2217523da','','',NULL), -('1027','Door Control','Door','UNDEFINED','61c5dcb4-6c3b-4c53-81b7-4b1ab776327c','','',NULL), -('1028','TigerLilly','PowerPlant','Power','3e16e23a-c87e-4b50-9d07-8a3c1bee8116','','',NULL), -('1029','TRGT. STATUS','Seat','UNDEFINED','acfdceaf-72de-4ca2-b625-3b8e546d9e61','','',NULL), -('1030','VariPuck S3 Gimbal Mount','Turret','GunTurret','e8f087cf-12fc-4149-b8c2-59152716f363','','',NULL), -('1031','Chiron Arms AA Support','Armor','Arms','2e2cfd96-7dae-4ccb-90a3-368eef399433','','',NULL), -('1032','Elevator Control','Elevator','UNDEFINED','c38a13db-09ab-4271-8912-f2ad051cde58','','',NULL), -('1033','Radar_Display_Hornet_F7C','Display','UNDEFINED','1627fb80-6527-4ec2-b4a3-30fec3a4b1bf','','',NULL), -('1034','Clean and Clear Work Apron','Char_Clothing_Torso_1','UNDEFINED','391e5896-3e33-42d6-992b-4096511fdced','','',NULL), -('1035','Orison Shipyards T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','02826a44-68c2-42a1-8270-36734610fa57','','',NULL), -('1036','Manned Turret','TurretBase','MannedTurret','ae33bd77-8c58-4259-9b3e-7b1cc0838a19','','',NULL), -('1037','Paint_Hurricane_microTech_Security','Paints','UNDEFINED','1227d377-defe-4168-8ccb-d74a269fcdca','','',NULL), -('1038','ESPR_LaserCannon_PowerArray_S2','WeaponAttachment','PowerArray','746e0f02-6956-4994-a425-1b62e39d3c6a','','',NULL), -('1039','tool_power_1_battery_a','Misc','UNDEFINED','3d07236e-d15e-4cdd-a55c-fb4ba4107f63','','',NULL), -('1040','Carryable_TBO_FL_32SCU_Commodity_Organic','Cargo','Cargo','06ab17e1-cb9e-4455-87a3-9492e04d8c94','','',NULL), -('1041','Sabre_Firebird_WingCap_Left_Collector','Misc','UNDEFINED','6cac9b5f-e8ae-427f-8399-0f60ed53e5b9','','',NULL), -('1042','CRUS_Starlifter_Thruster_Main_A2','MainThruster','FixedThruster','b8d736a7-247b-4927-850e-78b94f69a70c','','',NULL), -('1043','INTK_ANVL_Terrapin_Medic','FuelIntake','Fuel','b7676f03-0531-402a-bf7b-8a0700ea06ea','','',NULL), -('1044','CBH-3 Helmet Executive','Armor','Helmet','f4416f4e-d60e-4184-81aa-a7b842c3c82c','','',NULL), -('1045','Chiron Arms Heartthrob','Armor','Arms','40461db2-8c0b-4b82-89c7-b69622ce1462','','',NULL), -('1046','Aurora Mk I MR Ship Armor','Armor','Heavy','355cf3b8-e70f-40ac-a592-4f24f9fb8718','','',NULL), -('1047','Scrap Valve','Misc','Junk','5ce154ef-3149-477a-a6c5-760df4badde6','','',NULL), -('1048','DockingTube_Fuel_Ports_ESPR_Prowler','DockingCollar','UNDEFINED','50547367-eadf-4874-ad97-2f1f78556a13','','',NULL), -('1049','StorageCage_Damage_Empty','Cargo','UNDEFINED','f8578f20-b18a-471a-ba4a-adfb6e46b953','','',NULL), -('1050','Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','8b39d9c1-7d61-4bf9-a30b-0398c7d9c6ef','','',NULL), -('1051','un_cigar_single_1_b','Misc','UNDEFINED','fdb5dcf1-c578-4e2a-88e8-675943c14995','','',NULL), -('1052','Paint_Mustang_NineTails','Paints','UNDEFINED','e4bdf102-5072-4395-aacf-eb81f60c979d','','',NULL), -('1053','Access','SeatAccess','UNDEFINED','bbe309d4-3f38-4c36-9a29-341b6a0e6f4d','','',NULL), -('1054','Seat','Usable','UNDEFINED','cde3c6b7-dd29-4351-bc86-16ff3bff4fb6','','',NULL), -('1055','ORIG_890_Jump_Thruster_Main_TL','MainThruster','FixedThruster','088cee98-acb4-41e3-acc5-88006a93e2e6','','',NULL), -('1056','Omarof (16x Telescopic)','WeaponAttachment','IronSight','1ba4ebda-fa61-45e7-928f-a543161c9276','','',NULL), -('1057','Manned Turret','TurretBase','MannedTurret','be1bce53-447b-42ce-9990-5a3053ab7e95','','',NULL), -('1058','Construction Salvage','Cargo','Cargo','7d5cb0ba-f68e-490b-865e-81b05fa040c9','','',NULL), -('1059','Door Control','Door','UNDEFINED','1b6a6e0d-871a-426e-8ab8-e6bad68190e5','','',NULL), -('1060','nvy_orison_engineer_belt_01_01_01','Char_Clothing_Torso_2','UNDEFINED','59bc372e-a386-4d45-9ae4-1682c8091f2b','','',NULL), -('1061','Flight Blade','FlightController','UNDEFINED','36fbe53c-f7ba-4032-a38d-98188a03c5a4','','',NULL), -('1062','Cutter Pyrite Livery','Paints','UNDEFINED','eb7fb92d-47fc-40cf-84ec-31c051670c65','','',NULL), -('1063','MacFlex Legs Dark Red','Armor','Legs','62bc456c-c815-4038-bf6b-4417c7b4eb58','','',NULL), -('1064','Railing_Straight_4m_Microtech','Usable','UNDEFINED','89103d9e-a462-49ce-9ef2-73b957667aa3','','',NULL), -('1065','DRAK_Cutter_Winglets_Base_Left','Misc','UNDEFINED','9df86a1e-060a-44f6-985c-37e8984459d1','','',NULL), -('1066','Ardor-2 Salvaged Repeater','Weapon','Gun','d6decc9e-ec4f-4bab-a0bc-5e1dc01d7af7','','',NULL), -('1067','Carryable_1H_CY_tool_marshal_paddle_1_a','Misc','UNDEFINED','cb92c814-3075-42d0-9ea2-a1cea01a578d','','',NULL), -('1068','Cutlass Black Ship Armor','Armor','Medium','d046ef0c-1a7f-4231-8abf-eae882a73c2b','','',NULL), -('1069','ANVL_Hornet_F7CR_Mk2_Thruster_Main','MainThruster','FixedThruster','7ab16a6f-50a5-4ce8-92a3-cbc598036d9a','','',NULL), -('1070','AEGS_Sabre_Thruster_Mav_Right','ManneuverThruster','JointThruster','e51bf31f-aaef-4780-adf6-3024f089138a','','',NULL), -('1071','H_Dashboard_Projector_HUD_ANVL_Hornet_F7CM_Mk2_CP','Display','UNDEFINED','a103dd80-0eca-4bfa-a27c-32c230e06302','','',NULL), -('1072','Container','Misc','Personal','b798ed34-c074-43d0-b252-376719c4a67a','','',NULL), -('1073','Parallax \"Piconalia\" Energy Assault Rifle','Weapon','Medium','1e41df3e-f9ee-4ec5-8cfd-80c344772723','','',NULL), -('1074','shelf_01_a_02_x01x00375_2ports','ShopDisplay','Default','3a2817c6-f4b2-455a-b224-0897e0563dd2','','',NULL), -('1075','NightFall','Cooler','UNDEFINED','acb949b6-488a-4d10-b0f3-6597ef22925e','','',NULL), -('1076','TRGT. STATUS','Seat','UNDEFINED','ff877cb1-b43f-43ee-ba6c-caab24c1a385','','',NULL), -('1077','Golden Medmon','Cargo','Cargo','b1777f64-a960-4ef7-a258-6ab3f2607f89','','',NULL), -('1078','TrueDef-Pro Core Yellow/Black','Armor','Torso','b69eaf10-1f7c-4444-96d3-9a11acfeac5a','','',NULL), -('1079','facial_hair_009','Char_Head_Beard','UNDEFINED','15cc8f8d-2172-47d9-a94d-a7d504b9024d','','',NULL), -('1080','MISC_Hull_C_Ring_05','Room','UNDEFINED','d3cb19f6-c08d-462e-bc17-90412848cb4a','','',NULL), -('1081','Iron (Ore)','Cargo','Cargo','74e6a101-3bd0-4fb1-990e-f0e70adbfc72','','',NULL), -('1082','Navoi Boots and Pants Shale','Char_Clothing_Legs','UNDEFINED','68c90cf0-16b6-4fac-a0b9-d67a64685504','','',NULL), -('1083','ADP Legs Crusader Edition','Armor','Legs','df13db2c-cb89-49b7-acb8-28f54e7ad1d7','','',NULL), -('1084','400i Meridian Livery','Paints','UNDEFINED','dd8f059f-b38b-4ec7-8be7-fb9b50c6e6ad','','',NULL), -('1085','MISC_Starfarer_Thruster_Aux','MainThruster','FixedThruster','ef28de2c-d7fa-4d18-b903-dfe036a963c3','','',NULL), -('1086','Cockpit','SeatDashboard','UNDEFINED','7dd89bc1-cdc7-492c-be62-fe3c9b07273f','','',NULL), -('1087','KRON_LaserCannon_PowerArray_S2','WeaponAttachment','PowerArray','e758aeb5-3ecc-42f4-8f21-d87e476f97a5','','',NULL), -('1088','Carryable_1H_SQ_drug_stim_4_a','Drink','Bottle','d13bb2c3-1a83-4242-8981-c36f82f41168','','',NULL), -('1089','P6-LR Sniper Rifle','Weapon','Medium','01f2b88a-9752-4cd8-9f73-d151b4b2ca61','','',NULL), -('1090','SCItemDisplayScreen_Source_HullCTractorBeam','Display','Default','3b42275a-4a54-4e53-ad3e-8b3bbcb25c7c','','',NULL), -('1091','RSI_Mantis_Thruster_Main','MainThruster','FixedThruster','2ba94d70-895d-4b59-9399-8e3d650add83','','',NULL), -('1092','DockingTube_Fuel_Ports_ANVL_Valkyrie','DockingCollar','UNDEFINED','77861972-a9f1-4596-9ded-72d59b5e3072','','',NULL), -('1093','POWER','EnergyController','UNDEFINED','61cc7bf5-6666-40f7-8c0a-ee8a8092f51e','','',NULL), -('1094','Morozov-SH-I Core Pyrotechnic','Armor','Torso','bc70a8da-97e1-4cf3-95c4-698cc1b2b4c7','','',NULL), -('1095','RSI_Zeus_Collar_Cargo_R','AttachedPart','UNDEFINED','f7f9fe74-58bb-4554-a468-0fefdda43c7d','','',NULL), -('1096','Seat','SeatAccess','UNDEFINED','772d12a7-351b-4298-b01b-81acf7ea41c6','','',NULL), -('1097','Odyssey II Helmet Purple','Armor','Helmet','cb35d99c-3477-4a2e-b9a8-d987a6c6e3ff','','',NULL), -('1098','Vehicle_Screen_MFD_Holographic_MISC_Hull_C_L','Display','UNDEFINED','9981020a-4517-4316-a51b-e17eec3373f9','','',NULL), -('1099','Personal Storage','Cargo','UNDEFINED','f3111933-7e5b-459c-a3da-86c4cff62ceb','','',NULL), -('1100','H_Dashboard_Projector_HUD_ANVL_Hornet_F7CR','Display','UNDEFINED','ec547b37-bc61-4983-8eae-ac735a9313ed','','',NULL), -('1101','Dolivine','Cargo','Cargo','9f7051cd-2e13-4abf-b38e-bbd7575f1d83','','',NULL), -('1102','m_human_mannequin_environment_heavy','ShopDisplay','UNDEFINED','e9cf46e4-ffd3-450f-b2bf-a4a2543184ad','','',NULL), -('1103','Strata Arms Greycat Edition','Armor','Arms','acbb7178-ef6a-454c-8e1a-9f4998bbeddb','','',NULL), -('1104','Blue Bilva','Cargo','Cargo','dc4631cd-3899-4024-8ef2-740679b2c373','','',NULL), -('1105','Seat','Usable','UNDEFINED','2ba6ce3a-a72c-4803-a304-d8c6760efb4c','','',NULL), -('1106','AIModule_Unmanned_PU_UEE_GreenZone_Small_Turret','AIModule','UNDEFINED','9ffb98e4-621b-4c10-8750-72b713096d70','','',NULL), -('1107','ANVL_Door_Decal_Carrack_Airlock','Decal','DoorPart','01d6bfa0-b258-487f-9fd1-56ad222317d0','','',NULL), -('1108','Day One Shirt','Char_Clothing_Torso_0','UNDEFINED','a1761c40-0026-4b68-8d85-f9a3e5f9a840','','',NULL), -('1109','E\'tam','Cargo','Cargo','129dae96-766b-4491-bc96-99f7c7a5481d','','',NULL), -('1110','Prospector IceBreak Livery','Paints','UNDEFINED','737d8874-adf8-4f1f-b8f1-6fae8c9247d2','','',NULL), -('1111','Orbgn_None_Consumable_Keycard_Maintenance','FPS_Consumable','Hacking','e09af591-b207-4e39-b87a-435d2ec70402','','',NULL), -('1112','Bexalite','Cargo','Cargo','c5e32c49-6dbe-4b4c-aeb4-e9a546412abe','','',NULL), -('1113','Door Control','Door','UNDEFINED','d6a5eac5-83ca-4628-9bce-652ac29d0a88','','',NULL), -('1114','C8 Pisces Code Blue Livery','Paints','UNDEFINED','6e83aa99-64a6-458d-b473-7a5ea3324eb7','','',NULL), -('1115','Gladius Dunlevy','Paints','UNDEFINED','820c52ef-3717-4ada-b5c9-4b4b34ee3e7d','','',NULL), -('1116','ARGO_MPUV_Thruster_Aux_Front_Top','ManneuverThruster','FixedThruster','60fcbbce-90a6-4bc9-a404-1781865657c4','','',NULL), -('1117','Deep-Space Undersuit River Rock','Armor','Undersuit','0bad23a8-3cfc-4009-a338-6e232c816eb7','','',NULL), -('1118','Carbon-Silk','Cargo','Cargo','5b94c9a1-1d8f-4f3f-b1d9-4287984638c8','','',NULL), -('1119','Quartz (Raw)','Cargo','Cargo','ae26a947-0af4-4d0b-b708-649ed6ba73f1','','',NULL), -('1120','Kamar Jacket','Char_Clothing_Torso_1','UNDEFINED','73aa68ba-3c46-4981-9cac-6247aed7711a','','',NULL), -('1121','Hair Care Product','Misc','UNDEFINED','c19c1fee-a069-4bf1-9b63-d6c8947b75fa','','',NULL), -('1122','Quell Suppressor3','WeaponAttachment','Barrel','66cba05f-9d37-4725-add1-d77f4ae36c87','','',NULL), -('1123','XNAA_SanTokYai_Thruster_Mav','ManneuverThruster','FlexThruster','6d8386d9-44f9-4763-a985-0dfb862e048b','','',NULL), -('1124','Syulen Harmony Livery','Paints','UNDEFINED','3595671c-b920-4394-9146-336e6d1d4e15','','',NULL), -('1125','HRST_LaserRepeater_PowerArray_S6','WeaponAttachment','PowerArray','d832c9b2-1040-410c-80bd-e8049f9d462a','','',NULL), -('1126','Seat','Usable','UNDEFINED','a0773100-abff-4238-be3b-49653f0161a9','','',NULL), -('1127','Seat','Usable','UNDEFINED','f655cae8-9916-457e-9030-cd05046cc23b','','',NULL), -('1128','P4-AR Rifle','Weapon','Medium','5d6c1c28-1589-4c72-8cc3-ff90f998dca3','','',NULL), -('1129','Door Control','ControlPanel','DoorPart','bda6c528-5e8a-4e87-9611-6a1a0033c10d','','',NULL), -('1130','ANVL_Spartan_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','25b735e0-66b5-4802-aa3a-26451557c9aa','','',NULL), -('1131','Gadget_Cabinet_kegr_fire_extinguisher_01_NoRN','Usable','UNDEFINED','d655280a-58cd-4783-9cf8-550ff3ada183','','',NULL), -('1132','TruBarrier Hazard Suit Mask Cinnabar','Char_Clothing_Hat','UNDEFINED','3f5cfa2d-30f3-4ac2-96da-d42b16f22f53','','',NULL), -('1133','ORIG_85X_Thruster_Mav_Fixed_04_Left','ManneuverThruster','FixedThruster','588f2182-672d-41ed-8eab-d6807ce2246f','','',NULL), -('1134','SHIELDS','ShieldController','UNDEFINED','c6f6ff9d-54e9-43a3-ac87-3e1ad0de1f31','','',NULL), -('1135','CoverAll','Shield','UNDEFINED','b14fb966-10f0-4207-8a41-2317798deccc','','',NULL), -('1136','AAT-34 Turret','Turret','MannedTurret','b3ad64dd-8ad9-4a6e-953b-08f87e32a253','','',NULL), -('1137','Door Control','Door','UNDEFINED','bd98c2f4-dbd2-4a60-89d7-defef4fd691f','','',NULL), -('1138','MISC_Starfarer_Gemini_Thruster_Aux','MainThruster','FixedThruster','3826ffd0-c5de-42e6-b40b-160b0cef9c53','','',NULL), -('1139','Amaris Shirt Fogforest','Char_Clothing_Torso_0','UNDEFINED','d4af9e5f-73e0-4d22-84f0-4d25a90407b1','','',NULL), -('1140','Wanderer','QuantumDrive','UNDEFINED','9e3ee84d-86f3-48f3-a4e0-e26899575c5b','','',NULL), -('1141','MRAI_Guardian_SeatAccess','SeatAccess','UNDEFINED','44516795-0788-4efe-8ca0-b964adbcaf56','','',NULL), -('1142','Remote Turret','Turret','PDCTurret','734bae36-5ffc-4f00-a4ed-d983d6cbe57a','','',NULL), -('1143','CRUZ Flow','Drink','Bottle','6a4006f3-95d0-4c77-b76d-fca8cc3747c4','','',NULL), -('1144','Shrimp Typhoon Burrito','Food','Junk','d3e2f617-458b-4351-964f-e41b81d2267d','','',NULL), -('1145','Venture Undersuit Orange/Black','Armor','Undersuit','a4f02a1d-85ae-4d70-9889-86618e58b894','','',NULL), -('1146','ANVL_Valkyrie_Thruster_Mav_Joint','ManneuverThruster','FlexThruster','d9f9ec2d-d1d2-4c54-b7a4-4f589c4392b5','','',NULL), -('1147','Delta (1x Reflex)','WeaponAttachment','IronSight','28fa64a1-2a7b-4bcc-9581-9b86c6ccae16','','',NULL), -('1148','Internal Tank','FuelTank','Fuel','8c2fd93a-4701-4a46-9b16-0095cb725db3','','',NULL), -('1149','ORC-mkX Core (XenoThreat)','Armor','Torso','d53605d4-6919-4859-9038-ec861df53ea2','','',NULL), -('1150','Door Control','ControlPanel','DoorPart','4d58249e-a341-4368-b2f5-53144e0f2110','','',NULL), -('1151','Door','Door','UNDEFINED','f712a9bb-ed09-480d-8695-b94c15490283','','',NULL), -('1152','MISC_Fury_LX_Thruster_FixedMav','ManneuverThruster','FixedThruster','9815da52-bbbc-4566-8136-8af177b91298','','',NULL), -('1153','MISC_Starlancer_Thruster_Retro','ManneuverThruster','FixedThruster','2ba7e371-caf3-4d04-a35d-5cc374ffcf65','','',NULL), -('1154','BEHR_LaserCannon_SF7E_Barrel_S7','WeaponAttachment','Barrel','7973ac14-c707-485a-abdc-5178ec9cf798','','',NULL), -('1155','Seat','Usable','UNDEFINED','d0e5855d-853d-4107-b74d-905d2f790a3f','','',NULL), -('1156','Stirling Exploration Suit Granite Edition','Armor','Undersuit','e5ecaf59-5342-4330-a127-db5af83477cd','','',NULL), -('1157','ORC-mkX Helmet Autumn','Armor','Helmet','68f9c769-41da-45bb-abfb-f76b8e35e497','','',NULL), -('1158','Door','Door','UNDEFINED','0cd5df6f-9852-4ecd-b28b-f3a2cb5c5764','','',NULL), -('1159','Bed','Usable','UNDEFINED','f16b874b-43ea-4f4b-9f37-4d7f1ded3db5','','',NULL), -('1160','Kino Shoes Yellow','Char_Clothing_Feet','UNDEFINED','54c52467-9f63-46a3-b71b-49831f494b42','','',NULL), -('1161','Pitambu','Cargo','Cargo','03386967-f4a8-41e5-bc55-33067672c848','','',NULL), -('1162','sc_nvy_bdu_boots_01_01_01','Char_Clothing_Feet','UNDEFINED','f7115c34-cb19-4b27-902b-2101858e445d','','',NULL), -('1163','Copper (Ore)','Cargo','Cargo','d19c7698-d468-4ac9-8d6e-a7e01cb62f20','','',NULL), -('1164','AvantX Glasses','Char_Accessory_Eyes','UNDEFINED','eddd508a-ed10-4b07-bfc5-dad7ae6fa462','','',NULL), -('1165','Keldur Hat and Midnight Goggles','Char_Clothing_Hat','UNDEFINED','3dd91cd9-9fd9-43a1-a5a9-5b59db1ca794','','',NULL), -('1166','Aluminum','Cargo','Cargo','7cc4576f-82e8-4e26-b8d2-49862e635d02','','',NULL), -('1167','Railing_Straight_2m_Hurston_Lorville_Glass_A','Usable','UNDEFINED','e4b5b2ee-62c0-4896-aabf-124aa8f61176','','',NULL), -('1168','TRGT. STATUS','Seat','UNDEFINED','050dbd60-3690-4641-b2c1-58f6d30d2734','','',NULL), -('1169','Cutlass Black Ship Armor','Armor','Medium','207f65ca-e81d-4069-818e-3d2d57e37272','','',NULL), -('1170','Antium Arms Sand','Armor','Arms','699b532b-69bc-4c1f-885f-7a82ff97e3c1','','',NULL), -('1171','Seat','Usable','UNDEFINED','1cf8cc76-29d0-4728-a3dc-0074fbeb6156','','',NULL), -('1172','QuikCool','Cooler','UNDEFINED','34334a56-0045-40e5-b573-5891e8e2dbbf','','',NULL), -('1173','Mivaldi Pants Red','Char_Clothing_Legs','UNDEFINED','03cdfb37-d44b-4a89-a323-f6526909217c','','',NULL), -('1174','INTK_MISC_Reliant_Kore','FuelIntake','Fuel','b88f2a6e-3bed-4255-9c9f-167ab2865b8e','','',NULL), -('1175','Horizon Helmet Green','Armor','Helmet','a1e09caa-9629-4a99-88ec-76fc83b7c9b1','','',NULL), -('1176','Door Control','Door','UNDEFINED','c8e8d8b5-ee98-4f42-939f-6c3190c4420c','','',NULL), -('1177','Aphorite','Cargo','Cargo','8587f42b-7726-4ae7-8057-5586667425c9','','',NULL), -('1178','Datapad','Misc','Gadget','a03cb469-685d-4e97-807a-eec32d4ab3f7','','',NULL), -('1179','Zeta-Prolanide','Cargo','Cargo','4f0d27f1-707a-451d-a34c-f9d57b24db26','','',NULL), -('1180','Toughlife Boots Blue','Char_Clothing_Feet','UNDEFINED','224ecbae-a531-4da0-8226-f1970c57c0e0','','',NULL), -('1181','Attrition-1 Repeater','Weapon','Gun','ed951ee5-0873-45e8-92b2-586a277f4ba6','','',NULL), -('1182','KRIG_l22_AlphaWolf_Thruster_Mav_Pipe_Left','ManneuverThruster','UNDEFINED','8573221a-9ab0-422c-9877-26aa4b990907','','',NULL), -('1183','MISC_Door_Decal_Hull_A_Habitation','Decal','DoorPart','27fbb172-a249-45df-b108-e190825ec61d','','',NULL), -('1184','Door Control','Door','UNDEFINED','60672855-f40f-4496-97d1-9b7ff6177465','','',NULL), -('1185','H_Dashboard_Projector_HUD_ANVL_Hornet_F7_Mk1','Display','UNDEFINED','9ca576a7-beb0-400b-a194-f27bc3aeafd9','','',NULL), -('1186','PAB-1 Legs','Armor','Legs','3714af80-6da5-4c42-8b78-60166d1b5987','','',NULL), -('1187','Strata Core Shubin Edition','Armor','Torso','27969031-d671-4eeb-bef0-a082fdf76cf1','','',NULL), -('1188','Sakura Fun White ORC-mkX Armor Bobblehead','Flair_Cockpit','Flair_Static','2b88b0eb-d7da-4894-a702-3767fa8327b8','','',NULL), -('1189','RSI_Aurora_CL_Thruster_Mav_Joint_01','ManneuverThruster','JointThruster','5a079d9b-7259-4787-953f-c9633dac7d11','','',NULL), -('1190','Detatrine','Cargo','Cargo','f5287765-7ef1-40fd-958f-82a951433b22','','',NULL), -('1191','Col Head Cover Yellow','Char_Clothing_Hat','UNDEFINED','f590cae6-9e24-427f-86a3-26fc7797742e','','',NULL), -('1192','Burgundy Paisley Bandana','Char_Clothing_Hat','UNDEFINED','c2753823-8519-4d54-9fd1-00cff7b1543d','','',NULL), -('1193','Seat','SeatAccess','UNDEFINED','733dbfdf-07e5-4abf-aad2-118469a6e857','','',NULL), -('1194','Snowpack','Cooler','UNDEFINED','04285ce3-561f-4377-b0db-c641e3fad1de','','',NULL), -('1195','Door Control','Door','UNDEFINED','e1ee703a-773b-433a-9c3e-66faa882c0e6','','',NULL), -('1196','Shipment','Misc','UNDEFINED','b03ecdaa-4329-430f-83c9-1cc18181b8d0','','',NULL), -('1197','m_human_mannequin_explorer','ShopDisplay','UNDEFINED','6b5cc3af-b81f-4f22-94bf-32997aa82844','','',NULL), -('1198','Carryable_1H_SQ_DataPad_Fluff_StormBreaker_DataFacility_Scientist','Misc','UNDEFINED','45d723de-8235-2467-7848-2eb3891aec8e','','',NULL), -('1199','TRGT. STATUS','Seat','UNDEFINED','35d5ab6a-7367-4da5-88c5-c2276c6e8398','','',NULL), -('1200','Citrus Rush Smoothie','Drink','Bottle','008402c2-14cd-4197-b4d8-cfba1ea46905','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('1201','Inquisitor Legs Rager','Armor','Legs','157125aa-4309-4899-a47a-73b3a9d42af0','','',NULL), -('1202','Inquisitor Legs Icefall','Armor','Legs','d21cbe8a-84c8-47fa-86b3-0079f7ecc6ec','','',NULL), -('1203','Test_OutpostMission_DataPad_KeyCode_4x3_Screen_6','Display','UNDEFINED','66f3c7a5-294b-4830-b3a6-fae8bb2249e7','','',NULL), -('1204','AEGS_Javelin_CargoGrid_XL','CargoGrid','UNDEFINED','5df9deb7-331e-4d51-a2a8-0f0d58db0923','','',NULL), -('1205','Internal Tank','FuelTank','Fuel','307a6531-2a98-4984-bec5-e4e95e4a718c','','',NULL), -('1206','Drivetrain','WheeledController','UNDEFINED','394a67c7-db2c-4b8a-80ef-769212a708a3','','',NULL), -('1207','Morozov-SH Core Aftershock','Armor','Torso','e336099a-97ec-4f22-8530-1382a89e07db','','',NULL), -('1208','Aves Starchaser Core','Armor','Torso','b2e217db-549b-4f2e-93cd-a82550e00a9c','','',NULL), -('1209','Corundum (Raw)','Cargo','Cargo','2c67984f-3eb5-46b9-bb48-a54a1ab0b9be','','',NULL), -('1210','AEGS_Avenger_PrisonPod_4','Usable','UNDEFINED','13567984-3177-413b-84e1-a411a68a35ca','','',NULL), -('1211','Container','Container','UNDEFINED','786ffb69-9c38-43d0-a982-5026fd53969c','','',NULL), -('1212','Manned Turret','TurretBase','MannedTurret','59abe86c-73b9-4c3e-b2e5-a0da950f2f65','','',NULL), -('1213','Elevator Control','Elevator','UNDEFINED','1d0fb02e-6794-413a-a959-acd7a67b13fc','','',NULL), -('1214','Bar_station_3spots_MMHC','Usable','UNDEFINED','06d9a7a3-907e-45eb-9e57-108b132774d9','','',NULL), -('1215','BEHR_LaserCannon_FiringMechanism_S6','WeaponAttachment','FiringMechanism','96cc9027-a539-4185-bada-3252eb467e0b','','',NULL), -('1216','Auorora Mk I Disco Livery','Paints','UNDEFINED','bc3c5ded-5192-42aa-90b4-fa122aaf676f','','',NULL), -('1217','Tungsten (Ore)','Cargo','Cargo','0478303e-7d44-4510-811a-b0ae7b6eaede','','',NULL), -('1218','ORIG_X1_Velocity_NoseCone','Misc','UNDEFINED','ca35f55b-d376-4f56-b9f1-4a97e78eb601','','',NULL), -('1219','Paint_Ballista_Black_Sand_Stripe','Paints','UNDEFINED','03d115e3-7ca7-46f0-a210-92f284f3ecfe','','',NULL), -('1220','ARGO_MOTH_Thruster_Mav_Joint','ManneuverThruster','JointThruster','417efca6-553b-4527-a2ad-4549dfa64508','','',NULL), -('1221','CNOU_Mustang_Thruster_Aux','MainThruster','FixedThruster','9973aae2-1e6b-4b61-b072-2681302b11d3','','',NULL), -('1222','VariPuck S3 Gimbal Mount','Turret','GunTurret','7646e90a-4f99-4209-883e-07d429529115','','',NULL), -('1223','Combat Supplies','Cargo','Cargo','1fc2c36e-9258-41da-865f-91a63e0e422e','','',NULL), -('1224','Dolivine','Cargo','Cargo','70e773a8-d44f-4e34-b9fa-14492845b12a','','',NULL), -('1225','One Light Undersuit Teal','Armor','Undersuit','906c950f-ec53-4671-8e02-fdfcc5167cdf','','',NULL), -('1226','Faction Jacket Red','Char_Clothing_Torso_1','UNDEFINED','a737d3f7-dadb-4c60-b1cc-ba48a79376a9','','',NULL), -('1227','Venture Legs Purple','Armor','Legs','959efb23-1a62-4c27-a37a-d92cdebc21d1','','',NULL), -('1228','ANVL_Pisces_C8R_Siren','Container','UNDEFINED','9acbc9e8-ff91-42cf-84a8-3b2448cdbfc9','','',NULL), -('1229','BRVS Repeater','Weapon','Gun','a4f4afa6-aa15-46e4-9327-c27250c3ea83','','',NULL), -('1230','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','48d0c868-2cb0-4169-b43e-45f7678832b7','','',NULL), -('1231','MSD-481 Missile Rack','MissileLauncher','MissileRack','a0741b9e-b0a2-4c6c-935f-2492a60ea90f','','',NULL), -('1232','Sabine Undersuit Starchaser','Armor','Undersuit','a1490b6f-36f9-46fa-bca5-45c1e4830094','','',NULL), -('1233','Seat','SeatAccess','UNDEFINED','f853d0a9-89bd-4605-8ed3-b25571bd30d0','','',NULL), -('1234','Carryable_2H_CU_universal_plastic_crate_a','Misc','UNDEFINED','8102b4f8-eb47-4212-a673-f45f806136ed','','',NULL), -('1235','Year of the Rooster Envelope','Misc','UNDEFINED','6e947ccc-9cc4-4ba2-a5a5-6343fc9ab904','','',NULL), -('1236','ControlPanel_Screen_CustomButtons','ControlPanel','DoorPart','d87c234f-0900-4e78-a02f-8379d88554ba','','',NULL), -('1237','Arden-SL Helmet Coramor Edition \"Kismet\"','Armor','Helmet','712e37de-3d0b-4884-8035-3b198f2a2847','','',NULL), -('1238','ARMR_CRUS_Starfighter_Inferno','Armor','Medium','317bb267-9fb9-48f5-8881-f209fa447b68','','',NULL), -('1239','shelf_shoe_1_highend_a','ShopDisplay','Default','6b1389c4-fe41-4a1e-b0ae-34caff050572','','',NULL), -('1240','Internal Tank','FuelTank','Fuel','5e0e704c-0b62-40f9-b76d-836b4b093932','','',NULL), -('1241','Ripper SMG Battery (60 cap)','WeaponAttachment','Magazine','3468f853-8bcc-450c-a4fe-f70f6e391301','','',NULL), -('1242','Chrome Dome Head Gear Striker','Char_Clothing_Hat','UNDEFINED','3c6b1cde-7c5e-4cac-9d34-b91bb088d824','','',NULL), -('1243','Aurora Mk I Crusader Livery','Paints','UNDEFINED','d781f892-3315-4623-9d2a-dade0561cdd6','','',NULL), -('1244','Lynx Core Abyss','Armor','Torso','3f2d07fa-20bc-44ea-a7da-324890122fea','','',NULL), -('1245','Weapon_Rack_1_Volt_Shotgun_Common_001','Usable','UNDEFINED','631346a3-847c-4a3a-ac89-5dfde1a91917','','',NULL), -('1246','MSD-543 Missile Rack','MissileLauncher','MissileRack','caff4c8a-de5c-4378-bdbf-04a1206c4519','','',NULL), -('1247','Book','Misc','UNDEFINED','ff8db27c-b0ae-4f39-acc2-b40c1d9bf010','','',NULL), -('1248','RSI_Aurora_ES_Thruster_Main','MainThruster','FixedThruster','d5bbdf92-62b1-4210-a361-cceafaf16c91','','',NULL), -('1249','Controller_Mining_Vehicle_ROCds','MiningController','UNDEFINED','97e66378-631a-4657-8df8-852b3f5146c0','','',NULL), -('1250','Elespo','Cargo','Cargo','acbd6f38-1fa7-4799-af0e-d4d98f71f4c0','','',NULL), -('1251','Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','4896e3cd-b8ba-4ded-af9b-4c581e704a3c','','',NULL), -('1252','Menarik','Misc','UNDEFINED','59ea8f20-a2db-44e2-8e42-c7032d2f75ce','','',NULL), -('1253','Access','SeatAccess','UNDEFINED','0a9f477d-2498-436e-9bfd-0333dd5d1d61','','',NULL), -('1254','Flight Blade','FlightController','UNDEFINED','945df25d-3abc-4529-b8d0-80634372adc0','','',NULL), -('1255','Salt','Misc','UNDEFINED','0bae07d8-fde6-4a7c-a980-7a106dbaebed','','',NULL), -('1256','ORC-mkV Core Covalex Edition','Armor','Torso','26ae8404-354e-4071-98b4-f09ec5db03aa','','',NULL), -('1257','ARGO_SRV_Thruster_Main','MainThruster','UNDEFINED','e0da4e56-0dd4-4c3a-ae24-4db73ad56087','','',NULL), -('1258','Cassidy Shirt Cloudcover','Char_Clothing_Torso_0','UNDEFINED','60eceb13-cf4e-49ae-8814-4a793fb38f38','','',NULL), -('1259','Flight Blade','FlightController','UNDEFINED','059b20c7-0211-434f-a759-8066d8858c79','','',NULL), -('1260','Borase','Cargo','Cargo','a0147acd-0011-4284-96ff-8f3007d9cfdf','','',NULL), -('1261','TMBL_Nova_Dashboard_Driver','SeatDashboard','UNDEFINED','4f7c55b6-0c3b-4c90-8f9d-63a1ac4290fa','','',NULL), -('1262','Redeemer PHB Flight Blade','FlightController','UNDEFINED','772e7f0f-e290-4bf3-82e8-aba24d140b52','','',NULL), -('1263','Door','Door','UNDEFINED','2451b77e-690d-47f3-af9c-7b864598a1a0','','',NULL), -('1264','Ventra Gloves Yellow','Char_Clothing_Hands','UNDEFINED','8d74f8a5-75a3-4968-8fc6-45c5ffd537f0','','',NULL), -('1265','Door Control','Door','UNDEFINED','958c0da1-20bd-4c2d-812e-0b6f4c85ba09','','',NULL), -('1266','ORIG_890_Jump_Thruster_Main_BL','MainThruster','FixedThruster','e3db7479-ecdd-474e-a611-a710ba779fbf','','',NULL), -('1267','Internal Tank','QuantumFuelTank','QuantumFuel','a8fbfbf5-ace4-4b06-8cb4-ca14a11498e7','','',NULL), -('1268','Door_Ship_Sensor_Proximity_4x6x1_6','Sensor','DoorPart','044e9660-3c83-4a67-a0de-8caa28c2d234','','',NULL), -('1269','Seat','Usable','UNDEFINED','6e984a89-d25e-41df-baae-111ff20c2a8b','','',NULL), -('1270','ADP-mk4 Legs (Modified)','Armor','Legs','ca506d0e-7b7d-45d6-afd2-f252cc23e96c','','',NULL), -('1271','Day One Shirt Dark Red','Char_Clothing_Torso_0','UNDEFINED','fe6f17b1-597e-44c0-9003-d8cbd321c212','','',NULL), -('1272','Mirage','Shield','UNDEFINED','94807046-b89e-422d-8bbc-f914b1cbc08d','','',NULL), -('1273','mobiGlas Crimson Casing','MobiGlas','Personal','010b8caa-9779-4e3c-bdfa-fa006aa13fe2','','',NULL), -('1274','Door Control','ControlPanel','DoorPart','d9bcd0c2-5f96-4103-89d4-504695e56287','','',NULL), -('1275','Locker_RSI_Constellation','Player','UNDEFINED','22af9bf8-e371-46f1-8ab0-b51730a2004a','','',NULL), -('1276','Bed','Usable','UNDEFINED','fd2018e0-0d46-4441-8391-fe0dd11434e5','','',NULL), -('1277','Golden Medmon','Cargo','Cargo','e569f683-ce0e-4af9-aced-d18edab76492','','',NULL), -('1278','Microid Battle Suit Legs Nomad','Armor','Legs','df348bc3-0873-458e-ba26-df3022183825','','',NULL), -('1279','H_Dashboard_Projector_HUD_AEGS_Sabre','Display','UNDEFINED','08978f4a-1bbb-41e4-9c14-3757f6e604e9','','',NULL), -('1280','Carinite (Pure)','Misc','Harvestable','9904aaa2-9a13-48d2-a48d-7494e60d012f','','',NULL), -('1281','Artimex Core Wildwood','Armor','Torso','2a3285d9-438a-4ead-ada7-66d45abb7174','','',NULL), -('1282','Vivant Shoes Dark Blue','Char_Clothing_Feet','UNDEFINED','2ac92162-0375-4f28-a38c-6d9b03eee863','','',NULL), -('1283','TruBarrier Hazard Suit Mask Slate','Char_Clothing_Hat','UNDEFINED','9abc859a-7140-4c82-9936-12a3351eae37','','',NULL), -('1284','Door Control','ControlPanel','DoorPart','0c4c37c8-6ab0-4d34-847c-d590a57ebb06','','',NULL), -('1285','Gold','Cargo','Cargo','7f2095b5-0c58-49a5-a168-2adaf3473e93','','',NULL), -('1286','Door Control','ControlPanel','DoorPart','e71ce344-4e54-4bf8-a6df-f1fa18b3eb6e','','',NULL), -('1287','MASTER_box_carryable_2h','Cargo','UNDEFINED','aece4ade-6425-4eaf-90e8-4561c7c223d9','','',NULL), -('1288','E\'tam','Cargo','Cargo','5d2d591c-cbcc-408a-977c-1c3860964c89','','',NULL), -('1289','Big Barrys T-Shirt','Char_Clothing_Torso_0','UNDEFINED','78b9ad7b-461c-480f-b624-aef33dc8013e','','',NULL), -('1290','Stinger Meridian Livery','Paints','UNDEFINED','fec0eafa-22d7-4494-a74e-1f385a488371','','',NULL), -('1291','Drake Ore Pod','Container','Cargo','4c2d5e75-598a-4854-a301-7bbffeb9794e','','',NULL), -('1292','Aril Helmet (Modified)','Armor','Helmet','b0e84e8c-321d-4cd9-9d2c-33d657b05639','','',NULL), -('1293','Seat','Usable','UNDEFINED','f7964543-6bd6-4ea7-8736-af54a0187467','','',NULL), -('1294','Captain\'s Mix Sandwich','Food','Junk','a0d199ab-e5e5-4a3a-a12f-0b85ae376bae','','',NULL), -('1295','Citadel Legs Brimstone','Armor','Legs','5a400291-2a72-4221-aca7-1d8c8012f0ae','','',NULL), -('1296','RSI_Aurora_GS_MR_Thruster_Main','MainThruster','FixedThruster','50778663-82c1-43e1-8dbf-670e587d47f2','','',NULL), -('1297','m_human_mannequin_legacy_outlaw_medium','ShopDisplay','UNDEFINED','4ec542ea-b8cb-4916-a049-77aea28c5565','','',NULL), -('1298','ANVL_Hornet_F7CM_Thruster_Main','MainThruster','FixedThruster','53bf0a2d-2d97-4bfd-a5d6-bd2b384dfd89','','',NULL), -('1299','Arden-SL Arms Archangel','Armor','Arms','f49b49ad-b486-4bf4-8dfe-7848f04c1b59','','',NULL), -('1300','Altruciatoxin','Cargo','Cargo','f44c878e-51d7-42d3-a0ac-a8acfb732517','','',NULL), -('1301','Dashboard','SeatDashboard','UNDEFINED','1f379282-299d-4d18-a65a-da808d817a00','','',NULL), -('1302','K7 Pants Violet','Char_Clothing_Legs','UNDEFINED','df7b47f1-f6bc-4b0d-b315-eae6afc109f9','','',NULL), -('1303','JS-400','PowerPlant','Power','f1763688-a3b6-496e-8d62-3e40e2098661','','',NULL), -('1304','display_ship_components_02x0075x0275_a_s0','ShopDisplay','UNDEFINED','6c58ed16-64bd-4278-bdac-859c00eae248','','',NULL), -('1305','Pulse Undertow Livery','Paints','UNDEFINED','e8d5ea81-fe4c-4763-8b8c-39e42cec0387','','',NULL), -('1306','TRGT. STATUS','Seat','UNDEFINED','81cd8e9f-85d4-4384-a6f6-fb9b0e9fa45d','','',NULL), -('1307','ARGO_MOTH_Thruster_Retro','ManneuverThruster','Retro','c7f7a848-55c0-433d-b5b2-2c8d4cbdc486','','',NULL), -('1308','Taranite','Cargo','Cargo','aaf59578-8e2f-41ac-841d-df76579455b9','','',NULL), -('1309','Crestfall Shoes','Char_Clothing_Feet','UNDEFINED','2c23cdb4-43e3-4539-b3df-b7359a109963','','',NULL), -('1310','Construction Pieces','Cargo','Cargo','ebf4c29a-012e-4e02-ac3b-3c166b2283b6','','',NULL), -('1311','Morozov-CH Backpack Lifeforce','Armor','Backpack','5eb572f2-236d-4650-a8d0-47a81293d91d','','',NULL), -('1312','DockingTube_Fuel_Ports_ARGO_RAFT','DockingCollar','UNDEFINED','8dfeeffa-687f-4a2b-8801-c4983f916435','','',NULL), -('1313','TRGT. STATUS','Seat','UNDEFINED','3b5df413-26e7-4663-a3fe-b00f258646c1','','',NULL), -('1314','Seat','Usable','UNDEFINED','f1eacf57-330b-4d3e-85e8-b59b86cece5a','','',NULL), -('1315','Carinite','Cargo','Cargo','ab7ca04f-0ea9-4b42-b48e-ec7c18df9075','','',NULL), -('1316','Door Control','Door','UNDEFINED','3622e95c-7906-4d10-a968-12180b319d07','','',NULL), -('1317','Chlorine','Cargo','Cargo','cb2fd95d-6d29-44ab-90af-c51a14213efe','','',NULL), -('1318','Carnifex Armor Legs','Armor','Legs','9b5f61f6-ea52-4c42-a95e-d99a51e8d84c','','',NULL), -('1319','AEGS_Retaliator_Module_Front','Module','UNDEFINED','828f71fd-9ca7-4802-8306-253f744a2705','','',NULL), -('1320','Ling Family Container Model','Misc','Flair_Wall_Picture','f64a1518-c197-4d69-84ce-1813effb6425','','',NULL), -('1321','ORIG_X1_Thruster_Retro_Velocity','ManneuverThruster','FixedThruster','8484b572-73e5-462f-8692-61e40f084508','','',NULL), -('1322','resource_relay_3_slot_standing_col','Cargo','UNDEFINED','040e5cf2-a41e-4770-aa7e-f20e72002530','','',NULL), -('1323','FocalWave-30 (3x Holographic)','WeaponAttachment','IronSight','1f799599-a91a-410f-848e-eca2bd41ae5d','','',NULL), -('1324','Valakkar Fang (Juvenile)','Misc','Harvestable','e3522bd2-4420-4b3a-8679-7fc929411e85','','',NULL), -('1325','Obscura','Shield','UNDEFINED','5f3fced2-3c4a-4a50-8a3e-4ba36064854c','','',NULL), -('1326','sc_nvy_bridgeofficer_lieutenant_jacket_01_01_01','Char_Clothing_Torso_1','UNDEFINED','0ba67856-f713-4f7b-877a-fd4ddf6ab841','','',NULL), -('1327','un_jar_glass_2_berries_c','Misc','UNDEFINED','8cce60cf-d346-437c-907e-807ba95304a8','','',NULL), -('1328','Door_ChipReader_PAF_OLP','Door','UNDEFINED','40b2e587-856c-4f7b-a53a-440528204148','','',NULL), -('1329','ST-171 Missile Rack','MissileLauncher','MissileRack','95973e2d-a15b-4d6d-8ea1-e83108396f57','','',NULL), -('1330','ARGO_MPUV_1T_Thruster_Main_Fixed','MainThruster','FixedThruster','a597e878-4163-4d40-a191-735758c986ae','','',NULL), -('1331','Overlord Helmet Gilded','Armor','Helmet','8b5b6efe-43bf-4830-aae8-cfe756c30c87','','',NULL), -('1332','RSI_Scorpius_Antares_SCItem_Dashboard_MissileControl','SeatDashboard','UNDEFINED','0a091db1-102a-44ed-9e84-31378606ec80','','',NULL), -('1333','2Tuf Gloves','Char_Clothing_Hands','UNDEFINED','8bdbbce9-500e-4fa9-ae9e-4541670dfe27','','',NULL), -('1334','Remote Turret','Turret','GunTurret','9efcaa00-869f-4235-9105-25b67afe6e83','','',NULL), -('1335','Stud','Char_Head_Piercings','UNDEFINED','99068cb9-e006-4eb7-854f-b3b5bad53c61','','',NULL), -('1336','Table_Booth_4_Seat_ARGO_SRV','Usable','UNDEFINED','85a57b0d-cd41-4f6b-bee5-28f7af155b81','','',NULL), -('1337','SF7E Cannon','Weapon','Gun','25ebe37d-5fdd-4319-ad41-71d768b5bed4','','',NULL), -('1338','Ardent Boots Imperial','Char_Clothing_Feet','UNDEFINED','bda31c85-96fc-4ca6-b223-bbcc151c6e04','','',NULL), -('1339','Palatino Helmet Moonfall','Armor','Helmet','4f7a0a87-41f7-4157-bd67-faf15c29934b','','',NULL), -('1340','Seat_Jump_DRAK_Cutlass_Black','Usable','UNDEFINED','1095c00f-86fe-40ae-a57a-0710daa71052','','',NULL), -('1341','Diamond','Cargo','Cargo','921609af-5166-4509-a609-13f06de20c50','','',NULL), -('1342','m_human_mannequin_base_armor_Collector_GG_Venture','ShopDisplay','UNDEFINED','ebcb7cd8-628f-4b65-a164-6c45013ba62e','','',NULL), -('1343','MedGel','Cargo','Cargo','5c130321-b30e-4f0f-9336-ce8701d760b5','','',NULL), -('1344','Aegis Sabre - Noise Launcher','WeaponDefensive','CountermeasureLauncher','bbc04262-a5cb-41c0-88d8-d49eff08a577','','',NULL), -('1345','Falston Jumpsuit \"Greycat Edition\"','Char_Clothing_Torso_1','UNDEFINED','445c8d6a-4cab-4c4b-932a-227938a6d194','','',NULL), -('1346','Fury Nightwatch Livery','Paints','UNDEFINED','5a45adcb-1b69-4506-a717-6cfdd7e87e01','','',NULL), -('1347','Railing_Straight_2m_Microtech','Usable','UNDEFINED','befeb0f2-6bed-47aa-9b92-61e1f05aa984','','',NULL), -('1348','Armor_Crate_CZ_Firerat_001','Usable','UNDEFINED','011aedd0-3c6b-4972-b47f-f08b38888103','','',NULL), -('1349','ADP Arms Black','Armor','Arms','e433a9c7-776b-41e1-8bb7-a5bc0312a375','','',NULL), -('1350','Geist Armor Legs Rogue','Armor','Legs','9fa29481-192f-48ce-bc15-8108a46c63ed','','',NULL), -('1351','box_fabric_1_005x005x005_b_v001','Cargo','UNDEFINED','ef60ea79-52d5-4132-b355-d30cd5ed02fa','','',NULL), -('1352','ViseLock S3 Tractor Beam','SalvageHead','UNDEFINED','1d92edcc-21c8-4a41-aa1d-9b46daa1ee94','','',NULL), -('1353','Covalex_Datapad_DoorCodes_4x3_Screen','Display','UNDEFINED','a394d1b3-bf84-4173-95f2-03b0f934533d','','',NULL), -('1354','UrbEx Boots Scarlet','Char_Clothing_Feet','UNDEFINED','13dc5de5-7e9a-49cf-9473-627c26ec5db5','','',NULL), -('1355','Quantainium','Cargo','Cargo','fa79d61c-06ef-414a-bfd0-d8c248edb76e','','',NULL), -('1356','Internal Tank','FuelTank','Fuel','ec4e8591-528d-481f-8642-c4eb84a757d3','','',NULL), -('1357','Palatino Arms Shadow Gild','Armor','Arms','34b01931-3eb1-4fea-b02a-d243d3474514','','',NULL), -('1358','Dopple','Cargo','Cargo','0c1507bc-c268-4951-9da2-d83c38924f23','','',NULL), -('1359','Caudillo Helmet Hazard','Armor','Helmet','c801ca7e-3e0f-4477-ba86-d5b5b8cfb779','','',NULL), -('1360','Door Control','Door','UNDEFINED','b12e57b8-b8c7-46d1-b6e1-b20bc8915f7b','','',NULL), -('1361','Vehicle_Screen_Physical_L22_R','Display','UNDEFINED','aa767c5b-e10d-4386-9851-7aca06a35cca','','',NULL), -('1362','Corsair Dying Star Livery (Modified)','Paints','UNDEFINED','0a0780c3-1d52-4977-894e-83b372aa61d2','','',NULL), -('1363','Fury Fortuna Livery','Paints','UNDEFINED','0c7d0309-7731-4171-a707-20c001a0510a','','',NULL), -('1364','Overlord Helmet Cardinal','Armor','Helmet','ef44127b-2751-41bf-98d0-25e886bb54b4','','',NULL), -('1365','Defiance Legs Firestarter','Armor','Legs','f0e4f43a-a0fa-4388-b536-97f2343c02ee','','',NULL), -('1366','Deadrig Shotgun Magazine (8 cap)','WeaponAttachment','Magazine','1b00b884-79eb-4b3b-916f-1b3ebe4c7c76','','',NULL), -('1367','Good Boot','Char_Clothing_Feet','UNDEFINED','ea73662f-7910-4156-836f-54944a569345','','',NULL), -('1368','RSI_Perseus_Thruster_Retro_Front_Bottom_Left','ManneuverThruster','Retro','02660f1b-9ffe-4c53-a737-715f634803ac','','',NULL), -('1369','Origin Jumpworks 300i Front Cargo Bay','Door','UNDEFINED','8010c434-5180-48c6-9faa-28d1355542c6','','',NULL), -('1370','Tritium','Cargo','Cargo','ebdc24b6-dd45-4236-88df-ccf07edc3a20','','',NULL), -('1371','Cutlass Skull and Crossbones Livery','Paints','UNDEFINED','d75eae08-f688-4b42-9c7b-ee510c0f66c6','','',NULL), -('1372','Ventris Jumpsuit Crusader Edition Light Blue / Dark Teal','Char_Clothing_Torso_1','UNDEFINED','098af6ef-ecba-4229-ae66-9d9091f9b99d','','',NULL), -('1373','Internal Tank','QuantumFuelTank','QuantumFuel','6b20c031-d5ad-4036-86f4-54738f0add51','','',NULL), -('1374','Iodine','Cargo','Cargo','c786460a-e727-4c1c-9f39-fb743550fe03','','',NULL), -('1375','hd_showcase_middle_screen_large_a','ShopDisplay','Default','fe2f448d-60eb-4254-9766-63880db719c6','','',NULL), -('1376','Palatino Arms Moonfall','Armor','Arms','bcadecab-e062-4b97-8d82-8b52e795bdec','','',NULL), -('1377','Seat_Jump_ESPR_Prowler','Usable','UNDEFINED','347583ff-ab69-4f33-9e4f-3437a0ed7b34','','',NULL), -('1378','Predator','Radar','MidRangeRadar','8e6d2e32-dce8-4762-9fc5-b9def5e1e2ac','','',NULL), -('1379','KRIG_P52_Merlin_Thruster_Mav_Lateral_L','ManneuverThruster','JointThruster','3f6ea91b-1f3b-4173-ae36-312895cc42d4','','',NULL), -('1380','Turret','Turret','GunTurret','6994ed1d-c9d8-497c-9f0f-61fb3d052ff5','','',NULL), -('1381','Radar_Display_Screen_ARGO','Display','UNDEFINED','94c7fa49-995e-4c90-a5b3-ccb736a29963','','',NULL), -('1382','HRST_LaserScatterGun_Ventilation_S2','WeaponAttachment','Ventilation','83869905-fe6a-4685-935f-9ad871f10dd2','','',NULL), -('1383','Dovo Shoes','Char_Clothing_Feet','UNDEFINED','f9e213d6-fee9-403a-8803-9dc086e068d3','','',NULL), -('1384','Aslarite','Cargo','Cargo','d17e1462-721e-4480-89e1-fef8f3806f61','','',NULL), -('1385','INTK_AEGS_Gladius','FuelIntake','Fuel','caa39cbb-e87b-4570-b655-8b6540512c8c','','',NULL), -('1386','Aslarite (Raw)','Cargo','Cargo','b2e7271a-5c3d-4b32-93c5-415a8271fa4b','','',NULL), -('1387','box_metal_1_005x005x005_a','Cargo','UNDEFINED','9460b4e3-eb3a-497e-af44-97257b337a59','','',NULL), -('1388','SHIELDS','ShieldController','UNDEFINED','c8dfd4f7-fff6-4566-8d56-9bdd02dd1a07','','',NULL), -('1389','Aslarite','Cargo','Cargo','bcbe9836-2fa0-4d75-8522-a01383230295','','',NULL), -('1390','Railing_Straight_4m_Lowtech_Bravo_Open_B','Usable','UNDEFINED','f9b96421-8fbc-42b6-a068-85fd5f2f984f','','',NULL), -('1391','Tempo Jacket Gold','Char_Clothing_Torso_1','UNDEFINED','4e8d6ec6-4aff-4250-8606-9e8b7b864387','','',NULL), -('1392','Foundation Pants Olive','Char_Clothing_Legs','UNDEFINED','5557b02e-d6c1-4b59-b1dd-8069f7ef15a6','','',NULL), -('1393','LeMarque Pants White','Char_Clothing_Legs','UNDEFINED','74c4ef6b-d3b6-4bff-a148-6330c12ed016','','',NULL), -('1394','BEHR_LaserCannon_PowerArray_S6','WeaponAttachment','PowerArray','9bab7a48-b6fc-4b3b-b6b8-eee42f3249d7','','',NULL), -('1395','Inquisitor Arms Grey','Armor','Arms','aae8c380-283b-475b-8a61-1b32afcdeb1c','','',NULL), -('1396','Bed','Usable','UNDEFINED','3b5b1aee-a255-4d7e-a519-1806cb3d3297','','',NULL), -('1397','Internal Tank','FuelTank','Fuel','7f4a396f-51e0-4237-a7b0-4b0d71986f2c','','',NULL), -('1398','Seat','Usable','UNDEFINED','3987a862-67c1-45c9-b503-f12b201308a2','','',NULL), -('1399','ESPR_LaserCannon_Barrel_S6','WeaponAttachment','Barrel','66615a7c-906a-45d4-bcb2-a4e7de148ce9','','',NULL), -('1400','Carryable_2H_FL_MissionItem_covalex_empty_damaged_a','Misc','UNDEFINED','5c936483-bdf8-458e-a1c6-ef80a67f3ba3','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('1401','Hephaestanite','Cargo','Cargo','faf0233a-efa2-4861-8e26-0750bb1513db','','',NULL), -('1402','Manned Turret','TurretBase','MannedTurret','f0921afb-25dd-4595-bd9d-139f227a7856','','',NULL), -('1403','Altruciatoxin','Cargo','Cargo','6011dd41-b6c1-40fb-a7bf-c25210ebaff3','','',NULL), -('1404','Door Control','Door','UNDEFINED','3482a8a5-3579-41d7-9caf-a4c9a05bb0b6','','',NULL), -('1405','Paint_Prowler','Paints','UNDEFINED','e162275e-69da-453f-9be3-c06ae447286d','','',NULL), -('1406','test_SuitHelmet','Suit','Helmet','74f383ac-6d6e-4af6-ab0d-fa17c642684b','','',NULL), -('1407','SafeCore Boots Armadillo','Char_Clothing_Feet','UNDEFINED','009eb97b-d6bf-4e23-b525-2002227668b0','','',NULL), -('1408','Inquisitor Legs Orange','Armor','Legs','824c2f79-8316-438f-91ad-72eafde6c00c','','',NULL), -('1409','CBH-3 Helmet Sakura Sun Edition','Armor','Helmet','821aa902-605b-4e1c-9d1b-2a0c9687b021','','',NULL), -('1410','can_drink_3_fizzz_shop_2x5_a','ShopDisplay','Default','d1be1657-b5de-4e3d-b1f4-4a3d7d758835','','',NULL), -('1411','Personal Storage','Cargo','UNDEFINED','cfb4851b-2f5b-4ab2-bc22-4c3fbc0b5718','','',NULL), -('1412','Prestige Origin Racing Jacket','Char_Clothing_Torso_1','UNDEFINED','33aed3ba-e1c0-49c0-964e-840defe4f741','','',NULL), -('1413','Aegis Redeemer Ship Armor','Armor','Medium','fa5be128-c861-4d4e-a44f-34832937a1aa','','',NULL), -('1414','Ursa IceBreak Livery','Paints','UNDEFINED','d759133b-94ff-4076-a302-16bc7f41d561','','',NULL), -('1415','Vent Slug','Food','Harvestable','bfa3fb80-fd27-4c56-a51e-f068798b530e','','',NULL), -('1416','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','3eb375dc-aa6f-4f5d-b395-3ba500ee6d50','','',NULL), -('1417','Weapon_Ship_Cz_008','Usable','UNDEFINED','c6d45e38-b17a-4226-acf0-ed9bea6da0e7','','',NULL), -('1418','Aslarite (Raw)','Cargo','Cargo','f7ef778e-e9ff-422b-b77c-0fa63a26fc5f','','',NULL), -('1419','Cirrus Boots Teal','Char_Clothing_Feet','UNDEFINED','37656f65-c75c-4b68-a09c-5c200392c98c','','',NULL), -('1420','ANVL_Pisces_Thruster_Mav_Fixed_C8X','ManneuverThruster','FixedThruster','78f9d111-3af4-4904-9287-a52ad11c4a8e','','',NULL), -('1421','Morningstar Helmet Base','Armor','Helmet','23336c99-54c1-4c76-beac-ee1104ec3bba','','',NULL), -('1422','Tritium','Cargo','Cargo','101cd280-4910-4e85-89a5-556ae13540c9','','',NULL), -('1423','display_components_pallet_250x125x025_b','ShopDisplay','UNDEFINED','4bff94c8-8b8e-46f1-9f37-87314eeb78f3','','',NULL), -('1424','Manned Turret','TurretBase','MannedTurret','436f6c47-c13c-4a14-b3de-f27f34dc229b','','',NULL), -('1425','DCP Armor Arms Clawed Steel','Armor','Arms','612dc3d1-67f4-4677-ae92-87a2dbe47b23','','',NULL), -('1426','ORC-mkX Legs Righteous','Armor','Legs','895ed7c8-e6f7-4b25-973e-133f2e6cc114','','',NULL), -('1427','Renegade Helmet Desert','Armor','Helmet','7ef751cd-1cab-4893-b582-19f1862ff960','','',NULL), -('1428','Falston Jumpsuit \"ArcCorp Edition\"','Char_Clothing_Torso_1','UNDEFINED','f8380897-7204-4268-8a8f-cbbfc8bc2a09','','',NULL), -('1429','facial_hair_053','Char_Head_Beard','UNDEFINED','fbc06654-9964-479c-8af4-26285cec53d7','','',NULL), -('1430','CRUS_Spirit_C1_Blanking_Plate_Collector','Misc','UNDEFINED','96d53db4-01b7-44c0-be64-7aea76ffbcf3','','',NULL), -('1431','Hermes Tripline Livery','Paints','UNDEFINED','092c9d3a-4fe7-4d86-a131-7aa07a834cb8','','',NULL), -('1432','Door Control','Door','UNDEFINED','c3f51de2-3416-49e6-8646-19469255fdef','','',NULL), -('1433','ANVL_Hornet_F7CM_Mk2_Dashboard_Pilot','SeatDashboard','UNDEFINED','74b32530-4e16-4ca9-875a-35064109785d','','',NULL), -('1434','ANVL_Pisces_BayDoor','Container','UNDEFINED','9c30fd62-2c26-4ecd-ac00-58459004231c','','',NULL), -('1435','INTK_MISC_Starfarer','FuelIntake','Fuel','9c1ad2b5-e01f-4b09-89ed-20ad62950bd1','','',NULL), -('1436','sc_nvy_bdu_engineer_belt_01_01_01','Char_Clothing_Torso_2','UNDEFINED','3608082d-fcc2-4e61-b970-f5e5ea93f407','','',NULL), -('1437','Tempo Jacket (Modified)','Char_Clothing_Torso_1','UNDEFINED','351eacb5-9494-46fd-ad43-84beffc6b448','','',NULL), -('1438','Guerra Pants Cloudcover','Char_Clothing_Legs','UNDEFINED','3ec065c9-c66a-451d-8938-d3195ec3d74f','','',NULL), -('1439','ORC-mkX Core Singularity','Armor','Torso','53870a00-c231-454d-a748-8bcf394108ed','','',NULL), -('1440','AEGS_Idris_SCItem_Seat_Pilot','Seat','UNDEFINED','b475b921-bbab-4294-a961-0256bd7e987e','','',NULL), -('1441','Storm Landfall Livery','Paints','UNDEFINED','6b6bb110-e497-4d5e-807d-27e77a9f6682','','',NULL), -('1442','Argus Helmet Black/Pink/Purple','Armor','Helmet','32a5a7ad-c7c6-4677-b32e-6dddf165578a','','',NULL), -('1443','Diamond','Cargo','Cargo','56ddef89-63e5-41fe-b484-8496eaef6d69','','',NULL), -('1444','RSI_Zeus_Stencil_CL','AttachedPart','UNDEFINED','3e3c7dd7-5fc2-4e4a-837c-244d3bc77e71','','',NULL), -('1445','Yeager','QuantumDrive','UNDEFINED','903b3f33-f3de-412f-8804-19090436c525','','',NULL), -('1446','Book','Misc','UNDEFINED','ebe5bd25-9c94-480b-aad6-2e140735efca','','',NULL), -('1447','Foundation Festival Hat Grey','Char_Clothing_Hat','UNDEFINED','542fea35-ae07-451c-94cb-b658fbd7c728','','',NULL), -('1448','Carryable_1H_kitchenware_Square_fryingpan_a','Misc','UNDEFINED','543a2412-8cb1-4edc-b08b-d4c0aeb1ef73','','',NULL), -('1449','Oven','Cargo','UNDEFINED','5c43ef96-5b2b-48d7-9801-222d36cf29e4','','',NULL), -('1450','AEGS_Sabre_Thruster_Mav_Up','ManneuverThruster','JointThruster','ab469303-43fa-42a2-8c75-afac60cb0331','','',NULL), -('1451','Flood','QuantumDrive','UNDEFINED','692899e0-b637-40a4-803d-88c43f40d746','','',NULL), -('1452','Railing_Straight_4m_LowTech_Util_Stairs_04x01_b','Usable','UNDEFINED','0c1c6895-7167-458a-b1f5-ce3211bbc3b4','','',NULL), -('1453','display_components_pallet_125x125x025_power','ShopDisplay','UNDEFINED','26753906-77bd-4d50-90c8-2936db39bca3','','',NULL), -('1454','Door Control','Door','UNDEFINED','6f3b4829-e769-4741-9751-e6a34e72521f','','',NULL), -('1455','Personal Storage','Cargo','UNDEFINED','3c3f551a-8073-4506-bac4-2fabfbd76025','','',NULL), -('1456','Kamar Jacket Light Blue','Char_Clothing_Torso_1','UNDEFINED','f258f27c-84ea-431f-b111-b1c783132702','','',NULL), -('1457','Seat','Usable','UNDEFINED','c423dead-d772-45f9-bd0e-51e015b52a6a','','',NULL), -('1458','300 Series Solar Flare Paint','Paints','UNDEFINED','cbb36eab-f990-4cac-859f-d5e6e432232a','','',NULL), -('1459','Flight Blade','FlightController','UNDEFINED','484b6836-8d79-d97e-0ec0-bcc97c379eab','','',NULL), -('1460','Lindinium (Ore)','Cargo','Cargo','3018cca7-662b-4674-8be5-a6223db3e8df','','',NULL), -('1461','RAFT Crusader Livery','Paints','UNDEFINED','851436c4-faf2-458d-8d0e-c05a1a2216a6','','',NULL), -('1462','ANVL_Paladin_Thruster_Mav_Bottom','ManneuverThruster','UNDEFINED','986ba73e-6d67-4638-9d16-7179fe9eea50','','',NULL), -('1463','IndVest Jacket Violet','Char_Clothing_Torso_1','UNDEFINED','b750c334-dde8-4deb-9d6b-7a418fcbf58f','','',NULL), -('1464','Venture Core Grey','Armor','Torso','9c6480c7-637f-4387-a7e9-ecfc0b366ee4','','',NULL), -('1465','Door Control','ControlPanel','DoorPart','e3b9abff-f070-4969-89e8-4287fa8e3c6a','','',NULL), -('1466','PAB-1 Arms Sakura Sun Edition','Armor','Arms','22ac3ff5-1059-40ff-90f3-e36b41564ab8','','',NULL), -('1467','Remote Turret','Turret','GunTurret','7162e665-a770-4457-95d2-aed5202a1595','','',NULL), -('1468','Manned Turret','UtilityTurret','MannedTurret','6bcab1e9-c460-4771-b17b-e78382d6437c','','',NULL), -('1469','Carnifex Armor Legs Shutdown','Armor','Legs','4c3dbccc-2a42-48d2-89e1-f19635e4650d','','',NULL), -('1470','AcryliPlex Composite','Cargo','Small','b29bfd7b-0efe-4915-bd7a-6b1216011b06','','',NULL), -('1471','CBH-3 Helmet White','Armor','Helmet','b3417970-c0e5-48fa-b568-4d070da3995d','','',NULL), -('1472','Seat','Usable','UNDEFINED','8b515f9a-5ad5-431e-a46a-5020dcbd444a','','',NULL), -('1473','Kavir Pants Olive','Char_Clothing_Legs','UNDEFINED','89b497f7-3228-4c5e-95ed-f87d0e880dbd','','',NULL), -('1474','VNCL_Glaive_Thruster_side_right','ManneuverThruster','FixedThruster','aade303d-fa93-42c7-971f-8cae6542b508','','',NULL), -('1475','Torrent II Module','MiningModifier','Gun','c9944e4b-d911-4f92-9840-1a078659b123','','',NULL), -('1476','Seat','SeatAccess','UNDEFINED','944b3374-1760-4382-b391-d097d0eef3fc','','',NULL), -('1477','IFR-532 Missile Rack','MissileLauncher','MissileRack','a03671cd-d2be-4822-b971-d98be38b11ba','','',NULL), -('1478','Levski_SCItem_Seat_ATC','Seat','UNDEFINED','60ba9469-407d-4f17-bb9c-6e3497668120','','',NULL), -('1479','Uncut SLAM','Cargo','Cargo','46fd10d9-4a23-4935-ad93-a2c1ffd51262','','',NULL), -('1480','Door Control','Door','UNDEFINED','6fab084e-57da-4bb7-9bb9-fa13c6ca80cd','','',NULL), -('1481','Seat','Usable','UNDEFINED','89046b67-a62e-41f3-b072-0cc6cde60e20','','',NULL), -('1482','Copper','Cargo','Cargo','51dc91e9-1575-4e62-ae14-3394eba9dd2b','','',NULL), -('1483','Testudo Backpack Clanguard','Armor','Backpack','a5327582-23fb-43db-a5ec-f3961e1761a3','','',NULL), -('1484','Door Control','Door','UNDEFINED','ae0a3f13-e088-4f3f-aeec-8627cc9fdfcd','','',NULL), -('1485','Prospector Nebula Livery','Paints','UNDEFINED','d20a54f0-aa98-4e1f-876d-502368484eb7','','',NULL), -('1486','Boreal Quasi Grazer Egg ','Misc','Harvestable','752524b3-2e18-4046-87f5-bff3f6877b87','','',NULL), -('1487','customizer_jacket','Char_Clothing_Torso_1','UNDEFINED','39fcc53b-eadc-4642-b7cb-76ed9c80ec6f','','',NULL), -('1488','Silverton Pants Sage','Char_Clothing_Legs','UNDEFINED','09d1e163-9466-4415-aebf-877eaf274cfa','','',NULL), -('1489','R97 Shotgun Magazine (18 cap)','WeaponAttachment','Magazine','b4ef17b2-60b9-4617-a6a4-60dd053a9e73','','',NULL), -('1490','ORIG_125a_Intake','Misc','UNDEFINED','83dffc1e-2dc0-4fec-8f49-8e59be5faade','','',NULL), -('1491','Weapon_Rack_Cz_006','Usable','UNDEFINED','5c341f2c-8f48-443a-a74c-d1d225856500','','',NULL), -('1492','Door Control','ControlPanel','DoorPart','5dbbe2f4-6b8a-4b26-bd2b-bb9b463dafa9','','',NULL), -('1493','ATLS Nightshift Livery','Paints','UNDEFINED','9da647d2-6461-4c53-aa47-7128d175e984','','',NULL), -('1494','SHIELDS','ShieldController','UNDEFINED','44e0a249-81a8-40c7-85f0-70d3b14a6896','','',NULL), -('1495','Internal Tank','QuantumFuelTank','QuantumFuel','2fbe2f78-6d3f-4e02-95b1-e2d2cdcca39a','','',NULL), -('1496','Radar_Display_RSI_Perseus_Turret','Display','UNDEFINED','3ea54e38-a84c-4aa7-8213-a3e9c8fe2a4d','','',NULL), -('1497','Intrepid Altair Livery','Paints','UNDEFINED','79928bfa-b375-4442-a9ec-80d0c8cc8b8b','','',NULL), -('1498','Testudo Backpack','Armor','Backpack','7176bf25-ae7d-45d7-b99b-7974d3e8b599','','',NULL), -('1499','Ermer Family Farms Chocolate Milk','Drink','Bottle','451f6eb0-987a-4873-a552-dedbbdd54367','','',NULL), -('1500','Vulture Carnival Livery','Paints','UNDEFINED','23b81875-0c0d-44c2-a4cd-d0b1dba85380','','',NULL), -('1501','Constellation Dark Green Livery','Paints','UNDEFINED','fa6aa876-d5e1-46e8-9f10-543243ccbccc','','',NULL), -('1502','MacFlex Core Yellow','Armor','Torso','e926621d-ef2b-4870-ad67-14cdbfca13b7','','',NULL), -('1503','Weapon_Rack_1_GMNI_Shotgun_Common_001','Usable','UNDEFINED','a670ae88-ecd1-4184-b821-bf844a69d61a','','',NULL), -('1504','CSV Granite Livery','Paints','UNDEFINED','4dbb8423-0e23-46c3-bf69-85cf9201c751','','',NULL), -('1505','Conqueror-7','Weapon','Gun','1c5cb632-fe64-42a4-9a4e-86147a4dcd74','','',NULL), -('1506','TRGT. STATUS','Seat','UNDEFINED','5e74082f-07b5-45cc-8a30-82e891444ff7','','',NULL), -('1507','Bed','Usable','UNDEFINED','13fd2011-b410-44eb-8c80-f507c9a73ebc','','',NULL), -('1508','CSP-68H Backpack Red Alert','Armor','Backpack','7928692a-2a2f-4649-96bb-75bf772a163b','','',NULL), -('1509','ARMR_ANVL_Lightning_F8','Armor','Medium','85e284ec-96ea-4de7-930a-2db6099585b3','','',NULL), -('1510','Lynx Legs Purple','Armor','Legs','bebdb237-80b4-4eb1-9f0d-9fc332b6b538','','',NULL), -('1511','rack_food_2_stand_b','ShopDisplay','Default','5c3c1d40-1ee3-4320-8a83-f41191f673cf','','',NULL), -('1512','Mandible Snowfly Helmet','Armor','Helmet','8f5262ca-06e0-4eee-893a-457c6bc0c260','','',NULL), -('1513','Door Control','Door','UNDEFINED','d71b9478-8ff3-4867-91d8-16ba2c7773e4','','',NULL), -('1514','Perseus Thundercloud Livery','Paints','UNDEFINED','6f0ca3c8-9f2f-4960-b758-f43ee1706f71','','',NULL), -('1515','Weapon Rack','Door','UNDEFINED','d0ee4854-10cb-423a-9639-750c384e2b4c','','',NULL), -('1516','Aztalan Tamarack Helmet','Armor','Helmet','100ebcc3-6792-4d83-89d6-0ae4b42f4963','','',NULL), -('1517','V801-12','Radar','MidRangeRadar','69b8ba78-889f-4547-97eb-1d477002fedc','','',NULL), -('1518','Seat','Usable','UNDEFINED','de9c9901-3146-4c5c-b1e4-9411d4dd5955','','',NULL), -('1519','Seat','Usable','UNDEFINED','9ebb991c-6bcd-4652-8a0d-b78b3fd2c042','','',NULL), -('1520','Pressurized Ice','Cargo','Cargo','04915f7f-acfc-4d16-bf0a-42268f5bfa61','','',NULL), -('1521','ORIG_X1_Thruster_Main','MainThruster','FixedThruster','cdd71a1d-ec5f-4478-b893-c7e2162effe3','','',NULL), -('1522','DockingTube_Fuel_Ports_CRUS_Starrunner','DockingCollar','UNDEFINED','719278c7-24ee-4366-905e-fa454fd6aa06','','',NULL), -('1523','ORC-mkX Arms (Modified)','Armor','Arms','be1cbd86-b611-46a8-b055-217484c95e59','','',NULL), -('1524','MISC_Freelancer_CargoGrid_Rear','CargoGrid','UNDEFINED','5374489e-75d0-4005-b960-82b5c2cd3ff8','','',NULL), -('1525','RSI_Zeus_Stencil_ES','AttachedPart','UNDEFINED','601c2629-7a99-4fd8-93f1-11e6b8c6d4fc','','',NULL), -('1526','Door Control','Door','UNDEFINED','c2f1fc1c-1cc8-4a8b-a1de-6d6c5002111e','','',NULL), -('1527','Controller_Mining','MiningController','UNDEFINED','ac3e1554-19ca-4421-9155-92c2c5f155e8','','',NULL), -('1528','Access','SeatAccess','UNDEFINED','77ff37c9-4ed4-451f-98f9-e6c3acf6ce86','','',NULL), -('1529','Feynmaline','Misc','Harvestable','d7a21cac-3c2b-4695-95b7-2042d8f5755e','','',NULL), -('1530','Weapon_Rack_2_Slots_RSI_Polaris_DisplayCase','Usable','UNDEFINED','80d69770-4720-44f4-8618-d80c69fa70f6','','',NULL), -('1531','SHIELDS','ShieldController','UNDEFINED','ebfd51a7-ffa7-45e8-b569-2b9516d33653','','',NULL), -('1532','Starfarer Light Grey Livery','Paints','UNDEFINED','43e5e450-57ff-4eff-8a1f-818d1553086b','','',NULL), -('1533','Prism \"ArcCorp\" Laser Shotgun','Weapon','Medium','f0ea7fd5-ad93-4ac7-9c63-66399bc3110f','','',NULL), -('1534','Seat','Usable','UNDEFINED','ee8367b0-a277-4cf4-aebb-97ca35ea28fc','','',NULL), -('1535','DCP Armor Legs Cobalt Camo','Armor','Legs','a86d001d-64e0-4d48-9db3-ed779bd7bfe7','','',NULL), -('1536','Vehicle_Screen_MFD_Holographic_STY_L','Display','UNDEFINED','53dd4ee1-3e3c-4238-bb05-e65656f2b242','','',NULL), -('1537','Default_LandingSystem','LandingSystem','UNDEFINED','613bf1ef-7882-4e8a-9017-35e9e1af0687','','',NULL), -('1538','AEGS_Idris_SCItem_Seat_Captain','Seat','UNDEFINED','f7edc1f0-20b7-47df-94ea-b44809a041a0','','',NULL), -('1539','Tulsi Jacket Ebony','Char_Clothing_Torso_1','UNDEFINED','23344164-4556-4fec-9b2e-00e2a83b58be','','',NULL), -('1540','Seat','Usable','UNDEFINED','fd44d211-827a-48c5-8574-5f5ab7c23c4e','','',NULL), -('1541','Personal Storage','Cargo','UNDEFINED','6738223a-c585-4ad7-aeb9-f20636d2ead8','','',NULL), -('1542','ARGO_MPUV_1T_Thruster_Aux_Side_Rear','ManneuverThruster','FixedThruster','7db0ca0b-a85d-4455-9b0e-5dbb17b6ec7b','','',NULL), -('1543','BoostPen Xtra','FPS_Consumable','Medical','b1b015dd-2ecb-4988-8cc3-9702914e246d','','',NULL), -('1544','Orbital_Sentry_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','51d9a1ef-14b4-4da7-b3f4-78b6dbfaf281','','',NULL), -('1545','Door Control','Door','UNDEFINED','4cfad0a1-987e-4f97-a898-0ae578edc2ac','','',NULL), -('1546','Seat','SeatAccess','UNDEFINED','7d1d56c8-504e-45c1-9f86-93a0c997ad0a','','',NULL), -('1547','DRAK_Cutlass_Thruster_Maneuver_Right','ManneuverThruster','JointThruster','92c6fc6a-d66e-47fd-b5af-cf19e0d77b3f','','',NULL), -('1548','Aponte Explorer Goggles','Char_Accessory_Eyes','UNDEFINED','66b88d76-b20f-4880-9f98-11835398af3e','','',NULL), -('1549','Eclipse Meridian Livery','Paints','UNDEFINED','fbbf5ded-3068-419b-ad25-adc5bf94910a','','',NULL), -('1550','ANVL_Door_Decal_Carrack_Deck1_Small','Decal','DoorPart','81c2b748-0a94-493d-b1d9-455bff4760a5','','',NULL), -('1551','CRUS_Star_Runner_Secret_Engineering_Panel','Player','UNDEFINED','91fd5f70-447b-4b62-9d07-f0a2b2e6cc95','','',NULL), -('1552','TRGT. STATUS','Seat','UNDEFINED','57ae1d22-766d-49c4-8693-dd3b3b1f759b','','',NULL), -('1553','PAB-1 Arms Orange','Armor','Arms','f96b59a9-6670-48b0-b51b-5894d40f0bbf','','',NULL), -('1554','MISC Hat Blue and White','Char_Clothing_Hat','UNDEFINED','79741092-6bee-4e89-9b10-6f3decf616d0','','',NULL), -('1555','Red QuikFlarePro','Weapon','Grenade','edbaa6ec-c3f3-45ec-b68d-8ab827dd08dc','','',NULL), -('1556','The Butcher Helmet','Armor','Helmet','57637d2b-a480-4c22-8fd8-f9964f0c9088','','',NULL), -('1557','SHIELDS','ShieldController','UNDEFINED','3c1c69e3-b3e7-4dd7-899b-fc450e4d41cc','','',NULL), -('1558','tool_manual_1_screwdriver_a','Misc','UNDEFINED','e7753e7c-c192-4df0-852e-7003508eedb5','','',NULL), -('1559','AEGS_Reclaimer_Thruster_Mav_Fixed_Bottom','ManneuverThruster','FixedThruster','e46991ad-6d7c-4f98-9be1-0165bd41f84f','','',NULL), -('1560','Paint_Cutter_Black_Silver_Stripe','Paints','UNDEFINED','478afd37-2f19-42ee-b90e-df04aa57723f','','',NULL), -('1561','Xa\'Pyen','Cargo','Cargo','56165c93-2aa7-4cf9-b4b5-3dcf54249300','','',NULL), -('1562','ORC-mkV Core microTech Edition','Armor','Torso','18f560ef-cf68-439b-9eec-4d9167268417','','',NULL), -('1563','Devastator \"Nightstalker\" Shotgun','Weapon','Medium','991d151a-4c5d-4976-acd4-228fdc36a4a3','','',NULL), -('1564','Seat','Usable','UNDEFINED','1bd2e480-6efc-4e64-83a4-795003f89762','','',NULL), -('1565','DRAK_Herald_Thruster_Retro','ManneuverThruster','FixedThruster','2cfe6a9b-eeec-42db-8c28-f6d32aabfbf3','','',NULL), -('1566','VNCL_Scythe_Thruster_Aux_Fixed','ManneuverThruster','FixedThruster','4d84caf7-baf8-4bda-a03a-4a47a4aef7ed','','',NULL), -('1567','ORIG_X1_Velocity_Fins','Misc','UNDEFINED','954cd129-1eb7-425f-b5bc-5a1a569e7b04','','',NULL), -('1568','Laranite (Raw)','Cargo','Cargo','8d366f28-9702-4fea-a40f-17af0f4f5a74','','',NULL), -('1569','Constellation Hurston Livery','Paints','UNDEFINED','46fc9ff1-2acd-43b9-8736-cd598e5aa2dc','','',NULL), -('1570','H_Dashboard_Projector_HUD_XNAA_SanTokYai','Display','UNDEFINED','033f66fd-0f5f-420f-993b-f300b2d8f62e','','',NULL), -('1571','Tempus Tank Dark Umber','Char_Clothing_Torso_0','UNDEFINED','573b1907-e52f-4753-9286-ce66915a64d4','','',NULL), -('1572','Counter_1m_tap','Usable','UNDEFINED','63816a03-c234-41d6-a73f-cf4195aaea3d','','',NULL), -('1573','Hermes Pulsar Livery','Paints','UNDEFINED','fc023bee-13a3-439e-a0ea-809fdc9bd9ca','','',NULL), -('1574','Venture Arms Dark Green','Armor','Arms','fb1d8db1-57fe-4e9d-a33d-58f2141563af','','',NULL), -('1575','stand_shop_small_b_Shield','ShopDisplay','UNDEFINED','6af750da-fbd8-42c4-a3ae-42c32a3c83ce','','',NULL), -('1576','Door_Relay_ContestedZone','Door','UNDEFINED','d008ceca-95fd-4f05-8b49-e269dcbf0c22','','',NULL), -('1577','Construction Materials','Cargo','Cargo','86aabf56-2b14-4ef4-833c-17ed02003426','','',NULL), -('1578','SHIELDS','ShieldController','UNDEFINED','848c6818-cfb2-4734-83fa-6a050a6416b2','','',NULL), -('1579','CRUS_Intrepid_Thruster_Mav_Bottom','ManneuverThruster','UNDEFINED','7a4d7866-1fec-434d-a155-0351a947c432','','',NULL), -('1580','counter_display_mod_center_b_01x01x01_05Ports','ShopDisplay','UNDEFINED','8e68cc8c-55f5-47ab-a209-98a064764956','','',NULL), -('1581','Seat','Usable','UNDEFINED','602815ea-9b49-4ead-b71b-f8d2324923d3','','',NULL), -('1582','SparkJet','PowerPlant','Power','c245b408-006d-4b3a-8dc9-0dc5b26b672a','','',NULL), -('1583','Morozov-SH Legs Snowdrift','Armor','Legs','967d0beb-d88c-4b9f-8ad0-15a73b194486','','',NULL), -('1584','Tona Shoes Aqua','Char_Clothing_Feet','UNDEFINED','688a401f-d39d-4eba-8db9-28fd81c646d5','','',NULL), -('1585','Door','Door','UNDEFINED','1f05a4cd-cc0e-4fef-af9e-eeb5d70b50df','','',NULL), -('1586','CitizenCon 2949 Trophy','Misc','UNDEFINED','8b22e117-2163-4682-a712-3069cdaf7c55','','',NULL), -('1587','CitizenCon 2948 Special Edition Trophy','Misc','UNDEFINED','ab9943d9-acb9-4e38-b729-cb907c36ef9c','','',NULL), -('1588','m_human_mannequin_legacy_outlaw_light','ShopDisplay','UNDEFINED','cae97620-5a43-478c-984e-a9ea2bb5593e','','',NULL), -('1589','stand_shop_small_Shield','ShopDisplay','UNDEFINED','2bc1c29e-9f09-4e96-90d4-a9998b15176f','','',NULL), -('1590','Tru Barrier Hazard Suit Cinnabar','Char_Clothing_Torso_1','UNDEFINED','1669abe8-5d5c-4a89-a747-e44f74f5fef6','','',NULL), -('1591','Testudo Core Combustion','Armor','Torso','7824c3f1-40ce-47c3-9f8b-6775037479ef','','',NULL), -('1592','HighTechAirlockTerminalStatusScreen','StatusScreen','AirlockPart','be440291-fcee-4f7a-89f7-0a7d4b180005','','',NULL), -('1593','AEGS_Javelin_SCItem_Seat_Bridge_Left_RemoteTurret','Seat','UNDEFINED','c4e28a35-af99-49ab-9a43-15d687ebb603','','',NULL), -('1594','Personal Storage','Cargo','UNDEFINED','4de110e2-45b7-47fd-8b13-88381c7a385c','','',NULL), -('1595','MRAI_Guardian_Thruster_Mav','ManneuverThruster','FixedThruster','0276b1e1-dbcb-464a-a07e-03e837564e6b','','',NULL), -('1596','Ball','Char_Head_Piercings','UNDEFINED','f8ea3eed-8238-4e7b-b3f7-7fda1d4cdfe7','','',NULL), -('1597','Astatine','Cargo','Cargo','f3a6a6c5-afce-40f7-90b6-392f31f09780','','',NULL), -('1598','ORIG_400i_Thruster_Mav','ManneuverThruster','FlexThruster','bc608ab7-d70b-4d9e-b4e9-8261d92a5d3e','','',NULL), -('1599','Arcus Gloves Gray','Char_Clothing_Hands','UNDEFINED','3f5fe236-be87-46a9-b06e-7110cdf9d303','','',NULL), -('1600','Inquisitor Core Outcrop','Armor','Torso','fd9cf430-f6ca-4be6-bb4a-b62774811d16','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('1601','Parallax Rifle Battery (80 Cap)','WeaponAttachment','Magazine','3efb1be1-8935-4124-8bf0-aec410297785','','',NULL), -('1602','SHIELDS','ShieldController','UNDEFINED','5c9a0538-7358-48c6-9da9-abffcb6b999a','','',NULL), -('1603','KRIG_l22_AlphaWolf_Thruster_Mav_Capsule_Bottom','ManneuverThruster','UNDEFINED','3a21217b-2960-4e8a-b0af-5e5a65b242a5','','',NULL), -('1604','Coda Pistol Magazine (6 cap)','WeaponAttachment','Magazine','90b873da-1d15-48ba-86f5-f5633e958c33','','',NULL), -('1605','AEGS_Sabre_Firebird_bombay_door_left_outer','Misc','UNDEFINED','e856ff3e-64e5-4c53-a1d8-f7522d6a1144','','',NULL), -('1606','Amioshi Plague','Cargo','Cargo','87e82811-8dac-4f11-b004-ab61c1d0e593','','',NULL), -('1607','Giotto Jacket Purple Pinstripe','Char_Clothing_Torso_1','UNDEFINED','72539b38-17d5-4f5f-982d-c476305e5a25','','',NULL), -('1608','HoverQuad Slipstream Livery','Paints','UNDEFINED','f8a0e039-6968-4db7-a4bf-84ebe8a81c34','','',NULL), -('1609','Potassium','Cargo','Cargo','9887a967-f6ef-438b-8d85-f7abf4494325','','',NULL), -('1610','ANVL_Hornet_F7CM_Thruster_Retro','ManneuverThruster','JointThruster','71c08ef8-888a-47a8-9c05-798e5728c727','','',NULL), -('1611','Seat','Usable','UNDEFINED','c901f21f-60ea-472c-8e00-02b90ae42ec7','','',NULL), -('1612','Morozov-SH Core Smokescreen','Armor','Torso','359a6ced-bf46-4867-9085-81f69e7080d1','','',NULL), -('1613','Stud','Char_Head_Piercings','UNDEFINED','abd041f7-35a8-4e77-a8c0-cc4239c8f690','','',NULL), -('1614','SHIELDS','ShieldController','UNDEFINED','384db182-efaf-4d6c-8428-bbd98e2c5ff0','','',NULL), -('1615','Book','Misc','UNDEFINED','360f883a-8191-4a95-b6f0-7bee275bd443','','',NULL), -('1616','Bexalite (Raw)','Cargo','Cargo','26d871db-8acf-4d2e-b35c-8f35a82009a3','','',NULL), -('1617','Microid Battle Suit Core Crucible ','Armor','Torso','4ac16e03-fc5e-47df-90a2-2be0382140c4','','',NULL), -('1618','Partillium','Cargo','Cargo','fb917ea5-b354-451a-a77b-9c14dc6c6987','','',NULL), -('1619','Laranite','Cargo','Cargo','f221426e-13bb-4373-aa1f-84fdbb2dc363','','',NULL), -('1620','MISC_Fortune_Thruster_Mav_Fixed_03','ManneuverThruster','FixedThruster','27e2d40b-64ca-4a8c-bed8-5e534fe1d88e','','',NULL), -('1621','Stark Compensator2','WeaponAttachment','Barrel','cabb860f-f1f0-4477-90f6-39268ad74812','','',NULL), -('1622','VNCL_Gen2_PlasmaCannon_Ventilation_S2','WeaponAttachment','Ventilation','55ac180d-4478-4056-b5fc-6667e6a30416','','',NULL), -('1623','MacFlex Arms Black','Armor','Arms','35912171-19b9-45d3-b1ea-c9e65764790b','','',NULL), -('1624','Silicon','Cargo','Cargo','078a30fc-1980-45c2-8b91-98068bad4cb8','','',NULL), -('1625','Seat','Usable','UNDEFINED','a5f84df0-8e36-4421-b6a3-f17913400475','','',NULL), -('1626','WeaponMount_Gun_S1_DRAK_Cutlass_Steel_Left','WeaponMount','WeaponControl','1ac2d0ab-61bf-4068-98f8-f19f3325dc71','','',NULL), -('1627','TRGT. STATUS','Seat','UNDEFINED','5de89f7d-c5d2-4180-a482-a277ed5a0b64','','',NULL), -('1628','Pitambu','Misc','Harvestable','60deb833-f312-4d9d-bcac-247de330384f','','',NULL), -('1629','Winter-Star SL','Cooler','UNDEFINED','26f6ac67-8c44-4160-8be2-d64d07d3ec3a','','',NULL), -('1630','Quantum Fuel Tank','QuantumFuelTank','QuantumFuel','af715620-f1fb-4723-a01d-d3b2fea1a7e2','','',NULL), -('1631','Dashboard','SeatDashboard','UNDEFINED','c10347f2-7954-43f5-bef2-024edfff521d','','',NULL), -('1632','Carinite (Pure)','Cargo','Cargo','10e3cbb7-6fe9-43e3-8b1c-0a0116429e0a','','',NULL), -('1633','Morozov-SH-I Helmet Lifeforce','Armor','Helmet','6c3355b2-0053-489f-967b-3ca98b0481fe','','',NULL), -('1634','RSI_Constellation_Andromeda_Thruster_Turbine_Rear','ManneuverThruster','JointThruster','27b07cc6-887a-4d35-bcf6-03fd6fafd9d0','','',NULL), -('1635','Door','Door','UNDEFINED','4e05a6f8-35de-4bb6-88e5-d5bae6be028a','','',NULL), -('1636','ANVL_Door_Decal_Carrack_EVA','Decal','DoorPart','4d003245-aaf1-48ad-917e-7c7a2876c898','','',NULL), -('1637','INTK_DRAK_Dragonfly','FuelIntake','Fuel','94844d6a-6f31-4b00-9fc3-bd158809faee','','',NULL), -('1638','Personal Storage','Cargo','UNDEFINED','e2763fe9-49b3-4d47-ba49-b943051ecfb7','','',NULL), -('1639','Intergalactic Aerospace Expo T-Shirt','Char_Clothing_Torso_0','UNDEFINED','d6a2e5f5-c390-4399-ae1a-85997e018029','','',NULL), -('1640','test_aimodule','AIModule','UNDEFINED','d61c9df9-b19f-4798-961a-3070488671e3','','',NULL), -('1641','Scorpius Sunburn Livery','Paints','UNDEFINED','59e7bafb-b82a-4e5b-885d-ae18aa4e2efd','','',NULL), -('1642','LFSP_Filter_subItem_standard','Misc','Utility','b44ec4bd-854d-48ef-9ac1-c4183edf1d0a','','',NULL), -('1643','Voyage','QuantumDrive','UNDEFINED','0d1169c1-65e4-4ee0-bb1a-f967ab0f3c45','','',NULL), -('1644','Xa\'Pyen','Cargo','Cargo','b3ed5903-e856-4e3f-bcb5-f8f842b3ffc8','','',NULL), -('1645','ForceFlex Undersuit Black/Yellow','Armor','Undersuit','715533b9-cc69-4a8e-b8e8-70b5252ccac0','','',NULL), -('1646','DockingTube_Fuel_Ports_AEGS_Hammerhead','DockingCollar','UNDEFINED','bafcee7f-426e-4201-b390-f55a66090e99','','',NULL), -('1647','Okunis','Gadget','Gadget','715a41ad-b297-44fa-b792-8561687e5220','','',NULL), -('1648','ORC-mkV Core Green','Armor','Torso','ebd4d90b-c276-4d7e-9bf0-99741e3a71af','','',NULL), -('1649','Edgewear Pants Violet','Char_Clothing_Legs','UNDEFINED','7472c418-104b-4ef3-8cf7-f6541e6e8efe','','',NULL), -('1650','Anvil Decoy Launcher','WeaponDefensive','CountermeasureLauncher','74fc329a-8a30-41e9-8669-bd0d2f19f1f5','','',NULL), -('1651','Landlite Boots Purple','Char_Clothing_Feet','UNDEFINED','20aa1ed2-f97c-48b4-96d6-8e7566a76922','','',NULL), -('1652','Molina Mold Treatment','Cargo','Cargo','ac5f042f-935a-43bc-9af4-1d4230f9765c','','',NULL), -('1653','Body','Char_Clothing_Legs','Medical','52a0aa86-d0ff-43a2-990d-c6c651f7e7f6','','',NULL), -('1654','Zeus MK II Purple Haze Livery','Paints','UNDEFINED','e7eee612-ee83-4a90-be4c-c587f915d2b3','','',NULL), -('1655','Ketchum Beanie Imperial','Char_Clothing_Hat','UNDEFINED','f993309d-6a69-4d7e-bd9e-cee0b93b1243','','',NULL), -('1656','Door Control','Door','UNDEFINED','059fbed4-ed34-44a5-923b-d7376fd8b949','','',NULL), -('1657','Microid Battle Suit Core Nomad','Armor','Torso','dec295e8-c174-4c27-b6a6-2c035395e1a2','','',NULL), -('1658','f_human_mannequin_ship_jacker_surv_helm','ShopDisplay','UNDEFINED','f686a8fe-8527-4b03-ba13-307a46d19bc8','','',NULL), -('1659','Construction Pieces','Cargo','Cargo','dc4ab563-5a21-4a8a-a79f-1d5fd9974ecc','','',NULL), -('1660','Monde Core','Armor','Torso','5e798b5e-17a2-4e77-9585-863d6d65c8c7','','',NULL), -('1661','Whamburger','Food','Junk','ba4c4510-5cab-4d03-b7b2-e708704b8593','','',NULL), -('1662','SHIELDS','ShieldController','UNDEFINED','a41900bd-254d-4297-865c-e25afe5463e1','','',NULL), -('1663','Cryo-Star','Cooler','UNDEFINED','0a190bad-bbb1-4988-9622-61b7af717d6f','','',NULL), -('1664','ControlPanel_Screen_SecurityTerminal','ControlPanel','DoorPart','8579476d-6c14-42ae-a093-c8fa2294b25b','','',NULL), -('1665','ATLS Cobalt Livery','Paints','UNDEFINED','1271d6ba-3e4a-4fb2-86e0-26ce8c874ad2','','',NULL), -('1666','ANVL_Asgard_Thruster_Main_Rear','MainThruster','FixedThruster','1e074602-d5af-461d-925a-9375a35fe692','','',NULL), -('1667','Edgeriders Shoes','Char_Clothing_Feet','UNDEFINED','8fb106aa-af0d-4376-8b1b-946b731ab1c6','','',NULL), -('1668','mobiGlas Violet Casing','MobiGlas','Personal','c499ac5a-dd48-4d4c-bad7-7371135c5ac6','','',NULL), -('1669','Door Control','Door','UNDEFINED','1c05f4d8-6265-437e-938b-9ec20476b5a7','','',NULL), -('1670','MSD-313 Missile Rack','BombLauncher','BombRack','7a8d5207-e203-4bbc-8cec-6956b4129a7e','','',NULL), -('1671','Aluminum','Cargo','Cargo','69c69cba-cae0-4dbd-8b1a-2200ad1587b9','','',NULL), -('1672','Door Control','ControlPanel','DoorPart','44f0e064-230f-e498-8468-a057ab9207b6','','',NULL), -('1673','Toilet','Cargo','UNDEFINED','de1524af-160e-4185-bc3f-5f7d9c5a0b5f','','',NULL), -('1674','Table_Booth_4_Seat_CRUS_Starlifter','Usable','UNDEFINED','e1c1f2e2-f1de-4d6a-a147-d0f1ee5ed928','','',NULL), -('1675','Tipper Hat Whammer\'s','Char_Clothing_Hat','UNDEFINED','6edb2097-8cc5-47af-90a9-cddf597d4b8d','','',NULL), -('1676','Door Control','ControlPanel','DoorPart','85e3e06b-8c93-4224-aec7-48b1ebbc907a','','',NULL), -('1677','display_box_plastic_4_weapon_opened_005x010x00375_rundown_a_2Ports','ShopDisplay','UNDEFINED','05d4ebb4-530d-43ab-acd9-691427470b0c','','',NULL), -('1678','Seat','SeatAccess','UNDEFINED','485533a9-f4af-43a8-89a7-af102ea1f996','','',NULL), -('1679','AEGS_Vanguard_Sentinel_Thruster_Mav_Joint','ManneuverThruster','JointThruster','35637c5d-d85a-4a8a-9733-89094c39565c','','',NULL), -('1680','food_ration_pack_e','Misc','UNDEFINED','49a121c8-bdcc-4224-b43d-4dec2e7cdfdf','','',NULL), -('1681','Test_Datapad_Clovis_Clue_01_4x3_Screen_1','Display','UNDEFINED','177b025a-9aca-4618-86d5-d7f08bdd3418','','',NULL), -('1682','CNOU_HoverQuad_CML_Chaff','WeaponDefensive','CountermeasureLauncher','2dc8a1ba-6496-4c76-a4e0-6f166c4aa0c5','','',NULL), -('1683','Glacis','Shield','UNDEFINED','6fc982c0-2747-42b7-a628-7c76ecedf732','','',NULL), -('1684','Argo MPUV Ship Armor','Armor','Medium','e8366bc3-ca67-41ee-913d-c83663cd84f0','','',NULL), -('1685','Door Control','Door','UNDEFINED','51616e5a-709c-41c1-91a0-f2c53dd6dd12','','',NULL), -('1686','Wolf Allegro Livery','Paints','UNDEFINED','09e4e202-fce6-435f-9a4c-6daa76c8fd5f','','',NULL), -('1687','Access','SeatAccess','UNDEFINED','74e3eb80-25a4-4b87-862a-991ba08923c6','','',NULL), -('1688','Cutter 2955 Auspicious Red Snake Livery','Paints','UNDEFINED','f0d9afca-9c5e-459a-ad02-d26582467fb1','','',NULL), -('1689','rack_gun_size_4_005x0075x015_a','Misc','UNDEFINED','6b2e1700-6725-4d2e-80c1-56acb70162cf','','',NULL), -('1690','Door','Door','UNDEFINED','67f790cf-2f87-4694-ae64-da5d6f092e58','','',NULL), -('1691','Mivaldi Pants White','Char_Clothing_Legs','UNDEFINED','dd68c297-41d1-45db-bb80-db92fda0eb9b','','',NULL), -('1692','Cup','Drink','Glass','4e247392-50d0-4d50-96bc-76ce976f5de8','','',NULL), -('1693','Door Control','Door','UNDEFINED','0b7a73b4-67c0-4676-bbb3-134ef066753e','','',NULL), -('1694','HRST_LaserRepeater_Ventilation_S3','WeaponAttachment','Ventilation','cd2db9e3-5c58-462f-9c92-33d4715e3714','','',NULL), -('1695','Savrilium','Cargo','Cargo','f2e4ecc6-7c58-443d-9ace-5205e2a1edbe','','',NULL), -('1696','Toughlife Boots Tan','Char_Clothing_Feet','UNDEFINED','84702509-d7d1-4d0d-825d-9a72808401b4','','',NULL), -('1697','GLSN_Shiv_Thruster_Maneuver','ManneuverThruster','JointThruster','0271b02c-59a4-4ee9-8171-d3d24319db48','','',NULL), -('1698','M50 Ship Armor','Armor','Medium','892ad00e-f11c-4f7b-b365-dd6ddc5a2027','','',NULL), -('1699','Marok Gem','Cargo','Cargo','37c0d19c-6158-4918-8a8a-0d57e8d32c3a','','',NULL), -('1700','Decari Pod','Cargo','Cargo','ef13489c-9f45-43a2-aeb1-e012b02f209c','','',NULL), -('1701','Stellate','PowerPlant','Power','70019264-f2b2-4741-b50f-bdce41cf0825','','',NULL), -('1702','Cleo Pants','Char_Clothing_Legs','UNDEFINED','676cb88a-f66d-491b-a67a-0b9f27a069eb','','',NULL), -('1703','Ma\'s Ready to Eat Chicken Patty Dinner','Food','Sachet','6e3986c2-23d9-43aa-bee4-d948c4cf5c06','','',NULL), -('1704','SHIELDS','ShieldController','UNDEFINED','f5697eb6-31dd-421c-adc8-1cf425484fba','','',NULL), -('1705','HRST_LaserRepeater_FiringMechanism_S2','WeaponAttachment','FiringMechanism','b559abe7-6a46-45d3-950e-4439ebaf3892','','',NULL), -('1706','Distilled Spirits','Cargo','Cargo','341574a9-3a91-4eb5-8e28-5fcf2993ddbd','','',NULL), -('1707','C2 Hercules Starlifter Plushie','Misc','Personal','bb53e6df-c44a-4d7c-af02-02e9c0f3f942','','',NULL), -('1708','Counter_2m_fridge','Usable','UNDEFINED','9b24463d-1e1f-4ab1-9bcf-a9544bbb1ffa','','',NULL), -('1709','lna_vest_01_01_01','Char_Clothing_Torso_1','UNDEFINED','bff5edac-c873-4d8d-9e68-2f8c6230d646','','',NULL), -('1710','C8X Pisces Standard Flight Blade','FlightController','UNDEFINED','940519da-d8b3-425c-b333-f2f5a2ebe88a','','',NULL), -('1711','ClipVest Work Harness Red','Char_Clothing_Torso_1','UNDEFINED','36e48bed-c6f8-4fb1-a4fe-cc754886ecd3','','',NULL), -('1712','Lavelle Pants','Char_Clothing_Legs','UNDEFINED','2b1b977e-3326-4959-97ec-6aed99aaa6be','','',NULL), -('1713','MISC_Starfarer_Thruster_Mav_Fixed_03','ManneuverThruster','FixedThruster','96513fac-2c67-4432-a1d6-4cc45c818e26','','',NULL), -('1714','Door Control','Door','UNDEFINED','de45d2c7-b085-4fc6-9aab-3169d5acf2ba','','',NULL), -('1715','Maze','Cargo','Cargo','61630437-f3bf-4007-9929-0d8db6a67eb1','','',NULL), -('1716','HoverQuad Terminus Livery','Paints','UNDEFINED','a745377b-a481-4f3c-af33-f353108b4557','','',NULL), -('1717','INTK_AEGS_Avenger_Warlock','FuelIntake','Fuel','3ff68fa4-3ad1-4fa0-8ad0-610c5d4fd9a8','','',NULL), -('1718','Colonialism_Outpost_RN_Maintenance_Shack','Relay','UNDEFINED','588a029d-464f-4112-9e28-fd1fbfffbcd0','','',NULL), -('1719','Carryable_2H_CY_furniture_pillow_1_c','Misc','UNDEFINED','c774d09a-1367-4551-a69c-ededd48d53ea','','',NULL), -('1720','counter_display_mod_end_0038x01x01_02Ports','ShopDisplay','UNDEFINED','156405d4-8819-4d76-b300-2dd18ff1abd0','','',NULL), -('1721','Libio Jacket Seagreen','Char_Clothing_Torso_1','UNDEFINED','effeaaef-c2dd-4b66-a674-cb9a5e126456','','',NULL), -('1722','Nox Overdrive Livery','Paints','UNDEFINED','06606e88-d50d-4134-8829-3d4caf521b39','','',NULL), -('1723','JOKR_DistortionCannon_PowerArray_S1','WeaponAttachment','PowerArray','59f24a20-d9cf-4615-b0d2-2cb9c26fe08b','','',NULL), -('1724','Antium Core Storm','Armor','Torso','02c2ca44-c632-4db8-b969-be44a8562f1b','','',NULL), -('1725','Internal Tank','QuantumFuelTank','QuantumFuel','23cc573c-5ae4-43ec-8b73-15ff7c41279e','','',NULL), -('1726','MISC_Freelancer_Base_SCItem_Seat_Esc_Pod_Lower_Left','Seat','UNDEFINED','5a0faaea-b33d-4f57-8e12-5380c8f00bba','','',NULL), -('1727','f_human_mannequin_marine_medium','ShopDisplay','UNDEFINED','dd9ea2f0-64d6-4f33-8e98-e89500fa31f3','','',NULL), -('1728','Door Control','Door','UNDEFINED','87473578-67c3-4079-b75d-923e3f6b27d5','','',NULL), -('1729','APX Fire Extinguisher Canister ','WeaponAttachment','Magazine','a205d0b4-7157-4e5a-9e40-57bb6b4fbb55','','',NULL), -('1730','Veggie Wham','Food','Junk','1430c4f4-9974-4c28-9bba-8e02a4670e91','','',NULL), -('1731','Door Control','ControlPanel','DoorPart','38f0824c-ada5-42d9-bee6-009e396c737f','','',NULL), -('1732','K7 Pants Olive','Char_Clothing_Legs','UNDEFINED','57b6c0d2-23a4-4962-9712-ea488182b030','','',NULL), -('1733','ARMR_DRAK_Buccaneer','Armor','Medium','381997e0-b1e6-4cb1-b235-3c74c3fde3cc','','',NULL), -('1734','Astatine','Cargo','Cargo','b3db988b-3a6b-4cbc-abf8-b115d8d84afd','','',NULL), -('1735','Citrus Beef Burrito','Food','Junk','1dfebe81-c6b7-4102-9b5e-0ebe2faa44d3','','',NULL), -('1736','Carryable_1H_CY_bottle_bar_12_cream_a','Misc','UNDEFINED','a3682373-2a3e-4e37-9ef2-8ec329b34f2f','','',NULL), -('1737','Explorer','JumpDrive','UNDEFINED','c8797bce-6220-4d1e-bc6d-23da4a366a6d','','',NULL), -('1738','Blood_Decal_Gore2','Decal','DoorPart','d0d986a1-e2d5-4024-bde8-3f3ff8bea53c','','',NULL), -('1739','Vacha Jacket Sandalwood','Char_Clothing_Torso_1','UNDEFINED','dd6de881-f194-4204-be17-a1f3a450ef6b','','',NULL), -('1740','ORC-mkV Core Seagreen','Armor','Torso','65cfb9a4-e98a-4aba-8bc7-3a3d08d41f2b','','',NULL), -('1741','SalvageInternalStorage_ARGO_MOTH','SalvageInternalStorage','UNDEFINED','91d2f067-f97f-4c51-a626-2efe23c43477','','',NULL), -('1742','MPUV-1T Storm Grey Livery','Paints','UNDEFINED','e884a62e-3ae3-4dc0-8fa4-8308897610b8','','',NULL), -('1743','AEGS_Sabre_Firebird_bombay_door_left_inner','Misc','UNDEFINED','8da0c26d-8c73-4dd9-aa99-d341c5e8cca4','','',NULL), -('1744','ORIG_135c_Thruster_Retro_Right','ManneuverThruster','JointThruster','213e988f-bd89-4998-98bf-156ec779c335','','',NULL), -('1745','ANVL_Hornet_F7A_Mk2_Thruster_Main','MainThruster','FixedThruster','47bde413-92c4-4603-8de5-6998887567c5','','',NULL), -('1746','Hofstede-S2 Mining Laser','Mining','Gun','b422bcf8-b553-4b09-b2be-e92ab2f80e9a','','',NULL), -('1747','TMSB-5 Ball Turret','Turret','BallTurret','4b2e4ce4-ac79-4923-bfdd-ccce02129b27','','',NULL), -('1748','MacFlex Legs Green','Armor','Legs','7564647d-f877-44b1-bdbc-a0a38401a48c','','',NULL), -('1749','KRIG_P72_Archimedes_Thruster_Mav_Fixed_01_Top','ManneuverThruster','FixedThruster','3f8fbe45-5a3b-4699-b579-3e2a80f8f81d','','',NULL), -('1750','Razorback Pants Black','Char_Clothing_Legs','UNDEFINED','446addf8-d821-4edb-a269-1da2d9caacd6','','',NULL), -('1751','orig_bedding_duvet_3_m','Seat','UNDEFINED','7eeeb9a2-238e-4e25-a6b9-23ed4abb1057','','',NULL), -('1752','Irradiated Valakkar Pearl (Grade AAA)','Misc','Harvestable','e738c105-8ef7-4238-8170-5db0c4f9c15d','L','',NULL), -('1753','Door','Door','UNDEFINED','5da48e0f-51c3-4a36-b34e-54ac2dd685ab','','',NULL), -('1754','ARGO_MOTH_CargoGrid_Side_Right','CargoGrid','UNDEFINED','3c8d6797-ab1d-4fb7-b812-ec3ba5960db3','','',NULL), -('1755','RSI_Polaris_CargoGrid_Main','CargoGrid','UNDEFINED','5b7b5bee-bf28-4406-8310-334bc5c8c699','','',NULL), -('1756','LowTechAirlockTerminalTemplate','ControlPanel','AirlockPart','b935a340-0261-4d86-ae9c-e2e40f62314d','','',NULL), -('1757','CRUS_Starlifter_Door_Decal_MainDeck','Decal','DoorPart','7b56f009-56ad-4e03-81ca-c428c9422c86','','',NULL), -('1758','MISC_Starfarer_Thruster_Mav_Joint_Bottom','ManneuverThruster','JointThruster','8870fbfb-d5ed-4c2b-9b56-6caadbb956ac','','',NULL), -('1759','Arden-SL Legs Rime','Armor','Legs','2a2d9018-d311-4966-b63f-b1480017c4a8','','',NULL), -('1760','RSI_Apollo_OC_Left_Tier_3','Room','UNDEFINED','41ba0ffb-8c80-6e3d-54c4-b102da3545a2','','',NULL), -('1761','Mule Bushwhacker Livery','Paints','UNDEFINED','15e1bf98-ca1f-440c-af11-c6800369ce3a','','',NULL), -('1762','IndVest Jacket Green','Char_Clothing_Torso_1','UNDEFINED','e9653e36-671d-42c4-95a2-706d9559c3ff','','',NULL), -('1763','DRAK_Caterpillar_Thruster_Mav_Fixed_Top','ManneuverThruster','FixedThruster','70a1dfee-79cd-41c5-9ece-ecd7c97db5d5','','',NULL), -('1764','Anvil Noise Launcher','WeaponDefensive','CountermeasureLauncher','99bb81e6-73e2-4a15-8b4f-99cef9d55faa','','',NULL), -('1765','test_Flair_Model_350r','Misc','UNDEFINED','ac1f4d2c-9a5d-4339-bcf4-217ac06329e1','','',NULL), -('1766','Party Favors','Cargo','Cargo','50289e5c-5a6b-4d2c-943d-5a4361020b63','','',NULL), -('1767','cbd_main_hall_display_case_S4','ShopDisplay','Default','2761f6ba-7bfe-4f9c-958e-c114143a0de3','','',NULL), -('1768','Shipment','Misc','UNDEFINED','deabbb44-9360-478f-b774-6f138d62a53d','','',NULL), -('1769','Flight Blade','FlightController','UNDEFINED','b8d6eaa0-9743-4c7a-a6db-b2b8d02c4b73','','',NULL), -('1770','ESPR_BallisticCannon_FiringMechanism_S5','WeaponAttachment','FiringMechanism','f345bdce-1969-4da9-8178-bd83094d14eb','','',NULL), -('1771','CNOU_Mustang_Delta_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','ad3066c9-4a67-42de-805f-92020ac1e416','','',NULL), -('1772','JanitorMob','Weapon','Gadget','557225fa-60a3-4c32-b8ab-4fc491e086b4','','',NULL), -('1773','Door Control','Door','UNDEFINED','c0a008dd-af2f-4a42-a49b-7eb198c6dddf','','',NULL), -('1774','Overlord Core Stinger','Armor','Torso','49968fbb-3f41-427c-958e-743fe222aeed','','',NULL), -('1775','AEGS_Retaliator_Esc_Pod_Decal_01','Decal','DoorPart','c37c00a1-4791-401c-8acc-61040963eac0','','',NULL), -('1776','Graupel','Cooler','UNDEFINED','8d2c7d2d-7359-474b-90cd-c0ba9c31ac7f','','',NULL), -('1777','TRGT. STATUS','Seat','UNDEFINED','1d0f01ad-d97c-4120-b453-a82c1346fe7a','','',NULL), -('1778','VariPuck S6 Gimbal Mount','Turret','GunTurret','4953a524-3736-4d9c-86f9-f2d54b3bfba4','','',NULL), -('1779','AEGS_Sabre_Raven_Thruster_Mav_Joint_01','ManneuverThruster','Light','df5d7fea-0991-43d4-a5fe-ca1c71a87808','','',NULL), -('1780','RADR_S00_Fake','Radar','MidRangeRadar','1c7cba80-f570-4b4b-ba6d-35a2a121c78c','','',NULL), -('1781','RSI_Aurora_Mk2_Thruster_Main','MainThruster','UNDEFINED','f2b0bc1e-3ab4-4285-9a6d-6645776929e1','','',NULL), -('1782','SCItemDisplayScreen_NewsScreen_NewBabbage','Display','Default','7f16edfc-e165-4a4c-95a8-ed2ad51b5974','','',NULL), -('1783','Bed_Mattress_Mantis_RSI','Seat','UNDEFINED','5def5ace-4400-410e-8304-edf55fb9c85c','','',NULL), -('1784','EX-T12-CS \"Executor\" Torpedo','Missile','Torpedo','39ac8279-45af-4f67-9156-169ff51b0e10','','',NULL), -('1785','facial_hair_036','Char_Head_Beard','UNDEFINED','6f18810a-37ad-483f-a062-206340631761','','',NULL), -('1786','CSP-68H Backpack','Armor','Backpack','fb904353-c334-4674-874c-874b64a4c6db','','',NULL), -('1787','Food_box_noodle_01_open_a','Food','Box','81f3d35b-099c-4fcb-90b2-f44a7810a1f7','','',NULL), -('1788','Cutter Hosanna Livery','Paints','UNDEFINED','231c1925-a770-4dea-8348-f6633148a5d1','','',NULL), -('1789','Internal Tank','FuelTank','Fuel','6d46408d-6321-4710-9f86-ea52a361f604','','',NULL), -('1790','RSI_Aurora_Mk2_CargoGrid_LeftRight','CargoGrid','UNDEFINED','770d0cce-1ca6-4546-8aa5-8c6f8f581bd6','','',NULL), -('1791','Savrilium (Ore)','Cargo','Cargo','0c5b557e-d25c-44c3-a0ea-5f57463d866d','','',NULL), -('1792','Prism \"microTech\" Laser Shotgun','Weapon','Medium','cd4f7742-6ce7-4879-9c91-051ab292ba4c','','',NULL), -('1793','Geist Armor Helmet Snow Camo','Armor','Helmet','c2bc9db2-8317-4ace-9480-a822c15b39e5','','',NULL), -('1794','ADP Legs Dark Red','Armor','Legs','15b9d1ac-2fe0-4d7b-aa6d-dc0d3fdb6e8e','','',NULL), -('1795','RSI_Zeus_Wing_Top_Left','AttachedPart','UNDEFINED','647c8431-2dcf-476b-bbcb-85a6f501e60a','','',NULL), -('1796','Origin Jumpworks Noise Launcher','WeaponDefensive','CountermeasureLauncher','c113f1d1-536a-4d7d-b770-ce867f60d9b8','','',NULL), -('1797','Flight Blade','FlightController','UNDEFINED','af80ff46-ce2a-428c-a45e-608d7c7bf2a4','','',NULL), -('1798','un_jar_glass_2_empty_a','Misc','UNDEFINED','b3ed0b01-04c4-4e3b-a4f4-89155363cb76','','',NULL), -('1799','Internal Tank','QuantumFuelTank','QuantumFuel','7dfe991e-ee0b-4e59-9f04-63a7b1b7db03','','',NULL), -('1800','CNOU_Mustang_Beta_BathroomDoor','Player','UNDEFINED','e970a22c-f529-4726-afa9-332a8c2807de','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('1801','RSI_Constellation_Taurus_Thruster_Mav_Joint','ManneuverThruster','JointThruster','8bf629ce-cd6d-4407-9e8e-c6b317a1b22e','','',NULL), -('1802','TMBL_Cyclone_SCItem_SeatAccess_CoPilot','SeatAccess','UNDEFINED','e5d93377-43e4-48a2-b2a7-ee920a6d4de6','','',NULL), -('1803','Carinite','Cargo','Cargo','b70d0ebd-3920-4d3c-b586-4793c76385ac','','',NULL), -('1804','AEGS_Javelin_SeatAccess_Pilot','SeatAccess','UNDEFINED','c30a9e4d-ffb2-45ce-8d0c-b6f9a44db5a9','','',NULL), -('1805','Gladius Standard Flight Blade','FlightController','UNDEFINED','bdfc2fab-24a1-44f3-8f2c-33d8ddbf589d','','',NULL), -('1806','Mountaintop Jacket Hazard','Char_Clothing_Torso_1','UNDEFINED','3113564f-c411-4b6c-a856-996f5d4a3dfd','','',NULL), -('1807','Manned Turret','TurretBase','MannedTurret','d29d0851-638d-4b83-a9a6-b0fd424ca31b','','',NULL), -('1808','FieldLite \"Scorched\" Flashlight','WeaponAttachment','BottomAttachment','ba30701c-bec0-4345-b5d9-ae869f34c126','','',NULL), -('1809','Food_plant_mushroom_01_heart_c','Food','Plant','edf3a7a5-d28d-44a2-8c79-d3907f84aba8','','',NULL), -('1810','HexaPolyMesh Coating','Cargo','Cargo','05040fdd-da2c-4c05-b79e-9653adc194da','','',NULL), -('1811','DCP Armor Core Jungle Camo','Armor','Torso','7fad90cd-39c2-420b-82d4-106353582bec','','',NULL), -('1812','mobyGlass Personal Computers','Cargo','Cargo','5fe22670-9d6f-4130-8e1c-9723ed6dcdf5','','',NULL), -('1813','AEGS_Idris_SCItem_Seat_Brig','Seat','UNDEFINED','2b77d8b0-9742-4ab6-8329-a84e2cf2d051','','',NULL), -('1814','Cliffback T-Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','5692dd55-2269-40f7-8d2e-f6566ce39301','','',NULL), -('1815','Ardent Boots Yellow','Char_Clothing_Feet','UNDEFINED','936d7af8-f840-455f-be75-09e7726be39b','','',NULL), -('1816','Door Control','Door','UNDEFINED','67c041be-1116-41df-b237-90fc8e723a33','','',NULL), -('1817','Processed Food','Cargo','Cargo','0550c6c7-e912-4cad-b7fc-d29d8fddc13a','','',NULL), -('1818','Stud','Char_Head_Piercings','UNDEFINED','98fcdedd-d5de-44cf-bdca-bfcb6c4fa5b8','','',NULL), -('1819','ADP Core Sienna','Armor','Torso','848737df-1725-4bf3-90a1-7fcbfaae7785','','',NULL), -('1820','facial_hair_012','Char_Head_Beard','UNDEFINED','b075b2cf-16a4-4152-954b-02f9fdaf3ea5','','',NULL), -('1821','RSI_Hermes_Thruster_Retro_Left','ManneuverThruster','FixedThruster','2e8b295f-297e-47a3-8687-c4d9b5655f89','','',NULL), -('1822','Seat','SeatAccess','UNDEFINED','9af78fd3-64e3-482c-99da-bfe2ad1485cf','','',NULL), -('1823','CargoBox_050x050x050_Plastic_Stacked_2','Cargo','Cargo','e908a7ab-00fb-4723-89be-3a7ba7589bc6','','',NULL), -('1824','Door Control','ControlPanel','DoorPart','845dfe2b-34b6-4b01-b07a-1052310bbb1a','','',NULL), -('1825','Microid Battle Suit Arms Lodestone','Armor','Arms','c2d33ea6-8b99-4bd6-812a-7d762471a904','','',NULL), -('1826','Seat','SeatAccess','UNDEFINED','701a0e29-3f2f-4b88-bc24-5256a85af5e5','','',NULL), -('1827','MISC_Freelancer_Base_SCItem_Dashboard_Passenger_Right','SeatDashboard','UNDEFINED','d6942c65-0223-4d84-b981-d5a20b1b401a','','',NULL), -('1828','Deo Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','188c663a-7cf2-42bf-af64-ff090540f3af','','',NULL), -('1829','Carryable_utensil_knife','Misc','UNDEFINED','821eb539-077b-4fec-ac59-4e832643e810','','',NULL), -('1830','Seat','Usable','UNDEFINED','b8974756-c06f-436e-b16a-e6ad7d6fee7e','','',NULL), -('1831','SHIELDS','ShieldController','UNDEFINED','13b0b0fb-afd9-4218-ba9f-0a415a9f6d30','','',NULL), -('1832','TMBL_Nova_SCItem_Dashboard_Gunner','SeatDashboard','UNDEFINED','0430b889-4590-47df-935d-d01a634f7295','','',NULL), -('1833','Door','Door','UNDEFINED','634c85af-c972-4b65-b30c-84a62771b5ff','','',NULL), -('1834','ESPR_BallisticCannon_FiringMechanism_S4','WeaponAttachment','FiringMechanism','d95cb1eb-f16d-47da-8c00-92f037f9dbc3','','',NULL), -('1835','Seat','Usable','UNDEFINED','4b4e7980-d286-4124-9929-13853b121a5b','','',NULL), -('1836','Door Control','ControlPanel','DoorPart','6a4ee78a-34fb-4a56-b20f-2f222b996ee3','','',NULL), -('1837','Carryable_2H_FL_075x05x05_MissionItem_Climbable','Misc','UNDEFINED','95c879b2-291e-4093-9d61-1da66df9e082','','',NULL), -('1838','Ixonia Armor Verdant Steel','Char_Clothing_Torso_1','Heavy','a38861c4-228c-4c76-bc9b-e6424c41e884','','',NULL), -('1839','Flight Blade','FlightController','UNDEFINED','ca03b11d-fa61-445c-994a-9288dcc6774a','','',NULL), -('1840','Aril Legs Red Alert','Armor','Legs','193c2eb8-dba0-4b46-919c-2d4ecf2d686b','','',NULL), -('1841','Bo-Go (Angeli Original)','Food','Tin','1a065fdd-426c-4012-9171-513bc091d321','','',NULL), -('1842','Door Control','Door','UNDEFINED','e1ca0669-b02f-4366-bafa-6b711918e3be','','',NULL), -('1843','IAE 2954 T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','82a4c2ba-34e7-4e84-bf66-cd4dd53c9ada','','',NULL), -('1844','Access','SeatAccess','UNDEFINED','51559801-c6b2-4874-9b9e-0b80c33230ba','','',NULL), -('1845','Geist Backpack Forest','Armor','Backpack','87350c7e-d9d6-4e77-ad9b-570027d99dff','','',NULL), -('1846','Venture Legs Red','Armor','Legs','cb5a5452-021d-49d1-9eed-308dc94bc7c9','','',NULL), -('1847','Lynx Arms White','Armor','Arms','acbd923b-42d3-4993-bb47-ab6a1d7ddac5','','',NULL), -('1848','Lynx Core Cold Steel','Armor','Torso','d26ac5f7-f80f-4310-a66c-5833d6c9a7ac','','',NULL), -('1849','Spirit Olympia Livery','Paints','UNDEFINED','926402d1-b900-4063-b065-f5885c3eb994','','',NULL), -('1850','Seat','Usable','UNDEFINED','b1143689-6b0d-4bd2-93fe-841ddfa56e00','','',NULL), -('1851','Seat_Jump_ANVL_Valkyrie','Usable','UNDEFINED','cc1733df-df83-4238-8cd1-687f5f2d9e8e','','',NULL), -('1852','Gladius Disrupt Camo Livery','Paints','UNDEFINED','9693c801-fa2f-485b-a8ed-10663b40290a','','',NULL), -('1853','Pite','Char_Head_Piercings','UNDEFINED','0ef557c4-4328-451e-8a81-c9ac51eeea61','','',NULL), -('1854','sc_nvy_bdu_jumpsuit_01_01_cvx01','Char_Clothing_Torso_1','UNDEFINED','fa3b9ab9-3d59-4028-ad39-b75693cc7833','','',NULL), -('1855','Personal Storage','Cargo','UNDEFINED','234cd13c-8600-4555-a9fd-9494e86c0da9','','',NULL), -('1856','Carryable_1H_CY_weight_dumbbell_1_32kg_a','Misc','UNDEFINED','339a0013-4668-4804-966a-876e9e5b1323','','',NULL), -('1857','Seat','SeatAccess','UNDEFINED','8f4fea9a-f8f0-42b2-a234-0b41da6a6454','','',NULL), -('1858','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','2af8ae93-baf0-4a14-8685-21d734998dc0','','',NULL), -('1859','RSI_Bengal_SCItem_Seat_Comms','Seat','UNDEFINED','9ac128c7-ed43-4f83-a95b-63540d9f8ec1','','',NULL), -('1860','Parallax \"Fun Kopion Tooth\" Energy Assault Rifle','Weapon','Medium','0dd2bd1b-09b3-4a95-b0f3-7aeef645ee53','','',NULL), -('1861','Wuotan Seed','Misc','UNDEFINED','ddbbd41b-423f-4d52-85a5-247d57c007f3','','',NULL), -('1862','Carrion Core Stalker','Armor','Torso','c062d1a4-1671-44b5-9e5d-98003138e12f','','',NULL), -('1863','Carrack Frontier Fighters Camo Livery','Paints','UNDEFINED','26b59f42-b324-4e71-ab3d-f07c0d8e2bca','','',NULL), -('1864','Avenger Warlock TSB Flight Blade','FlightController','UNDEFINED','e5458897-035a-46f8-88a2-cf148fcb4daf','','',NULL), -('1865','Quartz \"ArcCorp\" Energy SMG','Weapon','Medium','b3755c3d-08cc-4b7d-b13b-5b331efa1671','','',NULL), -('1866','Col_A_Airlock_Tube_Small','Usable','UNDEFINED','823486b2-0e64-4603-801f-10dbfb4b2c59','','',NULL), -('1867','ORIG_100i_Thruster_Mav_Fixed_Top','ManneuverThruster','FixedThruster','cf5a01a5-4f93-4fad-9d5d-2ff2379a0128','','',NULL), -('1868','Scorpius Lovestruck Livery','Paints','UNDEFINED','dd0f1e44-a9bc-4697-99fd-edbdac498042','','',NULL), -('1869','MSD-442 Missile Rack','MissileLauncher','MissileRack','01e5071c-2fac-4769-9fae-e1a7fbcaf34b','','',NULL), -('1870','TRGT. STATUS','Seat','UNDEFINED','d74b31b5-f8fe-46be-b9ce-ed9cf3e6a163','','',NULL), -('1871','Internal Tank','QuantumFuelTank','QuantumFuel','65aa60b0-f23d-4a42-a2f3-41c5768f679e','','',NULL), -('1872','Internal Tank','FuelTank','Fuel','1ef59a48-e683-4ed2-a425-12570826e896','','',NULL), -('1873','Door Control','ControlPanel','DoorPart','23bb79d7-cdec-4916-9642-06d2091bec3e','','',NULL), -('1874','Vulture Dying Star Livery (Modified)','Paints','UNDEFINED','f33036f7-1764-46d2-be5b-c1d80e85ebc2','','',NULL), -('1875','Citadel-SE Legs Maroon','Armor','Legs','5cc032f7-c82e-425e-be2f-1031a0f66b43','','',NULL), -('1876','Stims','Cargo','Cargo','2a010522-cec9-42f8-b48b-bcb72d5d0168','','',NULL), -('1877','Venture Helmet Tan','Armor','Helmet','e7a4f683-25bf-4383-8505-b9397fcb44e4','','',NULL), -('1878','MXOX_NeutronRepeater_PowerArray_S3','WeaponAttachment','PowerArray','9cff922f-cc03-40c6-809f-0e629dd1ab89','','',NULL), -('1879','Door Control','Usable','UNDEFINED','01b4dfc0-cfa5-4f33-8c23-4c7df1da73cf','','',NULL), -('1880','Seat','Usable','UNDEFINED','d70df0cc-a0e7-4e32-a829-6896fbb54386','','',NULL), -('1881','Pips T-Shirt','Char_Clothing_Torso_0','UNDEFINED','967fe120-742f-4745-8a85-a144e6044912','','',NULL), -('1882','ADP Arms Green','Armor','Arms','94e46e68-570d-4cc6-abae-a9f719e23786','','',NULL), -('1883','Carryable_1H_CY_weight_dumbbell_1_40kg_a','Misc','UNDEFINED','55bb0851-7708-4327-9cfc-b103779b734d','','',NULL), -('1884','display_components_s2_modular','ShopDisplay','UNDEFINED','89b7c8ee-b49a-4602-a41b-3b75300fd261','','',NULL), -('1885','Bo-Go (Hot and Sweet)','Food','Tin','05fa4991-d81c-4cf5-a901-30a56a76276b','','',NULL), -('1886','Projector_HUD_StructuralSalvage_Reclaimer','Display','UNDEFINED','7770931b-bcdf-4832-9b5e-99904a5087f7','','',NULL), -('1887','Door Control','Door','UNDEFINED','f60bb3e6-7ce6-4dff-9192-b050cae028e4','','',NULL), -('1888','Testudo Legs Earthshake','Armor','Legs','7bc5259c-6462-4c30-84ab-2ac895895ba3','','',NULL), -('1889','Remote Turret','Turret','TopTurret','9964b83a-08bc-48ee-bf29-f52ac0b8c550','','',NULL), -('1890','Demeco \"Red Alert\" LMG','Weapon','Medium','78300945-3145-4747-9b71-893a37152048','','',NULL), -('1891','Internal Tank','FuelTank','Fuel','c42d6b06-83bd-4c0d-b776-cc71e4b97cd3','','',NULL), -('1892','Odyssey II Undersuit Pink/Black','Armor','Undersuit','a715ba06-4cee-47a2-8ee5-e6664d93d480','','',NULL), -('1893','Holiday Butcher Helmet','Armor','Helmet','d628a920-cdfe-40f3-b2c2-9298a484ff18','','',NULL), -('1894','Mustang Polar Livery','Paints','UNDEFINED','172daf7d-60b6-48ac-a43a-0de8f76155bd','','',NULL), -('1895','Caterpillar Mistwalker Livery','Paints','UNDEFINED','3882f047-8ffb-4e61-abb9-c0f6c22cf57c','','',NULL), -('1896','P6-LR \"Archangel\" Sniper Rifle','Weapon','Medium','01fd5799-233a-4151-93c8-5977b6be77a3','','',NULL), -('1897','box_fabric_1_005x005x005_a','Cargo','UNDEFINED','da049cee-e276-4e5c-bb4f-36c11186110d','','',NULL), -('1898','MRAI_Guardian_Thruster_Main_MX','MainThruster','JointThruster','40b859b2-f5d9-8204-09a0-ad47375109aa','','',NULL), -('1899','SHIELDS','ShieldController','UNDEFINED','b8df1aa5-953c-40b2-89c1-a8ead095169f','','',NULL), -('1900','Door Control','Door','UNDEFINED','22923ed3-b658-4f36-a6e0-69687639b582','','',NULL), -('1901','Silnex','Cargo','Cargo','10406e96-3f14-4b43-ab35-011fecbd9b86','','',NULL), -('1902','Seat','SeatAccess','UNDEFINED','345bcddd-3c78-4154-bb96-b03d96d25d69','','',NULL), -('1903','Ares Star Fighter Lovestruck Livery','Paints','UNDEFINED','a6e4de77-54ec-486a-9210-c3f4a4d970dc','','',NULL), -('1904','mre_food_1_a','Food','Bar','f243a5ff-208b-4746-906c-0165aae7a2c6','','',NULL), -('1905','Carryable_2H_FL_crate_weapon_3_075x045x00375_b','Misc','UNDEFINED','4a5f5e36-3cf7-4406-9a3f-82ae1c6498e0','','',NULL), -('1906','AEGS_Sabre_Thruster_Main','MainThruster','FixedThruster','36362a18-f26c-490b-88cf-4fe553499a83','','',NULL), -('1907','Vehicle_Screen_MFD_Holographic_MISC_Reliant_RR','Display','UNDEFINED','fa2618d4-350d-406b-b25c-9cb9f8696e68','','',NULL), -('1908','Quantum Fuel','Cargo','Cargo','c5079ee4-767a-4698-9f41-7a874eb0158a','','',NULL), -('1909','Ignaz Surgical Gloves','Char_Clothing_Hands','UNDEFINED','99c2ef40-b340-4337-8254-7cab8f758bae','','',NULL), -('1910','890 Jump Skyline Livery','Paints','UNDEFINED','ce0e1baa-7357-45bd-8427-192f73745c81','','',NULL), -('1911','ClipVest Work Harness Dark Green','Char_Clothing_Torso_1','UNDEFINED','f7fc35b9-2980-41bd-948c-cd3483c42245','','',NULL), -('1912','Alban Shirt Striker','Char_Clothing_Torso_0','UNDEFINED','b8e7f555-36f7-4b4f-bec3-83c0fbc48de8','','',NULL), -('1913','Flight Blade','FlightController','UNDEFINED','28ec05bc-52c1-445e-91a3-c4025be63ad1','','',NULL), -('1914','PAB-1 Legs Black','Armor','Legs','1ffe9071-a197-4bb6-811c-fbf617514036','','',NULL), -('1915','Reliant Tana Livery','Paints','UNDEFINED','3a174a93-5264-4b5e-9491-e1eb419f02e6','','',NULL), -('1916','Seat','Usable','UNDEFINED','f5ca595a-0fa7-4542-bbe1-0818dd7212da','','',NULL), -('1917','Carryable_1H_CY_artefact_hadesian_1_a','Misc','UNDEFINED','dbae3b0d-087f-4543-8d03-14b9f5343d97','','',NULL), -('1918','Manned Turret','TurretBase','MannedTurret','b269383b-df0d-45ed-8977-f7dbd01d0b0b','','',NULL), -('1919','ANVL_Terrapin_BathroomDoor','Player','UNDEFINED','8a5cfe19-67a8-486d-949a-1de8c66bc895','','',NULL), -('1920','ASD Lab Sample','Misc','UNDEFINED','fff7ce37-9c5f-4af3-9f11-37b7a0265d8f','','',NULL), -('1921','Door Control','ControlPanel','DoorPart','fa4cf544-54f2-441a-abf2-618138a6ef2c','','',NULL), -('1922','Bibiana Shirt','Char_Clothing_Torso_0','UNDEFINED','452886b0-90dd-4b79-b865-3975844d9d64','','',NULL), -('1923','BEHR_BallisticGatling_PowerArray_S4','WeaponAttachment','PowerArray','0bd7b53e-3519-4799-84fe-d8ae3a04d46c','','',NULL), -('1924','Aves Starchaser Legs','Armor','Legs','96a868c8-8d8a-48a4-b77d-d772d10b1e27','','',NULL), -('1925','Fuse','Misc','Fuse','3e4429cb-fb98-420b-aed2-648dad6144e0','','',NULL), -('1926','Aslarite','Cargo','Cargo','60faf682-8595-44e4-98fb-5eb950f5da2d','','',NULL), -('1927','MISC_Hull_A_Thruster_Aux','MainThruster','FixedThruster','5ed12063-a7bc-40f3-baa5-ca7804f3e63b','','',NULL), -('1928','OMNI-AFS-Sapphire Armored Flight Suit Slate','Armor','Undersuit','dd669aaa-7cc4-4ac9-99a2-4ed7ddb59f60','','',NULL), -('1929','Morozov-SH Helmet Iceflow','Armor','Helmet','e5c78cf7-bac6-412b-92ca-e3ba047ef20a','','',NULL), -('1930','Morozov-SH Helmet Snowdrift','Armor','Helmet','6728738c-6b2f-487f-a71c-11005f1144ab','','',NULL), -('1931','INTK_RSI_Constellation_Taurus','FuelIntake','Fuel','f81b3137-06fd-434f-96c0-1f720bf30fa5','','',NULL), -('1932','Morozov-SH Helmet','Armor','Helmet','92b7a470-5842-48fe-bd53-dc9df9bb5271','','',NULL), -('1933','Campo Shoes Moss','Char_Clothing_Feet','UNDEFINED','2d2bf13c-4f72-4679-a9ec-368898082193','','',NULL), -('1934','GME 338-10 Medical Gown','Char_Clothing_Torso_1','UNDEFINED','e3abb0e4-1f84-4bae-bc50-179129c7c554','','',NULL), -('1935','Odyssey II Undersuit White/Black','Armor','Undersuit','b4795b32-99bd-4f93-88bf-0b5fcc101457','','',NULL), -('1936','Morozov-SH Helmet Scorched-X','Armor','Helmet','45402114-63a5-4ac6-8465-9949ec7198ac','','',NULL), -('1937','Dominator II-G Missile','Missile','GroundVehicleMissile','5bf375c8-d4b8-4bb1-91e7-b6350fea4ad9','','',NULL), -('1938','Mahoney Nurse Scrub Pants','Char_Clothing_Legs','UNDEFINED','6808c1ae-430b-4c1e-8a7d-137b8db82ab9','','',NULL), -('1939','Railing_Straight_4m_LT_Delta_a','Usable','UNDEFINED','27f73d25-9058-49fa-a815-ffdad33a97ac','','',NULL), -('1940','Remote Turret','Turret','GunTurret','11e88847-2825-4ed2-9821-6e489b59081a','','',NULL), -('1941','TEST STRING NAME','Armor','Torso','ea79179a-a92e-43eb-9520-88cafd91d7f3','','',NULL), -('1942','ORC-mkV Core Hurston Edition','Armor','Torso','fee6494b-5b5e-472b-87ee-7917c7fa653a','','',NULL), -('1943','Door Control','Door','UNDEFINED','5e73cc33-0857-4110-ad82-b8817c597735','','',NULL), -('1944','ARGO_MPUV_Thruster_Main','MainThruster','FixedThruster','69944f8c-00e3-4e04-a191-67bf5f8094ca','','',NULL), -('1945','BEHR_LaserCannon_Barrel_S2','WeaponAttachment','Barrel','e30a0379-e9c7-47e2-9e9a-0f6e916cb3a3','','',NULL), -('1946','Door_NoRoomConnector_ARGO_MOTH_CargoDoor_Right','Door','UNDEFINED','be325812-524b-455b-9154-2270034b0a14','','',NULL), -('1947','Krig_l22_alphawolf_Pilot_Dashboard','SeatDashboard','UNDEFINED','143ea693-552b-4cbd-bb12-9bcf3bee9043','','',NULL), -('1948','Drink_bottle_tequila_01_a','Drink','Bottle','32d0a2c9-81b3-4a15-ae03-3b35dfb2cf94','','',NULL), -('1949','Inquisitor Legs Roughshod','Armor','Legs','69aff2c2-dc52-41b9-9308-85a13d073b34','','',NULL), -('1950','XIAN_Nox_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','da2f4ca8-de56-473c-a189-862fac739db7','','',NULL), -('1951','Carryable_1H_SQ_medical_bag_1_blood_a','Misc','UNDEFINED','baa32de3-68be-4ecf-94b0-8a1747a9b65e','','',NULL), -('1952','Scorpius PHB Flight Blade','FlightController','UNDEFINED','a60acd60-5a23-4700-952d-655a8ae1b656','','',NULL), -('1953','Internal Tank','FuelTank','Fuel','f0ee6e4c-9295-430d-b345-79c3910b4701','','',NULL), -('1954','CF-447 Rhino Repeater','Weapon','Gun','ecac1df2-4f6f-49df-9cce-f188d118a789','','',NULL), -('1955','Radar','Radar','MidRangeRadar','06de143e-4e28-4cb7-8e1d-e04017aae514','','',NULL), -('1956','Mercury','Cargo','Cargo','113a22d3-81e5-4051-abc4-a8b8892d3c72','','',NULL), -('1957','TRGT. STATUS','Seat','UNDEFINED','946666c6-d71c-4cc1-94ee-6cc78a68d049','','',NULL), -('1958','ARGO_ATLS_GEO_Thruster_Large','Misc','UNDEFINED','291d8082-98ad-426e-b159-5dce406dacba','','',NULL), -('1959','Ma\'s Ready to Eat Chicken Patty Dinner','Food','Sachet','a8b8db91-ab89-45f1-912d-6b21459239b6','','',NULL), -('1960','Manned Turret','TurretBase','MannedTurret','976582c1-0858-49f0-aab6-04d7a54059ba','','',NULL), -('1961','Freelancer Stock Missile Rack','MissileLauncher','MissileRack','5d33e01a-e400-41a1-853d-d2b2c2992ab8','','',NULL), -('1962','expo_display_shirts_and_hats_drake','ShopDisplay','Default','429cac82-acdc-49f3-9041-088be2953c13','','',NULL), -('1963','Internal Tank','FuelTank','Fuel','b4c950a4-c49e-4b62-8a60-d6bd99c0ff4c','','',NULL), -('1964','Controller_Salvage_ARGO_SRV','SalvageController','UNDEFINED','d640bad1-fe08-441f-8eb9-ed9d93d0eb42','','',NULL), -('1965','ORC-mkV Arms Black','Armor','Arms','5678c265-729d-4963-87a2-660d558d5c95','','',NULL), -('1966','HeatSafe','Cooler','UNDEFINED','b4be7e39-8cd9-4d38-af89-61ace9c67796','','',NULL), -('1967','tool_manual_1_ratchet_a','Misc','UNDEFINED','19785c81-f788-4dcd-8e53-f9021d776bb4','','',NULL), -('1968','IndVest Jacket Dark Green','Char_Clothing_Torso_1','UNDEFINED','e33c7622-154c-4d53-b9c7-c076ad306ced','','',NULL), -('1969','Silverton Jacket Tan','Char_Clothing_Torso_1','UNDEFINED','c9eb28ff-e673-4942-86df-1858401d7034','','',NULL), -('1970','Remote Turret','Turret','GunTurret','bbde5f53-3923-4b20-b40f-cdc17cacf053','','',NULL), -('1971','Door Control','Door','UNDEFINED','02ef9d20-b17f-48e8-972d-501047f5122b','','',NULL), -('1972','Reliance','PowerPlant','Power','122c86dc-9d78-445d-9ebe-d2194ab94d4c','','',NULL), -('1973','Door','Door','UNDEFINED','07af82e1-74ec-4273-bd81-f1c12041b954','','',NULL), -('1974','Hydrogen Fuel','Cargo','Cargo','e6b14720-8dfc-4446-a080-621b981bfffa','','',NULL), -('1975','Gold (Ore)','Cargo','Cargo','c73f4d64-592e-4192-9248-3060656a53ec','','',NULL), -('1976','Seat','Usable','UNDEFINED','b9e5f52c-a1c9-4574-9b35-49de2a08228b','','',NULL), -('1977','Aves Core Epoque','Armor','Torso','945fab49-c444-411d-afe1-7f79f207ef65','','',NULL), -('1978','ORIG_100i_Cover_Back','Door','UNDEFINED','c0672cb4-61af-42d3-a54f-4737f548eb8e','','',NULL), -('1979','VariPuck S1 Gimbal Mount','Turret','GunTurret','c41a73ef-4bac-4890-a0fe-476a9e89325b','','',NULL), -('1980','TMBL_Storm_Dashboard_Pilot_AA','SeatDashboard','UNDEFINED','5ea8e319-4330-4554-a267-c7528310e7b3','','',NULL), -('1981','TRGT. STATUS','Seat','UNDEFINED','ed29f2ac-0589-47c1-911a-d28bda2b3e91','','',NULL), -('1982','SafeCore Boots','Char_Clothing_Feet','UNDEFINED','c1454b56-c40e-45b4-86a7-374d3112d355','','',NULL), -('1983','Riccite (Ore)','Cargo','Cargo','bf3253f5-fd3f-4a50-b6c6-70e71ccb4057','','',NULL), -('1984','CargoBox_050x050x050_Metal_Stacked_3','Cargo','Cargo','96230ff4-3d3b-436f-9399-d140f4917187','','',NULL), -('1985','Bed','Usable','UNDEFINED','2314bf95-b219-49fb-9193-28987ce88c02','','',NULL), -('1986','INTK_ANVL_Valkyrie','FuelIntake','Fuel','8ece13d8-57c4-43ae-a7a7-c8908f9e6ac4','','',NULL), -('1987','Vehicle_Screen_MFD_Holographic_MRAI_Guardian_L','Display','UNDEFINED','ede103af-e1e8-4a0a-8e0e-8e8beee4ea26','','',NULL), -('1988','fruit_alien_6_c','Misc','UNDEFINED','c6f570ec-c385-43ad-9d8c-02df1fdebe34','','',NULL), -('1989','Pulse Dominion Livery','Paints','UNDEFINED','43f7c505-eca6-4afb-9340-b6c9b548e9f2','','',NULL), -('1990','fruit_alien_4_c','Misc','UNDEFINED','e2d8fa87-865e-48a6-a9a5-c880b94b1111','','',NULL), -('1991','ForceFlex Undersuit Black/Seagreen','Armor','Undersuit','06cab33d-4e95-4aa2-901c-0cb2f0eb4350','','',NULL), -('1992','fruit_alien_5_c','Misc','UNDEFINED','6f3f72d0-aee9-42e0-990f-75713143fdc0','','',NULL), -('1993','fruit_alien_2_c','Misc','UNDEFINED','f3e12f93-195d-4f7a-a4b3-86a42267f46c','','',NULL), -('1994','fruit_alien_3_c','Misc','UNDEFINED','8a069176-b7cb-4f32-8164-741c432f767a','','',NULL), -('1995','Bed_Mattress_AEGS_Med_Bay','Seat','UNDEFINED','23edb9ff-28e5-4a1b-ad27-f0e140954d78','','',NULL), -('1996','Door Control','Door','UNDEFINED','e24abc9f-e271-4579-963b-b91bbdd65cdb','','',NULL), -('1997','KRIG_l22_AlphaWolf_Thruster_Mav_Pipe_Right','ManneuverThruster','UNDEFINED','b2fbac49-062c-4de8-9fea-0cc74418e2e4','','',NULL), -('1998','PH - hdh_pants_02_01_07','Char_Clothing_Legs','UNDEFINED','f1fb048a-3c31-4714-9156-eb33ab28ee28','','',NULL), -('1999','Riccite','Cargo','Cargo','f0557125-1e7b-48bf-847b-88dd1bcf18ab','','',NULL), -('2000','test_PowerCore','Cargo','Small','87a9dc2b-c52b-4ac3-8a6a-976c71877494','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('2001','Fresh Food','Cargo','Cargo','49150a01-2e19-47f6-ae7a-db73b3b6a842','','',NULL), -('2002','DoorProximitySensor_1x1x3','Sensor','DoorPart','c8e4227d-46c2-4242-8b1e-70efff97c8b0','','',NULL), -('2003','Quantainium (Raw)','Cargo','Cargo','120cd24f-d3b2-4059-ba72-262357050c7f','','',NULL), -('2004','P8-SC \"Midnight\" SMG','Weapon','Medium','c65903b1-82da-4da8-aed9-ee05a7610fe2','','',NULL), -('2005','TRGT. STATUS','Seat','UNDEFINED','968481b3-4953-424b-a21d-049ad7b9a819','','',NULL), -('2006','Lamb Tagine Combat Ration','Food','Sachet','1f55bacf-8182-44ae-be1c-ca72c6f0cc03','','',NULL), -('2007','55-GR Pants','Char_Clothing_Legs','UNDEFINED','268dc38b-55aa-43c4-abe8-920110dbc24e','','',NULL), -('2008','300 Series Imperial Red Paint','Paints','UNDEFINED','99cbe3b1-e153-4ebb-bb24-5cc48af5f21d','','',NULL), -('2009','ELD - shirt (04) - name','Char_Clothing_Torso_0','UNDEFINED','9bc21b79-5d2b-480e-acc0-133cba41eb70','','',NULL), -('2010','Seat','Usable','UNDEFINED','f8676884-988c-44f1-8577-da9d3301fd5b','','',NULL), -('2011','Custodian \"Desert Shadow\" SMG','Weapon','Medium','eb2d231f-cbdb-4342-b60b-1ce448b7fbc8','','',NULL), -('2012','Shiv Earthquake Livery','Paints','UNDEFINED','3c1d3efb-e714-4036-b33a-25461c5b6e53','','',NULL), -('2013','Seat','SeatAccess','UNDEFINED','3684e7aa-4c91-4a92-b767-d503bcde2f2e','','',NULL), -('2014','ADP Arms Dark Red','Armor','Arms','59d58bc0-e998-4ff1-8709-5ee0ef44d355','','',NULL), -('2015','Carryable_TBO_FL_16SCU_Commodity_Organic','Cargo','Cargo','1df43415-81ff-4fca-9432-465da8f3d9c0','','',NULL), -('2016','MISC_Hull_C_CentralWalkway_PHYSICS','Misc','UNDEFINED','37b635b9-e83d-45aa-bfe9-3c8104afefb5','','',NULL), -('2017','Weapon_Ship_Cz_002','Usable','UNDEFINED','dd0a6fc8-54b1-4ab9-8571-e736997e2a22','','',NULL), -('2018','facial_hair_008','Char_Head_Beard','UNDEFINED','6c77f900-4da0-4378-891a-387d4c2572d2','','',NULL), -('2019','300 Series Sagebrush Paint','Paints','UNDEFINED','f869a4da-b777-4cbb-9300-68ee55b3092e','','',NULL), -('2020','un_medical_box_1_glove_a','Misc','UNDEFINED','852953bd-4abe-4950-82fb-5d7c40131039','','',NULL), -('2021','RSI_Polaris_SeatAccess_Turret_SideLeft','SeatAccess','UNDEFINED','05918cba-b7b5-4bb4-881e-d70c8121d9c3','','',NULL), -('2022','Deadrig Shotgun','Weapon','Medium','7b17e697-ad38-4999-87e4-14f5a6bee3ac','','',NULL), -('2023','Venture Arms Envy','Armor','Arms','e6b1eb33-77b1-4bbb-aea9-f4b2fd738dd4','','',NULL), -('2024','Yebira I','Weapon','Rocket','4d3e0757-eec3-44ec-b603-5eaafa6c80ac','','',NULL), -('2025','A03 \"Lodestone\" Sniper Rifle','Weapon','Medium','9257ba8a-e27f-4f6d-9a37-6da4f3955724','','',NULL), -('2026','Cargo_Slot_RSI_Lynx_1Slot','Usable','UNDEFINED','0ae7e87c-8245-4306-8d35-549a99beffe3','','',NULL), -('2027','MISC_Starlancer_Seat_Access_Pilot','SeatAccess','UNDEFINED','dbf181fd-cc33-4ea9-b943-ba69da8f9412','','',NULL), -('2028','ANVL_Centurion_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','b7dd9e51-d9f6-443b-8555-6159c4621bad','','',NULL), -('2029','utensil_tray_1_food_a_with_loadout','Misc','UNDEFINED','2b15b245-88bd-483e-beba-8521b840982b','','',NULL), -('2030','VNCL_Blade_Thruster_Aux_Fixed_Bottom','ManneuverThruster','FixedThruster','2a6feae6-4626-462b-9db6-b3bb0758357b','','',NULL), -('2031','Mala','Cargo','Cargo','5ba847c7-6c58-4757-bce5-85a870042e71','','',NULL), -('2032','Chokehold Gloves Molten','Char_Clothing_Hands','UNDEFINED','424e65a6-88da-4913-b621-67a7cdd5cb16','','',NULL), -('2033','PH - scu_service_shirt_01_kelto01_01','Char_Clothing_Torso_0','UNDEFINED','8215d211-c654-4743-9468-067a95c233ea','','',NULL), -('2034','Seat','SeatAccess','UNDEFINED','349bc19b-f645-4bb8-b77c-454f8c61ef26','','',NULL), -('2035','Inquisitor Core Green','Armor','Torso','33090eaf-b61e-4ffb-b398-040c7b88129e','','',NULL), -('2036','ArmorStand_CLDA_hazmat_Tan','Misc','UNDEFINED','76dbd71b-54b9-4b14-88ae-6c4bc39d1a70','','',NULL), -('2037','drug_packet_4_open_a','Cargo','UNDEFINED','08172348-0caa-4756-8c3a-54539d20822a','','',NULL), -('2038','Tungsten','Cargo','Cargo','0c10e676-7f54-43d5-b5a1-4a5479d90d2e','','',NULL), -('2039','DockingTube_Fuel_Ports_CRUS_Starlifter','DockingCollar','UNDEFINED','05243514-64e9-43bb-a0ac-f7e0dd2cbdbf','','',NULL), -('2040','Bed_MISC_Starfarer_Crew','Usable','UNDEFINED','52a6a0f6-3556-46f2-a59a-5e937834136a','','',NULL), -('2041','Taberna Jacket Arctic','Char_Clothing_Torso_1','UNDEFINED','424d7ac4-a5c0-46b2-b50f-728c4aa71cf8','','',NULL), -('2042','ANVL_Carrack_Thruster_Mav_Top','ManneuverThruster','FixedThruster','514d62e4-5319-4390-81fa-c8b1eef8afb9','','',NULL), -('2043','Custodian \"Foundry\'s Fire\" SMG','Weapon','Medium','dee0596c-b07a-4b16-bc2e-c7d550b3ff99','','',NULL), -('2044','Torite','Cargo','Cargo','64f68fa3-cac5-4937-ba96-02a1189010d8','','',NULL), -('2045','MOTH Dolomite Livery','Paints','UNDEFINED','67a22871-aa24-4a33-b59e-1b4f8cad1aa9','','',NULL), -('2046','Aslarite (Raw)','Cargo','Cargo','0a0eb78e-6ef8-4899-9182-44e6f3bee40a','','',NULL), -('2047','RADR_WLOP_S03_Lephari','Radar','MidRangeRadar','462c1e37-6259-4942-91e1-9c4de47ef0e4','','',NULL), -('2048','OneMeal Nutrition Bar (Grilled Steak)','Food','Bar','b63510ef-b886-42a9-beb9-5d1cfe0ad085','','',NULL), -('2049','Cumulus Pants Yellow','Char_Clothing_Legs','UNDEFINED','f0341939-97c7-46d9-8423-ad11adbcaa8a','','',NULL), -('2050','Door Control','Door','UNDEFINED','debc637f-6170-460d-a8ab-63b2ae75b054','','',NULL), -('2051','Odyssey II Helmet Violet','Armor','Helmet','43112e68-7b11-4c73-86ef-43fb9f7df884','','',NULL), -('2052','PH - hdh_boots_01_01_16','Char_Clothing_Feet','UNDEFINED','bbd3bfcf-d7b1-4d25-8db6-a93d0e7cfbba','','',NULL), -('2053','DockingTube_Fuel_Ports_AEGS_Sabre_Firebird','DockingCollar','UNDEFINED','4d6afee8-dc5a-4b86-bdcd-86a9ca2aaf39','','',NULL), -('2054','S-38 Pistol','Weapon','Small','1f3400e1-0aa3-48bf-8595-38f4f4218df9','','',NULL), -('2055','INTK_AEGS_Avenger_Stalker','FuelIntake','Fuel','d35b073e-e69b-46da-a10d-b46f8ddb901e','','',NULL), -('2056','Counter_Shop_DumpersDepot_b','Usable','UNDEFINED','2c8a6267-3fe1-4572-ac67-aefe5989673c','','',NULL), -('2057','Deep-Space Undersuit','Armor','Undersuit','e1edb8e9-7287-4ff2-8425-bd505288e892','','',NULL), -('2058','CRUS_Starlifter_Thruster_Mav','ManneuverThruster','JointThruster','35d015d2-1606-4ad5-8ca1-efca47032ddd','','',NULL), -('2059','Bed','Usable','UNDEFINED','aace3ba1-9859-405a-afe4-fd9533149b00','','',NULL), -('2060','Internal Tank','QuantumFuelTank','QuantumFuel','b5ed2da5-7fed-4366-9373-68d8f9604473','','',NULL), -('2061','Weapon Rack','Usable','UNDEFINED','f47070e4-bdef-4582-b62d-0084d28a1c02','','',NULL), -('2062','Pepper','Misc','UNDEFINED','8438070e-24ce-42e0-8df0-5690a10683bf','','',NULL), -('2063','Medical Bed','Usable','UNDEFINED','009acfbf-afd3-4062-ada9-d792ccba5b96','','',NULL), -('2064','Piecemeal Armor Arms','Armor','Arms','21e26536-0dfd-4d43-8247-679ce76ce06a','','',NULL), -('2065','Cutter Deck the Hull Livery','Paints','UNDEFINED','e9a5a74d-e263-4daa-82f8-ca3674c98536','','',NULL), -('2066','TRGT. STATUS','Seat','UNDEFINED','8a389875-cf37-466f-8a30-5ea98ffeb86c','','',NULL), -('2067','Lamont Arroyo Undersuit','Armor','Undersuit','e1132d63-9907-4960-b40b-7e00caf6a248','','',NULL), -('2068','bar_box_energy_karoby_cranberry','ShopDisplay','Default','e4a14865-ad61-4d42-a4f9-b56199cd2066','','',NULL), -('2069','TRGT. STATUS','Seat','UNDEFINED','8bc29759-775e-47be-97d6-3a69b4d6639a','','',NULL), -('2070','RSI_Zeus_ES_Thruster_Mav_Top','ManneuverThruster','UNDEFINED','c1f3da4b-40d0-4dc0-b0b1-47b615d457d9','','',NULL), -('2071','ArcCorp Hat','Char_Clothing_Hat','UNDEFINED','69c1c388-67b3-490d-a022-b4fcea81812f','','',NULL), -('2072','Lynx Core Twilight','Armor','Torso','5483e12a-ea5a-4f33-ba5b-aebeab803c8e','','',NULL), -('2073','Internal Tank','QuantumFuelTank','QuantumFuel','4d11dc4c-eb54-48bf-bca6-18aa41ea9dcf','','',NULL), -('2074','Door Control','ControlPanel','DoorPart','282d498d-bcc0-4287-b4b5-7344b71187b9','','',NULL), -('2075','Internal Tank','QuantumFuelTank','QuantumFuel','bd31c660-5dda-4e02-be7c-37c387074215','','',NULL), -('2076','Seat','Usable','UNDEFINED','23ff624c-e833-45af-b616-5a62d639aac2','','',NULL), -('2077','Barrymore Pumps','Char_Clothing_Feet','UNDEFINED','3b511237-26ea-4e5b-98d1-2bfcf9577c97','','',NULL), -('2078','Door Control','Door','UNDEFINED','627efc4c-20f6-4b1b-8e7f-b799b2be7f1f','','',NULL), -('2079','Alban Shirt Smoke','Char_Clothing_Torso_0','UNDEFINED','d08f5da8-f8b1-42d3-b24e-a71799891dbf','','',NULL), -('2080','Carryable_TBO_FL_4SCU_Commodity_ProcessedGoods_EvidenceBox','Cargo','Cargo','978cc64a-ad8f-4521-b875-b4f10279bc75','','',NULL), -('2081','Sharud Wrap and Arm Bands','Char_Clothing_Torso_1','UNDEFINED','e24a7029-05b4-4998-bb4d-f18a73ba5d7c','','',NULL), -('2082','Door Control','Usable','UNDEFINED','54127adc-37d4-45e0-9956-c038f42e2737','','',NULL), -('2083','Door','Door','UNDEFINED','d134b58b-ad0b-42f1-b9aa-0c97675a92de','','',NULL), -('2084','Pyro RYT Multi-Tool','Weapon','Gadget','3a2dacbb-45ce-419e-b587-b9237b41e373','','',NULL), -('2085','Door Control','ControlPanel','DoorPart','83f7bd90-7bb3-4475-a57d-f5ed6ee01442','','',NULL), -('2086','Raw Silicon','Cargo','Cargo','1cf32b3b-d2b5-49ab-8c61-554314babdc2','','',NULL), -('2087','Ares Star Fighter Outrider Livery','Paints','UNDEFINED','aa2b54d0-1423-49f0-8d3d-efbb49d2f401','','',NULL), -('2088','Seat','Usable','UNDEFINED','433d57a1-045e-48f7-849a-5050b89a7553','','',NULL), -('2089','facial_hair_030','Char_Head_Beard','UNDEFINED','31de0f7c-a059-4a5c-8917-d699a79af303','','',NULL), -('2090','XNAA_SanTokYai_Thruster_Main','MainThruster','JointThruster','e33c55dc-1b62-4fae-b876-ee829ef67601','','',NULL), -('2091','Morozov-CH Backpack Crusader Edition','Armor','Backpack','f19807b9-521e-413d-9b19-618bfa748b1a','','',NULL), -('2092','Kopion Horn','Cargo','Cargo','8a52ac8f-1068-48d8-a7a6-69d843b9252b','','',NULL), -('2093','SubItem_FuseCover','Misc','UNDEFINED','8b344343-5242-4b50-a7b8-b5a40209dc42','','',NULL), -('2094','Pampero Boots Teal','Char_Clothing_Feet','UNDEFINED','a9c07f97-d02f-4b11-9c93-c8c1dba063e8','','',NULL), -('2095','ORIG_325a_Intake','FuelIntake','UNDEFINED','690e3bee-83d4-40de-93d2-684c9e735f35','','',NULL), -('2096','Seat','Usable','UNDEFINED','1ea09e37-b76e-4f30-90da-ca85dcf431f5','','',NULL), -('2097','Molina Mold Samples','Cargo','Cargo','444eb565-f2d3-4dbf-8872-5d66190bcffe','','',NULL), -('2098','Brocius Waist Apron','Char_Clothing_Torso_1','UNDEFINED','147536d0-7697-48cf-afd2-9abd7f879434','','',NULL), -('2099','AEGS_Retaliator_SCItem_Seat_Bed_Rear_Right','Seat','UNDEFINED','9c9e4830-2c4b-4da0-abf1-2c4da2e85cee','','',NULL), -('2100','Remote Turret','Turret','TopTurret','42344479-bde5-5ffc-b03c-6c092ec8fdb9','','',NULL), -('2101','Wanderer Boots Rocky','Char_Clothing_Feet','UNDEFINED','ceb4434a-0c5d-41fc-bfa4-07bd68bd8a30','','',NULL), -('2102','DockingTube_Fuel_Ports_ANVL_Pisces_Expedition','DockingCollar','UNDEFINED','51cf2003-7f74-4b17-874e-e7a3ec74f77e','','',NULL), -('2103','Carryable_2H_CY_furniture_pillow_1_b','Misc','UNDEFINED','ebfb36a8-e1bc-4917-ae32-ef21609cac01','','',NULL), -('2104','F&V Blend Smoothie','Drink','Bottle','cd1e84dd-0b29-417e-b05e-6610829ec3d0','','',NULL), -('2105','Yaluk','QuantumDrive','UNDEFINED','2f4b842b-6261-402d-ab6d-f49c2770c011','','',NULL), -('2106','Carbon','Cargo','Cargo','c87348e5-281a-4d8d-b5fe-a7931e60a094','','',NULL), -('2107','INTK_ANVL_Hornet_F7A','FuelIntake','Fuel','0402d021-733d-4756-aab4-16a6e31446a7','','',NULL), -('2108','RSI_Polaris_Fake_Door_Hangar','Misc','UNDEFINED','6a77265b-4d6e-4833-9e5c-e65b5742ea71','','',NULL), -('2109','Stirling Exploration Backpack Alkaline Edition','Armor','Backpack','b58d295c-0ac5-49cd-ba74-708f566fc845','','',NULL), -('2110','Flight Blade','FlightController','UNDEFINED','af5c2d90-5297-4fd5-b1c5-8122577b1878','','',NULL), -('2111','Borase','Cargo','Cargo','36f7c60e-cbdf-4b2a-9fd0-ea33307a1d11','','',NULL), -('2112','Bed','SeatAccess','UNDEFINED','680a6215-41fc-4fb8-a115-3b8dd7c5016a','','',NULL), -('2113','Navoi Boots and Pants Veritas','Char_Clothing_Legs','UNDEFINED','5ef4deda-6da8-45aa-a2f2-159071532468','','',NULL), -('2114','INTK_DRAK_Cutlass_Red','FuelIntake','Fuel','b68a1ff1-d225-48a3-b9a6-64c8c162e7d3','','',NULL), -('2115','Door Control','ControlPanel','DoorPart','a1f0a473-3392-4878-b7e1-1c4e43dbb84d','','',NULL), -('2116','Lynx Legs Olive','Armor','Legs','f6d4f561-6919-44ae-9d07-21d52d67022b','','',NULL), -('2117','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','c592aa78-4153-4af4-9cf8-1523c7e209d7','','',NULL), -('2118','Carryable_TBO_FL_2SCU_Commodity_ProcessedGoods_AceInterceptorHelmet','Cargo','Cargo','51fb5d35-749d-47b2-98f8-81f5143b27d7','','',NULL), -('2119','Flight Blade','FlightController','UNDEFINED','9abb9f19-ffdc-403b-9666-bd4ff0746c26','','',NULL), -('2120','ORC-mkX Core Righteous','Armor','Torso','995f29cf-2038-4076-bf74-ab3341a72966','','',NULL), -('2121','Freelancer Crusader Livery','Paints','UNDEFINED','c9f9a3ca-a1e5-4d37-9791-f79442ba3820','','',NULL), -('2122','Monde Arms Delta Camo','Armor','Arms','ba8e1c12-5923-4a03-a717-6e450b582105','','',NULL), -('2123','Bed','Usable','UNDEFINED','d084ee58-a2b8-49f1-a7b0-3e9cb2299799','','',NULL), -('2124','Turret','Turret','BallTurret','569d2030-1362-43e7-8589-080fad7b9042','','',NULL), -('2125','FR-76','Shield','UNDEFINED','be9729fb-c973-4c49-93cb-6a6f7c877408','','',NULL), -('2126','AEGS_Door_Decal_Avenger_Pod_6','Decal','DoorPart','261373de-19c2-4ab7-8d82-50d58b2edc58','','',NULL), -('2127','350r Ship Armor','Armor','Medium','b699ab2c-f5ad-4f14-a46f-5620d12d525d','','',NULL), -('2128','Cutter Central Tower Livery','Paints','UNDEFINED','a2b48d42-5798-4e2f-b610-198538a70b6e','','',NULL), -('2129','VaporBlock','Cooler','UNDEFINED','5f474dec-75e8-4626-9c0a-f5a48f841f33','','',NULL), -('2130','GVSR Repeater','Weapon','Gun','bcbd3b7e-4d12-448f-8866-cafd8e53b91d','','',NULL), -('2131','Table_Bar_2_Seat_High_Watertank_a','Usable','UNDEFINED','5f5b6e0d-83c3-456f-95c6-bfbee3461c0a','','',NULL), -('2132','Hadanite','Cargo','Cargo','a239c05f-4536-4c9d-9455-bbc0fe4cc2c2','','',NULL), -('2133','AIModule_Unmanned_PU_PIR','AIModule','UNDEFINED','77338d02-f321-45ab-997e-85eb7582e99b','','',NULL), -('2134','fusepanel_col_a','Cargo','UNDEFINED','9eef4d55-5fbb-42c8-ae5e-d24f848615e8','','',NULL), -('2135','Seat','Usable','UNDEFINED','b633778c-97d9-4d03-8db8-1b134aa320c6','','',NULL), -('2136','Ventra Gloves Black','Char_Clothing_Hands','UNDEFINED','2fd2a3ae-e74c-4dd5-8513-8192887f1d22','','',NULL), -('2137','ANVL_Spartan_SCItem_Dashboard_Driver','SeatDashboard','UNDEFINED','2fb62910-ac97-4caa-b6f7-281bf6f26161','','',NULL), -('2138','facial_hair_019','Char_Head_Beard','UNDEFINED','547dcea1-2559-4f54-af6a-e7f025552e96','','',NULL), -('2139','Drink_bottle_cognac_01_a','Drink','Bottle','9d7c6c8c-979b-4c16-bdd5-1a3776aeb89e','','',NULL), -('2140','Flight Blade','FlightController','UNDEFINED','b204b115-8178-40ce-9959-cd5bddb06ffc','','',NULL), -('2141','Seat','SeatAccess','UNDEFINED','10579633-fb78-4144-b0ac-77f1027d0943','','',NULL), -('2142','TroMag Burst Generator','EMP','UNDEFINED','6557820b-a5d1-4630-80aa-44d41058e488','','',NULL), -('2143','Flight Blade','FlightController','UNDEFINED','5c453707-7c9d-44e9-a0d4-61fbeb7dc323','','',NULL), -('2144','TS-25 Basara (2.5x Telescopic)','WeaponAttachment','IronSight','d2da6df5-7f4f-4ef3-ada2-92de87d7487a','','',NULL), -('2145','Col Head Cover Teal','Char_Clothing_Hat','UNDEFINED','a8fef630-d37a-4e7e-afd7-58bcd57d5798','','',NULL), -('2146','Sabre Ashcloud Livery','Paints','UNDEFINED','cbd82715-40b5-48f1-9d3c-5597383c1b81','','',NULL), -('2147','Weapon_Rack_Cz_005','Usable','UNDEFINED','66d76e24-ffea-4573-9ce3-c70eabd27336','','',NULL), -('2148','ARMR_ANVL_Paladin','Armor','Medium','e087882e-e595-4be9-9453-010962e20fbc','','',NULL), -('2149','AAT-34 Turret','Turret','MannedTurret','a34be69f-2a83-4c98-bc01-9e9190128d17','','',NULL), -('2150','TrueDef-Pro Core Silver/Gold/Grey','Armor','Torso','10851381-2c03-48e0-a6b2-cb84fd3a34ec','','',NULL), -('2151','MacFlex Core Blue','Armor','Torso','3d80dd93-4f5c-472a-bf51-25e683f7ca7b','','',NULL), -('2152','Door Control','Door','UNDEFINED','852098d2-6fcc-4128-af35-48158ddcc76b','','',NULL), -('2153','Door Control','Door','UNDEFINED','96780aaa-6f9e-4ff9-a039-5598cd9f7273','','',NULL), -('2154','un_can_drink_2_a','Misc','UNDEFINED','3b1b92f9-e59f-4c23-a4fd-b48a20358044','','',NULL), -('2155','Vehicle_Screen_Physical_L21_L','Display','UNDEFINED','8ae5736b-eceb-407a-85a1-32a0689ca10e','','',NULL), -('2156','INTK_ORIG_85x','FuelIntake','Fuel','351aeb24-e455-4767-99ed-887d2f59cf4f','','',NULL), -('2157','Aurora Mk II Cloudbuster Livery','Paints','UNDEFINED','c8ca15b3-5e3d-4d6a-b606-3e0f1cfed3e2','','',NULL), -('2158','AAT-34 Turret','Turret','MannedTurret','b0329c6c-5a8d-41be-8baf-ad80e605c63c','','',NULL), -('2159','Internal Tank','FuelTank','Fuel','c36f6a0e-4f4a-4335-b788-f76fd9e998a6','','',NULL), -('2160','RangeFinder Jacket Aqua','Char_Clothing_Torso_1','UNDEFINED','4ceb0ca3-1ebd-41be-a5ff-bd1e57db89c0','','',NULL), -('2161','Corundum','Cargo','Cargo','f8822a2b-d7db-4556-98d3-a94fae02ceb7','','',NULL), -('2162','Impulse','QuantumDrive','UNDEFINED','cbcfa21a-a9b8-4932-945a-ad2a93971157','','',NULL), -('2163','Agure','Radar','MidRangeRadar','94e97499-375e-4c63-a2ea-c605a4d3f461','','',NULL), -('2164','Amaris Shirt Ochre','Char_Clothing_Torso_0','UNDEFINED','6400df60-19b1-4c4b-97ba-809da6fc99a2','','',NULL), -('2165','Access','SeatAccess','UNDEFINED','6df5bcdd-fd7f-40e5-9d71-a0bb0dd961f1','','',NULL), -('2166','Inquisitor Legs Earthwork','Armor','Legs','ff37159c-c703-4ec1-bb06-670929105e56','','',NULL), -('2167','BEHR_LaserCannon_FiringMechanism_S7','WeaponAttachment','FiringMechanism','df8259d1-ae3e-4d10-bfd0-60807ac88b3e','','',NULL), -('2168','Pulverizer \"Mustard\" LMG','Weapon','Medium','a8a23362-79b1-44bf-b7a8-d5c91ffc9a82','','',NULL), -('2169','GATS_BallisticCannon_PowerArray_S1','WeaponAttachment','PowerArray','672d036b-ffbd-4dab-8a64-7bd7f0595f0b','','',NULL), -('2170','GAMA_Syulen_Thruster_Mains_Small','MainThruster','FixedThruster','f4cc5500-1dc5-4eb3-affa-cbbfa6d500fe','','',NULL), -('2171','Seat','Usable','UNDEFINED','1574f133-7688-4caa-a233-136716fff86a','','',NULL), -('2172','Hephaestanite','Cargo','Cargo','caccaebe-1830-4bd5-b034-62484431255f','','',NULL), -('2173','Agricultural Supplies','Cargo','Cargo','6e9e8d41-2b26-41ef-ad34-40511ee253da','','',NULL), -('2174','CRUS_Star_Runner_Thruster_Retro','ManneuverThruster','UNDEFINED','74ce0251-2f06-48c6-9ff2-929503a4cdc3','','',NULL), -('2175','Remote Turret','Turret','GunTurret','ddef5a65-6ba0-458a-8345-077de298cd15','','',NULL), -('2176','Anvil F7A Hornet Mk I Nose Turret','Turret','CanardTurret','61c0e15d-9219-4d8b-ad78-51a2bd0a78cb','','',NULL), -('2177','Seat','SeatAccess','UNDEFINED','3f8ff318-91ae-4772-8f70-3cd006156efd','','',NULL), -('2178','Bed_RSI_Phoenix_Left','Usable','UNDEFINED','9f431446-e016-4f4e-b6b4-c4bf47b594b0','','',NULL), -('2179','Tempest II Missile','Missile','Missile','a655616b-772f-4760-b6a1-404497eb10ec','','',NULL), -('2180','Carrack Citizens for Prosperity Garnet Livery','Paints','UNDEFINED','70534a42-fc5e-4006-856b-f64b2b4d77ab','','',NULL), -('2181','KRIG_l22_AlphaWolf_Thruster_Mav_Capsule_Top','ManneuverThruster','UNDEFINED','204ffee1-11f3-4499-8567-9ed83b744621','','',NULL), -('2182','Mantis Skullcrusher Livery','Paints','UNDEFINED','75d33e03-5647-476d-88b1-e495abece87b','','',NULL), -('2183','MSD-313 Missile Rack','MissileLauncher','MissileRack','f8d3a1e1-0d75-45bb-a453-898a7cf83382','','',NULL), -('2184','TRGT. STATUS','Seat','UNDEFINED','7b34c656-dbc9-438d-a20d-b65e484b11b1','','',NULL), -('2185','Lamont Corvus Undersuit','Armor','Undersuit','d2c7edff-63ae-4b69-971d-a4a03db6dfc8','','',NULL), -('2186','Human Food Bars','Cargo','Small','172e5211-6eed-4dc7-8fa6-1e7cabd0460f','','',NULL), -('2187','Year of the Rooster Envelope','Cargo','Cargo','9ebd94f1-9523-4e50-b2de-0fa5397b1899','','',NULL), -('2188','RSI_Perseus_Seat_Access_Gunner','SeatAccess','UNDEFINED','93a623b0-4122-4a51-aed8-efa2f5e142e4','','',NULL), -('2189','Pink QuikFlare','Weapon','Gadget','96ceb011-ae61-45eb-85c3-21093623b4b8','','',NULL), -('2190','Regulus','PowerPlant','Power','688aab9c-bc62-4774-be7d-065dee7e2187','','',NULL), -('2191','F55 \"Deadlock\" LMG','Weapon','Medium','fd510860-a431-42fd-8648-ac86b4d58368','','',NULL), -('2192','Lt_B_Door_Override','Misc','UNDEFINED','f3878004-716a-4d3f-8911-ac92f048e165','','',NULL), -('2193','Pite','Char_Head_Piercings','UNDEFINED','4c5a18d6-cb25-4750-9edd-ec01961f470f','','',NULL), -('2194','facial_hair_001','Char_Head_Beard','UNDEFINED','3df7bdc3-ea80-47db-bbb7-8a6f28701c3e','','',NULL), -('2195','RSI Decoy Ammo Box','WeaponDefensive','CountermeasureLauncher','ab68559a-4ef5-446b-9e13-efd92924911d','','',NULL), -('2196','Zeta-Prolanide','Cargo','Small','be9dfde4-55e4-421b-8d00-2274082f91cb','','',NULL), -('2197','ExerciseSpot_With_Mat','Usable','UNDEFINED','06fd30e9-d054-4bd8-88c4-d0092409e3aa','','',NULL), -('2198','LH86 \"Warhawk\" Pistol','Weapon','Small','e0a377a8-c275-4c88-9885-3746f50caf9e','','',NULL), -('2199','Desert Quasi Grazer Egg','Misc','Harvestable','b3f97a24-b941-4551-ba4b-161b5af139e8','','',NULL), -('2200','Salt','Misc','UNDEFINED','d4c6464e-b7d6-4987-baa8-f2fef51553f6','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('2201','Lynx Legs Ferrum','Armor','Legs','269611ac-9ad2-4b4d-b564-47158e31a76a','','',NULL), -('2202','DRAK_Golem_OX_Thruster_Main_VTOL_R','MainThruster','FixedThruster','24619995-b3dc-4c28-be3c-419d15483eb1','','',NULL), -('2203','Manned Turret','TurretBase','MannedTurret','0808fb16-e925-4b7b-bcdb-3aafe7c1e51d','','',NULL), -('2204','Lost Plague Helmet Explosive Orange','Armor','Helmet','6f6c2153-0e56-4f89-b958-2818538e343b','','',NULL), -('2205','LH86 \"Luckbringer\" Pistol','Weapon','Small','4ead50b4-ffef-46b1-8f2d-e4c5e489786b','','',NULL), -('2206','Taos Balaclava and Goggles','Char_Clothing_Hat','UNDEFINED','3bb81f10-c0a1-4096-be19-e785d02b9fbf','','',NULL), -('2207','ORIG_300i_Seat_Bed','Seat','UNDEFINED','05f30fb7-2aa4-497a-8e30-9b07f2993460','','',NULL), -('2208','ARGO_SRV_Thruster_Mav_Top','ManneuverThruster','UNDEFINED','e14330aa-6469-40a2-8dfb-51ee671df2c7','','',NULL), -('2209','Bed','Usable','UNDEFINED','5876e76f-d77b-4b07-a496-546db54fe2d4','','',NULL), -('2210','PAB-1 Legs Red','Armor','Legs','1d6987f1-51c0-4a3a-b564-0e599d24f905','','',NULL), -('2211','Ardent Boots Orange','Char_Clothing_Feet','UNDEFINED','3baa5546-317b-4540-9734-e270f09c85c3','','',NULL), -('2212','Spirit Radiant Livery','Paints','UNDEFINED','3e4776bd-4a76-43cb-a599-a4051b7fa95f','','',NULL), -('2213','Odyssey II Undersuit Sunset','Armor','Undersuit','c5d3c332-9bca-4818-b1b6-603054bc543d','','',NULL), -('2214','Antium Helmet Midnight Sun','Armor','Helmet','6e0b78ef-3bab-49d1-abb0-aa8f092918de','','',NULL), -('2215','Weapon_Rack_MISC_Starlancer_TAC','Usable','UNDEFINED','c8ae14ec-eb96-43a6-bea7-4c6493d20422','','',NULL), -('2216','Invictus Flyby Hat Blue','Char_Clothing_Hat','UNDEFINED','18efa5a5-38f5-4ef5-82c6-77658b554b90','','',NULL), -('2217','Antium Helmet','Armor','Helmet','8821103e-f5fa-46d9-99c4-f3d6b5e5cb24','','',NULL), -('2218','Borase (Ore)','Cargo','Cargo','78099b08-6768-4dba-a27c-bc8d395d23b9','','',NULL), -('2219','HEX','Shield','UNDEFINED','2de33b34-afaf-40ec-ab30-0a5039946866','','',NULL), -('2220','Morozov-SH Helmet Smokescreen','Armor','Helmet','b2cc5f92-d8c3-43d2-8ca6-cf05dfc38f9f','','',NULL), -('2221','Xanthule Sehya Helmet','Armor','Helmet','a672f906-b927-415e-959a-b558b0d43b6e','','',NULL), -('2222','PowerSuit_SCItem_Dashboard','SeatDashboard','UNDEFINED','123e66a3-816f-4a87-8381-c9be0d1bfc38','','',NULL), -('2223','Door Control','ControlPanel','DoorPart','e79cd97e-4e55-4749-9242-90692b572ac0','','',NULL), -('2224','V880','Radar','MidRangeRadar','5fd1c4a5-853e-4643-ae44-606d03a8edd8','','',NULL), -('2225','Organics','Cargo','Cargo','ef4dc5cb-6201-4434-96a9-bf7bd6fe0dea','','',NULL), -('2226','ANVL_Hornet_F7_Mk2_Thruster_Mav_Front_1','ManneuverThruster','JointThruster','687d5f53-61bd-4dab-ae29-f1604bbe01b5','','',NULL), -('2227','AEGS_Vanguard_SCItem_Seat_Bed_Lower','Seat','UNDEFINED','5505bf9e-225e-4cfc-9c23-594537f86d9d','','',NULL), -('2228','Arden-SL Arms Coramor Edition \"Fate\"','Armor','Arms','fade1db1-e166-4e5d-bc7c-332a83019817','','',NULL), -('2229','KRIG_P72_Archimedes_Thruster_Retro_01','ManneuverThruster','FixedThruster','2cbcbfe7-f4a2-46e1-a9cc-fa7d552dbaae','','',NULL), -('2230','Wolf Heatsink Livery','Paints','UNDEFINED','c3e7a9e5-9782-4fdb-849f-86f8eb40e1a0','','',NULL), -('2231','Defender Platinum Livery','Paints','UNDEFINED','5ccd4753-7127-48f6-9699-867ea22f6817','','',NULL), -('2232','Locker_Suit_RSI_Polaris_Captain','Usable','UNDEFINED','6a462d34-a369-4f21-aa40-1d21cbab5757','','',NULL), -('2233','Iodine','Cargo','Cargo','1d18a4a6-57d2-44a7-a798-32aea920877a','','',NULL), -('2234','Hadanite','Cargo','Cargo','5e34efbb-54df-4d3e-a12f-14c06675d1c8','','',NULL), -('2235','Door Control','Door','UNDEFINED','9d1b1887-6e31-44dd-94fc-f77681bfb142','','',NULL), -('2236','Seat','Usable','UNDEFINED','22418767-3104-4659-be14-cf3329ecc8fa','','',NULL), -('2237','MISC_Freelancer_SCItem_Seat_Bed_Lower_Right','Seat','UNDEFINED','f6e4ade8-7b7a-4bb9-91e6-dbccec421e57','','',NULL), -('2238','DRAK_Clipper_Thruster_Retro_Left','ManneuverThruster','UNDEFINED','c4c39ace-92a7-46a7-8d62-096c3feac067','','',NULL), -('2239','Castillo Jacket Fog','Char_Clothing_Torso_1','UNDEFINED','f2c5162c-e026-469c-beca-bacc7bec4a38','','',NULL), -('2240','Carryable_1H_CY_bottle_alcohol_01_beer_smoltz_anim_a','Drink','Bottle','9031314a-b76d-4e60-bce8-b61706be4ce3','','',NULL), -('2241','Bed','Usable','UNDEFINED','6b8d99d0-cd74-4e89-8dd9-a3bf2a32269a','','',NULL), -('2242','Giotto Jacket Teal','Char_Clothing_Torso_1','UNDEFINED','4e62dc1a-c7da-4170-a482-c5e5e4270355','','',NULL), -('2243','Atlasium','Cargo','Cargo','9bd39a36-4c9f-47c2-b0c4-c0a2019922b4','','',NULL), -('2244','ANVL_Hornet_F7A_Mk2_Thruster_Retro','ManneuverThruster','JointThruster','9116dc5d-28f2-487b-90ba-dc0739f0610d','','',NULL), -('2245','SCItemDisplayScreen_NewsScreen_Orison','Display','Default','b0e6f56b-4e07-4c81-80ad-4d73776df4cd','','',NULL), -('2246','Morozov-SH Legs Scorched','Armor','Legs','5982a672-c426-4537-b76d-10076a837cc2','','',NULL), -('2247','Weapon Rack','Usable','UNDEFINED','7bdce088-6a90-4ab9-a2f7-5a2956170768','','',NULL), -('2248','Omnitrek Jacket Permafrost','Char_Clothing_Torso_1','UNDEFINED','0ad851e9-678a-4a36-9af9-1f3818f1f142','','',NULL), -('2249','DockingTube_Fuel_Ports_AEGS_Retaliator','DockingCollar','UNDEFINED','ed03914c-e710-4ce9-8c60-7ed33d5892ad','','',NULL), -('2250','Retaliator Torpedo Front Module','Module','UNDEFINED','e336f444-1d23-4707-8ec1-570b7205e83b','','',NULL), -('2251','RSI_Zeus_ES_Thruster_Mav_Bottom','ManneuverThruster','UNDEFINED','d861295e-0455-4c61-8aca-52fd998be3aa','','',NULL), -('2252','VariPuck S6 Gimbal Mount','Turret','GunTurret','b9663f1c-c365-4c87-9086-1fdf626ede64','','',NULL), -('2253','Year of the Horse Envelope','Misc','UNDEFINED','c5a6b5c4-5773-4020-bd6a-479b7f69cc34','','',NULL), -('2254','MISC_Freelancer_Thruster_DUR_Main','MainThruster','FixedThruster','1af82257-3ff6-4489-b2a6-06f6e08db483','','',NULL), -('2255','Ball','Char_Head_Piercings','UNDEFINED','d8145c08-5e71-46b5-a205-1fbdb56b4380','','',NULL), -('2256','Util_A_Bulkhead_Airlock_Large','Usable','UNDEFINED','178cd7a4-a55d-4949-9beb-b741a3039787','','',NULL), -('2257','DRAK_Vulture_Component_Computer','Player','UNDEFINED','75a56aed-79d7-4a54-9a58-de4024580b3d','','',NULL), -('2258','MISC_Starlancer_OuterBtn','Elevator','UNDEFINED','63d5bca2-b9fa-49fc-bb21-6e3552beb16d','','',NULL), -('2259','Adiva Jacket Tan','Char_Clothing_Torso_1','UNDEFINED','faa0a963-75b8-4f1c-9806-57f9c52d1d92','','',NULL), -('2260','Beradom','Cargo','Cargo','7bf152c5-b916-4673-becc-b1ca9e8387b7','','',NULL), -('2261','Sabine Undersuit Red Festival','Armor','Undersuit','6bd949ad-cb9d-41d1-b6a5-2ac931bc61d5','','',NULL), -('2262','Turret','Container','Cargo','31964656-baa7-4a9f-af1c-9ede79fdb0df','','',NULL), -('2263','H_Dashboard_Projector_HUD_RSI_Zeus_CP_L','Display','UNDEFINED','c555b750-f66d-47da-a72a-9db3e099f5eb','','',NULL), -('2264','RSI_Polaris_SeatAccess_Turret_SideRight','SeatAccess','UNDEFINED','48755b6d-4340-4250-a50a-cd14c1ead281','','',NULL), -('2265','Libio Jacket Dark Red','Char_Clothing_Torso_1','UNDEFINED','d5c52258-f451-4b5b-a126-f754ba4085e8','','',NULL), -('2266','Body','Char_Clothing_Hands','Medical','6fcf184d-6751-4b1c-8a3d-d3a5810da2a8','','',NULL), -('2267','Seat','SeatAccess','UNDEFINED','fe9e7689-75da-4a87-a7d9-e7ee6ca6b4bd','','',NULL), -('2268','F_Holo_Briefing_Idris','Display','UNDEFINED','d0d13a55-2ce8-481b-87ae-e9890b47e190','','',NULL), -('2269','Paint_Prospector_NineTails','Paints','UNDEFINED','00cfceea-952f-48f6-b3e7-4939109a8c6a','','',NULL), -('2270','Cutter Aspire Livery','Paints','UNDEFINED','de4b8008-b8a6-4714-b0d8-e25c4b0c1744','','',NULL), -('2271','Origin Black Rook','Gadget','UNDEFINED','cc59d92a-a095-44c5-b4c5-e59735149f88','','',NULL), -('2272','Small Artifact Fragment (Pristine)','Misc','UNDEFINED','d81691b2-10ef-4f51-b611-d6060b58b451','','',NULL), -('2273','Quartz \"Crusader\" Energy SMG','Weapon','Medium','81cd000c-69a7-4125-848a-e91c649a61c1','','',NULL), -('2274','Corundum','Cargo','Cargo','31f95b2e-7284-4a4f-94d7-3deccbc6b367','','',NULL), -('2275','Davin Work Gloves Purple','Char_Clothing_Hands','UNDEFINED','c748ae44-143b-4673-b87e-d4e47fc83147','','',NULL), -('2276','RSI_Polaris_Thruster_Retro','ManneuverThruster','FixedThruster','645d99e9-ae6b-4b09-aad8-61f9ccfc5f98','','',NULL), -('2277','Morozov-SH Core Spitfire','Armor','Torso','05a35240-10d0-4468-a143-bdc900edf1cf','','',NULL), -('2278','AEGS_Idris_SCItem_Dashboard_ATC_Left','SeatDashboard','UNDEFINED','9b63c0b8-9b5e-45dd-98d5-768050648292','','',NULL), -('2279','Nyman Jacket Dark Red','Char_Clothing_Torso_1','UNDEFINED','2673f6cb-3092-41f9-97e5-bc76637499d1','','',NULL), -('2280','Screen','Usable','UNDEFINED','272f05f5-ba0d-4d4b-9bd3-c401fd907c6b','','',NULL), -('2281','Tungsten','Cargo','Cargo','f50f3cf3-388a-43cf-bbba-50fc567827bf','','',NULL), -('2282','MISC_Fortune_Thruster_Mav_Fixed_02','ManneuverThruster','FixedThruster','ff030d2c-2e17-425a-9dc0-b4c5baa582dc','','',NULL), -('2283','Weapon_Rack_1_BEHR_Shotgun_Common_001','Usable','UNDEFINED','769694ca-2b04-4429-a998-8a61f4b18364','','',NULL), -('2284','MacFlex Arms Grey','Armor','Arms','3472e32e-1ad4-4411-9760-d61c62a298f2','','',NULL), -('2285','ARMR_ANVL_Hurricane','Armor','Medium','2a4871cf-1b60-4979-9c47-1801f10855bb','','',NULL), -('2286','ControlPanel_Screen_AirlockControl','ControlPanel','DoorPart','aff49a61-e46e-4803-9fc7-380304365ea3','','',NULL), -('2287','Singe Cannon (S3)','Weapon','Gun','f15b742b-1457-4eb7-b7aa-078816297d29','','',NULL), -('2288','CRUS_Starlifter_Thruster_Main_M2','MainThruster','FixedThruster','4d17b1c3-df8f-47b5-b1cd-0b86b6246e81','','',NULL), -('2289','TRGT. STATUS','Seat','UNDEFINED','a4651f5c-1d51-429f-bda8-9591a87486a4','','',NULL), -('2290','Anvil Lightning F8C Turret','Turret','BallTurret','537e8385-4679-41e1-9fe3-b5cfc0f48a93','','',NULL), -('2291','Door Control','ControlPanel','DoorPart','e75b9a43-2a87-44bc-837c-d2ba66936ee1','','',NULL), -('2292','PersonalMobiGlas_PU','Display','Personal','f92ef99d-1488-4001-89c7-82d713be0587','','',NULL), -('2293','orig_bedding_duvet_4_k','Seat','UNDEFINED','f9b15163-200d-445b-8cbe-9c2b132ff28b','','',NULL), -('2294','AEGS_Sabre_Peregrine_RADR_Display','Display','UNDEFINED','08bebde8-4d8a-4514-bd88-ce65fb93c5d8','','',NULL), -('2295','Seat','SeatAccess','UNDEFINED','54303e36-6821-44f2-abee-163e08b46f71','','',NULL), -('2296','IceBox','Cooler','UNDEFINED','e6ad7280-57d0-4222-942e-6c2a23e78bf6','','',NULL), -('2297','Personal Storage','Cargo','UNDEFINED','cf5b2d17-4b32-43c3-83b7-c9963803325d','','',NULL), -('2298','PC2 Dual S3 Mount','Turret','GunTurret','500a82b0-3c76-443d-b302-1b0ccf15071f','','',NULL), -('2299','Salluq Mask Brown','Char_Clothing_Hat','UNDEFINED','5eb44c18-aef1-469d-9a43-ef822db9a182','','',NULL), -('2300','Flight Blade','FlightController','UNDEFINED','8d56a7c1-ba4c-468b-9e25-ae4e3b8cc7a2','','',NULL), -('2301','TRGT. STATUS','Seat','UNDEFINED','99bb3f78-6117-4e2d-988c-cca2b3a382ae','','',NULL), -('2302','OptiMax','Gadget','Gadget','1a6b9b13-d3f8-4f32-b7db-146b90aad2da','','',NULL), -('2303','Day One Shirt \"Voyager\"','Char_Clothing_Torso_0','UNDEFINED','60c2f32a-d5e8-4dee-9dc0-c66cf99051a8','','',NULL), -('2304','Colonialism_Outpost_RN_Multi_Fuel_Tank_Unit','FuelTank','UNDEFINED','d614406d-d0c0-4ef4-b285-871f90a0161a','','',NULL), -('2305','Elespo','Cargo','Cargo','980a8f2c-d66a-4f28-b498-89a3a9015b51','','',NULL), -('2306','Carbide Jacket Sandpiper','Char_Clothing_Torso_1','UNDEFINED','ccb97cb5-70c5-4977-b50a-ca27a40fce91','','',NULL), -('2307','Recycled Material Composite','Cargo','Cargo','2318741d-5231-4f0e-9376-074de79dd8fc','','',NULL), -('2308','Relay','Relay','UNDEFINED','a1c1bb89-b476-4293-8898-d324ca44d681','','',NULL), -('2309','Fresnel \"Deepwater\" Energy LMG','Weapon','Medium','123f7dff-f340-48f9-af35-86f986ec86d2','','',NULL), -('2310','DRAK_Cutter_Roof_Expo_Nose','Misc','UNDEFINED','7d400e7a-bc43-4eff-972a-412e765172fa','','',NULL), -('2311','WEAPONS','WeaponController','UNDEFINED','9316c060-265a-44c1-acd0-bdeca41f3548','','',NULL), -('2312','Paint_125a','Paints','UNDEFINED','87273803-63a1-4f31-b711-34d37ba1af40','','',NULL), -('2313','Debnam Gloves Twilight','Char_Clothing_Hands','UNDEFINED','af97fead-bd65-4aff-b43d-7622bdb71945','','',NULL), -('2314','Internal Tank','FuelTank','Fuel','d3ea8a34-e2f2-46b3-8cb5-925be5d2c34d','','',NULL), -('2315','Carryable_2H_FL_cinderblock','Misc','UNDEFINED','ac10e6f5-5d79-4840-b9cd-1900ee58f2c1','','',NULL), -('2316','Grammercy Food Service Pants','Char_Clothing_Legs','UNDEFINED','b2bae259-e5c1-4a99-8ec0-3f6eb432778b','','',NULL), -('2317','Door Control','Door','UNDEFINED','a2ff1272-897a-4a0e-8f86-37934b975817','','',NULL), -('2318','XIAN_Scout_CML_Chaff','WeaponDefensive','CountermeasureLauncher','b6ac2a47-bb88-4c40-ba1b-8e5d49d65a7a','','',NULL), -('2319','MASTER_un_box_carryable_2h','Cargo','UNDEFINED','555d9566-baa4-4ced-b702-a58980d64c60','','',NULL), -('2320','AEGS_Hammerhead_SCItem_Seat_Captain_Room','Seat','UNDEFINED','278d19fe-1ec3-46c6-bc3b-e809940b6157','','',NULL), -('2321','Atavi Shirt White Gold','Char_Clothing_Torso_0','UNDEFINED','f25f7977-7675-4249-8d4c-37a14d5dc157','','',NULL), -('2322','DRAK_Corsair_Thruster_Retro_B','ManneuverThruster','UNDEFINED','c4d7ff39-96ce-4e93-a4fb-8ec8d6a9d2b5','','',NULL), -('2323','Remote Turret','Turret','Utility','e4d17bcd-6b55-4e7e-b66d-0a53c710030a','','',NULL), -('2324','MRAI_Guardian_Thruster_Mav_Bottom_MX','ManneuverThruster','FixedThruster','4043a8af-f73c-e074-e42d-9c5d1f067e83','','',NULL), -('2325','Charger','PowerPlant','Power','913a1e91-896a-483f-a5e0-34865d4ceee1','','',NULL), -('2326','TRGT. STATUS','Seat','UNDEFINED','daf6da19-6a16-4b07-83b2-f45fab831699','','',NULL), -('2327','TrueDef-Pro Legs Black/Pink/Purple','Armor','Legs','fe103ec5-a4aa-4bf8-af45-f4f1b0256341','','',NULL), -('2328','Utensil_Plate_EggsBeansHash','Misc','UNDEFINED','8542d3fd-cb65-4465-a733-1e1d976b875f','','',NULL), -('2329','Ajax Security Uniform Shoes','Char_Clothing_Feet','UNDEFINED','26929685-659d-460c-b6c9-d3286ff9ab44','','',NULL), -('2330','Armor_Crate_CZ_Horizon_L_001','Usable','UNDEFINED','dd44eee3-8e4b-4c0f-85d7-58810236c28f','','',NULL), -('2331','Seat','Usable','UNDEFINED','03321e62-779e-4d48-8525-777f1d699eba','','',NULL), -('2332','CBH-3 Helmet Dark Green','Armor','Helmet','bb7c704d-b9e0-4748-ab18-3ceb602a1788','','',NULL), -('2333','Door Control','ControlPanel','DoorPart','3cc8dfa6-cc91-4ffc-b432-e1935204fd36','','',NULL), -('2334','Uncut SLAM','Cargo','Cargo','4a61fde7-b7b6-4ae6-8fc8-3aeaab9f874c','','',NULL), -('2335','Distilled Spirits','Cargo','Cargo','7655d13a-54ce-4627-97b5-87fe3be0b6f8','','',NULL), -('2336','box_plastic_3_005x005x005_a','Cargo','UNDEFINED','3dc1d51d-54cb-4b9b-9207-6e1c1519261b','','',NULL), -('2337','Seat','Usable','UNDEFINED','72228c22-93d8-4122-b251-86b6ba75a42c','','',NULL), -('2338','Tumbler Glass','Drink','UNDEFINED','b5ab0a94-cecd-4b95-8129-42c793cd7ff0','','',NULL), -('2339','Ponos Boots Yellow','Char_Clothing_Feet','UNDEFINED','3f4af48b-5d66-4e7d-a208-13b0670307db','','',NULL), -('2340','100 Series Melrose Livery','Paints','UNDEFINED','3d92e380-e6c8-49f3-8ef4-465815452a30','','',NULL), -('2341','ESPR_BallisticCannon_Barrel_S4','WeaponAttachment','Barrel','2d9f0c10-961c-477f-b34e-4c84908fcb82','','',NULL), -('2342','Access','SeatAccess','UNDEFINED','28bd3ee1-be9c-42c3-9126-095cdafdbce0','','',NULL), -('2343','Internal Tank','FuelTank','Fuel','77397e13-86c8-491c-879b-df474de1e18f','','',NULL), -('2344','Internal Tank','FuelTank','Fuel','6f09c622-6711-43ea-b79b-8f7a197f4277','','',NULL), -('2345','Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','b7f4770a-4774-4ce5-ad20-00a0bb5d6bdb','','',NULL), -('2346','RSI_Bengal_Thruster_Main_Small','MainThruster','JointThruster','1dfadc88-6e74-42cf-895b-8bf03deb3089','','',NULL), -('2347','Chokehold Gloves Molehill Brown','Char_Clothing_Hands','UNDEFINED','dd9cd32c-7b68-4522-9d8c-493fc555db61','','',NULL), -('2348','Liar T-Shirt','Char_Clothing_Torso_0','UNDEFINED','5b5d8165-6147-49bb-830d-2aaaa345aa40','','',NULL), -('2349','Seat','Usable','UNDEFINED','545737fc-2c3c-47cc-befc-19d8d6c46fc7','','',NULL), -('2350','Door Control','ControlPanel','DoorPart','071fc2e1-c6a7-435f-9d80-f1c573990aae','','',NULL), -('2351','Seat','SeatAccess','UNDEFINED','79d837d2-c5d0-43af-8f65-e59d7553706f','','',NULL), -('2352','R97 \"Crimson Camo\" Shotgun','Weapon','Medium','cf0864b2-687c-4f1a-b722-974dcb5d29df','','',NULL), -('2353','RSI_Zeus_Cargo_CargoGrid_Left','CargoGrid','UNDEFINED','983b69f8-c95a-4d19-97bd-0712619586d1','','',NULL), -('2354','un_jar_glass_2_berries_d','Misc','UNDEFINED','777309bc-7d37-4fdb-ba44-b96e443a2927','','',NULL), -('2355','Door Control','Door','UNDEFINED','7fe0456d-8a09-4c90-9b70-0c28db614d5d','','',NULL), -('2356','un_can_drink_2_i','Misc','UNDEFINED','951178dd-72de-41aa-bc94-bbf4965635e0','','',NULL), -('2357','Weapon_Rack_Cz_011','Usable','UNDEFINED','371c0f17-405e-480c-aa9d-5cbb72fe750f','','',NULL), -('2358','H_Dashboard_Projector_HUD_MISC_Freelancer','Display','UNDEFINED','b3c7bbbe-4ff3-4d77-b428-fa35a8805c5c','','',NULL), -('2359','MISC_Prospector_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','52948a52-f280-4265-8168-95e760c1203f','','',NULL), -('2360','Seat','Usable','UNDEFINED','a232fe8c-c6c4-4916-b824-df7fa85e04c4','','',NULL), -('2361','INTK_DRAK_Clipper','FuelIntake','Fuel','7706e161-f290-41e7-81b0-8a5eeeb08a82','','',NULL), -('2362','Morozov-SH Helmet Terrene','Armor','Helmet','e81e28b4-83f9-403b-956f-28f934c0260e','','',NULL), -('2363','Cardona Jacket Sand','Char_Clothing_Torso_1','UNDEFINED','37d289d8-c7f9-4b04-96d3-647465eb4146','','',NULL), -('2364','hightech_airlock_small_drugs_lghtgrp','Lightgroup','AirlockPart','62f08b76-0545-4a27-89c6-de06b73b538e','','',NULL), -('2365','GATS_BallisticGatling_FiringMechanism_S3','WeaponAttachment','FiringMechanism','ba55cc3d-336c-42ee-a5cf-f691fc75062a','','',NULL), -('2366','ORC-mkV Legs Greycat Edition','Armor','Legs','ace93f5a-ec11-4a8c-9158-8c4ff5dfaa8d','','',NULL), -('2367','Seat','SeatAccess','UNDEFINED','56743244-eb4c-44f0-9426-dc3eebf1b49c','','',NULL), -('2368','Meteor Bolide Livery','Paints','UNDEFINED','08f304e1-522e-4403-99ae-38350ce97d39','','',NULL), -('2369','Manned Turret','TurretBase','MannedTurret','072d286f-046b-49db-8230-ab21777249f3','','',NULL), -('2370','TRGT. STATUS','Seat','UNDEFINED','122006e3-69bd-4ccd-8d69-bab5e0317cac','','',NULL), -('2371','DRAK_Cutlass_Steel_Thruster_Main','MainThruster','FixedThruster','a716cf57-128f-4ac7-8924-55dc50ff9df5','','',NULL), -('2372','Bengal_BallisticGatling_FiringMechanism_S6','WeaponAttachment','FiringMechanism','cf7b01ad-9a1d-4fa7-88c2-1090072e9921','','',NULL), -('2373','Lynx Legs Green','Armor','Legs','ad06a0c7-98ff-4f95-8cee-f4922e18253f','','',NULL), -('2374','Morozov-CH Backpack Pyrotechnic Horizon','Armor','Backpack','8cd029aa-27fe-4846-b527-594817ad3487','','',NULL), -('2375','Station','SeatAccess','UNDEFINED','e8b9fe1a-1a3f-4a6e-ac1f-6a34e54f41fd','','',NULL), -('2376','CRUS_Intrepid_CargoGrid','CargoGrid','UNDEFINED','7a85969c-c09f-462b-b081-52df6c36e7a3','','',NULL), -('2377','Hammerhead Ship Armor','Armor','Medium','089f66d8-5ccf-41ee-a816-c8ead96cf2f4','','',NULL), -('2378','Door Control','ControlPanel','DoorPart','cb66f139-7619-4605-bd12-6c1f64dab0b5','','',NULL), -('2379','Hornet Icebound Livery','Paints','UNDEFINED','5983db70-464d-4de8-8622-3f3822ee1233','','',NULL), -('2380','Aranda Shirt Purple/Ivory','Char_Clothing_Torso_0','UNDEFINED','eed876cf-4d93-4f5e-9d20-77290e8c9876','','',NULL), -('2381','MISC_Starfarer_Gemini_Thruster_Main','MainThruster','FixedThruster','b8924198-bfe6-46cc-8666-f11d12eef4bf','','',NULL), -('2382','Asgard Last Light Livery','Paints','UNDEFINED','d4236dde-81e6-489f-be03-c1fc09b5e8df','','',NULL), -('2383','Finley the Stormwal Large Plushie','Misc','Personal','4376fce2-c6fd-40fa-b42c-9b9ad80428e9','','',NULL), -('2384','Yormandi Tongue','Misc','Harvestable','6d8c8c22-12ce-4433-af1e-5c38f54ced1b','','',NULL), -('2385','600i Foundation Fest Livery','Paints','UNDEFINED','1782c749-a756-4244-96f9-26362c81abeb','','',NULL), -('2386','ORIG_300i_Thruster_Mav_Fixed_01_Front_Top','ManneuverThruster','FixedThruster','cb1e21ea-131d-4984-9112-30e1369e9258','','',NULL), -('2387','Door Control','Door','UNDEFINED','41d1a1c5-4e7b-4b13-b50c-2fa8f512c5b2','','',NULL), -('2388','m_human_mannequin_base_armor_Collector_AD','ShopDisplay','UNDEFINED','c3d704a0-c90f-439d-b801-7690e36fb0ef','','',NULL), -('2389','tray_medal_1','Misc','UNDEFINED','6ab8fe74-3465-490f-ade6-56170c0be903','','',NULL), -('2390','Argon','Cargo','Cargo','b88f4ba3-ccfe-4e31-a345-82778f2ee045','','',NULL), -('2391','Seat','Usable','UNDEFINED','7f6837a1-95c6-47c6-8a5f-490636c54714','','',NULL), -('2392','Union Pants Blue','Char_Clothing_Legs','UNDEFINED','8f2abcfc-4206-45e9-a693-7aa390993102','','',NULL), -('2393','Slickdry Waders','Char_Clothing_Legs','UNDEFINED','28e937a8-6d94-408f-bac2-e9f61b5484f1','','',NULL), -('2394','K7 Pants Aqua','Char_Clothing_Legs','UNDEFINED','62f7b4b0-7737-46a8-9dc6-446ad0dd66e6','','',NULL), -('2395','ARGO_RAFT_SCItem_Seat_Cargo','Seat','UNDEFINED','de655aea-53fa-4fdb-b256-a42671789ce4','','',NULL), -('2396','Elevator','Elevator','UNDEFINED','fc0cc84d-4822-4ca5-a05d-ce1fe8934240','','',NULL), -('2397','STV Electric Green Livery','Paints','UNDEFINED','1e12fe16-0a1e-40c0-96d3-e35d915219bd','','',NULL), -('2398','FirmWear Hard Hat','Char_Clothing_Hat','UNDEFINED','348449dc-8aef-4ee4-b885-12a3eab2ed84','','',NULL), -('2399','Corundum (Raw)','Cargo','Cargo','59866f2d-49aa-4303-b323-4e024b5a9e55','','',NULL), -('2400','tank_gas_1_005x005x005_a','Cargo','UNDEFINED','81b99e31-02e2-4b21-a6a0-9ae52795b1ab','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('2401','Carryable_1H_CY_personal_flare_2_a','Misc','UNDEFINED','bfd42dc6-9a3b-4e0e-92df-d9d1affb189b','','',NULL), -('2402','FirmWear Hard Hat','Char_Clothing_Hat','UNDEFINED','da1ed836-9174-4a3a-abfe-2ffca21e396f','','',NULL), -('2403','IFR-532 Missile Rack','MissileLauncher','MissileRack','24ad5462-6265-4c8e-b627-1d237a7a3e7b','','',NULL), -('2404','Seat','SeatAccess','UNDEFINED','6c673b26-ee1f-427b-8298-ebc02c945e10','','',NULL), -('2405','Crusader Black Bishop','Misc','UNDEFINED','c76d7240-d73f-435c-8073-ff4c7287ea9e','','',NULL), -('2406','Screen','Display','UNDEFINED','0aa027fc-75f9-4bb3-8979-e3f4c58095c3','','',NULL), -('2407','Intrepid Fusion Livery','Paints','UNDEFINED','9eaab991-f532-471a-9def-e399f7726f82','','',NULL), -('2408','Comb','Misc','UNDEFINED','0c024832-3400-460f-8c59-0ff912ecac7f','','',NULL), -('2409','Flight Blade','FlightController','UNDEFINED','f00f589f-6992-49eb-bea8-66fc321bc59b','','',NULL), -('2410','100 Series Blue Ametrine Livery','Paints','UNDEFINED','b9019a07-0ace-4cf5-927b-3d58c2800235','','',NULL), -('2411','f_human_mannequin_locker','ShopDisplay','UNDEFINED','d43154d2-a85e-4233-8355-71882bff71c6','','',NULL), -('2412','Typhoon IX Torpedo','Missile','Torpedo','e26d0f6d-4ada-4eb0-9843-1b4d03178f90','','',NULL), -('2413','Geist Armor Helmet Forest','Armor','Helmet','e56c096e-33c7-487c-8cea-b479d7dbc58e','','',NULL), -('2414','SHIELDS','ShieldController','UNDEFINED','0308e0ec-c6c5-4424-ae5d-bbd4cd77007e','','',NULL), -('2415','Atlasium','Cargo','Cargo','0e9c5496-adcb-4b89-a790-fef797d9a6ab','','',NULL), -('2416','ANVL_Hornet_CargoGrid_F7C_Mk2','CargoGrid','UNDEFINED','2e32c134-5d48-4b8f-9e7e-7a3d679f21f4','','',NULL), -('2417','Bantam Hat Stor*All','Char_Clothing_Hat','UNDEFINED','8f3d228d-c1d8-4b0e-8428-5de925370c8c','','',NULL), -('2418','Door Control','ControlPanel','DoorPart','04c27fcb-6cc7-48dc-b459-3324f59e9599','','',NULL), -('2419','ANVL_Door_Decal_Carrack_Eng','Decal','DoorPart','70842011-41c2-4702-b823-f4b822ae1eba','','',NULL), -('2420','Test_OutpostMission_DataPad_KeyCode_4x3_Screen_5','Display','UNDEFINED','c0d69f7c-339d-45aa-bf96-41c9f11629f5','','',NULL), -('2421','TE_weapon_box__behr_rifle_ballistic_01','Misc','UNDEFINED','4c3cebd1-d8f4-461b-83df-94a68983c474','','',NULL), -('2422','RSI_Constellation_SCItem_Seat_CoPilot_Right','Seat','UNDEFINED','f3ff4f67-f968-4f35-9e07-eb9ed574c6cf','','',NULL), -('2423','Cumulus Jacket Yellow','Char_Clothing_Torso_1','UNDEFINED','fe0e531c-7e92-495b-a82b-faa9a7a453c6','','',NULL), -('2424','Novikov \"Expo\" Exploration Suit','Armor','Undersuit','5fcc0203-a02e-4e44-bfe0-dbf6b089fff0','','',NULL), -('2425','Strata Core Heatwave','Armor','Torso','4d2ecda6-83dc-4236-9e54-bdd0afd2056a','','',NULL), -('2426','Taranite (Raw)','Cargo','Cargo','fba3ec7f-6f14-486b-a089-855558f684b6','','',NULL), -('2427','Seat','SeatAccess','UNDEFINED','3cebdef5-17f9-4c17-a48e-a5ef20bed181','','',NULL), -('2428','wall_display_cabinet_large_right_14x03x03_a','ShopDisplay','Default','894ec57e-55f0-4492-ad9a-7e50e7efd517','','',NULL), -('2429','KLWE_MassDriver_FiringMechanism_S2','WeaponAttachment','FiringMechanism','84a917b6-ac68-4314-a402-8a185cc5bfbc','','',NULL), -('2430','Ouratite','Cargo','Cargo','012b4a4e-2e87-4593-a287-fdc611634038','','',NULL), -('2431','Carryable_1H_CY_bottle_bar_14_mixer_e','Misc','UNDEFINED','08f8e225-29d8-4ae0-bd23-b559c15773fc','','',NULL), -('2432','AEGS_Avenger_PrisonPod_5','Usable','UNDEFINED','976b416d-0b20-4495-8c87-bcc0a4feaae9','','',NULL), -('2433','RN_WindTurbine','Weapon','UNDEFINED','5c847555-077b-4f3c-b757-f9ebce947f44','','',NULL), -('2434','M2C \"Swarm\"','Weapon','Gun','18b795c5-25f1-444a-86c0-b5edd7cf0118','','',NULL), -('2435','Door Control','ControlPanel','DoorPart','5bf7d81f-db50-4c74-ad14-a5d7773da381','','',NULL), -('2436','100 Series Sand Wave Livery','Paints','UNDEFINED','ee3bd1ab-ed48-4944-87aa-543320c4193f','','',NULL), -('2437','Jumping Limes','Cargo','Cargo','337a03ef-5733-4253-9c9b-8c1f3ce71abd','','',NULL), -('2438','AAT-34 Turret','Turret','MannedTurret','31e097e5-dd40-4d53-a57c-90fe879914eb','','',NULL), -('2439','Drake Hat Yellow Logo','Char_Clothing_Hat','UNDEFINED','95b716b0-d87c-4ed0-9ced-ea723a5dff92','','',NULL), -('2440','Seat','Usable','UNDEFINED','7271002f-ead8-4900-90c0-7771a70adc79','','',NULL), -('2441','Water Bottle','Drink','Bottle','d7ebbe21-e107-4aae-979e-00db7d3627d4','','',NULL), -('2442','One Light Undersuit Red','Armor','Undersuit','b989ed06-0037-4949-b247-603770d2c267','','',NULL), -('2443','Laranite','Cargo','Cargo','b89812b9-775e-4c34-935b-0bf91037ebc8','','',NULL), -('2444','RSI_Hermes_LightCap','AttachedPart','UNDEFINED','40c437d5-7d3b-4bbb-a9d7-8459f7d47fbd','','',NULL), -('2445','Door Control','Door','UNDEFINED','34d8aa4c-a4ce-41ea-936c-b468ddacd562','','',NULL), -('2446','INTK_ARGO_SRV','FuelIntake','Fuel','82204c3c-7715-4c14-91f5-e7b3289b1ddf','','',NULL), -('2447','Seat','Usable','UNDEFINED','2899f069-be38-4853-bf08-01ebd191eebd','','',NULL), -('2448','Controller_Salvage_TractorBeamOnly_PowerSuit','SalvageController','UNDEFINED','99b1d580-8fd8-4716-af13-c2e4287977f1','','',NULL), -('2449','Debnam Gloves Purple','Char_Clothing_Hands','UNDEFINED','f7c53896-fc72-4c78-bc84-6a5916cfdcf1','','',NULL), -('2450','INTK_MISC_Fury_LX','FuelIntake','Fuel','f9cf62bb-2ff9-4d39-ba22-a33faeafa5d1','','',NULL), -('2451','Mining Arm','ToolArm','UNDEFINED','d2185125-70a1-4f51-a149-527828e9df9e','','',NULL), -('2452','Pembroke Exploration Suit','Armor','Undersuit','13a8f1c2-9679-4e0f-8281-f88c20925a1a','','',NULL), -('2453','Geist Armor Arms Epoque','Armor','Arms','8586a1f1-2bdd-46a8-b40c-0d6ec6de91ed','','',NULL), -('2454','Carryable_1H_SQ_noodle_box_4_a','Misc','UNDEFINED','e8c573c3-1f96-456f-9d5e-773d6f537df8','','',NULL), -('2455','DRAK_Golem_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','133b928f-20b7-4544-9283-6106ee3481ca','','',NULL), -('2456','SafeCore Boots Westar','Char_Clothing_Feet','UNDEFINED','423341dc-1bba-4c4d-8470-9ad71187c8b0','','',NULL), -('2457','Pite','Char_Head_Piercings','UNDEFINED','f3006217-7ca6-486c-9fca-2381394eef4e','','',NULL), -('2458','MISC_FuelRefinery_L','FuelTank','Fuel','af55bd96-fa03-4139-ba09-aae46aa89a9a','','',NULL), -('2459','SHIELDS','ShieldController','UNDEFINED','16d4329b-50fd-4623-9111-f9265e2e1f4b','','',NULL), -('2460','Strata Arms Crusader Edition','Armor','Arms','ffb072df-980c-4a52-856c-af6ca1f84030','','',NULL), -('2461','hooks_legs_02x01x04_01Port_1','ShopDisplay','Default','72dd43e4-68e1-4292-ba9d-3351731446da','','',NULL), -('2462','Uncut SLAM','Cargo','Small','5b656b7e-e462-4b96-9971-8de5d76564a1','','',NULL), -('2463','ForceFlex Undersuit DigiCamo','Armor','Undersuit','bec98aaf-d7f8-476f-98e3-5d86babe9896','','',NULL), -('2464','Carryable_1H_CY_baton_marshalling_1_a','Misc','UNDEFINED','d69d2638-417d-4c92-b82c-62073eb5d4ab','','',NULL), -('2465','Caterpillar Stormbringer Livery','Paints','UNDEFINED','aeeee893-16e0-4624-955c-d16e75f0ec5b','','',NULL), -('2466','AEGS_Redeemer_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','b0c94338-d58c-4632-a96d-9befca61bf95','','',NULL), -('2467','Borase','Cargo','Cargo','937639ac-7e83-47fa-88db-8ff2298f6824','','',NULL), -('2468','counter_components_center_b_01x01x01','ShopDisplay','UNDEFINED','6157e289-e967-48d6-82ee-5376baaf37b6','','',NULL), -('2469','Union Pants Black','Char_Clothing_Legs','UNDEFINED','28236e4c-d685-412a-b007-ac11ed3c4df9','','',NULL), -('2470','KLWE_MassDriver_FiringMechanism_S1','WeaponAttachment','FiringMechanism','5fb45e1a-4417-4fb3-871b-073ca128f3bb','','',NULL), -('2471','Manned Turret','TurretBase','MannedTurret','924d9ad7-9c18-41dd-8b8c-c65dcf0da3e5','','',NULL), -('2472','FBL-8a Core Justified','Armor','Torso','07f0b793-c414-4771-9f66-09c8afaa5621','','',NULL), -('2473','Armor_Crate_CZ_Horizon_M_001','Usable','UNDEFINED','522a27f5-b4c3-44a6-8014-dc8127d05384','','',NULL), -('2474','ANVL_Pisces_BayDoor_Frame','Container','UNDEFINED','121a37ca-2312-4e4d-aa9a-45b120f171a7','','',NULL), -('2475','Internal Tank','QuantumFuelTank','QuantumFuel','c18b2900-2259-4a94-bc76-8566ee183740','','',NULL), -('2476','Brocius Waist Apron Finch','Char_Clothing_Torso_1','UNDEFINED','08fbac01-4b7b-4553-9ef4-878a0b0d84f1','','',NULL), -('2477','display_ship_components_pillar_s0_4ports','ShopDisplay','UNDEFINED','b2e0e462-5495-4f7a-a189-bc0622eb0214','','',NULL), -('2478','Cargo_Comm_125x3_Agricultural_Supplies_a','Cargo','Cargo','7e1efa35-25fe-4147-a3f7-e6d3e5535f69','','',NULL), -('2479','YellowJacket GT-210 Gatling','Weapon','Gun','823a99bb-e1c6-46af-9ae5-6a047f46b17e','','',NULL), -('2480','lt_light_electric_1_suspended_a','Light','UNDEFINED','fbaaeba6-f7e1-43c8-af85-b6402145cd43','','',NULL), -('2481','RSI Polaris Torpedo Rack','MissileLauncher','MissileRack','b6205a2d-563c-415d-9e8f-7873283aea8b','','',NULL), -('2482','Seat','Usable','UNDEFINED','eb0e6d96-ddca-4555-9633-c9df1e102e30','','',NULL), -('2483','Bracewell Boots Blue and Grey','Char_Clothing_Feet','UNDEFINED','0d7ab0b1-d9af-40a7-897f-a48340410c29','','',NULL), -('2484','Monde Legs Keystone','Armor','Legs','bc44d29e-1569-4ca3-b36b-fdacdcc5163c','','',NULL), -('2485','Door Control','Door','UNDEFINED','13663f69-2c9c-487e-9ac2-a5cf8f217631','','',NULL), -('2486','SecureShield','Shield','UNDEFINED','c8b42a1b-2000-4d7e-8888-208480c739b6','','',NULL), -('2487','Utensil_Plate_Farfalle','Misc','UNDEFINED','66efd7ab-e69d-4abd-ab7b-833ff48ed8f1','','',NULL), -('2488','Door Control','ControlPanel','DoorPart','87ca55d7-741a-4a67-8ccd-6f321f221c99','','',NULL), -('2489','J-5 Helmet','Armor','Helmet','319812c0-5a35-41fe-b905-375a556c081c','','',NULL), -('2490','PowerSuit_SCItem_Seat_Driver','Seat','UNDEFINED','9389bfa6-76c2-4ee9-8c50-948e6a1051c1','','',NULL), -('2491','Aril Backpack','Armor','Backpack','173269f1-e6fe-494a-99df-e390a63dac84','','',NULL), -('2492','Torreto Pants Scarlet','Char_Clothing_Legs','UNDEFINED','10ef6de6-f333-41c8-8c8b-e01d87a19625','','',NULL), -('2493','Frontier 11 Classic Navy','Char_Clothing_Legs','UNDEFINED','c5a5cd6a-0087-44b2-8e4b-9a13ebc73245','','',NULL), -('2494','AEGS_Redeemer_RADR_Display','Display','UNDEFINED','c4ce5dd9-3bfe-4949-8a69-b8608ba944a3','','',NULL), -('2495','MISC_Freelancer_Base_Kitchen_Door','Door','UNDEFINED','8127f1cc-30dc-4bca-8902-def6226525de','','',NULL), -('2496','Cobalt','Cargo','Cargo','e1a730b8-d765-4cd5-8965-5317a9cc391e','','',NULL), -('2497','TRGT. STATUS','Seat','UNDEFINED','71c39962-dc8f-46e9-b9e4-b25ddd5f6774','','',NULL), -('2498','Hercules Starlifter Dryad Livery','Paints','UNDEFINED','70c4fde7-0e86-4499-8de1-ecd6b8817162','','',NULL), -('2499','e1c04s02f_box_plastic_8_a','Cargo','UNDEFINED','0a807019-60a6-48cc-8ef9-bc87d3f43c2e','','',NULL), -('2500','Seat','Usable','UNDEFINED','27ebd5c2-c1a0-400d-8fc4-a7c9d5161bc4','','',NULL), -('2501','FlashFreeze','Cooler','UNDEFINED','96860a78-4b34-4888-93a5-12efb259a5ff','','',NULL), -('2502','Davin Work Gloves Dark Green','Char_Clothing_Hands','UNDEFINED','7f87be5e-875e-4174-8c8b-6d2d3ff8c2a3','','',NULL), -('2503','Cordimon Jacket Orange','Char_Clothing_Torso_1','UNDEFINED','66ad0738-dcfe-45ad-85c9-b848338fffa1','','',NULL), -('2504','Remote Turret','Turret','TopTurret','7676edfb-e035-4bb2-9e37-a5e23441d068','','',NULL), -('2505','Door Control','Door','UNDEFINED','062c6737-da4d-4254-a048-8e76545b0e24','','',NULL), -('2506','glsn_shotgun_ballistic_01_mag','WeaponAttachment','Magazine','0b501ac3-57ff-4fe1-be90-faed3467c4b8','','',NULL), -('2507','Door','Door','UNDEFINED','9ecd97ed-c42a-4354-9178-7d23c92bb299','','',NULL), -('2508','Carryable_1H_SQ_Datapad_Fluff_Orb_GenericGang_002','Misc','UNDEFINED','5d589bd8-99c9-4f35-9bf8-2e733b16ae50','','',NULL), -('2509','VNCL_Glaive_Thruster_Aux_Fixed','ManneuverThruster','FixedThruster','6b99466f-8649-4cc4-894c-43637bf3569e','','',NULL), -('2510','MISC_Hull_A_Thruster_Main','MainThruster','FixedThruster','bbafd30d-51cb-45c7-85c4-d496e58f0f12','','',NULL), -('2511','Sorel Hat Westar','Char_Clothing_Hat','UNDEFINED','5d3b30f8-d101-4c35-811a-43da919ff23c','','',NULL), -('2512','ANVL_Carrack_Thruster_Retro_Back','ManneuverThruster','FixedThruster','6bb0d330-e344-46c6-94b6-027ffa4aaff1','','',NULL), -('2513','ANVL_Pisces_Thruster_Mav_Joint_C8X','ManneuverThruster','JointThruster','6f7d73fa-cf75-4ec6-bd2a-c845307180f1','','',NULL), -('2514','Artimex Legs Wildwood','Armor','Legs','8d57ed44-08f2-420b-9a35-deac7e6b09f9','','',NULL), -('2515','ANVL_Arrow_Thruster_Mav','ManneuverThruster','JointThruster','e0996fcd-d171-4d9e-97a6-50c3e9b56117','','',NULL), -('2516','RSI_Aurora_Thruster_Retro_Right','MainThruster','FixedThruster','e468f902-ea95-4fa1-b107-abca572b05e7','','',NULL), -('2517','DRAK_Clipper_Thruster_Fin_Aux_Left','Misc','UNDEFINED','79cadc54-b91e-42bf-b0b3-cb39d5402139','','',NULL), -('2518','Door','Door','UNDEFINED','3ccfbee4-babd-48a3-ad22-5bdafe5731bd','','',NULL), -('2519','HRST_LaserRepeater_Ventilation_S2','WeaponAttachment','Ventilation','41581324-24e9-4e90-8e1b-3d2d71c26b7f','','',NULL), -('2520','Jericho XL','Weapon','Rocket','4312c1a5-f575-4e06-9892-2c5270982e9e','','',NULL), -('2521','ANVL_Door_Decal_Carrack_CargoPod','Decal','DoorPart','937ef0a7-a183-464c-ac8f-ed5619eb64bb','','',NULL), -('2522','Door','Door','UNDEFINED','0a731c37-7ad3-4f7e-95be-06b00d44c508','','',NULL), -('2523','facial_hair_013','Char_Head_Beard','UNDEFINED','ee80bd3d-3b43-4ca3-b2de-e519efd4c9d7','','',NULL), -('2524','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','1dca9cda-43ba-49a9-a93c-16366c81c666','','',NULL), -('2525','srvl_combat_heavy_core_03_01_01','Armor','Torso','d491d293-a7d9-4cb6-af21-e42dcbdabe06','','',NULL), -('2526','ORC-mkV Legs White','Armor','Legs','ee473fc2-9edd-4c01-adff-2f97a14a9d9c','','',NULL), -('2527','Door','Door','UNDEFINED','6c9ec12b-fd8f-4ecb-9ea1-374317a643fb','','',NULL), -('2528','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','a64fb6e2-eced-47b1-8358-e89adef5bca4','','',NULL), -('2529','Destroyer Mass Driver Cannon','Weapon','Gun','3e507f17-6725-40d6-aad0-acdb97e1d115','','',NULL), -('2530','Sorel Hat Tosca','Char_Clothing_Hat','UNDEFINED','65dcfefd-0cb2-4db6-8fae-7b6028d06ad4','','',NULL), -('2531','RSI_Zeus_CL_Thruster_Mav_Top','ManneuverThruster','UNDEFINED','981dff72-ca1a-4a18-9ac7-cbc3a59894d8','','',NULL), -('2532','Edgewear Pants Tan','Char_Clothing_Legs','UNDEFINED','ace14a02-b505-4b2d-90d7-5fb100316ae2','','',NULL), -('2533','Piercings_helix_01','Char_Head_Piercings','UNDEFINED','0dc1f54a-91c0-4153-933e-69017de64633','','',NULL), -('2534','Fuel_Port_PLACEHOLDER_Mule','Door','UNDEFINED','04f426d2-f414-4dfc-b214-39e111b69163','','',NULL), -('2535','ORC-mkV Arms Desert','Armor','Arms','ef2d8746-0dbd-4022-90ac-d2a9453f2242','','',NULL), -('2536','ClipVest Work Harness Sienna','Char_Clothing_Torso_1','UNDEFINED','aa29ed02-cb9c-47a5-a589-2db28a9df925','','',NULL), -('2537','Internal Tank','QuantumFuelTank','QuantumFuel','b1f1a267-17b4-425d-8b1a-3967df2c1b38','','',NULL), -('2538','ControlPanel_Screen_CustomButtons_WeaponWallLabel','ControlPanel','DoorPart','b7b556f9-7362-40db-bfd1-9f5d9dfd2a8b','','',NULL), -('2539','Ati Jacket Yellow','Char_Clothing_Torso_1','UNDEFINED','3f28d3a6-db30-4519-a1d7-620091e497ab','','',NULL), -('2540','ADP Core Red','Armor','Torso','d1be54f2-e270-4aa1-8b14-9560711a39ae','','',NULL), -('2541','ADP Arms Grey','Armor','Arms','aa589dc1-2cb7-4c58-9062-4810ad134844','','',NULL), -('2542','AEGS_Vanguard_Harbinger_Baydoor','Misc','UNDEFINED','7c6e1454-42d6-48fe-a527-8e3b173cbe0c','','',NULL), -('2543','Access','SeatAccess','UNDEFINED','31b7455a-ce30-48df-ad3b-4636dda4826b','','',NULL), -('2544','CNOU_HoverQuad_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','290474c6-8365-4190-b546-84fedde7894e','','',NULL), -('2545','INTK_ORIG_350r','FuelIntake','Fuel','7e3e94ca-a24c-4f9c-8caf-333c007a259e','','',NULL), -('2546','Scimitar V-G Missile','Missile','GroundVehicleMissile','e191151d-bb78-401d-8a3d-7b3406155245','','',NULL), -('2547','Seat','SeatAccess','UNDEFINED','ace022fb-f3d9-4778-a9a2-8b4d50985711','','',NULL), -('2548','Test_Clovis_Datapad_Safe_Contents01_4x3_Screen','Display','UNDEFINED','d17aa1c4-1054-405a-9dfb-9bb88cb7c3e6','','',NULL), -('2549','Cutter 2955 Auspicious Red Pig Livery','Paints','UNDEFINED','90cc7c4d-62c9-4f1c-af31-baae573c78a4','','',NULL), -('2550','game_chess_1_knight_b','Misc','UNDEFINED','b137c6c8-4300-4069-8de0-e066940d8c56','','',NULL), -('2551','Screen','SeatDashboard','UNDEFINED','ac463935-15d0-451a-94e8-ac6f17ce7dcb','','',NULL), -('2552','BEHR_BallisticGatling_PowerArray_S6','WeaponAttachment','PowerArray','9f29019f-3ecf-4867-ad32-c1886973b4a7','','',NULL), -('2553','SHIELDS','ShieldController','UNDEFINED','8463c9f3-82eb-48db-ae4c-d783cec4301e','','',NULL), -('2554','Borase','Cargo','Cargo','f21c2d5a-cd33-4264-869c-57b1acd3287a','','',NULL), -('2555','ThermoWeave Boots ASD Edition','Char_Clothing_Feet','UNDEFINED','bcd5f19d-6ddc-43e8-9e64-214956c215fc','','',NULL), -('2556','Bed','Usable','UNDEFINED','bf1ff6b5-ae3c-4cc9-91bb-74405cbbcf29','','',NULL), -('2557','SHIELDS','ShieldController','UNDEFINED','59c2e053-4006-4b70-89d0-d28fbca04752','','',NULL), -('2558','Weapon_Rack_DRAK_4slots','Usable','UNDEFINED','23d97c7e-5700-414c-8e20-1410fae7e8c2','','',NULL), -('2559','Seat','SeatAccess','UNDEFINED','5db2b197-9723-4085-8c1e-59a914205058','','',NULL), -('2560','DockingTube_Fuel_Ports_RSI_Apollo','DockingCollar','UNDEFINED','4d7f3134-85b4-909f-979e-f1da8beb6b9f','','',NULL), -('2561','Wikelo Favor','Misc','Harvestable','3b1cf59f-1e6b-4a91-9edb-f8c5ddf791ae','','',NULL), -('2562','Salt','Misc','UNDEFINED','b29a4909-7d3d-4b59-a341-f8985555361e','','',NULL), -('2563','Stampede Module','MiningModifier','Gun','1bb6ee6d-3930-4c03-b6c6-38aad3a4703b','','',NULL), -('2564','DockingTube_Fuel_Ports_RSI_Lynx','DockingCollar','UNDEFINED','3bf276dd-263d-4237-a85c-475e3355a070','','',NULL), -('2565','Hephaestanite (Raw)','Cargo','Cargo','485441dd-addc-4d83-8726-6a154993f861','','',NULL), -('2566','Odyssey II Undersuit Autumn','Armor','Undersuit','7656f045-c284-4a29-9348-0b4e1ebfcdbb','','',NULL), -('2567','TRGT. STATUS','Seat','UNDEFINED','c0c1e39f-39bb-442d-9f45-ba7e137723df','','',NULL), -('2568','Personal Storage','Cargo','UNDEFINED','f567df51-6a11-434a-81af-db44aa99a220','','',NULL), -('2569','Carryable_1H_SQ_artificial_skin_1_a','Misc','UNDEFINED','1ec47cc1-7a87-4858-91ea-3d7d7be9fc16','','',NULL), -('2570','Safe_Keypad_ASDDelve','Cargo','UNDEFINED','04963eb6-0258-4622-a3c0-4b9eb3eb420d','','',NULL), -('2571','ORIG_350r_Cargo_Cover_Front','Door','UNDEFINED','b5f17f39-13d1-40d2-b1ca-7760b558241c','','',NULL), -('2572','mobiGlas Original Casing','MobiGlas','Personal','f047c8ed-7f5e-4bfa-81c2-c4c58e419314','','',NULL), -('2573','Paladin Galahad Livery','Paints','UNDEFINED','6ee86b45-0502-4c86-88f5-32c6b573e0ad','','',NULL), -('2574','Testudo Legs Combustion','Armor','Legs','c7af38cb-0172-49bb-b075-2815349ce59c','','',NULL), -('2575','Access','SeatAccess','UNDEFINED','6c7b6b60-e907-41de-93cc-33b9ac4af08a','','',NULL), -('2576','BEHR_LaserCannon_Barrel_S6','WeaponAttachment','Barrel','94b0417e-c295-4478-93cd-0634210d2aa2','','',NULL), -('2577','Black Mountain Sujin Tea (Medium Blend)','Drink','Can','e040cb26-8ea0-44ae-bac4-00bee0f55dd5','','',NULL), -('2578','Pyro RYT \"microTech\" Multi-Tool','Weapon','Gadget','14c13be2-7752-4cca-902d-f5afd51a3929','','',NULL), -('2579','Killshot \"Payback\" Rifle','Weapon','Medium','4c9ea09f-acce-44e5-af8e-f9101c8eb7cd','','',NULL), -('2580','Bed','Usable','UNDEFINED','4fd83976-ed1c-45f8-9672-a0fa9858aa1a','','',NULL), -('2581','Remote Turret','Turret','GunTurret','aa481cf0-992b-44f5-8d48-beef15bbae6e','','',NULL), -('2582','Seat','Usable','UNDEFINED','3c7859b5-b2e0-40dc-ae83-6be19d28096e','','',NULL), -('2583','VariPuck S5 Gimbal Mount','Turret','GunTurret','f06339c0-1977-4c84-8d12-557c119f1056','','',NULL), -('2584','Colonialism_Outpost_RN_Refinery','Sensor','UNDEFINED','4a3fb339-41a0-42f0-8c7b-614af0153008','','',NULL), -('2585','Remote Turret','Turret','GunTurret','65fc908e-b7e3-432d-ac9d-aef6906906e4','','',NULL), -('2586','Bacon Club Sandwich','Food','Junk','f243d9b6-39c3-43e0-beb1-ca267a122a23','','',NULL), -('2587','MSD-442 Missile Rack','MissileLauncher','MissileRack','df4b25a2-c27b-4c2f-b3eb-36a4d767c3eb','','',NULL), -('2588','Deri Gloves Ash','Char_Clothing_Hands','UNDEFINED','4f5f518e-1438-43a8-9feb-0fae2d2b48f7','','',NULL), -('2589','Processed Food','Cargo','Cargo','2dca842f-04f8-4c7d-9d85-d6358e67eda9','','',NULL), -('2590','Personal Care Product','Misc','UNDEFINED','0e81351d-b2c6-4230-b75a-490d3ec75804','','',NULL), -('2591','Carryable_TBO_FL_24SCU_Commodity_ProcessedGoods_OrganHarvesting','Cargo','Cargo','d822f6d4-49ee-4af2-a04e-5461d9baa46e','','',NULL), -('2592','Overlord Helmet Switchback','Armor','Helmet','3f428b0b-1f9e-419b-8f95-79b0385496e4','','',NULL), -('2593','Door Control','Door','UNDEFINED','1a61f654-22c6-43fb-b30b-0ff36c420f93','','',NULL), -('2594','AEGS_Eclipse_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','3652af3b-f729-4c7c-b5c2-e7c2f3dd4d26','','',NULL), -('2595','Mustang Murray Cup Livery','Paints','UNDEFINED','859943a7-fb06-486f-9187-e22227d43418','','',NULL), -('2596','Seat','Usable','UNDEFINED','62d7f7d1-b140-491d-b217-3a6b59052276','','',NULL), -('2597','Star Kitten Sally Helmet','Armor','Helmet','f68d0f94-b843-44ba-ac94-ee54a2f218d5','','',NULL), -('2598','F8C Lightning Shock Wave Livery','Paints','UNDEFINED','8078adce-1b5b-48b6-a8fa-c3a1ae83e592','','',NULL), -('2599','TCS-4 Undersuit Arctic','Armor','Undersuit','aa63b636-4870-4470-8507-309a883a4c5c','','',NULL), -('2600','Door Control','ControlPanel','DoorPart','17f34e52-4d32-4961-90cd-bd29eeb7b877','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('2601','ADP-mk4 Helmet Big Boss','Armor','Helmet','5f8f99e3-a9e1-438b-92c3-074fb5a474e8','','',NULL), -('2602','Projector_HUD_Mining_MOLE_Side','Display','UNDEFINED','b5066a63-1764-436f-83fe-b7b85c3f5cbf','','',NULL), -('2603','ESPR_BallisticCannon_Ventilation_S3','WeaponAttachment','Ventilation','e5f181c5-8170-4062-872a-02b82c9a0d22','','',NULL), -('2604','PAB-1 Legs Executive','Armor','Legs','d8d3a498-68ff-4505-a05e-1107628cb66b','','',NULL), -('2605','Corbel Arms Halcyon','Armor','Arms','3c69369e-d63b-45de-bfc7-5b6bf5d8c72d','','',NULL), -('2606','Cal-O-Meal \"Chocolate Deluxe\" Protein Bar','Food','Bar','05a35905-a308-40d3-8977-8df9ada007af','','',NULL), -('2607','Avalanche','Cooler','UNDEFINED','a52245d7-a95e-46d5-a933-32267371e156','','',NULL), -('2608','Zeus microTech Livery','Paints','UNDEFINED','316244e4-dd72-4435-8000-a3cca0952a54','','',NULL), -('2609','Weapon Rack','Door','UNDEFINED','68f6b3ae-e9f0-4a06-a19c-eb9affa536a2','','',NULL), -('2610','R97 \"Kismet\" Shotgun','Weapon','Medium','1564c96a-2af8-46ec-bea6-70e9cc0ee4a5','','',NULL), -('2611','Slacker T-Shirt','Char_Clothing_Torso_0','UNDEFINED','abeddda6-93c6-42a8-b10a-167039e9bc22','','',NULL), -('2612','Colonialism_Outpost_RN_Geothermal_Powerplant','Sensor','UNDEFINED','6e56d96c-d1b1-4624-84c9-32e1a5951029','','',NULL), -('2613','Perseus Deadfire Livery','Paints','UNDEFINED','5cc6fca4-c1ef-473e-83dc-d8e8d3812af0','','',NULL), -('2614','RSI_Scorpius_Thruster_Main_Top_Left','MainThruster','FixedThruster','19c33b93-c225-4df2-9752-992edc98bf1f','','',NULL), -('2615','Day One Shirt Green','Char_Clothing_Torso_0','UNDEFINED','20e85e8f-cc78-44b0-9232-bcd15d5b72cd','','',NULL), -('2616','Dopple','Cargo','Cargo','3642e17d-ef51-4a8a-9cf5-6e04d3f72fa3','','',NULL), -('2617','TRGT. STATUS','Seat','UNDEFINED','5d92d2eb-a580-433b-9b98-9e905737f087','','',NULL), -('2618','RSI Constellation Side Missile Rack','MissileLauncher','MissileRack','67d955e2-38b2-497d-8c88-72ffe4ebdd19','','',NULL), -('2619','orig_bedding_duvet_4_d','Seat','UNDEFINED','2b4ca23b-447c-40c8-b069-aef3d2174820','','',NULL), -('2620','CRUS_Starlifter_Door_Decal_Sealed_XL_A','Decal','DoorPart','d5dc6b37-8c29-4d00-b6b2-3d78764fb573','','',NULL), -('2621','Deadhead Helmet Dust','Armor','Helmet','f9f9b7d3-4118-41c7-af74-67cd1c6c8485','','',NULL), -('2622','Chernykh','Radar','MidRangeRadar','5b0d1308-b34a-4b55-94f5-7270e03ca82a','','',NULL), -('2623','Carryable_1H_CY_tool_manual_socket_3_a','Misc','UNDEFINED','cefdb56f-a236-47fb-8451-2cc663914daf','','',NULL), -('2624','CRUS_Starlifter_Door_Decal_Armory','Decal','DoorPart','fafff448-bdaf-49c6-8b4d-e499774d1fec','','',NULL), -('2625','VNCL_Glaive_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','8f7f47d0-f9ff-46cc-84da-62bd7537c774','','',NULL), -('2626','Spark I Missile','Missile','Missile','b86bd2f2-1f5e-4731-a286-74faa8cde646','','',NULL), -('2627','Microid Battle Suit Core','Armor','Torso','c9d14082-2ac7-464b-a772-7e48e086e865','','',NULL), -('2628','Lynx Core Olive','Armor','Torso','fd4e81b9-ebbc-4bde-9f90-672ce6ba52c4','','',NULL), -('2629','ORC-mkV Legs Grey','Armor','Legs','6909c564-75b1-4b76-8673-efec8e7c3374','','',NULL), -('2630','ForceFlex Undersuit Black/Purple','Armor','Undersuit','fd392d0a-e400-43ff-acd0-a3fcefc31b2b','','',NULL), -('2631','Tulsi Jacket Conifer','Char_Clothing_Torso_1','UNDEFINED','32353619-acc9-41b4-b75e-9ca7d679906b','','',NULL), -('2632','Locker_Shallow_WallLeft_AEGS','Misc','UNDEFINED','1d9a7984-42b6-4371-b056-c489eb3dd882','','',NULL), -('2633','DRAK_Cutlass_Red_Thruster_Maneuver_Front_Bot','ManneuverThruster','JointThruster','5bc9f1a7-e847-4df5-8dc9-571da8e05c57','','',NULL), -('2634','Edgewear Pants Green','Char_Clothing_Legs','UNDEFINED','3faada6d-35f7-4372-9f34-f5b8e111f32f','','',NULL), -('2635','m_human_mannequin_odyssey_suit_01','ShopDisplay','UNDEFINED','f6ed1263-1623-47c6-a90d-289f6c19ab59','','',NULL), -('2636','Lunes (Spiral Fruit)','Cargo','Cargo','c4773374-3ea9-4947-a90a-e25195a70d58','','',NULL), -('2637','facial_hair_015','Char_Head_Beard','UNDEFINED','e7eeecde-9633-481e-8b4c-f0e45a1a7e03','','',NULL), -('2638','ANVL_Terrapin_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','4017ec8f-05a7-4d14-9caf-78b78ba02fa0','','',NULL), -('2639','RSI_Constellation_PH_BayWall_Right','Container','UNDEFINED','9fa31592-ff04-476c-a7d9-e5f7938fc89b','','',NULL), -('2640','Redeemer 2953 Best in Show Livery','Paints','UNDEFINED','3c9c1fe2-4d2c-4ac0-9faa-f8ce2c9a95a8','','',NULL), -('2641','Seat','SeatAccess','UNDEFINED','662eb64c-b24f-4134-90d0-7ec193a942d0','','',NULL), -('2642','Vehicle_Screen_MFD_Holographic_Talon_TR','Display','UNDEFINED','5cc9661d-b162-422c-a95e-f9504145cefe','','',NULL), -('2643','P-52 Merlin IceBreak Livery','Paints','UNDEFINED','5d83b277-c025-493a-b312-878cd7351c9b','','',NULL), -('2644','RSI_Aurora_LN_Thruster_Main','MainThruster','FixedThruster','e28a26b3-6f95-432c-be9b-cc479dc1459c','','',NULL), -('2645','TRGT. STATUS','Seat','UNDEFINED','a7cf58bf-2272-47fc-9ed4-5cebe99cd23d','','',NULL), -('2646','Ranta Dung','Cargo','Cargo','4842f390-2d60-4a72-b5f6-a1f77a72fe99','','',NULL), -('2647','mobiGlas Amber Casing','MobiGlas','Personal','5037230a-a941-4233-b056-0bc53055d02f','','',NULL), -('2648','Stinger Black Widow Livery','Paints','UNDEFINED','efdd048a-7c29-4601-b2b6-d8a5990a7a1e','','',NULL), -('2649','Personal Storage','Cargo','UNDEFINED','45f69f04-b7f5-01f4-7aac-4a068c8cedbe','','',NULL), -('2650','Scourge \"Nightstalker\" Railgun','Weapon','Large','517834f4-9343-4aaa-907c-6d911d221936','','',NULL), -('2651','Parvat Jacket Stony Brae','Char_Clothing_Torso_1','UNDEFINED','a8918f8f-4862-4eec-8b1a-243d9b0c7d6b','','',NULL), -('2652','TRGT. STATUS','Seat','UNDEFINED','2e245243-99e0-4e65-b8fd-8642de7abe70','','',NULL), -('2653','Tray','Cargo','UNDEFINED','33de5679-d98c-4459-a46c-e3dd1ed50a90','','',NULL), -('2654','ANVL_Hornet_F7CR_Mk2_Thruster_Retro_Right','ManneuverThruster','Retro','e5f428be-4f7c-49eb-9a66-ef4b530d1ea6','','',NULL), -('2655','HRST_LaserBeam_Barrel_S10','WeaponAttachment','Barrel','4538b32c-6ad3-48e5-98b4-85688870e9a0','','',NULL), -('2656','ORIG_890_Jump_Thruster_Mav_VTOL','ManneuverThruster','FixedThruster','0df2d3ba-1d0d-4eb6-9f02-3912fffcdd30','','',NULL), -('2657','game_chess_1_pawn_a','Misc','UNDEFINED','58f884bb-361f-41e2-8fd8-1831eee0f535','','',NULL), -('2658','Concept Shirt Olive','Char_Clothing_Torso_0','UNDEFINED','4357b059-b6cd-48d7-9ece-948308ecd101','','',NULL), -('2659','Morningstar Helmet (Modified)','Armor','Helmet','3645918b-e7ec-498a-9836-65a52e4a1471','','',NULL), -('2660','Microid Battle Suit Arms Badland','Armor','Arms','34950651-daef-4a72-a4cd-c45c5c1003b8','','',NULL), -('2661','Large Container','Container','UNDEFINED','f5bdad7a-3fa5-4e52-8290-44babf945e08','','',NULL), -('2662','rod_torso0_03x01x04_10Ports','ShopDisplay','Default','07e71b8a-fb2a-4bf8-8acf-7eb15bceaf4d','','',NULL), -('2663','MagnaBloom','PowerPlant','Power','098603e0-7866-47d3-a4f2-dbc98b653971','','',NULL), -('2664','Vanguard Invictus Blue and Gold Livery','Paints','UNDEFINED','7a614151-6b3f-4119-9cba-9df617e7dce0','','',NULL), -('2665','Remote Turret','Turret','Utility','24546504-58cb-40a5-b6b5-db20a3bb959d','','',NULL), -('2666','rack_gun_size_1_005x0075x00375_1_a','Misc','UNDEFINED','0d902ce5-b18a-441f-a56e-434b9d6c1b6e','','',NULL), -('2667','Medical Bed','Usable','UNDEFINED','ddcd1692-8388-406e-ae0c-b594fd0ef6d5','','',NULL), -('2668','Door Control','Door','UNDEFINED','79cb9790-2794-4f2a-a31a-d32cb3804174','','',NULL), -('2669','Distilled Spirits','Cargo','Cargo','67c17f8d-9307-4fa1-88e8-244243f42f7a','','',NULL), -('2670','Door Control','ControlPanel','DoorPart','2bf97fa1-53b3-492e-bff8-3875e7672a1a','','',NULL), -('2671','Hornet Mk II Heartseeker Livery','Paints','UNDEFINED','4dba686d-b68d-410b-bcd5-08346e061002','','',NULL), -('2672','Bed_Pillow_Idris_AEGS','Seat','UNDEFINED','e519033f-9664-4559-a996-ffda2c1d3a33','','',NULL), -('2673','Oracle Helmet Grey','Armor','Helmet','53f51fd5-b913-4d28-8464-8ad0ebfa1ecf','','',NULL), -('2674','San\'tok.yāi Missile Rack','MissileLauncher','MissileRack','905e351c-ee72-4034-81c2-a56cfc8c2a16','','',NULL), -('2675','Razor Fortuna Livery','Paints','UNDEFINED','43382029-445a-4e18-a2eb-464ccb9ab685','','',NULL), -('2676','Adiva Jacket Purple','Char_Clothing_Torso_1','UNDEFINED','c56fe43b-b69d-46d5-92d2-6538d8e0e6e5','','',NULL), -('2677','Venture Arms Orange','Armor','Arms','e93eefac-f051-4acd-9022-0293cbccd653','','',NULL), -('2678','AEGS_Raven_CML_Chaff','WeaponDefensive','CountermeasureLauncher','687a7e98-6229-4072-bedd-ea90b2c2597f','','',NULL), -('2679','Defiance Core (Modified)','Armor','Torso','03c1fed3-ff9b-449f-966e-fabf9ae310b8','','',NULL), -('2680','AEGS_Idris_CargoGrid_CargoRoom_Medium','CargoGrid','UNDEFINED','ec00c253-d87c-4849-8dc8-c7116efa8a2d','','',NULL), -('2681','Chlorine','Cargo','Cargo','03303537-4d90-46b6-9cfd-7dda08fba575','','',NULL), -('2682','TBF-4 \"Sunspike\" Combat Knife','Weapon','Knife','db9f62ba-509f-4e50-a0d6-293662c6f0eb','','',NULL), -('2683','Stratus Pants Maroon','Char_Clothing_Legs','UNDEFINED','34927b3d-ca77-48d1-8fee-04fbaa598f5a','','',NULL), -('2684','Lynx Legs Blue','Armor','Legs','fd9686a2-c248-4c2e-9333-9eae507d6f56','','',NULL), -('2685','HRST_LaserRepeater_PowerArray_S4','WeaponAttachment','PowerArray','b78037d8-b7c3-4434-acee-186110eba41b','','',NULL), -('2686','Lynx Legs Dark Green','Armor','Legs','87d2313a-20fb-4b52-9e80-405b71008b64','','',NULL), -('2687','Kino Shoes Seagreen','Char_Clothing_Feet','UNDEFINED','d1692bba-95d3-4a05-b893-3dcc4864382f','','',NULL), -('2688','SHIELDS','ShieldController','UNDEFINED','2b0d4544-cb77-4b8e-9900-27b6ebbafa52','','',NULL), -('2689','ANVL_Pisces_C8R_Siren_Small','Container','UNDEFINED','57e093f5-f407-4904-8c8a-e81a5132fbf2','','',NULL), -('2690','Molina Mold Samples','Cargo','Cargo','15c2a907-118a-40d1-a3e4-374d7bc6a53f','','',NULL), -('2691','Pressurized Ice','Cargo','Cargo','7a9583c4-5661-4a61-8527-efeba876cef9','','',NULL), -('2692','Ball','Char_Head_Piercings','UNDEFINED','0d317b0f-8771-4e56-8c6b-d09f39e0d4a8','','',NULL), -('2693','ParaMed Refill','WeaponAttachment','Magazine','f10cba0e-bb94-4438-a628-5128913bb995','','',NULL), -('2694','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','f865997a-d4e3-492e-9284-9871fb63c57f','','',NULL), -('2695','Frontier 05 Pants Classic','Char_Clothing_Legs','UNDEFINED','40d587f0-3929-4fef-b46b-4c3585f81a2e','','',NULL), -('2696','Savrilium','Cargo','Cargo','9e5087b2-6011-4d9e-84e2-cec0acae409c','','',NULL), -('2697','Door','Door','UNDEFINED','32818d61-7bd8-4430-802a-3c8954f864e7','','',NULL), -('2698','Lynx Core Pariah','Armor','Torso','be161018-5142-4f44-8929-9ba409abb509','','',NULL), -('2699','MSD-442 Missile Rack','MissileLauncher','MissileRack','5a11b62b-8771-4e57-a1a0-32e11f073f82','','',NULL), -('2700','Flight Blade','FlightController','UNDEFINED','88870563-16fc-47e1-a2ab-21b8cdb82cca','','',NULL), -('2701','Voidripper Helmet (Modified)','Armor','Helmet','a9f7a2f3-7f65-4f3d-94e0-6041f539c9ba','','',NULL), -('2702','Utensil_Plate_Burger','Misc','UNDEFINED','a034fe72-459f-4ae0-90fc-3099dfeff98f','','',NULL), -('2703','Interstellar Transport Guild Container Model','Misc','Flair_Wall_Picture','42a36e9a-8ef2-430c-90a0-5b8125684a1e','','',NULL), -('2704','H_Dashboard_Projector_HUD_AEGS_Redeemer','Display','UNDEFINED','f1cf46c9-783e-4f35-a78d-980d4c43f584','','',NULL), -('2705','Nyman Jacket Green','Char_Clothing_Torso_1','UNDEFINED','b7c7a5e4-702a-4368-8564-9ca677d3e199','','',NULL), -('2706','Tona Shoes','Char_Clothing_Feet','UNDEFINED','2af84e58-ee56-41f9-9c0a-6415ee1fa15d','','',NULL), -('2707','DockingTube_Fuel_Ports_DRAK_Buccaneer','DockingCollar','UNDEFINED','2cff1ebd-af66-4fcb-a1fe-253ef495cf77','','',NULL), -('2708','MISC_Starfarer_Base_SCItem_Dashboard_CoPilot','SeatDashboard','UNDEFINED','d3e24039-3cb2-45b9-a729-5f2f335b88b3','','',NULL), -('2709','Gladius Foundation Fest Livery','Paints','UNDEFINED','e9d4463d-69ec-4e55-a14b-e42386690617','','',NULL), -('2710','Laranite (Raw)','Cargo','Cargo','40436aa4-b757-4eea-8a79-c028d6c16953','','',NULL), -('2711','Overlord Legs Riptide','Armor','Legs','d838c170-efe0-4cea-8fc8-015a80243a38','','',NULL), -('2712','Prism \"Deep Sea\" Laser Shotgun','Weapon','Medium','ca19298f-a111-46ed-bc88-870148c6d2b7','','',NULL), -('2713','Door Control','Door','UNDEFINED','cdf0aa80-26a5-4595-b630-496357c93eba','','',NULL), -('2714','shelf_magazines_04x01x01_09Ports','ShopDisplay','UNDEFINED','e226b29b-bdd0-45db-8e72-75d497c062d7','','',NULL), -('2715','Cumulus Pants Purple','Char_Clothing_Legs','UNDEFINED','29a1a3b7-ee1c-4884-9b7b-b7acd98623a8','','',NULL), -('2716','Cambrio SRT Battery','WeaponAttachment','Magazine','680e69e1-4bf5-4647-92bc-989d1e4a5faa','','',NULL), -('2717','VNCL_Glaive_Thruster_Retro_Fixed_Right','ManneuverThruster','FixedThruster','41fdbafb-8357-4d69-8536-5b1bcf22d37a','','',NULL), -('2718','TRGT. STATUS','Seat','UNDEFINED','0c5c6710-1359-4908-a088-d8a298c8de56','','',NULL), -('2719','Door','Door','UNDEFINED','07a6b512-55ba-4ad9-8349-55e49aa018f2','','',NULL), -('2720','RSI_Apollo_Canister_Storage_Shelf_Child','Misc','UNDEFINED','7289340f-7807-4612-9ecd-478f48ad50fe','','',NULL), -('2721','Inquisitor Arms Outcrop','Armor','Arms','f4c9efd5-2a80-45f1-95e6-7d89d35aa915','','',NULL), -('2722','Lynx Arms Purple','Armor','Arms','1e48d009-30aa-4657-8e7e-b90105868b02','','',NULL), -('2723','DockingTube_Fuel_Ports_MRAI_Guardian_MX','DockingCollar','UNDEFINED','4b9d315e-ff05-4139-6542-b7595b85fc98','','',NULL), -('2724','DockingTube_Fuel_Ports_AEGS_Vanguard','DockingCollar','UNDEFINED','cd91e853-5da1-4a07-b7b4-3eedfa78fe3d','','',NULL), -('2725','IAE 2954 Hat Purple','Char_Clothing_Hat','UNDEFINED','071b9a8a-0069-452e-af79-dee28f556a99','','',NULL), -('2726','Sarilus','Cargo','Cargo','fab3f02c-f973-4d29-a45e-6dcf8e2ea0f8','','',NULL), -('2727','Station','SeatAccess','UNDEFINED','9e584db4-1e42-4aa6-b3c3-57d0efe781ef','','',NULL), -('2728','Processed Food','Cargo','Cargo','1f4ff5eb-3919-4d05-b0d4-306df5bc9360','','',NULL), -('2729','SunFire','QuantumDrive','UNDEFINED','f0790cc0-4ebd-45b9-8419-668635c7f04b','','',NULL), -('2730','Deep-Space Undersuit Lucky Break','Armor','Undersuit','07b0a604-f09b-4c12-9650-73cd35cc362d','','',NULL), -('2731','Quantity','Misc','UNDEFINED','542fdeef-8bc6-4b37-9119-5ab8749d8473','','',NULL), -('2732','ORIG_890_Jump_Thruster_Mav_BRL','ManneuverThruster','FixedThruster','20a3b199-d183-4497-883a-ed26344e89d0','','',NULL), -('2733','Dymantium','Cargo','Cargo','055ce41a-973a-42f2-bdc7-e5700ef320f9','','',NULL), -('2734','SoftLock_Terminal_Standard_Starfarer_Fuel_Pods_Ship_R2','Display','UNDEFINED','f8d58f6b-88b3-481f-a251-0128d14145aa','','',NULL), -('2735','Vehicle_Screen_MFD_Holographic_MISC_Reliant_ML','Display','UNDEFINED','78d6adb0-68b7-46af-8616-2c259663703e','','',NULL), -('2736','Bed_Sheets_No_Mattress','Seat','UNDEFINED','ead5bc58-c3ca-4b15-9e5b-67b15a43ecd2','','',NULL), -('2737','MASTER_screen_16x9_MiningKiosk_large','Display','UNDEFINED','b025660b-344a-4194-8543-e325699a5f5b','','',NULL), -('2738','Treadlight Shoes','Char_Clothing_Feet','UNDEFINED','c9842901-8d78-4273-8bc5-2297f4389171','','',NULL), -('2739','Carryable_1H_SQ_Datapad_Fluff_Orb_HathorGroup_002','Misc','UNDEFINED','03d7f182-b363-4e7c-998d-e6d6900723ab','','',NULL), -('2740','C54 SMG','Weapon','Medium','8e3e44bd-d289-4a8c-b2e6-289746b02d27','','',NULL), -('2741','Day One Shirt Violet','Char_Clothing_Torso_0','UNDEFINED','7072dd96-18b1-4207-995d-7858edc97e2c','','',NULL), -('2742','Prota','Cargo','Cargo','57c72284-2d5a-4ac5-9647-eb573f9cd5ae','','',NULL), -('2743','PAB-1 Core Covalex Edition','Armor','Torso','54d3bbea-24d7-44b2-9bc1-7f0034c83116','','',NULL), -('2744','Door Control','Door','UNDEFINED','32be052c-49ca-4ba0-b279-d0ba91d9714b','','',NULL), -('2745','game_checker_piece_double_a','Gadget','UNDEFINED','9518437e-9f7c-4ae3-8b1f-af9df81e21f0','','',NULL), -('2746','Weapon_Rack_1_NONE_Rifle_Common_001','Usable','UNDEFINED','8537114b-ead3-4797-80b1-2c3a5fce7c38','','',NULL), -('2747','Seat','Usable','UNDEFINED','dc52f6c0-e581-4009-a5c9-c85372a03911','','',NULL), -('2748','Internal Tank','FuelTank','Fuel','34a88af2-0df1-48bf-a68a-9eb6e2814b07','','',NULL), -('2749','600i 2951 Best in Show Livery','Paints','UNDEFINED','03caed87-84be-4674-ad09-8c4afcfa419c','','',NULL), -('2750','H_Dashboard_Projector_HUD_RSI_Polaris_S_L','Display','UNDEFINED','5f14c43c-9b2e-4f2d-9a10-14bd225c00e0','','',NULL), -('2751','ROC Aphorite Livery','Paints','UNDEFINED','9165cb44-d419-42d4-ae53-dd894f209f81','','',NULL), -('2752','CRUZ Pulse','Drink','Bottle','9d8be587-4081-48c4-bd3e-39e334689df1','','',NULL), -('2753','TRGT. STATUS','Seat','UNDEFINED','aa49dcfc-831a-41a0-bd98-58e51a8289d7','','',NULL), -('2754','Carryable_Bucket','Misc','UNDEFINED','b9e34597-b8b6-4414-937d-a26850390e29','','',NULL), -('2755','Strata Core microTech Edition','Armor','Torso','10ff7a53-3400-46f1-bec2-c2876861a59c','','',NULL), -('2756','Sedulity','PowerPlant','Power','bd423b9c-4115-4785-909a-77d621fd2bc4','','',NULL), -('2757','Vehicle_Screen_Physical_Holo','Display','UNDEFINED','89d12a4d-4327-45ba-954f-d81d91a6fd13','','',NULL), -('2758','PAB-1 Core Violet','Armor','Torso','dbae4e2e-410d-4d60-a5a4-a484a33c61cb','','',NULL), -('2759','SHIELDS','ShieldController','UNDEFINED','dcb7ef02-fff2-460f-bea0-fab5dd11e186','','',NULL), -('2760','sc_nvy_pilot_light_core_01_01_02','Armor','Torso','529dde0a-34ca-4e8e-b5ae-aa2dabd8318f','','',NULL), -('2761','Pampero Boots Brown','Char_Clothing_Feet','UNDEFINED','903c737a-9cda-4967-a72e-f47f8040d110','','',NULL), -('2762','Counter_Shop_Aparelli','Usable','UNDEFINED','a23ea953-553f-4407-8be6-7df2b1112b44','','',NULL), -('2763','Venture Arms Violet','Armor','Arms','ba2da8a3-d586-4441-bfd2-66e2784ae2d6','','',NULL), -('2764','Camion Jacket','Char_Clothing_Torso_1','UNDEFINED','5bdc9e1a-537b-4378-a7c0-33b839b2e9fb','','',NULL), -('2765','ESPR_Talon_Thruster_Main_TL','MainThruster','FixedThruster','2cb93b8e-8a56-4614-9afd-6b0f85f699f2','','',NULL), -('2766','Radar_Display_VNCL_Glaive','Display','UNDEFINED','971a92c4-70f7-4124-bf08-be1e1378ab3a','','',NULL), -('2767','colonialism_airlock_tube_small_default_lghtgrp','Lightgroup','AirlockPart','f4a62434-216c-4e43-9ef2-6754c1869a48','','',NULL), -('2768','Bed','Usable','UNDEFINED','8007f4e7-7f58-447b-9df9-2d5fd1c568f3','','',NULL), -('2769','Gasping Weevil Eggs','Cargo','Cargo','7b33c34c-7cf5-47db-9e9a-717290b64040','','',NULL), -('2770','MISC_Razor_Thruster_Vertical_Top','ManneuverThruster','FixedThruster','a8daecbc-90ba-40c3-a31c-ac73575e5144','','',NULL), -('2771','IndVest Jacket \"Pathfinder\"','Char_Clothing_Torso_1','UNDEFINED','1642e539-d07c-41c8-b832-8d9d84eabc1f','','',NULL), -('2772','Seat','SeatAccess','UNDEFINED','cb1ef4ec-890c-457e-b424-66ba4bbc79c5','','',NULL), -('2773','RADR_AntiPersonnel_Turret','Radar','MidRangeRadar','c818ab50-4350-42dc-b285-388adec321ec','','',NULL), -('2774','lowtech_levski_airlock_lghtgrp','Lightgroup','AirlockPart','3f3b491d-560e-4ccb-ad65-4205760faa89','','',NULL), -('2775','ControlPanel_Screen_LiftControl','ControlPanel','DoorPart','4040a7d2-3aba-4bdd-a67a-88be2c9a0aed','','',NULL), -('2776','Carryable_1H_CY_Flashlight_Medical','Misc','UNDEFINED','4f1a7ae9-530f-472f-9ed4-a2e8f6aa2577','','',NULL), -('2777','Hammerhead PHB Flight Blade','FlightController','UNDEFINED','539caf3f-0894-4587-915f-1648374d9ab7','','',NULL), -('2778','Artimex Helmet Chairman\'s Club','Armor','Helmet','11b32878-7b39-4854-8598-ec5120c1e570','','',NULL), -('2779','display_box_plastic_4_weapon_opened_015x01x0025_rundown_a_1Port','ShopDisplay','UNDEFINED','9d8eb925-8fdd-46c5-915b-12f8cf801445','','',NULL), -('2780','Seat','SeatAccess','UNDEFINED','d923e76d-b5a6-4601-ba19-49a176f190de','','',NULL), -('2781','f_human_mannequin_utility_heavy','ShopDisplay','UNDEFINED','6b3db219-1f55-4590-958a-fce3dd51fcb3','','',NULL), -('2782','Cargo_Slot_Grin_MTC_1Slot','Usable','UNDEFINED','611cc358-5f35-4ab3-8312-a5a38d6a6f2b','','',NULL), -('2783','Inquisitor Core Rager','Armor','Torso','1324b3d7-77cc-4fc3-9e0b-f87ac3cbb219','','',NULL), -('2784','Inquisitor Core Icefall','Armor','Torso','d8cb0851-17f3-407d-9420-dfbd5e7278fd','','',NULL), -('2785','Weapon_Rack_3_Slot_AEGS_Idris_Armory','Usable','UNDEFINED','76555696-9f20-4269-97a2-da06fb88fe92','','',NULL), -('2786','AEGS_Hammerhead_CargoGrid_Main','CargoGrid','UNDEFINED','70c8bcd5-73dd-4f3e-b81f-68cda2bfc199','','',NULL), -('2787','Railing_Straight_4m_Lowtech_Open_Ext_B','Usable','UNDEFINED','2f913fdc-7d22-4e11-af5f-bd4f43bd4468','','',NULL), -('2788','Silverton Pants Indigo','Char_Clothing_Legs','UNDEFINED','d73fc595-1268-47fc-a965-c86522928e37','','',NULL), -('2789','ORIG_400i_Dashboard_Bridge_Left','SeatDashboard','UNDEFINED','37a81a9f-c0b3-4c10-84d4-f857dd2836de','','',NULL), -('2790','Clipper Holt Camo Livery','Paints','UNDEFINED','14727164-e71f-4dad-baf7-9780e0daf221','','',NULL), -('2791','Internal Tank','QuantumFuelTank','QuantumFuel','1e4a2793-18bf-46d0-a58a-32d87f98fd35','','',NULL), -('2792','XTR Module','MiningModifier','Gun','37d62503-f13e-4f41-8ba1-7a3a692dd79f','','',NULL), -('2793','Party Favors','Cargo','Cargo','31c9f31f-6fbf-43e8-98fc-617f8380507d','','',NULL), -('2794','Tuvois Jacket Dark Green','Char_Clothing_Torso_1','UNDEFINED','3a201894-d25e-4869-b327-bb604848ae62','','',NULL), -('2795','Seat','SeatAccess','UNDEFINED','cfbd440f-b8e1-4a06-a6dd-1f3cd2cf136d','','',NULL), -('2796','Ponos Boots Black','Char_Clothing_Feet','UNDEFINED','94dadfef-0c9f-47cc-96f6-9fa81fe6de12','','',NULL), -('2797','Aegis Gladius - Noise Launcher','WeaponDefensive','CountermeasureLauncher','2aafa166-65f4-49ea-90e2-8f1196ce0ea6','','',NULL), -('2798','Omnapoxy','Cargo','Cargo','eb290cd2-bc6e-47fa-9bc8-a040bd67d103','','',NULL), -('2799','Ramp Control','Usable','UNDEFINED','8f7b012e-173f-4bd1-aa32-17b6ba6f235b','','',NULL), -('2800','IAE 2952 T-shirt Red','Char_Clothing_Torso_0','UNDEFINED','5d09f182-57a0-456f-a263-36634d76744d','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('2801','Seat','SeatAccess','UNDEFINED','c178a712-98ff-4d18-a54f-2ed3c2e98fea','','',NULL), -('2802','Radar_Display_25cm','Display','UNDEFINED','f6fffe15-54ce-498b-b877-9649b139b858','','',NULL), -('2803','Quartz \"Lumen\" Energy SMG','Weapon','Medium','64bbccfd-dac2-456e-b25f-a695e58bc121','','',NULL), -('2804','Oracle Helmet Aqua','Armor','Helmet','f6ceb4df-7a12-4224-b172-ca1a7b55ff69','','',NULL), -('2805','Libio Jacket Dark Green','Char_Clothing_Torso_1','UNDEFINED','f29d1c9f-5256-4128-b19a-27589efe0d77','','',NULL), -('2806','Door Control','ControlPanel','DoorPart','719d9ff3-845a-4aab-b286-cf4793c560fa','','',NULL), -('2807','ControlPanel_Screen_LightControl_9x16_ht','ControlPanel','DoorPart','312bd957-1503-44aa-9588-c2de1310f832','','',NULL), -('2808','Door','Door','UNDEFINED','cc34c203-84e7-4095-ac6f-a0c3c742657b','','',NULL), -('2809','ATLS Auspicious Red Livery','Paints','UNDEFINED','9358d406-b626-4fe6-986b-52dda526e5fe','','',NULL), -('2810','Ardent Boots Black','Char_Clothing_Feet','UNDEFINED','b3717896-ee23-4b0b-a2a7-0c0b959f6e54','','',NULL), -('2811','Medical Bed','Usable','UNDEFINED','3a206fce-dfc0-48f3-94e7-f089f38ccbe6','','',NULL), -('2812','Corundum (Raw)','Cargo','Cargo','ce7a79a4-1bbd-4b9d-83fc-139ff56e2479','','',NULL), -('2813','Coconut Curry Kacho','Food','Box','daeec25f-f3cc-44d3-97bf-1f8e4b3d3c55','','',NULL), -('2814','Flight Blade','FlightController','UNDEFINED','a4d82edd-82e2-4c4a-916a-b2fca2096e6b','','',NULL), -('2815','Tussock Boots Coal','Char_Clothing_Feet','UNDEFINED','2f1d6822-e9d9-48d0-bfdf-b98f9f27058e','','',NULL), -('2816','Chile Birria Burrito','Food','Junk','e5d0e1cf-4960-4cfc-970c-397d1d31760d','','',NULL), -('2817','Caterpillar ArcCorp Livery','Paints','UNDEFINED','70b2d32e-77b5-47ba-8073-93e07c2d90f9','','',NULL), -('2818','SHIELDS','ShieldController','UNDEFINED','20883ae0-a49c-41df-834d-2d7fd8ddd412','','',NULL), -('2819','ANVL_Hornet_F7CS_Mk2_Thruster_Retro_Left','ManneuverThruster','Retro','a99c80d0-efcb-4b6c-9019-16f6d049b3f0','','',NULL), -('2820','Cleo Pants Dark Blue','Char_Clothing_Legs','UNDEFINED','fe208346-a046-4942-b4aa-9fd035ea7af0','','',NULL), -('2821','Nyman Jacket Dark Green','Char_Clothing_Torso_1','UNDEFINED','45058ef0-f8f3-43dc-a237-9eb118dfd5ed','','',NULL), -('2822','Morozov-SH Helmet Vesper','Armor','Helmet','7a848ebd-d54b-48ce-95e3-dd331a0bdf0f','','',NULL), -('2823','PAB-1 Legs Violet','Armor','Legs','e76d0e26-cd03-4b93-8abd-e94813ccec43','','',NULL), -('2824','Lindinium','Cargo','Cargo','73319937-bd6e-4398-ace6-a94352688955','','',NULL), -('2825','X1 Scarlet Livery','Paints','UNDEFINED','725b2bc7-57b5-49cd-806c-0110433eab65','','',NULL), -('2826','Demeco \"Ultraviolet\" LMG','Weapon','Medium','e2ed4699-48d7-46f8-9970-1bb95d86d1e1','','',NULL), -('2827','Table_2_Booth_ORIG_400i','Usable','UNDEFINED','a2f7b542-3a45-4a4e-aa3a-55dabc21a122','','',NULL), -('2828','Manned Turret','TurretBase','MannedTurret','910a7b83-1c3b-477d-8645-556ad4b7bfbf','','',NULL), -('2829','Aego Pants','Char_Clothing_Legs','UNDEFINED','1c210a4d-dbeb-4d09-a4c6-1158dbe389ee','','',NULL), -('2830','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','894fa1cc-9734-44be-b4c1-f6895f9389a4','','',NULL), -('2831','MacFlex Core Orange','Armor','Torso','ffcd9cee-d115-42b8-89e4-fed10d5fa314','','',NULL), -('2832','collector_teeth_01','Char_Accessory_Head','UNDEFINED','6b8ceaec-a935-40eb-a71f-c3cce14bb991','','',NULL), -('2833','IndVest Jacket Olive','Char_Clothing_Torso_1','UNDEFINED','fbf9a767-e7eb-405b-aeb5-f1ebbe8a15da','','',NULL), -('2834','MISC Prospector - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','9c90e6ab-f95b-4e07-a15d-aed5d50a944c','','',NULL), -('2835','Kaswal Jacket Brick','Char_Clothing_Torso_1','UNDEFINED','05b4566e-8979-4269-ae7f-37babd08889d','','',NULL), -('2836','Seat','SeatAccess','UNDEFINED','f1c2ed61-99b9-4efa-a1c1-cfb0f2de1009','','',NULL), -('2837','Riccite','Cargo','Cargo','d1a8d99d-baea-4846-bbc0-715053a9fd24','','',NULL), -('2838','Monde Arms','Armor','Arms','6467d7c1-a303-4ed6-9f6a-7c5a796258eb','','',NULL), -('2839','AD5B Ballistic Gatling','Weapon','Gun','f52975b5-d621-4c08-9dcc-3c4bd8170383','','',NULL), -('2840','m_human_mannequin_marine_light','ShopDisplay','UNDEFINED','2f909d90-ee6b-4500-a672-2c22e67b8a9c','','',NULL), -('2841','Locker_Shallow_WallRight_AEGS','Misc','UNDEFINED','d73bf674-9283-42c5-904b-bd4a17cf3b10','','',NULL), -('2842','Prowler Silverado Livery','Paints','UNDEFINED','9c08388f-6969-4a2b-95cc-540f1d509f1e','','',NULL), -('2843','BEHR_LaserCannon_FiringMechanism_S8','WeaponAttachment','FiringMechanism','318f9e2b-430e-417a-a8db-b9376f7f95af','','',NULL), -('2844','KRIG_L21_Wolf_Thruster_Pipe_Left','AttachedPart','UNDEFINED','ee776107-2232-4674-aa4b-46f8ae89dc0b','','',NULL), -('2845','RemoteConnectionReceiver','RemoteConnection','UNDEFINED','d13323d7-afb8-405c-a810-a2faf7350f01','','',NULL), -('2846','ADP Legs Executive ','Armor','Legs','adeaa62d-2ddf-46b3-baad-44aa7e643dd4','','',NULL), -('2847','M50 Ship Armor','Armor','Medium','4206486c-eb66-4462-b259-9d23a4483129','','',NULL), -('2848','Chiron Arms Lifesaver','Armor','Arms','7e51d901-339e-4326-b474-d3939ad2f096','','',NULL), -('2849','Kopion Horn','Cargo','Cargo','9edd431b-1248-46f2-a189-b8b088c49416','','',NULL), -('2850','MacFlex Backpack Grey','Armor','Backpack','3802599d-c685-49a3-b174-cd4c6f29b6cc','','',NULL), -('2851','Rockridge Boots Stonewall','Char_Clothing_Feet','UNDEFINED','494768a3-e905-40c9-a826-7c798155db9a','','',NULL), -('2852','Coda \"Ultraviolet\" Pistol','Weapon','Small','0338e1a7-10a6-4397-99a8-d9f214380612','','',NULL), -('2853','Degnous Root','Cargo','Cargo','4e5abe32-e821-473c-9218-089674efbd8b','','',NULL), -('2854','Gladius Deck the Hull Livery','Paints','UNDEFINED','9242a0d1-0519-450d-aad2-b6230841ab15','','',NULL), -('2855','Tempo Jacket Chocolate Mint','Char_Clothing_Torso_1','UNDEFINED','cb1c403e-2718-43ed-af58-b634d0d806c3','','',NULL), -('2856','Carbide Jacket Outback','Char_Clothing_Torso_1','UNDEFINED','c4a34e0d-5716-4341-a6bc-580b9b04375e','','',NULL), -('2857','Medical Bed','Usable','UNDEFINED','0c1379cf-6bce-42f9-8ef3-b9045bc12a0d','','',NULL), -('2858','Dashboard','SeatDashboard','UNDEFINED','ff99d168-9428-4bbe-84ac-4033e6bd46ae','','',NULL), -('2859','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','8981c8aa-3cfc-40e4-9db1-469eb131184b','','',NULL), -('2860','\'WHIP\' Cannon','Weapon','Gun','e350773c-9131-4974-b624-e6b9e7c7200d','','',NULL), -('2861','RSI_Polaris_Fake_Doors','Misc','UNDEFINED','762fe7f4-3b5d-4ef3-b332-720494521ebf','','',NULL), -('2862','Aves Legs','Armor','Legs','1d1e2e3c-f7af-44fb-b788-32da136db275','','',NULL), -('2863','countertop_display_rotating_12Ports_test','ShopDisplay','UNDEFINED','e1caf230-72da-43c6-a82f-60a98324e422','','',NULL), -('2864','Internal Tank','FuelTank','Fuel','edbd623a-8190-4483-bc94-98a61d088a47','','',NULL), -('2865','Door Control','ControlPanel','DoorPart','f67b5707-df1e-45d6-9197-b1ac32d113ea','','',NULL), -('2866','Koya Pants Dark Teal','Char_Clothing_Legs','UNDEFINED','2ab53264-4365-4285-926a-96b5f8e698d2','','',NULL), -('2867','Gamma Plus (3x Holographic)','WeaponAttachment','IronSight','fd9d06a9-5cf8-4325-9149-538d576e5146','','',NULL), -('2868','Classic Dog','Food','Junk','bf832a70-cbed-4be4-a867-af6715bdb57f','','',NULL), -('2869','Seat','SeatAccess','UNDEFINED','1fe9b12f-9fa1-4382-9743-729eed9ded34','','',NULL), -('2870','MASTER_screen_16x9_2_0094x0054_a','Display','UNDEFINED','6a1ae763-0bc7-483e-b69b-7a4cc249a6d9','','',NULL), -('2871','AEGS_Sabre_Firebird_bombay_door_right_inner','Misc','UNDEFINED','5b6e3f1f-eb87-405e-ad02-95ea957ce5be','','',NULL), -('2872','TrueDef-Pro Legs Aqua/Black','Armor','Legs','16139d5f-fce5-4ed6-90fe-9c813e51e08c','','',NULL), -('2873','Carryable_TBO_FL_32SCU_Commodity_ProcessedGoods_EvidenceBox','Cargo','Cargo','d306c93b-7314-4afd-acf4-8c4dc7e7734a','','',NULL), -('2874','SECURITY','DoorController','UNDEFINED','d87f99d4-5bcd-4411-92e0-abdf656c87a0','','',NULL), -('2875','Compboard','Cargo','Cargo','ee30f79e-a0a4-4fd8-93f5-a6c90b9f1560','','',NULL), -('2876','DRAK_Herald_Thruster_Mav_Fixed_Left','ManneuverThruster','FixedThruster','18d7c845-323c-452f-98be-0dbd2afd1988','','',NULL), -('2877','ARGO_MPUV_1T_SCItem_SeatAccess','SeatAccess','UNDEFINED','ac368e03-e273-4200-b3ee-504b31fbbf48','','',NULL), -('2878','Door Control','Door','UNDEFINED','76aac220-9243-4c73-81b3-fb467ccd3fe3','','',NULL), -('2879','Internal Tank','FuelTank','Fuel','6b8d998c-7089-4353-8875-17290172a751','','',NULL), -('2880','Frontier 11 Classic Brick','Char_Clothing_Legs','UNDEFINED','bb55b431-8793-44fc-b5df-f424c6a72f6e','','',NULL), -('2881','M50 Stormbringer Livery','Paints','UNDEFINED','743286c7-ff38-49fc-8791-44b7a3418c65','','',NULL), -('2882','Invictus Flight Jacket Steel','Char_Clothing_Torso_1','UNDEFINED','b9b8af89-265a-40a8-94a1-bba1340348cf','','',NULL), -('2883','ADP Legs Dark Green','Armor','Legs','86968efd-3f2f-460e-947f-10f8d5de22ef','','',NULL), -('2884','Haruspec Goggles','Char_Accessory_Eyes','UNDEFINED','87db75c5-67bc-410a-b7be-96227d36b716','','',NULL), -('2885','Horizon Helmet Dark Red','Armor','Helmet','b97cb8af-5c2b-4d88-bdec-02c01457d72b','','',NULL), -('2886','SCItemDisplayScreen_NewsScreen_Levski','Display','Default','4f918a2f-0d21-485a-8930-748de9b06f49','','',NULL), -('2887','Door_Default_Keypad_StormBreaker','Door','UNDEFINED','248b6f7f-d03d-4203-842c-b5364f8d400e','','',NULL), -('2888','StrikeForce II Missile','Missile','Missile','9b2c25cb-fc57-42b5-95cd-1ae89a622bd7','','',NULL), -('2889','Perth Pants Maroon','Char_Clothing_Legs','UNDEFINED','81b7daa5-7ce5-401f-aa74-021aef0e31b8','','',NULL), -('2890','Manned Turret','UtilityTurret','MannedTurret','3287181a-04f0-44c9-8bb0-865ae24e7451','','',NULL), -('2891','Oracle Helmet Frostline','Armor','Helmet','acb16b1e-6f95-42d3-a05d-4792e501e273','','',NULL), -('2892','Carrion Legs Stalker','Armor','Legs','99a2951b-6fbd-48d1-be7d-7a1bf79e55eb','','',NULL), -('2893','Door Control','Door','UNDEFINED','9d4ba2ed-8f35-4056-ab39-64d1f8a5d764','','',NULL), -('2894','Morozov-CH Backpack Aftershock','Armor','Backpack','72284e09-4347-472c-81cd-d95166304b8c','','',NULL), -('2895','AAT-34 Turret','Turret','MannedTurret','2bc8c72a-dcc4-4f08-8775-11971058595d','','',NULL), -('2896','Internal Tank','FuelTank','Fuel','11976bf7-975a-4df6-81e4-13d12edaa72c','','',NULL), -('2897','Silicon','Cargo','Cargo','a74787c3-3d67-4f4b-b9d6-83293b0aaf8f','','',NULL), -('2898','ARGO_ATLS_Headlights','Misc','UNDEFINED','de9491ea-a5ef-463c-bf3f-252d74c54da1','','',NULL), -('2899','Cambio-Lite SRT Canister','WeaponAttachment','Magazine','c1de56e1-e20f-4c8c-bbb8-c0584e38725d','','',NULL), -('2900','PAB-1 Legs Seagreen','Armor','Legs','286d9720-cdf9-48c3-b07b-12317153cf31','','',NULL), -('2901','Cliffback T-Shirt Yellow','Char_Clothing_Torso_0','UNDEFINED','91288bdc-44ee-4125-8f0b-cc95ed7ffa1e','','',NULL), -('2902','f_human_mannequin_marine_undersuit','ShopDisplay','UNDEFINED','8bfb33fa-0098-492d-97cb-f194f33f121c','','',NULL), -('2903','LegacyMobiGlas','Display','Personal','f5a0d2f6-74fb-4247-aa3f-1fc61bcc2f49','','',NULL), -('2904','Personal Storage','Cargo','UNDEFINED','c7d08e83-71f1-4894-9e43-d5fb20efae7b','','',NULL), -('2905','Amioshi Plague','Cargo','Cargo','bc626b5c-12ba-4d72-8a79-6677abf8f2b1','','',NULL), -('2906','Scorpius TSB Flight Blade','FlightController','UNDEFINED','761c25cf-fac6-4ad3-aab3-7e000e977040','','',NULL), -('2907','Door Control','ControlPanel','DoorPart','c383f98b-851b-4c4c-bfb9-728a62252df3','','',NULL), -('2908','Tigersclaw','FPS_Consumable','Hacking','3b1d33fb-aaca-4056-a28f-74da168e4070','','',NULL), -('2909','AEGS_Sabre_Thruster_Mav_Joint_02','ManneuverThruster','JointThruster','65881bd8-69c4-4416-a47d-aa180714f0f9','','',NULL), -('2910','Gadget_Cabinet_kegr_fire_extinguisher_01_NoRN_hightech_med_high','Usable','UNDEFINED','b64d9060-676b-465e-8459-7bc74d63b822','','',NULL), -('2911','VNCL_Blade_Thruster_Aux_Fixed_02','ManneuverThruster','FixedThruster','0215e147-e5df-4d91-b4bc-575c56c1bea7','','',NULL), -('2912','Carryable_2H_Vent','Misc','UNDEFINED','0c227456-d41c-458d-b682-301629d84306','','',NULL), -('2913','Spirit Allegiant Livery','Paints','UNDEFINED','07470862-1827-4fe9-bd9b-6e109b2994b5','','',NULL), -('2914','OreBit Mining Attachment','WeaponAttachment','Utility','da55ce5e-25dd-4160-9f04-fee8796c0b43','','',NULL), -('2915','Starlancer Bonfire Livery','Paints','UNDEFINED','d1878e46-a35e-4857-8928-10a6743fca5c','','',NULL), -('2916','RSI_Polaris_Thruster_Main_Outer','MainThruster','UNDEFINED','dd27bdcf-4044-495b-a247-c6236c8d7ce8','','',NULL), -('2917','Seat','SeatAccess','UNDEFINED','58f47630-995b-402b-9848-bf601e4fe5dc','','',NULL), -('2918','Carryable_1H_CY_glass_tumbler_tequila_1_a','Misc','UNDEFINED','bf1fb55a-29c8-47e7-8a17-c8348740fccf','','',NULL), -('2919','Clipper Regatta Livery','Paints','UNDEFINED','44d3658f-7bb5-4f38-9af3-83404f95285a','','',NULL), -('2920','Personal Storage','Cargo','UNDEFINED','3bd0c4d2-7b2c-4cf9-9734-c6cbfd9c819e','','',NULL), -('2921','Carryable_1H_CY_tool_crowbar_2_a','Misc','UNDEFINED','dcfb85b1-6b1f-4064-b1cb-de696c15e62e','','',NULL), -('2922','food_ration_pack_g','Misc','UNDEFINED','f17296c3-67ba-4ce7-a62b-da45ca2cc9b6','','',NULL), -('2923','Seat','SeatAccess','UNDEFINED','6f944179-41c3-4a33-9616-51696d12ee3d','','',NULL), -('2924','Fortifier Helmet Outcrop','Armor','Helmet','e9777e72-752e-4fdd-90ba-db6b7038cc56','','',NULL), -('2925','Seat','Usable','UNDEFINED','b7d3386a-9dec-4f22-9806-78033d4e158e','','',NULL), -('2926','Door','Door','UNDEFINED','6dc24490-8030-479f-88bf-bf8b0a37ac41','','',NULL), -('2927','Fortune Hightide Livery','Paints','UNDEFINED','51bfc345-7263-4db3-ba20-2e06c59dc7a0','','',NULL), -('2928','Avenger Nightbreak Livery','Paints','UNDEFINED','9a34e061-eedf-47c3-8157-b5e751d5cef9','','',NULL), -('2929','VNCL_Glaive_Thruster_side_left','ManneuverThruster','FixedThruster','8cfb26cb-6896-4c26-85c4-bf5ce53db984','','',NULL), -('2930','Saldynium (Ore)','Cargo','Cargo','ea78ac2d-9bfb-4081-a770-90ac9e2293b5','','',NULL), -('2931','RSI_Aurora_Thruster_Retro','MainThruster','FixedThruster','8d7aacd0-c156-4e2a-91fe-535656926c9f','','',NULL), -('2932','Luminalia Gift','Misc','Harvestable','d8b59f64-677d-48f6-945b-d770f82f4d8d','','',NULL), -('2933','ESPR_Prowler_Thruster_Mav_02_Utility','ManneuverThruster','UNDEFINED','cc04c05a-b970-41ab-943e-86b637f754eb','','',NULL), -('2934','Zeus Mk II Obsidian Livery','Paints','UNDEFINED','cb3c6f8d-a856-4c65-86c0-7fa9271a5cfa','','',NULL), -('2935','Weapon_Rack_1_Slot_ARGO_GadgetLarge','Usable','UNDEFINED','57ad2ab0-3116-40ff-84e7-0ec89510f424','','',NULL), -('2936','Durus Tractor Beam','TractorBeam','UNDEFINED','83b3857b-d7d5-40bd-b79c-058026f29ec6','','',NULL), -('2937','Mivaldi Pants (Modified)','Char_Clothing_Legs','UNDEFINED','102a8b5c-7b4a-4740-91ad-b1a6dc6c889f','','',NULL), -('2938','TrueDef-Pro Arms Red/Silver','Armor','Arms','ae4acdd4-0224-4f71-8e65-d8bb5e89cbc6','','',NULL), -('2939','Cal-O-Meal \"Vanilla\" Protein Bar','Food','Bar','1270bfd1-f22f-4f48-8a23-e626db5cb668','','',NULL), -('2940','ADP Legs Platinum','Armor','Legs','e80ebc00-69b1-4320-b85b-f36dcaf1d860','','',NULL), -('2941','RSI_Hermes_Thruster_Main_Nacelle','MainThruster','FixedThruster','455024ae-b65b-39ad-c89a-6670fc5d7d8d','','',NULL), -('2942','Dragonfly Overdrive Livery','Paints','UNDEFINED','405f24dc-0fbd-4b1a-acbe-000f27386ddd','','',NULL), -('2943','Microid Battle Suit Arms Lowland','Armor','Arms','ea203dc7-9445-4560-95f7-ace39f232e5d','','',NULL), -('2944','Matiese Shoes','Char_Clothing_Feet','UNDEFINED','46e80a29-191c-4e64-8c64-4d45970e12cb','','',NULL), -('2945','DRAK_Vulture_Component_Shield','Player','UNDEFINED','cd373b41-e910-4feb-b15a-68b2abed0399','','',NULL), -('2946','Prota','Cargo','Cargo','13fef5cb-ee61-4c61-b177-47f15c9c1e4b','','',NULL), -('2947','GLSN_Shiv_Seat_CoPilot','Seat','UNDEFINED','9700c55d-ffb2-45e3-be5a-0575b40a598c','','',NULL), -('2948','Missile Rack','MissileLauncher','MissileRack','cd4b5f66-56e1-4878-b0f4-7ae1ca8dc53d','','',NULL), -('2949','Door Control','ControlPanel','DoorPart','a15f0e9f-3311-4886-ad42-d8b248585018','','',NULL), -('2950','Internal Tank','FuelTank','Fuel','4a9ed578-ef2d-4d58-b3c8-e45259916276','','',NULL), -('2951','Weapon_Rack_3_Slot_RSI_Aurora_GS','Usable','UNDEFINED','ab996bdd-7c31-4df3-9dc4-21f3d865d0ce','','',NULL), -('2952','Elevator Control','Door','UNDEFINED','ccb62380-013d-47f0-a4c0-6468da36b8a3','','',NULL), -('2953','ControlPanel_Screen_LightControl','ControlPanel','DoorPart','72d53db1-f1c0-4515-b675-8eb0e6584777','','',NULL), -('2954','Bed_DRAK_Cutlass_Black_Lower','Usable','UNDEFINED','51cc5bb9-827d-4b22-bb37-0689108f1287','','',NULL), -('2955','HydroJet','Cooler','UNDEFINED','866c76c0-8c22-44ad-b1dc-167ee5fbe347','','',NULL), -('2956','GAMA_Syulen_DockingTube','DockingCollar','UNDEFINED','96f558a5-a8f5-4e2c-ab05-8cf3d0d537a1','','',NULL), -('2957','\'WEAK\' Repeater','Weapon','Gun','00ab31a0-7de2-44f7-a567-7ff88fdbad49','','',NULL), -('2958','Piecemeal Armor Arms Olive','Armor','Arms','e2a3988b-ab16-4769-9704-469438f37763','','',NULL), -('2959','Door Control','ControlPanel','DoorPart','b75961c5-64f7-4aa1-be12-b9d2e53c15a0','','',NULL), -('2960','Seat','SeatAccess','UNDEFINED','2bfbaec7-7d16-4bf4-8187-45fffc5af3df','','',NULL), -('2961','CRUS_Starlifter_SCItem_Dashboard_CoPilot','SeatDashboard','UNDEFINED','802f2950-44c2-423f-aca1-79661bf25911','','',NULL), -('2962','Perth Pants','Char_Clothing_Legs','UNDEFINED','eb34de82-ec46-4d5d-90db-f34318c2e8cd','','',NULL), -('2963','CRUS_Star_Runner_CargoGrid_Large','CargoGrid','UNDEFINED','54140373-4893-4e2d-a383-2a43e9535efb','','',NULL), -('2964','Day One Shirt','Char_Clothing_Torso_0','UNDEFINED','e70f1e58-6781-43ea-82af-99bf3e59c0ff','','',NULL), -('2965','TE_weapon_box__ksar_shotgun_energy_01','Misc','UNDEFINED','a13ca94a-ee05-4e48-bb0a-741b7821d311','','',NULL), -('2966','Testudo Arms Nightveil','Armor','Arms','ffe92800-4681-4d22-ac4d-5a664b16d016','','',NULL), -('2967','ADP Core Green','Armor','Torso','0d59459b-a1bc-4922-8531-169f271013f5','','',NULL), -('2968','Seat','SeatAccess','UNDEFINED','21b1b1c8-51c7-4be7-885b-f300ec53f56b','','',NULL), -('2969','Arcus Gloves Gray','Char_Clothing_Hands','UNDEFINED','3b134baa-1125-4695-a590-4d74651646d7','','',NULL), -('2970','SCItemDisplayScreen_ScreenSize_BedBunks','Display','Default','092824c5-a60c-45fd-b789-69db363cd6a6','','',NULL), -('2971','INTK_ANVL_Pisces','FuelIntake','Fuel','9b6c1de9-5168-4236-b6f4-bec6fe47b1ce','','',NULL), -('2972','Lightstrike IV Cannon','Weapon','Gun','060aac99-514a-4689-b6f9-4a1461723427','','',NULL), -('2973','Door Control','Door','UNDEFINED','3e16a1fd-ed27-46ab-a96a-f5b1193c7f86','','',NULL), -('2974','Weapon_Rack_6_Slot_Animated','Usable','UNDEFINED','2e9edfd4-8052-4c25-a437-2bb21f652bcf','','',NULL), -('2975','DockingTube_Fuel_Ports_AEGS_Eclipse','DockingCollar','UNDEFINED','4106a5f7-e930-4e84-aa37-a286148222b3','','',NULL), -('2976','Starfarer Storm Surge Livery','Paints','UNDEFINED','34441b1a-33dc-4e66-9fbc-551e58265bd1','','',NULL), -('2977','SCItemDisplayScreen_VC_3DRender','Display','Default','5288da0e-8408-4da9-abf4-048ce8ff735f','','',NULL), -('2978','Argus Helmet Gold/Grey/Black','Armor','Helmet','319b0548-e9a5-44f5-b912-9029f39bd12e','','',NULL), -('2979','DockingTube_Fuel_Ports_XIAN_Scout','DockingCollar','UNDEFINED','7002acb1-1303-4a7b-92b9-b542ffb479f2','','',NULL), -('2980','Door Control','Door','UNDEFINED','a9140cda-2dd0-416d-b164-b636aa8207fb','','',NULL), -('2981','ORIG_600i_Seat_Bridge_Left','Seat','UNDEFINED','3e3c227c-e7b4-45b0-b457-9091106c399d','','',NULL), -('2982','MISC_Prospector_Thruster_Mav_Fixed_04','ManneuverThruster','FixedThruster','8f63aa04-c870-4825-9099-1cf081771290','','',NULL), -('2983','Lynx Legs Firebrick','Armor','Legs','9fe4afb0-284a-48b4-bd9a-5fdc873d86a2','','',NULL), -('2984','RSI_Com_Brig_3StateTray','Misc','UNDEFINED','a6f1bb5d-a8b0-4dd3-8bf9-0d2e8a62a5a2','','',NULL), -('2985','Door','Door','UNDEFINED','1a22468e-b9ac-41fc-8870-c946364a9cba','','',NULL), -('2986','Viper III-G Missile','Missile','GroundVehicleMissile','69c9701d-53e2-4377-ac94-f65edfe4c63f','','',NULL), -('2987','Compboard','Cargo','Cargo','419b8e17-56f4-4e15-94da-0450da1b0f14','','',NULL), -('2988','DRAK_Corsair_CargoGrid_Main','CargoGrid','UNDEFINED','bdd81e5c-c374-453c-82f2-deba02629862','','',NULL), -('2989','Remote Turret','Turret','GunTurret','39d8368b-380c-4be6-8a5c-cf83a3c8cf4a','','',NULL), -('2990','ANVL_Asgard_CargoGrid','CargoGrid','UNDEFINED','d052ebfc-552f-453a-9870-303d801c3b00','','',NULL), -('2991','Controller_Fuel','FuelController','UNDEFINED','9925488b-127a-4fc3-b7bb-9e4f5a46bbbd','','',NULL), -('2992','Paladin Carmine Livery','Paints','UNDEFINED','6c507205-7599-4e75-add1-3b51b8b993dd','','',NULL), -('2993','BEHR_LaserCannon_Barrel_S8','WeaponAttachment','Barrel','2b551675-e44e-487b-9c0a-73e7f45dac04','','',NULL), -('2994','Seat','SeatAccess','UNDEFINED','b8be4134-cbca-4d45-a3ea-d70808702ddd','','',NULL), -('2995','AEGS_Sabre_Thruster_Mav_Left','ManneuverThruster','JointThruster','319b0822-8983-4e89-bac9-4f0e37f6ecbb','','',NULL), -('2996','Lynx Legs Red','Armor','Legs','60d89692-e306-46fb-8259-7bcca61f7deb','','',NULL), -('2997','Overlord Core Predator','Armor','Torso','2222b2d3-34dc-4797-878c-9b3b5a38f61b','','',NULL), -('2998','Door','Door','UNDEFINED','678e6fd4-9fd4-42eb-a09b-237376947fcc','','',NULL), -('2999','Access','SeatAccess','UNDEFINED','a15eea20-170e-4793-aa93-b96391fedaf2','','',NULL), -('3000','facial_hair_023','Char_Head_Beard','UNDEFINED','8ce83349-a151-4d98-ab07-d710bb8bc5fc','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('3001','INTK_MISC_Freelancer','FuelIntake','Fuel','6d69820b-762b-4d48-a125-3acdbdea4b23','','',NULL), -('3002','Francis the Stormwal Large Plushie','Misc','Personal','d39fbbd5-1f33-4047-a75b-161889229bd2','','',NULL), -('3003','Flight Blade','FlightController','UNDEFINED','51cd5acd-d235-4b1e-8e78-f47bf6641c32','','',NULL), -('3004','Venture Legs Pathfinder','Armor','Legs','708be659-3f3d-4742-8ea4-fb69a1aa743b','','',NULL), -('3005','Door','Door','UNDEFINED','9a0e4839-906e-4091-b2a9-c1cbd47e07d0','','',NULL), -('3006','Door Control','Door','UNDEFINED','89a0da73-cc36-4bd6-b619-f519fbfff9bd','','',NULL), -('3007','ARGO_MPUV_Thruster_Main_Fixed','MainThruster','FixedThruster','c254b8d9-e8c3-4f86-a881-12c5971fead9','','',NULL), -('3008','screen_4x3_cz_datapad','Display','UNDEFINED','471e1036-a88d-4f2c-8d14-5a4c1332d045','','',NULL), -('3009','Tuvic Outerwear Jacket Arctic','Char_Clothing_Torso_1','UNDEFINED','c30ab793-03d7-4322-a894-429182c28b69','','',NULL), -('3010','weapon_underbarrel_light_narrow_red_01','WeaponAttachment','Light','187726a9-3eb5-48f7-96b5-b7419b1c0a49','','',NULL), -('3011','Carnita-ritas Burrito','Food','Junk','82706d17-3eba-4d0a-b1ab-e679c858c8cf','','',NULL), -('3012','universal_necksock_01','Char_Flair','UNDEFINED','77d6e8ea-e07c-4f53-9c59-6217d7451f11','','',NULL), -('3013','Railing_Straight_3m_LT_Delta_a','Usable','UNDEFINED','c8047d55-97df-4138-ae57-fbf80b78955f','','',NULL), -('3014','m_human_mannequin_odyssey_suit_13','ShopDisplay','UNDEFINED','fed31cd8-a8f4-4097-980b-66253240bcfa','','',NULL), -('3015','Datapad','Misc','UNDEFINED','9f9ac9e7-842a-4270-9246-fd11e373aa2c','','',NULL), -('3016','AEGS_Sabre_Thruster_Mav_BottomRR','ManneuverThruster','JointThruster','6ad093fc-0448-426e-ac1e-6d1a296f720c','','',NULL), -('3017','CRUS_Star_Runner_CargoGrid_Small','CargoGrid','UNDEFINED','128185a7-cab1-48a4-9af5-656e4f3e8809','','',NULL), -('3018','Door Control','Door','UNDEFINED','bbbc5f3a-be49-48fe-967e-ea17b199e4dd','','',NULL), -('3019','Ready-Up Helmet Green','Char_Clothing_Hat','UNDEFINED','81b14905-be2c-4bde-89c2-db64f3e56a70','','',NULL), -('3020','Flair_Hologram_Wikelo_1_a','Usable','UNDEFINED','914f91b4-3177-4a9b-91f5-8a166c1ceae9','','',NULL), -('3021','AEGS_Retaliator_SCItem_Dashboard_Esc_Pod','SeatDashboard','UNDEFINED','d0cd559d-a5cd-48d3-a210-273972afcda1','','',NULL), -('3022','MISC_Starlancer_Thruster_Mav_Bottom','ManneuverThruster','FixedThruster','4294bbc7-1e48-4540-813b-21fbfb95d447','','',NULL), -('3023','Seat','Usable','UNDEFINED','1b0666a8-a3fa-4aca-9221-82f1551bef0b','','',NULL), -('3024','Chamar Pants','Char_Clothing_Legs','UNDEFINED','06bcc9c3-1137-4f72-aabd-efa5aa3ea5f0','','',NULL), -('3025','Gladius IceBreak Livery','Paints','UNDEFINED','11a6e31d-02df-403d-8d92-49d24c71d79f','','',NULL), -('3026','Personal Storage','Cargo','UNDEFINED','301a568b-60ab-4d44-80bd-b92192ef684d','','',NULL), -('3027','Carryable_1H_CY_garnish_mint_1_a','Misc','UNDEFINED','d0eb3f9e-0048-4aee-8d83-6ea65f2e3cf3','','',NULL), -('3028','Internal Tank','FuelTank','Fuel','42a51157-e518-4ce4-b3a1-1ddb5757823b','','',NULL), -('3029','Lynx Arms','Armor','Arms','48609392-c78c-4909-8714-387900059785','','',NULL), -('3030','INTK_ANVL_Hornet_F7CM','FuelIntake','Fuel','7532d2a8-791d-418b-b805-0d817e58aae6','','',NULL), -('3031','Gamma (1x Holographic)','WeaponAttachment','IronSight','e812e76a-4068-4e91-8511-45a26039aa12','','',NULL), -('3032','Carryable_1H_SQ_MissionItem_Delivery_SmallBox_01','Misc','Utility','f11c1618-3b8c-4f73-8fd7-9848fa2720e8','','',NULL), -('3033','Tritium','Cargo','Cargo','4b84cde6-cb5d-4891-979f-b78263aa94d0','','',NULL), -('3034','Maintenance_Workzone_Damaged','Usable','UNDEFINED','e337da30-5b4c-4f5a-a96a-0505784ef0e1','','',NULL), -('3035','box_mining_1_005x005x005_a','Cargo','UNDEFINED','8c0638e5-641e-41ea-b886-5f00a418a73f','','',NULL), -('3036','Day One Shirt Yellow','Char_Clothing_Torso_0','UNDEFINED','381bceca-7d0c-42a4-996f-e289d2963ae1','','',NULL), -('3037','Food_box_noodle_02_open_b','Food','Box','af55c448-edf3-4557-a486-cc3fdf0c29e8','','',NULL), -('3038','Chiron Legs AA Support','Armor','Legs','705c47ec-7b0f-41c0-b7c6-6d316f3ea714','','',NULL), -('3039','Aril Helmet Red Alert','Armor','Helmet','c486f51f-7557-457b-9314-9286f0771aed','','',NULL), -('3040','Origin Jumpworks Noise Launcher','WeaponDefensive','CountermeasureLauncher','d6e0229a-f18e-4dc6-a590-942089da7a2d','','',NULL), -('3041','orig_bedding_duvet_4_c','Seat','UNDEFINED','921d5f3b-b555-48a8-adcf-ab450ed1ce4d','','',NULL), -('3042','Bed_RSI_Phoenix_Right','Usable','UNDEFINED','58858d35-99b3-465a-9735-734a6a53ac60','','',NULL), -('3043','CRUS_Starlifter_Thruster_VTOL_Side_Left','MainThruster','FixedThruster','32a793b5-f0de-4cc8-90c1-72fd92962172','','',NULL), -('3044','Zeus Exploration Suit Backpack Solar','Armor','Backpack','70188e91-7947-4e1a-897e-ae743362603c','','',NULL), -('3045','Ridgely Jacket Mafic','Char_Clothing_Torso_1','UNDEFINED','06f1e34a-fead-41f7-a4dd-24b5a8bcfb89','','',NULL), -('3046','Helium','Cargo','Cargo','5ed5e4f3-9edc-4d60-922e-005ff8bbaf9b','','',NULL), -('3047','DRAK_Cutlass_Steel_Thruster_Maneuver_Right','ManneuverThruster','JointThruster','1faea90a-34c5-4053-8684-a191ca9d200b','','',NULL), -('3048','Aves Core','Armor','Torso','d3c22aee-6473-466a-975c-ecde2eaba580','','',NULL), -('3049','Crusader Black King','Misc','UNDEFINED','a53de68b-2840-4866-b772-f1fc8d24618b','','',NULL), -('3050','Seat','SeatAccess','UNDEFINED','82dc9e5e-57ec-40f1-b14c-6597e26b3167','','',NULL), -('3051','Aranda Shirt Crusader Edition','Char_Clothing_Torso_0','UNDEFINED','cbb13aa7-acea-4e50-8526-372fcbcf6bac','','',NULL), -('3052','Carryable_1H_CY_tool_manual_screwdriver_1_a','Misc','UNDEFINED','0383493a-8f60-412a-9dd5-fa7186aa01c1','','',NULL), -('3053','Aranda Shirt Crusader Edition Blue/Beige','Char_Clothing_Torso_0','UNDEFINED','a79a4fc8-acb2-458e-bc58-4ed9c9807b55','','',NULL), -('3054','Aranda Shirt Crusader Edition Purple Plaid/Blue Pinstripe','Char_Clothing_Torso_0','UNDEFINED','f80504b7-5a13-4529-b7a4-dfdb1193ece3','','',NULL), -('3055','M3A Cannon','Weapon','Gun','42e2ddb1-7397-4299-88ee-2ddfaa0efc67','','',NULL), -('3056','ARGO_MPUV_1T_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','48019d2f-2dda-46c4-8086-e2fe18197e7d','','',NULL), -('3057','AEGS_Door_Decal_Hangar_02','Decal','DoorPart','a2f3dcef-af4a-468f-bc67-1f1fe74d835a','','',NULL), -('3058','TRGT. STATUS','Seat','UNDEFINED','01f2c81a-4a78-46e1-951a-ff4a060b40c0','','',NULL), -('3059','XNAA_SanTokYai_SeatAccess_Nacelle_Right','SeatAccess','UNDEFINED','cfdb0f91-23cd-4e0b-96da-ca34c859add6','','',NULL), -('3060','AEGS_Reclaimer_SCItem_Engineer_Console','Seat','UNDEFINED','5b8b28e3-acbd-4b1d-9e72-7dece71b05ed','','',NULL), -('3061','Door Control','ControlPanel','DoorPart','ea6b3292-85e7-456d-8e92-bd4a2acdf447','','',NULL), -('3062','Paint_Idris_Pirate','Paints','UNDEFINED','a188beb6-c67c-4995-a204-64699b3fdf84','','',NULL), -('3063','AEGS_Javelin_Thruster_Main_02','MainThruster','FixedThruster','10822059-b181-49a9-b552-82ed316b6d9b','','',NULL), -('3064','un_box_plastic_2_berries_b','Misc','UNDEFINED','e44675c0-2e8d-4bfd-9a0e-805fab1ffc4c','','',NULL), -('3065','Door_Ship_Sensor_Proximity_0_5x1_5x1','Sensor','DoorPart','ed5eb4c8-7a05-4de9-99dc-411c91c6e1e2','','',NULL), -('3066','Door Control','DockingAnimator','UNDEFINED','86f97031-73fa-46bf-b077-ab28c065e9b5','','',NULL), -('3067','Fortune Outcast Livery (Modified)','Paints','UNDEFINED','82f2f53e-763c-4733-be8d-db1e73334696','','',NULL), -('3068','Wolf Rosso Livery','Paints','UNDEFINED','485001d5-fbba-4135-8f52-2ed401a673ea','','',NULL), -('3069','Demeco LMG Battery (100 cap)','WeaponAttachment','Magazine','b62224ba-5c56-4306-857a-70de7d570767','','',NULL), -('3070','Carnifex Armor Core','Armor','Torso','a27c00b7-9eea-4025-bec7-395e3edf3ee9','','',NULL), -('3071','Seat','Usable','UNDEFINED','0af71b4d-7f22-4e68-b1b3-5b637ac35ad7','','',NULL), -('3072','Heart of the Woods','Cargo','Cargo','0f4fa69b-fcb1-450c-a3a9-eda04374ac5d','','',NULL), -('3073','ARMR_CRUS_Starfighter_Ion','Armor','Medium','970d0305-849d-4fa9-a23e-46e8c14184b7','','',NULL), -('3074','CRUS_Starlifter_chin_turret_cap','Misc','UNDEFINED','1890da19-dbe3-44ae-80f1-46cb1e407a1f','','',NULL), -('3075','Beacon Undersuit Green/White','Armor','Undersuit','8b140ff6-0a64-42d8-a821-9e09e3599e5d','','',NULL), -('3076','Manned Turret','TurretBase','MannedTurret','171c3bcf-ec19-4a36-b60a-701dbfebc17b','','',NULL), -('3077','Chiron Legs','Armor','Legs','669b94eb-4d05-4e81-9eee-009bbd17dea8','','',NULL), -('3078','Enkel Shirt Saddle','Char_Clothing_Torso_0','UNDEFINED','dd8d8a58-385d-4db2-a8ab-edb71af814e3','','',NULL), -('3079','Molina Mold Samples','Cargo','Cargo','b0fe2485-f189-482a-88a0-9bc66dce3f1f','','',NULL), -('3080','Venture Core Dark Red','Armor','Torso','26a2947e-3b31-40ad-ac41-da6807ea0a98','','',NULL), -('3081','Hornet Mk II Silva Livery','Paints','UNDEFINED','1dd696f0-676c-4ff5-8e47-daac833e0255','','',NULL), -('3082','RSI_Perseus_Thruster_Main','MainThruster','UNDEFINED','70c5c168-7d8b-4522-8123-56c688e4bb3d','','',NULL), -('3083','Davin Work Gloves Black','Char_Clothing_Hands','UNDEFINED','6e1ba640-6953-4609-b2bc-2e8002c64fcc','','',NULL), -('3084','Warden Backpack Epoque','Armor','Backpack','568c481b-bb7c-4e36-be46-787eceedfa7a','','',NULL), -('3085','ANVL_Hornet_F7CR_Mk2_Thruster_Mav_1','ManneuverThruster','JointThruster','7faea001-fd31-4348-9ff4-3318fe03bec6','','',NULL), -('3086','Odyssey II Helmet Alpha','Armor','Helmet','3a0319f9-ebf0-477b-87c4-9d14552a0b2e','','',NULL), -('3087','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','aa7fb24f-5173-4b41-a5a4-139a24eb4e86','','',NULL), -('3088','Ice-Flush','Cooler','UNDEFINED','41ac4e69-f4f8-4efe-b499-0257bdf1aba3','','',NULL), -('3089','Edgewear Pants','Char_Clothing_Legs','UNDEFINED','88ba53e2-b7f6-4866-9671-e6df9e6db7e1','','',NULL), -('3090','Helium','Cargo','Cargo','ec37d0df-2368-4430-9439-ebf4f52b7977','','',NULL), -('3091','Seat','SeatAccess','UNDEFINED','ea2e7f56-feed-4b30-8d4a-894a7eef6fa3','','',NULL), -('3092','Ginzel','PowerPlant','Power','96244ab6-8819-47c3-87af-78124661c725','','',NULL), -('3093','Seat','SeatAccess','UNDEFINED','cd7bbb85-684e-47bd-971c-78f7cd329379','','',NULL), -('3094','Stratus Pants Brown','Char_Clothing_Legs','UNDEFINED','cc3ce841-eb78-476c-bcee-1b000fe464b6','','',NULL), -('3095','HRST_LaserRepeater_Ventilation_S6','WeaponAttachment','Ventilation','a961e622-2317-4efa-98b3-fa94a1ffad74','','',NULL), -('3096','Door Control','Door','UNDEFINED','2ade9278-25be-4839-9353-cafed7c2982c','','',NULL), -('3097','Weapon Rack','Usable','UNDEFINED','ec614728-4b4e-49dc-81ae-0fb865ff0a0f','','',NULL), -('3098','Strode Pants Molten','Char_Clothing_Legs','UNDEFINED','af49445f-eb7f-438b-8200-3a8f968b6525','','',NULL), -('3099','Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','4fa93d65-ea5f-40d6-9d60-55e2eb5bfab0','','',NULL), -('3100','Toughlife Boots Purple','Char_Clothing_Feet','UNDEFINED','8cc29b89-44d7-4b31-8229-4c10173b78cb','','',NULL), -('3101','Ixonia Helmet Verdant Steel','Armor','Helmet','d9e65aa3-d49e-400b-b94e-428499603ecc','','',NULL), -('3102','Medical Supplies','Cargo','Cargo','dddd1d03-5e95-41da-9009-d5a52b43fb3b','','',NULL), -('3103','Skellig Pants Dark','Char_Clothing_Legs','UNDEFINED','c34bc189-440b-4abe-b257-2663f09ec833','','',NULL), -('3104','Hammerhead Ship Armor','Armor','Medium','bf515942-b108-42af-8003-da3134d082c0','','',NULL), -('3105','PLACEHOLDER','Char_Clothing_Hands','UNDEFINED','964b3a81-4724-451f-ab9d-56da37ad03da','','',NULL), -('3106','Stoneskin Helmet Desert','Armor','Helmet','d3889502-12dd-47a9-b4f4-72e9543e79b7','','',NULL), -('3107','A2 Hercules Starlifter Plushie','Misc','Personal','399b5aa4-90ab-4c3c-9232-be6f6b2fa702','','',NULL), -('3108','ORC-mkV Core Cry-Astro Edition','Armor','Torso','47bbf85b-5063-4238-871e-6c757b2e4a65','','',NULL), -('3109','RSI_Bengal_Aux_Hangar_Door','Misc','UNDEFINED','89330287-9510-413b-8cd3-a3b1d2be0b44','','',NULL), -('3110','Seat','Usable','UNDEFINED','2a49f520-0c2c-4339-9721-3d08f01bbdc9','','',NULL), -('3111','Seat','Usable','UNDEFINED','1c634dc5-36be-4f23-b3cb-4d3fa7a3d86f','','',NULL), -('3112','Venture Undersuit Envy','Armor','Undersuit','613dc9ec-858f-46ec-98c4-424376a97a80','','',NULL), -('3113','P4-AR \"Fortuna\" Rifle','Weapon','Medium','d1ee5dad-55aa-4442-8527-99abd7a73ef6','','',NULL), -('3114','un_can_drink_2_b','Misc','UNDEFINED','cec65525-6d77-4a0f-9618-9a4cb68a0a82','','',NULL), -('3115','ORIG_890_Jump_Thruster_Retro','ManneuverThruster','FixedThruster','b258989b-3481-4490-8255-9c4d249237f4','','',NULL), -('3116','AEGS_Idris_SCItem_Seat_Security','Seat','UNDEFINED','4bb23c22-43f3-45f6-aedf-d5666a600668','','',NULL), -('3117','Feynmaline','Cargo','Cargo','71e93d63-49a2-47fd-aa44-08b0f69ef9c5','','',NULL), -('3118','Chiron Legs Heartthrob','Armor','Legs','e1e24075-a34c-4905-a4f6-99ae97e9dd4d','','',NULL), -('3119','TARGET SELECTOR','TargetSelector','UNDEFINED','620a5db4-92c8-4841-984e-1dc9e81f8e67','','',NULL), -('3120','Borase','Cargo','Cargo','be7081d2-3dcc-438c-b0ad-41a46864d86c','','',NULL), -('3121','Walesko','FPS_Consumable','Hacking','6b1beae0-5c39-478f-9d26-dd2139baf4db','','',NULL), -('3122','MASTER_screen_16x9_3_0064x0036_a','Display','UNDEFINED','e1985410-2aaf-4805-8399-2c0107392d7c','','',NULL), -('3123','Door Control','Door','UNDEFINED','373c11a3-c8b3-4e50-a323-1957bf5fcd58','','',NULL), -('3124','Quartz (Raw)','Cargo','Cargo','77ad9677-5f61-474e-a9f2-3115d73488fb','','',NULL), -('3125','VariPuck S3 Gimbal Mount','Turret','GunTurret','8197c45b-eaf4-4836-a8f0-837d1875cd9c','','',NULL), -('3126','Stirling Hazard Backpack','Armor','Backpack','204ccbc6-b28c-4edb-a2eb-251ebf7ea328','','',NULL), -('3127','MASTER_bag_carryable_2h','Cargo','UNDEFINED','6dd77f8a-fcdb-4fb3-b28e-255dd5822b00','','',NULL), -('3128','AEGS_Door_Decal_Main_Airlock','Decal','DoorPart','417f2d19-c5b5-4615-8843-799a67fee929','','',NULL), -('3129','Book','Misc','UNDEFINED','0ba0d44f-1f7d-4231-8492-10c200a39717','','',NULL), -('3130','MISC_Fortune_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','267a9417-79f0-4bbc-aa4d-cfdf9a0e9c86','','',NULL), -('3131','CRUS_Spirit_Thruster_VTOL_Aux','MainThruster','UNDEFINED','3aa750df-c964-46ae-97ff-613190cf6341','','',NULL), -('3132','Vera Compensator2','WeaponAttachment','Barrel','9e8ce68b-7f29-48cb-87a0-5c5db4c72b91','','',NULL), -('3133','Stud','Char_Head_Piercings','UNDEFINED','345e4b4d-2350-42cf-bef8-c301af3a4399','','',NULL), -('3134','helmet_temp','Misc','UNDEFINED','17636caa-7e32-4cc4-8107-ee911ed0b38d','','',NULL), -('3135','MacFlex Arms Sienna','Armor','Arms','6b5c9d74-8880-4698-89b6-981af0e3f5ff','','',NULL), -('3136','Retaliator Calico Livery','Paints','UNDEFINED','c71f1ab5-acd1-475c-af51-18ee453f900a','','',NULL), -('3137','RSI_Polaris_Cargo_Addon_Left','AttachedPart','UNDEFINED','d797cc55-b724-413d-be78-dd25479e29bc','','',NULL), -('3138','Silnex','Cargo','Cargo','19cdc820-513e-455f-b6e1-10dd758725dd','','',NULL), -('3139','Seat','Usable','UNDEFINED','2a03b85e-cef6-4022-8560-e8dd6047e267','','',NULL), -('3140','ANVL_Terrapin_Thruster_Mav_Joint_Medic','ManneuverThruster','FixedThruster','2c037f1c-e677-4247-9963-275628eaee41','','',NULL), -('3141','Mercury Star Runner Red Alert Livery','Paints','UNDEFINED','719676e2-9baa-409b-b4b8-62bc93b92284','','',NULL), -('3142','VariPuck S4 Gimbal Mount','Turret','GunTurret','42651386-1c6a-489e-8755-1e3f93fa6b83','','',NULL), -('3143','Access','SeatAccess','UNDEFINED','f3a5c951-f86c-404d-b119-2803d6672ec2','','',NULL), -('3144','Molina Mold','Misc','Harvestable','492f7df7-e055-4e71-8623-68f3f670e019','','',NULL), -('3145','ComfortAir','LifeSupportGenerator','UNDEFINED','e947b002-e65e-4637-90b7-c894925d6625','','',NULL), -('3146','M9A Cannon','Weapon','Gun','8d333eed-3042-4093-90f4-d1ba41fb46a3','','',NULL), -('3147','ARMR_ANVL_Arrow','Armor','Medium','2c99ef3c-d73a-4539-beac-6765b6254773','','',NULL), -('3148','DRAK_Cutter_Scout_Radar_Console','Seat','UNDEFINED','4707a311-d731-40d2-92d1-215189fd146c','','',NULL), -('3149','Comb','Misc','UNDEFINED','35dfd8fe-361e-4eec-aa74-9e59beaad3c7','','',NULL), -('3150','Copper (Ore)','Cargo','Cargo','b1766cb5-6210-42b7-9e57-45b9c51f9faa','','',NULL), -('3151','2954 Tempt Fate Tankard','Drink','UNDEFINED','31142a63-5179-48e5-b382-a705d8d01672','','',NULL), -('3152','ORIG_890_Jump_Thruster_Mav_RSR','ManneuverThruster','FixedThruster','e3a93564-39d4-42e6-a889-72a561fc0703','','',NULL), -('3153','Flight Blade','FlightController','UNDEFINED','c5f57b5f-86f3-4f33-9fb6-bfc0bdc4dc73','','',NULL), -('3154','Wooden Rooster Charm (Small)','Misc','UNDEFINED','5fb960fe-9f38-4c1c-ae01-0116cc0fc8d1','','',NULL), -('3155','Aurora Mk I ArcCorp Livery','Paints','UNDEFINED','5a7ec97b-e358-4c9a-af54-8f5819a9efd4','','',NULL), -('3156','CRUS_Starfighter_Ballistic_Nacelle_Left','Misc','UNDEFINED','4008ac13-ae45-40c9-a1a5-63a6934c0561','','',NULL), -('3157','Sabre Firebreak Livery','Paints','UNDEFINED','5ef44e8f-f0d7-4405-933b-2b481454d46d','','',NULL), -('3158','AEGS_Sabre_Peregrine_Thruster_Mav_Joint_02_Top','ManneuverThruster','JointThruster','8b75cfe8-74b2-47bb-9886-a412f9cf62bf','','',NULL), -('3159','ARGO_MOTH_SCItem_Dashboard_CoPilot','SeatDashboard','UNDEFINED','41123152-f066-4db3-9fd3-01dfe6518462','','',NULL), -('3160','Weapon_Rack_1_VOLT_Sniper_Uncommon_003','Usable','UNDEFINED','ba7c0d48-2d65-445d-bb8a-ec980c388ca5','','',NULL), -('3161','Redeemer Underworld Livery','Paints','UNDEFINED','ab86f582-5349-48ca-8ab0-6d0b5ec7d3ea','','',NULL), -('3162','Plastic Cup','Misc','UNDEFINED','0f9611a2-7382-4522-a8ba-9b4d02358113','','',NULL), -('3163','ht_crate_dry_2_0125x0125x0125_a','Cargo','UNDEFINED','90619e40-72aa-4095-b1ee-c1318f2271ae','','',NULL), -('3164','Mustard','Misc','UNDEFINED','6a43191c-3a7b-4e11-8c07-1fc3e8c71fca','','',NULL), -('3165','Neon','Cargo','Cargo','e6543c66-d79a-4ead-b14e-f3856df49c84','','',NULL), -('3166','Bed_Mattress_Utili_Capsule','Seat','UNDEFINED','e7969ccb-0cb8-4d42-9f15-5005ab71169c','','',NULL), -('3167','TRGT. STATUS','Seat','UNDEFINED','17a2b467-c221-492a-b25f-0ac752e6850c','','',NULL), -('3168','Coloma Coat Iron and Silver','Char_Clothing_Torso_1','UNDEFINED','175c8c1c-0b57-4db9-9b40-1b1b6b3fb637','','',NULL), -('3169','GCD-Army Undersuit','Armor','Undersuit','39ace1a3-3ed2-41a6-ad6f-788c2fe8e300','','',NULL), -('3170','Internal Tank','FuelTank','Fuel','57c90b8e-5575-4df7-8f01-8a323e36fc0c','','',NULL), -('3171','INTK_CRUS_Spirit','FuelIntake','Fuel','2b5274d0-2b7c-4ca0-b9ec-251aa683ab2a','','',NULL), -('3172','un_jar_glass_1_berries_a','Misc','UNDEFINED','bcb5691b-4493-4ec6-9acc-dcc1b5dcd910','','',NULL), -('3173','Door Control','Door','UNDEFINED','df26667f-2d37-4097-a158-99d632b2e51e','','',NULL), -('3174','ANVL_Pisces_RADR_Display','Display','UNDEFINED','a23515fc-6a72-48ce-93ba-a265a93a2685','','',NULL), -('3175','Mercury Star Runner Foundation Fest Livery','Paints','UNDEFINED','70bcbdcb-6969-4bfc-932e-13d146a88f61','','',NULL), -('3176','DockingTube_Fuel_Ports_AEGS_Sabre','DockingCollar','UNDEFINED','e128980d-1a21-4359-a044-efb785175c8a','','',NULL), -('3177','CRUS_Spirit_Thruster_Main_A','MainThruster','UNDEFINED','78cdcebb-5676-43bb-99f7-24ca0f0ecdb9','','',NULL), -('3178','Ponos Boots Orange','Char_Clothing_Feet','UNDEFINED','83127ccc-80ff-4e38-8e92-59bf6cd2167a','','',NULL), -('3179','ARGO_MOLE_Thruster_VTOL_Rear','MainThruster','FixedThruster','8f905755-85a3-4131-b22f-b4cc4d442e78','','',NULL), -('3180','Carryable_2H_FL_EighthSCU_Commodity_Mineral','Cargo','Cargo','c925cc0c-2a8c-40ad-8cf9-07c8a99992dd','','',NULL), -('3181','Finley the Stormwal Luminalia Plushie','Misc','Personal','a641bcd0-f0c4-426b-8f4b-dbc3e8ce6281','','',NULL), -('3182','TRGT. STATUS','Seat','UNDEFINED','c846cd51-43a9-45c1-9642-fa395897c705','','',NULL), -('3183','Cambio \"Heartthrob\" SRT','Weapon','Gadget','48008537-1526-4712-9daf-ce57fdca18cb','','',NULL), -('3184','FS-9 LMG','Weapon','Medium','6f1674b1-fb58-4661-9114-f418862751d2','','',NULL), -('3185','Door','Door','UNDEFINED','29cba01d-1da5-4256-896c-5a098134652e','','',NULL), -('3186','TRGT. STATUS','Seat','UNDEFINED','8e7c5bec-31f1-4617-a1a8-70b781d016f7','','',NULL), -('3187','CRUS_Starlifter_Door_Decal_Radar_A','Decal','DoorPart','bb3d18dd-6c4b-4c1e-830f-8b00b9b2c26f','','',NULL), -('3188','improvised_tray_1_b','ShopDisplay','Default','5dfb838a-385c-4e5a-9dbc-d8ac8dcdfa00','','',NULL), -('3189','RSI_Ursa_CargoGrid_Rear','Cargo','UNDEFINED','b039d7b6-6f63-413a-9175-43964d3a334f','','',NULL), -('3190','RSI_Constellation_Phoenix_SCItem_Seat_CoPilot_Left','Seat','UNDEFINED','8f00569b-f358-4e98-8920-b0fc24e42c6c','','',NULL), -('3191','Freelancer Black Livery','Paints','UNDEFINED','e5243581-914b-4eca-bf9a-b05168a531b9','','',NULL), -('3192','ORIG_600i_Seat_Expl_Module_Left','Seat','UNDEFINED','8a19958a-a95e-4342-99be-da1091ce8a26','','',NULL), -('3193','Weapon Rack','Usable','UNDEFINED','8ba21b48-774f-45ed-8f0f-3a5a7907fd23','','',NULL), -('3194','Seat','Usable','UNDEFINED','0cdd2773-a7b0-47ce-8cbe-d652d7b06295','','',NULL), -('3195','Chiron Core Lifesaver','Armor','Torso','7a06556d-5a4a-4e94-a395-7e793fe2cd77','','',NULL), -('3196','Aurora Mk I CL Ship Armor','Armor','Medium','5fc0aeba-7397-4487-a2cb-07670aaa994e','','',NULL), -('3197','LH86 \"Executive Edition\" Pistol','Weapon','Small','c4242150-6580-4305-9e4f-8fc5379bcb42','','',NULL), -('3198','Omnitrek Jacket Frost Point','Char_Clothing_Torso_1','UNDEFINED','c1132860-1c02-407c-a600-607bc44d605f','','',NULL), -('3199','Door Control','ControlPanel','DoorPart','8fe6bbad-d9a5-40b7-935f-2667ea2a221f','','',NULL), -('3200','Carryable_1H_CY_drug_inhaler_1_a_box','Misc','UNDEFINED','6e1c91ff-4c7b-4ff1-b0b4-5a1785d1f30b','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('3201','Bed','Usable','UNDEFINED','41456d73-99ba-4a32-9558-9a4382b761e8','','',NULL), -('3202','AEGS_Hammerhead_Thruster_Retro','ManneuverThruster','FlexThruster','eb8a3e01-8574-4c7f-96c7-156a18fdd990','','',NULL), -('3203','RSI_Zeus_Cargo_CargoGrid_Right','CargoGrid','UNDEFINED','55e0bd24-cce2-4844-88e2-f120536bea19','','',NULL), -('3204','Calva Helmet Daybreaker','Armor','Helmet','5f7c3f05-c351-4dcb-bd0e-e98b2b4e3ffe','','',NULL), -('3205','Quartz \"Deadfall\" Energy SMG','Weapon','Medium','beffa2d9-b633-452c-91d3-ed852e3e1014','','',NULL), -('3206','Internal Tank','FuelTank','Fuel','bd985eb3-b2ae-495b-b776-2e955cfb324c','','',NULL), -('3207','Calva Helmet','Armor','Helmet','57386b72-68c8-4d08-ab87-2e2c9e1380e5','','',NULL), -('3208','Quantum Fuel','Cargo','Cargo','24344104-8f61-40e2-8d59-346a7eb0c1f1','','',NULL), -('3209','ANVL_Door_Decal_Carrack_Captains_Quaters','Decal','DoorPart','f209514d-1797-4be9-81cb-6bd346306120','','',NULL), -('3210','Stratus Pants Green','Char_Clothing_Legs','UNDEFINED','7911e8b2-06b3-4d81-a2f4-11ef40269f19','','',NULL), -('3211','Col Head Cover Purple','Char_Clothing_Hat','UNDEFINED','03003f2e-578d-49fa-897c-48d659beefec','','',NULL), -('3212','Seat','SeatAccess','UNDEFINED','626f8e96-71e2-410a-bb6e-d84dc673a7b4','','',NULL), -('3213','Table_1_Seat_ANVL_Paladin','Usable','UNDEFINED','65099834-cb60-4055-9f8e-be8414de5a31','','',NULL), -('3214','Pyro RYT Multi-Tool','Weapon','Gadget','6b5469c0-8fdb-4062-8e7d-8c59ad324faf','','',NULL), -('3215','Agricium','Cargo','Small','ad671bda-e44f-44b5-b5a6-de0bacccd61e','','',NULL), -('3216','Seat','SeatAccess','UNDEFINED','28944222-13a3-4d57-9e93-67bd1dd3cab5','','',NULL), -('3217','WorkLife Pants Straw','Char_Clothing_Legs','UNDEFINED','4d74bedb-69e3-473f-bad8-7444355d73d1','','',NULL), -('3218','Calister Pants','Char_Clothing_Legs','UNDEFINED','90f48522-b1b5-4afe-b672-b03d6f296c80','','',NULL), -('3219','Weapon_Rack_TMBL_Storm_1Slot','Usable','UNDEFINED','1b248191-4b26-4a6f-a38f-c97c8f71e2a4','','',NULL), -('3220','Defender Stormbringer Livery','Paints','UNDEFINED','05c8b395-cfa6-4e12-bf3b-ba62b76e1ed0','','',NULL), -('3221','TEST_shelf_MissionBlackBoxDropOff','ShopDisplay','UNDEFINED','d8f8a5d5-b8bb-4e86-9494-f6a995aefc22','','',NULL), -('3222','T.A.B.A. Cargo Plushie','Misc','Flair_Wall_Picture','1581e12a-b162-40c1-ae28-0adf5edc15ad','','',NULL), -('3223','Controller_Salvage_Crus_C1','SalvageController','UNDEFINED','b12b25de-1a75-41b4-9f62-2aba705f92e6','','',NULL), -('3224','ThermalFoam','Cargo','Cargo','4d490d39-e260-44a9-80c2-7bd407be0f81','','',NULL), -('3225','Arden-CL Backpack Rime','Armor','Backpack','fdf82c64-ae1d-45cb-b907-2f61ac634a96','','',NULL), -('3226','AEGS_Idris_SCItem_Seat_Bridge_Rear_Left_Back','Seat','UNDEFINED','ac04f999-6965-41d9-a986-5efe664fc1f3','','',NULL), -('3227','ARMR_ESPR_Prowler_Utility','Armor','Medium','1c32466b-2841-4658-b49b-0b5a829710a4','','',NULL), -('3228','Internal Tank','FuelTank','Fuel','f546d7d5-e577-491d-92e2-eca3818c0659','','',NULL), -('3229','ORC-mkV Legs Cry-Astro Edition','Armor','Legs','7b5c4a78-e680-42ee-9aa8-266ab4ba8060','','',NULL), -('3230','f_human_mannequin_sandNomad','ShopDisplay','UNDEFINED','26fff138-dd16-4790-b5a5-a7d8782ce784','','',NULL), -('3231','Door_Ship_Sensor_Proximity_2x5x3','Sensor','DoorPart','ae0798d0-bd53-47bf-a059-83e121aa44c1','','',NULL), -('3232','Door Control','Door','UNDEFINED','6c62f813-ac08-4b87-a506-a67b5de4a031','','',NULL), -('3233','Animus Missile Launcher Magazine (3 cap)','WeaponAttachment','Magazine','2308fcbc-cc02-41c1-9a5e-3a14507fc4f4','','',NULL), -('3234','ANVL_Hornet_CargoGrid_F7C','CargoGrid','UNDEFINED','4a08dec7-9544-4d3b-9e01-0e7ed83793cf','','',NULL), -('3235','Scourge Railgun Magazine (5 cap)','WeaponAttachment','Magazine','92f958c7-71c5-4997-a575-d6ea3a6e304b','','',NULL), -('3236','TRGT. STATUS','Seat','UNDEFINED','e4aafcec-62e0-4643-97cc-e0fc453d7506','','',NULL), -('3237','Kaswal Jacket Iron','Char_Clothing_Torso_1','UNDEFINED','a0f45272-8dcd-45b7-850a-ed4160d435c6','','',NULL), -('3238','ARMR_TMBL_Cyclone','Armor','Light','a59b5acf-ea30-4177-a292-d990af708d3e','','',NULL), -('3239','Bokto Arms','Armor','Arms','8bbb69d3-9233-4a6d-b23c-53694de7e08b','','',NULL), -('3240','KRIG_Merlin_LandingGearSystem','LandingSystem','UNDEFINED','77ce531a-e398-4d7e-bb05-a77b8caca600','','',NULL), -('3241','Flight Blade','FlightController','UNDEFINED','c2bacfcb-6610-468c-82c4-f8c2abe3a6d8','','',NULL), -('3242','Ajax Security Uniform Hat','Char_Clothing_Hat','UNDEFINED','36b4bc1f-88cf-470c-b23b-cd30d99aa9d9','','',NULL), -('3243','Seat','Usable','UNDEFINED','5272c1ef-3e66-4b9a-8445-e20240b6f2fb','','',NULL), -('3244','Vulture Foundation Fest Livery','Paints','UNDEFINED','350277c7-d1a4-485f-9046-a99cfcaa1611','','',NULL), -('3245','AEGS_Redeemer_Blankingplate','Misc','UNDEFINED','1de1443d-5de8-4191-ad30-dca031305daf','','',NULL), -('3246','ORC-mkX Legs Justified','Armor','Legs','84c76b3b-7011-4b32-b7b1-1219e2ba8d2d','','',NULL), -('3247','SHIELDS','ShieldController','UNDEFINED','5d916f4e-1e13-40d0-afe8-9c1b2d7c934a','','',NULL), -('3248','Carryable_TBO_FL_16SCU_Commodity_ProcessedGoods_ProcyonCanister_Quantum','Cargo','Cargo','2c18edf2-b3c3-4a05-b3e9-0d43c1401c4b','','',NULL), -('3249','Ermer Family Farms Fat Free Ice Cream','Food','Junk','7441f131-fa39-452c-89a7-ef23b41fee52','','',NULL), -('3250','Door Control','Door','UNDEFINED','eaf58daa-0939-4f09-baad-5a3e479806cd','','',NULL), -('3251','Inquisitor Core Brimstone','Armor','Torso','c9d44046-13f2-4882-9db3-dd89eed1728d','','',NULL), -('3252','Gasping Weevil Eggs','Cargo','Cargo','86c08380-24e5-4637-8ae9-d352e94b8fcf','','',NULL), -('3253','Radar_Display_1_5m','Display','UNDEFINED','b45f9b47-ac61-42e4-83fc-89b561337077','','',NULL), -('3254','DockingTube_Fuel_Ports_RSI_Aurora_CL','DockingCollar','UNDEFINED','e7228e20-6135-4e63-9999-d821f859840a','','',NULL), -('3255','CNOU_Mustang_Delta_Thruster_Retro','ManneuverThruster','FixedThruster','41e4a686-7119-4701-9906-5f8e82711115','','',NULL), -('3256','Manned Turret','TurretBase','MannedTurret','d7488d3c-fae9-479c-91ee-70382f6eb8cc','','',NULL), -('3257','TRGT. STATUS','Seat','UNDEFINED','fc9c27a1-3941-4806-96b7-947039f830bf','','',NULL), -('3258','Mercury Star Runner Flight Jacket','Char_Clothing_Torso_1','UNDEFINED','42f20a21-f22b-4303-baca-d36ad7878aff','','',NULL), -('3259','Bed','Usable','UNDEFINED','0c01a1e4-643a-4042-a9b0-f129e7d292bd','','',NULL), -('3260','RSI_Apollo_Medivac_Thruster_Main_Nacelle','MainThruster','FixedThruster','43899839-921d-64ae-8d5d-237d774d90b8','','',NULL), -('3261','DRAK_Vulture_Locker_Door','Player','UNDEFINED','43f399a5-6f59-4288-9100-e798710a5602','','',NULL), -('3262','MASTER_screen_16x9_1_004x00255_RefineryScreen','Display','UNDEFINED','cf3b45eb-bde4-4136-a1b3-6fdfb6427f0c','','',NULL), -('3263','Fresnel Energy LMG Battery (165 Cap)','WeaponAttachment','Magazine','923fcb3c-ad02-4a9a-96c2-1fb61fb6c794','','',NULL), -('3264','Origin Black Knight','Gadget','UNDEFINED','2268f514-0089-499f-93a6-78156974217e','','',NULL), -('3265','Paint_300_SeatTrim_GlossYellow','Misc','UNDEFINED','d0cf1bc4-ce1f-482f-86e2-24dc1e249f1e','','',NULL), -('3266','JOKR_DistortionCannon_Barrel_S1','WeaponAttachment','Barrel','7f31d915-b0f2-4237-b2bd-13091b0fbf23','','',NULL), -('3267','Fortifier Helmet Earthwork','Armor','Helmet','e0f3070a-4f62-4983-bcd8-f1a22f734af7','','',NULL), -('3268','Quartz \"Lumen\" Energy SMG','Weapon','Medium','397b9aab-4bde-4aae-a70d-d6604a69aa01','','',NULL), -('3269','CNOU_Mustang_Gamma_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','63c24488-246f-4bdd-ac29-82ec52a9baeb','','',NULL), -('3270','Celestial Sextant','Misc','UNDEFINED','9f7eeb87-55f3-4733-9498-38dac7bca090','','',NULL), -('3271','Clipper Cerulean Livery','Paints','UNDEFINED','374becfb-7f28-488b-b7d5-2d26096b1035','','',NULL), -('3272','Vehicle_Screen_MFD_Holographic_MISC_Hull_C_R','Display','UNDEFINED','a1c401a4-3030-4396-af9d-44b5a1b84073','','',NULL), -('3273','Ventra Gloves Green','Char_Clothing_Hands','UNDEFINED','b896c933-d555-4091-8ce2-61b497444b00','','',NULL), -('3274','Ready-Up Helmet Yellow','Char_Clothing_Hat','UNDEFINED','6ccdf264-4fcb-4810-afca-ffa7cca71c3a','','',NULL), -('3275','CRUS_Spirit_C1_CargoGrid','CargoGrid','UNDEFINED','99644e5d-1c63-4803-a95f-57009d2999c7','','',NULL), -('3276','Diamond Laminate','Cargo','Cargo','661b3d7b-81cf-4cd5-a2e1-c8fcb55ffe0f','','',NULL), -('3277','Door Control','ControlPanel','DoorPart','ffeae9b0-6371-498a-abf9-469849f2fa32','','',NULL), -('3278','Day One Shirt Orange','Char_Clothing_Torso_0','UNDEFINED','a4e22473-cf14-46e4-abb1-5b0d09e1d4be','','',NULL), -('3279','Field Recon Suit Helmet','Armor','Helmet','36857ba1-a4c3-4ee7-b67d-5d8538d8dd5c','','',NULL), -('3280','Chamar Pants','Char_Clothing_Legs','UNDEFINED','1333f5ea-0253-4787-abef-a3e914ab9a67','','',NULL), -('3281','Tungsten (Ore)','Cargo','Cargo','20fac62e-05a0-42bd-b857-e143dd09996c','','',NULL), -('3282','display_cabinet_small_16x03x0150','ShopDisplay','Default','e619c603-5b57-4563-a138-2b5e10255703','','',NULL), -('3283','AEGS_Idris_CargoGrid_MissileRoom_Front','CargoGrid','UNDEFINED','8ece66bc-0c5e-4c8d-9843-1c9c101c1227','','',NULL), -('3284','Microid Battle Suit Legs','Armor','Legs','98aeb87d-3583-4a4a-b342-20b596c8eae7','','',NULL), -('3285','Seat','Usable','UNDEFINED','fc0382c6-121c-48ed-860a-bc53673e94e2','','',NULL), -('3286','VariPuck S2 Gimbal Mount','Turret','GunTurret','1ba3ba1d-f619-445c-994c-c6e8b52cc207','','',NULL), -('3287','Corbel Arms Crush','Armor','Arms','ad41bd3f-b1a6-4b01-84e5-6cf2f7bab8a4','','',NULL), -('3288','The Hill Horror Helmet','Armor','Helmet','a75d3d97-cff2-4a27-a8fe-ea6bb27bcf61','','',NULL), -('3289','Door Control','Door','UNDEFINED','3eeddcfc-d15b-4035-9f50-3e426149790d','','',NULL), -('3290','Table_1_Seat_DRAK_Clipper','Usable','UNDEFINED','6a808a20-35d5-4ebb-a714-c79d2e2b6234','','',NULL), -('3291','RAFT Alliance Aid Green Livery','Paints','UNDEFINED','e28322f4-3fc1-415c-870f-4acac52e607a','','',NULL), -('3292','Remote Turret','Turret','GunTurret','de0cf016-d36f-4a8c-9ab6-0d9ebad6ec89','','',NULL), -('3293','MacFlex Core \"Rust Society\"','Armor','Torso','c4a68f08-1939-4f06-b656-c35ebf61545e','','',NULL), -('3294','AEGS_Door_Decal_WC_M','Decal','DoorPart','0084abf0-d884-4c17-8649-3df9e1909ccc','','',NULL), -('3295','Torite','Cargo','Cargo','4bafd0d6-4de2-4c89-a798-65513f59214d','','',NULL), -('3296','Door Control','Door','UNDEFINED','5a12c222-b120-45d6-961b-74bd7cb66038','','',NULL), -('3297','San\'tok.yai Tuiping Livery','Paints','UNDEFINED','be03db26-d0ec-42db-8bee-a919bbf27ddc','','',NULL), -('3298','Pembroke Helmet','Armor','Helmet','b4545643-195c-4b70-977c-55d680ec34c2','','',NULL), -('3299','JS-300','PowerPlant','Power','b1c89d89-d408-4998-9b17-76986d78a9dd','','',NULL), -('3300','un_glass_wine_1_a','Misc','UNDEFINED','db4e1a04-3e7e-4215-b9f0-7f728ff0cb7b','','',NULL), -('3301','Stirling Exploration Helmet Granite Edition','Armor','Helmet','6edb6cce-863e-4b25-ae08-63d27fe4ecad','','',NULL), -('3302','Snapback Boots','Char_Clothing_Feet','UNDEFINED','611405ed-1968-498b-9b71-bd2a97cf8136','','',NULL), -('3303','MXC Cadet Livery','Paints','UNDEFINED','2e44fa78-2e8c-45b0-b015-92defd8fbe72','','',NULL), -('3304','Six-Sided Rotating Die Orange','Misc','Utility','d2f0e07a-5c64-4e63-a256-59c894b90e31','','',NULL), -('3305','CRUS_Starlifter_Thruster_Retro','ManneuverThruster','FixedThruster','066e8800-ba83-43d6-82eb-40fc40bf81df','','',NULL), -('3306','AEGS_Door_Decal_Escapepods_Large_03','Decal','DoorPart','ac88e5a3-2839-41bc-84d9-35c5021a3758','','',NULL), -('3307','Seat','Usable','UNDEFINED','fd6f139e-a37e-4b26-bb74-257a2798b64c','','',NULL), -('3308','Enkel Shirt Valencia','Char_Clothing_Torso_0','UNDEFINED','9ee82184-16d8-42c3-bace-bc743379a53f','','',NULL), -('3309','RSI_Aurora_GS_Pilot_Dashboard','SeatDashboard','UNDEFINED','954737c5-ba7b-4383-bff3-d5efd00f527b','','',NULL), -('3310','ATLS Granite Livery','Paints','UNDEFINED','9ac499d9-d402-4fc1-b8ee-b239832fce42','','',NULL), -('3311','MSD-481 Missile Rack','MissileLauncher','MissileRack','e92cb56d-1574-4569-b7ab-719ecbc4dec0','','',NULL), -('3312','Radar_Display_CRUS_Intrepid','Display','UNDEFINED','69af9a79-6620-4c3d-b5c7-1d5ff0cacd42','','',NULL), -('3313','Seat','SeatAccess','UNDEFINED','2c2a8f9d-1ea2-4684-aeb6-1c64c3d66430','','',NULL), -('3314','Seat','Usable','UNDEFINED','869cf626-8402-40b5-a41c-035cfa3a45a8','','',NULL), -('3315','Door Control','ControlPanel','DoorPart','f2ee708b-c918-4fee-b2df-a584c12691e2','','',NULL), -('3316','Davin Work Gloves Dark Red','Char_Clothing_Hands','UNDEFINED','74d6db6e-8847-402b-bb4e-54b2d2fee164','','',NULL), -('3317','AEGS_Gladius_Thruster_Retro','ManneuverThruster','JointThruster','37670506-d57e-4dbe-be92-cbe85f1fe9ad','','',NULL), -('3318','Red Wind Container Model','Misc','Flair_Wall_Picture','6db7bafc-dfa4-4ce5-ad52-de1be2de2855','','',NULL), -('3319','Carryable_1H_SQ_Harddrive_1','Misc','Utility','a6716581-de06-4401-b9dd-7ef3c514407f','','',NULL), -('3320','ORIG_400i_Thruster_Mav_Side','ManneuverThruster','FlexThruster','7294e8d1-432d-4e59-a96a-f35f0e91152f','','',NULL), -('3321','Pisces Citizens for Prosperity Garnet Livery','Paints','UNDEFINED','a97abf1c-2f61-43f3-8330-113aa4d03f64','','',NULL), -('3322','Aphorite','Cargo','Cargo','ff27f0b4-2293-430b-b90f-d8458dcdaae8','','',NULL), -('3323','Beryl','Cargo','Cargo','bb8b4dad-104c-4e6b-9edb-817e29b43d90','','',NULL), -('3324','RSI_Apollo_Medivac_Thruster_Main','MainThruster','FixedThruster','41fbfb8e-75e7-9fda-9a55-df771b4773bc','','',NULL), -('3325','Sadaryx','Cargo','Cargo','869ee2cd-bfe3-4026-b35a-1d3385832552','','',NULL), -('3326','RSI_Polaris_Platform','Elevator','UNDEFINED','e85f359c-ea94-4683-b448-a0dec197ad26','','',NULL), -('3327','Savrilium','Cargo','Cargo','cc37f091-7707-47c8-b2bc-4e29bac2ae4e','','',NULL), -('3328','Stirling Hazard Suit','Armor','Undersuit','9978e476-921c-4e4d-9a3e-3692c1943ce6','','',NULL), -('3329','Hair Care Product','Misc','UNDEFINED','40644aef-61e6-4c56-bdda-ecc8fc19f707','','',NULL), -('3330','ExoGen','PowerPlant','Power','d49cced4-ee82-4a98-8690-93ac432c891a','','',NULL), -('3331','G-Loc T-Shirt','Char_Clothing_Torso_0','UNDEFINED','e60ea44a-642d-4957-b6ea-38028b4879d1','','',NULL), -('3332','CNOU_Mustang_Gamma_Thruster_Retro','ManneuverThruster','FixedThruster','1508f2ba-d1e6-4c92-a502-1a22e76b7b46','','',NULL), -('3333','ORC-mkX Helmet Singularity','Armor','Helmet','464c599a-8bcf-482f-9ff9-60d12c133641','','',NULL), -('3334','display_components_s2_modular_shield','ShopDisplay','UNDEFINED','884a425b-d9e8-490b-a1c9-c5195d707a5d','','',NULL), -('3335','Ammonia','Cargo','Cargo','30a1c0ce-6917-454d-8e4c-1d3bf6201d88','','',NULL), -('3336','Calister Pants Shuttle Gray','Char_Clothing_Legs','UNDEFINED','73639b78-2bf1-40cf-9470-74335a3fe53f','','',NULL), -('3337','DRAK_Cutlass_Blue_Thruster_Maneuver_Left','ManneuverThruster','JointThruster','505428a0-80d4-4e7c-b28b-f28fa3a948ec','','',NULL), -('3338','MISC_Razor_EX_Thruster_Retro','ManneuverThruster','FixedThruster','7bc09347-73f4-4b0e-85aa-2ed7bf89f219','','',NULL), -('3339','mobiGlas Plum Casing','MobiGlas','Personal','5a48ba91-3ef7-45a3-a77b-cefb59be1648','','',NULL), -('3340','Bed_Pillow_Utili_Capsule','Seat','UNDEFINED','5c0e671d-60dc-4a9f-be21-67679d78f149','','',NULL), -('3341','RSI Hat','Char_Clothing_Hat','UNDEFINED','c74fb9b8-e3de-40e5-8a26-1d6f02be2f37','','',NULL), -('3342','ANVL_Gladiator_Thruster_Mav_Joint_01','ManneuverThruster','FlexThruster','734ff92a-963e-444d-a46c-d77ae56362aa','','',NULL), -('3343','Adroit Gloves Charcoal','Char_Clothing_Hands','UNDEFINED','868f8e45-f712-48a3-95d3-a4826782ca4a','','',NULL), -('3344','Lynx Arms Green','Armor','Arms','bb24483b-8822-4325-9368-0507d45e1be8','','',NULL), -('3345','Adroit Gloves CFP','Char_Clothing_Hands','UNDEFINED','eb6f6b5d-9fc2-4db2-b61e-d53d829b6839','','',NULL), -('3346','AEGS_Door_Decal_Escapepods','Decal','DoorPart','b1c96d2d-9eb5-415a-a825-7d205fd33e29','','',NULL), -('3347','Irradiated Valakkar Fang (Juvenile)','Misc','Harvestable','72eca4eb-23b8-43b0-94b0-72d31b6ba358','C','',NULL), -('3348','Walesko','FPS_Consumable','Hacking','9b71ffec-2bc6-4d48-bc13-a03f233312de','','',NULL), -('3349','Bed_ORIG_600i_Crew_A','Usable','UNDEFINED','62e13af5-8f91-4d90-bd81-e673c2747453','','',NULL), -('3350','Stoic Suppressor3','WeaponAttachment','Barrel','a3d3ce39-37f1-41a7-827d-ae83aded1285','','',NULL), -('3351','Seat','Usable','UNDEFINED','f166358e-34fe-4b81-9c4d-b2604c08c393','','',NULL), -('3352','Sinkhole Backpack','Armor','Backpack','4a8738c7-c9dc-4e35-b8d6-05ed5c891812','','',NULL), -('3353','Door Control','Door','UNDEFINED','5c36f7ba-d33f-45cd-9a7f-1acba005a57c','','',NULL), -('3354','Cargo_Comm_125x3_Metal_Gold_a','Cargo','Cargo','3a3f1f3a-b89a-428e-9ad8-73b49c588098','','',NULL), -('3355','Flight Blade','FlightController','UNDEFINED','8b00b27b-32e2-446f-b6b4-4436f266bab5','','',NULL), -('3356','Aegis Gemini Missile Launcher','MissileLauncher','MissileRack','173f3798-f260-4629-a559-0acfbcf9d60a','','',NULL), -('3357','MISC_Hull_C_Thruster_VTOL_Front','ManneuverThruster','JointThruster','79635050-10df-4637-9533-ba8be044d5be','','',NULL), -('3358','ARGO_RAFT_CargoGrid_192','CargoGrid','UNDEFINED','90b012ac-f963-4023-92da-f4389a0fd497','','',NULL), -('3359','Ventra Gloves Imperial','Char_Clothing_Hands','UNDEFINED','bf71167b-debd-4252-96de-0c24ccdd6acd','','',NULL), -('3360','Geist Armor Legs Forest','Armor','Legs','ea4937fb-b502-41fd-83de-b967e99a6007','','',NULL), -('3361','rack_wood_1_highend_b_rod_shoe_6Ports','ShopDisplay','Default','b9934649-371f-4fe1-b120-5d58ae5d9719','','',NULL), -('3362','Fieldsbury Dark Bear Helmet Grape','Armor','Helmet','cd23a5c4-f027-4a49-baf4-40993a6b13ff','','',NULL), -('3363','Arrow Citizens for Prosperity Liberation Livery','Paints','UNDEFINED','7ceb996f-a110-48c4-90b9-6a93741f4cd4','','',NULL), -('3364','Seat','SeatAccess','UNDEFINED','638a02bd-1047-4fbb-ad9c-f9a4cb2c8c51','','',NULL), -('3365','Bo-Go (Langoustine and Lamb)','Food','Tin','a18d85c0-4dc6-439a-a5c9-5b62b8e1c022','','',NULL), -('3366','Access','SeatAccess','UNDEFINED','16170188-4882-4a2b-add1-925d540cbe05','','',NULL), -('3367','Anvil Hornet Mk II S2 Nose Turret','Turret','CanardTurret','8b896a16-2f1f-4c1a-9a91-cad86863004d','','',NULL), -('3368','Guerra Pants Daylight','Char_Clothing_Legs','UNDEFINED','4944bb64-99d0-42e1-b735-bc24948f23d7','','',NULL), -('3369','Titanium','Cargo','Cargo','90db1341-f302-43a0-b597-0986fa554585','','',NULL), -('3370','INTK_DRAK_Golem','FuelIntake','Fuel','785e25e4-8933-4176-9f3f-61c29129d22a','','',NULL), -('3371','Weapon_Rack_GRIN_STV_1Slot_Right','Usable','UNDEFINED','930572f8-5cdf-4b81-95fc-e3684ca00e51','','',NULL), -('3372','Venture Helmet Purple','Armor','Helmet','38438c64-646a-4555-8beb-8f82c437a81c','','',NULL), -('3373','Armor_Crate_CZ_Firerat_006','Usable','UNDEFINED','e0130be4-aa25-47c9-84e5-6cfadc86a31a','','',NULL), -('3374','Buccaneer Stormbringer Livery','Paints','UNDEFINED','3c68a192-6518-4c6b-959a-a247e987935f','','',NULL), -('3375','LoadingPlatformFrontGate','Door','UNDEFINED','323fe170-8a3d-4d27-9b0f-6ab46345ba04','','',NULL), -('3376','PIN','Shield','UNDEFINED','ffede9a8-3c50-4b9e-be0f-9d93e5a26f29','','',NULL), -('3377','Terrapin IceBreak Livery','Paints','UNDEFINED','53740116-8e1e-44eb-9e61-8b9f28bb35a5','','',NULL), -('3378','Zenith \"Golden Blossom\" Laser Sniper Rifle','Weapon','Medium','e6d3ccde-1a9d-4a10-965a-202982afc778','','',NULL), -('3379','Combat Readiness Uniform Trousers','Char_Clothing_Legs','UNDEFINED','8f4d11af-2fd3-4c66-a36a-041caa2db90c','','',NULL), -('3380','Carryable_1H_SQ_MissionItem_Delivery_SmallBox','Misc','Utility','d756b02a-4843-4425-9ec4-41400817e966','','',NULL), -('3381','Seat','Usable','UNDEFINED','9f4ad98e-50f2-450b-8a3d-0d463d481550','','',NULL), -('3382','DuraWork Pants Bayoux','Char_Clothing_Legs','UNDEFINED','fdad9109-5abe-4ca2-8491-27c92b5bb129','','',NULL), -('3383','Food_hotdog_01_bun_a','Food','Junk','7dc83e52-3c71-421c-8fa8-b0e51c6299a3','','',NULL), -('3384','CRUS_Starlifter_Door_Decal_Recreation','Decal','DoorPart','ba5d9a5e-7e43-4103-be5f-1a591a4104cb','','',NULL), -('3385','Ripper \"Sunblock\" SMG','Weapon','Medium','4c1892db-cc94-41f2-a513-0b7e1cba8f26','','',NULL), -('3386','Door_Ship_Sensor_Proximity_RN','Sensor','DoorPart','ea077b93-ff3b-4f23-b93f-cf28ceb2d70b','','',NULL), -('3387','Internal Tank','FuelTank','Fuel','abaac1d0-234e-4a5a-b3eb-6664604f025e','','',NULL), -('3388','F1S-Fireshot','Suit','ThrusterPack','d82e2c4a-f2f2-4c06-b577-e2842e2f3585','','',NULL), -('3389','AEGS_Javelin_Thruster_Main_01_Invulnerable','MainThruster','FixedThruster','0d6af72c-cd83-41ae-b017-a70bcf7581ea','','',NULL), -('3390','Seat','SeatAccess','UNDEFINED','5a234d74-5ffa-47eb-9fe3-d757a622662d','','',NULL), -('3391','Morozov-SH-S Helmet Iceflow','Armor','Helmet','d1648563-e1a3-4642-9f53-f8f2b263afda','','',NULL), -('3392','ANVL_Hornet_F7CM_Mk2_Thruster_Mav_1_Top','ManneuverThruster','JointThruster','f6f637a9-cb16-48f0-a24e-c9fd92047267','','',NULL), -('3393','Morozov-SH Helmet Redshift','Armor','Helmet','75a9f76a-0cb1-4a25-acda-263aad0deb5e','','',NULL), -('3394','INTK_FuelIntake_CRUS_Intrepid','FuelIntake','Fuel','f5752e45-8770-44ca-9587-ba58f823e069','','',NULL), -('3395','ANVL_Lightning_RADR_Display','Display','UNDEFINED','48651dee-12d8-41a3-a14b-84cce21dd5bf','','',NULL), -('3396','Seat','Usable','UNDEFINED','8cb87b08-4902-451f-9c0e-17dcde88bc47','','',NULL), -('3397','RSI_Perseus_SeatAccess_Turret_Top','SeatAccess','UNDEFINED','6f77da58-fe14-4d22-9d6d-c9eaef07ffbc','','',NULL), -('3398','LeMarque Pants Violet','Char_Clothing_Legs','UNDEFINED','4b6c615e-f196-476b-9639-580430587af0','','',NULL), -('3399','AEGS_Retaliator_Esc_Pod_Decal_05','Decal','DoorPart','681cbe0a-3d56-4690-a9c9-27b5570e7f49','','',NULL), -('3400','Beradom','Cargo','Cargo','6e11d75e-70c4-408a-9aff-eb2af5d9317e','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('3401','Door Control','ControlPanel','DoorPart','75ad72ca-6716-42af-9009-8056d147a310','','',NULL), -('3402','BEHR_LaserCannon_FiringMechanism_S2','WeaponAttachment','FiringMechanism','a8af051f-f2ca-457c-9276-bb0438ba8d5f','','',NULL), -('3403','Marshal Sleeveless Vest Horizon','Char_Clothing_Torso_1','UNDEFINED','5f9f69de-7e80-49e0-99e5-91d462bea6e0','','',NULL), -('3404','C54 \"Luminalia\" SMG','Weapon','Medium','1b652f9f-812b-4bb5-827a-aa96f41160ab','','',NULL), -('3405','Gadget_Cabinet_kegr_fire_extinguisher_01_nogeo_med_high','Usable','UNDEFINED','d5873764-99da-4acb-a3c4-b666e10108e6','','',NULL), -('3406','Ermer Family Farms Chocolate Ice Cream','Food','Junk','ff44929e-c067-4a2d-95cf-41809d61dde0','','',NULL), -('3407','Silverton Jacket Onyx','Char_Clothing_Torso_1','UNDEFINED','d48cdbef-41da-48e5-bd8b-4323216b6e2e','','',NULL), -('3408','Clempt Pants Blue','Char_Clothing_Legs','UNDEFINED','3127a95b-ab41-4048-a80a-2dd9fdf9edc2','','',NULL), -('3409','SCItemDisplayScreen_ScreenSize_W64_H36_H74_Transit','Display','Default','482b82ee-29c6-4d1d-b778-7f757a208b62','','',NULL), -('3410','Door','Door','UNDEFINED','79bdaef0-0b27-45c2-a499-519afa2896a2','','',NULL), -('3411','Seat','SeatAccess','UNDEFINED','32136dce-22e5-41cd-ad9c-f57da9882e20','','',NULL), -('3412','Door Control','Door','UNDEFINED','08476dae-4a57-4013-9bff-d9ab374a2654','','',NULL), -('3413','AEGS_Avenger_Thruster_Retro','ManneuverThruster','JointThruster','0b7228f7-7d92-4943-a898-8716946da280','','',NULL), -('3414','Corundum','Cargo','Cargo','c2f21883-b2db-4e47-8301-474554bc2871','','',NULL), -('3415','Door Control','Door','UNDEFINED','57b335f8-40b6-4621-b96c-7c8e49b5a6a8','','',NULL), -('3416','ORIG_100i_Thruster_Retro_Left','ManneuverThruster','JointThruster','61ed4215-bb03-47cc-979f-e1bc7951f204','','',NULL), -('3417','Seat','Usable','UNDEFINED','5c97679e-eaa6-418e-bdc8-d43048fceb1a','','',NULL), -('3418','Bed','Seat','UNDEFINED','c0e9ba8d-6ee6-4f12-b61b-d209f89e994c','','',NULL), -('3419','Bottle','Misc','UNDEFINED','096adc5a-50b6-4485-bb91-42b6ebe4f754','','',NULL), -('3420','INTK_RSI_Salvation','FuelIntake','Fuel','aa42257e-ae13-4024-8846-79242568a2b7','','',NULL), -('3421','Flight Blade','FlightController','UNDEFINED','3cb0e1b3-04fe-4083-a9fd-5b91447ddaa9','','',NULL), -('3422','Remote Turret','Turret','GunTurret','4aacb927-f8b9-4769-bff3-af16c25e9e4b','','',NULL), -('3423','Seat','Usable','UNDEFINED','b5a17f3d-4254-4855-afdf-7ddc29dad9c6','','',NULL), -('3424','Ouratite','Cargo','Cargo','2a7b989c-7111-4d1a-a932-169197adc02a','','',NULL), -('3425','Golem Rockfall Livery','Paints','UNDEFINED','986fa034-1259-43b9-9244-75c2509c8a0d','','',NULL), -('3426','ARGO_SRV_Thruster_Mav','ManneuverThruster','UNDEFINED','4e9f70e0-2b80-4c8f-b826-47854b896f40','','',NULL), -('3427','shelf_02_b_01x007x00375_1ports','ShopDisplay','Default','c582cf0a-ae35-47b9-99ab-d7257b29ac5c','','',NULL), -('3428','Blue Bilva','Misc','Harvestable','e07a1429-28df-43bf-be7f-959bca939ef1','','',NULL), -('3429','WarmingSpot_FireBarrel','Usable','UNDEFINED','38033c16-9047-46b4-a678-2d8ad56b8f00','','',NULL), -('3430','TrueDef-Pro Core Black/Silver/Yellow','Armor','Torso','4f74af9f-c629-4ee8-adcd-2baf969bb93d','','',NULL), -('3431','AEGS_Avenger_Titan_Thruster_Retro','ManneuverThruster','JointThruster','2b89db9d-c300-4245-be4c-7e7b4861232d','','',NULL), -('3432','Parallax \"Fun Military Skull\" Energy Assault Rifle','Weapon','Medium','c384575f-a3f8-4a1d-84a4-1fe467093004','','',NULL), -('3433','display_ship_components_02x0075x0275_a_s0_coolers','ShopDisplay','UNDEFINED','3875999c-0864-40c2-935e-7d28efb8538e','','',NULL), -('3434','Gold','Cargo','Cargo','afa3cd14-e1d1-4490-a21b-76bf4a2fa110','','',NULL), -('3435','Starlancer Atlantic Livery','Paints','UNDEFINED','30d459d6-7df9-43ef-9dbe-83df97d90bb0','','',NULL), -('3436','Leyland\'s Tortoise','Misc','Harvestable','0e19caaa-44b9-4708-a86e-e4301ecdd0f8','','',NULL), -('3437','Salvo Frag Pistol Magazine (8 cap)','WeaponAttachment','Magazine','aa9edf82-8a45-4088-b5de-14c646252f79','','',NULL), -('3438','P4-AR Rifle','Weapon','Medium','02d4cd2e-fa98-4086-aee1-6b2dfce8ea27','','',NULL), -('3439','Weapon Rack','Door','UNDEFINED','1a4f6556-5aac-4fed-b06d-a4f5a5caa0c8','','',NULL), -('3440','Davin Work Gloves Tan','Char_Clothing_Hands','UNDEFINED','1db2bfce-918b-4e66-b9d5-8819d2003128','','',NULL), -('3441','Seat','Usable','UNDEFINED','7aecfe25-f734-4f3f-ab64-0a24aebbba0d','','',NULL), -('3442','Flair_Hologram_ShatteredBlade_Banner_1_a','Usable','UNDEFINED','01302206-2ec9-4843-9914-ced444b13249','','',NULL), -('3443','m_teeth_vlk_adult','Char_Accessory_Head','Vanduul','d0471700-1d79-4cee-880c-133a86972c7e','','',NULL), -('3444','BroadSpec','Radar','MidRangeRadar','42fb9080-c177-466a-b843-d3f0e82e1633','','',NULL), -('3445','Murray Cup Racing Helmet','Armor','Helmet','74303c6a-d9f3-4249-996a-775aa918f3ad','','',NULL), -('3446','Carryable_1H_SQ_Datapad_Fluff_Orb_GenericGang_003','Misc','UNDEFINED','9b8d6f07-8eb2-4760-a62f-72b363169aec','','',NULL), -('3447','Bengal_BallisticCannon_FiringMechanism_S7','WeaponAttachment','FiringMechanism','443d5e57-bc52-49a0-872e-e81f664b7be1','','',NULL), -('3448','Seat','SeatAccess','UNDEFINED','9650cfaa-1af6-40e4-bce1-709e58931f03','','',NULL), -('3449','Borase','Cargo','Cargo','52e2772a-2e58-4055-b497-a134a63e5e89','','',NULL), -('3450','Seat','Usable','UNDEFINED','e170cdbc-298b-4677-a1d5-20f84a18a58c','','',NULL), -('3451','Venture Helmet Dark Red','Armor','Helmet','9ecd35a4-6866-4f3e-81a9-a6bbd52f08d7','','',NULL), -('3452','Artimex Legs Lodestone','Armor','Legs','559b8809-100e-4d9c-852d-ff40b9503939','','',NULL), -('3453','VCK-1 Blade','Weapon','Knife','dc9d5f24-013f-4925-b06d-4a4102956e69','','',NULL), -('3454','Fotia Seedpod','Cargo','Cargo','9faad8e9-3489-4a64-9bb3-1cc36259142b','','',NULL), -('3455','DRAK_Golem_Thruster_Front_Retro','ManneuverThruster','Retro','82708ed8-2128-4d35-bbcc-7b7cadbd1dbc','','',NULL), -('3456','Torite (Ore)','Cargo','Cargo','06263712-d90a-494d-a9ca-502d507826ab','','',NULL), -('3457','One Light Shirt Teal','Char_Clothing_Torso_0','UNDEFINED','d58002fa-7cb6-4af2-93d1-e9e1327eaef3','','',NULL), -('3458','Lynx Arms Bloodstorm','Armor','Arms','faf830ac-82ec-438e-ba21-7c85a292c788','','',NULL), -('3459','Dragonfly Slipstream Livery','Paints','UNDEFINED','0d6a92c6-f6b7-4b40-ae26-f4050dc2c651','','',NULL), -('3460','ARMR_AEGS_Vanguard_Hoplite','Armor','Medium','443252d0-295e-40b3-9502-b5ebe166d809','','',NULL), -('3461','facial_hair_010','Char_Head_Beard','UNDEFINED','184e3d83-9a08-4a6a-afd0-311836cc760e','','',NULL), -('3462','DRAK_Cutter_Roof_Scout','Misc','UNDEFINED','a2d770d8-10e0-4d6e-bf11-7a74bdc0a6d5','','',NULL), -('3463','Allpa Pants Brown','Char_Clothing_Legs','UNDEFINED','6d0a9de6-5b40-461c-8221-b4358594befc','','',NULL), -('3464','Railing_Straight_6m_Hurston_Lorville_Glass_A','Usable','UNDEFINED','9779a0cd-e7d4-472d-87e1-fb146a4ffbed','','',NULL), -('3465','DRAK_Cutter_Thruster_Mav_Fixed_Bottom','ManneuverThruster','FixedThruster','e6fbff12-2b58-473e-beb2-c51c53a72228','','',NULL), -('3466','tool_power_1_torch_a','Misc','UNDEFINED','bc275b6c-7b6f-4a50-8134-17fdc9f1a51a','','',NULL), -('3467','TrueDef-Pro Legs Yellow/Grey','Armor','Legs','af9650d0-2688-4118-992f-224d511c005b','','',NULL), -('3468','Drink_bottle_radegast_01_a','Drink','Bottle','5580c09e-37f0-4f06-a85b-b610c72b5b7b','','',NULL), -('3469','Scrap','Cargo','Cargo','f021d4d1-795d-48ff-b627-dd9b838d436b','','',NULL), -('3470','Quartz','Cargo','Cargo','c1a66029-7e8d-4209-8e9e-e54a0902ef08','','',NULL), -('3471','Carryable_2H_CY_toy_volleyball_1_b','Misc','UNDEFINED','cfffffeb-ebe2-466a-a185-1d919ec27ac5','','',NULL), -('3472','Vehicle_Screen_MFD_Holographic_Nox_R','Display','UNDEFINED','06734348-3908-4f81-9952-8d3964e73934','','',NULL), -('3473','Diluthermex','Cargo','Cargo','c6da94df-346e-4d03-a9dc-5e93251bab49','','',NULL), -('3474','Seat','Usable','UNDEFINED','76ec7e70-38d2-4432-b75f-b9aa9de79c94','','',NULL), -('3475','H_Dashboard_Projector_HUD_ORIG_600i','Display','UNDEFINED','4bddbe4b-021b-44b1-8ccb-2cc288be3515','','',NULL), -('3476','Ursa Aja Livery','Paints','UNDEFINED','1705a08b-b6d5-44ad-8265-8671d12fe3c0','','',NULL), -('3477','AEGS_Retaliator_Thruster_Main_Right','MainThruster','FixedThruster','398db9a9-8b8a-47d1-8503-2879fc4b3a1e','','',NULL), -('3478','ADP Legs Imperial','Armor','Legs','85318886-74c4-484f-80ad-7482d4cea1a1','','',NULL), -('3479','Door Control','ControlPanel','DoorPart','66c1caa0-3987-457a-9ed9-f81b76067a03','','',NULL), -('3480','Testudo Legs Clanguard','Armor','Legs','d9602c31-f133-44bc-a749-3e6bf77c5815','','',NULL), -('3481','Bed','Usable','UNDEFINED','af309cef-66a1-4447-a2d9-beb5fc1ce318','','',NULL), -('3482','Internal Tank','QuantumFuelTank','QuantumFuel','7ac2f7af-10bb-4cec-ab79-7965874b0c4f','','',NULL), -('3483','Maintenance_Workzone_MiddleDown_Inspect','Usable','UNDEFINED','753d38e7-2c85-48f2-b2f8-77288b063006','','',NULL), -('3484','Ares Star Fighter Flint Livery','Paints','UNDEFINED','d2a71f8e-c7bf-4db0-b87b-beb2867e8ed5','','',NULL), -('3485','RSI_Polaris_SCItem_SeatAccess_Turret_Side_Left','SeatAccess','UNDEFINED','a13d1dd6-dba7-47cd-9735-6f1effca3619','','',NULL), -('3486','HG-15 Jaeger (1.5x Holographic)','WeaponAttachment','IronSight','73e2eda1-b0a5-46ba-ab12-cb170b3d0b84','','',NULL), -('3487','Weapon_Rack_1_KSAR_Shotgun_Energy_01_AmmoOnly_001','Usable','UNDEFINED','6a31110a-55b9-49c3-a827-75e1e7c78f9a','','',NULL), -('3488','Tekaw Pants Tactical','Char_Clothing_Legs','UNDEFINED','f77ec3e0-bc04-4acc-9edc-dfb538101a7c','','',NULL), -('3489','m_human_mannequin_sandNomad_undersuit','ShopDisplay','UNDEFINED','8c1194d1-5b49-45b7-a33f-77bcc3a403b2','','',NULL), -('3490','Leyland\'s Tortoise','Misc','Harvestable','a0a4e1f8-8c68-486f-b828-5b241d02337a','','',NULL), -('3491','Tipper Hat Ellroy\'s','Char_Clothing_Hat','UNDEFINED','b94eb351-72a8-40a3-b6d6-f65c09e2c73f','','',NULL), -('3492','XNAA_SanTokYai_SeatAccess_Pilot','SeatAccess','UNDEFINED','3bf4f175-ceb3-4f40-9032-28d3145ddbbe','','',NULL), -('3493','Door Control','Door','UNDEFINED','6dde5d5a-5877-4a8b-a0b4-66170d3d4641','','',NULL), -('3494','MissileRack_Medium','Usable','UNDEFINED','8b5bfacc-fce2-4e63-9e80-3e72dde5048b','','',NULL), -('3495','Edgewear Pants White','Char_Clothing_Legs','UNDEFINED','81dbaf76-2972-4850-982a-d1966531795d','','',NULL), -('3496','display_box_plastic_4_weapon_opened_005x010x0025_rundown_a_1Port','ShopDisplay','UNDEFINED','7e391e5f-a693-4537-a4c6-de4b1604786a','','',NULL), -('3497','nonusable_col_tech_unit_1_a','Sensor','UNDEFINED','fba24e58-95d6-4a0d-92e4-0a1b98526933','','',NULL), -('3498','GAMA_Syulen_Headlight_Left','Misc','UNDEFINED','1f4d6c00-8825-4b54-a251-7d92ef3e4b6a','','',NULL), -('3499','Arclight \"Desert Shadow\" Pistol','Weapon','Small','258dda8b-e0f4-4313-8ab1-a25eeea974cf','','',NULL), -('3500','MRAI_Guardian_QI_Dashboard_Btn','Misc','UNDEFINED','df3af64e-d73e-4cf8-9035-8fd57a9cdbd8','','',NULL), -('3501','f_human_mannequin_legacy_outlaw_heavy','ShopDisplay','UNDEFINED','e6daf81d-8cb1-4cbb-8809-432eb118b41e','','',NULL), -('3502','Door Control','ControlPanel','DoorPart','82df0fee-d840-4c43-8194-32fd1101c965','','',NULL), -('3503','Door Control','Door','UNDEFINED','e6e9df57-3ec0-48cd-8373-e37911d22728','','',NULL), -('3504','SHIELDS','ShieldController','UNDEFINED','f65a9cd0-2627-4486-b5d7-163c77d6e8e4','','',NULL), -('3505','Seat','SeatAccess','UNDEFINED','8fd98dfd-2dc7-4cda-8b76-58287ce2e581','','',NULL), -('3506','Flight Blade','FlightController','UNDEFINED','50e32c1c-fae7-43e6-9a9f-3667f4ad3468','','',NULL), -('3507','CRUS_Spirit_Thruster_VTOL_Main','MainThruster','UNDEFINED','97154f7f-3203-4480-8039-9773b9d65ac4','','',NULL), -('3508','Hardline Hard Hat Black','Char_Clothing_Hat','UNDEFINED','196c4f6b-367e-4823-b346-9b54c3e38eab','','',NULL), -('3509','Kamar Jacket','Char_Clothing_Torso_1','UNDEFINED','16c9511b-cbcd-4ce5-887b-a0c5d2ec2777','','',NULL), -('3510','Seat','SeatAccess','UNDEFINED','a080203b-0628-4640-b08d-e06ef5027321','','',NULL), -('3511','Bed','Usable','UNDEFINED','eaef7bbb-6b8e-4065-aaf0-8e8bd1e7327e','','',NULL), -('3512','Table_2_Seat_High_Lowtech_1_a_Eckhart','Usable','UNDEFINED','e6597cea-a356-4c63-af97-aeaa8c32465b','','',NULL), -('3513','Cutlass T-Shirt','Char_Clothing_Torso_0','UNDEFINED','c054c520-2074-4278-a4fc-9399e8914dca','','',NULL), -('3514','Counter_Food_HotDrinkDispenser_CoffeeShop','Misc','UNDEFINED','68c895a2-d88b-4aac-9800-fb5e4341fea7','','',NULL), -('3515','DuraWork Pants','Char_Clothing_Legs','UNDEFINED','66e5bb04-35c5-454d-abeb-50efec6b9191','','',NULL), -('3516','CRUS_Starlifter_CargoGrid_Personal_Large','Cargo','UNDEFINED','1681575c-d425-45d3-a697-d301d1139370','','',NULL), -('3517','Medical Bed','Usable','UNDEFINED','a56f848f-e860-4fd0-b5f2-c4e32d83b545','','',NULL), -('3518','MISC_Fortune_Thruster_Main','MainThruster','FixedThruster','23002bfc-d1ad-4d48-83db-d3a0a9d70823','','',NULL), -('3519','Oza','Cargo','Cargo','403a018a-1803-4044-acfe-36833e8abcd7','','',NULL), -('3520','Monde Legs Delta Camo','Armor','Legs','61dab9b9-cabf-4dad-b5d5-c7306b056a56','','',NULL), -('3521','Merguez Sandwich','Food','Junk','a1ebd3de-aa8d-46f6-a3c1-6a66737a4435','','',NULL), -('3522','ORIG_300i_Thruster_Mav_Fixed_01_Bottom','ManneuverThruster','FixedThruster','b650ba4b-a058-4e88-9fa5-6b1e7d638f67','','',NULL), -('3523','Reynie QED','QuantumInterdictionGenerator','UNDEFINED','06cc3878-1310-4ada-9c7a-97feecb47fb4','','',NULL), -('3524','AEGS_Door_Decal_ControlRm','Decal','DoorPart','0c1bca68-bb7f-4ad9-89f9-3933fbc5010c','','',NULL), -('3525','DockingTube_Fuel_Ports_MRAI_Guardian','DockingCollar','UNDEFINED','c81af99c-3e24-49b2-9a9b-2cf9af40224a','','',NULL), -('3526','SHIELDS','ShieldController','UNDEFINED','7d518e47-6565-4a4d-975f-d62ac929cbc4','','',NULL), -('3527','Restored Pants Blue','Char_Clothing_Legs','UNDEFINED','9203bbf7-3b55-48c5-9a5b-e7e60bc0280e','','',NULL), -('3528','AEGS_Door_Decal_Airlock_03','Decal','DoorPart','6a0f4f93-9d79-4a1b-96da-f1c700a62795','','',NULL), -('3529','Access','SeatAccess','UNDEFINED','6f6e04ca-236d-47aa-9d97-9e1d427dcd74','','',NULL), -('3530','Colonialism_Outpost_RN_Large_Ore_Extractor','Sensor','UNDEFINED','82ec88bf-650d-405d-9f56-e4ee569275e3','','',NULL), -('3531','Carryable_2H_FL_crate_weapon_3_075x045x00375_c','Misc','UNDEFINED','d51a02b8-f1ce-4a66-ad75-9b057634af5b','','',NULL), -('3532','Door Control','ControlPanel','DoorPart','db0be2cc-a9ce-4e02-967d-e361d6b1275c','','',NULL), -('3533','TrueDef-Pro Legs Black/Silver','Armor','Legs','8e38d63c-a639-4976-abe6-0dc2b260ad06','','',NULL), -('3534','SHIELDS','ShieldController','UNDEFINED','09889d9b-b69a-4865-b674-868a32377129','','',NULL), -('3535','ESPR_BallisticCannon_PowerArray_S1','WeaponAttachment','PowerArray','fe5d8493-efe6-4b99-a196-bbf41195dd19','','',NULL), -('3536','KRON_LaserCannon_Barrel_S3','WeaponAttachment','Barrel','9a0f26d5-f4c5-4c69-8b21-44334469a481','','',NULL), -('3537','Clempt Pants Sienna','Char_Clothing_Legs','UNDEFINED','c8fc1bff-f6ae-4758-b7d1-361334e9e1c1','','',NULL), -('3538','Government Cartography Agency Medal (Worn)','Misc','Trophy','0336cacb-2ff5-41a8-8ff7-511c2f35971e','','',NULL), -('3539','Arden-SL Helmet Red Alert','Armor','Helmet','b20e69a0-5fe6-4d85-8ff7-2a2cb3b3efa9','','',NULL), -('3540','Weapon_Rack_1_GMNI_LMG_AmmoOnly_001','Usable','UNDEFINED','d51ac03f-770e-467b-af0d-f4b41516936f','','',NULL), -('3541','Internal Tank','QuantumFuelTank','QuantumFuel','a3121e6c-dd70-4b4a-b158-935cf3d8fa9a','','',NULL), -('3542','AEGS_Vanguard_Harbinger_Thruster_Main_02','MainThruster','FixedThruster','05a58687-abf0-44a9-8e7a-3247d95fb86d','','',NULL), -('3543','Lillo Pants Dark Red','Char_Clothing_Legs','UNDEFINED','d87d68f4-d74a-4f2b-9d0e-185c8bc0f19f','','',NULL), -('3544','AEGS_Javelin_SeatAccess_Pilot_Blocked','SeatAccess','UNDEFINED','c0fe2add-d381-4770-b709-36f5901a2607','','',NULL), -('3545','Inquisitor Arms Green','Armor','Arms','ff0ae2cc-1f3b-472f-a2d7-ff0df50eae74','','',NULL), -('3546','Balor HCH Helmet Sienna','Armor','Helmet','7431edb4-b0f1-4e2e-a42c-6a1fc05477a5','','',NULL), -('3547','Laranite','Cargo','Cargo','1c095e44-208a-4924-aa68-5e9de3c6c0b0','','',NULL), -('3548','fruit_alien_6_a','Misc','UNDEFINED','73a3ff52-70cc-4dde-897f-44e5f4e5619f','','',NULL), -('3549','LowTechAirlockTerminalStatusScreen','StatusScreen','AirlockPart','e0835ef7-35c8-45c5-8bab-bd240456bb55','','',NULL), -('3550','DRAK_Buccaneer_Thruster_Main','MainThruster','FixedThruster','38400533-b609-4dd1-8f7d-99646f666b3e','','',NULL), -('3551','stand_shop_small_PowerPlant','ShopDisplay','UNDEFINED','b5332f7d-33f9-44d3-9e19-6f9ae5e08862','','',NULL), -('3552','Curser T-Shirt','Char_Clothing_Torso_0','UNDEFINED','223fb006-5deb-4350-9de8-43f39e23c9a6','','',NULL), -('3553','fruit_alien_4_a','Misc','UNDEFINED','cc1b801e-0421-4e5c-b593-d577d262fe9a','','',NULL), -('3554','TrueDef-Pro Arms Black/Pink/Purple','Armor','Arms','c9916420-1610-447f-8c6a-03d51f094408','','',NULL), -('3555','fruit_alien_5_a','Misc','UNDEFINED','4ef93eef-6875-49ed-bc83-1b04d9aa2f04','','',NULL), -('3556','fruit_alien_2_a','Misc','UNDEFINED','b7c6f7b5-5e0d-4056-b9bb-2746b9904f0e','','',NULL), -('3557','fruit_alien_3_a','Misc','UNDEFINED','827c8fc6-dff5-4794-b6c9-514b8154b758','','',NULL), -('3558','ORC-mkX Legs (XenoThreat)','Armor','Legs','29b8275f-edfc-45d0-8802-0580d1de3872','','',NULL), -('3559','Armory_WorkBench','AIModule','UNDEFINED','c4277145-6b1e-4ea4-b3d5-30255cb4db04','','',NULL), -('3560','display_guns_02x01x01_2Ports','ShopDisplay','UNDEFINED','b7f6b8fb-d466-4815-b060-856ff1a5903f','','',NULL), -('3561','ShipSelectorDisplay_Outposts','Display','UNDEFINED','4ae5a636-ab5a-427d-9e74-16c72e881b69','','',NULL), -('3562','DustUp Arms Scorched','Armor','Arms','c84c935d-a85f-476a-9ea7-d72b0cf8d604','','',NULL), -('3563','LowTechAirlockExteriorStatusSign','StatusScreen','AirlockPart','dee6dcab-af6a-4466-a9b0-05accd8da52d','','',NULL), -('3564','Savrilium','Cargo','Cargo','812ee08c-5df1-40e2-a0fa-31cc9a42a755','','',NULL), -('3565','bautista_outfit_01','Char_Clothing_Torso_1','Male','99089462-5f46-4d56-9da1-c307e9fc51ec','','',NULL), -('3566','Morningstar Helmet Seagreen','Armor','Helmet','f68200bd-c850-4d9d-b9fc-ef31ba272597','','',NULL), -('3567','S71 \"Justified\" Rifle','Weapon','Medium','9e2aa597-8e3a-472e-926e-b1ba6acf32c5','','',NULL), -('3568','CBH-3 Helmet Cry-Astro Edition','Armor','Helmet','df7d2881-7962-4ebd-b68e-e23e57684a11','','',NULL), -('3569','Aegis Gladius - Noise Launcher','WeaponDefensive','CountermeasureLauncher','3d7266a3-8ad9-4392-ae6d-1d4bb2c11b60','','',NULL), -('3570','shelf_shoe_3_highend_a','ShopDisplay','Default','3d945bf4-9504-4971-b26f-4b388c638fef','','',NULL), -('3571','Agricium (Ore)','Cargo','Cargo','d362827b-cf4a-498e-ae22-5ea3f02eff1a','','',NULL), -('3572','Seat','Usable','UNDEFINED','9ffb09a1-84e1-4b47-bb5e-285e39d1a959','','',NULL), -('3573','Oza','Misc','Harvestable','64269b5a-f8c7-4307-8cfa-e5db32e156ee','','',NULL), -('3574','Ares Star Fighter Scrubland Camo Livery','Paints','UNDEFINED','a69882d3-021e-4dfe-90a9-f2297efd9737','','',NULL), -('3575','Aslarite','Cargo','Cargo','dbfad77e-814a-4617-8f83-ff4bc828e63b','','',NULL), -('3576','Clempt Pants Twilight','Char_Clothing_Legs','UNDEFINED','e77cb123-af48-45f2-8b0b-64ec3e867a2d','','',NULL), -('3577','Herald Stormbringer Livery','Paints','UNDEFINED','d5f35092-e5fe-40fe-b080-03cdc38e6d5b','','',NULL), -('3578','Seat','Usable','UNDEFINED','8d4f58f8-ea15-4390-889a-fd3d810e6e5f','','',NULL), -('3579','Virus Cultures','Cargo','Cargo','0abbd0a3-9d53-44c9-9542-518ec4d3c212','','',NULL), -('3580','Artimex Arms Lodestone','Armor','Arms','be146639-a34c-4280-89db-36e8a4d9f4da','','',NULL), -('3581','SHIELDS','ShieldController','UNDEFINED','e742b290-9c3d-45b2-9e12-af11a96cda41','','',NULL), -('3582','display_3guns_9scopes_04x01x01','ShopDisplay','UNDEFINED','0e49f320-e0cc-4c55-8d23-bb524b7c303c','','',NULL), -('3583','Construction Pieces','Cargo','Cargo','98a1a5d8-7e75-4a6c-969d-ae2f886caa89','','',NULL), -('3584','CNOU_Mustang_Thruster_Mav_Fixed_01_Down','ManneuverThruster','FixedThruster','7faaa7ac-4659-434b-89b9-3b83d14d0f2a','','',NULL), -('3585','Lunes (Spiral Fruit)','Cargo','Cargo','dde7ddf8-e8c7-4c77-aeb0-40c0780cfb0c','','',NULL), -('3586','Carryable_1H_CY_bottle_bar_14_mixer_c','Misc','UNDEFINED','3bc61a73-9cc3-463c-a249-67a267390275','','',NULL), -('3587','Carryable_2H_FL_MissionItem_Organ_Harvesting_a','Misc','UNDEFINED','b65d0e61-ff41-4ea5-9916-e0c6a86509c7','','',NULL), -('3588','Party Favors','Cargo','Cargo','55f4d0a1-95ef-45ca-a148-638143f9a3c6','','',NULL), -('3589','Defiance Helmet Sunchaser','Armor','Helmet','fe8b684e-e215-444c-89eb-91414a2604c0','','',NULL), -('3590','Morozov-CH Backpack Pyrotechnic','Armor','Backpack','7db071b7-1285-4cdf-ad28-13adc6e2192e','','',NULL), -('3591','MacFlex Legs Grey','Armor','Legs','bc7fbd95-c07c-42b0-ad49-8d8a8fd2382d','','',NULL), -('3592','Inquisitor Legs Black Steel','Armor','Legs','db1d1700-8ec0-43cf-9cfb-8bb68e191647','','',NULL), -('3593','Flair_Dashboard_Bobblehead_01','Flair_Cockpit','Flair_Static','88b20684-0888-444f-a805-39113fb7f6a4','','',NULL), -('3594','GPI_Relay_1slot_001_CZ_Degradation','Relay','UNDEFINED','a4938628-ccc1-4b8d-bad9-990dd4bff4c8','','',NULL), -('3595','Captor QD','QuantumInterdictionGenerator','UNDEFINED','08f46049-5b2a-4b43-9055-16a6d090a41f','','',NULL), -('3596','Beryl','Cargo','Cargo','fa917cef-bd60-4181-884d-8dddbd45226e','','',NULL), -('3597','Gale Head Cover Yellow','Char_Clothing_Hat','UNDEFINED','6569b675-955e-40ed-b431-371b1d3b3e62','','',NULL), -('3598','Arden-SL Legs Coramor Edition \"Kismet\"','Armor','Legs','1711a48d-0c96-46e1-bfa7-17d1d55251f6','','',NULL), -('3599','AEGS_Hammerhead_Side_Turret_Lighting','Room','UNDEFINED','be2fb35b-80ea-4baa-934c-fde6982ed111','','',NULL), -('3600','Bed','SeatAccess','UNDEFINED','d5e59252-7dc4-4bcf-a97f-c3664003b68d','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('3601','Methane','Cargo','Cargo','c312ea03-698d-4b43-b57d-0de92fbf50de','','',NULL), -('3602','ORC-mkV Arms Imperial','Armor','Arms','4bc3c1c6-4a23-41d1-a4c0-9f40786d8631','','',NULL), -('3603','AirlockTerminalTemplate','ControlPanel','AirlockPart','f81b3f70-fc7f-4ab7-8fc0-e340ba8cabc6','','',NULL), -('3604','RSI_Aurora_GS_CL_Thruster_Mav_Joint','ManneuverThruster','JointThruster','b5c23001-879f-44b3-a360-c91d265c0ffb','','',NULL), -('3605','Vanduul Noise Launcher','WeaponDefensive','CountermeasureLauncher','3787ba3c-d50d-48ec-8a35-b2ea620dc1d1','','',NULL), -('3606','AEGS_Idris_SCItem_Dashboard_ATC_Right','SeatDashboard','UNDEFINED','32bec067-b696-4303-a98b-a8bd804cad05','','',NULL), -('3607','Scaleweave Undersuit Whetstone','Armor','Undersuit','b2b59bdb-c646-4f39-a17b-fd596e12c038','','',NULL), -('3608','facial_hair_037','Char_Head_Beard','UNDEFINED','c3e3799d-916d-4294-9596-5514f82ebf3a','','',NULL), -('3609','Door Control','ControlPanel','DoorPart','d06527ec-58c1-4160-bf71-a5964531dc48','','',NULL), -('3610','Radar_Display_XNAA_Scout','Display','UNDEFINED','5ace978d-750d-47d4-9eb7-054bebd3b9a5','','',NULL), -('3611','DockingTube_Fuel_Ports_ORIG_135c','DockingCollar','UNDEFINED','e57097f9-9d11-4e3f-963c-ed6fe062cbd8','','',NULL), -('3612','K7 Pants Purple','Char_Clothing_Legs','UNDEFINED','055c3ff0-e24c-4d87-ab0d-274440b74be7','','',NULL), -('3613','Venture Core Imperial','Armor','Torso','81008939-1c72-4f18-a5fb-4cd30416f4c2','','',NULL), -('3614','ORIG_600i_Seat_Expl_Module_Right','Seat','UNDEFINED','23d63543-44df-4cba-8314-610ca9083416','','',NULL), -('3615','Gladius Standard Flight Blade','FlightController','UNDEFINED','e77f778b-4931-4f99-b41c-097e17c065e8','','',NULL), -('3616','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','272328f0-326f-4461-ad55-cb6ddb490795','','',NULL), -('3617','display_ship_components_03x0075x0275_a_coolers','ShopDisplay','UNDEFINED','ae4d67dc-9f3c-41ba-a94d-5bd72f6efb75','','',NULL), -('3618','MISC_Razor_Dashboard_EX','SeatDashboard','UNDEFINED','f47637e6-41c3-4f5c-940d-c3737494b4eb','','',NULL), -('3619','Door','Door','UNDEFINED','597db3b5-fb10-446a-a279-e2f3b7454c7e','','',NULL), -('3620','IonWave','PowerPlant','Power','f27e87f6-5075-470f-83f3-358424a14e7c','','',NULL), -('3621','SHIELDS','ShieldController','UNDEFINED','b9a162dd-0537-46ae-a9f2-715b8b11114e','','',NULL), -('3622','Treat Injuries','FPS_Consumable','MedPack','3f945a3e-8e82-43d3-b68d-8c3d47945685','','',NULL), -('3623','Prim Shoes Violet','Char_Clothing_Feet','UNDEFINED','d23be257-e6f2-41bb-a296-16c213bf8bc5','','',NULL), -('3624','fruit_plant_3_b_6003','Misc','UNDEFINED','527b67b2-b093-4965-bb64-bf6010e33243','','',NULL), -('3625','fruit_plant_3_b_5003','Misc','UNDEFINED','24f83365-b980-422f-8371-994e227ea410','','',NULL), -('3626','fruit_plant_3_b_4003','Misc','UNDEFINED','c9b50e59-db31-4160-bc01-77e7c53afae3','','',NULL), -('3627','fruit_plant_3_b_3003','Misc','UNDEFINED','0976d8dc-593e-4b81-98f2-4e9daeda59b7','','',NULL), -('3628','fruit_plant_3_b_2003','Misc','UNDEFINED','fcab3639-8579-4808-8d72-3adf08159ddb','','',NULL), -('3629','Redfin Energy Modulators','Cargo','Cargo','aee33cdd-d218-4575-8010-8a32724c9851','','',NULL), -('3630','Internal Tank','QuantumFuelTank','QuantumFuel','1c0c3456-0af0-450d-9d49-d030cc7dc602','','',NULL), -('3631','ARGO_MPUV_Thruster_Aux_Side_Rear','ManneuverThruster','FixedThruster','cd725a73-e024-450a-8133-e2849e6aea56','','',NULL), -('3632','ARGO_MOTH_CargoGrid','CargoGrid','UNDEFINED','82fdf75c-3f55-4565-a845-512d0347b41e','','',NULL), -('3633','Internal Tank','FuelTank','Fuel','36831d5c-7d1c-4e18-bf58-3d2b2b582cf8','','',NULL), -('3634','Carryable_1H_kitchenware_spoon_b','Misc','UNDEFINED','7a301f52-3313-4d9d-93c0-3cf57253f63c','','',NULL), -('3635','Hornet F7A Ship Armor','Armor','Medium','1f3e5067-eb3f-43ee-b3b3-8d7ed80a84b2','','',NULL), -('3636','ARMR_CRUS_Starlifter','Armor','Medium','1ba52cfb-e162-48a5-bf90-a8b28b169507','','',NULL), -('3637','Debnam Gloves Dark Green','Char_Clothing_Hands','UNDEFINED','b1a5da75-67bb-417f-85bd-7f97102afa68','','',NULL), -('3638','SecurityTerminal_ANVL_Valkyrie','ControlPanel','DoorPart','3572b11a-1fa3-4937-ac8a-44091719084c','','',NULL), -('3639','AEGS_Idris_SCItem_Dashboard_Brig','SeatDashboard','UNDEFINED','678cbb16-2340-42b4-b5d4-aa3d9bb9b2ab','','',NULL), -('3640','Fury Black Star Livery','Paints','UNDEFINED','5fc8bdb8-c5d3-4d3e-a7db-e00f518d92a6','','',NULL), -('3641','Tablet_Small','Weapon','Gadget','f8f38c51-c248-4cf7-aaa6-eb1a539019a1','','',NULL), -('3642','display_guns_02x01x01_3Ports','ShopDisplay','UNDEFINED','25b50df5-b5cf-441b-8ab4-373175c4b27e','','',NULL), -('3643','ANVL_Arrow_RADR_Display','Display','UNDEFINED','b997d0ab-4738-4eab-b243-90f4ee6f52f6','','',NULL), -('3644','Pulse \"Greycat\" Laser Pistol','Weapon','Small','0fc8d058-2c9f-41c8-b0f3-5dc62718dea3','','',NULL), -('3645','ControlPanel_LightSwitch_Generic','ControlPanel','DoorPart','406d1253-568b-4cd6-9708-b459903a23d8','','',NULL), -('3646','DoorProximitySensor_8x3x3_Directional_Proximity','Sensor','DoorPart','a3f2140f-2757-4f99-a0c0-3e29e6b6ccf1','','',NULL), -('3647','Lillo Pants Tan','Char_Clothing_Legs','UNDEFINED','a8309e5f-c7c3-401d-a5bd-5b2a0bb94da1','','',NULL), -('3648','Weapon_Rack_1_NONE_SMG_AmmoOnly_001','Usable','UNDEFINED','15eed807-7c20-4ea2-89ad-d2c2703a20e9','','',NULL), -('3649','Detatrine','Cargo','Cargo','1e18d292-a2bc-4df3-9680-c64c7afc272b','','',NULL), -('3650','Flight Blade','FlightController','UNDEFINED','ffb72337-3b60-4a4e-8631-07dd45d529d7','','',NULL), -('3651','Kareah_Hostility_DisplayScreen_01','Display','UNDEFINED','446a77f3-36c0-4841-9e8f-dd1bd0f96e81','','',NULL), -('3652','Door Control','Door','UNDEFINED','f990f2af-3775-429a-a3e9-07b3c3e4a9c7','','',NULL), -('3653','ORIG_890Jump_LandingGearSystem','LandingSystem','UNDEFINED','f5fc67b4-8da2-40ad-8c68-d4685f0eebbb','','',NULL), -('3654','Internal Tank','FuelTank','Fuel','1eeccfa3-7df6-4519-9de1-4d6cc466f8fd','','',NULL), -('3655','un_box_plastic_1_berries_c','Misc','UNDEFINED','94e12bab-6571-4980-b2d6-2db41c1611fe','','',NULL), -('3656','Tungsten','Cargo','Cargo','deca4829-f365-4781-9a72-4657c7608848','','',NULL), -('3657','Vivant Shoes','Char_Clothing_Feet','UNDEFINED','c79300f5-c4e3-4c0c-b468-448c43e19e1d','','',NULL), -('3658','Seat','SeatAccess','UNDEFINED','e5800049-1c26-411c-9f91-6802a67ba58f','','',NULL), -('3659','Mustang Delta Livery','Paints','UNDEFINED','8b2e5ff0-ee59-41c6-b4dd-5606bc7cce3c','','',NULL), -('3660','Access','SeatAccess','UNDEFINED','2b5ae9ee-a264-47b2-8cda-17f1daa39fed','','',NULL), -('3661','F55 \"Starchaser\" LMG','Weapon','Medium','9e05507f-e472-47cb-9b08-6fd70de9d178','','',NULL), -('3662','Goliath','QuantumDrive','UNDEFINED','fc3fadaa-cd29-4ac5-a2f5-51d4988d3def','','',NULL), -('3663','ORIG_100i_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','314da384-d14e-4820-979d-3a15d597e12d','','',NULL), -('3664','ORC-mkV Arms Hurston Edition','Armor','Arms','c158930e-d8e5-469c-9d5e-a509f4002158','','',NULL), -('3665','Mixed Mining','Cargo','Cargo','d67d7b9b-bce6-4cfc-bf2b-3289cf2f7844','','',NULL), -('3666','Gadget_Cabinet_kegr_fire_extinguisher_01_Nozzle_med','Usable','UNDEFINED','e341ae56-5002-43be-b84f-d1e43d0f5c8b','','',NULL), -('3667','AEGS_Idris_CargoGrid_AdditionalStorage','CargoGrid','UNDEFINED','d946868b-aa6f-45ba-94a1-08003f25424b','','',NULL), -('3668','Degnous Root','Cargo','Cargo','99fa4805-42bd-44f6-a890-1eec22d31e99','','',NULL), -('3669','Inquisitor Arms Twilight','Armor','Arms','003c7a4d-1874-42ef-ba5d-11c7dd89e423','','',NULL), -('3670','Internal Tank','FuelTank','Fuel','ac3687d7-7092-4c75-b73c-738cb82afe4c','','',NULL), -('3671','Ravager-212 Twin Shotgun Magazine (16 cap)','WeaponAttachment','Magazine','3326f182-d089-45d5-b090-f438d6f65f17','','',NULL), -('3672','Artimex Arms Wildwood','Armor','Arms','922bb8a8-e61a-4ff1-93c8-557ece576d69','','',NULL), -('3673','Flight Blade','FlightController','UNDEFINED','dcbcceb3-ae74-4104-88ae-7d21497939ef','','',NULL), -('3674','Carryable_2H_FL_05x05x05_MissionItem_pizzabox_1_b','Misc','UNDEFINED','e3ce82a5-c7d2-4a7c-8627-8585a0869a71','','',NULL), -('3675','ORC-mkV Legs Dark Green','Armor','Legs','8e324694-2487-4ac2-83c0-63adea162d6b','','',NULL), -('3676','MRAI_Pulse_Dashboard_Pilot','SeatDashboard','UNDEFINED','d8b883e9-e5a0-44a8-820a-c2367a6f3e30','','',NULL), -('3677','Lynx Legs Abyss','Armor','Legs','54d19c1c-d538-4111-bcb5-ee117b8c4c16','','',NULL), -('3678','Tundra Quasi Grazer Egg','Misc','Harvestable','9bb33649-430c-45e5-b210-958e33af2c89','','',NULL), -('3679','MSD-616 Missile Rack','MissileLauncher','MissileRack','7c5c89d7-0999-43e4-b7e3-317cdcf800a9','','',NULL), -('3680','Door','Door','UNDEFINED','ac17dc73-0262-4ebc-9631-2746a0eacbab','','',NULL), -('3681','Weapon_Rack_1_APAR_Special_01_Common_001','Usable','UNDEFINED','fd0627ba-da57-4881-b6e1-5a1a4dcfa9f4','','',NULL), -('3682','Morozov-SH Legs Smokescreen','Armor','Legs','b524d212-81c5-4560-8e8b-459566c8ec34','','',NULL), -('3683','Monde Legs Daimyo','Armor','Legs','59e43548-46ad-434e-b2ff-f9ac9b4019c2','','',NULL), -('3684','Lavelle Pants (Modified)','Char_Clothing_Legs','UNDEFINED','a459ce52-9acd-42cc-8679-26463fc44bf2','','',NULL), -('3685','Geist Armor Helmet ASD Edition','Armor','Helmet','92eac214-942c-4b1c-8f2e-2a1288a9992e','','',NULL), -('3686','Tona Shoes Olive','Char_Clothing_Feet','UNDEFINED','5fb0b2f2-e8c2-4d01-8ad8-f8663f23bf37','','',NULL), -('3687','Monde Core HighSec','Armor','Torso','3df0ec40-8f02-4db3-b3c2-dcc03ce498f7','','',NULL), -('3688','Seat','Usable','UNDEFINED','5fa45b50-b934-4e88-b820-1fd93b7cf469','','',NULL), -('3689','Door Control','Door','UNDEFINED','bfb98d31-1f5f-4d88-9d3d-3e367bcb17ce','','',NULL), -('3690','Renegade Vest Cargo ','Char_Clothing_Torso_1','UNDEFINED','316dc5d5-e3a6-4659-83e1-42983b3e1dd9','','',NULL), -('3691','Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','edb94452-733a-4d6c-a3ec-12c1af0372b9','','',NULL), -('3692','Aurora Mk I microTech Livery','Paints','UNDEFINED','7397b797-5e4c-4423-acfe-ef14faebc22b','','',NULL), -('3693','hanger_clamp_torso1_01Port','ShopDisplay','Default','2ff62b3e-df5a-4fb6-9aa7-eef52f8edf17','','',NULL), -('3694','GLSN_Shiv_Thruster_Retro','MainThruster','FixedThruster','d18d435b-9a00-4fb4-b185-8cae5ec7f923','','',NULL), -('3695','DockingTube_Fuel_Ports_RSI_Aurora_LN','DockingCollar','UNDEFINED','3b283e5f-b6ba-46b5-a687-9d35084455c5','','',NULL), -('3696','Manned Turret','TurretBase','MannedTurret','d73e604b-72ec-4310-a21d-83beae6f65df','','',NULL), -('3697','StorageCage','Cargo','UNDEFINED','cc30aeb1-21c8-4b85-848a-2e82e51decf2','','',NULL), -('3698','wall_display_cabinet_large_12x04x04_a','ShopDisplay','Default','edb5ed76-c0ef-49c4-9f33-f269b6e21b11','','',NULL), -('3699','Seat','Usable','UNDEFINED','e57685bc-646a-46a5-b7c9-0a63e5d459ce','','',NULL), -('3700','Door Control','Door','UNDEFINED','ea365590-18ef-4016-b849-32784e9f3cdb','','',NULL), -('3701','ORC-mkX Core (XenoThreat v2)','Armor','Torso','18b9dd5d-b093-4d1d-adcc-9ba048bfbdc6','','',NULL), -('3702','Carryable_1H_SQ_datapad_tablet_2_a','Misc','UNDEFINED','77eb9d24-2858-48d4-a04c-20b9d6b5137d','','',NULL), -('3703','E\'tam','Cargo','Cargo','a49f6b35-5522-44ff-aff7-07ef0959bcf1','','',NULL), -('3704','Vehicle_Screen_MFD_Holographic_MISC_Fortune_MR','Display','UNDEFINED','9c822235-e156-49d0-a62d-feac025937d8','','',NULL), -('3705','Arcus Gloves Teal','Char_Clothing_Hands','UNDEFINED','2985a5c0-9908-41d3-b125-108b95b9fa32','','',NULL), -('3706','sc_marine_bdu_boots_01_01_01','Char_Clothing_Feet','UNDEFINED','76eff75d-bd5b-46cd-a2ab-3690583017f0','','',NULL), -('3707','Counter_Food_HotDrinkDispenser','Misc','UNDEFINED','b9ae9581-2cf6-4f9e-822b-4c5d68aa2a6f','','',NULL), -('3708','RSI_Constellation_Rear_DockingTube','DockingCollar','UNDEFINED','decf0946-b073-41b6-aff6-e076cedfd3f1','','',NULL), -('3709','Lastaprene','Cargo','Cargo','7b218719-e278-4174-902e-4e004391899d','','',NULL), -('3710','SLAM','Cargo','Cargo','90d0ecbd-7163-4c99-a981-9e6ed8c555de','','',NULL), -('3711','Internal Tank','QuantumFuelTank','QuantumFuel','460823e2-8420-3f89-03e6-6948a4ddf9ba','','',NULL), -('3712','ARGO_RAFT_Thruster_Mav_Top','ManneuverThruster','FixedThruster','3ab659b6-a7b3-42ca-ad42-00e179c5ed6a','','',NULL), -('3713','MRAI_Guardian_MX_Ground_Refueling_Port','Door','UNDEFINED','46dd1447-9287-24bd-f996-19aa8490f58d','','',NULL), -('3714','Door Control','Door','UNDEFINED','54316577-908d-4ca6-b24d-ff42fd2e2143','','',NULL), -('3715','Seat','Usable','UNDEFINED','7bcd14de-bc7e-4692-8512-8f96dc1737a1','','',NULL), -('3716','Door Control','Door','UNDEFINED','6aa7802b-d460-4de0-84e9-1bbd4cfe6e26','','',NULL), -('3717','Atzkav \"Mirage\" Sniper Rifle','Weapon','Medium','e5d03198-b83c-4da2-b51e-f7d5337be50e','','',NULL), -('3718','DoorProximitySensor_2_5x2x2','Sensor','DoorPart','7b6ec412-b99c-4421-be37-119d367dd34f','','',NULL), -('3719','ORIG_400i_Thruster_Mav_Top','ManneuverThruster','FlexThruster','3277c3ec-85ee-40cf-9879-1365bbce5442','','',NULL), -('3720','HLX99 Hyperprocessors','Cargo','Cargo','4921130c-5a2a-471d-8ddf-dd920f45c375','','',NULL), -('3721','Cassidy Shirt Finch','Char_Clothing_Torso_0','UNDEFINED','a1b7348b-5208-448f-9f25-91a87a5ae0ac','','',NULL), -('3722','Remote Turret','Turret','GunTurret','317cca98-d0f6-4b1e-b43f-de72e3f78c93','','',NULL), -('3723','Varhey Boots Fogforest','Char_Clothing_Feet','UNDEFINED','b75c61f6-4069-44b0-ad98-4af84daf930a','','',NULL), -('3724','Devastator \"Pathfinder\" Shotgun','Weapon','Medium','1a929345-8ecb-4489-af43-152378e5fd06','','',NULL), -('3725','Datapad','Misc','UNDEFINED','08478ec0-6222-40fd-882c-5f5aefded4c6','','',NULL), -('3726','Dopple','Cargo','Cargo','d8d81989-a7e7-4ff1-80c7-39728668f21a','','',NULL), -('3727','Galen Surgical Scrub Top','Char_Clothing_Torso_1','UNDEFINED','bb51768f-5a1f-4164-bfae-04d4e3ad60d1','','',NULL), -('3728','Origin Jumpworks T-Shirt','Char_Clothing_Torso_0','UNDEFINED','2a88c528-7062-4abe-a240-089a0cf08de8','','',NULL), -('3729','MISC_Hull_C_SCItem_Copilot_Seat','Seat','UNDEFINED','a77065ba-043d-4e5a-bac4-54d2a71f393c','','',NULL), -('3730','MacFlex Arms Violet','Armor','Arms','b4007f8d-ba9f-4a04-8287-79adcffc47f7','','',NULL), -('3731','Day One Shirt Sienna','Char_Clothing_Torso_0','UNDEFINED','0d3f2b8d-04c9-455c-a902-8abdf4101ef0','','',NULL), -('3732','Bexalite (Raw)','Cargo','Cargo','1acfc253-e1d5-48f0-9930-ff8534155079','','',NULL), -('3733','Aril Helmet Red Alert','Armor','Helmet','7422ea55-36f5-49a5-bb0b-69c6756f6602','','',NULL), -('3734','simpod_1_military_a','Usable','UNDEFINED','be0b3924-35b2-4327-bb26-14b6b7a402cd','','',NULL), -('3735','Deadhead Helmet Bruiser','Armor','Helmet','94318b9b-f15f-440f-831f-e34e235469e6','','',NULL), -('3736','Elespo','Cargo','Cargo','c46d8d27-0bb6-46c7-91cd-bfa66da5b202','','',NULL), -('3737','Palatino Backpack Shadow Gild','Armor','Backpack','2146dce8-da07-4c37-adda-4ea98b5ab1d0','','',NULL), -('3738','MISC_Razor_Thruster_Retro','ManneuverThruster','FixedThruster','b6886e23-9b36-4f4e-a439-aef3e0c55f01','','',NULL), -('3739','rod_torso0_02x01x04_05Ports','ShopDisplay','Default','c1bcfdfb-be0f-4920-a3c2-e11f9d2e29e0','','',NULL), -('3740','Francis the Party Animal Plushie','Misc','Personal','dd2b2955-a2b5-47d9-80e5-c91545aadca4','','',NULL), -('3741','Lt_A_AIrlock_Door_Ext','Door','AirlockPart','6b09fc8e-4e0c-46a3-9f97-7c912abc1aed','','',NULL), -('3742','Advocacy Interceptor Helmet','Armor','Helmet','e02ff738-464c-40e4-b140-fae0c0a7b2e0','','',NULL), -('3743','Carryable_2H_FL_Vlk_Pearl_Super_01','Misc','Harvestable','f0920bf8-e0c6-4045-a6ca-2c57a37bc1eb','','',NULL), -('3744','Hephaestanite (Raw)','Cargo','Cargo','d602a6b6-53b8-4a47-97c1-63cf914c901e','','',NULL), -('3745','RSI Default JetPack','Suit','ThrusterPack','e76a3608-3ea4-4d85-84b1-5c2c6c1f49cc','','',NULL), -('3746','Prevenir','Radar','MidRangeRadar','d8a9b395-4438-4995-a797-9d984c7fd4c0','','',NULL), -('3747','LightFire','QuantumDrive','UNDEFINED','f3ceefa2-670f-47c5-8c13-a80c8cf93c52','','',NULL), -('3748','Door','Door','UNDEFINED','2a9b82ca-0668-4aef-9ed9-38cb58fcd8b5','','',NULL), -('3749','Stirling Exploration Helmet Sandstorm Edition','Armor','Helmet','d35482d9-48f0-4f3e-81f8-6b683436014e','','',NULL), -('3750','DockingTube_Fuel_Ports_MISC_Freelancer_MIS','DockingCollar','UNDEFINED','5b05c025-3da7-4056-a3af-9c7b42e646d2','','',NULL), -('3751','RSI_Hermes_Thruster_VTOL','ManneuverThruster','FixedThruster','9be9901b-d3e8-4a38-8c99-285291f987e4','','',NULL), -('3752','Corsair 2953 Best in Show Livery','Paints','UNDEFINED','18de7edf-2b9b-4058-b148-68e578f4c07b','','',NULL), -('3753','Trailblazer Boots','Char_Clothing_Feet','UNDEFINED','276cd707-7a2d-4d65-9d2e-3bc509d8a225','','',NULL), -('3754','Seat','Usable','UNDEFINED','0d644c04-a019-4f58-ae5e-3a8640db944e','','',NULL), -('3755','Drivetrain','WheeledController','UNDEFINED','77e73716-61e1-4c32-85f5-80d5ec1e48a1','','',NULL), -('3756','Medium Artifact Fragment (Pristine)','Misc','UNDEFINED','2b97bad0-3e80-4a77-9633-3ee764dbf466','','',NULL), -('3757','Seat','SeatAccess','UNDEFINED','03faea11-a0c5-443c-bcba-90528483698a','','',NULL), -('3758','Ursa Red Livery','Paints','UNDEFINED','f9a6a6b9-4ff0-4670-a8c6-3aa2f34f7e01','','',NULL), -('3759','display_item_noGeo_01Port_Hat','ShopDisplay','UNDEFINED','00ccb88e-1ae2-4a5d-9e5f-980786c57cc3','','',NULL), -('3760','Remote Turret','Turret','GunTurret','9b6917f4-9505-4393-8993-6c8f8fb16b4c','','',NULL), -('3761','un_box_plastic_2_berries_c','Misc','UNDEFINED','e22a646c-e4a3-402f-a929-a458bc8b2ccf','','',NULL), -('3762','United Nations of Earth Mini-Flag','Flair_Cockpit','Flair_Static','3de40834-b47a-4740-801b-b7344ef433e0','','',NULL), -('3763','FullSpec-Go','Radar','MidRangeRadar','a4412aa5-2593-4139-b2d8-88b6bd05df07','','',NULL), -('3764','Silicon','Cargo','Cargo','df60e19f-df96-4d26-b404-d03866b02108','','',NULL), -('3765','MSD-524 Missile Rack','MissileLauncher','MissileRack','3677de9d-b92f-42f1-a34e-0c0fe6cdfcd0','','',NULL), -('3766','SHIELDS','ShieldController','UNDEFINED','eec5cecf-91ce-444f-b64a-1a1f40d3eab9','','',NULL), -('3767','Scrap Cable Coil','Misc','UNDEFINED','11271ec5-264f-473a-8ebe-adf481b3638d','','',NULL), -('3768','Carryable_1H_CY_utensil_spork_disposable','Misc','UNDEFINED','bb3a1932-1b65-45dc-9d70-3fc069f7a023','','',NULL), -('3769','Geist Armor Arms Desert','Armor','Arms','8efe48dd-e730-440e-9526-cbc87443e357','','',NULL), -('3770','Aphorite','Cargo','Cargo','fc2618b6-349a-43c6-8728-6d4f18d538f3','','',NULL), -('3771','Seat','SeatAccess','UNDEFINED','7a18fffd-157c-4e2d-b85c-f7c412ce6d54','','',NULL), -('3772','AEGS_Idris_SCItem_Seat_Bridge_Rear_Right_Blocked','Seat','UNDEFINED','8b4e522e-be04-42d9-90d3-71e2b4d2ba81','','',NULL), -('3773','Freelancer Foundation Fest Livery','Paints','UNDEFINED','677696da-f227-42ae-8b46-be5c0009de18','','',NULL), -('3774','ARGO_MPUV_Thruster_Aux_Front','ManneuverThruster','FixedThruster','00b1ddce-8fcf-42ac-854d-e8ef14875817','','',NULL), -('3775','WowBlast Desperado Toy Pistol Magazine (10 cap)','WeaponAttachment','Magazine','db3a7de3-3e4c-49f6-98fd-7541c963f380','','',NULL), -('3776','H_Dashboard_Projector_HUD_ARGO_SRV','Display','UNDEFINED','108bc4ad-835b-4fe7-ab76-1c6bce74c1f0','','',NULL), -('3777','Exterior_FreightElevator_CargoGrid','CargoGrid','UNDEFINED','52b05758-e01a-492a-adbb-7979a62b0b86','','',NULL), -('3778','Bracer','Cooler','UNDEFINED','4ec3037b-4b6f-4837-b00d-cd9b4836a82a','','',NULL), -('3779','Year of the Rooster Envelope','Cargo','Cargo','ffbeac48-de3b-4411-a464-feffde2aa1d5','','',NULL), -('3780','Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','023d292b-e2f5-402b-85f5-8a48cf1f458a','','',NULL), -('3781','250-E Laser Pointer','WeaponAttachment','BottomAttachment','6bbaa189-c154-4524-b2c1-6df305bb9533','','',NULL), -('3782','Door Control','Door','UNDEFINED','92f73487-046f-421a-8cd5-1070679c5cf4','','',NULL), -('3783','IndVest Jacket','Char_Clothing_Torso_1','UNDEFINED','444f1ec9-251e-4e7b-ba1e-92b7d1b524a3','','',NULL), -('3784','Door Control','Door','UNDEFINED','29f52e35-a6af-4949-9e9b-3e919a314910','','',NULL), -('3785','Plasma Battery','Cargo','Cargo','40ca027e-77a4-4bcc-b367-86efbac54150','','',NULL), -('3786','BEHR_LaserCannon_Ventilation_S4','WeaponAttachment','Ventilation','1870cc6d-d05c-4278-ab52-d5783e18c433','','',NULL), -('3787','Colonialism_Outpost_RN_AV_Turret','Turret','UNDEFINED','8d0aeaf2-9850-4bd3-a7e2-962927ce9b36','','',NULL), -('3788','MISC Prospector - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','1b77d16e-3a8f-4dbe-97e8-a61caa7dfbbf','','',NULL), -('3789','VariPuck S3 Gimbal Mount','Turret','GunTurret','6345ae6c-20ff-4d2b-8438-781cb02fa651','','',NULL), -('3790','Carryable_2H_Tablet_16x9_Drake_Anniversary','Misc','Gadget','8ec9a7f4-9f67-4eb1-a5f0-d5fb758f264d','','',NULL), -('3791','Arrow Foundation Fest Livery','Paints','UNDEFINED','6d364eb6-97fc-42ba-8f2d-ed14943268da','','',NULL), -('3792','Weapon_Rack_Cz_007','Usable','UNDEFINED','ded0776a-6be3-4b64-9e9e-e169c001a974','','',NULL), -('3793','Glow','Cargo','Cargo','c2600184-53bd-4c71-b7f7-0d1ec4c0280b','','',NULL), -('3794','Carryable_1H_CY_party_canape_3_a','Misc','UNDEFINED','fe611ce0-e5ae-4fb1-a795-407fcbc66268','','',NULL), -('3795','Decari Pod','Cargo','Cargo','2fc44c1e-cab0-4a28-80cb-49c49f2f03bd','','',NULL), -('3796','Dashboard','SeatDashboard','UNDEFINED','4d313488-36e0-4db1-b320-4b39b737e4a9','','',NULL), -('3797','Relay','Relay','UNDEFINED','663ab023-2655-4c4b-b60d-620ba14ed572','','',NULL), -('3798','Pingala Seeds','Cargo','Cargo','9f0d0f18-54d7-4ba7-a23c-158c3af24502','','',NULL), -('3799','R97 \"Scorched\" Shotgun','Weapon','Medium','2e15ad7c-79d0-48fc-91a1-bda4fbd45c6a','','',NULL), -('3800','Bed','Usable','UNDEFINED','b2b27d17-8e4e-4b09-a905-a8640a39ec7c','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('3801','Drink_bottle_eff_01_a','Drink','Bottle','1ec79288-4c18-4cb7-aa8b-ab92d86912d5','','',NULL), -('3802','H_Dashboard_Projector_HUD_ANVL_C8_Pisces','Display','UNDEFINED','dc3bef33-1527-4577-a525-d5e703554f34','','',NULL), -('3803','Uncut SLAM','Cargo','Cargo','cfdada56-45b7-44c2-9c4a-ddfc47023473','','',NULL), -('3804','ORC-mkV Core Twilight','Armor','Torso','84b54d13-592e-48d8-8f0b-3ea78d467e32','','',NULL), -('3805','UltraFlux','PowerPlant','Power','f549b612-0be0-41fe-91d1-12a479af2ac8','','',NULL), -('3806','Venture Legs Grey','Armor','Legs','ef59bc92-3b46-49c3-9064-e9ffe3310e90','','',NULL), -('3807','ReadyMeal (Vegetarian)','Food','Sachet','d9290fb6-3b8a-45bd-ac1e-c6f41d182951','','',NULL), -('3808','RSI_Bengal_SCItem_Seat_Captain','Seat','UNDEFINED','a5686835-3230-447e-b6fa-aad718062c29','','',NULL), -('3809','AEGS_Reclaimer_Dashboard_TractorBeam_Left','SeatDashboard','UNDEFINED','c5bc18f2-5641-44a5-a2ea-fb1ec681db99','','',NULL), -('3810','rack_gun_size_3_005x00375x01125_1_a','Misc','UNDEFINED','e553e7e3-90e3-49ae-ba07-b0a1660278b8','','',NULL), -('3811','Fleming','Radar','MidRangeRadar','5b8750fa-a271-4b5a-a8fd-53c8d06841c9','','',NULL), -('3812','400i Afterglow Livery','Paints','UNDEFINED','f05afbb9-4a11-4db0-b16f-dedf73dfb421','','',NULL), -('3813','Door Control','ControlPanel','DoorPart','9868c797-f5f0-418c-bae9-adbbd845c103','','',NULL), -('3814','RSI_Aurora_Intake_Top_LN','AttachedPart','UNDEFINED','298fa68e-4f44-41fa-a271-0deea36dbc6f','','',NULL), -('3815','Seat','Usable','UNDEFINED','83781a0d-4920-450a-870e-08673f434548','','',NULL), -('3816','Fortifier Helmet Icefall','Armor','Helmet','a91f41b3-1a29-44b2-b2c8-6780793d783a','','',NULL), -('3817','Lt_A_Airlock_Door_Int','Door','AirlockPart','a4722336-6788-4b17-b3f5-f69e3b794cdd','','',NULL), -('3818','Piconalia Sweater','Char_Clothing_Torso_0','UNDEFINED','cea7e7ae-9531-48c7-82cb-7b8deee62a57','','',NULL), -('3819','facial_hair_041','Char_Head_Beard','UNDEFINED','69889aed-7954-403d-8e97-b8a69a26ac83','','',NULL), -('3820','RSI_Hermes_Thruster_Retro_Nacelle','ManneuverThruster','FixedThruster','4be0015e-2d8d-470f-b5ec-39d3beb7498d','','',NULL), -('3821','DRAK_Golem_Thruster_VTOL_Retro_Right','ManneuverThruster','Retro','ac930f3b-8ca8-40a2-bd29-3c864fafc8df','','',NULL), -('3822','Strata Helmet Crusader Edition','Armor','Helmet','46108452-8462-4fa0-9b32-f0d93090ac28','','',NULL), -('3823','Zelena Pants and Tall Bisbee Boots','Char_Clothing_Legs','UNDEFINED','53fb58e0-dba4-4d35-9f7f-133b5ab575d8','','',NULL), -('3824','Radar_Display_15cm','Display','UNDEFINED','2e47954e-a13b-4bd6-ae2e-f7baa7bf068b','','',NULL), -('3825','Cutter Carnival Livery','Paints','UNDEFINED','7fda08c3-7742-494c-b8ba-6ce971c7d4b3','','',NULL), -('3826','Pembroke Exploration Suit RSI Sunburst Edition','Armor','Undersuit','37f72bbd-9f5f-4018-80a6-4ef5d25886f0','','',NULL), -('3827','Ketchum Beanie Grey','Char_Clothing_Hat','UNDEFINED','a5ee22fd-009a-4a6a-9f47-a3e4ddc09167','','',NULL), -('3828','mobiGlas Cedar Casing','MobiGlas','Personal','f78c8bdb-bf3a-40f0-a676-6eec3883a94c','','',NULL), -('3829','display_expo_hall_armour_rack_1_curved_backwall_b_11Ports','ShopDisplay','UNDEFINED','293f62a4-c36e-489c-b784-6eb1ee799552','','',NULL), -('3830','Lynx Arms Sandstorm','Armor','Arms','00c35078-4161-468c-8cd2-7bad6ba58992','','',NULL), -('3831','Seat','Usable','UNDEFINED','12999fd5-52ec-49a4-9eee-cceb36570b88','','',NULL), -('3832','Venture Undersuit Olive/Black','Armor','Undersuit','a4e9e211-7b2b-4ddc-89db-4c6f5ff8a0be','','',NULL), -('3833','Rampart','Shield','UNDEFINED','a4ce7916-5eeb-4b40-af71-8558f246e5e5','','',NULL), -('3834','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','3ab1bb55-b5ef-452b-a36d-0dfe21819709','','',NULL), -('3835','ORIG_400i_Thruster_Mav_Bottom','ManneuverThruster','FlexThruster','48df152c-795a-4677-b8a8-9c35cf52e4fb','','',NULL), -('3836','MISC Ore Pod','Container','Cargo','e4ed9d11-9a8e-4e08-83d4-a877eca31464','','',NULL), -('3837','MISC_Starfarer_Gemini_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','8def1897-d0d7-4f91-bc7e-59a6b6ea7195','','',NULL), -('3838','Venture Helmet Red','Armor','Helmet','8b4937e6-fceb-41dc-bfa0-2a8eeae72786','','',NULL), -('3839','Mustang Stormbringer Livery','Paints','UNDEFINED','b77920bc-3885-421a-a2da-e7019ff1d469','','',NULL), -('3840','ADP Arms Imperial','Armor','Arms','7d30bd19-ae8f-4415-bdca-7202901387ea','','',NULL), -('3841','Door Control','Door','UNDEFINED','b2f8cb82-ef2d-429e-8506-f0fa0ba81fde','','',NULL), -('3842','FBL-8a Arms Arctic Digital','Armor','Arms','091fc83c-aa96-44af-a850-45c381af311b','','',NULL), -('3843','AEGS_Sabre_Raven_Thruster_Mav_Joint_02','ManneuverThruster','JointThruster','c9ea2333-14f8-4f56-8d5f-c6c90905a020','','',NULL), -('3844','BEHR_LaserCannon_Ventilation_S2','WeaponAttachment','Ventilation','1444c11a-5f61-47ad-9c1a-b0dbc40c4c39','','',NULL), -('3845','HRST_LaserRepeater_FiringMechanism_S6','WeaponAttachment','FiringMechanism','ba941e80-4803-45c3-8831-9725a5fa4ef1','','',NULL), -('3846','Door Control','Door','UNDEFINED','cea11ea4-bc71-4cc6-839b-e3d7338e1f8a','','',NULL), -('3847','Testudo Core Earthshake','Armor','Torso','a7d15d5d-ccbc-4f22-bc73-aa449a9827cf','','',NULL), -('3848','Corbel Legs Crush','Armor','Legs','922b899e-9464-4411-9a6b-09785f744605','','',NULL), -('3849','ANVL_Pisces_BayDoor_Bot','Container','UNDEFINED','87f8e92b-e55a-436a-8889-9f3c997a4647','','',NULL), -('3850','Internal Tank','QuantumFuelTank','QuantumFuel','e98368a6-db4e-4ff9-9c1c-6eadabc1d239','','',NULL), -('3851','Citrus Blend Smoothie','Drink','Bottle','785251ee-29d2-496e-920e-ea072ce8193f','','',NULL), -('3852','ARGO_SRV_Thruster_VTOL_Small','MainThruster','UNDEFINED','91b8e43b-4313-480f-baac-13bbe65bc2f6','','',NULL), -('3853','Seat','Usable','UNDEFINED','f13a458f-4fb9-40f3-b758-b38b1cb9bd99','','',NULL), -('3854','Lynx Core Firebrick','Armor','Torso','cac6f8a0-6305-47a2-b169-8ebae08a0901','','',NULL), -('3855','Paint_Arrow_Procyon','Paints','UNDEFINED','278741d8-8aff-418b-bb31-63f8c1867284','','',NULL), -('3856','Sabre 2952 Auspicious Red Monkey Livery','Paints','UNDEFINED','963d7a97-a4a3-4ab1-8e49-cde15f90728c','','',NULL), -('3857','FullBlock','Shield','UNDEFINED','6a4d4eb2-dacd-4b04-b17f-e7a02ea7e744','','',NULL), -('3858','Emod \"Tweaker\" Stabilizer2','WeaponAttachment','Barrel','bf838dcb-31d5-4c8d-8550-90f09a581619','','',NULL), -('3859','GLSN_Shiv_Thruster_Maneuver_Top','ManneuverThruster','JointThruster','e5dba05d-30d4-427e-8218-b45e37fcac06','','',NULL), -('3860','Door Control','ControlPanel','DoorPart','5c5600a3-d034-4f1d-bf99-c24b273667a1','','',NULL), -('3861','RSI_Aurora_GS_ES_Thruster_Retro','MainThruster','FixedThruster','f3253cd9-86cd-4937-9c11-5ccd0560fdd8','','',NULL), -('3862','TwoStateAnimator_Control_SingleButton','Misc','Default','ff5ef785-0fc3-4139-a0d2-7febc1067f72','','',NULL), -('3863','ColonialismAirlockInteriorStatusSign','StatusScreen','AirlockPart','82a6abbd-7422-4b15-b9d2-c48d16b20ef7','','',NULL), -('3864','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','32b6d76e-3d40-4c62-8676-b6b3f2226b5f','','',NULL), -('3865','Paint_Vanguard_Sentinel','Paints','UNDEFINED','ac7e8a3d-5ae2-4903-a95c-233280f80f29','','',NULL), -('3866','BC-Grey Hat','Char_Clothing_Hat','UNDEFINED','70122ec2-892f-48c6-a4b4-ee0bdae3e023','','',NULL), -('3867','Chiron Legs Lifesaver','Armor','Legs','cc594239-b217-44ac-a80c-457cb6c253dc','','',NULL), -('3868','AEGS_Door_Decal_Airlock_02','Decal','DoorPart','262a4d82-d690-462d-8b49-43e11f1ef565','','',NULL), -('3869','Door','Door','UNDEFINED','af8569e8-c1f7-47d5-a4bc-2dec0134a845','','',NULL), -('3870','CRUS_Spirit_Thruster_Mav_Front','ManneuverThruster','UNDEFINED','b4f2541e-d6b7-4c9e-a85c-bff84d2f6bf1','','',NULL), -('3871','AAT-34 Turret','Turret','MannedTurret','a9a32fce-b615-40a8-b06e-2850484b2341','','',NULL), -('3872','ANVL_Hornet_F7C_Thruster_Main','MainThruster','FixedThruster','d77bfb0e-976e-4ecc-9949-a4d4be91f47a','','',NULL), -('3873','Clempt Pants Violet','Char_Clothing_Legs','UNDEFINED','fe1d5689-24ed-43ae-8b92-260dbf5268db','','',NULL), -('3874','Hi&Tight Shoes','Char_Clothing_Feet','UNDEFINED','f7ae1654-4eae-4627-a276-169fa67d40aa','','',NULL), -('3875','Golden Medmon','Cargo','Cargo','70679112-0cca-4af6-9740-51b9f2a146a7','','',NULL), -('3876','Diamond','Cargo','Cargo','3887400b-3d5c-4888-afcf-3aca71969e37','','',NULL), -('3877','MISC_Hull_C_FoldingStrut_2B','Cargo','UNDEFINED','9015695b-3ad1-4960-a7fb-bc66d3d522d8','','',NULL), -('3878','Beacon Undersuit Orange/Black','Armor','Undersuit','d37d2a59-4d6f-4d0c-8fce-658037418382','','',NULL), -('3879','Inquisitor Legs Neon Pink ','Armor','Legs','415b30c0-9c1c-4a11-82fc-410e0ca50d5b','','',NULL), -('3880','counter_office_1_straight_02x0075x01_a','Misc','UNDEFINED','7fdb845b-424d-451d-b018-9c4ac86cb690','','',NULL), -('3881','Corbel Legs Mire','Armor','Legs','f9c95695-1aff-4963-8432-f43fe65249be','','',NULL), -('3882','Mustang Delta Livery','Paints','UNDEFINED','411a40cb-c19b-4893-9a98-ecca2023e311','','',NULL), -('3883','KRON_LaserCannon_Barrel_S2','WeaponAttachment','Barrel','66e05cc5-64e5-412b-8620-607f27ba4e5a','','',NULL), -('3884','Clempt Pants Tan','Char_Clothing_Legs','UNDEFINED','8de158da-dba4-4bb4-930f-79c48ce432ef','','',NULL), -('3885','Mala','Cargo','Cargo','7479eefc-35e1-4608-9a08-9dc80a5bc0b0','','',NULL), -('3886','Tevarin War Service Marker (Worn)','Misc','Trophy','2bd06ca1-5b8b-4480-a349-f871a3c5688c','','',NULL), -('3887','Carryable_1H_CY_bottle_bar_14_mixer_a','Misc','UNDEFINED','eaf7bf35-86e6-4373-a0d5-f8ed2cf9de49','','',NULL), -('3888','ORC-mkV Core (Modified)','Armor','Torso','2cb38f8b-1e7a-4be9-b5b0-000fc1e5bd28','','',NULL), -('3889','Lillo Pants White','Char_Clothing_Legs','UNDEFINED','44139e7a-2b48-413f-b42e-9797b2dbda6e','','',NULL), -('3890','DockingTube_Fuel_Ports_AEGS_Javelin','DockingCollar','UNDEFINED','a70b02e0-8aec-4e06-9b54-2512c91eb1e9','','',NULL), -('3891','Quartz','Cargo','Cargo','ab76b57c-692c-4de5-a917-eefd2ea4ccbd','','',NULL), -('3892','Concept Shirt Sienna','Char_Clothing_Torso_0','UNDEFINED','f4bc642d-fdce-4f7b-b7fa-cc0ce0e49208','','',NULL), -('3893','Seat','Usable','UNDEFINED','be897cd5-1aab-4d72-8256-de90c0a758f2','','',NULL), -('3894','Balor HCH Helmet Tan','Armor','Helmet','6c8e29e3-a183-443f-9b8f-47275b689600','','',NULL), -('3895','ANVL_Pisces_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','209d1e68-5c23-44ef-9f24-09213df1cbc4','','',NULL), -('3896','Red Wind Hat','Char_Clothing_Hat','UNDEFINED','0d94a5a8-a282-41bb-a898-c04acb4b9da3','','',NULL), -('3897','Internal Tank','QuantumFuelTank','QuantumFuel','2a5facb1-6bc2-4b7c-95cd-59f665929eb6','','',NULL), -('3898','AcryliPlex Composite','Cargo','Cargo','fdb8babe-470b-49be-b5b4-034ea606cc22','','',NULL), -('3899','Strata Helmet ArcCorp Edition','Armor','Helmet','ebd17800-785d-4743-a52b-27dabc6faf64','','',NULL), -('3900','Li-Tok Boots White','Char_Clothing_Feet','UNDEFINED','20b0fb2e-fe01-4099-948b-69414127a08e','','',NULL), -('3901','Musaka Burrito','Food','Junk','2a4ca069-db0b-4f54-bbdc-087c488d87b8','','',NULL), -('3902','ASAD_DistortionRepeater_Ventilation_S1','WeaponAttachment','Ventilation','1c4acda3-bf69-40a9-bf9e-5b302485888f','','',NULL), -('3903','Scorpius IceBreak Livery','Paints','UNDEFINED','99e3d509-40b8-4918-a264-754b928ea7e5','','',NULL), -('3904','Seat','Usable','UNDEFINED','f2465ae9-0cb6-4425-990e-cf383514f30d','','',NULL), -('3905','Weapon_Ship_Cz_007','Usable','UNDEFINED','9ce11781-40ca-4199-9a3a-8f8b852eb1ae','','',NULL), -('3906','Chiron Arms','Armor','Arms','0ab89717-e3bc-42e4-b610-f01895d0f2dc','','',NULL), -('3907','Torreto Shirt','Char_Clothing_Torso_0','UNDEFINED','b08f6c29-ca06-4b37-99fd-d9cebb1dee07','','',NULL), -('3908','ORIG_890_Jump_Thruster_Retro_L','ManneuverThruster','FixedThruster','60b40cc3-939a-4ebd-b6fc-79f557c5fe92','','',NULL), -('3909','Cyclone Slipstream Livery','Paints','UNDEFINED','4d1be26a-7b77-4f6a-b787-78e7c1f268d8','','',NULL), -('3910','MissileRack_Medium_Rattler_NOVP','Usable','UNDEFINED','767f7956-1040-4284-b81d-35173dd41366','','',NULL), -('3911','MISC_Hull_C_Thruster_Mav_Fixed','ManneuverThruster','JointThruster','997fd938-ff55-4dce-a86b-8bee78c43f01','','',NULL), -('3912','Weapon_Rack_1_BEHR_Rifle_1_AmmoOnly_001','Usable','UNDEFINED','8bbe73c3-1f64-4068-84a8-377a210452e0','','',NULL), -('3913','Door Control','Door','UNDEFINED','273e9538-11cf-424b-8692-c664ed5b4911','','',NULL), -('3914','Access','SeatAccess','UNDEFINED','971927a8-9768-42ba-9908-a47ba98b49c0','','',NULL), -('3915','FP_Visor','Visor','UNDEFINED','b48e460e-6809-4547-a7b1-3ebb3c5930ac','','',NULL), -('3916','VariPuck S6 Gimbal Mount','Turret','GunTurret','40e08fff-cc9f-4cc6-9194-6f70a7f261d6','','',NULL), -('3917','Deadbolt I Cannon','Weapon','Gun','3727a5ce-bf98-43a7-a96e-c0ffedd071d0','','',NULL), -('3918','Guardian MX Missile Rack ','MissileLauncher','MissileRack','4dabd575-d029-c1dc-b7bf-f308bf5e8bb3','','',NULL), -('3919','facial_hair_025','Char_Head_Beard','UNDEFINED','88c8eee7-42cf-4baf-8286-c736a2c1bd93','','',NULL), -('3920','Vehicle_Screen_MFD_Holographic_MISC_Reliant_MR','Display','UNDEFINED','36a10b83-7380-4289-986f-6513de18aafe','','',NULL), -('3921','Radar_Display_XNAA_Nox','Display','UNDEFINED','ae18fef4-e273-4668-8b40-d96131a669a9','','',NULL), -('3922','Avenger Kepler Livery','Paints','UNDEFINED','c5d95f90-5523-436f-ba60-1ee3fc188736','','',NULL), -('3923','ReadyMeal (Chicken Dinner)','Food','Sachet','be45144f-da39-4897-a695-7a7a7712fb6b','','',NULL), -('3924','ARMR_MISC_Fury_LX','Armor','Medium','4858c2a1-d9be-4ef6-81f6-7d1f5228af78','','',NULL), -('3925','RSI Default JetPack','Suit','ThrusterPack','3a03f47d-45a0-41d9-9891-3bda551913a0','','',NULL), -('3926','Omarof (16x Telescopic)','WeaponAttachment','IronSight','60cf7fd7-9e89-4e00-be45-74afc00890a2','','',NULL), -('3927','RSI_Bengal_SCItem_Seat_Remote_Turret_Phalanx','Seat','UNDEFINED','1dd10d60-4d8c-41ab-b90e-6ad3bd8b3f54','','',NULL), -('3928','un_box_plastic_1_berries_d','Misc','UNDEFINED','5fa51a64-50f3-4c8c-b2e8-0bb2a4da4edb','','',NULL), -('3929','Carryable_1H_CY_garnish_sugarcube_1_a','Misc','UNDEFINED','94d05040-59ee-483d-aaf9-c45eb5140091','','',NULL), -('3930','Alban Shirt Sage','Char_Clothing_Torso_0','UNDEFINED','bee7f1ef-3e54-4522-a4ff-fa48581fb8bc','','',NULL), -('3931','RAFT Hazard Livery','Paints','UNDEFINED','ca68467f-43ef-4b34-8764-17a1373deeab','','',NULL), -('3932','ORC-mkV Core Black','Armor','Torso','da4b51b9-b8c1-457a-a146-cbee110bb9e6','','',NULL), -('3933','MISC Reliant - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','6dfc8798-6296-4d37-976a-9ef9edb67b05','','',NULL), -('3934','Hawk Invictus Blue and Gold Livery','Paints','UNDEFINED','9c9da622-ff3f-4d62-b322-681fc6e6ceb0','','',NULL), -('3935','Apollo Frontline Livery','Paints','UNDEFINED','3dd89b6c-69f5-4826-97b2-e493f89c051c','','',NULL), -('3936','Morningstar Helmet Black Steel','Armor','Helmet','a8d6d619-15f8-4f9e-9bee-28f9ea0b2dce','','',NULL), -('3937','SNS-R6','Radar','MidRangeRadar','809c5792-ae9b-4a09-8fd2-0001296dfc9b','','',NULL), -('3938','Barbican','Shield','UNDEFINED','e538a97f-d9cd-4997-9f43-11450e364af1','','',NULL), -('3939','MISC_Fury_MX_Thruster_FixedMav','ManneuverThruster','FixedThruster','eb3df482-b9db-4c37-85f1-59e542cea69d','','',NULL), -('3940','9-Series Longsword Cannon','Weapon','Gun','85fd75f8-6c6c-4d3f-839f-988ae7660617','','',NULL), -('3941','Remote Turret','Turret','GunTurret','b0d5b5ee-6397-4133-81ba-5c35ff8d110a','','',NULL), -('3942','Fortifier Helmet Dark Green','Armor','Helmet','57a903e4-44a7-4af1-aebe-939af5718ab2','','',NULL), -('3943','ORC-mkV Legs Green','Armor','Legs','004c9406-31c4-45d4-a052-2d2453315726','','',NULL), -('3944','Vehicle_Screen_MFD_Holographic_MISC_Razor_R','Display','UNDEFINED','f711cddb-4036-43f2-80eb-183305c60b5a','','',NULL), -('3945','Door Control','ControlPanel','DoorPart','5b0835d5-32e8-46a7-8018-44ef744fbe94','','',NULL), -('3946','AEGS_Sabre_Raven_Thruster_Main','MainThruster','FixedThruster','3b6c544c-8c35-48cb-9366-8948444fe00b','','',NULL), -('3947','Pite','Char_Head_Piercings','UNDEFINED','f2d7de1c-c0fc-444e-a68d-e072238ce7c9','','',NULL), -('3948','Radar_Display_Lighning_F8','Display','UNDEFINED','32825158-05c7-4ad3-914c-4671a8f145e1','','',NULL), -('3949','Seat','SeatAccess','UNDEFINED','f41074e0-750b-47a0-9a2a-9d3000e06b68','','',NULL), -('3950','One Light Cap Red','Char_Clothing_Hat','UNDEFINED','58f93ac5-24c5-4e87-a016-0622938bc869','','',NULL), -('3951','Weapon_Rack_1_Slot_ARGO_GadgetSmall','Usable','UNDEFINED','b6ed15bc-7042-4832-9467-ca287d5ef9a3','','',NULL), -('3952','Door Control','Door','UNDEFINED','1846dd91-7cc5-42cb-a863-273e698d2967','','',NULL), -('3953','Pulverizer LMG','Weapon','Medium','bca92494-a6de-4a81-880c-a9f7bb10427a','','',NULL), -('3954','BEHR_LaserCannon_SF7E_Ventilation_S7','WeaponAttachment','Ventilation','f796a210-e6cd-4aae-a63f-4d681cb947e7','','',NULL), -('3955','Bed','Usable','UNDEFINED','daf5fe7f-a175-4061-bfc8-8ce1a1a7ad7f','','',NULL), -('3956','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','fd1d366c-7154-4bf1-a2ba-1f0445073224','','',NULL), -('3957','Seat','SeatAccess','UNDEFINED','8f709892-c99d-4b4b-93eb-846b831cf877','','',NULL), -('3958','ESPR_LaserCannon_FiringMechanism_S2','WeaponAttachment','FiringMechanism','461705a6-0835-4f9f-beae-443ab67b0d98','','',NULL), -('3959','Aslarite (Raw)','Cargo','Cargo','bd1093ce-b47d-4447-92e7-55de23746de5','','',NULL), -('3960','Parallax \"Hurston\" Energy Assault Rifle','Weapon','Medium','5e6640fc-f841-4335-b09a-2e95633a5f69','','',NULL), -('3961','FBL-8a Legs Justified','Armor','Legs','07429259-869a-492f-9580-ac277381cf53','','',NULL), -('3962','Door Control','ControlPanel','DoorPart','ade68cdb-6381-4341-9e45-2ae8de03b49e','','',NULL), -('3963','Argos IX-G Torpedo','Missile','GroundVehicleMissile','ace7d6e1-63d3-484a-a707-a88f240d40e5','','',NULL), -('3964','Seat','SeatAccess','UNDEFINED','9aaa3ef3-4742-401e-987b-f89aaf29db1c','','',NULL), -('3965','PH - eld_shirt_04_01_fleetweek2022','Char_Clothing_Torso_0','UNDEFINED','5c389744-d866-4d9f-9e56-c2db595b77db','','',NULL), -('3966','Anvil Decoy Launcher','WeaponDefensive','CountermeasureLauncher','431c475f-fde9-4191-a3e0-c8c6f994c2e5','','',NULL), -('3967','Carryable_TBO_FL_8SCU_Commodity_ProcessedGoods_EvidenceBox','Cargo','Cargo','d136429d-616a-47fd-a402-c6b15b091887','','',NULL), -('3968','rack_gun_size_1_01x0075x00375_1_a','Misc','UNDEFINED','d265f5fb-5559-440a-9dfd-8b4babf51e4f','','',NULL), -('3969','ORIG_300i_Dashboard_Pilot','SeatDashboard','UNDEFINED','655e4c1d-ed22-442e-a6f0-4c657a334c3e','','',NULL), -('3970','BEHR_LaserCannon_Ventilation_S8','WeaponAttachment','Ventilation','b88f06c0-c87f-423b-b789-be56bc7b6bb1','','',NULL), -('3971','Seat','Usable','UNDEFINED','94f802da-7ca6-4d89-8edb-bc5ab99231f7','','',NULL), -('3972','resource_relay_switch_col','ControlPanel','Utility','fe57234e-e3ca-466c-846a-6ab4b255a99f','','',NULL), -('3973','Pite','Char_Head_Piercings','UNDEFINED','abbd0492-dde2-449e-8bbe-767578152b4c','','',NULL), -('3974','Seat','SeatAccess','UNDEFINED','3aacfb12-02e3-4ea8-8881-1cf3c3ec4e0c','','',NULL), -('3975','Chiron Helmet Heartthrob','Armor','Helmet','65186f45-991f-4fd1-90a0-799032766c8f','','',NULL), -('3976','VariPuck S3 Gimbal Mount','Turret','GunTurret','bdf30572-299e-476a-a552-bfcfa9619f0a','','',NULL), -('3977','RSI_Apollo_Docking_Collar_Small','Door','UNDEFINED','4f4583f7-6317-d409-861d-32a872c52a8f','','',NULL), -('3978','XTR-XL Module','MiningModifier','Gun','a0595561-6252-4340-bd02-c9a748e2fe7b','','',NULL), -('3979','VariPuck S2 Gimbal Mount','Turret','GunTurret','7fedca61-dfeb-4ecb-b421-e7c3ba55a584','','',NULL), -('3980','Iodine','Cargo','Cargo','fb219d2e-4a77-4dfb-91c3-a1df01b3e8ac','','',NULL), -('3981','Weapon_Rack_Cz_009','Usable','UNDEFINED','4a7de8b3-14a0-4ce5-a43e-8979ee7b4e79','','',NULL), -('3982','MISC_Door_Decal_Hull_A_Bridge','Decal','DoorPart','af3d2f5a-9269-4355-8edf-20ab30a13558','','',NULL), -('3983','tool_hacksaw_1_a','Misc','UNDEFINED','ab03bf41-6133-4950-8f29-cec5ea59d5be','','',NULL), -('3984','MacFlex Arms Yellow','Armor','Arms','24d0f59a-85a1-427e-b905-28f054f54295','','',NULL), -('3985','Party Favors','Cargo','Cargo','c7e29cc3-97ff-46b4-a7bf-f8a4a8a4d2ba','','',NULL), -('3986','Door Control','Door','UNDEFINED','c7441b35-dbce-45c1-a31c-bcaf2e78152f','','',NULL), -('3987','Syulen Thlun Livery','Paints','UNDEFINED','727599b7-effe-411a-b848-3eb596389ef3','','',NULL), -('3988','ESPR_Prowler_Ground_Refueling_Port','Door','UNDEFINED','41adb6bf-b552-428c-a8dd-6cf7520309cb','','',NULL), -('3989','Animus \"Quite Useful\" Missile Launcher','Weapon','Large','577b8e82-5302-495b-b704-a78d11b7e77b','','',NULL), -('3990','SHIELDS','ShieldController','UNDEFINED','6ef70cc0-ad68-4d96-bad0-3d5ee87e12be','','',NULL), -('3991','Anvil Lightning F8 Turret','Turret','BallTurret','338d10af-9b8f-4a4b-b0e2-a0ca99bb3781','','',NULL), -('3992','display_box_plastic_4_weapon_opened_015x01x0025_a_1Port','ShopDisplay','UNDEFINED','75f57d97-6244-4d3d-af83-27af174fd954','','',NULL), -('3993','ORIG_135c_Thruster_Main_Left','MainThruster','FixedThruster','2f622f4e-9ed2-4e10-a936-3acb9ac6dc8d','','',NULL), -('3994','Gadget_Cabinet_kegr_fire_extinguisher_01_ground','Usable','UNDEFINED','87ad4758-f874-43e9-baf0-c3537686af13','','',NULL), -('3995','Cutlass 2949 Best In Show Livery','Paints','UNDEFINED','9dff641f-1951-4ae6-bad5-59c5807f7c27','','',NULL), -('3996','Seat','SeatAccess','UNDEFINED','3d29ad1d-b418-48c8-bd71-09c2a4422fbf','','',NULL), -('3997','UNE Unification War Medal (Pristine)','Misc','Trophy','dc6265dd-c8f5-4d4e-a0c5-39a9d655a616','','',NULL), -('3998','GP-33 MOD Grenade Launcher','Weapon','Medium','a6688dce-f8c7-4b73-b657-bd1e17f951d3','','',NULL), -('3999','Lorville Blues T-Shirt','Char_Clothing_Torso_0','UNDEFINED','0a8662f7-3dac-49a0-8f12-c5c0eed60209','','',NULL), -('4000','Torite','Cargo','Cargo','48044ce5-51fb-4a14-8505-58f158d43931','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('4001','Eos','QuantumDrive','UNDEFINED','08a5bfdb-1972-421f-83fe-be03b7ac5222','','',NULL), -('4002','Carryable_1H_CY_drug_painkillers_1_a','Misc','UNDEFINED','80782004-cc93-4b1f-a831-39c0d8f77b10','','',NULL), -('4003','Aegis Gladius - Noise Launcher','WeaponDefensive','CountermeasureLauncher','ee1680f8-cb7b-4141-b354-7959642e8474','','',NULL), -('4004','AirlockChipsetTemplate','Usable','UNDEFINED','90f98449-9389-4264-bc58-b5a9478a98c3','','',NULL), -('4005','ANVL_Terrapin_Ground_Refueling_Port','Door','UNDEFINED','0b1bbc30-8ba0-4119-bbcd-9c2675b8aa53','','',NULL), -('4006','LifeCure Medsticks','Cargo','Cargo','2a2888d5-bfd2-4428-bfd3-5e3ba02d5af8','','',NULL), -('4007','Citadel Core Base','Armor','Torso','0b78eb45-6529-4646-aaa6-e052551301da','','',NULL), -('4008','MISC_Freelancer_CargoGrid_Mid','CargoGrid','UNDEFINED','87261520-ec8b-4dc7-987f-0fa510f8bd58','','',NULL), -('4009','SoftLock_Terminal_Standard_Refueling_Ship','Display','UNDEFINED','15bf7725-f823-45e0-a775-262d2ab6e6e9','','',NULL), -('4010','Door Control','Door','UNDEFINED','93e5e32b-cff9-416f-a788-e8e790be9488','','',NULL), -('4011','Seat','SeatAccess','UNDEFINED','40f1dcd2-2ec1-441a-a0b1-06b295ed627a','','',NULL), -('4012','RSI_Aurora_GS_LN_Thruster_Mav_Joint','ManneuverThruster','JointThruster','3942f020-ea8f-4f96-b9fc-66197f359d46','','',NULL), -('4013','bottle_drink_1_sports_shop_3x5_a','ShopDisplay','Default','a4a486ef-a4e4-4232-a36e-833d5ed917f6','','',NULL), -('4014','VNCL_Blade_Thruster_Retro_Fixed','ManneuverThruster','FixedThruster','514e1ff4-2813-41c8-b971-8aa1495ce688','','',NULL), -('4015','un_box_plastic_2_berries_d','Misc','UNDEFINED','cdba87ce-cc0d-49a5-9045-3d3333abbe05','','',NULL), -('4016','Railing_Straight_7m_Hurston_Lorville_Glass_A','Usable','UNDEFINED','c3144755-d634-4f08-b5a0-be06e7c1fa6a','','',NULL), -('4017','Ravager-212 \"Scorched\" Twin Shotgun','Weapon','Medium','5eefc5ce-90e4-452f-81d2-d3b35e416c25','','',NULL), -('4018','Hephaestanite (Raw)','Cargo','Cargo','0ba01545-6338-47f9-912e-721db26e966e','','',NULL), -('4019','Seat','Usable','UNDEFINED','34556cb1-7f42-4e6d-acab-4089e7a27ea3','','',NULL), -('4020','MISC_Freelancer_MAX_Derelict_SCItem_Seat_Esc_Pod_Lower_Right','Seat','UNDEFINED','f484e2ea-91f3-420a-8519-fa5476ed4482','','',NULL), -('4021','Novikov Helmet','Armor','Helmet','924ac206-9122-4584-8682-af7d61f56929','','',NULL), -('4022','Anvil Ballista S07 Missile Rack','MissileLauncher','MissileRack','af009bac-1965-402a-a922-0bf1d7e334af','','',NULL), -('4023','Slickdry Waders Horizon','Char_Clothing_Legs','UNDEFINED','4eceb130-96be-4028-b0e5-6762df5f0321','','',NULL), -('4024','ORC-mkV Core Violet','Armor','Torso','317c1bbf-9a74-4ab9-b4fb-ed94e885b93f','','',NULL), -('4025','Internal Tank','QuantumFuelTank','QuantumFuel','82e04230-ca72-4968-9ce5-bc5730ca0cba','','',NULL), -('4026','AAT-34 Turret','Turret','MannedTurret','05c86e93-d70c-4e13-93c4-101035fab0de','','',NULL), -('4027','Seat','SeatAccess','UNDEFINED','225962f4-5c35-4bbc-8221-e820bf7c76e6','','',NULL), -('4028','Carryable_2H_CY_weight_barbell_bumperplate_1_10kg_b','Misc','UNDEFINED','a7d37039-b4fb-4cf4-a8a1-a5476262cac7','','',NULL), -('4029','Avenger Ironweave Livery','Paints','UNDEFINED','e1500841-3547-4708-a6f6-1b1eb75e2a05','','',NULL), -('4030','Manned Turret','TurretBase','MannedTurret','c2d1b008-c900-4d59-bc8f-b10f5b46cdf0','','',NULL), -('4031','San\'tok.yai Ocellus Livery','Paints','UNDEFINED','a0de8a47-6cc4-4aae-b615-b00f55f25f2a','','',NULL), -('4032','Colonialism_Outpost_RN_Single_Fuel_Tank_Unit','FuelTank','UNDEFINED','8d4a1ddf-5f76-4466-9f1d-64d3e8fd32f5','','',NULL), -('4033','LifeCure Medsticks','Cargo','Small','0dbe4f25-b0a7-4ec8-be91-d062ead3cc3d','','',NULL), -('4034','Internal Tank','FuelTank','Fuel','e7e4320c-205d-4364-8b02-73d2f22ab5b8','','',NULL), -('4035','Seat','SeatAccess','UNDEFINED','ab8099a2-136c-44d1-9950-7e759314d6c8','','',NULL), -('4036','BEHR_BallisticGatling_Barrel_S5','WeaponAttachment','Barrel','f60327a2-8069-4869-88ec-73f302b5e451','','',NULL), -('4037','CBH-3 Helmet Covalex Edition','Armor','Helmet','ad7d541d-27b1-4b69-ade2-3d38802066eb','','',NULL), -('4038','Manned Turret','TurretBase','MannedTurret','602edd53-525b-4e8a-96b3-6c28ac5011b1','','',NULL), -('4039','Seat','Usable','UNDEFINED','d69d2dd9-a852-4aa4-af96-27e085248e6b','','',NULL), -('4040','Bed_MISC_Starfarer_Captain','Usable','UNDEFINED','10216bf0-6748-4894-b423-747a3502e30a','','',NULL), -('4041','sw_heavy_cold_helmet','Armor','Helmet','4d798f46-77a3-4891-99c2-0e4a3b95f1ce','','',NULL), -('4042','INTK_RSI_Scorpius','FuelIntake','Fuel','b7260a81-e1e0-44db-a446-26c0b89b74e1','','',NULL), -('4043','ORIG_300i_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','dcb2b2db-14bc-47a7-8246-e50bb1c92f08','','',NULL), -('4044','can_drink_1_pips_d','Cargo','UNDEFINED','2a6515f2-48b9-451e-81bb-b0f4756209bf','','',NULL), -('4045','MISC_Reliant_Mako_Seat_Station_Rear','Seat','UNDEFINED','698a7754-ee18-4390-8e5c-a2b83a5d4595','','',NULL), -('4046','Salluq Mask Brown','Char_Clothing_Hat','UNDEFINED','960bf462-4df1-4179-8ae3-11b6835dc1fb','','',NULL), -('4047','Geist Armor Core Forest','Armor','Torso','5d366ec5-3d1e-4434-b6c1-856527f2a1eb','','',NULL), -('4048','Observer-Go','Radar','MidRangeRadar','f28b4e31-b9a2-4b39-8ede-7023985e6cf9','','',NULL), -('4049','400i Stormbringer Livery','Paints','UNDEFINED','fe83f9f3-32fc-4d06-aa43-9692b1e2a50e','','',NULL), -('4050','Roughneck','PowerPlant','Power','9a5c71d4-12c0-4994-a41f-98b6e6018151','','',NULL), -('4051','Palatino Legs Daystar','Armor','Legs','c7fb0fc2-20b5-4c23-9a22-de9c7d5052d9','','',NULL), -('4052','Freeze','Cargo','Cargo','8dc26e83-f2b9-4f5d-a6d3-e30ad56c1905','','',NULL), -('4053','Radar_Display_MISC_Fortune','Display','UNDEFINED','f0226a8e-ef96-4ea1-a366-36b5fab6b33d','','',NULL), -('4054','Aril Arms Black Cherry','Armor','Arms','484908e5-38c3-432c-8600-233237b1f875','','',NULL), -('4055','Carryable_1H_SQ_Datapad_Fluff_ContestedZone_FireRat_Prayer','Misc','UNDEFINED','c413d93e-c39b-4019-8845-474fa0a08957','','',NULL), -('4056','Aurora Mk I IceBreak Livery','Paints','UNDEFINED','7ac0644e-6cf3-404a-a0bf-6feee7f1f469','','',NULL), -('4057','Door','Door','UNDEFINED','89f57cf2-786f-4739-a336-498584e7dd98','','',NULL), -('4058','Seat','SeatAccess','UNDEFINED','6c32da61-061d-4ac7-a91f-35c3627f9123','','',NULL), -('4059','Booth_Table_6Spots_01','Usable','UNDEFINED','16e79581-0a8d-4bbf-96ce-c5009bd9bf04','','',NULL), -('4060','CRUS_Starlifter_Thruster_Mav_Front','ManneuverThruster','JointThruster','3e3a0224-e5dc-433a-b2a7-93c27b8110b5','','',NULL), -('4061','GATS_BallisticGatling_Ventilation_S1','WeaponAttachment','Ventilation','5b1dc45f-10fb-4cb4-ad33-d4a416cf90a0','','',NULL), -('4062','TrueDef-Pro Arms Silver/Gold/Grey','Armor','Arms','de20695c-eb2f-4b68-be6f-9806cbd205a7','','',NULL), -('4063','Lindinium','Cargo','Cargo','490fc9fe-0b52-442e-964b-b91212aa9eba','','',NULL), -('4064','Deadbolt II Cannon','Weapon','Gun','92f60837-933a-42dc-a7b0-473a337ffc13','','',NULL), -('4065','GAMA_Syulen_Thruster_Mav_Bottom','ManneuverThruster','FlexThruster','fdc4c280-3cb2-4d95-affb-8d787d965ccb','','',NULL), -('4066','Size 4 Fixed Mount','Turret','GunTurret','c2af3f67-3ad7-4214-b502-4d00bb3df0b8','','',NULL), -('4067','Fresnel Energy LMG','Weapon','Medium','af55f514-d7fd-49fd-89c8-6aee01f25859','','',NULL), -('4068','Bed','Usable','UNDEFINED','7f6297f8-e5b3-467a-b8b1-9f005b0b1fa7','','',NULL), -('4069','Balor HCH Helmet microTech Edition','Armor','Helmet','0e5a402d-b8d1-41fb-9da8-a61719b6cfe5','','',NULL), -('4070','ORC-mkV Arms Covalex Edition','Armor','Arms','3d1c919f-a17b-4e58-9b4f-33634b50b292','','',NULL), -('4071','Hurricane Polar Camo Livery','Paints','UNDEFINED','b8f1919c-bb4c-4ab6-a3c8-e124e2190f1b','','',NULL), -('4072','Quartz \"Hunter Camo\" Energy SMG','Weapon','Medium','ab93ef85-493c-4fb7-a9ff-bfc790f46ae3','','',NULL), -('4073','RSI_Zeus_Wing_Bottom_Left','AttachedPart','UNDEFINED','d4f1fae8-b50c-400f-aea6-e7282df4e3b3','','',NULL), -('4074','Door Control','Door','UNDEFINED','1d899c07-6a47-4427-b4d5-70564c3f9f64','','',NULL), -('4075','ESPR_BallisticCannon_FiringMechanism_S1','WeaponAttachment','FiringMechanism','b4ffea3e-c321-491a-ba8b-086110c562c4','','',NULL), -('4076','Gallant \"Red Alert\" Rifle','Weapon','Medium','4a1b92d4-103b-42b5-97b1-8dee5479e770','','',NULL), -('4077','Morozov-SH Legs','Armor','Legs','805b6ef1-ee22-4a65-90fb-3ff610b843f4','','',NULL), -('4078','volume_undersuit_01','Armor','Undersuit','cc27ee54-1638-4a97-afdd-3382c55fa8ef','','',NULL), -('4079','Door Control','ControlPanel','DoorPart','d1ccddf6-f89e-47a8-82c7-46667350dfda','','',NULL), -('4080','RSI_Meteor_Thruster_Main','MainThruster','FixedThruster','4bd15302-7f8d-43a7-a9af-c8862531ec6e','','',NULL), -('4081','RangeFinder Jacket Arctic','Char_Clothing_Torso_1','UNDEFINED','228eef67-ec80-44ca-a6c8-dd962fe7d6b9','','',NULL), -('4082','GCD-Army Arms','Armor','Arms','2dc1d01b-1d2f-4b0a-b4b1-036fe5eaef4d','','',NULL), -('4083','un_clock_1_a','Cargo','UNDEFINED','6783922c-017c-45f1-b977-6c5ad51a156d','','',NULL), -('4084','ORC-mkV Core Dark Red','Armor','Torso','b570d867-d9be-4946-acca-a5d785cf06bd','','',NULL), -('4085','Cutlass Coalfire Livery','Paints','UNDEFINED','39baa551-d593-4f6c-acb6-735bea4b124b','','',NULL), -('4086','Razor Central Tower Livery','Paints','UNDEFINED','cdc8582e-e32d-49a8-9fb6-22d674b6fbf0','','',NULL), -('4087','Defiance Helmet Charcoal','Armor','Helmet','6fa313c5-6259-4b6f-9a09-a8e84e9ab109','','',NULL), -('4088','SNSR7','Radar','MidRangeRadar','c91b0d85-f839-4450-95a4-f98c00ea5e37','','',NULL), -('4089','fruit_tray_1_a','Misc','UNDEFINED','10e4700f-1184-4eb8-a214-5940bc5e9298','','',NULL), -('4090','SalvageInternalStorage_RSI_Salvation','SalvageInternalStorage','UNDEFINED','8405e12d-52eb-4fb2-8093-865e1fce8dd6','','',NULL), -('4091','Bannock Jumpsuit Green','Char_Clothing_Torso_1','UNDEFINED','edc6b651-1bf9-492d-b7e4-dd7d3abf8c45','','',NULL), -('4092','Harvestable_Meat_1H_KopionMeat','Misc','Harvestable','3f78ffc3-40fb-46cb-aa65-21f61478736b','','',NULL), -('4093','ORC-mkV Legs Red','Armor','Legs','99202bc9-5db7-4e0d-b8c6-7c038e8053ab','','',NULL), -('4094','CRUS_Intrepid_Thruster_Main_Large','MainThruster','UNDEFINED','6a669d9e-8f26-468f-99a8-f89b9a19ba38','','',NULL), -('4095','Weapon_Rack_MISC_Starlancer_TAC_1Slot','Usable','UNDEFINED','e9fefad1-3085-4be8-b4fd-233f99b0dc25','','',NULL), -('4096','Compboard','Misc','Harvestable','46368312-37e3-4fb9-9eea-d8c3ac46b776','','',NULL), -('4097','Pite','Char_Head_Piercings','UNDEFINED','fbcae520-17d1-4a8e-817d-bbe864b8d1ad','','',NULL), -('4098','Booth_Table_3Spots_01','Usable','UNDEFINED','a94e084e-7e53-4ef9-beba-54bfaf62d0e2','','',NULL), -('4099','X1 Supersonic Livery','Paints','UNDEFINED','4acefded-90e4-4308-a923-1f364dc135f9','','',NULL), -('4100','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','78b9fc9b-c496-4a1b-8f96-757d6fcab6a0','','',NULL), -('4101','GATS_BallisticGatling_Barrel_S1','WeaponAttachment','Barrel','c10d8c2d-44f5-4733-98d4-11fa1742f08b','','',NULL), -('4102','Venture Arms Sienna','Armor','Arms','c70526fd-e4ac-4fd7-a62e-7fb1ea55f003','','',NULL), -('4103','Remote Turret','Turret','GunTurret','cd9b2c2f-10cf-4fb4-bfd2-d425f7c74c9a','','',NULL), -('4104','ANVL_Hornet_F7A_Dashboard_Pilot','SeatDashboard','UNDEFINED','0a7a5404-d004-47bf-b1c7-d6cf3e297349','','',NULL), -('4105','Seat','SeatAccess','UNDEFINED','5ae6e0ab-91ad-497f-81cf-a6f3563bcba2','','',NULL), -('4106','ANVL_Hornet_F7A_Mk1_Thruster_Retro','ManneuverThruster','JointThruster','d0dc6dfc-057b-4330-b0c8-0d60f74ff551','','',NULL), -('4107','TaskForce I-G Missile','Missile','GroundVehicleMissile','ff25aeea-8b13-4502-80c5-7f065ab9a313','','',NULL), -('4108','BEHR_BallisticGatling_FiringMechanism_S6','WeaponAttachment','FiringMechanism','c482ad77-f1da-4e74-938f-43f796bd6426','','',NULL), -('4109','MISSILES','MissileController','UNDEFINED','36afeec1-61e5-4c02-9dc5-8e04474363d4','','',NULL), -('4110','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','0cc6bb0e-3178-4463-8f48-0e21ab3e0e31','','',NULL), -('4111','f_human_mannequin_environment_heavy','ShopDisplay','UNDEFINED','f600d351-bbfa-46b8-973e-6ab5f5d0d335','','',NULL), -('4112','Tona Shoes Tan','Char_Clothing_Feet','UNDEFINED','94781c8f-eafc-4351-9bcb-b757502d96ec','','',NULL), -('4113','MPUV-1T Standard Flight Blade','FlightController','UNDEFINED','ea32bd43-280d-4674-b3cd-920326245f9d','','',NULL), -('4114','ARGO_MPUV_Thruster_Aux_Side','ManneuverThruster','FixedThruster','f75cef79-8ef2-4d29-9b90-a81a2e1a275e','','',NULL), -('4115','ESPR_LaserCannon_FiringMechanism_S1','WeaponAttachment','FiringMechanism','efd33f90-38b7-47a9-a2da-4e47572e26d0','','',NULL), -('4116','Theta Pro (8x Telescopic) ','WeaponAttachment','IronSight','fb88b0a1-b9f3-40cb-a683-509cf0e3641c','','',NULL), -('4117','POWR_Carryable_JUST_S02_SCItem','Cargo','Small','54b2ca1a-2d59-4a0a-838d-40ef7199a6bd','','',NULL), -('4118','INTK_ANVL_Asgard','FuelIntake','Fuel','c593cfe0-f1cd-4571-bbd3-1e89073acba3','','',NULL), -('4119','MISC_Hull_A_Thruster_Retro','ManneuverThruster','FixedThruster','cf30f42b-3b95-4d2b-8463-935d01e7dfc4','','',NULL), -('4120','DockingTube_Fuel_Ports_DRAK_Golem','DockingCollar','UNDEFINED','14c66267-8d11-4f21-91ef-c7a9d2a1271f','','',NULL), -('4121','Iodine','Cargo','Cargo','efb6c7f4-ce53-433b-b782-968e663969a1','','',NULL), -('4122','Argus Helmet Black/Grey','Armor','Helmet','eff1fe07-a393-44f1-a096-bd6df57c3350','','',NULL), -('4123','TruBarrier Hazard Suit Hi-Vis Yellow','Char_Clothing_Torso_1','UNDEFINED','a870e97f-75c7-4ba1-8ae0-7cd9ff975472','','',NULL), -('4124','MOLE Carbon Livery','Paints','UNDEFINED','672152ba-394e-43ac-a368-16c50a3d16ee','','',NULL), -('4125','Paint_Hammerhead_NineTails','Paints','UNDEFINED','965dac76-6628-4496-a5fe-8bf15dff5017','','',NULL), -('4126','Lynx Moonshadow Livery','Paints','UNDEFINED','6904b3fb-cb53-4845-aa53-d79e793b65f9','','',NULL), -('4127','Seat','Usable','UNDEFINED','99eb0ad2-b87e-43b7-8221-fbdce56a18b2','','',NULL), -('4128','SRV Lovestruck Livery','Paints','UNDEFINED','a979dbc0-1549-42d9-aec0-686a1b2e68c5','','',NULL), -('4129','Mala','Cargo','Cargo','3f790519-270d-40ac-9e90-0bc56ee612b3','','',NULL), -('4130','DRAK_Dragonfly_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','203d7b4e-69b2-465f-9dea-6f13077ec022','','',NULL), -('4131','H_Dashboard_Projector_HUD_AEGS_Avenger','Display','UNDEFINED','813630ff-1c3c-4b4d-9939-eafee9ac54df','','',NULL), -('4132','Paint_Cutlass_Black_Procyon','Paints','UNDEFINED','67d9ef3f-913b-46d0-b9b8-bc3898c012aa','','',NULL), -('4133','Anvil Aerospace Hat','Char_Clothing_Hat','UNDEFINED','e3c42e35-2d1c-495f-baa5-226f662b4ab4','','',NULL), -('4134','Seat','SeatAccess','UNDEFINED','c4e20341-add8-47ff-bcbe-764648cf3835','','',NULL), -('4135','Quarreler Cannon','Weapon','Gun','cfacea3e-afbc-405c-b220-2d1d3b6e20b1','','',NULL), -('4136','DRAK_Cutlass_Tractor_Carriage','Misc','UNDEFINED','e4ae90dc-dcc7-4731-8b29-379c4f478886','','',NULL), -('4137','ANVL_Lightning_F8_Thruster_Main_White','MainThruster','FixedThruster','0258daca-4650-497e-838f-10506f8e2ddc','','',NULL), -('4138','LeMarque Pants Imperial','Char_Clothing_Legs','UNDEFINED','6553d84f-d20e-42e5-84e5-77c91b9434b8','','',NULL), -('4139','ARGO_ATLS_IKTI_ARGOS_Blanking_Plate','Misc','UNDEFINED','f5a2e579-3521-42b3-be80-4fc3025fb84a','','',NULL), -('4140','BEHR_LaserCannon_FiringMechanism_S1','WeaponAttachment','FiringMechanism','ea6804c5-60b3-4118-a1d4-888571e57ec5','','',NULL), -('4141','un_bowl_emptyl_1_a','Food','Consumable','60ccf7f0-9005-41c3-9ceb-c62bd2c75b40','','',NULL), -('4142','AEGS_Door_Decal_Bridge_Brig','Decal','DoorPart','9b4ba8c5-8e4d-4261-82d2-7f2b7fd3d4ae','','',NULL), -('4143','Helium','Cargo','Cargo','81a2c023-ade4-437c-a79e-d59a466f852c','','',NULL), -('4144','Remote Turret','Turret','GunTurret','5ef2234d-bb9c-4730-bb00-416f0b0067de','','',NULL), -('4145','Bed_ORIG_600I_Touring_Pod','Usable','UNDEFINED','133e9c64-ac3f-4809-9e39-b934d44f3aa6','','',NULL), -('4146','SHIELDS','ShieldController','UNDEFINED','7aa59efc-1247-4728-a1bb-bdae52aa0cd4','','',NULL), -('4147','IndVest Jacket Twilight','Char_Clothing_Torso_1','UNDEFINED','dbe68a17-ffdc-4ae0-96f3-260a7d22a40a','','',NULL), -('4148','GATS_BallisticGatling_Mounted_FiringMechanism_S1','WeaponAttachment','FiringMechanism','d1035606-ed3b-415d-9a67-081b8810f87d','','',NULL), -('4149','Clempt Pants Aqua','Char_Clothing_Legs','UNDEFINED','0d4f9ecf-e9df-47ac-88a3-e914b72e172e','','',NULL), -('4150','Ermer Family Farms Chibanzoo Ice Cream','Food','Junk','30afcb8f-3afc-42c7-a860-34c630729823','','',NULL), -('4151','UNE Silver Ingot (Damaged)','Misc','UNDEFINED','fb9672f8-8f25-47ea-b90e-9f0702958375','','',NULL), -('4152','Lillo Pants Black','Char_Clothing_Legs','UNDEFINED','c090a184-a48d-4706-b907-379ffdb81f4e','','',NULL), -('4153','Door','Door','UNDEFINED','03b35358-4298-43bc-b29a-1675dd936d59','','',NULL), -('4154','Agricium','Cargo','Cargo','6b701a3c-d5f0-4816-a143-f3af654b3f51','','',NULL), -('4155','Morozov-SH Core (Modified)','Armor','Torso','c200f971-9e42-4f95-bdfb-498b493d13f2','','',NULL), -('4156','Inquisitor Arms Yellow','Armor','Arms','52e9f375-3ff6-40a8-be01-4967e2db8db6','','',NULL), -('4157','Ball','Char_Head_Piercings','UNDEFINED','aec75a05-516c-495a-a73f-47bfbc2acca3','','',NULL), -('4158','Door','Door','UNDEFINED','334c7d8d-d80d-4d63-9e6a-a80c2c4de58e','','',NULL), -('4159','RSI Constellation Side Missile Rack','MissileLauncher','MissileRack','4d2b4f8c-1f5c-4f17-8c84-24f52b43d01b','','',NULL), -('4160','Zeus MK II Solar Livery','Paints','UNDEFINED','c51a2f70-145d-4a28-83f3-c9262dc963f7','','',NULL), -('4161','SHIELDS','ShieldController','UNDEFINED','d9664edb-76aa-4136-8b05-023aea9b5b1f','','',NULL), -('4162','100 Series Invictus Blue and Gold Livery','Paints','UNDEFINED','57f14363-ce4b-4b48-968e-451709a69ede','','',NULL), -('4163','Li-Tok Boots Black','Char_Clothing_Feet','UNDEFINED','622465b1-7b08-4005-a063-67de13ea65be','','',NULL), -('4164','CK13-GID Seed Blend','Cargo','Cargo','437ee7e4-5b68-44c3-bc8e-16bbe056323c','','',NULL), -('4165','Testudo Helmet Turfwar','Armor','Helmet','9b8cd51e-a5f4-4b09-83cd-5ff6e729c8f3','','',NULL), -('4166','Helium','Cargo','Cargo','8e7313ba-d1e4-40d3-a232-f8addc9488ca','','',NULL), -('4167','Venture Arms Olive','Armor','Arms','c2827125-8ac9-4135-a54c-800474257686','','',NULL), -('4168','Seat','SeatAccess','UNDEFINED','0d7d1152-33fa-446e-9d62-6abe83fe16bc','','',NULL), -('4169','Weapon_Ship_Cz_001','Usable','UNDEFINED','c68b2fff-2200-41d2-ad4e-ef7d219aa1a2','','',NULL), -('4170','Morningstar Helmet Purple','Armor','Helmet','a8a95e72-157d-415d-bbe4-08fad4445c85','','',NULL), -('4171','Manned Turret','TurretBase','MannedTurret','2d29e585-c5c4-4e75-a4e1-847461d9bb32','','',NULL), -('4172','Vanquisher X-IR Torpedo','Missile','Torpedo','f513c4cc-964b-429f-b245-f89c6154ad79','','',NULL), -('4173','Medical Bed','Usable','UNDEFINED','a7410890-94f8-4436-b372-34819f1bcb34','','',NULL), -('4174','HoverQuad Lovestruck Livery','Paints','UNDEFINED','7e936fa7-2fad-4918-a955-b678123641f7','','',NULL), -('4175','F55 \"Scorched\" LMG','Weapon','Medium','4a98ac2d-1bd6-42c9-a2a4-e617a9ec120f','','',NULL), -('4176','Box_050x050x025','Cargo','Small','96f7d3df-92a9-4e9a-bde7-5eabd4fec7d6','','',NULL), -('4177','Vagabond Jacket Grime Blue','Char_Clothing_Torso_1','UNDEFINED','9259f630-3947-4d9c-bbdd-3a46a684067c','','',NULL), -('4178','TrueDef-Pro Core Base','Armor','Torso','b6317788-ec10-44c1-a457-d9400670c962','','',NULL), -('4179','Drift','QuantumDrive','UNDEFINED','c933bab5-5eec-42fe-ae83-b2c5ff91502f','','',NULL), -('4180','Waylite Shoes Cobalt','Char_Clothing_Feet','UNDEFINED','e43abcf9-4cfa-4587-a5b4-66dcd0e652e0','','',NULL), -('4181','AAT-34 Turret','Turret','MannedTurret','8acb6ddc-9f7e-4d19-867a-af6aa9156ae1','','',NULL), -('4182','Prism \"Irradiated\" Laser Shotgun ','Weapon','Medium','979be032-a7e7-472c-9322-dbde7537ac25','','',NULL), -('4183','Inquisitor Core Yellow','Armor','Torso','c5b10269-79b0-46b0-bb1a-f245ba66f5d3','','',NULL), -('4184','Gladiator 2955 Ship Showdown Poster','Misc','Utility','d4d865f2-8de1-4ac5-8c4a-bac74a4c4ddc','','',NULL), -('4185','Reclaimer 2954 Ship Showdown Poster','Misc','Utility','b616a32d-79df-4f32-92e4-704e40bbb018','','',NULL), -('4186','600i 2953 Ship Showdown Poster','Misc','Utility','e66e8cf2-ce8b-4518-b283-54b76e593a8b','','',NULL), -('4187','Custodian \"Citizen\'s Pride\" SMG','Weapon','Medium','57d2c022-6489-4565-9661-9db82c1a3ef9','','',NULL), -('4188','Medical Bed','Usable','UNDEFINED','1e13ee6d-3cff-4c66-b152-536b870e942b','','',NULL), -('4189','Remote Turret','Turret','GunTurret','31ee9a74-3f52-48d2-8b31-fbb4e4535822','','',NULL), -('4190','Door Control','Door','UNDEFINED','64b5db2a-0a9e-45ad-a134-9d84ac90bfaa','','',NULL), -('4191','test_PlayerRadar','Radar','ShortRangeRadar','a107d68a-769f-4247-b388-42e18d0f328f','','',NULL), -('4192','SCItemDisplayScreen_NewsScreen_Area18','Display','Default','4828fb1f-7306-4b50-a97f-c51e31651595','','',NULL), -('4193','Internal Tank','FuelTank','Fuel','b59528b8-7208-4ae2-a2f0-f38578cc0fad','','',NULL), -('4194','VNCL_Glaive_Thruster_bottom_front','ManneuverThruster','JointThruster','ed7aacf1-0ea5-4482-adee-b60175b37157','','',NULL), -('4195','SHIELDS','ShieldController','UNDEFINED','b69a2569-3dcf-4428-bc25-2006553da73a','','',NULL), -('4196','RSI_Polaris_Dashboard_TurretSeat_Left','SeatDashboard','UNDEFINED','c10929ac-2208-44fa-bfa0-a50985d4bfdf','','',NULL), -('4197','Cup','Drink','UNDEFINED','059846ac-a297-490a-9839-6c470720af22','','',NULL), -('4198','Door Control','ControlPanel','DoorPart','3bfd562a-6119-4808-b0bc-ae5a3d391990','','',NULL), -('4199','Door Control','Door','UNDEFINED','0660f1a4-46ba-46c8-8a14-11598a0f80c8','','',NULL), -('4200','Zephyr','QuantumDrive','UNDEFINED','94b56098-d5c0-4796-a502-790cbccf34c6','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('4201','ESPR_BallisticCannon_Ventilation_S1','WeaponAttachment','Ventilation','03b1b646-26ef-4fd5-98b8-7dec31b29d28','','',NULL), -('4202','Inmate Work Helmet','Armor','Helmet','73bb82df-2fd1-489d-9037-c99c43065b94','','',NULL), -('4203','Defender Ocellus Livery','Paints','UNDEFINED','04a3695c-cf61-4bec-a008-9f89302fd2ed','','',NULL), -('4204','H_Dashboard_Projector_HUD_ANVL_Hornet_F7CM','Display','UNDEFINED','eafb12a1-f068-4fe9-b94a-fef722ec4e78','','',NULL), -('4205','f_human_mannequin_marine_heavy','ShopDisplay','UNDEFINED','f45bd3a6-8518-4c2f-8e84-57238ffc7d08','','',NULL), -('4206','ANVL_Door_Decal_Carrack_Shower','Decal','DoorPart','5dc649b0-04df-44a1-8e1a-6e99601cca68','','',NULL), -('4207','Carryable_2H_FL_MissionItem_Stolen_Goods_a','Misc','UNDEFINED','0c245ee8-998d-4df2-8353-cd4915bec295','','',NULL), -('4208','Carrack Plushie','Misc','Personal','7b6db9c4-826f-4d39-bc32-3b39d82e6aff','','',NULL), -('4209','sc_nvy_bdu_jumpsuit_02_01_11','Char_Clothing_Torso_1','UNDEFINED','5251a8f6-4513-4191-9123-378ad981dcb6','','',NULL), -('4210','SHIELDS','ShieldController','UNDEFINED','64aee44a-6dc0-468c-b5bc-3588ffca06ae','','',NULL), -('4211','Cutlass Red Plushie','Misc','Personal','9305a03f-8abc-421e-9d15-14af222b02e5','','',NULL), -('4212','Bottle','Bottle','Default','11a25740-0cda-462b-b802-023326936b8a','','',NULL), -('4213','Coda \"Ascension\" Pistol','Weapon','Small','1c3b19d9-6e60-4ec6-8fe2-968079e6edbc','','',NULL), -('4214','VariPuck S6 Gimbal Mount','Turret','GunTurret','a02c039e-1efe-4a75-891f-dc08b6b60d26','','',NULL), -('4215','Veil Flash Hider1','WeaponAttachment','Barrel','04f546d6-651a-47f4-b0ae-64ed2b37557b','','',NULL), -('4216','Seat','SeatAccess','UNDEFINED','3e87f1c9-e729-4628-a589-97f0638b01d1','','',NULL), -('4217','DCP Armor Arms Cobalt Camo','Armor','Arms','2ca63637-dad8-41f3-b3bd-2443b76b81fa','','',NULL), -('4218','RSI_Bengal_Thruster_Retro_Top_Right','ManneuverThruster','JointThruster','9a7e2c54-38bd-45d9-81f3-4e86d5399a2a','','',NULL), -('4219','Esperia Prowler Turret','Turret','BallTurret','92d6e85c-e59a-4826-bcfa-f96e580164b1','','',NULL), -('4220','Marhsal Sleeveless Vest Hunter Green','Char_Clothing_Torso_1','UNDEFINED','64e7b9fd-1e81-46fc-9079-a0faf470c1f4','','',NULL), -('4221','Monde Legs','Armor','Legs','3f638756-9a20-4e2c-a6cb-1bd7118ca54c','','',NULL), -('4222','Custodian \"Nightstalker\" SMG','Weapon','Medium','dba2eef6-a4eb-4021-befc-d67d0ad19f35','','',NULL), -('4223','Seat','Usable','UNDEFINED','09e4cf11-5844-4d85-921f-cf21c9f99852','','',NULL), -('4224','300 Series Citron Paint','Paints','UNDEFINED','c14d3896-cb42-43a2-a773-ad40b37fed71','','',NULL), -('4225','Weapon_Rack_1_BEHR_LMG_Common_001','Usable','UNDEFINED','09dd0b8d-0a81-4ffc-a322-d6284a7bf270','','',NULL), -('4226','Second Tevarin War White Dress Jacket','Char_Clothing_Torso_1','UNDEFINED','7a7348b2-d68d-4234-ae67-7807a9eddc02','','',NULL), -('4227','Door Control','ControlPanel','DoorPart','37d95f6b-8f82-4259-b58b-71fc13663c29','','',NULL), -('4228','Seat','SeatAccess','UNDEFINED','6a0dba8e-a38c-4fc6-a21b-43fd761b93ca','','',NULL), -('4229','C8X Pisces TSB Flight Blade','FlightController','UNDEFINED','7a9eab58-3244-4719-98b3-8f8ec573d754','','',NULL), -('4230','Venture Arms Red','Armor','Arms','551aa937-41f0-4862-8e30-c303a5c0af2e','','',NULL), -('4231','Seat','Usable','UNDEFINED','36736e03-9094-4596-9f43-68fc1c8453aa','','',NULL), -('4232','Cargo Hat','Char_Clothing_Hat','UNDEFINED','1897a39f-f9b3-4ac3-86a3-8336d4500ad7','','',NULL), -('4233','Carryable_2H_CY_furniture_pillow_1_a','Misc','UNDEFINED','e18cfdb2-b16a-4f7c-9fca-26213f071db9','','',NULL), -('4234','Door Control','ControlPanel','DoorPart','f1306e85-4f30-42c1-8ebc-a501981325e6','','',NULL), -('4235','Spark I-G Missile','Missile','GroundVehicleMissile','dd3a17c3-cfac-49b4-990a-64ac2efa22e1','','',NULL), -('4236','Cargo_Comm_125x3_Vice_DistilledSpirits','Cargo','Cargo','0b4d2a19-785e-4af6-a22a-a4453199861b','','',NULL), -('4237','Starlancer Tellus Livery','Paints','UNDEFINED','f1e73572-ede3-4d7e-9ee1-45124fd94016','','',NULL), -('4238','Head_Teeth','Char_Accessory_Head','UNDEFINED','8011c1ea-de55-4a23-9c1b-553ef3017aea','','',NULL), -('4239','Radar_Display_10cm','Display','UNDEFINED','a835bda2-a91d-4c05-938c-7170e471e78e','','',NULL), -('4240','Remote Turret','Turret','Utility','109cb42f-54b2-4e3c-914f-9baca40b3a22','','',NULL), -('4241','Hermes Missile Rack','MissileLauncher','MissileRack','d747f530-c24a-48c0-921b-6ebff6420406','','',NULL), -('4242','Gamma Duo LL (2x Holographic)','WeaponAttachment','IronSight','c1d28932-267f-4867-9d29-2d6f0aa50dd2','','',NULL), -('4243','Stileron','Cargo','Cargo','0aef5277-d2e9-48b2-a2b7-9e58cfbd8b0f','','',NULL), -('4244','Laranite (Raw)','Cargo','Cargo','91b47a8b-23c7-4949-97f4-2518282808d8','','',NULL), -('4245','Avenger Copernicus Livery','Paints','UNDEFINED','05694347-4761-446b-8305-78e8af4b911a','','',NULL), -('4246','FBL-8a Core Righteous','Armor','Torso','7a407dec-173c-4767-a783-d3218fe80377','','',NULL), -('4247','BANU_TachyonCannon_Ventilation_S1','WeaponAttachment','Ventilation','678e23e3-b06f-40a1-9e20-c3664ffc0ab1','','',NULL), -('4248','Grav Lev 1','ManneuverThruster','JointThruster','27422988-06ff-4472-87a0-7f347392ccbf','','',NULL), -('4249','VariPuck S3 Gimbal Mount','Turret','GunTurret','5700db93-a193-4e4e-b3e8-e1500b60168f','','',NULL), -('4250','Stims','Cargo','Small','921e1e5d-c2ee-4dc8-8133-92574a15e96d','','',NULL), -('4251','Carbon-Silk','Cargo','Cargo','9d421bbe-bb2b-48e2-a2b5-6fcd13432dab','','',NULL), -('4252','Flight Blade','FlightController','UNDEFINED','9cdf411e-8253-414f-a6f1-2c37a5e1081f','','',NULL), -('4253','Revenant Tree Pollen','Cargo','Cargo','5b8eb60d-0d36-4138-b874-5304f228420f','','',NULL), -('4254','LeMarque Pants Tan','Char_Clothing_Legs','UNDEFINED','da3a0745-38eb-464f-af0b-4969ab5ee02e','','',NULL), -('4255','BEHR_LaserCannon_PowerArray_S1','WeaponAttachment','PowerArray','cec4b036-0004-4742-a5f0-e32a217b6b3d','','',NULL), -('4256','Inquisitor Arms Sienna','Armor','Arms','98451bdd-049b-47ce-9d7e-d4d236bf6601','','',NULL), -('4257','Paint_300_SeatTrim_Wood','Misc','UNDEFINED','76990719-bd50-4ce5-ab11-98074a1b0e58','','',NULL), -('4258','Ball','Char_Head_Piercings','UNDEFINED','06f4b625-b388-4420-a86e-018412ab07f8','','',NULL), -('4259','ORIG_125a_Thruster_Mav_Fixed_Bottom','ManneuverThruster','FixedThruster','6f98375d-c208-42a2-89d7-9df9ec9fcc41','','',NULL), -('4260','Ardor-1 Salvaged Repeater','Weapon','Gun','ebf157d4-5b04-4f0c-95a4-ad22b34b0cce','','',NULL), -('4261','Loscha Work Vest Horizon','Char_Clothing_Torso_1','UNDEFINED','97591280-4c49-4b2a-8e1f-bde0da440a95','','',NULL), -('4262','MRAI_Pulse_LX_Thruster_Retro','ManneuverThruster','FixedThruster','56c78647-4e37-483b-aa0a-f752503e4a6d','','',NULL), -('4263','Railing_Straight_1m_LowTech_Util_Stairs_01x01_a','Usable','UNDEFINED','915a1294-6d90-4eca-8471-00dce6f92e34','','',NULL), -('4264','Surveyor-Max','Radar','MidRangeRadar','d055fbff-ec64-4a81-8d0b-c6ffcbd2b83e','','',NULL), -('4265','Door Control','Door','UNDEFINED','18793090-7ea9-4a40-89d5-f928dce0cfa2','','',NULL), -('4266','MASTER_SurfaceOutpost_PowerModule_Screen','Misc','UNDEFINED','ed55f19c-6aec-4dad-aae5-a14809206ede','','',NULL), -('4267','Landlite Boots Sienna','Char_Clothing_Feet','UNDEFINED','8007dc34-fdae-4acd-9f45-c8bca11ad719','','',NULL), -('4268','Animus Missile','WeaponAttachment','Missile','ccaa28df-74dd-4ecb-87ae-40e04195a4aa','','',NULL), -('4269','SHIELDS','ShieldController','UNDEFINED','3e6fcf88-f86e-4388-a3e7-b55ef390652a','','',NULL), -('4270','Morningstar Helmet Twilight','Armor','Helmet','2b12c637-eb2d-4f1c-8531-d559f4e787a1','','',NULL), -('4271','Cargo_Comm_125x3_Vice_Altruciatoxin_Unprocessed','Cargo','Cargo','682f89bb-546d-4892-97d7-057e376a886e','','',NULL), -('4272','Chili Dog','Food','Junk','2d7b0668-af02-41ed-b712-ef553c79a99a','','',NULL), -('4273','Internal Tank','FuelTank','Fuel','ec4ea0fe-a811-4f8a-8924-22f16ca5a335','','',NULL), -('4274','Door Control','ControlPanel','DoorPart','f9ad0aad-c2ab-41f1-a44e-cfc14b0db57f','','',NULL), -('4275','Station','SeatAccess','UNDEFINED','ef777936-aa24-4078-b63d-8492650b54d1','','',NULL), -('4276','TrueDef-Pro Core Aqua/Black','Armor','Torso','97ea41f0-52d1-4360-b466-9340efd9c394','','',NULL), -('4277','Strata Arms Hurston Black','Armor','Arms','e17c69d2-a50e-467d-8baa-b923b010faf2','','',NULL), -('4278','Scrap','Cargo','Cargo','73b7c014-c8f1-468c-a263-e4e51234e0d6','','',NULL), -('4279','RSI_Aurora_MR_Thruster_Main','MainThruster','FixedThruster','627f6ac8-b4e3-4c73-821d-b755c00e0c07','','',NULL), -('4280','ORIG_890_Jump_Thruster_Retro_R','ManneuverThruster','FixedThruster','dc4b3693-497c-4a70-a7e2-108a64a65cf0','','',NULL), -('4281','Door Control','ControlPanel','DoorPart','6e7b685c-921a-47af-a605-20032ad33a65','','',NULL), -('4282','Argon','Cargo','Cargo','d644b3d2-f33f-4b1c-a2ee-062af6c50bfa','','',NULL), -('4283','game_chess_1_queen_b','Misc','UNDEFINED','59d20381-98b8-4584-90a9-9339ab297835','','',NULL), -('4284','Table_2_Seat_High_Lowtech_2_a','Usable','UNDEFINED','5be1c101-7011-437a-8dcb-a81a082f8bcb','','',NULL), -('4285','Seat','SeatAccess','UNDEFINED','afc7ce75-6924-401a-8a78-b14232b429a4','','',NULL), -('4286','Col_A_Airlock_Rooftop_Small','Usable','UNDEFINED','5c40836a-8af8-4145-b84a-dbfcf02d5ae9','','',NULL), -('4287','ORIG_100i_Thruster_Mav_Right','ManneuverThruster','FixedThruster','a483dab2-ddc3-4837-a487-dbf46ecaab72','','',NULL), -('4288','Personal Storage','Cargo','UNDEFINED','a93b2061-918f-4485-8db5-adfa7229d576','','',NULL), -('4289','Inquisitor Core Purple','Armor','Torso','f33dfc36-2a5c-441b-af16-f8d56f93c589','','',NULL), -('4290','TRGT. STATUS','Seat','UNDEFINED','bd7ebaab-43ad-4fa9-95e7-f235e6fee293','','',NULL), -('4291','Odyssey II Helmet Alpha','Armor','Helmet','b64c83b1-9269-4f94-a29a-55f8d06b8a2f','','',NULL), -('4292','Internal Tank','FuelTank','Fuel','ed17c68a-47ff-4ac5-a0b0-02f922bddd77','','',NULL), -('4293','MSD-543 Missile Rack','MissileLauncher','MissileRack','3510bfe7-fb3e-42bf-88d8-7a6d02822b36','','',NULL), -('4294','display_wall_hero01_centermass_24x01x06_a','ShopDisplay','UNDEFINED','fe785ced-2588-49fe-85d7-474d61ca78ea','','',NULL), -('4295','Small Artifact Fragment (Damaged)','Misc','UNDEFINED','b0517e28-d542-41a1-9cb8-81937107fbc5','','',NULL), -('4296','Door Control','ControlPanel','DoorPart','9d354660-5e53-40bb-b697-4d9b4fbcb72a','','',NULL), -('4297','Diamond (Raw)','Cargo','Cargo','bad10b1f-83a6-476d-bbd4-1b8e05406bb6','','',NULL), -('4298','Radar_Display_Nova','Display','UNDEFINED','2637317d-fcbe-43a2-aa2b-7f2d4b87b1d1','','',NULL), -('4299','hooks_torso0_02x01x04_01Port','ShopDisplay','Default','4a3c5df1-de92-40a3-bfd9-5e6d926a8f81','','',NULL), -('4300','H_Dashboard_Projector_HUD_AEGS_Eclipse','Display','UNDEFINED','2082427a-9d01-46a7-b8c7-0ae35e20f4ee','','',NULL), -('4301','SLAM','Cargo','Cargo','c17e01a8-43d7-4f7f-ad2e-354a56673063','','',NULL), -('4302','DockingTube_Fuel_Ports_VNCL_Glaive','DockingCollar','UNDEFINED','3a0f3b33-74ab-4abb-ae40-86a73e4fa1ae','','',NULL), -('4303','sc_nvy_bdu_jumpsuit_02_01_01','Char_Clothing_Torso_1','UNDEFINED','e79c7a0e-420a-47e7-9221-8e71f7d952fc','','',NULL), -('4304','Nomad 2951 Auspicious Red Ram Livery','Paints','UNDEFINED','8aef237a-ba65-4e36-9924-15fa2d9679d8','','',NULL), -('4305','MISC_Prospector_Thruster_Aux','MainThruster','FixedThruster','c86e7c9a-5662-4727-96fd-f473eb93f595','','',NULL), -('4306','bench_table_showroom_1_b','Usable','UNDEFINED','298ea547-16a0-4e0c-8506-53c6c30cc8d4','','',NULL), -('4307','TRGT. STATUS','Seat','UNDEFINED','832b2f7b-b000-4711-86c2-ba69398a4531','','',NULL), -('4308','AImodule_ATC_OrisonATC01','AIModule','UNDEFINED','1f477c17-2182-4888-8cf7-d7420ce66f5d','','',NULL), -('4309','Door','Door','UNDEFINED','e1d40703-48c3-400a-95d4-59cb5ef43af7','','',NULL), -('4310','Arclight \"Stormfall\" Pistol','Weapon','Small','d1d33afb-779f-4d4d-977a-5ce26f384cf0','','',NULL), -('4311','FS-9 \"Blacklist\" LMG','Weapon','Medium','19c405b8-8b59-44fa-9bf9-a378aeb6e3bd','','',NULL), -('4312','Bed','Usable','UNDEFINED','31b03513-a0a3-4014-801e-bdf19025b98c','','',NULL), -('4313','RSI_Zeus_ES_Thruster_Mav','ManneuverThruster','UNDEFINED','c4e5e99f-5585-4d3c-b917-8337caaa0d4f','','',NULL), -('4314','Internal Tank','FuelTank','Fuel','f0aa0286-b2d8-40e1-b4d3-acbe328876a6','','',NULL), -('4315','ANVL_Pisces_Thruster_Mav_Fixed_C8R','ManneuverThruster','FixedThruster','bb98b41f-fdc3-4e21-8148-97868b3c60f1','','',NULL), -('4316','ORIG_600i_Dashboard_Expl_Module_Right','SeatDashboard','UNDEFINED','acd22483-21be-42d8-93d6-69d7b9495cc3','','',NULL), -('4317','Inquisitor Core Grey','Armor','Torso','2a86c2e0-26f5-49e7-b009-96ba7eee1739','','',NULL), -('4318','Opus Gloves','Char_Clothing_Hands','UNDEFINED','24439606-8c70-40a5-87ed-51a9fef0dcfa','','',NULL), -('4319','300 Series Nightshade Paint','Paints','UNDEFINED','afe01fed-5882-49cb-82c3-a0bc065803cb','','',NULL), -('4320','box_plastic_4_weapon_opened_015x01x0025_a_apar_special_ballistic_01','Misc','UNDEFINED','8c9bada6-a8a7-4df5-ad2e-d1a52e5c326e','','',NULL), -('4321','Door Control','ControlPanel','DoorPart','714d51cd-26a2-41b4-9379-8d3ed9f6c23a','','',NULL), -('4322','Construction Rubble','Cargo','Cargo','86a9223f-af16-4b7c-beef-f0f20e72a491','','',NULL), -('4323','Sion Compensator1 ','WeaponAttachment','Barrel','2d559b31-cf5f-4963-b276-c687f49601de','','',NULL), -('4324','Bed','Usable','UNDEFINED','919a7a19-3d3f-417a-9fcd-9dc50a45d1a5','','',NULL), -('4325','PAB-1 Core Cry-Astro Edition','Armor','Torso','534caecf-9f27-4ef4-a1f2-177995e95e20','','',NULL), -('4326','Hardean Jacket and Shirt Ash','Char_Clothing_Torso_1','UNDEFINED','d2585b66-0aa1-4f0a-b894-a31ef46cb687','','',NULL), -('4327','rod_torso0_03x01x04_18Ports','ShopDisplay','Default','5cafd2e3-5e0b-4340-8834-3e7546c27a6e','','',NULL), -('4328','SynergySport','Drink','Bottle','ecca3c6e-224b-4094-bc79-ceb223f90ab7','','',NULL), -('4329','MedGel','Cargo','Cargo','d185dd9a-09fd-490b-a344-7e8e76aad587','','',NULL), -('4330','G-2 Helmet Crusader Edition','Armor','Helmet','5bad52f0-3c9e-40b1-b624-74cad3f5936c','','',NULL), -('4331','ANVL_Hawk_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','d2bc2437-d4ae-43c7-b9ce-90a2253e85dd','','',NULL), -('4332','Corbel Core Crush','Armor','Torso','f6de17fd-cacf-4841-b1b3-412151558e88','','',NULL), -('4333','Table_Desk_1_Seat_CNOU_Nomad','Usable','UNDEFINED','b8e12270-c826-456a-8f6b-f2b5f915b1bc','','',NULL), -('4334','Orison Shipyards T-Shirt Black','Char_Clothing_Torso_0','UNDEFINED','31509d6a-2a2f-4d48-9b24-39a1e2a5ca29','','',NULL), -('4335','Vanduul Decoy Launcher','WeaponDefensive','CountermeasureLauncher','b792f73f-d0c7-4651-b546-3127835aa1e5','','',NULL), -('4336','Door','Door','UNDEFINED','331d6500-232e-478c-ae38-c0023d9279cc','','',NULL), -('4337','Nova Badlands Livery','Paints','UNDEFINED','5d5bf916-ef0a-454b-8d81-0c3034dd8cef','','',NULL), -('4338','Souvenirs','Cargo','Cargo','51677282-a942-4e6d-aac3-50d4b5bacfbc','','',NULL), -('4339','Seat','Usable','UNDEFINED','fad4fd8f-8394-417b-98ac-06dffccc00b8','','',NULL), -('4340','RSI_Zeus_CL_Thruster_Mav_Bottom','ManneuverThruster','UNDEFINED','a775b002-9890-48a8-9bd2-0fd75fed31b8','','',NULL), -('4341','Aril Core Quicksilver','Armor','Torso','57c743cc-b7ea-4d97-81ac-5626bdb56f76','','',NULL), -('4342','Bar_Table_small','Usable','UNDEFINED','aad8b68d-0d87-4e58-a1e4-ae38e6deb8eb','','',NULL), -('4343','Bed','Usable','UNDEFINED','01970376-619c-4de9-a8a9-9a42f440b2dd','','',NULL), -('4344','Box_Plastic_00625x00625x00625','Cargo','Small','efafd816-fb45-4988-9365-5f3ed78dcaa8','','',NULL), -('4345','Tolo Jacket Crusader Edition Dark Teal Stripe','Char_Clothing_Torso_1','UNDEFINED','5a1253fa-f992-4d8b-8a0b-12e80f5b2c31','','',NULL), -('4346','Oracle Helmet Olive','Armor','Helmet','3433646d-3d11-4125-80de-c2b2f8e9051c','','',NULL), -('4347','Taranite','Cargo','Cargo','ae171043-617c-458f-b67e-14f609fcea93','','',NULL), -('4348','ATLS Carbon Black Livery','Paints','UNDEFINED','adc58623-3f7b-467c-b7f8-6034416febce','','',NULL), -('4349','Controller_Salvage_MISC_Fortune_Secondary','SalvageController','UNDEFINED','9d4eb852-cf1e-40a3-9ac4-5a7ebbfa0379','','',NULL), -('4350','TrueDef-Pro Legs Black/Gold/Silver','Armor','Legs','64012c1d-d762-4e5c-86af-33da8d775c2c','','',NULL), -('4351','can_drink_3_flood_shop_2x5_a','ShopDisplay','Default','61c32bca-68fa-4a8b-9158-53f1e7352fa5','','',NULL), -('4352','rod_legs_02x01x04_09Ports','ShopDisplay','Default','8b13f01b-8632-4b85-a1d9-f18da11dc949','','',NULL), -('4353','Strata Legs','Armor','Legs','245424cb-f2fc-4ac5-8959-a971009e8607','','',NULL), -('4354','Radar_Display_Hurricane','Display','UNDEFINED','6c35a902-2b08-428a-8841-ef69110dfa13','','',NULL), -('4355','Dragonfly Mistwalker Livery','Paints','UNDEFINED','d91d198c-e6f4-4f34-aaeb-86803ceb7b63','','',NULL), -('4356','Dashboard','SeatDashboard','UNDEFINED','c6da185a-53fc-4e90-a830-9b354922d49f','','',NULL), -('4357','Overlord Arms Cardinal','Armor','Arms','4fda63e4-eb59-4c9e-8f5d-8de2a5db028b','','',NULL), -('4358','F8 Lightning 2956 Auspicious Red Rat Livery','Paints','UNDEFINED','3c206ab7-dcaa-4e93-b2b7-98b4dca0a19b','','',NULL), -('4359','Lillo Pants Orange','Char_Clothing_Legs','UNDEFINED','72764009-523d-4f75-bbc5-112302f2557b','','',NULL), -('4360','MISC_Fury_Thruster_FixedMav','ManneuverThruster','FixedThruster','7bf0536b-e299-4043-a47b-bfe83e6ecdb8','','',NULL), -('4361','Balor HCH Helmet Yellow','Armor','Helmet','43ba9e3a-ed00-42db-95ac-dd7e14f3cb18','','',NULL), -('4362','Ouratite','Cargo','Cargo','860b8fb9-0ba3-4f04-9ab8-6f722bff28c0','','',NULL), -('4363','Cargo_Comm_125x3_Mineral_Diamond_a','Cargo','Cargo','5483659d-5bb6-48ff-98f2-2167e8865f44','','',NULL), -('4364','Venture Helmet Executive','Armor','Helmet','a5edeed3-b1a1-4452-8c96-1ef0907ab097','','',NULL), -('4365','ORC-mkV Core Sakura Sun Edition','Armor','Torso','b0f45c33-4fe5-444b-9604-22222a848f0b','','',NULL), -('4366','Aphorite','Cargo','Cargo','d0fcc11f-3bb9-425e-ba1e-d2546e952668','','',NULL), -('4367','Davin Work Gloves Orange','Char_Clothing_Hands','UNDEFINED','ab2bb0f4-e868-4df0-aeb1-b27099fdef22','','',NULL), -('4368','RSI_Hermes_CargoGrid_Main','CargoGrid','UNDEFINED','96e803ed-1b43-4035-b654-94b76c7b2b04','','',NULL), -('4369','PAB-1 Legs Yellow','Armor','Legs','10bd760e-5fef-4ca4-a767-d3911549ff69','','',NULL), -('4370','Seat','SeatAccess','UNDEFINED','ca5521e4-bb44-485f-863e-733946a99fdf','','',NULL), -('4371','Cliffback T-Shirt Red','Char_Clothing_Torso_0','UNDEFINED','277913db-ceaf-4898-b792-82363aa27547','','',NULL), -('4372','Ardent Boots','Char_Clothing_Feet','UNDEFINED','198e3353-ad3e-4474-ac9a-6253ff91cb25','','',NULL), -('4373','Weapon_Rack_Boarding_BEHR_Rifle_Common_001','Usable','UNDEFINED','12dce52f-44c9-4fa9-bde0-ea8d20c94a6f','','',NULL), -('4374','Quartz Energy SMG','Weapon','Medium','bf262b5e-71dc-4376-8afb-48eafe885d6d','','',NULL), -('4375','Seat','SeatAccess','UNDEFINED','4e7b6050-90b8-4065-ae30-6bc81468da7f','','',NULL), -('4376','Caterpillar 2949 Best In Show Livery','Paints','UNDEFINED','7cfda00c-7823-4581-8f8c-7a651106a440','','',NULL), -('4377','Guardian Harlequin Livery','Paints','UNDEFINED','f0a22a74-8e12-4142-bf0e-cd6710e1b6e5','','',NULL), -('4378','Door Control','ControlPanel','DoorPart','acdb64ab-020c-41f3-95d4-4518cbebac05','','',NULL), -('4379','Odyssey II Undersuit Grey/Black','Armor','Undersuit','5276214f-ab90-4619-ba76-4a0d5fc30166','','',NULL), -('4380','sc_nvy_bdu_jumpsuit_01_01_01','Char_Clothing_Torso_1','UNDEFINED','6f9dbc34-c566-4c69-8c74-16b40fd69de5','','',NULL), -('4381','Railing_Straight_4m_LT_Delta_b','Usable','UNDEFINED','c8cd5365-a295-4a87-9711-088b2b4b2064','','',NULL), -('4382','Paladin Helmet White/Black','Armor','Helmet','ab817896-50f8-416b-9ed7-5f2505cea11a','','',NULL), -('4383','AEGS_Firebird_CML_Chaff','WeaponDefensive','CountermeasureLauncher','f1002aa4-8650-4e86-8dbf-1c7495f01abb','','',NULL), -('4384','Door Control','ControlPanel','DoorPart','7cc97ad8-855b-4a04-8fab-a292f8d167c1','','',NULL), -('4385','DockingTube_Fuel_Ports_GLSN_Shiv','DockingCollar','UNDEFINED','0796d9fd-4ade-4ad2-9d87-0629803c1a42','','',NULL), -('4386','Deo Shirt Red','Char_Clothing_Torso_0','UNDEFINED','c23979ae-40db-4951-bd24-ce1bbf6c718f','','',NULL), -('4387','Campo Shoes Slate','Char_Clothing_Feet','UNDEFINED','49403491-b488-4fce-8008-aff53c725ba7','','',NULL), -('4388','mobiGlas Blush Casing','MobiGlas','Personal','d7c85567-a8a0-4aca-bc4c-1de88cd4c722','','',NULL), -('4389','Avenger Stalker PHB Flight Blade','FlightController','UNDEFINED','c4e95e93-0f73-436b-b70a-98a07fea330c','','',NULL), -('4390','Cryo-Star XL','Cooler','UNDEFINED','d36feefd-7377-4188-9271-355709039a39','','',NULL), -('4391','Elevator Control','Elevator','UNDEFINED','af2edd4e-465b-4bea-8993-ee8422fd7d52','','',NULL), -('4392','Door Control','Door','UNDEFINED','eedfcb7a-a1c9-4c47-b4ad-c2ad4835304d','','',NULL), -('4393','Seat','SeatAccess','UNDEFINED','9d2f3b9c-4149-4ca9-9dd7-712e6e517bbb','','',NULL), -('4394','MISC_Starfarer_CargoGrid_Center','CargoGrid','UNDEFINED','f98ff545-f162-495a-9dfb-4c7809b2ee5e','','',NULL), -('4395','Inquisitor Legs Brimstone','Armor','Legs','6a42da28-8905-4639-af9d-ce9f2c368d98','','',NULL), -('4396','RSI_Apollo_OC_Left','Room','UNDEFINED','452867d0-9b12-503c-9360-e3cd96c56a90','','',NULL), -('4397','Test_OutpostMission_DataPad_KeyCode_4x3_Screen_3','Display','UNDEFINED','275d7296-9ee1-4ef0-887c-b4196874483d','','',NULL), -('4398','A03 \"Luckbringer\" Sniper Rifle','Weapon','Medium','c98e422d-7380-4c96-b47e-679551699ed4','','',NULL), -('4399','Radar_Display_Valkyrie','Display','UNDEFINED','79f39839-43c2-4f57-bba8-f0ce30eefaeb','','',NULL), -('4400','Arclight \"Warhawk\" Pistol','Weapon','Small','20d6478d-2cf5-4fe7-8f24-4d29e2ae1b88','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('4401','ESPR_LaserCannon_Ventilation_S2','WeaponAttachment','Ventilation','39583983-c209-4677-bb16-68fcd04350f4','','',NULL), -('4402','Overlord Core Polarity','Armor','Torso','5b47b51a-5285-4e54-ae68-a6f6a38d3e2a','','',NULL), -('4403','Seat','SeatAccess','UNDEFINED','caeb2320-a228-476c-aec4-2782cc0976b6','','',NULL), -('4404','ORIG_400i_Thruster_Retro_Left','ManneuverThruster','Retro','8145be5f-0e93-4a68-8a81-adefd97ec3cf','','',NULL), -('4405','Zeta-Prolanide','Cargo','Cargo','6c5efd60-805f-4dbf-8df4-255f03604e21','','',NULL), -('4406','SHIELDS','ShieldController','UNDEFINED','4a29eada-c35b-45dd-8d02-06a494009641','','',NULL), -('4407','Arrow Twilight Livery','Paints','UNDEFINED','c166a7d1-2bc4-4ed3-a2ca-253967511607','','',NULL), -('4408','Large Container','Container','UNDEFINED','06b6fb5f-ad7a-437f-9e03-ddbd6e96abde','','',NULL), -('4409','Door Control','Door','UNDEFINED','27c7d8f1-56ea-4b86-b4fd-3e7f2902a4b6','','',NULL), -('4410','Door Control','Door','UNDEFINED','c316f081-6d7c-425c-a4c7-2a1e68b552ca','','',NULL), -('4411','Utensil_Plate_Noodles','Misc','UNDEFINED','6d0dcddd-f29c-4409-87d0-732b2cd11c52','','',NULL), -('4412','Door_Ship_Sensor_Proximity_SpawnCloset_2x2x2_5','Sensor','DoorPart','4653b0aa-25ca-476e-a142-8a6fe5a89560','','',NULL), -('4413','Internal Tank','QuantumFuelTank','QuantumFuel','c8b68ae3-7b12-4bc5-adf0-2afa1401c2f6','','',NULL), -('4414','Tolo Jacket Crusader Edition Teal Stripe','Char_Clothing_Torso_1','UNDEFINED','78baaa52-f072-42a0-bece-19085ff2095a','','',NULL), -('4415','SCItemDisplayScreen_ATLS_TractorBeam','Display','Default','291ce260-25ec-49c2-9acb-fb36041e5a9d','','',NULL), -('4416','Diamond Laminate','Cargo','Cargo','53b9b51d-c7d1-4626-bd3c-4b98686ad6aa','','',NULL), -('4417','table_bar_booth_4_seat_1_a','Usable','UNDEFINED','a7843513-d268-4d0a-a48b-e5971a8de2ca','','',NULL), -('4418','bottle_alcohol_1_beer_smoltz_100_e','Cargo','UNDEFINED','6332cf67-1443-46ca-96e4-243c106008ad','','',NULL), -('4419','Pulse Star Kitten Livery','Paints','UNDEFINED','4231964d-0ab6-664b-8a4b-15b75c5b49a3','','',NULL), -('4420','m_human_mannequin_legacy_marine_light','ShopDisplay','UNDEFINED','f85d3e10-3e59-4e2f-9f22-4c5930f24fcc','','',NULL), -('4421','Door','Door','UNDEFINED','a230509d-8a57-4c2f-87e4-cbd32e2abda5','','',NULL), -('4422','Maris Cannon','Weapon','Gun','61d5e767-fcee-4e70-ae9e-7671b6692404','','',NULL), -('4423','Door Control','ControlPanel','DoorPart','f4fdec5d-896d-48d5-98e5-7a5a96ceb019','','',NULL), -('4424','Door Control','DockingAnimator','UNDEFINED','2673eb4a-afac-4f86-b7b8-658a292e7450','','',NULL), -('4425','Overlord Arms Gilded','Armor','Arms','6256f60d-0803-4917-b0aa-2ba2328405ce','','',NULL), -('4426','GATS_BallisticGatling_Mounted_PowerArray_S1','WeaponAttachment','PowerArray','f2479c83-b1bf-44fc-9a13-4ff4b9f5c057','','',NULL), -('4427','Seat','Usable','UNDEFINED','33d7931f-c622-472f-b0aa-54643b1260e0','','',NULL), -('4428','Seat','SeatAccess','UNDEFINED','1af147fc-7e8f-4b09-8d96-dd71b074e8f1','','',NULL), -('4429','EE04 (4x Telescopic)','WeaponAttachment','IronSight','a392c30b-5798-4b35-a70c-01264c6a083e','','',NULL), -('4430','Morningstar Helmet Violet','Armor','Helmet','44cd257f-5443-45ac-a1ee-a3c75c521445','','',NULL), -('4431','AEGS_Door_Decal_WC','Decal','DoorPart','6e9de40a-97e2-418c-ad0a-d5afd36b164a','','',NULL), -('4432','Internal Tank','QuantumFuelTank','QuantumFuel','ee2e8fa7-0fa9-4ee6-ad26-1172e5773f02','','',NULL), -('4433','Door_NoRoomConnector_CSV_ComponentBay_Radar','Door','UNDEFINED','b3ee5d7d-3be4-4df0-9b3f-7668854a73a2','','',NULL), -('4434','Testudo Helmet Earthshake','Armor','Helmet','6514f103-dc40-4f90-ba79-f1a041c7dfac','','',NULL), -('4435','TMSB-5 Gatling','Weapon','Gun','cfbd1437-b6aa-480a-b3a2-5d3ad001c726','','',NULL), -('4436','OMNI-AFS-Sapphire Helmet','Armor','Helmet','c7f1c9e8-1265-406d-a982-c9b6b729eed5','','',NULL), -('4437','battaglia_jacket_01','Char_Clothing_Torso_1','Female','847a9725-f115-44e1-b25e-a6d857940623','','',NULL), -('4438','ARGO_ATLS_IKTI_ARGOS_Shoulder_Shield_R','Misc','UNDEFINED','e78389c9-14ab-4dab-84a0-68e3a58b94b4','','',NULL), -('4439','Internal Tank','QuantumFuelTank','QuantumFuel','5adc7f64-210f-4bbd-816a-3f15e1b119ee','','',NULL), -('4440','ArcCorp Cog Sphere Replica','Misc','Flair_Wall_Picture','c5a497f6-bc7e-43c4-8dcc-7c64632dcc68','','',NULL), -('4441','ht_glass_champagne_1_a','Misc','UNDEFINED','4426879f-ec95-4c9d-a742-8ccf0cb5fe16','','',NULL), -('4442','Year of the Dog Coin','Misc','Utility','f343cd34-ccd8-48cd-9843-4b1891a24e84','','',NULL), -('4443','Seat','SeatAccess','UNDEFINED','da031036-7cb1-4beb-bba1-8350b483a3b1','','',NULL), -('4444','Seat','SeatAccess','UNDEFINED','444119b3-0cde-45a2-b15f-b1c8391c8e30','','',NULL), -('4445','Defiance Legs Hailstorm','Armor','Legs','09c87d53-c66b-4d07-bae0-4808f015fb5f','','',NULL), -('4446','RSI_Zeus_CL_Thruster_Retro_Right','ManneuverThruster','Retro','0642b4e0-6c9e-4736-93f9-42a024c35564','','',NULL), -('4447','Seat','SeatAccess','UNDEFINED','a50319fd-b4af-4efa-8074-e94b1d230c83','','',NULL), -('4448','ADP-mk4 Core (Modified)','Armor','Torso','2a3ee53f-b683-4f8c-a6b2-33e52c64635a','','',NULL), -('4449','Invictus Flyby T-Shirt Dark Green','Char_Clothing_Torso_0','UNDEFINED','a577eeb0-69f7-41fb-bdd8-67cc04204a76','','',NULL), -('4450','Wolf Ranger Camo Livery','Paints','UNDEFINED','91ce5cb3-3a52-49b1-a37a-511004973dbe','','',NULL), -('4451','Invictus Flyby T-Shirt Olive Green','Char_Clothing_Torso_0','UNDEFINED','39650719-7e97-44bb-8ff7-0b526fd2b786','','',NULL), -('4452','m_human_mannequin_slaver_light_02','ShopDisplay','UNDEFINED','fa8a8ccb-b81d-4422-927a-5aa53450b0af','','',NULL), -('4453','ANVL_Lightning_F8_Thruster_Retro','ManneuverThruster','FixedThruster','4a84a3e6-7e44-4eaf-800a-da679f11ea36','','',NULL), -('4454','Seat','Usable','UNDEFINED','e420cec8-082b-4db0-af90-dd0bf1ec973c','','',NULL), -('4455','DRAK_Cutlass_Steel_Thruster_Maneuver_Bottom','ManneuverThruster','JointThruster','251e15fa-d67e-42c9-8432-9eb123ddfb55','','',NULL), -('4456','Door','Cargo','UNDEFINED','30907497-d09b-488c-b9ff-f4edcea58031','','',NULL), -('4457','Pisces Frontier Fighters Camo Livery','Paints','UNDEFINED','99083e47-0939-4303-8de5-0bd5ed302f36','','',NULL), -('4458','ANVL_Hornet_F7C_Thruster_Mav_Joint_02','ManneuverThruster','JointThruster','900f3db7-e005-4734-ab22-279b4db9c648','','',NULL), -('4459','Arden-SL Legs Red Alert','Armor','Legs','025bfe80-0781-4d9c-a437-24171d50d3a7','','',NULL), -('4460','HRST_LaserRepeater_Barrel_S3','WeaponAttachment','Barrel','b84d5dc9-308b-431d-a0b2-a5755b28c7f4','','',NULL), -('4461','Seat','Usable','UNDEFINED','29421fbf-4c02-40e9-9465-4e8aede48ff6','','',NULL), -('4462','DRAK_Vulture_Thruster_Maneuver','ManneuverThruster','FixedThruster','54a2b5ed-ab3f-46e4-860f-1e50844ed77d','','',NULL), -('4463','Morozov-SH Arms Spitfire','Armor','Arms','63ee57e4-8762-465a-b08f-dc656fa5cc57','','',NULL), -('4464','Morozov-SH-S Helmet Spitfire','Armor','Helmet','0a2a8c03-cce7-49ec-aa3c-aa9336f5b684','','',NULL), -('4465','Absolution Distortion Scattergun','Weapon','Gun','2e0a3446-23e2-447b-8f1c-2b01516ca396','','',NULL), -('4466','FoxFire','QuantumDrive','UNDEFINED','dadc9318-d0f2-48c2-aad4-f2dd0c5f7fd3','','',NULL), -('4467','Spartan Ranger Livery','Paints','UNDEFINED','8de4c1b6-3124-4215-81a8-155250f275fa','','',NULL), -('4468','TRGT. STATUS','Seat','UNDEFINED','2732b600-0494-4cfd-9055-ade9184a63a1','','',NULL), -('4469','Shipment','Misc','UNDEFINED','dc6dd811-2ea2-41f1-9fc0-fada7a0f4ec3','','',NULL), -('4470','ADP-mk4 Arms Exec','Armor','Arms','9ca55e72-6065-40a7-9092-5495ff19f2bb','','',NULL), -('4471','Door Control','Door','UNDEFINED','7cf82b2e-2438-4946-a930-525b0d4516ea','','',NULL), -('4472','ARGO_MPUV_1T_Thruster_Aux_Top','ManneuverThruster','JointThruster','bc4cdbab-5283-4896-b089-af7ee578e381','','',NULL), -('4473','Copper','Cargo','Cargo','c401d6ed-a9b6-40ee-9a3a-f300950823ed','','',NULL), -('4474','Cutter Rockslide Livery','Paints','UNDEFINED','7c1bd94d-4004-469f-a8b2-2556b20242c4','','',NULL), -('4475','Taranite','Cargo','Cargo','15771172-aa33-46c0-a097-561161383cef','','',NULL), -('4476','ADP Core Purple','Armor','Torso','fe6dadf7-e2e0-4004-8925-c84483454e8a','','',NULL), -('4477','AEGS_Sabre_Raven_Thruster_Mav_Joint_04','ManneuverThruster','JointThruster','58de69ea-505b-41da-ae10-1c8757ddb8fb','','',NULL), -('4478','sw_heavy_heat_helmet','Armor','Helmet','2cb25d32-9a3b-444f-b0c9-a4dfb82e0be2','','',NULL), -('4479','Lightstrike II Cannon','Weapon','Gun','1ee01303-ce47-447b-a2b6-ba0d0787be79','','',NULL), -('4480','Vehicle_Screen_MFD_TopRay','Display','UNDEFINED','f8cbae4d-cc81-47a8-8a93-1adc85e24104','','',NULL), -('4481','ORIG_300i_Thruster_Mav_Fixed_02','ManneuverThruster','FixedThruster','49dd5ad7-3ff1-47ad-beb1-57b1e4f2bd51','','',NULL), -('4482','Door Control','ControlPanel','DoorPart','bb94d222-695e-4130-ad8c-de4a663e0949','','',NULL), -('4483','Door_LoadoutScanner_RCD_Warehouse','Door','UNDEFINED','36fc58b5-cc54-46e0-903d-46b2ed9f5f53','','',NULL), -('4484','H_Dashboard_Projector_HUD_ORIG_m50','Display','UNDEFINED','d16a670e-2d71-4793-84cf-db484e55728e','','',NULL), -('4485','Argus Helmet Grey/Green','Armor','Helmet','7d32e5cc-e45e-4165-9e95-97fc6f02a3ed','','',NULL), -('4486','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','0e5c99f2-1dd1-43c3-80b1-d8f434a5aa4b','','',NULL), -('4487','Caudillo Helmet Burnt Orange','Armor','Helmet','d88356fe-cf40-4304-86b2-b97e4b0a66c5','','',NULL), -('4488','Manned Turret','TurretBase','MannedTurret','f6f227fa-fdcb-4a17-9814-dfa862a12046','','',NULL), -('4489','BATT_AMRS_S01_FortCell','Battery','UNDEFINED','48da395a-ae46-410b-8325-63ec90833608','','',NULL), -('4490','Ixonia Pants Desert Camo','Char_Clothing_Legs','Medium','c819d660-ad98-48ae-8509-ae223b1c2cbf','','',NULL), -('4491','DoorProximitySensorItem_2x6x2_5','Sensor','DoorPart','95e07d0a-b429-48e0-81fb-4cd45792ae57','','',NULL), -('4492','QIG_Prototype','QuantumInterdictionGenerator','UNDEFINED','b7a0347d-d683-481c-b44f-13e96f028086','','',NULL), -('4493','Weapon_Rack_Cz_Firerat_010','Usable','UNDEFINED','cf20e63a-b0cd-4ef3-9c5e-9372d46d6ad8','','',NULL), -('4494','DRAK_Cutlass_Red_Thruster_Maneuver','ManneuverThruster','JointThruster','0e6d7542-b3f3-4fa1-a172-5d49b80e4910','','',NULL), -('4495','ORIG_300i_Thruster_Mav_Fixed_Front_02','ManneuverThruster','FixedThruster','a9e43090-cdce-424f-945b-aaf91c014647','','',NULL), -('4496','Aril Arms','Armor','Arms','13814aae-488c-48c0-80a2-5501cb76343c','','',NULL), -('4497','Seat','Usable','UNDEFINED','ce65e50b-f4f2-4aae-ac90-fead303e9eb6','','',NULL), -('4498','ARGO_MPUV_Thruster_Main_Joint','MainThruster','JointThruster','966f6880-0304-42cc-bd03-d0be907b5741','','',NULL), -('4499','Agricium (Ore)','Cargo','Cargo','7664d820-d2d5-44c2-b85d-3d2e2d5766e1','','',NULL), -('4500','Door Control','ControlPanel','DoorPart','ee53f6f1-ee26-457f-abd7-e66b01d9ca47','','',NULL), -('4501','Seat','SeatAccess','UNDEFINED','aa9fd201-57b6-4387-9772-c9e9299adcb0','','',NULL), -('4502','Beradom','Misc','Harvestable','38d7d7e9-819b-4351-a40e-7b764cb304e6','','',NULL), -('4503','INTK_ANVL_Hawk','FuelIntake','Fuel','bef8d174-053b-4ba8-bab9-e5093cae1978','','',NULL), -('4504','Self Destruct Unit','SelfDestruct','UNDEFINED','55f62c57-b7ea-4ed7-b72e-2e99fc6c5486','','',NULL), -('4505','HRST_LaserRepeater_Barrel_S5','WeaponAttachment','Barrel','5b58db79-ce3f-406f-95e0-2b69d624b45d','','',NULL), -('4506','Flight Blade','FlightController','UNDEFINED','f5296290-309d-4863-9bd7-0ca33e9f4cea','','',NULL), -('4507','Door Control','ControlPanel','DoorPart','9701e88b-07b7-48f3-8458-8c15f22f22b7','','',NULL), -('4508','ORC-mkX Legs Twilight','Armor','Legs','b43d3e2f-952a-4970-a4bd-b12018a3c80b','','',NULL), -('4509','MISC_Reliant_Seat_Bed_Upper','Seat','UNDEFINED','02b4067e-78cf-4ad5-8c5a-12718a54d3e0','','',NULL), -('4510','Ready-Up Helmet Twilight','Char_Clothing_Hat','UNDEFINED','fc582b88-b58a-42b5-a9d4-5eae62a9cca0','','',NULL), -('4511','Armor_Crate_CZ_Horizon_H_003','Usable','UNDEFINED','3008d32c-e487-47cc-b11d-e547bcc50d49','','',NULL), -('4512','DustUp Helmet Firestarter','Armor','Helmet','3751a609-b189-4a4e-a31d-e864459b5dcc','','',NULL), -('4513','TRGT. STATUS','Seat','UNDEFINED','afffe2f4-2258-4902-a572-68c79852ea6a','','',NULL), -('4514','Get Up Coffee (Decaf)','Drink','Can','8186f14f-5872-40d8-8f43-10ea11077433','','',NULL), -('4515','display_ship_components_03x0075x0275_a_9Ports_1','ShopDisplay','UNDEFINED','5e6c93e5-e433-4ab0-b6b7-26f18529559a','','',NULL), -('4516','Falston Jumpsuit \"Cry-Astro Edition\"','Char_Clothing_Torso_1','UNDEFINED','55cbd999-778a-46d3-b17a-4972d036541b','','',NULL), -('4517','AEGS_Escpod_Bedding','Seat','UNDEFINED','07ed4d21-c732-456f-a00c-6f91bfa6cd10','','',NULL), -('4518','Door_Ship_Sensor_Proximity_2x1x1_3','Sensor','DoorPart','4f17998d-a3b4-4187-b303-6330696b4850','','',NULL), -('4519','Cargo_Comm_125x3_Gas_Hydrogen_a','Cargo','Cargo','4e556545-a337-412e-9266-4aa990e28639','','',NULL), -('4520','Door Control','Door','UNDEFINED','68237bcc-f4ac-47c8-b6df-4f41d75b336e','','',NULL), -('4521','SCItemDisplayScreen_IAE_ShipDisplay','Display','Default','ce687d05-a24c-4f52-a8cf-8464c58b7ebd','','',NULL), -('4522','Door Control','ControlPanel','DoorPart','71df2baf-814e-4ed8-8e76-536bed0c6066','','',NULL), -('4523','Mivaldi Pants Dark Green','Char_Clothing_Legs','UNDEFINED','496c9877-e606-4d98-b39b-71f249c069b4','','',NULL), -('4524','Builders of Tomorrow T-Shirt Black','Char_Clothing_Torso_0','UNDEFINED','52351b58-5caf-4b49-af13-7c78f9c24ec1','','',NULL), -('4525','Screen_Datapad_FW22','Display','UNDEFINED','a63ac4ce-cf67-47c2-9bd3-d98dbdd59bde','','',NULL), -('4526','Bed','Usable','UNDEFINED','1c64f9bd-cf64-468a-8d3c-93ca053c33e5','','',NULL), -('4527','Seat','SeatAccess','UNDEFINED','cc322599-e0dc-4879-b89a-067a4542d4a2','','',NULL), -('4528','Locked-on Lentil Burrito','Food','Junk','ddd58477-b505-4093-a0a0-7a83f67ed55f','','',NULL), -('4529','Hull A Dusk Livery','Paints','UNDEFINED','728d4d6e-9d8e-4706-9454-05bf7add7563','','',NULL), -('4530','KRIG_l21_Wolf_Thruster_Mav_Capsule','ManneuverThruster','UNDEFINED','91bccc79-3f82-440c-be63-d575038ec50f','','',NULL), -('4531','BEHR_BallisticGatling_PowerArray_S7','WeaponAttachment','PowerArray','e6beaa69-902c-4ffb-bed8-3e0ef5a0271d','','',NULL), -('4532','PAB-1 Legs Tan','Armor','Legs','ba835a71-1bdb-4bac-9c59-e7105837ad3f','','',NULL), -('4533','ARGO_RAFT_SCItem_Dashboard_CoPilot','SeatDashboard','UNDEFINED','a53ee028-2629-40cb-b5ce-dcfec09d8cda','','',NULL), -('4534','Door','Door','UNDEFINED','4c6a57ae-3133-4f3e-bf50-35944c5e9686','','',NULL), -('4535','Tidelock QD','QuantumInterdictionGenerator','UNDEFINED','02450eb8-6294-4bb1-aa7a-ceab6d2e7e1d','','',NULL), -('4536','Manned Turret','TurretBase','MannedTurret','460303b8-2c17-4522-9630-1965f2f3b722','','',NULL), -('4537','Odyssey II Helmet Dark Green','Armor','Helmet','073fca3a-e7a3-40b0-b32e-b7b1667306c5','','',NULL), -('4538','Harlowe Shirt Dark Green','Char_Clothing_Torso_0','UNDEFINED','ed791706-62f6-415c-8729-e96b90a5ffd0','','',NULL), -('4539','Diamond','Cargo','Cargo','28b50096-fc6e-4253-bc29-f998146bc780','','',NULL), -('4540','AEGS_Sabre_Thruster_Mav_TopRR','ManneuverThruster','JointThruster','30c4fa02-b631-478f-83bc-463a86563eb9','','',NULL), -('4541','Altimont Pants Blue','Char_Clothing_Legs','UNDEFINED','23e1e6d2-4d53-4fd0-9817-7f759aa6d759','','',NULL), -('4542','ORC-mkX Arms Justified','Armor','Arms','c5dee096-247f-4251-8304-43c4e482bdb4','','',NULL), -('4543','Tripledown \"Ridgeback\" Pistol','Weapon','Small','32f71a63-7937-482a-809c-7e9909bffe9e','','',NULL), -('4544','UNE Silver Ingot (Pristine)','Misc','UNDEFINED','402c93b8-c991-49f2-9971-faa7c71bd87a','','',NULL), -('4545','Carryable_2H_FL_Vlk_pearl_Common_05','Misc','Harvestable','e738c605-8ef7-4238-8170-5db0c4f9c15d','','',NULL), -('4546','Relay','Relay','UNDEFINED','d046b6a3-84ba-4a9b-bc51-952ecb40224d','','',NULL), -('4547','Shiv Blue Blossom Livery','Paints','UNDEFINED','f8514eb7-1258-4c77-91ab-ae389e3b5752','','',NULL), -('4548','Seat_Bed_ORIG_100','Usable','UNDEFINED','74f08b32-afd0-43c2-8780-bcfba1217b40','','',NULL), -('4549','Ripper','FPS_Consumable','Hacking','c4581d0e-20fe-47fd-ab9d-df22f17df9f5','','',NULL), -('4550','Pembroke Backpack RSI Ivory Edition','Armor','Backpack','7217e929-f89a-4f91-9a14-1fbd0cbd7a53','','',NULL), -('4551','BEHR_BallisticRepeater_Barrel_S1','WeaponAttachment','Barrel','5d94d9c1-d7ee-4864-8996-34293249773e','','',NULL), -('4552','ARMR_TMBL_Storm_AA','Armor','Medium','1f4c62c2-6306-47ad-a8f3-8d5d6082b1af','','',NULL), -('4553','Scorpius Skullcrusher Livery','Paints','UNDEFINED','4f74e487-6edf-401c-8e49-0735a874cec8','','',NULL), -('4554','SHIELDS','ShieldController','UNDEFINED','9f8915a2-fa04-427f-aef8-171ea66078ac','','',NULL), -('4555','300 Series Ultramarine Paint','Paints','UNDEFINED','2bcbf213-ec0b-4be0-b2f7-80934c4ef87d','','',NULL), -('4556','Weapon Rack','Door','UNDEFINED','337d09e9-8bdd-49cd-9493-4d808adda7ec','','',NULL), -('4557','Misfit Jacket Crossdraw','Char_Clothing_Torso_1','UNDEFINED','ed5e3fb1-de20-42ec-b321-05b69dac3cf1','','',NULL), -('4558','Venture Helmet Green','Armor','Helmet','3894f673-8a09-4d34-8722-02c09c00863e','','',NULL), -('4559','Medical Bed','Usable','UNDEFINED','33eb9310-51da-4687-b4d3-5488834f88e0','','',NULL), -('4560','Scout Ship Armor','Armor','Medium','7419e9b6-02b9-4271-8711-329b56e5583f','','',NULL), -('4561','RS1 Odysey Spacesuits','Cargo','Cargo','6ed0ed1b-2dd8-4971-a8c8-089c89ade780','','',NULL), -('4562','TRGT. STATUS','Seat','UNDEFINED','24948a33-9417-4c1f-8227-ab28aa10d31b','','',NULL), -('4563','RSI_Constellation_TA_BayWall_Right','Container','UNDEFINED','256dfe18-7b89-413d-82d3-4c068990386f','','',NULL), -('4564','RSI_Aurora_GS_ES_Thruster_Mav_Joint','ManneuverThruster','JointThruster','182f853b-aec8-4a27-9638-8df7bc1e192d','','',NULL), -('4565','he_a_wall_low_left_a_2Ports','ShopDisplay','UNDEFINED','44adfcd6-1980-470e-bf2a-fe4f8476425b','','',NULL), -('4566','Weapon_Rack_1_Volt_Rifle_Common_001','Usable','UNDEFINED','0dc3afd5-bec9-47b8-bc8d-c9358e6f710e','','',NULL), -('4567','Origin White Rook','Gadget','UNDEFINED','aae815c1-8b23-4ddc-996f-f23c8d912dae','','',NULL), -('4568','Internal Tank','QuantumFuelTank','QuantumFuel','e9595566-4520-440c-8a82-a1545dd4a5c4','','',NULL), -('4569','TOAG_LaserRepeater_PowerArray_S3','WeaponAttachment','PowerArray','6f39210f-f5c9-4cd7-bafe-bebb8c27d3fa','','',NULL), -('4570','Carragio Jacket Grey','Char_Clothing_Torso_1','UNDEFINED','abf5bbf0-7ae5-4d35-a608-5a8591350edb','','',NULL), -('4571','Sunset Berries','Cargo','Cargo','05c4fbfc-df66-4f1a-9139-b449bc08df52','','',NULL), -('4572','Morozov-CH Backpack (Modified)','Armor','Backpack','4dea576d-458e-4237-aeb7-cdcb6db48d7f','','',NULL), -('4573','Seat','Usable','UNDEFINED','ba184aab-7f27-436a-a758-73e0cca1ed43','','',NULL), -('4574','KRIG_l22_AlphaWolf_Thruster_Retro','ManneuverThruster','UNDEFINED','df196c48-bac7-46ca-ab06-3f2a235816b7','','',NULL), -('4575','Mirai Racing Helmet','Armor','Helmet','52bb6c3d-003c-4c01-8517-79e910ebf7fb','','',NULL), -('4576','ORIG_890_Jump_Thruster_Mav_BMR','ManneuverThruster','FixedThruster','b61360ea-2d68-4855-b3a6-9efb28947fb2','','',NULL), -('4577','Door Control','Door','UNDEFINED','ab43976a-3d8b-493e-8308-48b304dd582f','','',NULL), -('4578','Carryable_1H_SQ_box_food_1_a','Misc','UNDEFINED','b37878ce-924b-4d6a-8922-db6f4ca11a0b','','',NULL), -('4579','RSI_Perseus_CargoGrid_Main','CargoGrid','Cargo','93f56be0-6d3b-40cf-beeb-011e269e2bbb','','',NULL), -('4580','ARMR_XIAN_Nox','Armor','Medium','7bf7ecee-86fa-49fb-9862-0616a524b611','','',NULL), -('4581','Weapon_Rack_1_Volt_SMG_AmmoOnly_001','Usable','UNDEFINED','2b2e6e76-9310-4476-8722-0a153544e010','','',NULL), -('4582','Bioplastic','Cargo','Cargo','b9ce965d-8d90-431b-b312-3bc0859bc6c3','','',NULL), -('4583','Door','Door','UNDEFINED','f49b22df-2066-4257-a851-bd8ae0bbfb19','','',NULL), -('4584','Seat','Usable','UNDEFINED','6a9bd3a9-a525-410f-9299-595896fd8851','','',NULL), -('4585','SHIELDS','ShieldController','UNDEFINED','4e90cfa5-3b49-4169-aa28-2ad3b72cc7f6','','',NULL), -('4586','MISC_Prospector_Thruster_Mav_FIxed_02','ManneuverThruster','FixedThruster','dff42b1f-5c13-426a-86f8-ab822b2de179','','',NULL), -('4587','Bed','Usable','UNDEFINED','671588da-06b6-4d66-b472-bdf7a17c0e84','','',NULL), -('4588','Spruce Cap Kel-To','Char_Clothing_Hat','UNDEFINED','84f722ce-daf9-4965-b1ae-f7e370b5d118','','',NULL), -('4589','Internal Tank','FuelTank','Fuel','0125e83a-4657-4712-9d76-3ebaede08e28','','',NULL), -('4590','ANVL_F7CR_NoseCap','Misc','UNDEFINED','85a0d650-05d1-4c8c-90aa-40ba2054c2be','','',NULL), -('4591','Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','722cbb5a-0596-403d-b0e8-fb7fe6f3c8b1','','',NULL), -('4592','Turret','Turret','MissileTurret','e6b1a0fe-8cf8-453c-8b68-92095094288e','','',NULL), -('4593','LeMarque Pants Purple','Char_Clothing_Legs','UNDEFINED','1f74b7b3-b774-4281-ac22-f11ecb823718','','',NULL), -('4594','Door Control','Door','UNDEFINED','17716e11-5149-4430-b609-8e438931d668','','',NULL), -('4595','TrueDef-Pro Legs Black/Silver/Green','Armor','Legs','3e535b8f-9ca3-457b-aad7-ee496e7c9fd0','','',NULL), -('4596','Flight Blade','FlightController','UNDEFINED','c686aa8a-f0f0-47fc-b22d-daaf4dadc25b','','',NULL), -('4597','Carryable_TBO_FL_16SCU_Commodity_ProcessedGoods_ProcyonCanister_Damage','Cargo','Cargo','94ae9ee2-b45d-4a5b-a8e4-fe2884888c13','','',NULL), -('4598','CargoBox_050x050x050_Tank_Water_Stacked_3','Cargo','Cargo','ecf08be9-9fcf-4ae5-b5d4-cd726b02f5d8','','',NULL), -('4599','ORIG_X1_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','3f9092a2-3e1e-4b1f-9e47-6810f39d44ff','','',NULL), -('4600','Seat','Usable','UNDEFINED','82fe4695-aed2-4c63-884a-1379ff5735c0','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('4601','Carryable_1H_SQ_drug_stim_1_a','Misc','UNDEFINED','ad03c003-ddfb-45b1-b715-a48c8dd1359f','','',NULL), -('4602','bottle_alcohol_1_beer_smoltz_100_f','Cargo','UNDEFINED','2fe98a15-0d49-43c8-8625-7209470b08e0','','',NULL), -('4603','Zeus Lovestruck Livery','Paints','UNDEFINED','1f740502-818f-4b29-837d-24fdbc846791','','',NULL), -('4604','BEHR_LaserCannon_PowerArray_S2','WeaponAttachment','PowerArray','3350ad4b-e082-48a7-88f2-ee7f8e3e1253','','',NULL), -('4605','Borase (Ore)','Cargo','Cargo','b029b2b6-2099-44dc-9e85-2e801beaf6bb','','',NULL), -('4606','GATS_BallisticGatling_Mounted_Ventilation_S1','WeaponAttachment','Ventilation','22da60a6-5f4f-4ba2-84da-c96f9f47d273','','',NULL), -('4607','DRAK_Cutter_Thruster_Mav_Fixed_Top','ManneuverThruster','FixedThruster','b5fe86dc-b3b6-4025-91c8-b76c81f7ae13','','',NULL), -('4608','Medical Bed','Usable','UNDEFINED','a54432ab-6e2e-441b-847f-17ca76e5a95c','','',NULL), -('4609','Uncut SLAM','Cargo','Cargo','f54f9f69-a1d3-4279-ac5f-b47e5d18af81','','',NULL), -('4610','Aslarite','Cargo','Cargo','557bbc8a-50d5-445c-9e60-ca523996d99d','','',NULL), -('4611','Carryable_TBO_FL_2SCU_Commodity_ProcessedGoods_OrganHarvesting','Cargo','Cargo','d14f608d-3285-44d0-b706-44cea3db71a9','','',NULL), -('4612','\'Bullet\' II Missile','Missile','Missile','1754a3d4-4aa9-469d-8fb7-d8611bd3e9a1','','',NULL), -('4613','Strata Legs Hurston Edition','Armor','Legs','0a76542b-f550-4b1a-a8bc-180748bdcd3d','','',NULL), -('4614','ANVL_Lightning_F8_Thruster_Main_LightBlue','MainThruster','FixedThruster','c54da6a1-9fa0-4342-82c2-62de11900d9d','','',NULL), -('4615','Mustang Gamma Ship Armor','Armor','Medium','f8229594-89a6-4ae8-8d7d-6683cf7d50cf','','',NULL), -('4616','Landlite Boots Tan','Char_Clothing_Feet','UNDEFINED','ff024029-0ef0-4250-85cf-97561958356f','','',NULL), -('4617','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','6e052f56-88e1-4e80-adb1-1c679cc3f8d9','','',NULL), -('4618','Vehicle_Screen_MFD_Holographic_ORIG_M50_L','Display','UNDEFINED','40f4b024-46c9-46c2-9701-90ada67d3438','','',NULL), -('4619','DRAK_Clipper_Thruster_Fin_Aux_Right','Misc','UNDEFINED','c8cc7e09-b231-46be-874a-5156f929d4cf','','',NULL), -('4620','Morningstar Helmet Imperial','Armor','Helmet','26b97bf7-d618-4175-b1ea-484327f42e4b','','',NULL), -('4621','Bed','Usable','UNDEFINED','9f2e696c-8c9c-47ce-a559-644d62024485','','',NULL), -('4622','Gold','Cargo','Cargo','124b918b-8b5f-427e-a439-6f1fdfece886','','',NULL), -('4623','Anvil F7C-M Mk II Ball Turret','Turret','BallTurret','34121f6a-0c88-4c0d-948d-8fd5c1f24c2e','','',NULL), -('4624','ORIG_X1_CML_Chaff','WeaponDefensive','CountermeasureLauncher','8eed19d9-064d-4f69-b985-919fbf84f2b0','','',NULL), -('4625','Col_A_Underfloor_Hatch_A_Cuttable','Door','UNDEFINED','e0744f57-2064-4532-97f3-4bb9c6db9d3b','','',NULL), -('4626','Sabre Harvest Livery','Paints','UNDEFINED','82198d1d-47ab-4404-8f62-f63049289b07','','',NULL), -('4627','Centurion Ice Storm Camo Livery','Paints','UNDEFINED','28253aa2-bfe2-4cd4-870c-b83bcd19ec88','','',NULL), -('4628','G-2 Helmet Sienna','Armor','Helmet','f7005fb4-3c8c-42df-b759-f41b10948e71','','',NULL), -('4629','Adiva Jacket Grey','Char_Clothing_Torso_1','UNDEFINED','e9850a9f-4f01-4cb7-bbd1-fb53f4e70b01','','',NULL), -('4630','Table_Desk_1_Seat_MISC_Starlancer','Usable','UNDEFINED','c254e23d-3226-4f55-8483-087ed0be1bb8','','',NULL), -('4631','Bed','Seat','UNDEFINED','1ee28bf3-7cc0-49fb-b214-5b518f4d0767','','',NULL), -('4632','DCP Armor Arms Jungle Camo','Armor','Arms','d7faaf51-b1b6-4635-b62e-203687973144','','',NULL), -('4633','Personal Storage','Cargo','UNDEFINED','9a807a85-da66-4095-b09d-514ab0e78f59','','',NULL), -('4634','Arden-SL Core','Armor','Torso','ab2c5f25-2592-47a8-a157-ab7857f58c42','','',NULL), -('4635','Cirrus Boots Brown','Char_Clothing_Feet','UNDEFINED','1885c7c5-0077-4f61-9aad-d99bf0de3cb8','','',NULL), -('4636','Access','SeatAccess','UNDEFINED','44fc2bd8-2797-4689-b3b4-081e3e988b0d','','',NULL), -('4637','Warden Backpack Hemlock Camo','Armor','Backpack','c62568d1-d741-4b4d-8bd9-612b6732c37c','','',NULL), -('4638','MRAI_Guardian_Ground_Refueling_Port','Door','UNDEFINED','1b65702d-eed4-4e24-980d-d6deca85433e','','',NULL), -('4639','Door','Door','UNDEFINED','4209243b-b5d7-3980-76b8-ad9beb274c8d','','',NULL), -('4640','Inquisitor Core Aqua','Armor','Torso','48f6ebad-1041-4906-8937-3ebc23a1bfb0','','',NULL), -('4641','un_medical_box_1_syringe_a','Misc','UNDEFINED','80e1fe7c-149d-4780-b856-ee59cc3bd70b','','',NULL), -('4642','Tyche','QuantumDrive','UNDEFINED','68e9b393-0b32-457b-901b-bee326c88b00','','',NULL), -('4643','SparkJet Pro','PowerPlant','Power','18fb77da-25b5-4599-98a3-6a6335fe3bc5','','',NULL), -('4644','Compboard','Cargo','Cargo','e93aba18-2fd2-4c9b-b650-ce3d4b869afa','','',NULL), -('4645','customizer_shoes','Char_Clothing_Feet','UNDEFINED','1c6aac31-6497-4484-bf81-901eb20f8c79','','',NULL), -('4646','Guerra Pants','Char_Clothing_Legs','UNDEFINED','5ddb14b7-d659-4fbb-8811-14a641c9f169','','',NULL), -('4647','Tonk T-Shirt','Char_Clothing_Torso_0','UNDEFINED','047724ce-fc19-4cde-96c6-ca1971394437','','',NULL), -('4648','fruit_tray_2_a','Misc','UNDEFINED','226be873-f0f6-4139-a6d3-b54fa892da20','','',NULL), -('4649','OT8-RF \"HighSec\" (8x Telescopic)','WeaponAttachment','IronSight','8335d320-36ee-48a0-8ca8-600ad88b7a1f','','',NULL), -('4650','MISC_Starlancer_Copilot_Seat','Seat','UNDEFINED','901e8e7a-995b-4ff4-ab70-e3b3f209095d','','',NULL), -('4651','ESPR_Talon_Canopy_Frame','Misc','UNDEFINED','c4bb04f3-633f-4063-babb-7f3bf42d3dd8','','',NULL), -('4652','Warden Backpack Delta Camo','Armor','Backpack','06da4100-fcb1-463f-ae8c-e1860593b64f','','',NULL), -('4653','Carryable_1H_CY_Utensil_knife','Misc','UNDEFINED','e12fc494-164d-4ad6-b2bf-292b763f8f15','','',NULL), -('4654','Seat','SeatAccess','UNDEFINED','a3e64036-fdfe-4fc3-8301-321098ae83d8','','',NULL), -('4655','ADO-5 Laser Mine','Grenade','Small','555a3bf1-722e-459b-b005-52d7a9da8a65','','',NULL), -('4656','Seat','Usable','UNDEFINED','0e9001ae-504c-4e37-a5b7-c013f17159cf','','',NULL), -('4657','Hercules Starlifter 2951 Best in Show Livery','Paints','UNDEFINED','e8a0ecbc-2a03-46c7-bcd1-bfe4c117a61f','','',NULL), -('4658','ARGO_MOTH_CargoGrid_Side','CargoGrid','UNDEFINED','9181cea7-462e-48f5-aea0-33d9f14077e8','','',NULL), -('4659','ARGO_CSV_Roof_Cap','Misc','UNDEFINED','3fca9ae6-f90d-417d-b864-a05f3a1e6b66','','',NULL), -('4660','Ridgely Jacket Grotto','Char_Clothing_Torso_1','UNDEFINED','82dac526-dedb-40d6-88cb-a597a82e76ba','','',NULL), -('4661','Internal Tank','QuantumFuelTank','QuantumFuel','973d6f75-5048-4b0b-aea1-56f2a21d6334','','',NULL), -('4662','TRGT. STATUS','Seat','UNDEFINED','8448dfa9-0a6e-4d79-95e3-9893bea8c516','','',NULL), -('4663','Fizzz Peach','Drink','Can','4a8aa8ca-0068-44f6-9129-0cebcdaf4c36','','',NULL), -('4664','f_human_mannequin_explorer_undersuit','ShopDisplay','UNDEFINED','73ac9373-cdde-4f60-a88d-38aa0d021a93','','',NULL), -('4665','MISC_Starfarer_Base_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','374998c8-3549-4704-bbb4-be4876a975d3','','',NULL), -('4666','Door_Simple_Col_001','Door','UNDEFINED','736e644b-04d4-429a-bc87-d664a40d7937','','',NULL), -('4667','Seat','Usable','UNDEFINED','45cf4c5f-4cf9-4345-b8c0-b8305811ddd0','','',NULL), -('4668','Methane','Cargo','Cargo','65b58e01-13bf-4ce5-9dcc-330ba40345dc','','',NULL), -('4669','INTK_DRAK_Cutlass_Black','FuelIntake','Fuel','17b1ef89-5c50-4d70-b351-c7eb1c1c4671','','',NULL), -('4670','Sunset Berries','Cargo','Cargo','7c6cd8c6-6d89-496b-a125-bc3c529b3a4f','','',NULL), -('4671','Guardian Eventide Livery','Paints','UNDEFINED','1221bff3-96e9-4ce6-b27f-0e2700ba99c1','','',NULL), -('4672','Elevator Control','Elevator','UNDEFINED','2bef9cb3-3b1d-4198-bb30-66ecae04c8e9','','',NULL), -('4673','Morozov-SH Arms Vesper','Armor','Arms','04452eea-1acc-47e5-9757-44a8a97efdd3','','',NULL), -('4674','Bed','Usable','UNDEFINED','37951566-b86d-4ea0-b4ab-5c1a8ccbcfbb','','',NULL), -('4675','Carryable_1H_CY_heater_portable_1_a','Misc','UNDEFINED','1f7c7f97-c840-4d82-8092-6257fd0e685d','','',NULL), -('4676','Harlowe Shirt','Char_Clothing_Torso_0','UNDEFINED','8cc236dc-c8c3-4053-892f-603059ee3820','','',NULL), -('4677','Glacier','Cooler','UNDEFINED','5748cdbc-5a26-477a-a4ad-b20a593bde59','','',NULL), -('4678','KRIG_P72_Archimedes_Thruster_Main','MainThruster','FixedThruster','c6539328-61b0-492e-bbc4-d0ebe363b7c8','','',NULL), -('4679','Carryable_1H_CY_bottle_bar_08_vodka_a','Misc','UNDEFINED','af397652-f5ea-4491-a139-00354884081b','','',NULL), -('4680','XDL \"Snowfall\" Monocular Rangefinder','Weapon','Gadget','9bfcc85e-9595-4858-853f-ec2530f6db40','','',NULL), -('4681','Constellation Andromeda Ship Armor','Armor','Medium','1abd192b-0c87-4ea5-99d2-5dadee7bf275','','',NULL), -('4682','Seat','Usable','UNDEFINED','6fecef04-9629-4925-98cb-977c425e4465','','',NULL), -('4683','Lastaprene','Cargo','Cargo','76f7d848-ce5d-46ee-89ab-bdc8b6c46c15','','',NULL), -('4684','Pite','Char_Head_Piercings','UNDEFINED','2be8f7ce-c24f-4389-b858-13e0382b35ef','','',NULL), -('4685','TrueDef-Pro Arms Black/Silver','Armor','Arms','cc98f2a9-5fb5-4c5f-834e-efcba92e45a6','','',NULL), -('4686','Neoni Yuki Onna Helmet','Armor','Helmet','815e69f2-d0e3-4bca-b8a7-a000c53d33dd','','',NULL), -('4687','Seat','SeatAccess','UNDEFINED','168befc1-123b-4df3-b13c-bab5d131e81b','','',NULL), -('4688','ESPR_Talon_Wing_Glass','Misc','UNDEFINED','29eee6e3-ff40-4f69-9455-2bcbdf5936a5','','',NULL), -('4689','Remote Turret','Turret','GunTurret','f4cbc8a8-4efd-4fb2-a1cf-7595d52ab334','','',NULL), -('4690','Seat','Usable','UNDEFINED','a606285b-fcd1-407b-900e-5fe8418eeaed','','',NULL), -('4691','Overlord Arms Tempered','Armor','Arms','5cebc487-7340-4691-a9fb-f9b6e6499668','','',NULL), -('4692','ANVL_Hornet_F7CM_Dashboard_Copilot','SeatDashboard','UNDEFINED','091658e1-c3bc-4d2b-8623-f5c2f50fc144','','',NULL), -('4693','Seat','SeatAccess','UNDEFINED','a526bcb7-d6e1-49b2-b7a5-a7879929286a','','',NULL), -('4694','Laranite','Cargo','Cargo','1a3f672f-495f-4924-baed-36a82b0988c2','','',NULL), -('4695','SNS-R6x','Radar','MidRangeRadar','d048771d-6001-4176-9b48-2788927f5d30','','',NULL), -('4696','RSI_Perseus_Thruster_Mav_Bottom','ManneuverThruster','UNDEFINED','39896fbd-e0a5-4ebb-910c-1f510efb92d7','','',NULL), -('4697','MISC_Fortune_Salvage_Arm','ToolArm','UNDEFINED','fddf6a6a-e0df-465e-ba4a-6af41045dafb','','',NULL), -('4698','Scimitar V Missile','Missile','Missile','ffcf3d55-bc12-4244-b3c9-ebd709c5cd2e','','',NULL), -('4699','un_plate_burger_1_a','Misc','Consumable','eae7a6cb-f2a1-4c92-bb12-10cff443de9d','','',NULL), -('4700','Carryable_cleaning_sponge_2_a','Misc','UNDEFINED','5952e70d-0a9f-48cf-8575-c76ae251cf07','','',NULL), -('4701','Degnous Root','Misc','Harvestable','d8676266-51a0-47f6-badf-99afc69ea29a','','',NULL), -('4702','Bed','Usable','UNDEFINED','3f3e9303-aa4a-4725-b20f-586760cca0e3','','',NULL), -('4703','Stud','Char_Head_Piercings','UNDEFINED','f213bd16-f3fd-4f1e-826f-911e59b1fe10','','',NULL), -('4704','Seat','SeatAccess','UNDEFINED','344a67f4-566f-4fef-bfb1-7647c1d0269c','','',NULL), -('4705','Seat','Usable','UNDEFINED','6fe69fa8-8d31-4f0e-9346-fd0f158017e9','','',NULL), -('4706','Guardian Downpour Livery','Paints','UNDEFINED','1e0ec198-7659-4886-9b07-7b2ab309f625','','',NULL), -('4707','Feynmaline','Cargo','Cargo','1502ef65-babc-4156-a98b-7da764fb8641','','',NULL), -('4708','PH - cbd_hat_03_01_fleetweek2022','Char_Clothing_Hat','UNDEFINED','e4be6b9b-cc87-4651-af9c-599c6f72c113','','',NULL), -('4709','ORC-mkX Legs (Modified)','Armor','Legs','bc079d07-34ff-46c1-938b-d8a617118760','','',NULL), -('4710','Salvation Disco Livery','Paints','UNDEFINED','2ebd6bbe-b670-4194-bd0a-60c61a4bbe59','','',NULL), -('4711','Ursa Fortuna Livery','Paints','UNDEFINED','23d8bd97-375e-4aca-b380-4b86ad0e8417','','',NULL), -('4712','Remote Turret','Turret','GunTurret','d82f7efa-22fc-4502-befb-904ff9983ff1','','',NULL), -('4713','Gelid','Cooler','UNDEFINED','5e5e363e-2ae2-455f-8062-49189906fdc9','','',NULL), -('4714','Spirit Resolute Livery','Paints','UNDEFINED','7c4831e3-c964-4f95-8983-bc2b5c07be81','','',NULL), -('4715','MISC_Hull_C_SCItem_Tractor_Seat','Seat','UNDEFINED','3f5cc6a0-92b6-4250-bcdb-fd87623e8224','','',NULL), -('4716','Door_Ship_Sensor_Proximity_1x3x3','Sensor','DoorPart','0f55a8f8-15db-4d6a-b57c-62fafeb05023','','',NULL), -('4717','KRIG_P52_Merlin_Thruster_Mav_Lateral_R','ManneuverThruster','JointThruster','9f81f63a-2f11-4185-8474-199f76b0cec7','','',NULL), -('4718','Table_Booth_4_Seat_MISC_Starlancer_TAC','Usable','UNDEFINED','bfc9ee20-f27e-4433-9ba5-20be1897279e','','',NULL), -('4719','Silicon','Cargo','Cargo','9c1645ac-c040-43ec-93ca-b6aaf198540d','','',NULL), -('4720','Oracle Helmet Lichen','Armor','Helmet','08449933-d4ef-4c85-bcd2-bdcece18e824','','',NULL), -('4721','ORIG_100i_Thruster_Main_Left','MainThruster','FixedThruster','aaf441b3-49c6-4b0f-a19b-719c879aefd0','','',NULL), -('4722','AEGS_Door_Decal_Airlock_01','Decal','DoorPart','26118f29-4f9c-4533-bd61-466bb48d9699','','',NULL), -('4723','Internal Tank','FuelTank','Fuel','f0a8623c-4f63-413e-afd8-6d0789486f3b','','',NULL), -('4724','Carryable_1H_SQ_drug_neon_1_a','Misc','Utility','d1f346a9-6fd1-47dd-a4ce-c4856aaaf42f','','',NULL), -('4725','Jaclium (Ore)','Cargo','Cargo','18fee6bf-81dd-475a-aeaa-3969613cca94','','',NULL), -('4726','weapon_underbarrel_light_narrow','WeaponAttachment','Light','2a9e98d2-38af-4658-9801-a21aebb85109','','',NULL), -('4727','ANVL_Lightning_F8_Thruster_Retro_DarkBlue','ManneuverThruster','FixedThruster','4f06ced5-05ef-439b-840e-6d72e1b74de9','','',NULL), -('4728','Aril Core Red Alert','Armor','Torso','2daea656-087b-4d14-8092-a1252f714bc9','','',NULL), -('4729','Arden-SL Legs','Armor','Legs','16bde033-8e67-44ae-bc79-b6e4859d4a43','','',NULL), -('4730','ANVL_Terrapin_Thruster_Retro','ManneuverThruster','FixedThruster','79fd9d5d-5904-40a9-8100-3f608314cbe8','','',NULL), -('4731','Pite','Char_Head_Piercings','UNDEFINED','cc804bff-1be4-4041-abda-eef73c86598f','','',NULL), -('4732','Seat','SeatAccess','UNDEFINED','d1c351b7-eee6-4b8d-81f6-67978deb9ccc','','',NULL), -('4733','TrueDef-Pro Arms Black/Grey','Armor','Arms','1f6814cc-2dc4-4d82-ba89-abfb0515bf74','','',NULL), -('4734','Denning','Radar','MidRangeRadar','28e81323-a16a-4995-9da5-1aca23b4044c','','',NULL), -('4735','Clempt Pants Dark Green','Char_Clothing_Legs','UNDEFINED','7a561768-d9e7-41f1-83de-80499d028be9','','',NULL), -('4736','Strata Arms ArcCorp Edition','Armor','Arms','3dbb4ed7-44ba-4b78-bfc2-39782c60e5ab','','',NULL), -('4737','Constellation Orange Heron Livery','Paints','UNDEFINED','a15d45ae-7bd5-4058-bd38-a199ccf723e3','','',NULL), -('4738','LifeCure Medsticks','Cargo','Cargo','0093bd3b-83cf-4187-a815-052c94416a4d','','',NULL), -('4739','Concept Shirt Imperial','Char_Clothing_Torso_0','UNDEFINED','7629ed50-7a3b-4e8b-83db-9f500961ca30','','',NULL), -('4740','Artimex Helmet Red Alert','Armor','Helmet','ec698d54-84bb-434e-859a-0fff62426618','','',NULL), -('4741','display_1_25m_a_centermass_1port','ShopDisplay','Default','9efc1db3-eeec-449a-91a9-97a273f57b3f','','',NULL), -('4742','Inquisitor Arms Blue','Armor','Arms','908dc912-937f-4b43-9741-97bfd4ba9b6c','','',NULL), -('4743','Balor HCH Helmet Black','Armor','Helmet','f44a56dd-522f-404f-800c-c501407252e8','','',NULL), -('4744','ANVL_Gladiator_Thruster_Main','MainThruster','JointThruster','86646282-99e5-4ee9-ae20-5cd5f49c49ac','','',NULL), -('4745','Novikov Backpack Mire','Armor','Backpack','0bcd0305-b5a4-4ddc-b69c-861886a6b3ee','','',NULL), -('4746','Seat','Usable','UNDEFINED','d030ce79-5608-46fa-ad85-e3bad74844bc','','',NULL), -('4747','MSD-442 Missile Rack','MissileLauncher','MissileRack','13938ea8-d17d-429f-b467-8af4d83a889d','','',NULL), -('4748','Door Control','Door','UNDEFINED','e30760e3-19b5-46dc-bd75-39fe51400cc8','','',NULL), -('4749','Door Control','Door','UNDEFINED','46027f67-3934-464a-a50e-57b07b588d53','','',NULL), -('4750','Internal Tank','FuelTank','Fuel','2d9a37a3-e49e-4eab-8c37-bfd97b68880b','','',NULL), -('4751','m_human_mannequin_rsi_suit_02','ShopDisplay','UNDEFINED','fe477cd3-dd5d-494e-a6b9-a9afdf940bc0','','',NULL), -('4752','RSI_Aurora_LN_Thruster_Mav_Joint_01','ManneuverThruster','JointThruster','80182ed5-3710-4f6f-93aa-dab00f9a2d8a','','',NULL), -('4753','ARMR_DRAK_Caterpillar','Armor','Medium','2fdd1037-131e-4291-8a1f-204f1d8b390f','','',NULL), -('4754','Radar_Display_Screen_Cutlass','Display','UNDEFINED','bb06f078-7af0-4b14-8d19-514ce80d1b47','','',NULL), -('4755','MASTER_screen_16x9_1_004x00255_a','Display','UNDEFINED','ba7b0504-fde0-4c2b-b975-acec8ffa01a2','','',NULL), -('4756','Inquisitor Legs Grey','Armor','Legs','403bd2f7-7978-4072-8603-5d5f279d4bb6','','',NULL), -('4757','H_Dashboard_Projector_HUD_ESPR_Prowler','Display','UNDEFINED','83ae5d19-48db-47dc-a700-6ff0c74f8c77','','',NULL), -('4758','IFR-BC7 Turret','TurretBase','MannedTurret','3bcd974f-1b44-4871-933f-e23d6a05e09b','','',NULL), -('4759','Li-Tok Boots Violet','Char_Clothing_Feet','UNDEFINED','71bc2e14-5d75-49f8-92c9-ccf156b9a99a','','',NULL), -('4760','PGR Capacitor','Battery','Cargo','ef89f05a-73a1-4a86-a503-02073d92d199','','',NULL), -('4761','Avenger Solar Winds Livery','Paints','UNDEFINED','da42297a-24b9-4c8e-9f44-f3e86a33e263','','',NULL), -('4762','OMNI-AFS-Sapphire Helmet Jungle','Armor','Helmet','7c70a54a-f79e-452c-a222-9fab7069f8f0','','',NULL), -('4763','Door','Door','UNDEFINED','24df9ce0-29fc-4f11-8f71-114bcd81fdea','','',NULL), -('4764','ORC-mkV Legs Sienna','Armor','Legs','cdf17d88-1408-42ea-8339-74e4078f80de','','',NULL), -('4765','Esperia Talon','Paints','UNDEFINED','5eeb1c87-8acf-41dd-ab37-4e82348b1553','','',NULL), -('4766','AEGS_Avenger_CargoGrid_Stalker','CargoGrid','UNDEFINED','c2685798-8c72-45fc-ade2-adc7d5263338','','',NULL), -('4767','Bar_Table_MMHC','Usable','UNDEFINED','f8555960-b21b-4197-96ca-35cbc2a94d87','','',NULL), -('4768','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','694939f5-64b1-43d4-88a9-2a7248daaef5','','',NULL), -('4769','TRGT. STATUS','Seat','UNDEFINED','26dc163d-706b-4566-aeb6-f82d97f44cc8','','',NULL), -('4770','RSI_Polaris_Seat_Access_Pilot_FW','SeatAccess','UNDEFINED','e760c6eb-b123-4657-b47f-ccfcb00119cf','','',NULL), -('4771','Chiron Helmet Samaritan','Armor','Helmet','61e7a1c3-38a4-4270-b3a3-67c5a17d884a','','',NULL), -('4772','MISC_Freelancer_Thruster_Mav_Joint_Bottom','ManneuverThruster','JointThruster','48e283e8-9dcf-406e-91e6-4bd6f13dbaae','','',NULL), -('4773','Bed','Usable','UNDEFINED','51b420c3-3b24-4ac2-8221-78c3ab0b3b7b','','',NULL), -('4774','sc_nvy_medical_corpsman_jacket_01_01_01','Char_Clothing_Torso_1','UNDEFINED','968b2581-cc7a-488e-974d-9486ddf70e01','','',NULL), -('4775','Ship Showdown \'52 Coin','Misc','Utility','48577e19-954f-4095-b4aa-f6a105ef6666','','',NULL), -('4776','INTK_MISC_Freelancer_DUR','FuelIntake','Fuel','a0afef3f-4616-4edd-970f-194e2ae87ab4','','',NULL), -('4777','Golden Medmon','Cargo','Cargo','a3a8b127-6aed-4bd0-b4a4-ff2ec7c5bb84','','',NULL), -('4778','AEGS_Idris_CargoGrid_MissileRoom_Back','CargoGrid','UNDEFINED','1d58c2a0-457d-4c94-90a1-0e766ad69ba5','','',NULL), -('4779','Lynx Legs Cold Steel','Armor','Legs','02e2de94-5804-4d67-9ca9-cb70461488eb','','',NULL), -('4780','RSI Polaris Missile Rack','MissileLauncher','MissileRack','f3d9f6bf-4042-49b1-b09b-223b1ba289cd','','',NULL), -('4781','Overlord Legs Cardinal','Armor','Legs','38ea3796-308f-4870-b128-6add12a032ed','','',NULL), -('4782','Seat','SeatAccess','UNDEFINED','20cf6798-15d3-4027-8528-b4940a330c5c','','',NULL), -('4783','Body','Char_Clothing_Hands','Medical','95066e6d-9470-4f70-aa0c-a6feeeff1768','','',NULL), -('4784','DRAK_Dragonfly_Thruster_Main','MainThruster','FixedThruster','d326ec13-1935-4293-bd06-2216d6bcfbc7','','',NULL), -('4785','Clipper Basalt Livery','Paints','UNDEFINED','486eb4f7-9612-43ed-86b3-7bc6799fd8de','','',NULL), -('4786','Testudo Arms Deathblow','Armor','Arms','fc2b3f74-c723-441c-bdc7-aa19f82d1a2b','','',NULL), -('4787','DockingTube_Fuel_Ports_DRAK_Vulture','DockingCollar','UNDEFINED','4016b545-c124-463d-9937-d93b4b38de78','','',NULL), -('4788','Salvo Frag Pistol','Weapon','Small','3b6d199f-9eaa-4bcd-b607-398f7f50482c','','',NULL), -('4789','OMNI-AFS-Sapphire Armored Flight Suit Alpine','Armor','Undersuit','2319da52-b185-4e0a-b841-5f7e8795f755','','',NULL), -('4790','Datapad','Misc','Gadget','c68abc93-7c00-4053-8b6f-c451edd0061e','','',NULL), -('4791','P8-AR Rifle Magazine (15 Cap)','WeaponAttachment','Magazine','dd21edb8-a0ba-42ab-a02a-bec325e96c87','','',NULL), -('4792','Weapon_Rack_1_Volt_Rifle_AmmoOnly_001','Usable','UNDEFINED','3636d470-1814-4321-84c5-52fc67ec1f2f','','',NULL), -('4793','SureGrip PR-S3 Tractor Beam','SalvageHead','UNDEFINED','254af384-de0f-4882-9e2f-23f55f66f63a','','',NULL), -('4794','Seat','SeatAccess','UNDEFINED','0fb78ca9-480c-46d2-8fe9-1a2b3110bf5c','','',NULL), -('4795','Ht_D_Airlock_Small','Usable','UNDEFINED','7e6e537b-5672-4f4b-8c2b-c733e1cee342','','',NULL), -('4796','Quantainium (Raw)','Cargo','Cargo','20730b30-030d-4362-b1ba-2dc01799db7f','','',NULL), -('4797','MISC_Starlancer_Turret_Lighting_OC','Room','UNDEFINED','ea052de3-ae4d-4f0e-9730-d854eb834936','','',NULL), -('4798','PAB-1 Arms Covalex Edition','Armor','Arms','e1624ad3-24b9-48da-8bdb-ab20d6b807e2','','',NULL), -('4799','Guardian Red Skies Livery','Paints','UNDEFINED','de52e8a4-f5b9-4cc6-b7d8-7b2214949cab','','',NULL), -('4800','ARMR_ARGO_CSV','Armor','Medium','9ff7f902-f677-4a33-964f-4d6e3c683574','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('4801','Internal Tank','FuelTank','Fuel','3c058a4d-1ce9-4b3b-80fb-f2b76770b53d','','',NULL), -('4802','ControlPanel_Screen_LightControl_1x1','ControlPanel','DoorPart','bb585ed1-af87-49f9-85a4-9fc7651e75ee','','',NULL), -('4803','Testudo Arms','Armor','Arms','cb8be778-fb01-4dad-85e4-aa99a7a69c9d','','',NULL), -('4804','ESPR_LaserCannon_PowerArray_S1','WeaponAttachment','PowerArray','b5a019a4-9ca3-48bc-9fd3-fa334871938a','','',NULL), -('4805','Hornet Mk II Shikari Livery','Paints','UNDEFINED','f662ddb0-14db-4765-a22a-10ff6fbd9b37','','',NULL), -('4806','PAB-1 Legs Aqua','Armor','Legs','f8537aee-df0c-4d44-bdd8-340bdf4c2a30','','',NULL), -('4807','tool_scanner_1_a','Misc','UNDEFINED','d7745265-d4b1-4268-8ab8-53df6edc8e03','','',NULL), -('4808','Carryable_1H_CY_drug_stomachmedicine_1_d','Misc','UNDEFINED','8c1b1fa8-cd62-4505-b8f9-b8ad1ea92f53','','',NULL), -('4809','ForceWall','Shield','UNDEFINED','b66a64ca-9c53-40e7-8618-3b66b10a021c','','',NULL), -('4810','Mule Ghoulish Green Livery','Paints','UNDEFINED','cf489d70-4718-4193-824c-10fb08895507','','',NULL), -('4811','Odyssey II Undersuit Seagreen/Black','Armor','Undersuit','68920387-9d36-4c36-bc42-78922ab6ffc3','','',NULL), -('4812','Door','Door','UNDEFINED','b7df703b-c5bc-4108-b187-66a66a60dc4c','','',NULL), -('4813','Harkin','DockingCollar','UNDEFINED','7f66aad7-5f59-45a6-9925-fc23a0c9f3d1','','',NULL), -('4814','Antium Helmet Jet','Armor','Helmet','4ddd8283-1b5c-422b-825d-5dee1e776fcf','','',NULL), -('4815','Door Control','Door','UNDEFINED','aecd636f-b9f0-4c0e-949e-ddb2eb42d6d0','','',NULL), -('4816','Iodine','Cargo','Cargo','f9a771f3-6a75-4cd9-aaaa-9cede9e186cc','','',NULL), -('4817','Seat','Usable','UNDEFINED','70facf21-46e5-4bc6-9697-55675f99f928','','',NULL), -('4818','Copper (Ore)','Cargo','Cargo','c6c1951c-5c66-4cfe-90b2-15ed6a0a1880','','',NULL), -('4819','Door Control','ControlPanel','DoorPart','45ebbf53-ce67-3873-ff51-d59a164358b4','','',NULL), -('4820','BANU_TachyonCannon_FiringMechanism_S3','WeaponAttachment','FiringMechanism','17974c89-fc2d-4eae-bd8d-70c2509e80e8','','',NULL), -('4821','Calamity XII-CS Torpedo','Missile','Torpedo','610b44d6-7ad5-4ea8-a1f3-f1f60d220588','','',NULL), -('4822','Retaliator Cargo Front Module','Module','UNDEFINED','4cd10ac0-2c15-4753-9284-fafe5e8fa7db','','',NULL), -('4823','Deo Shirt Dark Red','Char_Clothing_Torso_0','UNDEFINED','4b633779-56b5-4e81-8206-a7a068e6a31b','','',NULL), -('4824','Talon Ocellus Livery','Paints','UNDEFINED','ff0d9d08-6852-41d0-b30d-8dd60b0b43a0','','',NULL), -('4825','INTK_AEGS_Reclaimer','FuelIntake','Fuel','998b41a8-7ca2-4dca-b44a-c75179c6a112','','',NULL), -('4826','Door Control','Door','UNDEFINED','56f4b741-7aea-4c38-87f6-78f3d2273ef7','','',NULL), -('4827','Railing_Straight_4m_Lowtech_Guardrail_B','Usable','UNDEFINED','ff98784b-db86-47d3-a76f-64e61ee7e963','','',NULL), -('4828','ARMR_GRIN_ROC','Armor','Medium','421d50c1-4270-45be-b24d-0758462ec4fd','','',NULL), -('4829','VNCL_Gen2_PlasmaCannon_FiringMechanism_S2','WeaponAttachment','FiringMechanism','1d18bc82-495c-4fb7-8f65-a5e67dcdbc60','','',NULL), -('4830','CF-557 Galdereen Repeater','Weapon','Gun','35d956a4-8297-4327-bb05-415af9f6531a','','',NULL), -('4831','BEHR_LaserCannon_Barrel_S5','WeaponAttachment','Barrel','50b0b689-b94f-43f8-a76d-80451d548dd4','','',NULL), -('4832','BinRummage_trashbag_standing','Usable','UNDEFINED','3bfaa552-3ba1-427c-af6c-afec2778fa38','','',NULL), -('4833','Geist Armor Legs Snow Camo','Armor','Legs','a0518e3b-8d71-44d6-a153-05f4e0a4184b','','',NULL), -('4834','Citadel-SE Arms White','Armor','Arms','2d216b25-a317-49d5-888d-a28df20f3a9b','','',NULL), -('4835','ColonialismAirlockTerminalTemplate','ControlPanel','AirlockPart','507de0c9-89c7-4b86-912d-a4eea5d0409e','','',NULL), -('4836','H_Dashboard_Projector_HUD_ANVL_Arrow','Display','UNDEFINED','0e72731b-3c82-4f90-a553-91514ad4f783','','',NULL), -('4837','Carryable_1H_CY_party_canape_2_a','Misc','UNDEFINED','3df97474-ec3c-4d7f-b1eb-7d7449c6aa02','','',NULL), -('4838','INTK_CRUS_Starfighter','FuelIntake','Fuel','bf43143a-25fd-4bc8-9d6f-5532cdf4a86f','','',NULL), -('4839','Internal Tank','QuantumFuelTank','QuantumFuel','7c01cb38-e02d-45f6-b5f0-e7664cb5137b','','',NULL), -('4840','Carryable_1H_SQ_datapad_tablet_2_slaver_a','Misc','UNDEFINED','9b968843-33e2-4453-8f5d-90b77987b238','','',NULL), -('4841','Gladius Solar Winds Livery','Paints','UNDEFINED','ea77577b-d7fc-460e-939d-878843cf945d','','',NULL), -('4842','DoorProximitySensorItem_2_5x8x5','Sensor','DoorPart','a3def0d9-1358-42db-b5fe-330141b3d543','','',NULL), -('4843','Hammerhead Ship Armor','Armor','Medium','d0a1f62b-9dca-4f0c-9977-fd685772ffdd','','',NULL), -('4844','Paint_325a_microTech_Security','Paints','UNDEFINED','874b2903-5f28-4572-a0cc-93bfd6c6bb6e','','',NULL), -('4845','Seat','SeatAccess','UNDEFINED','8878a977-42e2-4b89-b5e6-4637c227e369','','',NULL), -('4846','M9A Cannon','Weapon','Gun','6bf837a5-2763-4cd3-aa9c-869b0e798cb3','','',NULL), -('4847','Concept Shirt Red','Char_Clothing_Torso_0','UNDEFINED','5ad2a1f4-46d7-431d-99cd-41212397483a','','',NULL), -('4848','Amioshi Plague','Cargo','Cargo','8cb9b9d4-f5d5-4c34-8cab-b86f8e8638b2','','',NULL), -('4849','SHIELDS','ShieldController','UNDEFINED','934007a1-4603-4bb9-801a-d097177e3b00','','',NULL), -('4850','DockingTube_Fuel_Ports_DRAK_Cutter','DockingCollar','UNDEFINED','d615c848-16d7-4acd-b018-851a4f5b56c9','','',NULL), -('4851','display_pistols_04x01x01_6Ports','ShopDisplay','UNDEFINED','82e06780-5c35-4291-b4a7-567e5d503133','','',NULL), -('4852','BEHR_LaserCannon_PowerArray_S9','WeaponAttachment','PowerArray','8997459c-de3b-43e2-bf24-5808888d1b0d','','',NULL), -('4853','NN-13 Cannon','Weapon','Gun','3fc83638-fbe5-4d75-8e18-678736fefbc4','','',NULL), -('4854','Door','Door','UNDEFINED','bb169152-970f-4a3d-9f41-fde1b1ba3874','','',NULL), -('4855','Grappler Gloves Bone','Char_Clothing_Hands','UNDEFINED','a81af902-320b-4668-813e-47d76474b901','','',NULL), -('4856','Silnex','Cargo','Cargo','23520e9d-3cd2-40fa-bf42-8d7da0a6b101','','',NULL), -('4857','Morozov-SH-I Helmet Pyrotechnic Spite','Armor','Helmet','0d6adeeb-ca90-45ab-b75b-89a96b98628f','','',NULL), -('4858','Railing_Straight_1m_LowTech_Bravo_Int_Open','Usable','UNDEFINED','9abe776e-1c53-4039-83b4-9ad9e9f770bb','','',NULL), -('4859','Remote Turret','Turret','PDCTurret','e637dcef-fb7e-4f94-b614-3c67cf3179d0','','',NULL), -('4860','Strata Arms Amber','Armor','Arms','1592dd21-3634-4778-a284-24ef5d393389','','',NULL), -('4861','Seat','SeatAccess','UNDEFINED','962dd710-771d-402f-878e-ef97408a3d5b','','',NULL), -('4862','MISC_Fortune_Thruster_Retro_02','ManneuverThruster','FixedThruster','ca11ab09-1237-4195-ab79-a023bee1d964','','',NULL), -('4863','Carryable_cleaning_sponge_7_a','Misc','UNDEFINED','d6872190-0aa3-4fc4-8579-7b3408f10432','','',NULL), -('4864','TMBL_Cyclone_SCItem_Dashboard_Driver','SeatDashboard','UNDEFINED','5e14e32d-992b-4d86-b877-f7a1d005765f','','',NULL), -('4865','Ares Star Fighter Central Tower Livery','Paints','UNDEFINED','1416bcd2-0524-4ce3-8bd5-be682043cd3e','','',NULL), -('4866','Flair_Hologram_Lunar_Lantern_Rat_1_a','Usable','UNDEFINED','fb1da392-89de-41f0-9f73-732d89e8e71f','','',NULL), -('4867','DockingTube_Fuel_Ports_AEGS_Sabre_Raven','DockingCollar','UNDEFINED','37a61ba6-8b1b-4cd4-ad13-48dff447537a','','',NULL), -('4868','ARGO_MOLE_Dashboard_CoPilot','SeatDashboard','UNDEFINED','e131c59b-a644-4112-a3bd-41a7ad378ce2','','',NULL), -('4869','Bed','Seat','UNDEFINED','fdf69d1d-0d7d-4a2f-a098-786e152630b8','','',NULL), -('4870','DockingTube_Fuel_Ports_RSI_Aurora_Mk2','DockingCollar','UNDEFINED','55c5f812-00c7-4be4-9dea-9f3e3fd58f25','','',NULL), -('4871','CRUS_Starlifter_Turret_Cap','Misc','UNDEFINED','58fe26bb-bfb3-4ee7-a4fe-0ef1de1f75bb','','',NULL), -('4872','Lt_A_Airlock_Door_Double_3m_Int','Door','AirlockPart','98fcbfe5-6fd0-4fb9-a52c-bdcee0344abf','','',NULL), -('4873','GATS_BallisticCannon_Ventilation_S1','WeaponAttachment','Ventilation','f5404669-315e-4650-862a-8f9ec3b59c5d','','',NULL), -('4874','Construction Pieces','Cargo','Cargo','df671466-1ff7-429e-b0b6-09f9b1f545c2','','',NULL), -('4875','Seat','SeatAccess','UNDEFINED','ba16561a-6528-40c8-96c4-4ba4a4249640','','',NULL), -('4876','Flight Blade','FlightController','UNDEFINED','173de5fb-efe7-4993-89d2-dccfb9911bfa','','',NULL), -('4877','Pulse \"Rouge\" Pistol','Weapon','Small','29c0224c-6c6a-4689-9552-ac148119f911','','',NULL), -('4878','P8-SC SMG Magazine (45 cap)','WeaponAttachment','Magazine','90adb28a-049e-4357-8000-a4bb75bb7f6f','','',NULL), -('4879','Strata Helmet','Armor','Helmet','29a98f61-d24a-46de-9284-c863ee69fb26','','',NULL), -('4880','Carryable_1H_SQ_Datapad_Fluff_Orb_NineTails_002','Misc','UNDEFINED','b5266756-c3d1-4bf9-aa73-10acfae27f3d','','',NULL), -('4881','DockingTube_Fuel_Ports_AEGS_Reclaimer','DockingCollar','UNDEFINED','02622cd0-939d-4772-bd5f-b0f1dfd3ba50','','',NULL), -('4882','sc_nvy_bdu_engineer_belt_04_01_01','Char_Clothing_Torso_2','UNDEFINED','3d2d8351-7ef0-42ee-bce7-aa1513a257c2','','',NULL), -('4883','mobiGlas Original Casing','MobiGlas','Personal','0cdfef23-72f8-458d-bb02-226c33dadc99','','',NULL), -('4884','ORIG_400i_Dashboard_Bridge_Right','SeatDashboard','UNDEFINED','e6168c53-ff75-4a15-b034-5f1013a30545','','',NULL), -('4885','Door Control','Door','UNDEFINED','ff24e6dc-8932-4386-9126-366572226015','','',NULL), -('4886','display_components_noGeo_01Port_s01_cooler','ShopDisplay','UNDEFINED','3cf394ce-fa3b-4124-96ff-9d7e010b205d','','',NULL), -('4887','Kutty Jacket (Modified)','Char_Clothing_Torso_1','UNDEFINED','f1657da2-3983-4bb5-86c9-0d24f51f1ebb','','',NULL), -('4888','ESPR_Prowler_Thruster_Mav_Down','ManneuverThruster','UNDEFINED','64c676f0-2a1a-4857-b41f-ecd007a4cab9','','',NULL), -('4889','Carryable_1H_CY_flair_spaceglobe','Misc','UNDEFINED','60218ac9-1d57-4bbb-b8d0-2b8494be044c','','',NULL), -('4890','Seat','SeatAccess','UNDEFINED','0df731fd-17e1-471a-8845-3345be401266','','',NULL), -('4891','Lumin V \"Valor\" SMG','Weapon','Medium','e9b16168-3969-4865-a17b-e4f49f34a538','','',NULL), -('4892','Door Control','ControlPanel','DoorPart','c2d0e3b0-cbfc-4522-bf01-2f6015ad90bd','','',NULL), -('4893','Venture Helmet White','Armor','Helmet','2a1c2646-b44d-4253-81e7-dab2c86f002c','','',NULL), -('4894','SHIELDS','ShieldController','UNDEFINED','803d7e77-99c5-4119-bbcc-edd2a9262af6','','',NULL), -('4895','H_Dashboard_Projector_HUD_CNOU_HoverQuad','Display','UNDEFINED','cc906b19-297d-49e1-94ef-08d88c15aed3','','',NULL), -('4896','MISC_Fortune_Thruster_Main_Rear_Right','MainThruster','FixedThruster','5e57f50d-c7d8-4c42-98a2-51904c99f3e0','','',NULL), -('4897','ADP Core Violet','Armor','Torso','5f6c37ae-8654-4d36-880b-2fae2813790d','','',NULL), -('4898','AAT-34 Turret','Turret','MannedTurret','d9ed1c9e-bd8d-46cb-9aca-06ac296d71dc','','',NULL), -('4899','box_metal_2_005x005x005_a','Cargo','UNDEFINED','fb86399c-c722-45c2-8d3b-b53647aef9a4','','',NULL), -('4900','TRGT. STATUS','Seat','UNDEFINED','cd7cb839-10cc-4ee3-9464-63a1bbe65d2f','','',NULL), -('4901','RS1 Odysey Spacesuits','Cargo','Cargo','93491fb3-4295-4b41-bdc8-192358f7351a','','',NULL), -('4902','CargoBox_050x050x050_Metal','Cargo','Cargo','2d6a7b18-25b4-4aac-914a-ba38db5a405e','','',NULL), -('4903','Prospector Deck the Hull Livery','Paints','UNDEFINED','fc46ee0b-cefd-4ee7-a85a-d4b3fcec59c7','','',NULL), -('4904','Seat','SeatAccess','UNDEFINED','048616ec-72d8-4392-8604-cbe1aa04a1b2','','',NULL), -('4905','MISC_Fury_LX_Thruster_FixedMav_Top','ManneuverThruster','FixedThruster','8f4f5217-1d1b-4849-8de5-b7173e1c262b','','',NULL), -('4906','RSI_Hermes_Thruster_Retro','ManneuverThruster','FixedThruster','444de729-b1ba-7def-4c32-9852a8729384','','',NULL), -('4907','Screen','SeatDashboard','UNDEFINED','e169c82a-8888-4d79-afe4-e356810b00fa','','',NULL), -('4908','Riccite','Cargo','Cargo','523da472-27f9-40c6-b9f8-beb6284356cb','','',NULL), -('4909','ASAD_DistortionRepeater_Barrel_S3','WeaponAttachment','Barrel','91d276a5-a79c-43ec-8275-9d5eca8e75ac','','',NULL), -('4910','Prowler Deadlock Camo Livery','Paints','UNDEFINED','71a65fca-b58c-461d-ba4b-4ed0032ae45d','','',NULL), -('4911','DockingTube_Fuel_Ports_MISC_Hull_C','DockingCollar','UNDEFINED','5afa805d-d354-40bf-9182-beb20b09b043','','',NULL), -('4912','ORIG_135c_Cargo_Area','Misc','UNDEFINED','dd3b99a5-00f6-4fc9-a3b2-3682404ffaf8','','',NULL), -('4913','Corundum (Raw)','Cargo','Cargo','bc3abc4c-3466-4c9d-9f0a-50e3e2afb76c','','',NULL), -('4914','GATS_BallisticCannon_FiringMechanism_S3','WeaponAttachment','FiringMechanism','53933f98-7685-47f5-a7d7-e57a2ef794e0','','',NULL), -('4915','ANVL_Door_Decal_Carrack_Repair','Decal','DoorPart','3a1d6a58-8794-4925-a418-f0c36e2858e2','','',NULL), -('4916','MISC_Fortune_CargoGrid_Secondary','CargoGrid','UNDEFINED','6b64eaf2-01ff-4c96-b126-2ea06e03f38f','','',NULL), -('4917','Weapon_Rack_Cz_Firerat_011','Usable','UNDEFINED','7bf27ea7-dcdb-437c-a17e-19eec13fa2f5','','',NULL), -('4918','H_Dashboard_Projector_HUD_AEGS_Hammerhead_CP','Display','UNDEFINED','8f568440-70a9-40c7-bfac-3d872dea2e3f','','',NULL), -('4919','Starlancer Wildcat Livery','Paints','UNDEFINED','6c430487-c74b-4cc7-8016-ace36e1720b1','','',NULL), -('4920','Ventra Gloves Blue','Char_Clothing_Hands','UNDEFINED','022b7d7e-85a4-4be2-b00e-c412f8e79921','','',NULL), -('4921','un_can_drink_2_g','Misc','UNDEFINED','640a6935-b89e-4449-bd64-30336abbc247','','',NULL), -('4922','Wastelander Undersuit Ransacker','Armor','Undersuit','980585cd-2025-418d-8bf9-1592efffdf84','','',NULL), -('4923','Manned Turret','TurretBase','MannedTurret','87908c36-95a1-4610-955f-24b229ee83cf','','',NULL), -('4924','Bed_ORIG_300I','Usable','UNDEFINED','7cb75fb1-eac3-41d1-b723-e3cd8791bb0c','','',NULL), -('4925','Manned Turret','TurretBase','MannedTurret','8dc41758-f0a3-416c-9bb5-df25ae1c7401','','',NULL), -('4926','Artimex Arms Hurston Dynamics Executive Security','Armor','Arms','22e68459-2580-4e44-bb4e-269e0a428953','','',NULL), -('4927','Seat','Usable','UNDEFINED','464f2458-7615-4b25-9f6d-5e9d904d8ab0','','',NULL), -('4928','ParaMed \"Oxide\" Medical Device','Weapon','Small','92ffd3c2-8b71-40fa-be32-997bb41afccd','','',NULL), -('4929','Carbon-Silk','Cargo','Cargo','4abcd355-497c-48f5-b5e7-0865c5e7e660','','',NULL), -('4930','bar_box_energy_onemeal_salmon','ShopDisplay','Default','fe6ea2b1-5022-47e9-ac16-6190ba460c06','','',NULL), -('4931','Tormenter S3 Repeater','Weapon','Gun','87d981fb-e1f3-40ad-ad6f-2f7a7a8f665e','','',NULL), -('4932','fruit_plant_2_a_6001','Misc','UNDEFINED','79d7aa09-f3ba-48d1-aea3-c14396c018d8','','',NULL), -('4933','Table_6_Seat_DRAK_Corsair','Usable','UNDEFINED','3765f398-edfa-487e-a1f0-09cc033ae752','','',NULL), -('4934','Quartz \"Black Op\" Energy SMG','Weapon','Medium','b1a26026-5993-4b16-bf17-8bd9070853cb','','',NULL), -('4935','fruit_plant_2_a_4001','Misc','UNDEFINED','8e0dc89c-33aa-4946-8eff-46bf9189c4c0','','',NULL), -('4936','HT_D_Int_Door_Override','Misc','UNDEFINED','aa1df9b0-c208-4b7e-bf8e-d6454ad4cd21','','',NULL), -('4937','fruit_plant_2_a_5001','Misc','UNDEFINED','54a7de07-7026-4d49-b268-32a23f945c47','','',NULL), -('4938','fruit_plant_2_a_2001','Misc','UNDEFINED','46240109-a882-4214-a301-cad38a2e217b','','',NULL), -('4939','fruit_plant_2_a_3001','Misc','UNDEFINED','94c83c49-9156-4e0a-9b1d-091aa2ccebae','','',NULL), -('4940','Citadel Core Earthwork','Armor','Torso','6319f9f7-034a-44a9-8674-e6a981f302a8','','',NULL), -('4941','Vacha Jacket Mahogany ','Char_Clothing_Torso_1','UNDEFINED','3a58c1d7-d466-4300-aed9-fcc2cf15068e','','',NULL), -('4942','fruit_plant_2_a_1001','Misc','UNDEFINED','97cdf6d5-780a-4721-849c-18e7f22f51c8','','',NULL), -('4943','Table_2_Seat_High_RSI_Perseus','Usable','UNDEFINED','344b95da-4496-44e6-9ae4-b6e4ef580ff5','','',NULL), -('4944','Apollo Tier 1 Module Left','Module','UNDEFINED','4adb053e-bc0a-34a1-a3bd-7c9fc2267e84','','',NULL), -('4945','SCItemDisplayScreen_Consumer_Minimal','Display','Default','625f1c8b-8504-482b-976c-aa5bc3a5ba3c','','',NULL), -('4946','RSI_Salvation_Salvage_Arm_Left','ToolArm','UNDEFINED','b0f5b06f-bdd9-4534-af68-b91e8cfb61c0','','',NULL), -('4947','Door Control','Door','UNDEFINED','ec2020f1-6ece-407f-90e3-2c45c5555e99','','',NULL), -('4948','CleaningSpot_Janitor_CleanUp_Puddle','Usable','UNDEFINED','19d12272-c8d6-4f47-b573-8670e0d98d3c','','',NULL), -('4949','game_chess_1_bishop_b','Misc','UNDEFINED','a9fe7522-0889-4399-9700-2dcffa352640','','',NULL), -('4950','Seat','Usable','UNDEFINED','973b1d40-55e6-4e65-a68b-cac3e938bcea','','',NULL), -('4951','Locker_Shallow_WallLeft_AEGS_Pilot_Room','Misc','UNDEFINED','41de0db2-99dc-4ee1-a591-1c52ca10a027','','',NULL), -('4952','Hadanite','Misc','Harvestable','125dd723-95ad-488d-830f-62c954445ca1','','',NULL), -('4953','Weapon_Rack_ANVL_Spartan_1Slot','Usable','UNDEFINED','37952d31-0604-4a45-a159-7eb3475dbfe4','','',NULL), -('4954','Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','ab2179ae-90c8-46f8-9a94-af0f2b0ca71f','','',NULL), -('4955','Processed Food','Cargo','Cargo','e055d560-1235-49a2-9564-55fc0119f4d6','','',NULL), -('4956','YellowJacket GT-210 Gatling','Weapon','Gun','81645f3b-2c01-4fc4-aa9f-ed860b976058','','',NULL), -('4957','Internal Tank','FuelTank','Fuel','3e72b06a-d819-4d7d-91eb-fa5946674326','','',NULL), -('4958','Screen','SeatDashboard','UNDEFINED','1fd318dc-0262-4a96-97d3-10829cb8dc76','','',NULL), -('4959','K7 Pants Imperial','Char_Clothing_Legs','UNDEFINED','09a03303-cc65-4fa3-9d23-160944399b06','','',NULL), -('4960','MSD-582 Missile Rack','MissileLauncher','MissileRack','0a9fee0b-6ba5-447f-a907-1ab864202c9c','','',NULL), -('4961','Controller_Salvage_TractorBeamOnly','SalvageController','UNDEFINED','f974850a-2444-4771-babf-c3a2ece76c3b','','',NULL), -('4962','VNCL_Blade_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','fcda5953-955b-45b5-95a6-a805b13fe1ba','','',NULL), -('4963','Molina Mold Treatment','Cargo','Cargo','ef2e0da7-c4b5-4359-bd44-a65c17118b1d','','',NULL), -('4964','TRGT. STATUS','Seat','UNDEFINED','deb359d1-c3e5-4f9d-b4a8-38e1776526aa','','',NULL), -('4965','AEGS_Javelin_SCItem_Seat_Captain','Seat','UNDEFINED','3a2f6b10-40fe-4d26-aa4c-20f308e6711c','','',NULL), -('4966','Yubarev \"Mirage\" Pistol','Weapon','Small','f9678f5a-3aee-4355-96fe-8bb78f49df83','','',NULL), -('4967','CR-60','ExternalFuelTank','UNDEFINED','c0a447a6-d081-4587-acda-fefa42b38927','','',NULL), -('4968','Taranite (Raw)','Cargo','Cargo','e926cc03-91fc-491f-9c2c-9b27830d907c','','',NULL), -('4969','Weapon_Rack_1_KLWE_LMG_Common_001','Usable','UNDEFINED','f7ccaa50-0b42-4b82-a1f7-d349a967394b','','',NULL), -('4970','TRGT. STATUS','Seat','UNDEFINED','3f1f7ac7-5eb8-4f3a-b2b8-6793ea22cea8','','',NULL), -('4971','Weapon_Rack_6_Slot_RSI_Com_Heavy','Usable','UNDEFINED','28510ed6-3628-4d16-8c80-7f230d894956','','',NULL), -('4972','Davlos Shirt Night','Char_Clothing_Torso_0','UNDEFINED','961a54ff-afea-4132-9e03-f1efeb162e76','','',NULL), -('4973','DynaFlex','Cargo','Cargo','9977b426-269b-4805-9b06-b3a828f2e891','','',NULL), -('4974','San\'tok.yai Harmony Livery','Paints','UNDEFINED','6d950c5f-66a6-442c-aa69-a0993e5f3b2e','','',NULL), -('4975','Stirling Exploration Backpack Olympian Edition','Armor','Backpack','5f0bf42e-95fc-479b-ac02-46ce5d0dfb5b','','',NULL), -('4976','Antium Arms Jet','Armor','Arms','caa2922b-8512-4430-9980-6238747acaab','','',NULL), -('4977','Lynx Arms (Modified)','Armor','Arms','64d4fc3f-1682-43a8-bb99-d45ca9a76018','','',NULL), -('4978','Prota','Cargo','Cargo','8cf31d27-742c-4832-bed4-8c3673f156fd','','',NULL), -('4979','MissileRack_Large','Usable','UNDEFINED','f4a17f6c-f452-4c70-90c2-6cc5a01148c3','','',NULL), -('4980','Argos IX-G Torpedo','Missile','GroundVehicleMissile','e7676087-425d-453e-932c-aaae73932dfd','','',NULL), -('4981','Testudo Arms Turfwar','Armor','Arms','796b201a-bc50-43de-b116-4b6c4179d18e','','',NULL), -('4982','Vanguard New Dawn Livery','Paints','UNDEFINED','6e27e43c-d5df-4012-9de5-ce101ef83c43','','',NULL), -('4983','Mahoney Nurse Scrub Top Honeycomb','Char_Clothing_Torso_1','UNDEFINED','d045a041-607e-411b-885f-c269d871af35','','',NULL), -('4984','Access','SeatAccess','UNDEFINED','196c6bc3-7b68-4758-ad0a-c38376e38f7b','','',NULL), -('4985','Arcus Gloves Brown','Char_Clothing_Hands','UNDEFINED','7703d292-d9a5-4c0a-a11a-b05ed6e7f1d1','','',NULL), -('4986','IAE 2954 Hat White','Char_Clothing_Hat','UNDEFINED','26887e82-4683-4ef2-b7e7-9e308911b069','','',NULL), -('4987','ANVL_Hornet_F7CM_Thruster_Mav_Joint_02','ManneuverThruster','JointThruster','3dc96ab5-8c6f-4e7e-a1ec-e46c35ae55e2','','',NULL), -('4988','Devastator \"Brimstone\" Shotgun','Weapon','Medium','45a5b5c4-043b-4bd5-9b14-4d993ff2d03c','','',NULL), -('4989','Door Control','DockingAnimator','UNDEFINED','e80af1c6-e841-42dd-8e9e-01bfab30d9b7','','',NULL), -('4990','Ventris Jumpsuit Crusader Edition Light Blue / Grey','Char_Clothing_Torso_1','UNDEFINED','b0f37270-f685-46aa-98ca-e3a800eb6def','','',NULL), -('4991','Argus Helmet','Armor','Helmet','e9812df7-f461-4ae6-94df-5e682d50ef61','','',NULL), -('4992','Door Control','Door','UNDEFINED','3e4fcbda-a5c1-473c-a4dc-48ea095a94ae','','',NULL), -('4993','ORIG_400i_Seat_Bridge_Left','Seat','UNDEFINED','fcee71b9-92f6-4664-8be5-5d36d286ec68','','',NULL), -('4994','Stud','Char_Head_Piercings','UNDEFINED','8030f5ad-09d1-4808-9de3-413a7f19a5f7','','',NULL), -('4995','MedGel','Cargo','Cargo','bc00c18b-9939-4736-b471-94dbfaee03c7','','',NULL), -('4996','Ardent Boots Violet','Char_Clothing_Feet','UNDEFINED','a91f0fd9-8262-4cee-929e-307f6ac703f7','','',NULL), -('4997','Venture Arms Pathfinder','Armor','Arms','b1fb4822-79da-49dc-8861-deb353c98356','','',NULL), -('4998','Year of the Pig Envelope','Misc','UNDEFINED','a8358b97-33d1-473f-89df-2e73bcdb4e24','','',NULL), -('4999','Titanium','Cargo','Small','848c57d1-81c3-4f75-9a3b-44f8c2da74a1','','',NULL), -('5000','Kareah_Datapad_MissingBenny_4x3_Screen','Display','UNDEFINED','3f5832b3-dcec-477c-b8df-d9cdae6677b5','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('5001','fruit_plant_1_a_1001','Misc','UNDEFINED','7b674008-2462-4f76-8d1b-bfdcb8347609','','',NULL), -('5002','Gold (Ore)','Cargo','Cargo','c6bc9255-5689-4cd8-bea2-d32ee5d3f234','','',NULL), -('5003','Door Control','Door','UNDEFINED','ed51e4a6-b804-43ab-9630-d95f408e291e','','',NULL), -('5004','fruit_plant_1_a_3001','Misc','UNDEFINED','53f69ef6-5b6d-4725-bf1c-b0f4e8431bf3','','',NULL), -('5005','fruit_plant_1_a_2001','Misc','UNDEFINED','608acb9d-23af-42dd-b6b0-7bc125d82f78','','',NULL), -('5006','Second Life Undersuit','Armor','Undersuit','7a985ba3-0647-42a1-803a-d31fea705bfe','','',NULL), -('5007','fruit_plant_1_a_5001','Misc','UNDEFINED','b2d5dc9a-ce3c-49b7-9af0-3cfcb4e09ce6','','',NULL), -('5008','fruit_plant_1_a_4001','Misc','UNDEFINED','b6b97d5d-52b7-4e64-9f45-ff019de0f65d','','',NULL), -('5009','Railing_Straight_8m_Lowtech_Open','Usable','UNDEFINED','5b66c5e6-fd20-46d4-994f-4c8c91ff1291','','',NULL), -('5010','fruit_plant_1_a_6001','Misc','UNDEFINED','731ebc8c-af88-4e0b-ae34-d3657b73905b','','',NULL), -('5011','Geist Armor Helmet Whiteout','Armor','Helmet','a13542f1-e244-4cb4-a39d-54634ca0115e','','',NULL), -('5012','RSI_Polaris_SeatAccess_Turret_TopRight','SeatAccess','UNDEFINED','2beb3999-4678-4f8e-869a-b8e090250154','','',NULL), -('5013','Anvil Hat Olive','Char_Clothing_Hat','UNDEFINED','cd964495-3340-4036-ae44-47c7e3c4074f','','',NULL), -('5014','Radar_Display_Gladius_PU','Display','UNDEFINED','5f89f74d-396a-4009-8f43-b2fa58d5a417','','',NULL), -('5015','Lynx Arms Blue','Armor','Arms','e2070edb-01ac-447d-a76e-eba5ef2ad05d','','',NULL), -('5016','Door','Door','UNDEFINED','72cb37c7-f58e-4936-a86a-1a5dff5468b0','','',NULL), -('5017','CargoBox_050x050x050_Plastic','Cargo','Cargo','e10dbcec-85bd-4562-9be9-bfe67930e88e','','',NULL), -('5018','DRAK_Buccaneer_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','8aeb22a4-266b-48e0-8ace-763132deb018','','',NULL), -('5019','Door Control','Door','UNDEFINED','ffa83671-c3d0-4202-a990-7f3decc6fa7c','','',NULL), -('5020','Golem Keystone Livery','Paints','UNDEFINED','0cdeb891-8f22-4890-bce0-3134f28b0b12','','',NULL), -('5021','Strata Legs Crusader Edition','Armor','Legs','bee3ecd9-d2bf-4acf-bd28-38d7e78e3c78','','',NULL), -('5022','H_Dashboard_Projector_HUD_ESPR_Talon','Display','UNDEFINED','f23d3bb8-4f62-4374-9813-5f6e6f414542','','',NULL), -('5023','ESPR_BallisticCannon_FiringMechanism_S6','WeaponAttachment','FiringMechanism','c5e790dc-5e06-4194-bdf2-4ed42033793f','','',NULL), -('5024','Door Control','Door','UNDEFINED','63191b11-ea6a-4ca1-a67e-c8eefe5c4e0d','','',NULL), -('5025','Hellion VII-G Missile','Missile','GroundVehicleMissile','8cad8989-85f5-4a86-b074-9cbc516afb44','','',NULL), -('5026','Invictus Flight Jacket','Char_Clothing_Torso_1','UNDEFINED','0ebd6e10-59aa-4960-bb2c-f55d5c3d13b1','','',NULL), -('5027','Seat','Usable','UNDEFINED','b6faa3e3-beee-46d0-b718-3b4bcf9a1624','','',NULL), -('5028','Nova Ember Storm Livery','Paints','UNDEFINED','8316aca2-859a-43bd-b8bf-2d9b0813314c','','',NULL), -('5029','DRAK_Clipper_Thruster_Main_Bottom','MainThruster','UNDEFINED','2b6f8d99-c7f1-4166-bcda-6f7f3ebb4755','','',NULL), -('5030','IAE 2955 T-Shirt Black','Char_Clothing_Torso_0','UNDEFINED','1cef6daf-6b4c-4811-9b47-960c7094d677','','',NULL), -('5031','Internal Tank','QuantumFuelTank','QuantumFuel','397f7a30-01cc-447c-a133-74989d105523','','',NULL), -('5032','DRAK_Cutlass_Red_Thruster_Maneuver_Front_Top','ManneuverThruster','JointThruster','9edab362-8f93-4324-9c13-aace215dd1e8','','',NULL), -('5033','ORC-mkX Helmet Woodland','Armor','Helmet','6d7bb7cd-ad17-4711-98cb-df29fcd04d11','','',NULL), -('5034','harvestable_base_PrisonStash_03','Misc','UNDEFINED','4020771f-4fa2-4a58-af58-b628fa718452','','',NULL), -('5035','Battery','Misc','Personal','ce83f543-6233-4c20-9725-e6716cfa4fe7','','',NULL), -('5036','Lynx Arms Aqua','Armor','Arms','7ef5780d-9ced-47ad-b70b-ba0755dacb44','','',NULL), -('5037','TruHold Tractor Beam Attachment','WeaponAttachment','Utility','03b3db91-0063-4da2-99f7-16b20ede4209','','',NULL), -('5038','Access','SeatAccess','UNDEFINED','90067b23-32b5-4c2b-83ef-1e712e1fb744','','',NULL), -('5039','ADP Legs Black','Armor','Legs','3d57d3c4-185a-4426-8d92-239fc8f0a59a','','',NULL), -('5040','Door Control','Door','UNDEFINED','c303c4c9-3126-4574-9eb4-3714b7d49bf7','','',NULL), -('5041','TaskForce I Missile','Missile','Missile','7561e67e-bb85-4dbc-a386-0555b67b02cc','','',NULL), -('5042','facial_hair_042','Char_Head_Beard','UNDEFINED','03301262-6787-42c1-8832-2f0ec75f565c','','',NULL), -('5043','Access','SeatAccess','UNDEFINED','f9432877-1577-4bc1-83f2-84eb81efe2b7','','',NULL), -('5044','Carryable_2H_FL_Vlk_Pearl_Medium_03','Misc','Harvestable','d28af3fa-e1df-4238-a9be-7623291f2c2d','','',NULL), -('5045','Coloma Coat Navy and Sage','Char_Clothing_Torso_1','UNDEFINED','aa269a17-f49a-42c3-a1ce-6e09048cf029','','',NULL), -('5046','Turret','TurretBase','MannedTurret','d916e766-b93c-42c4-a952-7fc84ad27ae4','','',NULL), -('5047','Bed_RSI_Aurora','Usable','UNDEFINED','9ac42c07-a53d-4379-9bdc-2bd963df35ce','','',NULL), -('5048','Drivetrain','WheeledController','UNDEFINED','ef1b7a86-4756-47df-847a-6c158252b563','','',NULL), -('5049','PH - scu_service_shirt_02_kelto01_01','Char_Clothing_Torso_0','UNDEFINED','f7ff6220-18bf-4194-b9be-028a9c98316e','','',NULL), -('5050','Detatrine','Cargo','Cargo','8dcbd3fd-e31d-45a8-802e-7e5767ee1cde','','',NULL), -('5051','H_Dashboard_Projector_HUD_ANVL_Terrapin','Display','UNDEFINED','e1a61539-b0aa-4688-aa1d-02aabd857ff0','','',NULL), -('5052','Strata Backpack Neptune','Armor','Backpack','79ab505c-1ee4-4111-8f53-732e9ca2e91d','','',NULL), -('5053','Bar_Table','Usable','UNDEFINED','d9148db2-e358-45db-8231-9481b958d67e','','',NULL), -('5054','Mivaldi Pants Olive','Char_Clothing_Legs','UNDEFINED','5f02e112-5dea-402f-9105-5eeaaa1eeb68','','',NULL), -('5055','Vulture IceBreak Livery','Paints','UNDEFINED','82f191d3-0619-4d22-8b80-bba00e084e20','','',NULL), -('5056','VariPuck S3 Gimbal Mount','Turret','GunTurret','7a642c58-090a-4480-af2b-25fda4201630','','',NULL), -('5057','Steel','Cargo','Cargo','90d9d03b-f7ef-4e3d-a231-3678fa6762c5','','',NULL), -('5058','Paladin Solaris Livery','Paints','UNDEFINED','9f08c0ec-5e54-4bf6-a32d-5fc103459a3e','','',NULL), -('5059','Piecemeal Armor Core','Armor','Torso','9b2d97da-d08f-4df8-99bb-7af97983bd5c','','',NULL), -('5060','MISC_Starfarer_Gemini_Thruster_Mav_Fixed_02','ManneuverThruster','FixedThruster','1d39fcd0-ff6d-4df7-8897-20f73c4c5f26','','',NULL), -('5061','Prestige Murray Cup Racing Jacket','Char_Clothing_Torso_1','UNDEFINED','1ef5ffb8-c584-47cd-8f23-e41e5f63eb8a','','',NULL), -('5062','Meat Skewer','Food','Consumable','37bc36b8-3b35-461e-a553-3a83130fd2e7','','',NULL), -('5063','MacFlex Legs \"Rust Society\"','Armor','Legs','b1057e0b-7aaa-4249-90a2-ad791074f6fe','','',NULL), -('5064','Balandin','QuantumDrive','UNDEFINED','a7375ca6-be9c-4155-89fb-c507e866ff03','','',NULL), -('5065','ADP Core Aqua','Armor','Torso','7c18157e-6b94-4f5a-a6a6-bd6b0718257c','','',NULL), -('5066','BEHR_LaserCannon_Ventilation_S7','WeaponAttachment','Ventilation','4e70c99b-24c4-4f3e-824d-8f6f9b245463','','',NULL), -('5067','Large Artifact Fragment (Damaged)','Misc','UNDEFINED','37f8dba1-2ead-4587-bbd6-1204619d6998','','',NULL), -('5068','HRST_LaserRepeater_FiringMechanism_S3','WeaponAttachment','FiringMechanism','19125eae-289f-4012-97fa-c3176faea148','','',NULL), -('5069','Door Control','Door','UNDEFINED','cae16cc3-98e3-4e3f-b945-1dd8bb241284','','',NULL), -('5070','Testudo Core Nightveil','Armor','Torso','75903fea-f957-46d1-a45b-77bcb3fbf2cb','','',NULL), -('5071','AEGS_Javelin_CargoGrid_S','CargoGrid','UNDEFINED','cfbd2dc4-304e-4a7d-82a1-fafbf0815682','','',NULL), -('5072','Omnitrek Jacket','Char_Clothing_Torso_1','UNDEFINED','5e2ed1ce-cc7b-4be5-9e96-cbac2fea76a9','','',NULL), -('5073','Lunes (Spiral Fruit)','Cargo','Cargo','bb0fdb52-f524-4628-a0bf-cc2752237ba0','','',NULL), -('5074','Seat','SeatAccess','UNDEFINED','9d868235-d0ee-46ad-851a-2e5a1cd48e7b','','',NULL), -('5075','Revenant Tree Pollen','Cargo','Cargo','588adba6-1538-4969-96be-27dd2f2e98ac','','',NULL), -('5076','Beryl','Cargo','Small','43893991-e1b5-49ee-aa48-61375e11ce83','','',NULL), -('5077','CRUS_Starlifter_SCItem_Seat_CoPilot','Seat','UNDEFINED','edc004ef-61a3-47f0-b053-d4984989d6fa','','',NULL), -('5078','Antium Helmet Sand','Armor','Helmet','71f5e2d7-bc27-4b65-95d3-c3e928f7d44c','','',NULL), -('5079','Seat','Usable','UNDEFINED','71075a35-f5c7-4986-8b0b-b11ccb70c7ea','','',NULL), -('5080','sc_nvy_bdu_engineer_belt_01_01_11','Char_Clothing_Torso_2','UNDEFINED','5ce552e7-fa2e-4db7-8235-9cbdd1e208f5','','',NULL), -('5081','Weapon_Rack_1_NONE_Special_Ballistic_Uncommon_002','Usable','UNDEFINED','029a40f0-f963-44b4-849d-6471c2fa92bb','','',NULL), -('5082','AEGS_Sabre_Peregrine_Thruster_Retro_Right','ManneuverThruster','FixedThruster','ed2ae456-31b6-4167-8bf0-5226736b2df0','','',NULL), -('5083','Ammonia','Cargo','Cargo','9279af2b-e959-4247-9168-36d5a8de11b6','','',NULL), -('5084','MISC_Starfarer_Thruster_Mav_Fixed_02','ManneuverThruster','FixedThruster','121d0d3e-d262-4b5a-bba1-93d6973b9ff1','','',NULL), -('5085','VNCL_Blade_RADR_Display','Display','UNDEFINED','4a8ced93-47f8-4393-adcd-3c2620f3e05e','','',NULL), -('5086','ANVL_Carrack_Thruster_Main_Large','MainThruster','FixedThruster','5e79be94-5052-4617-b5d3-c433b4401e0b','','',NULL), -('5087','Gasping Weevil Eggs','Cargo','Small','3b46d984-2422-4d79-81cb-a855ba01c6d9','','',NULL), -('5088','Personal Storage','Cargo','UNDEFINED','d5f4e926-1002-4da3-935f-aadab330e8b0','','',NULL), -('5089','Morningstar Helmet Outcrop','Armor','Helmet','6b6f6653-7fff-4358-9cde-82f2e2b281d7','','',NULL), -('5090','alb_hat_02_01_01','Char_Clothing_Hat','UNDEFINED','331df6a7-3518-4ab7-ab3c-6a8ddffb4eaf','','',NULL), -('5091','Vehicle_Screen_MFD_Holographic_ORIG_85X_L','Display','UNDEFINED','3516979a-9d5e-4707-a7f4-6e57529d6279','','',NULL), -('5092','DoorProximitySensorItem_2x5x1_5','Sensor','DoorPart','359f9b4e-b90d-42a5-9d35-3680ab5a8fb7','','',NULL), -('5093','table_booth_ht_4_seat_1_a','Usable','UNDEFINED','17ad2e51-cd16-4364-99ad-9a5a92080ac7','','',NULL), -('5094','Door Control','Door','UNDEFINED','e173752b-a70e-4e7f-8b6d-f2af3ce1c147','','',NULL), -('5095','Iron','Cargo','Cargo','07fa39d2-97a3-4155-9660-dcc2324a47a5','','',NULL), -('5096','CryoPod','Cargo','Cargo','5078df42-fc7b-4098-935b-f637738df3fa','','',NULL), -('5097','Carryable_1H_CY_drug_stomachmedicine_2_b','Misc','UNDEFINED','c8106bba-be66-4d7b-8e68-66b1685a10c7','','',NULL), -('5098','Door_Ship_Sensor_Proximity_2x2x3','Sensor','DoorPart','b15d4461-0e28-40c5-93db-bcf82296931a','','',NULL), -('5099','Bottle','Misc','UNDEFINED','62735fa4-0e74-4c29-9f6b-1ee4e292e544','','',NULL), -('5100','Geist Backpack Desert','Armor','Backpack','6b526bcf-646e-4c70-86af-7f0adab11e4a','','',NULL), -('5101','Kaswal Jacket Taupe','Char_Clothing_Torso_1','UNDEFINED','80056f51-1cbc-4339-90b1-ce8826bd6751','','',NULL), -('5102','Venture Legs Orange','Armor','Legs','97f33da3-3591-44d7-9156-b172580d0d2a','','',NULL), -('5103','MRAI_Pulse_LX_Thruster_Main','MainThruster','FixedThruster','d7ec1177-a2eb-4d04-a38d-b0c470f18b97','','',NULL), -('5104','Carryable_1H_CY_bottle_bar_14_mixer_d','Misc','UNDEFINED','56836e69-a544-4a19-8a0b-a89e496b14bf','','',NULL), -('5105','Seat','Usable','UNDEFINED','a417e0b2-084b-4652-9a8b-882f75754819','','',NULL), -('5106','ORIG_300i_CargoGrid_Front','CargoGrid','UNDEFINED','1bddc2cc-3765-4eec-8430-31c1697c78eb','','',NULL), -('5107','Paint_Ballista_Camo_01','Paints','UNDEFINED','6434a1d7-d9a3-4c0e-8cb5-428af8f90bb8','','',NULL), -('5108','m_human_mannequin_base_armor_Collector_SBNav','ShopDisplay','UNDEFINED','413fc6bd-1268-404b-8e43-7c84c5caaf63','','',NULL), -('5109','Diamond Laminate','Cargo','Cargo','c5ba6293-4af5-4106-b9a8-7f7679ea1c00','','',NULL), -('5110','Door Control','ControlPanel','DoorPart','31d81875-5e0a-4066-afd1-42023cfd816f','','',NULL), -('5111','Gale Head Cover Maroon','Char_Clothing_Hat','UNDEFINED','ed3d10d6-970e-4ab6-9731-4dd951de636e','','',NULL), -('5112','CRUS_Star_Runner_Thruster_Main','MainThruster','UNDEFINED','4a486775-cee4-4589-8f4a-14d3c91e231d','','',NULL), -('5113','Elevator Control','Door','UNDEFINED','1ca69cad-6ff3-4c0b-9fd8-91fb436ed1f2','','',NULL), -('5114','Internal Tank','QuantumFuelTank','QuantumFuel','56c13c9f-def6-4bee-a0eb-d087c3c62b90','','',NULL), -('5115','Neon','Cargo','Cargo','e0aa05b5-5b3f-4467-b948-ab998ada2c29','','',NULL), -('5116','ORIG_890J_Seat_Bridge_Right','Seat','UNDEFINED','d148a9cb-0302-4568-8e55-139fd583c728','','',NULL), -('5117','Orange QuikFlarePro','Weapon','Grenade','0a90af88-7ae3-4590-8c5a-ac6cbe2fb67f','','',NULL), -('5118','Carbide Jacket','Char_Clothing_Torso_1','UNDEFINED','0938581e-1fb6-4b17-bddc-898bf10160f4','','',NULL), -('5119','Defiance Arms Tactical','Armor','Arms','c5accc85-3784-40dc-b819-8949e1394f66','','',NULL), -('5120','TMBL_Cyclone_SCItem_Seat_Passenger','Seat','UNDEFINED','fb084195-0ac2-48f0-923f-0d407182d912','','',NULL), -('5121','HexaPolyMesh Coating','Cargo','Cargo','7e454cad-da11-4942-ba1a-f90ec9e8d410','','',NULL), -('5122','Venture Helmet Ascension','Armor','Helmet','d59c2342-2612-4365-9ef3-e4caf4e5cda6','','',NULL), -('5123','Prim Shoes','Char_Clothing_Feet','UNDEFINED','9e85fa88-ab74-4368-a59a-f519c79a3bf6','','',NULL), -('5124','Pite','Char_Head_Piercings','UNDEFINED','6680b5dd-21dc-4f00-95e9-d2396006dec0','','',NULL), -('5125','Ketchum Beanie Blue','Char_Clothing_Hat','UNDEFINED','d785d10e-4b77-4a3a-a35f-fba6510b5b95','','',NULL), -('5126','Door Control','Door','UNDEFINED','ee20a1e4-064d-40b7-9819-d3088685f107','','',NULL), -('5127','MSD-322 Missile Rack','GroundVehicleMissileLauncher','GroundVehicleMissileRack','684570ea-3d46-48a1-a1e1-8741957fe083','','',NULL), -('5128','SRV Sky Blue Livery','Paints','UNDEFINED','327644ba-fc9d-4afa-b4b5-22b0d0663db9','','',NULL), -('5129','AEGS_Reclaimer_DockingTube','DockingCollar','UNDEFINED','6f33b974-af4c-4b2b-b196-266df9f7afd7','','',NULL), -('5130','Carryable_1H_CY_weight_dumbbell_1_6kg_b','Misc','UNDEFINED','61a852a3-e497-42fd-bd55-266c363a16cf','','',NULL), -('5131','m_human_mannequin_base_armor_Collector_GG_Novikov','ShopDisplay','UNDEFINED','842fb520-93a4-46cc-9404-412a06f48880','','',NULL), -('5132','f_human_mannequin_marine_light','ShopDisplay','UNDEFINED','fdecb773-b028-4add-989e-67f22ce1178b','','',NULL), -('5133','Sorel Hat Armadillo','Char_Clothing_Hat','UNDEFINED','fc6aa72a-f8ec-43e7-b7bb-d949114171d6','','',NULL), -('5134','LT_DoorPanelScreen','Misc','UNDEFINED','ef9a0788-8306-435d-a7d7-fcc3cf0437ec','','',NULL), -('5135','Door Control','ControlPanel','DoorPart','52b64fd3-66b4-4e3a-bebb-c27c8af36e67','','',NULL), -('5136','Venture Helmet Sienna','Armor','Helmet','12190b6b-b00c-43bc-9486-503426d4129b','','',NULL), -('5137','Gladius Invictus Blue and Gold Livery','Paints','UNDEFINED','e5086306-a0f6-4031-bc93-a06483ede2a6','','',NULL), -('5138','MacFlex Arms Olive','Armor','Arms','0294d935-eeff-43b2-97c7-879897ddb48e','','',NULL), -('5139','MacFlex Core Red','Armor','Torso','0a135446-a443-421f-8ed7-234f13f5064b','','',NULL), -('5140','MSD-616 Missile Rack','MissileLauncher','MissileRack','c113071d-02c6-4589-b503-40c3b51ab31c','','',NULL), -('5141','ARMR_ANVL_Spartan','Armor','Medium','f6088b00-f889-4a7a-bd44-1f41f6ae9012','','',NULL), -('5142','display_item_noGeo_01Port_WeaponPersonal','ShopDisplay','UNDEFINED','5141c162-142f-4abc-826b-b92b81428f5d','','',NULL), -('5143','Bison Military Boots','Char_Clothing_Feet','UNDEFINED','61209e6e-46da-467a-b920-0994dd6cfd73','','',NULL), -('5144','Door_Ship_Sensor_Proximity_Occupied_1x1x1','Sensor','DoorPart','4dfe6465-9af1-4986-9617-c9f1ce0c8d7c','','',NULL), -('5145','DockingTube_Fuel_Ports_MISC_Reliant','DockingCollar','UNDEFINED','c09feb62-b3a1-4780-b328-650718019451','','',NULL), -('5146','MISC_Freelancer_SCItem_Seat_Bed_Upper_Left','Seat','UNDEFINED','dba8d81d-fb42-4159-b2b6-55d850d91999','','',NULL), -('5147','un_can_drink_2_j','Misc','UNDEFINED','70c03343-544e-485d-b18a-3f65b96550aa','','',NULL), -('5148','ANVL_Hawk_Thruster_Retro','ManneuverThruster','JointThruster','2b9696c2-0961-4ac5-9178-21b7a56a412f','','',NULL), -('5149','Dashboard','SeatDashboard','UNDEFINED','9af6d8e9-a17b-41b1-8de3-063594480f66','','',NULL), -('5150','ATC_PanelScreen_Levski_1','Misc','UNDEFINED','1b3cd5a9-0fb1-41eb-8076-c03e9a0c984c','','',NULL), -('5151','AD6B Ballistic Gatling','Weapon','Gun','6c46b8e3-81c8-4018-bce2-740b81174a00','','',NULL), -('5152','Drink_bottle_puree_01_peach_a','Drink','Bottle','db4fcf54-82a3-471d-8411-eaeca4c8ec19','','',NULL), -('5153','FL-33 Cannon','Weapon','Gun','3a5bd643-3c3e-42fb-87ce-2a44b976555d','','',NULL), -('5154','Recycled Material Composite','Cargo','Cargo','7a951bce-9329-460a-8933-126613aee232','','',NULL), -('5155','AIModule_Unmanned_EA','AIModule','UNDEFINED','b2cbc14a-0393-4ea3-9004-61901f5881a6','','',NULL), -('5156','Fury Wasteland Camo Livery','Paints','UNDEFINED','e532df39-c360-42dd-9ebc-dfccf6bd0964','','',NULL), -('5157','Door Control','ControlPanel','DoorPart','4bfa03f0-15a9-43a8-81cc-6c3f90ca469c','','',NULL), -('5158','Edgeriders Shoes Meringue','Char_Clothing_Feet','UNDEFINED','9da3c93c-24ae-4267-a20a-6a0c22564b8c','','',NULL), -('5159','Duotone Duster','Char_Clothing_Torso_1','UNDEFINED','04d1d6d4-9e4b-48fa-8a2d-743072c67b90','','',NULL), -('5160','H_Dashboard_Projector_HUD_CNOU_Mustang_Alpha','Display','UNDEFINED','8fbad42d-e9dc-46c9-a883-987459e0839d','','',NULL), -('5161','m_human_mannequin_slaver_medium','ShopDisplay','UNDEFINED','2f8bc1f0-61ee-4a0b-a046-2bd3e568c4b4','','',NULL), -('5162','\'WRATH\' Cannon','Weapon','Gun','fde9335b-a9b7-4d7d-a4a4-69b1158de320','','',NULL), -('5163','H_Dashboard_Projector_HUD_RSI_Salvation','Display','UNDEFINED','346a2c7c-eb20-4389-b46b-85a43c846028','','',NULL), -('5164','MRAI_Pulse_Thruster_Mav','ManneuverThruster','FixedThruster','e7b782ba-f5ba-4f98-bbe6-93d293a9bc5c','','',NULL), -('5165','SHIELDS','ShieldController','UNDEFINED','222ae134-3dce-486f-b127-dbe7bd0c0c83','','',NULL), -('5166','ARMR_MISC_Starlancer','Armor','Medium','be981b13-863a-488f-83f4-e5e187253fb7','','',NULL), -('5167','Seat','Usable','UNDEFINED','d76f0787-c408-401b-92d5-02156f64a520','','',NULL), -('5168','Seat','Usable','UNDEFINED','6bcdd3b9-5331-454f-b7be-66664701f464','','',NULL), -('5169','Microid Battle Suit Helmet Crucible ','Armor','Helmet','b29afd36-4a02-4687-819f-f01146352e19','','',NULL), -('5170','Microid Battle Suit Helmet Badland','Armor','Helmet','0ddf3144-5380-4f50-857a-bdcccebd7138','','',NULL), -('5171','Microid Battle Suit Helmet','Armor','Helmet','cd8b1a7b-9473-47c0-b52b-e24403cceec8','','',NULL), -('5172','Gladius Pirate Livery','Paints','UNDEFINED','43a9a267-8f89-42a6-967e-44efec1d28b2','','',NULL), -('5173','Pingala Seeds','Misc','Harvestable','ea165f19-e4a6-4ee4-86d3-a0364a6307bd','','',NULL), -('5174','DockingTube_Fuel_Ports_ANVL_Lightning','DockingCollar','UNDEFINED','91590edf-3361-49d7-aef2-e8ce6f74d4f8','','',NULL), -('5175','Ramp Control','Usable','UNDEFINED','4616c2e2-12e2-4e90-7098-b0e247f399b8','','',NULL), -('5176','100 Series Foundation Fest Livery','Paints','UNDEFINED','b9cab30e-8ab3-4037-b758-790eb69f502e','','',NULL), -('5177','Door Control','Door','UNDEFINED','7b8ac5fd-878b-499a-900b-26371d7dce24','','',NULL), -('5178','78-WH Pants','Char_Clothing_Legs','UNDEFINED','b7e59bfa-b6b5-418d-9e7b-f1b2f41b7fe5','','',NULL), -('5179','Slickdry Waders Primrose','Char_Clothing_Legs','UNDEFINED','488e8177-44c4-431b-ae9e-2b5615f37282','','',NULL), -('5180','K7 Pants Sienna','Char_Clothing_Legs','UNDEFINED','26cac158-8e28-419e-a0e5-4e7419b14a1b','','',NULL), -('5181','Personal Storage','Cargo','UNDEFINED','88e9f165-de50-4a5d-b871-f119c0865764','','',NULL), -('5182','Mercury Star Runner Equinox Livery','Paints','UNDEFINED','2f6fbf38-ec6c-457c-b6ca-66c606b6f2f9','','',NULL), -('5183','Maintenance_Workzone_Middle_Inspect','Usable','UNDEFINED','cba42d84-23fd-4e57-b924-aa3b33a8459b','','',NULL), -('5184','CNOU_Nomad_Locker_Armor','Player','UNDEFINED','35c7e342-11f3-44bd-bdd0-5e44006ab54c','','',NULL), -('5185','Relay','Relay','UNDEFINED','b50ce2fd-9b1d-4daf-8bbc-e5b10d769e63','','',NULL), -('5186','AEGS_Vanguard_SCItem_Seat_Bed_Upper','Seat','UNDEFINED','e4e16fd2-a2e3-4866-b365-84ee6bc52535','','',NULL), -('5187','Oracle Helmet','Armor','Helmet','5512d873-28bb-4e2c-a452-f2474ec26d36','','',NULL), -('5188','Loscha Work Vest Valencia','Char_Clothing_Torso_1','UNDEFINED','4b9b86da-af4d-4bc2-b9df-26977494681d','','',NULL), -('5189','SHIELDS','ShieldController','UNDEFINED','bf1613d4-5bf0-48b7-9038-ab498a6bdce9','','',NULL), -('5190','Titanium','Cargo','Cargo','afd21283-5fb4-48a4-880d-62d181086de7','','',NULL), -('5191','Shower_Col_a_Hab_a_01','Usable','UNDEFINED','5749f883-e201-4d0c-9493-f1c06402dfed','','',NULL), -('5192','Scrap Bearing','Misc','Junk','1b963a99-c25a-4e57-b513-7836723a81b9','','',NULL), -('5193','MISC_Hull_C_Ring_11','Room','UNDEFINED','bd42144e-508c-40d3-9596-cc805549b477','','',NULL), -('5194','BroadSpec-Go','Radar','MidRangeRadar','ad6617d1-ccbf-45e4-9ac3-8bd0bc6b8ff5','','',NULL), -('5195','ReadyMeal (Meatball Marinara)','Food','Sachet','38c1f26d-466e-4c01-9204-abf8445f5862','','',NULL), -('5196','Luminalia Gift','Cargo','Cargo','ac6d2ed0-0128-48ee-83ad-1adce009fa05','','',NULL), -('5197','Door Control','Door','UNDEFINED','889cd861-96b8-4e77-9b89-6fa9eb23805a','','',NULL), -('5198','Door Control','Door','UNDEFINED','bbd5ad46-08b6-4a20-9b73-7c5686d81b9c','','',NULL), -('5199','Arcus Gloves Purple','Char_Clothing_Hands','UNDEFINED','c4dc71ec-3335-422f-a309-33c68253c710','','',NULL), -('5200','Attrition-4 Repeater','Weapon','Gun','8d868b78-eccd-4ba5-a4a5-57e2f20bdc35','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('5201','Inquisitor Core Ignitor','Armor','Torso','464e15a1-fa60-459c-80f1-82d6096f6b48','','',NULL), -('5202','Door Control','ControlPanel','DoorPart','fc462115-7e38-41ef-9065-323524928380','','',NULL), -('5203','TRGT. STATUS','Seat','UNDEFINED','8b254948-49fb-46cb-85d0-c153513a9a5e','','',NULL), -('5204','Bokto Core','Armor','Torso','e5145460-e74b-4997-995c-bc322e6cf95d','','',NULL), -('5205','CRUS_Starfighter_SCItem_Dashboard','SeatDashboard','UNDEFINED','d3141988-af62-45e4-9480-f9df56ae2e5a','','',NULL), -('5206','Star Kitten Helmet','Armor','Helmet','7d74b158-27c6-49d2-b9ae-7542d087eb95','','',NULL), -('5207','Mustang Fortuna Livery','Paints','UNDEFINED','de8d3153-cdca-46a2-b205-644a1180e31a','','',NULL), -('5208','AEGS_Idris_SCItem_Seat_Bridge_Rear_Right_Back_Blocked','Seat','UNDEFINED','ceddeb40-4d9b-402c-a535-98982972b49a','','',NULL), -('5209','One Light Shirt Red','Char_Clothing_Torso_0','UNDEFINED','8dbec337-9a0b-400d-887f-790e53d0b2e2','','',NULL), -('5210','Delta LL (1x Reflex)','WeaponAttachment','IronSight','495e07f0-3b09-49a7-857b-dccefca9f5d1','','',NULL), -('5211','Radar_Display_Screen_GRIN_MDC','Display','UNDEFINED','907e4e7c-de87-4c91-b9ae-520bad2b8ccc','','',NULL), -('5212','Torreto Pants (Modified)','Char_Clothing_Legs','UNDEFINED','2a7363c4-793a-49d9-b388-6d0d38a28816','','',NULL), -('5213','Pitambu','Cargo','Cargo','5e31d988-6609-46f6-82f3-24354844c0b9','','',NULL), -('5214','WorkLife Pants White','Char_Clothing_Legs','UNDEFINED','737084cb-6bf5-463f-b964-136ab36b0cbb','','',NULL), -('5215','INTK_AEGS_Redeemer','FuelIntake','Fuel','22a8d9dc-cd68-4b84-bb53-dceb1f6c60f0','','',NULL), -('5216','Aegis Eclipse - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','bede5123-81b4-4db3-be78-847c95f4d773','','',NULL), -('5217','Crusader White Pawn','Misc','UNDEFINED','f6b8a64a-86e0-4b7a-b914-41635a8c6b86','','',NULL), -('5218','Hadanite','Cargo','Cargo','33051a8e-71fc-44ab-8f7d-f42ca07d9710','','',NULL), -('5219','Varhey Boots Falstaff','Char_Clothing_Feet','UNDEFINED','6203daf5-dead-4c68-b225-e18e0bef8875','','',NULL), -('5220','DRAK_Clipper_Thruster_Mav_Bottom','ManneuverThruster','UNDEFINED','77276dee-f3fa-498c-9410-e0f5b608b6dc','','',NULL), -('5221','Drassik','PowerPlant','Power','50643ac7-c238-4d7a-987b-fd8b1648ac1b','','',NULL), -('5222','Flight Blade','FlightController','UNDEFINED','2fc87e12-177e-49c9-b105-d49a2d23292b','','',NULL), -('5223','Counter_Shop_ConscientiousObjects','Usable','UNDEFINED','49661bd8-36e4-478c-9c4b-05ccfa503a8e','','',NULL), -('5224','Zeus Best in Show 2955 Livery','Paints','UNDEFINED','bb665a28-e501-411c-b806-8dcc5edd08fb','','',NULL), -('5225','Access','SeatAccess','UNDEFINED','73bf8eec-4c0c-4b81-92eb-ffd16a64e4dd','','',NULL), -('5226','MISC_Reliant_Thruster_Mav_Fixed_Main','ManneuverThruster','FixedThruster','e28f006c-50af-46c4-b8ea-b268f84cca3f','','',NULL), -('5227','Weapon Rack','Usable','UNDEFINED','43eac534-a397-4323-9682-8287c74fd5d1','','',NULL), -('5228','Prism \"Hurston\" Laser Shotgun','Weapon','Medium','811dad07-e8f7-4efd-8631-2c73fe3fe51a','','',NULL), -('5229','Tholo (Translated)','Misc','Personal','2385b193-66a9-475c-9450-b756e8b83fe8','','',NULL), -('5230','Carryable_utensil_spoon','Misc','UNDEFINED','f2944daf-e32b-47c1-8c2b-dda1ce1fda25','','',NULL), -('5231','Consumer Goods','Misc','UNDEFINED','3d4a6cd8-0c83-4a44-9a05-86e4a94485ea','','',NULL), -('5232','Excelsior','JumpDrive','UNDEFINED','14cbe476-4050-4af5-8635-178519722f4b','','',NULL), -('5233','Green QuikFlarePro','Weapon','Grenade','3ac9916b-3670-4a2e-8cbe-435f7676dbc2','','',NULL), -('5234','SHIELDS','ShieldController','UNDEFINED','4fb008b8-c032-e509-6228-72220c982e97','','',NULL), -('5235','Aranda Shirt','Char_Clothing_Torso_0','UNDEFINED','8e4c19c1-9973-42b8-8ca9-07528c749320','','',NULL), -('5236','Nomad Lovestruck Livery','Paints','UNDEFINED','a81634ca-91f8-4d2a-b633-3e4f230eb8d9','','',NULL), -('5237','Aranda Shirt Blue/Beige','Char_Clothing_Torso_0','UNDEFINED','7f86d9cf-d1d1-4fe9-b125-3e4dee76929c','','',NULL), -('5238','Chiron Helmet','Armor','Helmet','73fb9b7d-0fc4-4cf6-ac1f-cfd03170341e','','',NULL), -('5239','Aranda Shirt Purple Plaid/Blue Pinstripe','Char_Clothing_Torso_0','UNDEFINED','f7db9094-baa3-42ab-b626-0186eb16a457','','',NULL), -('5240','Internal Tank','FuelTank','Fuel','23d28cbc-817f-43ab-bb0c-29469c11943c','','',NULL), -('5241','Seat','SeatAccess','UNDEFINED','60c9c9d7-862e-40b2-beec-dc9c8ff4b8f8','','',NULL), -('5242','Food_fruit_oza_1_a','Food','Plant','07240d75-b76c-4d9d-b638-ce364c0fab05','','',NULL), -('5243','Voir','Radar','MidRangeRadar','c0cf2b46-a1d9-4f8c-8ff4-1c8550dbe7e4','','',NULL), -('5244','Seat','SeatAccess','UNDEFINED','ba94a213-0cef-468e-8870-14353c87418b','','',NULL), -('5245','Door Control','ControlPanel','DoorPart','e3551853-1234-4ce8-b169-52bce8c74488','','',NULL), -('5246','Citadel Legs Base','Armor','Legs','a68db5c5-7f6b-4372-9819-856150eb59fb','','',NULL), -('5247','Remote Turret','Turret','GunTurret','f562c161-6dee-4dbc-9a33-cc0274819797','','',NULL), -('5248','Chili Mac Combat Ration','Food','Tin','37d73775-26e4-4362-9bec-fc2a748c0eb5','','',NULL), -('5249','Door Control','Door','UNDEFINED','cb01cce1-b936-4677-9c21-03d4c15512d1','','',NULL), -('5250','Seat','Usable','UNDEFINED','a9537d33-06e7-4395-969c-420f84f3ce10','','',NULL), -('5251','BR-2 Shotgun Magazine (12 cap)','WeaponAttachment','Magazine','ab85897c-940f-426e-962b-b3a2d459036c','','',NULL), -('5252','Kavir Pants Conifer','Char_Clothing_Legs','UNDEFINED','979da10e-c04c-45c6-8663-59fb6b3ae729','','',NULL), -('5253','AEGS_Hammerhead_SCItem_Engineer_Console','Seat','UNDEFINED','71c30b59-d06c-462a-8efe-61de4b5ae5cb','','',NULL), -('5254','Pulse Fortuna Livery','Paints','UNDEFINED','20296d51-5558-4107-a1fc-c9c43839bc9a','','',NULL), -('5255','CRUS_Starlifter_Door_Decal_JumpDrive_A','Decal','DoorPart','31701021-6ca8-49cd-83a5-89f174ed96b4','','',NULL), -('5256','Locker_Suit_Left_AEGS_TEST','Usable','UNDEFINED','ac00f95a-706d-4889-876f-48e77b2230ea','','',NULL), -('5257','MISC_Fortune_Thruster_Retro_Front','ManneuverThruster','FixedThruster','e615a19d-0e06-4e05-88d1-ab460b07b7af','','',NULL), -('5258','Inquisitor Core Roughshod','Armor','Torso','5094c533-d9ae-4440-87cb-ca3c28189906','','',NULL), -('5259','300 Series Moonlight Paint','Paints','UNDEFINED','13b685b1-33fc-46b1-b725-f1a03138c591','','',NULL), -('5260','AEGS_Reclaimer_Thruster_Retro_01','ManneuverThruster','FixedThruster','986afaac-0209-41b2-bb06-170c3839e7e1','','',NULL), -('5261','Skyhigh City T-Shirt Black','Char_Clothing_Torso_0','UNDEFINED','678baa6a-8cda-4459-a505-f9cfe836c154','','',NULL), -('5262','Door Control','Door','UNDEFINED','56d9b4f4-17c6-4916-8d1e-bf19044c91d9','','',NULL), -('5263','DRAK_Caterpillar_SCItem_Dashboard_SupportRight','SeatDashboard','UNDEFINED','f4e40d72-d83e-4e45-b759-572ed6c398b4','','',NULL), -('5264','Door Control','Door','UNDEFINED','2dd01187-46f1-4fff-a062-92370017b777','','',NULL), -('5265','Bed','Seat','UNDEFINED','8115d3a3-2825-4246-9f19-a87b6f47eb96','','',NULL), -('5266','FSK-8 \"Ghost\" Combat Knife ','Weapon','Knife','089c5d5f-c3ea-456d-a35f-72bed985dbaf','','',NULL), -('5267','Internal Tank','FuelTank','Fuel','830540cf-0f73-4bef-8a07-e2009060bba1','','',NULL), -('5268','Razor Foundation Fest Livery','Paints','UNDEFINED','686147d2-64fe-49c6-a601-5b7e940b85b8','','',NULL), -('5269','Crusader Black Pawn','Misc','UNDEFINED','13693c31-305c-4aba-8e29-152237abfdd3','','',NULL), -('5270','stand_head_clothing_hat_0025x0025x00375_1Port','ShopDisplay','Default','295b02c0-c4a9-4286-b0a6-d7749179166e','','',NULL), -('5271','M9A Cannon','Weapon','Gun','f9a6c670-a830-4c44-9e26-7ca2a9070264','','',NULL), -('5272','Railing_Straight_4m_LowTech_Util_Stairs_04x01_e','Usable','UNDEFINED','8a93cf28-0cc5-47d9-a431-b2907b1ab987','','',NULL), -('5273','KRIG_P52_Merlin_Thruster_Retro_01','ManneuverThruster','JointThruster','afde86b2-0321-4f5c-a862-81f66dab90e8','','',NULL), -('5274','Datapad','Misc','Gadget','6c74bbe2-9637-44b5-ae5c-34d9b936296d','','',NULL), -('5275','TRGT. STATUS','Seat','UNDEFINED','505f6ee6-910e-4fbc-a690-5f05b4bc4cb7','','',NULL), -('5276','Processed Food','Cargo','Cargo','6c4cab7d-a2f6-46d2-95fa-a2cad9e1ceea','','',NULL), -('5277','CRUS_Starlifter_Ext_Door_Right_Sm_HACK','Container','UNDEFINED','351342b4-fe1e-4111-9e49-94e388c3c680','','',NULL), -('5278','Paladin Alliance Aid Camo Livery','Paints','UNDEFINED','ea3c4eb8-a906-4ad5-8b4c-553f608b202a','','',NULL), -('5279','MISC_Hull_C_Dashboard_CoPilot','SeatDashboard','UNDEFINED','acc9f91f-506c-4ae0-a8d1-5ff888129535','','',NULL), -('5280','Day One Shirt Tan','Char_Clothing_Torso_0','UNDEFINED','4b9c5a4d-e2ae-4c01-82fc-9e16a4b855f3','','',NULL), -('5281','Internal Tank','FuelTank','Fuel','1c3909a7-8fac-40b3-bcf1-e91ed7035b50','','',NULL), -('5282','Door Control','Door','UNDEFINED','2af69419-9d65-408e-a6b9-c9bc1d4b6c03','','',NULL), -('5283','Hephaestanite (Raw)','Cargo','Cargo','8fdacbaf-eb1b-47e5-a5ed-01beb269b0a6','','',NULL), -('5284','Tholo','Misc','Personal','20c6e80c-05b7-4fab-a304-3ba1538e396a','','',NULL), -('5285','HRST_LaserScatterGun_Barrel_S3','WeaponAttachment','Barrel','f48031f5-172a-4049-a4ee-00c2904d054e','','',NULL), -('5286','Deadhead Helmet Shutdown','Armor','Helmet','1f5714b2-5d4e-45e2-9f93-64fbac489ad6','','',NULL), -('5287','Steel','Cargo','Cargo','9d245d16-ba58-42d4-bbc1-e85fa513eb6b','','',NULL), -('5288','Door Control','Door','UNDEFINED','afebb5c9-9af3-4072-9bb3-31b721b900b2','','',NULL), -('5289','rkhm_dply_shield_01_MiningBase','Gadget','Gadget','b29ec947-3168-40fc-8537-10cc404cddc3','','',NULL), -('5290','Door Control','ControlPanel','DoorPart','3bf2f85e-b1c7-48f3-a095-6d04bb0fea4d','','',NULL), -('5291','Reaper V Missile','Missile','Torpedo','918ad61c-ea99-4040-b05a-a42cd5436aed','','',NULL), -('5292','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','f9f4730d-be41-4cf2-abda-50e616cff2ab','','',NULL), -('5293','Vaux-C2 Module','MiningModifier','Gun','c60c2615-ec40-491b-9d60-adddf88782f0','','',NULL), -('5294','Door Control','Door','UNDEFINED','5c3a828f-8bb6-4258-8b32-b45028500963','','',NULL), -('5295','Saldynium (Ore)','Cargo','Cargo','af0b43f4-53fb-44e3-be4a-7695857810e3','','',NULL), -('5296','Seat','Usable','UNDEFINED','02aa6822-5eba-400a-9f76-7be326f7b562','','',NULL), -('5297','Palatino Helmet Deadlock','Armor','Helmet','fa389812-e21d-4fed-86b2-9c251ca116fe','','',NULL), -('5298','RSI_Apollo_Thruster_VTOL','ManneuverThruster','FixedThruster','3eef9d6d-3f8f-492b-9dac-61e1827c2d22','','',NULL), -('5299','Courser Jeans Charcoal','Char_Clothing_Legs','UNDEFINED','c8c97418-ec43-4db4-aff5-93a69f3d959a','','',NULL), -('5300','Starfarer Ship Armor','Armor','Medium','cc005379-ba41-40f1-bb3f-a976c63233f8','','',NULL), -('5301','WiDoW','Cargo','Cargo','e197b5f0-9eca-4bd0-ae68-1af7ea3ff045','','',NULL), -('5302','Ranta Dung','Cargo','Cargo','caab7792-9b6f-42ec-97bb-865ce9092977','','',NULL), -('5303','ORIG_325a_Seat_Bed','Seat','UNDEFINED','d06f7d72-f56e-4fb9-a3bb-2e8f5a3e68ae','','',NULL), -('5304','Seat','Usable','UNDEFINED','ec0bbe82-b55a-4d43-8f9f-bf404c850bb8','','',NULL), -('5305','Prim Shoes Green','Char_Clothing_Feet','UNDEFINED','b15a41bc-8e63-4762-9781-92d290b0a78e','','',NULL), -('5306','DCP Armor Core Clawed Steel','Armor','Torso','f48ef7c4-6d76-447e-a894-e1a27dc84c99','','',NULL), -('5307','Mixed Mining','Cargo','Cargo','1d1547c0-7b9c-4cf6-ac52-ac833c84591d','','',NULL), -('5308','RSI_Polaris_Cargo_Addon_Right','AttachedPart','UNDEFINED','4498fd05-9fbe-458d-9d72-c13807577894','','',NULL), -('5309','Flight Blade','FlightController','UNDEFINED','7c26d79c-c36c-4d83-8491-a31d5defde04','','',NULL), -('5310','RSI_Constellation_Aquila_Thruster_Turbine_Front','ManneuverThruster','JointThruster','f3bd8a29-1326-470f-b3fe-f6efdbd28af1','','',NULL), -('5311','RSI_Aurora_Cargo_Rack','AttachedPart','UNDEFINED','95118a14-2141-4a98-b89d-c52448599d0e','','',NULL), -('5312','PC2 Dual S3 Mount','Turret','GunTurret','d2a6b563-5c2d-4334-b3b8-22ab4fc84c39','','',NULL), -('5313','DRAK_Caterpillar_SCItem_Dashboard_SupportLeft','SeatDashboard','UNDEFINED','6cd3df9e-5523-4891-93bc-a05d15beea0b','','',NULL), -('5314','Door Control','Door','UNDEFINED','558940b9-444b-401b-8425-e8fd44d60f1a','','',NULL), -('5315','Radix','PowerPlant','Power','c46f3fb8-12f8-4c85-b4ac-0850b1e0d17d','','',NULL), -('5316','MISC_Hull_C_FoldingStrut_2B_Outer','Cargo','UNDEFINED','f303fb72-4b9d-4ec4-8c28-5b93bce01926','','',NULL), -('5317','Cinch Scraper Module','SalvageModifier','UNDEFINED','81d7c828-42b2-46e8-b2e3-6798bdc32c23','','',NULL), -('5318','MOLE Hadanite Livery','Paints','UNDEFINED','32193bd5-3174-434f-9e72-1e5d97c54a60','','',NULL), -('5319','Seat','SeatAccess','UNDEFINED','6aacb9a6-2274-4ae4-8cf6-65b5c06bdfd0','','',NULL), -('5320','Canelo Pants Snow','Char_Clothing_Legs','UNDEFINED','09772217-9340-4f3c-996e-5de87983aa8e','','',NULL), -('5321','Sens','Radar','MidRangeRadar','6259d636-2086-4555-930f-883dcd491ccf','','',NULL), -('5322','Clempt Pants Black','Char_Clothing_Legs','UNDEFINED','195165d6-af78-45ac-adef-26f9ea51d996','','',NULL), -('5323','Morozov-SH-I Core Gideon','Armor','Torso','26da57e4-666a-4314-98e6-65d8b5a95e84','','',NULL), -('5324','H_Dashboard_Projector_HUD_AEGS_Idris','Display','UNDEFINED','5bd6146d-0bb6-45b3-8e94-d8546136d01d','','',NULL), -('5325','CRUS_Starlifter_CargoGrid_Personal_Armory_Small','Cargo','UNDEFINED','21653000-600d-4852-b9f5-ebf7d41f1143','','',NULL), -('5326','M7A Cannon','Weapon','Gun','b94c54b2-a70e-4f41-bc02-ed76be87e493','','',NULL), -('5327','Aril Backpack Red Alert','Armor','Backpack','64bdb6f1-f4e8-4222-9365-2dbbb67ccd99','','',NULL), -('5328','Harlowe Shirt Violet','Char_Clothing_Torso_0','UNDEFINED','68bfd780-1024-4c6b-95e3-e214c1964fe0','','',NULL), -('5329','Lillo Pants Imperial','Char_Clothing_Legs','UNDEFINED','81a42eba-6c97-4f2c-b2e7-f5c1efe6be7c','','',NULL), -('5330','Weapon_Rack_1_APAR_Special_02_Common_001','Usable','UNDEFINED','3d16ee11-10d2-43e3-9466-a91ca6361b51','','',NULL), -('5331','Copper','Cargo','Cargo','a74b78a7-548b-4839-a7a1-972be6bc39e7','','',NULL), -('5332','Vehicle_Screen_MFD_Holographic_Scout_R','Display','UNDEFINED','85ec8eb2-4f47-4e72-938c-607c61923c55','','',NULL), -('5333','BLOC','Shield','UNDEFINED','cd1ed528-ce0f-4aaa-8ae3-370c48f97d9f','','',NULL), -('5334','AEGS_Reclaimer_Seat_CoPilot','Seat','UNDEFINED','f1b57c3b-8443-4dac-a7fc-5af7ed1b8c3c','','',NULL), -('5335','Horizon Helmet Black','Armor','Helmet','53fe8f56-18f4-4039-bbc4-e0b96e44dd62','','',NULL), -('5336','Field Medic Kit','Misc','UNDEFINED','519d15e5-105d-4e3d-aaaf-f1db9b8f47f6','','',NULL), -('5337','Seat','SeatAccess','UNDEFINED','2975a36d-b5a1-4cf4-8e87-2ef4d9ff98e3','','',NULL), -('5338','600i Sterling Livery','Paints','UNDEFINED','b787426a-4159-47cd-9137-1a1ee6214c8d','','',NULL), -('5339','MPUV-1C PHB Flight Blade','FlightController','UNDEFINED','c6762ef5-6063-407e-99a4-144cb2e33ef4','','',NULL), -('5340','Internal Tank','FuelTank','Fuel','87500de3-7afa-4e05-8fcc-df36cde72475','','',NULL), -('5341','Seat','SeatAccess','UNDEFINED','245da94c-bb7f-4606-97d0-14ebf5762d7e','','',NULL), -('5342','ESPR_Prowler_Utility_Cargo_Doors_Housing','AttachedPart','UNDEFINED','cab5f94d-aa83-4325-8444-4f931a4503bf','','',NULL), -('5343','Seat','SeatAccess','UNDEFINED','dc094829-df3f-4195-bac4-55198f98dabc','','',NULL), -('5344','Bed','Usable','UNDEFINED','ce13d3fa-5413-4969-90eb-b230b3f2ab7f','','',NULL), -('5345','Tuvic Outerwear Jacket Rust Society','Char_Clothing_Torso_1','UNDEFINED','10c4b93e-6d3d-45fe-86c8-30fda217a116','','',NULL), -('5346','SHIELDS','ShieldController','UNDEFINED','fb4a011a-5abd-4c40-b102-8da3c414057b','','',NULL), -('5347','Weapon_Rack_1_KSAR_Shotgun_Energy_01_Common_001','Usable','UNDEFINED','421ff490-d05c-4e24-bf27-32ae66a3376b','','',NULL), -('5348','PAB-1 Legs Dark Green','Armor','Legs','5e9b758a-6189-4190-ba21-9e8fd258f3e7','','',NULL), -('5349','Caterpillar Foundation Fest Livery','Paints','UNDEFINED','70eb9080-5020-4db4-9e5b-2e4992bc553d','','',NULL), -('5350','Turret','TurretBase','MannedTurret','4e806301-380d-41c1-8147-27ec38f460b3','','',NULL), -('5351','sc_nvy_deckcrew_nogoggles_helmet_01_01_04','Char_Clothing_Hat','UNDEFINED','0fa5c024-2f51-4e1c-8c4f-572a2709a017','','',NULL), -('5352','Crate_Helmet_Lootable','Usable','UNDEFINED','156b13c6-cea3-415e-bddf-b68f6709579f','','',NULL), -('5353','Elevator Control','Elevator','UNDEFINED','948b3e1d-97a3-468a-96f2-e1a25dba28ed','','',NULL), -('5354','Seat','SeatAccess','UNDEFINED','94eb9d19-1cc2-467f-8e14-4b84c54c91d8','','',NULL), -('5355','Access','SeatAccess','UNDEFINED','09b3a66a-6ccf-4c80-b750-2f82d5b34b3b','','',NULL), -('5356','Revenant Tree Pollen','Cargo','Cargo','cfebb848-bc72-4142-8df8-1d459a3e5c81','','',NULL), -('5357','M50 Polar Livery','Paints','UNDEFINED','af593aa3-3ef6-4406-b40e-819dbe75a241','','',NULL), -('5358','Flight Blade','FlightController','UNDEFINED','b4fcd688-2d73-476d-9577-92705fe6754a','','',NULL), -('5359','Lynx Core Yellow','Armor','Torso','002dc8a3-2aa4-4717-a077-4db7f29be8bc','','',NULL), -('5360','display_ship_components_03x0075x0275_a_power','ShopDisplay','UNDEFINED','9c4c932c-09f2-4cd6-94ae-cff426669e1d','','',NULL), -('5361','Personal Storage','Cargo','UNDEFINED','7e649368-71e0-44dc-aac6-b9c8609127ee','','',NULL), -('5362','table_booth_4_seat_restaurant_ushape','Usable','UNDEFINED','497e68e6-74a0-4928-b209-52e8db0e138b','','',NULL), -('5363','AEGS_Sabre_Peregrine_Thruster_Mav_Joint_01','ManneuverThruster','Light','187f501b-8483-4309-853f-ceed286b512d','','',NULL), -('5364','food_ration_pack_c','Misc','UNDEFINED','0330a97e-0f96-44b5-84cf-401f7bac90f5','','',NULL), -('5365','CNOU_Mustang_Beta_Thruster_Retro','ManneuverThruster','FixedThruster','f7fe12d1-ab69-4cf3-a373-00348728a60f','','',NULL), -('5366','Venture Undersuit Grey/White','Armor','Undersuit','3daf3c03-cf13-4dd1-83f9-3d56155110b6','','',NULL), -('5367','Weapon_Rack_1_Volt_SMG_Common_001','Usable','UNDEFINED','6f0064d4-7df2-477d-b20e-cc7bf02734f4','','',NULL), -('5368','H_Dashboard_Projector_HUD_MISC_Hull_A','Display','UNDEFINED','d63cda1a-ce3e-42a6-b24c-6b7a18fd4934','','',NULL), -('5369','Ambrus Suit','Char_Clothing_Torso_1','UNDEFINED','bcb4b6cc-a6fa-47e2-936e-8e3cb4cc1fc7','','',NULL), -('5370','Carryable_1H_CY_tool_manual_socket_1_h','Misc','UNDEFINED','6ac70db4-5260-4749-83cb-d765f890d90d','','',NULL), -('5371','Beacon Undersuit White','Armor','Undersuit','f9b26600-5b8f-47dd-be2e-9319c518bdd4','','',NULL), -('5372','DoorPanelScreen_Col_001','Misc','UNDEFINED','6d0591a9-8f26-4d5b-9916-f33a7f98394c','','',NULL), -('5373','ARMR_ANVL_Hawk','Armor','Medium','8ff61bc9-33dc-4fd7-95d4-17390a52c702','','',NULL), -('5374','Valakkar Fang (Adult)','Misc','Harvestable','80caa9bb-b375-40ce-b218-34b0fd63cf87','','',NULL), -('5375','Vanguard Solar Winds Livery','Paints','UNDEFINED','5b4e5231-1e81-4914-b096-a0c1861034d6','','',NULL), -('5376','Armor_Crate_CZ_Horizon_M_002','Usable','UNDEFINED','24eca4f3-e46e-4d95-b265-8f1159b3c6de','','',NULL), -('5377','POWR_PyroOutpost','PowerPlant','Power','f330457d-df9b-4421-a522-45b407a735a7','','',NULL), -('5378','Oxhorn Service Sweater InterSec','Char_Clothing_Torso_0','UNDEFINED','7a2b3ce7-6daa-44d7-9410-b0265c1371ab','','',NULL), -('5379','WowBlast Desperado Toy Pistol Blue','Weapon','Small','32c131f6-e2d2-4651-bc4f-ff2706c367d8','','',NULL), -('5380','P-Series Fortuna Livery','Paints','UNDEFINED','051cd0df-2d8f-4b88-816f-6064a58c64e9','','',NULL), -('5381','Markanda Undersuit Silt (Refurbished)','Armor','Undersuit','f2601857-f93d-4c98-a61a-90506a998ca4','','',NULL), -('5382','Molina Mold Samples','Cargo','Cargo','1388b62d-d96f-4d29-81b1-bc227512c39b','','',NULL), -('5383','Kino Shoes Imperial','Char_Clothing_Feet','UNDEFINED','80572af7-bdec-43a7-82f6-d0f545fe1f7a','','',NULL), -('5384','Utility Grav-Cart','Cargo','Small','c0d58072-8a49-4482-b416-f735ae58b215','','',NULL), -('5385','Carafi Noodles','Food','Tin','81af2e1b-7776-4142-bed4-be9c8c3789ce','','',NULL), -('5386','Quantum Fuel','Cargo','Cargo','292304c5-cbcd-4287-ac1b-9c1f2e155a86','','',NULL), -('5387','RSI_Zeus_Mohawk','AttachedPart','UNDEFINED','77b3e322-7bb9-451c-bb37-86ebf1dc1366','','',NULL), -('5388','Osoian Hides','Cargo','Cargo','1cead7d0-0b77-44b2-9bcb-2e1b174bc44b','','',NULL), -('5389','ANVL_Hornet_F7A_Mk1_Thruster_Mav_1','ManneuverThruster','JointThruster','04581e53-910d-4a57-91a0-222abeab7356','','',NULL), -('5390','Door Control','Door','UNDEFINED','efa4864f-89c1-4aa2-a671-6d1f9920374c','','',NULL), -('5391','Seat','SeatAccess','UNDEFINED','a26f030c-cf6b-4e6a-9030-3e334d607681','','',NULL), -('5392','DockingTube_Fuel_Ports_MISC_Fortune','DockingCollar','UNDEFINED','95c8f02a-7f62-47f0-827c-d346c45eff4a','','',NULL), -('5393','FS-9 \"Evergreen\" LMG','Weapon','Medium','f0958f10-7c67-4d44-abc4-fdda2959d42f','','',NULL), -('5394','Savrilium','Cargo','Cargo','fae442fb-a321-4def-b27e-f6a7425ba317','','',NULL), -('5395','Prism \"Firesteel\" Laser Shotgun','Weapon','Medium','bc328b41-ebc6-4d85-aba1-9e04cb752fa7','','',NULL), -('5396','Borase (Ore)','Cargo','Cargo','6d7833d1-86a3-49b6-8ec0-39342380fa4a','','',NULL), -('5397','Weapon Rack','Usable','UNDEFINED','9201e3e5-af5a-43c5-a6bd-890aca466116','','',NULL), -('5398','Remote Turret','Turret','GunTurret','8105d568-9874-49f2-8915-dd41215a3e36','','',NULL), -('5399','RSI_Aurora_Intake_Top','AttachedPart','UNDEFINED','1d5f5f79-2dcc-4f3b-bea1-5b7409ceebc4','','',NULL), -('5400','CargoBox_050x050x050_Metal_Stacked_2','Cargo','Cargo','28b8f641-ae00-44b2-a2e2-247c06d7b2a5','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('5401','Workzone_Floor','Usable','UNDEFINED','af0ebc64-9e71-4d51-8d1e-d2814855d7c7','','',NULL), -('5402','Personal Storage','Cargo','UNDEFINED','7f417b7e-8367-4200-9156-2b7efa7bc8b5','','',NULL), -('5403','ParaMed \"Amalgam\" Medical Device','Weapon','Small','1ebc94de-c03d-4eb7-bbd1-980348ee2d6d','','',NULL), -('5404','Seat','Usable','UNDEFINED','c45ffe55-8949-4b95-b34f-b9033004e1d0','','',NULL), -('5405','ForceFlex Undersuit Black/Blue','Armor','Undersuit','d8945c09-af0e-4901-94f6-7fc1c6612cfe','','',NULL), -('5406','Lindinium','Cargo','Cargo','9c66c622-b5e0-4d21-bc3a-89714ba95d99','','',NULL), -('5407','Cordimon Jacket','Char_Clothing_Torso_1','UNDEFINED','828bc5b0-222a-4e09-891e-f83a7c793b6b','','',NULL), -('5408','Door','Door','UNDEFINED','9288c70c-cfdb-4e2e-8ac7-c4103897d06d','','',NULL), -('5409','Vehicle_Screen_MFD_Holographic_MISC_Starlancer_T','Display','UNDEFINED','9362ae5e-b22a-443f-ba2c-8f94d286c0e4','','',NULL), -('5410','ARMR_ORIG_85X','Armor','Medium','544bc411-3fc2-4239-8de1-673c8416d77b','','',NULL), -('5411','Strata Helmet Neptune','Armor','Helmet','60c6e3ab-c510-4eaf-87a4-93d1b10c6a89','','',NULL), -('5412','Construction Salvage','Cargo','Cargo','736b9249-db4c-4f4e-90ee-575c26d3d721','','',NULL), -('5413','Restored Pants Green','Char_Clothing_Legs','UNDEFINED','d205448c-45cd-4d71-a2bf-c303d94562bf','','',NULL), -('5414','Hull C Poster','Misc','Utility','f2a12a13-1308-4fb8-99b5-82166fd1b2f6','','',NULL), -('5415','DRAK_Vulture_Component_Gravity','Player','UNDEFINED','fd3761dd-2e1d-4416-96c9-b76fa7c7b450','','',NULL), -('5416','Door Control','Door','UNDEFINED','75707891-2128-4903-9d53-fc74c4bae1b5','','',NULL), -('5417','Maze','Cargo','Cargo','2e41b1d1-57b6-4803-bd2d-d5ae0acc6aed','','',NULL), -('5418','Lynx Arms Frostline','Armor','Arms','f15c609c-3904-4d72-97ba-b89b34363316','','',NULL), -('5419','Teddy Bear','Misc','UNDEFINED','c23d28e6-ab37-49e8-b281-22e3147070c4','','',NULL), -('5420','Neograph','Cargo','Cargo','688732e6-69f9-48f6-90a0-afcb320859e6','','',NULL), -('5421','TRGT. STATUS','Seat','UNDEFINED','9497590f-1bec-4d5b-9084-1860cefc5de0','','',NULL), -('5422','Seat','SeatAccess','UNDEFINED','81c86392-605b-49a4-b46b-830ffa736e69','','',NULL), -('5423','ANVL_Pisces_CargoGrid','CargoGrid','UNDEFINED','1a3a5169-3b90-46bc-b18f-7aae3ecf05ae','','',NULL), -('5424','ADP-mk4 Helmet Red Alert','Armor','Helmet','8fd7cb44-f692-499e-9769-77f40e916bd2','','',NULL), -('5425','TrueDef-Pro Arms (Modified)','Armor','Arms','0e0e95aa-f319-443b-aa88-00c455e28de1','','',NULL), -('5426','Astatine','Cargo','Cargo','cf648366-8623-44c9-baa8-1b884da52ea8','','',NULL), -('5427','H_Dashboard_Projector_HUD_ARGO_Moth','Display','UNDEFINED','08655936-641c-4f38-8bef-1ceb2dfbe148','','',NULL), -('5428','Door Control','Door','UNDEFINED','0efc65b3-6a5f-4633-87f7-9178e3eab87a','','',NULL), -('5429','Weapon_Rack_1_BEHR_Rifle_1_Common_001','Usable','UNDEFINED','8e476f40-ab09-4f58-a035-35bfe97ee4ab','','',NULL), -('5430','Apollo Tier 2 Module Left','Module','UNDEFINED','481205b3-941e-f870-b016-57b8f9e63b88','','',NULL), -('5431','ARGO_MOTH_Thruster_VTOL_Rear','MainThruster','FixedThruster','3e40153e-a873-402c-b7de-f60ff20d37e8','','',NULL), -('5432','JDRV_TARS_S04_C_Explorer','JumpDrive','UNDEFINED','ea607138-635a-4d31-9be6-9ec651b8260c','','',NULL), -('5433','TCS-4 Undersuit','Armor','Undersuit','d156f2cb-2391-4d0b-8fdd-7c6ac0725fa8','','',NULL), -('5434','Venture Core Olive','Armor','Torso','79348649-c263-4966-9edd-5109f3b7261d','','',NULL), -('5435','Riccite','Cargo','Cargo','ceeaf521-bc9f-456f-8953-d8b5505ac267','','',NULL), -('5436','Strata Backpack Amber','Armor','Backpack','0d08ab87-18e7-41e8-a8a7-3d31852a2b5b','','',NULL), -('5437','Access','SeatAccess','UNDEFINED','af6bc606-8233-4104-90a8-0b76e11824e2','','',NULL), -('5438','ForceFlex Undersuit Black/Grey/Tan','Armor','Undersuit','745f5b8b-0171-46af-b22b-fede8d604ba7','','',NULL), -('5439','Sledge I Mass Driver Cannon','Weapon','Gun','43269af0-736e-4232-8cfe-271367b28ee1','','',NULL), -('5440','Revenant Pod','Cargo','Cargo','be8abb65-ce67-4879-8cdd-c0e43bae48e5','','',NULL), -('5441','Altruciatoxin','Cargo','Cargo','f793a11e-cd2a-4d89-a935-87017f2e9cb4','','',NULL), -('5442','Vehicle_Screen_MFD_Holographic_MISC_Starlancer_R','Display','UNDEFINED','b63b4b41-b64f-4389-953c-8adc7b7c5b63','','',NULL), -('5443','Internal Tank','FuelTank','Fuel','246962c4-e76e-4c28-9521-492998859677','','',NULL), -('5444','Railing_Straight_6m_Lowtech_Open_A','Usable','UNDEFINED','e164bc1a-3c4e-4340-8f28-2f5d30e19701','','',NULL), -('5445','ORIG_135c_Thruster_Mav_Left','ManneuverThruster','FixedThruster','0ca76f85-c47c-4303-a0de-160b8b196c7d','','',NULL), -('5446','Overlord Arms Supernova','Armor','Arms','20001b62-0d2f-4045-a61d-5d38de1038f8','','',NULL), -('5447','Door Control','Door','UNDEFINED','d228a22e-de33-494f-88af-8e6c74b6372a','','',NULL), -('5448','DRAK_Herald_Thruster_Mav_Fixed_Right','ManneuverThruster','FixedThruster','85c375af-7ebb-479c-a814-bde12b7ef373','','',NULL), -('5449','Tuvois Jacket Purple','Char_Clothing_Torso_1','UNDEFINED','85534b59-220e-4a92-9c8e-77a23e81ecf2','','',NULL), -('5450','Hadanite','Cargo','Cargo','8b1d5d14-6bcc-40c7-828f-4808634d70f8','','',NULL), -('5451','Hornet Timberline Livery','Paints','UNDEFINED','5cd90713-8e9f-4653-a966-e6c02840b02b','','',NULL), -('5452','Morozov-SH Core Spite','Armor','Torso','7fd805dd-e140-4ec7-ac35-967735104138','','',NULL), -('5453','AEGS_Javelin_CargoGrid_Hangar_Aux','CargoGrid','UNDEFINED','9e9a2ee7-a6ae-4911-bd04-4ad464908f15','','',NULL), -('5454','The Butcher Helmet','Armor','Helmet','be61097a-d81e-4520-ab50-2039392a28d8','','',NULL), -('5455','PAB-1 Arms Red','Armor','Arms','1da24aff-2be4-4374-a0d0-666323ef710c','','',NULL), -('5456','SHIELDS','ShieldController','UNDEFINED','fc63cbaf-d419-40c7-bf7e-4d2edcbbb867','','',NULL), -('5457','Arrester III Missile','Missile','Missile','dee6efca-71ef-438c-b762-624f9ce649f3','','',NULL), -('5458','ORIG_M50_Thruster_Mav_Fixed_Lateral','ManneuverThruster','FixedThruster','edc76e6e-3e56-41ae-a332-2bb976e6d345','','',NULL), -('5459','Seat','Usable','UNDEFINED','77f64a6c-d779-4b47-9e58-5e9cb53e4bca','','',NULL), -('5460','RSI Polaris Ship Armor','Armor','Medium','ebe4fcc2-e0ff-4662-9c85-ac85f7dd78f1','','',NULL), -('5461','ADP Core (Modified)','Armor','Torso','7c7c5413-cef8-46ac-ac72-bc625e9493cd','','',NULL), -('5462','MacFlex Core Violet','Armor','Torso','2fdc2c41-67cb-46d1-81fd-2c2ba8bda175','','',NULL), -('5463','MRAI_Guardian_Thruster_Retro_MX','ManneuverThruster','Retro','48302a78-df7d-2fa6-9dd1-8017f032599e','','',NULL), -('5464','UI_EnvironmentScreen_Phoenix_InteractionPanel','StatusScreen','AirlockPart','314b8cdc-3bd9-4964-8c17-086bf2fbcc32','','',NULL), -('5465','K7 Pants Seagreen','Char_Clothing_Legs','UNDEFINED','c7db14ad-37c5-4745-a253-c4f577cedbdf','','',NULL), -('5466','Giotto Jacket Dark Blue','Char_Clothing_Torso_1','UNDEFINED','f2a825ae-b359-4eae-98ea-5bea7f309395','','',NULL), -('5467','Hui’a Puzzle','Misc','UNDEFINED','9c668f3e-f1d5-4d1d-ad93-2d947102a782','','',NULL), -('5468','Odyssey','QuantumDrive','UNDEFINED','16ba45f1-bd70-4b58-96d6-0ef822f59803','','',NULL), -('5469','Seat','Usable','UNDEFINED','eb444e13-cae6-45d5-b814-a4a585d9f98c','','',NULL), -('5470','Door_Ship_Sensor_Proximity_1x1x2','Sensor','DoorPart','9e943ec7-0043-4556-94e7-4743e44cfd4b','','',NULL), -('5471','Carryable_TBO_FL_24SCU_Commodity_Organic','Cargo','Cargo','3c66ed82-ce0b-49b2-866f-d315765b42a7','','',NULL), -('5472','Col_A_Airlock_Tube_Large','Usable','UNDEFINED','04ce6eba-fdd5-4517-bd1b-b6dc0c22b1fb','','',NULL), -('5473','PAB-1 Arms Greycat Edition','Armor','Arms','5e0efbc9-a766-4f8f-ba7d-ac2fe52b619c','','',NULL), -('5474','Seat','Usable','UNDEFINED','9e11ab22-6b05-416e-ba09-5761654eb8a7','','',NULL), -('5475','AEGS_Redeemer_Thruster_Nutcracker','MainThruster','FixedThruster','170fc44c-1290-4e0e-947f-716861d1a68c','','',NULL), -('5476','Seat','Usable','UNDEFINED','d97df6b1-58f3-4b23-a6b1-121e9fe335d6','','',NULL), -('5477','Dymantium','Cargo','Cargo','a22c2f2a-a6ca-4a65-8007-1af5b69eae68','','',NULL), -('5478','ArmorStand_CLDA_hazmat_Base','Misc','UNDEFINED','8a67f709-7663-4826-b779-8a3a458c1213','','',NULL), -('5479','Paint_Carrack_Default','Paints','UNDEFINED','7bc96c43-4dc4-4b87-ae22-f0b32a64ecc9','','',NULL), -('5480','Paint_300_Seat_Black','Misc','UNDEFINED','0782c182-cfef-4a02-8050-8ec5f41c6b69','','',NULL), -('5481','Prism \"Crusader\" Laser Shotgun','Weapon','Medium','17417770-00b7-4de9-b693-dd266c4f6fc5','','',NULL), -('5482','Seat','Usable','UNDEFINED','44c1e986-b452-bdaf-7190-33c6cfed2fbd','','',NULL), -('5483','Table_1_Seat_RSI_Polaris_XO','Usable','UNDEFINED','8a458835-a582-4336-8648-63874476afdb','','',NULL), -('5484','DRAK_Cutlass_Blue_Thruster_Main','MainThruster','FixedThruster','ba38063a-50b3-4170-b768-e197c52cff22','','',NULL), -('5485','ControlPanel_Screen_LightControl_Physical','ControlPanel','DoorPart','914a76d1-3ad3-4f37-8a9f-694bb27ee982','','',NULL), -('5486','Door Control','ControlPanel','DoorPart','eecee216-a155-4790-a985-b6906e76fd72','','',NULL), -('5487','ADP Legs Orange','Armor','Legs','21e4238f-5563-4c25-9014-b0e64e3697b0','','',NULL), -('5488','Heart of the Woods','Cargo','Cargo','4dcc00b6-4116-4e5c-ab43-fbde34eb4b32','','',NULL), -('5489','display_gadgets_hacking_tools_3Ports','ShopDisplay','UNDEFINED','44cde507-3b0f-43a0-bc8b-d38b0f39e127','','',NULL), -('5490','FocalWave-20 (2x Holographic)','WeaponAttachment','IronSight','bfa300f0-cd7c-4ba4-b786-b3da26932622','','',NULL), -('5491','CRUS_Starlifter_Door_Decal_Habitation','Decal','DoorPart','f101a1f2-5243-402c-922b-1a1893131c33','','',NULL), -('5492','DRAK_Cutter_Rambler_Thruster_Main_Right','MainThruster','FixedThruster','e2585293-4953-4da7-a2b4-ab8538ca8f67','','',NULL), -('5493','ARGO_MPUV_Thruster_Aux_Bottom','ManneuverThruster','JointThruster','58bc7ce5-de69-404a-be7c-b2153b976053','','',NULL), -('5494','Door Control','Door','UNDEFINED','e3c6c217-d42c-4ddf-92b1-694604ef4903','','',NULL), -('5495','Access','SeatAccess','UNDEFINED','70fb6f44-838e-46a9-a803-47f420f4f88b','','',NULL), -('5496','Seat','SeatAccess','UNDEFINED','53e95872-ce6b-46be-bbfe-b857ab399d1a','','',NULL), -('5497','Frontier 11 Classic Onyx','Char_Clothing_Legs','UNDEFINED','c00d68ac-b124-474d-aeac-9f5892d458d9','','',NULL), -('5498','stand_shop_large_Cooler','ShopDisplay','UNDEFINED','ffdd072a-e70a-4107-abde-42968dfea35b','','',NULL), -('5499','Davin Work Gloves White','Char_Clothing_Hands','UNDEFINED','30c53751-2056-49c8-aa8c-2684809e530a','','',NULL), -('5500','Door Control','DockingAnimator','UNDEFINED','540c0eff-3ad3-459d-815f-4fda56a0aefc','','',NULL), -('5501','DRAK_Cutlass_Steel_Thruster_Maneuver_Lateral','ManneuverThruster','JointThruster','f58eafcb-827f-4536-b6bc-e09aea62cbf1','','',NULL), -('5502','RSI_Salvation_Thruster_Retro_Top_Left','ManneuverThruster','Retro','f5a11feb-6eb8-4c52-b6d1-b50cca855770','','',NULL), -('5503','Joker Defcon - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','9ce5d9da-640f-430d-8292-80b48591fc80','','',NULL), -('5504','Access','SeatAccess','UNDEFINED','21518838-eacb-4315-b769-dd8fba6ce4d8','','',NULL), -('5505','Door Control','Door','UNDEFINED','47eb8d5f-dafc-4ab5-95c1-310e31fcc8ae','','',NULL), -('5506','Get Up Coffee (Black)','Drink','Can','be44e4bc-39e6-4bd1-a422-dc7d439bd9b1','','',NULL), -('5507','Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','7f969073-af54-4ee7-a722-5dffd1c1ff18','','',NULL), -('5508','Toughlife Boots Sienna','Char_Clothing_Feet','UNDEFINED','925e3e44-2c5e-4f77-a1b1-4e470018ca65','','',NULL), -('5509','TRGT. STATUS','Seat','UNDEFINED','b149dd6b-207f-4e5b-8130-200a53133b91','','',NULL), -('5510','Overlord Legs Gilded','Armor','Legs','ca563051-862b-4452-80fc-2adfcf674eec','','',NULL), -('5511','Artimex Legs Canuto','Armor','Legs','df77730e-1d7e-45ee-9364-3f86a38d7008','','',NULL), -('5512','Balor HCH Helmet Hurston Edition','Armor','Helmet','d7806607-bf24-4de4-b452-d87abd8e9219','','',NULL), -('5513','LifeCure Medsticks','Cargo','Cargo','8355ea3e-879b-49d6-a6ef-8a593970b6ab','','',NULL), -('5514','Personal Storage','Cargo','UNDEFINED','2a4dd781-21f0-4dff-8d9d-05c8183f808a','','',NULL), -('5515','Cliffback T-Shirt Aqua','Char_Clothing_Torso_0','UNDEFINED','eb5db470-1763-4297-80f4-0b48d1654cca','','',NULL), -('5516','Ardent Boots Sienna','Char_Clothing_Feet','UNDEFINED','443138f9-b7b7-4836-86b1-ad1267506a3e','','',NULL), -('5517','MSD-322 Missile Rack','MissileLauncher','MissileRack','6bea95f5-2898-434c-bffe-4b2b332d6440','','',NULL), -('5518','Lynx Arms Ferrum','Armor','Arms','1db80d63-12a7-4940-8705-8e0945ebcacb','','',NULL), -('5519','ORIG_85X_Thruster_Mav_Fixed_03_Left','ManneuverThruster','FixedThruster','b3c41e09-45b2-4d6b-ac6b-0ad48aea0c1c','','',NULL), -('5520','RCMBNT-XTL-1 ','InventoryContainer','Cargo','817c395c-22a3-4f08-89dc-0c17ca03112c','','',NULL), -('5521','Utensil_Plate','Misc','UNDEFINED','fe21af47-9a31-46cb-be7b-dbc7dec4dc7b','','',NULL), -('5522','Internal Tank','QuantumFuelTank','QuantumFuel','b67b3a42-e7ed-4156-b914-5c9a49332a57','','',NULL), -('5523','Manned Turret','TurretBase','MannedTurret','b898ac70-cfd3-44f1-a048-fe6acc06b546','','',NULL), -('5524','Flight Blade','FlightController','UNDEFINED','3d21f7d5-a33d-48b6-b52b-2afe07a381ea','','',NULL), -('5525','Personal Storage','Cargo','UNDEFINED','4e39eca4-38bc-42c1-8f93-2311af045371','','',NULL), -('5526','Door_NoRoomConnector_DockingAnimator_RSI_Aurora_GS_FuelPort','DockingAnimator','UNDEFINED','97a7dd4f-352e-4e9e-8a0c-712b4634a31d','','',NULL), -('5527','Artimex Legs Elysium','Armor','Legs','c17e3812-5939-4508-ae14-2f696520bbad','','',NULL), -('5528','Dopple','Misc','Harvestable','74b44fe0-063d-44e1-a89b-98295945a544','','',NULL), -('5529','Door','Door','UNDEFINED','1947e83f-5287-4cd7-a463-82063e51014b','','',NULL), -('5530','PTV Agate Gray Livery','Paints','UNDEFINED','1aa886e1-8b79-4ce0-b403-d3dfbe5cc906','','',NULL), -('5531','Door Control','Door','UNDEFINED','17d79d20-1858-405b-be14-a83cefc49564','','',NULL), -('5532','puree_utensil_chunk_1_a','Food','Consumable','c7691861-5786-469c-a3d0-3708100e1982','','',NULL), -('5533','AEGS_Sabre_Firebird_RADR_Display','Display','UNDEFINED','9551ba85-6242-49d6-a0a5-0cdda5b50059','','',NULL), -('5534','RSI_Scorpius_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','ec301105-2592-473c-a2e6-c7d577821a3f','','',NULL), -('5535','Lynx Arms Seagreen','Armor','Arms','c88b3131-7cad-4e90-a288-ca6be6b9328d','','',NULL), -('5536','Parasite V: Dark Birth Replica Helmet','Armor','Helmet','e33d093a-c1bf-4d60-96e8-7ecadff067a1','','',NULL), -('5537','Door Control','ControlPanel','DoorPart','4d80c8cd-e612-4335-9506-490cf4c88223','','',NULL), -('5538','F1M-Fireshot','Suit','ThrusterPack','ad769f63-7f73-4fbc-8214-4afed8a9aea9','','',NULL), -('5539','TRGT. STATUS','Seat','UNDEFINED','83995714-9255-4666-9bc8-8b5ee3bb5f07','','',NULL), -('5540','TrueDef-Pro Legs Silver/Gold/Grey','Armor','Legs','a26b114d-646e-43c3-af7f-4b0b2bf6d2b5','','',NULL), -('5541','Neon','Cargo','Small','45b0953d-169b-4a78-b923-dba67ec5fe69','','',NULL), -('5542','Quartz (Raw)','Cargo','Cargo','bea67b68-1ef9-4932-b596-7d632201eee2','','',NULL), -('5543','Paint_135c','Paints','UNDEFINED','38fb8577-42a6-4b65-abe3-dda76d5dbdd0','','',NULL), -('5544','RSI_Salvation_Thruster_Retro_Top_Right','ManneuverThruster','Retro','3e45ed09-2366-45ad-9b45-2381d5f97a34','','',NULL), -('5545','Soap','Misc','UNDEFINED','8ffb7611-4cf7-4c7f-9cfe-934c470b550f','','',NULL), -('5546','Exo-8 Helmet (Used)','Armor','Helmet','a71fec25-9894-484a-98e9-bf38aecff438','','',NULL), -('5547','Seat','Usable','UNDEFINED','3e68a401-64eb-4080-96eb-4386af9e8be3','','',NULL), -('5548','Cutlass Cypress Livery','Paints','UNDEFINED','9007b138-dcab-43da-93f4-4fdaf6468d9e','','',NULL), -('5549','GAMA_Syulen_Headlight','Misc','UNDEFINED','45278216-076a-45b1-9e99-673babc2ad8b','','',NULL), -('5550','Archibald Jacket Smoke','Char_Clothing_Torso_1','UNDEFINED','43696e42-7d70-41e2-bc25-0d2f2478cccd','','',NULL), -('5551','TruDef-Pro Legs Scorched','Armor','Legs','62862b4d-eb83-446f-846b-0142078238e6','','',NULL), -('5552','AEGS_Sabre_Peregrine_Thruster_Mav_Joint_02','ManneuverThruster','JointThruster','0864ad98-70fe-4a0e-8d9d-dbad8caec04d','','',NULL), -('5553','food_ration_pack_b','Misc','UNDEFINED','527bd57a-845c-4122-b721-8037d299b9a4','','',NULL), -('5554','Door_ChipReader_Level_1','Door','UNDEFINED','096ebd17-a1dd-46f4-9b67-deb217f23d7b','','',NULL), -('5555','CRUS_Starlifter_Thruster_Main_Aux','MainThruster','FixedThruster','16ec0923-6843-46eb-8a2e-cab704181842','','',NULL), -('5556','DRAK_Cutter_Thruster_Addon_Scout_Right','Misc','UNDEFINED','92887de4-ff47-413f-9ec7-1534111e26d0','','',NULL), -('5557','Ramming Blade','MissileLauncher','MissileRack','1f535425-a24a-4c6f-9274-0534bfeda63e','','',NULL), -('5558','Carryable_1H_CY_weight_dumbbell_1_18kg_c','Misc','UNDEFINED','8f094a8a-a40b-4390-b631-e3a05f315430','','',NULL), -('5559','MRAI_Guardian_Thruster_Main','MainThruster','JointThruster','2aa894a9-0ef9-4159-bc92-3b39bc187c99','','',NULL), -('5560','Door Control','Door','UNDEFINED','f77f2317-3112-4629-af85-51b13aa46e44','','',NULL), -('5561','un_box_plastic_3_food_a','Misc','UNDEFINED','35efa274-94a1-4760-86fa-61f869759fd7','','',NULL), -('5562','VariPuck S5 Gimbal Mount','Turret','GunTurret','c7d90e05-0224-4ae6-9a59-ccaf421cfa90','','',NULL), -('5563','Union Pants White','Char_Clothing_Legs','UNDEFINED','18b194ba-a8ab-4c00-aa79-65e5bea59ea3','','',NULL), -('5564','Seat','SeatAccess','UNDEFINED','de85bf92-0b16-4716-a347-88c166137392','','',NULL), -('5565','KLWE_MassDriver_FiringMechanism_S3','WeaponAttachment','FiringMechanism','eb5e4b66-2b7f-4d7d-a4ab-d3298a34c09d','','',NULL), -('5566','Lynx Core Blue','Armor','Torso','ba712733-e052-4cca-8349-c5ec1c24659a','','',NULL), -('5567','Screen','Usable','UNDEFINED','7b23681a-8388-417c-94a6-c30e90e17d2e','','',NULL), -('5568','Seat','Usable','UNDEFINED','67ad0048-e926-4fde-a33e-070499cc3071','','',NULL), -('5569','FS-9 \"Finish Line\" LMG','Weapon','Medium','4ee95d7b-4cbb-44a5-a03b-8e1698929f88','','',NULL), -('5570','Anvil Void Ship Armor','Armor','Medium','17dce25c-f417-4f7f-bb5d-67895c4354f8','','',NULL), -('5571','Venture Undersuit Black/Grey','Armor','Undersuit','825dbfd1-6316-4d36-97b2-5d733df97058','','',NULL), -('5572','Stirling Exploration Suit Tungsten Edition','Armor','Undersuit','752dbb5f-e8b2-4dbb-82b5-3b3ef5b120e0','','',NULL), -('5573','Door Control','Door','UNDEFINED','7ee117a1-5e69-40c7-b2dc-1ab8aa293249','','',NULL), -('5574','Bantam Hat Orange','Char_Clothing_Hat','UNDEFINED','f180875b-484c-41be-a252-4c69432de0d9','','',NULL), -('5575','Pite','Char_Head_Piercings','UNDEFINED','369df013-2217-4d42-b9a2-983da692ba3a','','',NULL), -('5576','Manned Turret','TurretBase','MannedTurret','b3cba11a-c683-4a89-bc01-1f21505638ec','','',NULL), -('5577','Kino Shoes Twilight','Char_Clothing_Feet','UNDEFINED','908a6214-090d-457c-964e-24509cdf0ed0','','',NULL), -('5578','Remote Turret','Turret','GunTurret','209c444e-0b4f-46b4-9265-de6e1daa8fcf','','',NULL), -('5579','FullStop','Shield','UNDEFINED','924e275a-d449-44f5-a8a8-6e0e93a9661e','','',NULL), -('5580','ORC-mkV Legs Yellow','Armor','Legs','f7cff000-a26b-4f5b-a8ae-14c94b2ce9e0','','',NULL), -('5581','Weapon_Rack_ARGO_ATLS_IKTI','Usable','UNDEFINED','30f37405-de4b-41b2-8743-58564f256163','','',NULL), -('5582','Venture Core White','Armor','Torso','aa7e72cc-25c3-47a7-912a-e01a445c7a4b','','',NULL), -('5583','AAT-34 Turret','Turret','MannedTurret','d7146136-c3b9-4fce-af94-e40e6283cdbc','','',NULL), -('5584','Remote Turret','Turret','TopTurret','e0dfadbd-97e7-450a-8a5e-ec3df3452962','','',NULL), -('5585','DCP Armor Core Hunter Camo','Armor','Torso','f66babbd-4b85-451b-80ad-1688b895f04c','','',NULL), -('5586','Pite','Char_Head_Piercings','UNDEFINED','d211c973-580b-4399-b3af-6bc760c6eb95','','',NULL), -('5587','DoorDefault','Door','UNDEFINED','790c3a1d-e42b-407e-be6c-b5cebc8d6a99','','',NULL), -('5588','DockingTube_Fuel_Ports_VNCL_Stinger','DockingCollar','UNDEFINED','feabd335-3dd1-4e6e-a04f-2d96cee031b3','','',NULL), -('5589','Chlorine','Cargo','Cargo','7ecb1b1a-548f-46f7-808a-ccf01e0db1d9','','',NULL), -('5590','Remote Turret','Turret','GunTurret','1ab8e549-9737-4698-87eb-45753a5fbacb','','',NULL), -('5591','CBH-3 Helmet Grey','Armor','Helmet','62ea6e32-bed9-4ce6-982c-d8a2a8ee328f','','',NULL), -('5592','Seat','Usable','UNDEFINED','3eb5682f-7e35-47e1-a10a-824d01145086','','',NULL), -('5593','DRAK_Golem_Thruster_Mav_Fixed_Bottom','ManneuverThruster','FixedThruster','95db55f6-89ff-4f40-b9ee-1caaef7eeb73','','',NULL), -('5594','Door_Ship_Sensor_Proximity_2x2x1_5','Sensor','DoorPart','482f26c9-0cb9-4f61-94ea-6e22bb207025','','',NULL), -('5595','Seat','SeatAccess','UNDEFINED','e76adab3-f5bb-4beb-aadf-8ff249f6d236','','',NULL), -('5596','Ponos Boots','Char_Clothing_Feet','UNDEFINED','c9e29740-b5cf-40d8-8e3c-90c8871daba8','','',NULL), -('5597','Cutter Noble Livery','Paints','UNDEFINED','692618a7-7913-4c48-b834-82dd4406c187','','',NULL), -('5598','ANVL_Centurion_SCItem_Dashboard_Driver','SeatDashboard','UNDEFINED','35746736-1ead-4347-bc97-ce9468d48225','','',NULL), -('5599','Orbgn_None_Consumable_Keycard_OrbitalSecurity','FPS_Consumable','Hacking','393d5678-e2a9-4f60-8ce6-822a7739830b','','',NULL), -('5600','Door','Door','UNDEFINED','422a5bef-527b-43d3-b0b1-e3715912b637','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('5601','Stratus Jacket Purple','Char_Clothing_Torso_1','UNDEFINED','94cecfcb-7e58-433d-adf1-ad8fcaa92218','','',NULL), -('5602','Adiva Jacket Imperial','Char_Clothing_Torso_1','UNDEFINED','93699fae-dfa4-4c7c-80a0-d50b1ab9fda0','','',NULL), -('5603','Inquisitor Core Neon Pink ','Armor','Torso','8a67752c-20a4-4ca9-a6e6-0a3797f2e9c3','','',NULL), -('5604','Internal Tank','FuelTank','Fuel','1b7f3d7b-6412-4f35-b0fa-f688bfb4b7fe','','',NULL), -('5605','AEGS_Retaliator_Module_Rear','Module','UNDEFINED','eb305f4b-bf8d-4f73-b341-1191d0f546ea','','',NULL), -('5606','GRIN_STV_Seat_Passenger','Seat','UNDEFINED','7461ae4b-ef5c-4fa7-88fa-4a53b7f6b0b3','','',NULL), -('5607','CRUS_Starlifter_RADR_Display','Display','UNDEFINED','e6eb7403-a6fa-4855-aafe-6d2d62e447e7','','',NULL), -('5608','m_human_mannequin_deckcrew_cargo_light','ShopDisplay','UNDEFINED','39d72a81-983d-415f-a4f9-611802158bfb','','',NULL), -('5609','Invictus Flyby T-Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','64fdf455-f0aa-443a-85ce-2dc0a5fde7a1','','',NULL), -('5610','Dashboard','SeatDashboard','UNDEFINED','f04b1860-8073-46c9-ab1d-cdc9e26518d5','','',NULL), -('5611','Door Control','Door','UNDEFINED','567a2899-65a2-4a7e-a61d-a863868042aa','','',NULL), -('5612','AEGS_Sabre_Thruster_Mav_BottomRL','ManneuverThruster','JointThruster','f1fc077e-e981-4f98-b15c-05ed0509f20c','','',NULL), -('5613','BEHR_BallisticRepeater_FiringMechanism_S1','WeaponAttachment','FiringMechanism','bda5e109-4463-4c5f-90fd-f953ab97550e','','',NULL), -('5614','Manned Turret','TurretBase','MannedTurret','b0aa88f6-56d5-440e-acab-b3a2811360fb','','',NULL), -('5615','Corundum (Raw)','Cargo','Cargo','11abd68b-323a-478e-a1e3-c18b80ce1032','','',NULL), -('5616','SRV Dark Storm Livery','Paints','UNDEFINED','92414374-3f8c-4171-926b-2f629536f85f','','',NULL), -('5617','San\'tok.yāi Gimbal Mount','Turret','GunTurret','98f27734-3ef8-4715-a1dd-0c28f6e053bd','','',NULL), -('5618','Carryable_2H_FL_05x05x05_MissionItem_Present_c','Misc','UNDEFINED','62c8cf3e-1e3d-47dd-a945-3fc935902893','','',NULL), -('5619','DRAK_Golem_Thruster_Main_VTOL','MainThruster','FixedThruster','08446065-0e20-4825-a1a6-61ef68edf6f5','','',NULL), -('5620','Omnisky XII Cannon','Weapon','Gun','cf57c4df-0fed-40bb-9771-10fc7853d8f9','','',NULL), -('5621','Seat','Usable','UNDEFINED','4ec51994-17a3-3112-2737-e7f2e3ff738f','','',NULL), -('5622','ADP-mk4 Legs Rigteous','Armor','Legs','599dd9a6-f2d5-4702-8349-c57d9126434b','','',NULL), -('5623','ORIG_M50_Thruster_Main_AT','MainThruster','FixedThruster','06636f28-4936-45e9-b28f-e313e6841cf7','','',NULL), -('5624','Ati Jacket Grey','Char_Clothing_Torso_1','UNDEFINED','5a05f916-1ade-4201-b550-a4668f67dfde','','',NULL), -('5625','Piecemeal Armor Arms Grey','Armor','Arms','699d7420-c356-493b-ba0c-bf5da91c6974','','',NULL), -('5626','Bed','Seat','UNDEFINED','bddf0bb7-ab68-42af-920b-5d0a309ff16c','','',NULL), -('5627','Voidripper Helmet','Armor','Helmet','3d3a79ad-af46-4d77-baf0-184c6d06844e','','',NULL), -('5628','Crusader Industries Hat','Char_Clothing_Hat','UNDEFINED','3807da5c-488a-4ef6-bd9c-7528c51e081a','','',NULL), -('5629','Mandible Firestrike Helmet','Armor','Helmet','1d802d55-acca-416e-b4d0-4fc2f2cc08f4','','',NULL), -('5630','Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','991674f7-c3c9-4a26-b464-e8f43426da5a','','',NULL), -('5631','Stud','Char_Head_Piercings','UNDEFINED','43376990-1a04-4ae0-b929-61df1505b044','','',NULL), -('5632','Aztalan Galena Core','Armor','Torso','f87c80b2-6afe-4ddb-a818-503bfcdacbab','','',NULL), -('5633','MacFlex Core Dark Green','Armor','Torso','e110d80a-dcff-4d12-8764-8e38ced34958','','',NULL), -('5634','AEGS_Sabre_Firebird_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','06243d54-5f4d-4633-bd42-17b3d0d6c1e2','','',NULL), -('5635','Idris_Toilet_Door_r','Player','UNDEFINED','5159974f-49d4-4dac-8f3c-0015cf24839e','','',NULL), -('5636','ARGO_CSV_CargoGrid_Rear','CargoGrid','UNDEFINED','2d2e7628-a0c5-4770-bd67-7e88810fe538','','',NULL), -('5637','DRAK_Mule_CargoGrid_Rear','CargoGrid','UNDEFINED','2b5aaa08-53ff-4ae9-84bc-c776bc414a32','','',NULL), -('5638','Door','Door','UNDEFINED','c177505e-98ea-46f5-b484-4b962bd72b52','','',NULL), -('5639','rod_torso1_02x01x04_09Ports','ShopDisplay','Default','d42811b7-8aea-42d8-9725-54002c445f79','','',NULL), -('5640','Seat','Usable','UNDEFINED','3267d35a-1817-40c0-a48e-e3b04a5fdce2','','',NULL), -('5641','XIAN_Nox_Thruster_Aux','ManneuverThruster','JointThruster','e30e0df8-641d-40ba-a0b0-2e2faa8a1978','','',NULL), -('5642','Carryable_1H_CY_utensil_scoop_1_a','Misc','UNDEFINED','b847f9e0-1c29-4bde-8885-3cdf0dee9cd8','','',NULL), -('5643','RSI_Zeus_Mohawk_Cargo','AttachedPart','UNDEFINED','0209d1a5-f02e-4efa-ba4e-a6d02616143d','','',NULL), -('5644','Polaris Sirius Livery','Paints','UNDEFINED','5f8ae92f-7bcf-4fdb-a258-e4e51f9bc0c8','','',NULL), -('5645','Door Control','Door','UNDEFINED','abd1fed4-6fc9-4080-9a7f-0bf473f21f20','','',NULL), -('5646','Hardline Hard Hat Chrome','Char_Clothing_Hat','UNDEFINED','21ce1238-3d85-4d9a-b0cb-6cd6cf704985','','',NULL), -('5647','TruBarrier Hazard Suit Mask Cobalt','Char_Clothing_Hat','UNDEFINED','c3399e8e-5235-4812-b05a-ca2f213f7001','','',NULL), -('5648','Iron','Cargo','Cargo','935cf432-577b-409b-af69-3a3ca0753e4d','','',NULL), -('5649','Carryable_1H_SQ_fruit_alien_4_a','Food','Plant','2d9bc3cd-f2b0-4e07-b5dd-30e524d258b9','','',NULL), -('5650','Lynx Legs Lichen','Armor','Legs','4a25377f-70dc-4291-b58a-78601360d9c7','','',NULL), -('5651','Seat','SeatAccess','UNDEFINED','d9ddb38e-3922-491d-bee1-5fec343cffff','','',NULL), -('5652','Carryable_1H_SQ_box_file_1_a','Misc','UNDEFINED','e43a5114-6af8-4ebc-9cc9-4e31e88ce368','','',NULL), -('5653','Dragonfly Ghoulish Green Livery','Paints','UNDEFINED','a04e569a-42da-46db-9718-e681f4f6eb30','','',NULL), -('5654','MTC Filament Livery','Paints','UNDEFINED','6061b637-e704-4e85-bf92-73ec0d50b822','','',NULL), -('5655','Omnapoxy','Cargo','Cargo','e5ec1567-688d-4ebc-8b36-30756a8dfa3f','','',NULL), -('5656','Debnam Gloves Sienna','Char_Clothing_Hands','UNDEFINED','565946ca-0722-4545-b882-0b6563eea3f8','','',NULL), -('5657','Controller_Salvage_AEGS_Reclaimer_Turret','SalvageController','UNDEFINED','b16c9a55-8f9e-4fed-acee-52c8248cd9cd','','',NULL), -('5658','Xanthule Sehya Suit','Armor','Undersuit','d13b0e28-004e-4ce4-ac98-024e8af90d82','','',NULL), -('5659','AEGS_Idris_SCItem_Seat_Pilot_M','Seat','UNDEFINED','82e2c380-9ba3-4948-a13b-092b205b0d39','','',NULL), -('5660','Microid Battle Suit Helmet Lodestone','Armor','Helmet','be6bd379-9f0c-44a7-be78-e2aafe93c7a5','','',NULL), -('5661','Prota','Cargo','Cargo','380c835a-9828-4b5e-8505-42df5ea98e73','','',NULL), -('5662','TRGT. STATUS','Seat','UNDEFINED','0650fa97-50c5-48e1-9dbe-d54222a6108b','','',NULL), -('5663','DRAK_Mule_Dashboard_Driver','SeatDashboard','UNDEFINED','87e3da7a-a89f-45fd-911d-fc708d16964c','','',NULL), -('5664','MISC_Razor_LX_Thruster_Vertical_Top','ManneuverThruster','FixedThruster','568af77e-62e1-44ab-bb98-d09baa4ff9c7','','',NULL), -('5665','Cordimon Jacket Grey','Char_Clothing_Torso_1','UNDEFINED','6eae10ef-fa05-4426-b6fa-af8e7904a428','','',NULL), -('5666','Door Control','Door','UNDEFINED','e6ddd708-fc67-41c5-a10d-c0a82f3f417f','','',NULL), -('5667','RSI_Bengal_Thruster_Main_Medium','MainThruster','JointThruster','3f455fc0-5da4-4d72-8eee-58e35f110681','','',NULL), -('5668','Xanthule Ascension Suit','Armor','Undersuit','58f4e1c7-5a75-4fca-ae08-f80e115ede1d','','',NULL), -('5669','Stirling Exploration Suit','Armor','Undersuit','711208e1-0378-42f3-a503-cdac8ee56e31','','',NULL), -('5670','Fuel Intake ','FuelIntake','Fuel','fc9ca892-2cc8-4135-aad7-523e13e8a0ae','','',NULL), -('5671','Door Control','Door','UNDEFINED','c66066a3-ca74-4460-ba59-e9264cbc99f0','','',NULL), -('5672','F55 \"Alpine Sunset\" LMG','Weapon','Medium','e06e90e2-7d83-4805-ba45-de64045e2426','','',NULL), -('5673','Kino Shoes Orange','Char_Clothing_Feet','UNDEFINED','330e8aa0-9960-44b3-90f2-a3e878f52aa3','','',NULL), -('5674','Artimex Legs Chairman\'s Club','Armor','Legs','7656c45c-d301-4503-b404-fc4126ac7139','','',NULL), -('5675','Carryable_1H_CY_antagonist_1_a','Misc','UNDEFINED','947c457f-fcf7-4982-bbaf-17ef4b1112f2','','',NULL), -('5676','ANVL_Centurion_SCItem_SeatAccess_Support','SeatAccess','UNDEFINED','90963f9f-6d1e-432e-8e2c-66b03e37c29b','','',NULL), -('5677','Karna Rifle','Weapon','Medium','3825f6fa-bfcd-4ced-b207-47c2643a2258','','',NULL), -('5678','AAT-34 Turret','Turret','MannedTurret','fe4163d6-75c4-4a74-a528-f955122aeba4','','',NULL), -('5679','Bar_Table_Eckhart','Usable','UNDEFINED','778efff9-997d-4eb7-97f6-f7ff07eac1cf','','',NULL), -('5680','ORC-mkV Core Purple','Armor','Torso','33f0bca9-3e7f-4412-8f1f-aea1e2cceb3f','','',NULL), -('5681','RSI_Aurora_Cargo_Rack_3SCU','AttachedPart','UNDEFINED','1b67c44b-1456-4cb5-afc0-3a68c9482354','','',NULL), -('5682','Nivala Shoes Crimson','Char_Clothing_Feet','UNDEFINED','5d477e72-320b-4024-a226-89f48602b7a7','','',NULL), -('5683','Apollo Alliance Aid Red & Gold Livery','Paints','UNDEFINED','1346454b-ba8e-469c-b38c-cfd8a97d6080','','',NULL), -('5684','Gladius TSB Flight Blade','FlightController','UNDEFINED','d21e1dc6-a7c3-40ba-b3de-8acba4e8a073','','',NULL), -('5685','Seat','Usable','UNDEFINED','37860cf3-4e58-4ef5-ac05-9be7156d7a3c','','',NULL), -('5686','Vehicle_Screen_Physical_Golem_Indicator','Display','UNDEFINED','6f502517-7cec-4b94-aed6-2234a23057df','','',NULL), -('5687','Medical Bed','Usable','UNDEFINED','30a63d95-4393-4820-b372-2fece80c4589','','',NULL), -('5688','Bed_ANVL_Terrapin','Usable','UNDEFINED','f5feae9b-1295-40e4-9f12-6927bc7ef7ab','','',NULL), -('5689','Mivaldi Pants Green','Char_Clothing_Legs','UNDEFINED','d8a56b78-c95d-4ed9-b6ae-f03a6ad37448','','',NULL), -('5690','Horizon Helmet Seagreen','Armor','Helmet','579543ed-eea4-49f0-ad88-0ffc38fadb2d','','',NULL), -('5691','Carryable_1H_SQ_hydrogel_1_a','Misc','UNDEFINED','586a3926-e029-415e-b160-563fd59b1599','','',NULL), -('5692','MacFlex Backpack Granite Red','Armor','Backpack','d714596d-a4b0-4734-a12f-39058537c0fe','','',NULL), -('5693','Government Cartography Agency Medal (Pristine)','Misc','Trophy','0ce468ad-34a9-46e8-aa1d-71cf6b7b5560','','',NULL), -('5694','Antium Legs Maroon','Armor','Legs','bf7b7917-961c-42df-b8a0-cde68286250b','','',NULL), -('5695','GATS_BallisticGatling_PowerArray_S2','WeaponAttachment','PowerArray','caa703b5-265e-4b88-b3c7-b8473cd3bf8e','','',NULL), -('5696','Why Not? Helmet','Armor','Helmet','7edb4266-770c-4e29-8881-36d5b90637aa','','',NULL), -('5697','Jumping Limes','Cargo','Cargo','8fc4e51f-59d2-4618-ae29-1f3a0a7f176c','','',NULL), -('5698','Hermes Honorbound Livery','Paints','UNDEFINED','3237534f-e602-4629-8a3e-5bb7a2341446','','',NULL), -('5699','StorageCage_Damage_CustomLoadout','Cargo','UNDEFINED','7e508c83-a4e2-4e0a-933d-802bd9d27319','','',NULL), -('5700','Manticore Helmet Epoque','Armor','Helmet','55e7a629-b131-4e0e-8d59-75ce8db86237','','',NULL), -('5701','TRGT. STATUS','Seat','UNDEFINED','90a7f39b-6633-49f1-996c-d2f579fb7e4e','','',NULL), -('5702','Locker_Simple','Player','UNDEFINED','d3173f74-8422-4176-a7ce-eef8d6fb16b5','','',NULL), -('5703','K7 Pants Red','Char_Clothing_Legs','UNDEFINED','30711b13-cc9c-435e-977c-e2caf09cb1ce','','',NULL), -('5704','Sangar Helmet (Modified)','Armor','Helmet','09df1b07-bb85-4369-8c83-cd97900a2dca','','',NULL), -('5705','ARMR_BANU_Defender','Armor','Light','48d24c81-35d6-44d7-aa9c-5f9b5966cce8','','',NULL), -('5706','MISC_Prospector_Thruster_Retro_01','ManneuverThruster','FixedThruster','4bdf7c53-4065-4823-b5bc-9e0acf2bd4bb','','',NULL), -('5707','Spirit 2954 Best in Show Livery','Paints','UNDEFINED','f32a2b7f-649d-416f-897a-8dcf479a45e9','','',NULL), -('5708','ORIG_125a_Thruster_Retro_Left','ManneuverThruster','JointThruster','aa6309ac-9276-46cf-9397-dc75287920f9','','',NULL), -('5709','Galen Surgical Scrub Pants','Char_Clothing_Legs','UNDEFINED','46c44ce6-4522-4776-ba05-c569f5738b0a','','',NULL), -('5710','Venture Arms Lovestruck','Armor','Arms','058f553d-0ef9-42d8-a075-d110aa82b529','','',NULL), -('5711','Door','Door','UNDEFINED','6323fed7-32e1-40a3-8430-dfd55386177e','','',NULL), -('5712','Aegis Dynamics T-Shirt','Char_Clothing_Torso_0','UNDEFINED','cab5bd0c-713b-4abb-a121-a965403e8e2c','','',NULL), -('5713','INTK_ARGO_MOTH','FuelIntake','Fuel','bc62298d-9579-4442-81af-af090ad62c85','','',NULL), -('5714','Scorpion GT-215 Gatling','Weapon','Gun','7034e330-3d22-4e89-83cb-c01815dbb875','','',NULL), -('5715','DRAK_Cutlass_Red_Thruster_Retro','MainThruster','FixedThruster','766b2aee-0382-4132-b3bc-30f1e334fe28','','',NULL), -('5716','Seat','Usable','UNDEFINED','ed4e13ac-d076-484e-ab9a-f30b40796147','','',NULL), -('5717','SHIELDS','ShieldController','UNDEFINED','9b580184-17bf-42f7-a22d-9938b2af42b1','','',NULL), -('5718','Stronger Together Poster','Misc','Utility','a40e35e4-3ce7-4e76-96f7-38cfaf7d69aa','','',NULL), -('5719','Carryable_2H_FL_Container_Anim_Socket_Set','Misc','UNDEFINED','6f477d95-61dc-4e10-a172-22217ebc86d2','','',NULL), -('5720','Weapon_Rack_ANVL_Valkyrie_1Slot','Usable','UNDEFINED','a37c1b0f-b7f9-4b5e-96f9-4571f19abafe','','',NULL), -('5721','Tungsten','Cargo','Cargo','6a04ee2a-5fe2-4853-a0cd-ee8ba6e921e2','','',NULL), -('5722','ANVL_Paladin_CargoGrid','CargoGrid','UNDEFINED','e6724834-f542-4231-b82e-e318578c2e14','','',NULL), -('5723','ADP Legs Blue','Armor','Legs','d8e8a84d-812a-4969-8965-95f7b96b0081','','',NULL), -('5724','CBH-3 Helmet Seagreen','Armor','Helmet','963a2e3b-7a40-4678-83a9-3638a72e177a','','',NULL), -('5725','ANVL_Lightning_F8_Thruster_Mav_Joint_White','ManneuverThruster','JointThruster','04822965-d2c2-481c-a34b-2c9a42c2e401','','',NULL), -('5726','Diamond (Raw)','Cargo','Cargo','5a1ff23f-f977-4f41-b753-a4597743e740','','',NULL), -('5727','Cargo_Comm_125x3_Medical_Supplies_a','Cargo','Cargo','38f36834-e386-4ad9-a44d-f9d0a757f3a8','','',NULL), -('5728','Carryable_1H_FL_packaging_medpen_1_single_a','Misc','UNDEFINED','670e0c14-4ade-430e-8816-b9ad95d4d088','','',NULL), -('5729','ORC-mkX Core Arctic','Armor','Torso','e7e1286b-3c7f-47c8-a2f2-9bdf0054d46c','','',NULL), -('5730','Arrowhead \"Desert Shadow\" Sniper Rifle','Weapon','Medium','8c351f63-67c2-4f11-9533-4afbb24eac61','','',NULL), -('5731','AEGS_Javelin_SCItem_Seat_Bridge_Right_RemoteTurret','Seat','UNDEFINED','2e4bead6-894a-45d8-bc96-2481b9f63803','','',NULL), -('5732','Cave Kopion Horn','Misc','Harvestable','9a906fca-8116-4334-9ac7-7b2fce486d8c','','',NULL), -('5733','MASTER_screen_rtt','Display','UNDEFINED','3c24bd8a-568f-4158-b256-49897fceba82','','',NULL), -('5734','MISC_Razor_CML_Chaff','WeaponDefensive','CountermeasureLauncher','17eb8b6b-3bed-48d4-8c89-8f6451768798','','',NULL), -('5735','can_drink_3_energy_bm_shop_2x5_a','ShopDisplay','Default','d333ea43-b030-4ed8-abd0-a88562829c52','','',NULL), -('5736','Davlos Shirt Steel','Char_Clothing_Torso_0','UNDEFINED','09fab038-872d-4c36-97dd-8220be31f328','','',NULL), -('5737','MISC_Fury_MX_Thruster_FixedMav_Top','ManneuverThruster','FixedThruster','659ec9ac-e08d-40c0-9722-e45c1d04cb5a','','',NULL), -('5738','Ravager-212 \"Outcast\" Twin Shotgun','Weapon','Medium','03e1fa47-a15e-41bb-81f9-17d3be857a0d','','',NULL), -('5739','Carrion Helmet Ashen','Armor','Helmet','85271010-22ed-4a52-96e7-db30c7ff94d8','','',NULL), -('5740','DRAK_Clipper_Thruster_Retro_Aux_Left','ManneuverThruster','UNDEFINED','3d8c1448-fc2a-4c6c-9272-54a65825b070','','',NULL), -('5741','Toughlife Boots White','Char_Clothing_Feet','UNDEFINED','e914a57b-69a5-4d50-aaab-6be11891e7c7','','',NULL), -('5742','Frost-Star EX','Cooler','UNDEFINED','59a37716-f4d3-4dcb-a41e-0f2c3064e169','','',NULL), -('5743','Carinite','Cargo','Cargo','f0e355ed-5f11-46b0-ae39-637343b48a52','','',NULL), -('5744','Door Control','ControlPanel','DoorPart','46a3dd93-e1eb-4cb5-9cbe-850a5b6119a7','','',NULL), -('5745','Ardent Boots White','Char_Clothing_Feet','UNDEFINED','5415b6e8-4b70-40ef-9667-0c71b586a7ab','','',NULL), -('5746','f_human_mannequin_base_armor','ShopDisplay','UNDEFINED','ea9af15d-f514-407f-b6d1-ce58053c9e77','','',NULL), -('5747','AEGS_Sabre_Thruster_Mav_TopFR','ManneuverThruster','JointThruster','533327aa-66c9-4314-9259-a22daf034301','','',NULL), -('5748','Organs','Cargo','Cargo','fc89492f-a38c-4beb-9720-da4276aee0eb','','',NULL), -('5749','Marok Gem','Misc','UNDEFINED','a2c0a7a2-84ae-4d2f-80be-4950196b7075','','',NULL), -('5750','test_Gadget','Weapon','Gadget','0cc46368-e305-4415-9a62-cfe0bdb56d9b','','',NULL), -('5751','ORIG_350r_Thruster_Mav_Fixed_01_Front_Top','ManneuverThruster','FixedThruster','f78e6200-11e6-4eae-89d3-b8441ec65870','','',NULL), -('5752','kitchenware_interior_1_tray_Harvestables','ShopDisplay','Default','da980f6c-96c0-40e0-aa9e-43592b50eb84','','',NULL), -('5753','KRIG_l21_Wolf_Thruster_Main_Wing','MainThruster','UNDEFINED','d0a6382b-2401-4b29-9dc5-9e9633a8806c','','',NULL), -('5754','Railing_Straight_2m_LT_Delta_b','Usable','UNDEFINED','8d1ba278-edf7-4085-aa6d-30c9a509aa17','','',NULL), -('5755','SW16BR2 “Sawbuck” Repeater','Weapon','Gun','d4ebab35-1d86-4259-82dc-cda6a7167c90','','',NULL), -('5756','Impact II Mining Laser','Mining','Gun','30545178-b09e-495d-a8b8-c6267ce2b495','','',NULL), -('5757','vanduul_drone_horns_01','Char_Accessory_Head','Vanduul','431731e2-325e-4f6e-b184-b7bde25c6251','','',NULL), -('5758','Construction Salvage','Cargo','Cargo','b7af97df-bc2e-462e-b0d0-4cece39522d9','','',NULL), -('5759','Invictus T-Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','fd50e4bf-dd23-433d-9531-f863f4e51115','','',NULL), -('5760','Odyssey II Helmet Orange','Armor','Helmet','97ef1b42-3921-4897-a520-d4e4b1900c1c','','',NULL), -('5761','Seat','Usable','UNDEFINED','d1170288-95be-4c17-a163-2fc9914613fb','','',NULL), -('5762','Klein-S2 Mining Laser','Mining','Gun','41850766-d4a8-4255-be75-0d24af7280b0','','',NULL), -('5763','DRAK_Cutlass_Tractor_Mount','Misc','UNDEFINED','08513677-95db-433b-a494-dd516b92fc13','','',NULL), -('5764','Door Control','Door','UNDEFINED','c7d04208-2de1-4b3e-b536-0f5bc233446b','','',NULL), -('5765','Detatrine','Cargo','Cargo','604d07f0-2085-4eb9-9dd7-4d2913bcaf7b','','',NULL), -('5766','FL-22 Cannon','Weapon','Gun','ee3e42f7-56ea-46b8-bac2-d27187005a70','','',NULL), -('5767','Aril Arms Red Alert','Armor','Arms','63f1532d-e2cd-405c-984d-afbd4fef2a52','','',NULL), -('5768','subi_como_wlop_s01_pl01','Misc','Fuse','b6ab5684-bf89-4a34-9440-e4063a7a0044','','',NULL), -('5769','Seat','Usable','UNDEFINED','1bfb32e0-fb15-4127-97f6-b69f17319481','','',NULL), -('5770','counter_medical_06x02x01_5Ports','ShopDisplay','UNDEFINED','7990730b-c8bd-460e-85c8-f06c4a636462','','',NULL), -('5771','Door Control','ControlPanel','DoorPart','89568a98-f997-45d2-969b-7465950348bd','','',NULL), -('5772','RSI_Constellation_Phoenix_Thruster_Main','MainThruster','FixedThruster','43c2b990-c4ed-483f-89fc-39e471f78624','','',NULL), -('5773','Lindinium','Cargo','Cargo','fdfdf2a1-ade2-4d79-9f7d-ffde1855c346','','',NULL), -('5774','Bracewell Boots Blue','Char_Clothing_Feet','UNDEFINED','156fa89f-34b1-47f2-9c66-6f02e890b29b','','',NULL), -('5775','SF7B Gatling','Weapon','Gun','51264411-1e57-48b9-b1d8-6fab4fb3a687','','',NULL), -('5776','Morozov-SH Arms Brushdrift','Armor','Arms','d3f69743-430b-46d4-8939-7279cbdf22e0','','',NULL), -('5777','Deo Shirt Desert','Char_Clothing_Torso_0','UNDEFINED','77dcf251-20ac-4cce-9cb6-e6c7e9f62844','','',NULL), -('5778','DustUp Legs Tactical','Armor','Legs','d45f28b2-c1a6-4ddf-bb25-ec262c518610','','',NULL), -('5779','Carryable_2H_CU_uee_lawless_prop_dishplate_small_01','Misc','UNDEFINED','f07ff609-d4ac-4e5b-ade2-2e6ef0928c3e','','',NULL), -('5780','Carryable_1H_CY_tool_manual_hammer_1_a','Misc','UNDEFINED','4c31bb21-629b-4029-9d52-9a9b0d4fec7d','','',NULL), -('5781','Spruce Cap Whammer\'s','Char_Clothing_Hat','UNDEFINED','c7d7dd99-4da9-425d-8b88-fe994554d872','','',NULL), -('5782','Shipment','Misc','UNDEFINED','e0fc4223-1a43-4297-bd18-e1f5fd07bce5','','',NULL), -('5783','SightRight Goggles','Char_Accessory_Eyes','UNDEFINED','8229c7e8-37f8-49e7-96c1-d9b7d077ceae','','',NULL), -('5784','Seat','SeatAccess','UNDEFINED','05dde69e-edf4-432b-947b-0c2d96ca3adb','','',NULL), -('5785','H_Dashboard_Projector_HUD_ANVL_Carrack_CoPilot','Display','UNDEFINED','fa0b8666-d9ea-4e31-ad7b-ff3916281608','','',NULL), -('5786','Bed','Usable','UNDEFINED','cd502d78-3a3d-4dd4-8385-b51045c4391c','','',NULL), -('5787','Seat','SeatAccess','UNDEFINED','99c35f3f-11e8-47b9-9593-224d886557b3','','',NULL), -('5788','bar_box_snagglestick_smoke','ShopDisplay','Default','6fd2a454-321e-4b0a-af0d-1988427ce627','','',NULL), -('5789','Malenky T-Shirt Skullsplitter','Char_Clothing_Torso_0','UNDEFINED','5856406c-ec9e-45fb-ae44-755f3c133156','','',NULL), -('5790','Agricium','Cargo','Cargo','8e462ace-0b0e-49ce-b722-ea687101911c','','',NULL), -('5791','Door Control','Door','UNDEFINED','b8d5044b-f59c-4e45-9ee7-9edd1e8d105f','','',NULL), -('5792','Access','SeatAccess','UNDEFINED','17f310f1-a3f2-4348-8498-c9e7bb6074fa','','',NULL), -('5793','Medical Bed','Usable','UNDEFINED','cbbb9199-3bc1-408e-802d-ba3f33f75b6e','','',NULL), -('5794','Seat','SeatAccess','UNDEFINED','c063324d-db75-4871-90ff-4254be8cbacc','','',NULL), -('5795','HyperGen','PowerPlant','Power','f0510922-1ae3-4b30-936b-a8ac7b7fd048','','',NULL), -('5796','Internal Tank','FuelTank','Fuel','940266c3-89e2-45d4-952b-fc1c2bd3b64c','','',NULL), -('5797','Paint_300_Dash_Aluminum','Misc','UNDEFINED','2201b04b-9051-474e-b8f3-e15f38511332','','',NULL), -('5798','RSI Zeus Missile Launcher','MissileLauncher','MissileRack','1afd5a8c-cf40-4218-9672-e2a617da1aea','','',NULL), -('5799','ANVL_Door_Decal_Carrack_Bridge','Decal','DoorPart','22043845-dc62-455b-ab4d-263d56b675ad','','',NULL), -('5800','Door','Door','UNDEFINED','1302b291-4753-42d1-a724-b8e3641071a5','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('5801','Protean Boots (Modified)','Char_Clothing_Feet','UNDEFINED','339c0845-7cba-478a-b61c-61d51784e079','','',NULL), -('5802','Seat','Usable','UNDEFINED','725e4104-5f65-46aa-86cf-009cae002c2e','','',NULL), -('5803','Monde Arms Keystone','Armor','Arms','a505456d-4bc2-4a77-b49c-8228f975ad3b','','',NULL), -('5804','ADP Legs Purple','Armor','Legs','febdefcd-df09-43ef-8cae-436aa68867e5','','',NULL), -('5805','RSI_Scorpius_SCItem_Seat_Gunner','Seat','UNDEFINED','cf8af154-9c49-471f-988d-587ef27756e0','','',NULL), -('5806','GCD-Army Core','Armor','Torso','c5a21a61-1a3b-4afc-86de-1075b139826d','','',NULL), -('5807','VT-T10 \"Veritas\" Torpedo','Missile','Torpedo','bcdd8022-c2f4-49d0-8528-e4a3a7a01a03','','',NULL), -('5808','Flight Blade','FlightController','UNDEFINED','79cc0411-027b-42ed-a6c1-9d18f111e1f9','','',NULL), -('5809','Seat','SeatAccess','UNDEFINED','a89a5495-b6e4-42f3-b8e4-5df0e5e4a376','','',NULL), -('5810','Levin Undersuit (Refurbished)','Armor','Undersuit','25e50bbb-0e97-4c29-95e7-b84f6a416f6b','','',NULL), -('5811','Morozov-CH Backpack Terracotta','Armor','Backpack','95370c49-95dd-4a49-be87-f117966266cd','','',NULL), -('5812','Buster\'s Chocolate Bar','Food','Bar','fae33afb-e2e1-459d-9159-f9caf72533a5','','',NULL), -('5813','Prospector Hadanite Livery','Paints','UNDEFINED','79380d37-67b8-4c2c-94f9-7642eef25220','','',NULL), -('5814','Arden-SL Core Balefire','Armor','Torso','af202cf4-1af1-43c0-b120-5d027e3c2d79','','',NULL), -('5815','Zerua Jacket Crusader Edition','Char_Clothing_Torso_1','UNDEFINED','36bdc2b1-81c3-40bb-bb54-8508d6402fb5','','',NULL), -('5816','Warden Backpack HighSec','Armor','Backpack','b5b507bd-67ff-4e0b-8acd-d96e041903ac','','',NULL), -('5817','MISC_Freelancer_Base_SCItem_Seat_CoPilot','Seat','UNDEFINED','30120fa4-8826-4afa-a323-199cfe03b824','','',NULL), -('5818','Armor_Crate_CZ_Firerat_008','Usable','UNDEFINED','ec18891a-8d88-44a3-9c74-498e2dad4507','','',NULL), -('5819','350r Ship Armor','Armor','Medium','5110aca5-8e11-43c1-9ad1-cda9c8171214','','',NULL), -('5820','Caudillo Helmet Steel','Armor','Helmet','1d0a8f9b-263b-4982-82ee-c4ef2502ae49','','',NULL), -('5821','Year of the Rat Envelope','Misc','UNDEFINED','82f3ff55-a11a-4047-bf0a-5e21c261f7e4','','',NULL), -('5822','ORIG_890J_Dashboard_Pilot','SeatDashboard','UNDEFINED','53c4468b-794b-4e35-a7b4-14103206cf0f','','',NULL), -('5823','AEGS_Retaliator_Pilot_Dashboard','SeatDashboard','UNDEFINED','d3a2c04d-853a-4da7-a94a-a48dfe93a9e7','','',NULL), -('5824','table_dining_1_a_2_Seat','Usable','UNDEFINED','2a20a7e7-c8ce-4622-87e4-b942a6cf1450','','',NULL), -('5825','Lastaprene','Cargo','Cargo','616ae8b4-3adc-4339-aa5c-08aba015adf3','','',NULL), -('5826','ARGO_SRV_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','80708b53-3de7-4f51-a6ca-369dd5f75a20','','',NULL), -('5827','Odyssey II Undersuit Yellow/Black','Armor','Undersuit','80707607-69f8-43e4-856f-a6ab7904d53e','','',NULL), -('5828','VNCL_Stinger_Thruster_Aux_Fixed_02','ManneuverThruster','FixedThruster','d384574b-5be7-4b7e-a595-035a95a7f20d','','',NULL), -('5829','Carryable_1H_CY_utensil_spoon_1_a','Misc','UNDEFINED','7c8bf02a-8228-49b6-88f1-43bb3f19016e','','',NULL), -('5830','Brandt Module','MiningModifier','Gun','18a62ae8-e1aa-453f-8631-df928a71abda','','',NULL), -('5831','ORIG_400i_Thruster_Retro','ManneuverThruster','Retro','b2a32d6a-5935-4656-8284-7573990e7549','','',NULL), -('5832','DRAK_Vulture_Component_Scanner','Player','UNDEFINED','02843c56-e7fc-4460-868d-c0a8ce3cd367','','',NULL), -('5833','ESPR_Prowler_Thruster_Mav_Up','ManneuverThruster','UNDEFINED','6bc7bafa-d791-462a-b1d4-e8dca2fb957f','','',NULL), -('5834','Eclipse Ambush Camo Livery','Paints','UNDEFINED','eb826dee-a085-481d-9498-24d1e94aa8b8','','',NULL), -('5835','ARGO_RAFT_Thruster_Retro_Right','MainThruster','FixedThruster','96460f4a-160f-46cd-bc9c-f93ffd5df6a7','','',NULL), -('5836','Grav Lev 1','ManneuverThruster','JointThruster','96a57db1-1133-4192-846f-d48a7cd02aa5','','',NULL), -('5837','Morozov-SH Helmet Spite','Armor','Helmet','199a5d5f-b575-4863-bfca-ff99bae68675','','',NULL), -('5838','Locker_Suit_DRAK_Corsair_Thin','Usable','UNDEFINED','f83d262b-c340-417b-9a04-d55bb442e454','','',NULL), -('5839','Ventra Gloves Red','Char_Clothing_Hands','UNDEFINED','eb0b6443-b5e7-4a8b-95d1-b1b7d96f472d','','',NULL), -('5840','DoorProximitySensorItem_Ht_Airlock','Sensor','DoorPart','1deb3106-b423-464c-b612-9a63f7b59486','','',NULL), -('5841','GATS_BallisticCannon_FiringMechanism_S1','WeaponAttachment','FiringMechanism','a581bbbb-0b5a-4435-ad0a-96fb3d8c48e1','','',NULL), -('5842','Remote Turret','Turret','GunTurret','776455b6-bf38-4418-a20c-5913f7539267','','',NULL), -('5843','Deo Shirt Grey','Char_Clothing_Torso_0','UNDEFINED','9d6244fc-eca0-4a07-959b-08802ad88dde','','',NULL), -('5844','StorageCage_Time_ZeroG_CustomLoadout','Cargo','UNDEFINED','d375a898-51e0-427c-bf06-481fb9e4a895','','',NULL), -('5845','Mahoney Nurse Scrub Pants Honeycomb','Char_Clothing_Legs','UNDEFINED','5678c25a-cb19-4075-9b46-f9620a34668a','','',NULL), -('5846','Testudo Backpack Nightveil','Armor','Backpack','a22612b1-4479-43fb-9bfb-7c054a0f1de1','','',NULL), -('5847','display_box_plastic_4_weapon_opened_005x010x00375_a_2Ports','ShopDisplay','UNDEFINED','7e564ae0-ea39-4f55-910b-d18ec4a587d0','','',NULL), -('5848','screen_4x3_trejo_tablet','Display','UNDEFINED','ce3a8d99-3454-4cc8-8ce6-ee6bd4ed8317','','',NULL), -('5849','Seat','Usable','UNDEFINED','6f395568-52e5-4d23-9f87-246eeff9578a','','',NULL), -('5850','cbd_main_hall_display_case_S6','ShopDisplay','Default','2c59aa60-d46b-47ec-9c0a-b5d32d2d00ce','','',NULL), -('5851','BEHR_LaserCannon_Barrel_S7','WeaponAttachment','Barrel','4da47d9a-05cc-4108-9bfa-91fb40d90304','','',NULL), -('5852','Morningstar Helmet Ignitor','Armor','Helmet','22dc0bfb-aca0-4d71-9ae2-3baf2251fa21','','',NULL), -('5853','Seat','Usable','UNDEFINED','3193fe5d-227d-4c4b-a3c0-ad90efa1c4c9','','',NULL), -('5854','Parvat Jacket Summer Cedar','Char_Clothing_Torso_1','UNDEFINED','c005c021-af84-4e63-a29f-f45d0869398f','','',NULL), -('5855','Furtimo Pants','Char_Clothing_Legs','UNDEFINED','57787f1a-4989-4ec1-8a6a-99c70dec9574','','',NULL), -('5856','mobyGlass Personal Computers','Cargo','Cargo','097254c3-85ff-4a93-a8b8-ebbc7542c5d7','','',NULL), -('5857','DRAK_Cutlass_Thruster_Maneuver_Top','ManneuverThruster','JointThruster','3db64b54-b710-4597-b382-7b610a330fd8','','',NULL), -('5858','Overlord Core Riptide','Armor','Torso','ab581449-f467-4d31-bf7d-1495db0c1b6b','','',NULL), -('5859','Intrepid-OS','Suit','ThrusterPack','adf15484-152d-4557-8b0e-46a34030b250','','',NULL), -('5860','AEGS_Retaliator_Esc_Pod_Decal_03','Decal','DoorPart','aec20eee-3191-4dac-99e2-f5cdd5cdc520','','',NULL), -('5861','Mustang Vindicator Livery','Paints','UNDEFINED','79b17dd6-638d-4c78-8bc3-d3092b994885','','',NULL), -('5862','ThermoWeave Coat ASD Edition','Char_Clothing_Torso_1','UNDEFINED','7b1bfb5c-a26c-4244-b2af-4ba1dd243193','','',NULL), -('5863','Door','Door','UNDEFINED','6c00fe87-0e4f-412a-b632-78e7513c1483','','',NULL), -('5864','Internal Tank','FuelTank','Fuel','7301f1ac-ed2c-473a-8509-a0d8b2b1f126','','',NULL), -('5865','Pacifica Hat','Char_Clothing_Hat','UNDEFINED','feae9249-75e3-4b7f-9437-4596fd88c496','','',NULL), -('5866','Seat','SeatAccess','UNDEFINED','dc08814f-dbef-44a7-b8a6-11a6e209a6e0','','',NULL), -('5867','MISC_Starfarer_CargoGrid_Side','CargoGrid','UNDEFINED','c840d57e-449e-4cf6-b1dc-85e75297013a','','',NULL), -('5868','ANVL_Valkyrie_Thruster_Main_Aux','MainThruster','FixedThruster','5d53677e-67aa-4987-a673-dd96e1e1d7ac','','',NULL), -('5869','Radar_Display_Constellation','Display','UNDEFINED','7e671a29-8cd6-4a60-83c9-80d054d18d02','','',NULL), -('5870','Antium Core Midnight Sun','Armor','Torso','f78d7ac5-5e6d-43e1-9256-d30c0bb4a316','','',NULL), -('5871','ORIG_400i_Thruster_Main_Sub','MainThruster','FixedThruster','148c6921-bd29-4b2c-b2dd-c3e4594d5eea','','',NULL), -('5872','Screen','Usable','UNDEFINED','0ef77bd4-8e8e-495d-9c2e-d04253c8164d','','',NULL), -('5873','SHIELDS','ShieldController','UNDEFINED','b60cc31d-9b0d-44d4-98ad-d3f750388c44','','',NULL), -('5874','table_booth_4_seat_restaurant','Usable','UNDEFINED','1ec6d261-c9f2-48aa-927a-4a2e1dbe5a71','','',NULL), -('5875','display_components_pallet_125x125x025_coolers','ShopDisplay','UNDEFINED','72bfc75d-396f-4abe-8935-461b04e60f3c','','',NULL), -('5876','RSI_Apollo_Ground_Refueling_Port','Door','UNDEFINED','465515d4-7a4d-5780-622d-ed9e7ad7158d','','',NULL), -('5877','ORC-mkX Arms Iceborn','Armor','Arms','a6ec85a5-feba-4239-88e4-02e1a6e521e1','','',NULL), -('5878','Venture Legs White','Armor','Legs','8fa06ec9-953c-4de4-8038-abf5b332f7b5','','',NULL), -('5879','SHIELDS','ShieldController','UNDEFINED','6f0f3f85-3809-48cb-96a7-28dbf99c4475','','',NULL), -('5880','SureGrip PR-S1 Tractor Beam','TractorBeam','UNDEFINED','a82e22e4-504d-4ade-a625-f421e6e9a220','','',NULL), -('5881','MISC_Freelancer_CargoGrid_Rear_MAX','CargoGrid','UNDEFINED','d23d70d1-a2e2-46d4-a9b6-088cbf94b173','','',NULL), -('5882','Door Control','Door','UNDEFINED','4ffcd883-b34f-4a3a-bd31-f3e9719e9c39','','',NULL), -('5883','Strata Arms Heatwave','Armor','Arms','9159d31d-b3ad-418d-9503-0093c440ac1f','','',NULL), -('5884','Deo Shirt (Modified)','Char_Clothing_Torso_0','UNDEFINED','6ce8e19a-645a-4314-8537-6e36aeea7222','','',NULL), -('5885','Landlite Boots Black','Char_Clothing_Feet','UNDEFINED','0bae913d-8a94-4f3f-8c37-1f2ccd1a874c','','',NULL), -('5886','un_bottle_alcohol_24_decanter_a','Misc','UNDEFINED','d9fd3b69-49c5-49ce-b4a4-a691b21a0e18','','',NULL), -('5887','Prism \"Disrupt Camo\" Laser Shotgun','Weapon','Medium','d6ebfa6f-082c-46a3-bb3a-3afeed9f94a3','','',NULL), -('5888','Morningstar Helmet Black','Armor','Helmet','59db00e0-8dfa-41f4-a3ea-d9b58c459780','','',NULL), -('5889','Vehicle_Screen_MFD_Holographic_MISC_Prospector_LL','Display','UNDEFINED','67bd042b-d61a-441f-ac30-dd63a1f6e8f3','','',NULL), -('5890','FieldLite Flashlight Yellow','WeaponAttachment','BottomAttachment','1d6b428a-33a8-4074-bd41-fbc6a16c72d1','','',NULL), -('5891','RSI_Bengal_SCItem_Seat_CoPilot','Seat','UNDEFINED','429862b6-e1b3-4868-8bb5-e781506c7912','','',NULL), -('5892','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','aa6b28f3-be84-4e2f-bd03-7ad51b9cd204','','',NULL), -('5893','Carrack Miniature','Misc','UNDEFINED','0807d0fb-0fb1-4b2c-8927-4d3638ec32dd','','',NULL), -('5894','PH - hdh_pants_02_01_02','Char_Clothing_Legs','UNDEFINED','b7e32efd-d7b8-485f-9309-90c1d2fa0293','','',NULL), -('5895','Radar_Display_ORIG_890','Display','UNDEFINED','6f14dcef-8063-4a00-b3fa-6f488a520baf','','',NULL), -('5896','Aurora Mk I MR Ship Armor','Armor','Medium','26c1d2ac-8830-4171-a46b-44991748ddef','','',NULL), -('5897','Flight Blade','FlightController','UNDEFINED','13f858eb-aea1-4f51-8670-be6682d08770','','',NULL), -('5898','BEHR_BallisticGatling_Barrel_S7','WeaponAttachment','Barrel','d38823dd-9f28-40a1-a40b-9d10e9aec835','','',NULL), -('5899','Railing_Straight_3m_Hurston_Lorville_Glass_A','Usable','UNDEFINED','8bce5029-d101-49ae-9051-5d9a2a2b9a29','','',NULL), -('5900','Bexalite','Cargo','Cargo','290048c7-1a35-4156-97e1-73d0f8a29257','','',NULL), -('5901','Tin','Cargo','Cargo','300172b7-fb5c-4251-9b72-4d4539f46cc7','','',NULL), -('5902','Mahoney Nurse Scrub Top Primrose','Char_Clothing_Torso_1','UNDEFINED','cc820abe-5826-49a7-83e0-4d6fbfe79f3e','','',NULL), -('5903','Door Control','Door','UNDEFINED','e1d601e6-d4e3-4c99-8c52-6b217850cf49','','',NULL), -('5904','RSI_Zeus_Wing_Right_Cargo','AttachedPart','UNDEFINED','ed670369-6d5e-4e4a-8817-d9290c6c0e3e','','',NULL), -('5905','Seat','Usable','UNDEFINED','a1312aa3-8f26-4122-aaae-21cdb22344fa','','',NULL), -('5906','Seat','SeatAccess','UNDEFINED','a65fdbf8-bb5f-482b-8a66-396c05fafe51','','',NULL), -('5907','Venture Helmet Orange','Armor','Helmet','98a596a5-b8d2-4664-911b-06c38715b8cb','','',NULL), -('5908','One Light Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','486d2684-a5f6-4146-bf6c-e72876f08ff7','','',NULL), -('5909','OMNI-CFS-Diamond Flight Suit','Armor','Undersuit','924f5657-b59d-49fd-8897-a8588c114db5','','',NULL), -('5910','AEGS_Sabre_Raven_Thruster_Mav_Joint_03','ManneuverThruster','JointThruster','d854a2ad-c564-45ea-aa59-eee066596807','','',NULL), -('5911','facial_hair_011','Char_Head_Beard','UNDEFINED','59bb4f34-dd05-4f40-93f9-0161642598e0','','',NULL), -('5912','Cyclone Frostbite Camo Livery','Paints','UNDEFINED','09dcd495-0d4a-4ab3-bebd-d8d5d3131e49','','',NULL), -('5913','AEGS_Sabre_Raven_Thruster_Retro','ManneuverThruster','FixedThruster','554bacc8-e6cf-4aea-9a4d-304992591a92','','',NULL), -('5914','Missile Rack','MissileLauncher','MissileRack','79a98595-7c79-4438-8216-0802043b4d34','','',NULL), -('5915','display_components_pallet_250x125x025_c_cooler','ShopDisplay','UNDEFINED','e01cdc63-8ebc-492e-997b-4498f1919ce6','','',NULL), -('5916','UrbEx Boots Emerald','Char_Clothing_Feet','UNDEFINED','35630f33-308d-42f2-8e2b-268759ad1166','','',NULL), -('5917','Personal Storage','Cargo','UNDEFINED','5db88e9a-5b14-4f10-bfd4-896a0201a810','','',NULL), -('5918','Salvation Salvage Head','SalvageHead','UNDEFINED','f11efdf3-d564-4122-be35-6d00be27ac9a','','',NULL), -('5919','FBL-8a Core (Modified)','Armor','Torso','2234981b-41bf-4b20-bceb-225fe99730f6','','',NULL), -('5920','mobiGlas Snow Casing','MobiGlas','Personal','9703b6d3-1437-433e-bf0a-cee6428c6d41','','',NULL), -('5921','Retaliator Twilight Livery','Paints','UNDEFINED','6e761c1f-327b-4a67-af6e-bff5d1eab70c','','',NULL), -('5922','Door Control','Door','UNDEFINED','701d08c7-9a4e-451c-a7f9-5bf6efeb6dfd','','',NULL), -('5923','ARGO_ATLS_IKTI_Shield_R','Misc','UNDEFINED','30423c72-12c4-4ce7-b9c1-dabc2ce1161b','','',NULL), -('5924','Cerrado Boots Slate','Char_Clothing_Feet','UNDEFINED','527556a2-b385-4a76-9996-e77cf86df5c6','','',NULL), -('5925','SnowBlind','Cooler','UNDEFINED','f50cc3fd-dd83-4aec-b74a-270428f22797','','',NULL), -('5926','Geist Armor Legs Whiteout','Armor','Legs','3234c6a8-4540-4e97-beb7-cfd1ddc6869d','','',NULL), -('5927','Waylite Shoes Gold','Char_Clothing_Feet','UNDEFINED','c3e0e250-cb52-4812-9c32-966532a005ed','','',NULL), -('5928','ORC-mkX Core Iceborn','Armor','Torso','ad233b20-771e-43d5-af37-ec6e80036eb6','','',NULL), -('5929','Pitambu','Cargo','Cargo','01dd3fba-9457-47c0-bca1-2d09b5eaa23c','','',NULL), -('5930','Seat','SeatAccess','UNDEFINED','dd40d856-e915-4894-9d30-a81e9b679228','','',NULL), -('5931','Strata Backpack Greycat Edition','Armor','Backpack','cad74bcb-b5aa-451c-ab1d-3732913b3ced','','',NULL), -('5932','Access','SeatAccess','UNDEFINED','b05d8e8a-9375-4111-9ede-ce423ba15e84','','',NULL), -('5933','Railing_Straight_4m_Hurston_Lorville_Glass_B','Usable','UNDEFINED','0b318540-2e27-4392-8f72-98d827841a63','','',NULL), -('5934','Carryable_1H_SQ_Datapad_Fluff_Orb_GenericGang','Misc','UNDEFINED','dcfea4ac-2567-4725-9b2a-82923c78b12a','','',NULL), -('5935','Bed','Usable','UNDEFINED','7391a402-6116-4706-8d7d-885ceafbc4d6','','',NULL), -('5936','Argo MPUV Ship Armor','Armor','Medium','2fe59ba6-4974-4696-8e85-d42e277e8e40','','',NULL), -('5937','DRAK_Golem_OX_CargoGrid_Main','CargoGrid','UNDEFINED','8bec7005-ff5a-45cb-b022-f71c44ccad0a','','',NULL), -('5938','Projector_HUD_Pilot_MOLE','Display','UNDEFINED','3c162077-81d9-41cb-bd3e-431706b8098a','','',NULL), -('5939','ANVL_Hurricane_Thruster_Main','MainThruster','FixedThruster','8a200cb9-8723-4a3c-99a6-ab1af087457e','','',NULL), -('5940','TRGT. STATUS','Seat','UNDEFINED','00692c3a-698b-4e94-8534-d6660558960d','','',NULL), -('5941','Weapon_Rack_1_BEHR_Shotgun_AmmoOnly_001','Usable','UNDEFINED','88aec69d-c4c8-4ae0-9bb9-64ec9bf5a6ab','','',NULL), -('5942','Aves Legs','Armor','Legs','74dd7626-27c8-4b4c-bda4-8192f251f4d5','','',NULL), -('5943','Medical Bed','Usable','UNDEFINED','687f889c-1657-4911-9716-cfae06907c5f','','',NULL), -('5944','Weapon_Rack_Cz_Firerat_003','Usable','UNDEFINED','1dfe35db-c9d4-4947-8515-9c42a076ae05','','',NULL), -('5945','MISC_Razor_Dashboard_LX','SeatDashboard','UNDEFINED','f416f3ad-b7f2-4f63-93f1-49546c1bb0a2','','',NULL), -('5946','MSD-322 Missile Rack','MissileLauncher','MissileRack','9756d84e-0ee1-4536-af14-68b439027ecb','','',NULL), -('5947','Manned Turret','TurretBase','MannedTurret','83d9206c-85b2-491c-b312-d31f6c634374','','',NULL), -('5948','Door Control','Door','UNDEFINED','25de405a-b5cb-4d99-a3f0-7734921a910f','','',NULL), -('5949','Cataby Backpack MPUV-1C Edition','Armor','Backpack','9f23e726-7e6c-4272-9f1a-0cb3b0998ac4','','',NULL), -('5950','Cataby Backpack Lifeforce Edition','Armor','Backpack','89211f2f-f43c-4764-8a48-474a43d92549','','',NULL), -('5951','TRGT. STATUS','Seat','UNDEFINED','495a2ccd-287a-42ee-af9d-20aec9666937','','',NULL), -('5952','MRCK_S02_ORIG_125a_Quad_S02','MissileLauncher','MissileRack','67996d31-5bf4-46df-a566-d845932b6953','','',NULL), -('5953','Railing_Straight_4m_LowTech_Util_Stairs_04x01_c','Usable','UNDEFINED','4d36dc99-8f9e-4c1c-8cac-ed536d9fcb11','','',NULL), -('5954','INTK_AEGS_Avenger_Titan','FuelIntake','Fuel','9fad851c-c561-44a8-8cbe-74ecd8c22969','','',NULL), -('5955','Fidele','Radar','MidRangeRadar','a212bfbf-a0d3-439e-86c9-c97078bd0720','','',NULL), -('5956','Overlord Helmet Mirador','Armor','Helmet','f6ea0e0f-c163-47ac-9af7-8b3422b86cc1','','',NULL), -('5957','RSI_Aurora_GS_CL_Thruster_Main','MainThruster','FixedThruster','384bae34-0c22-45f7-9778-ae6e23258175','','',NULL), -('5958','MISC_Hull_C_Dashboard_Captain','SeatDashboard','UNDEFINED','8650545c-580b-4a0b-aad9-ae48e3877bb4','','',NULL), -('5959','C8 Pisces Invictus Blue and Gold Livery','Paints','UNDEFINED','b39c1b3c-adee-47d1-abc5-100f6c1e309d','','',NULL), -('5960','Flight Blade','FlightController','UNDEFINED','4761018e-1c7a-4ae7-8db4-28807608d647','','',NULL), -('5961','Winter-Star','Cooler','UNDEFINED','ec636cbd-21c6-4b9c-a095-c8ef04f1a9fa','','',NULL), -('5962','ARMR_DRAK_Golem','Armor','Medium','dfd7e4cb-bd8d-4da1-9def-33e80694c237','','',NULL), -('5963','Prim Shoes Dark Green','Char_Clothing_Feet','UNDEFINED','cd1ecb82-8830-4a19-8a26-0e1361ebad79','','',NULL), -('5964','Smoltz Light (Bottle)','Drink','Bottle','0017de29-f080-4ae0-b2dc-e6dca13b287e','','',NULL), -('5965','Distilled Spirits','Cargo','Cargo','af9cbcc0-1583-476c-bd08-e81f7adc6d06','','',NULL), -('5966','S0 Helix','Mining','Gun','8c95c978-9e47-46ec-88e3-a0662c13d76a','','',NULL), -('5967','S-38 Magazine (20 cap)','WeaponAttachment','Magazine','8ec810e2-2d9e-4bbf-9b64-c603aaef01db','','',NULL), -('5968','Fizzz Muscat','Drink','Can','2553f95f-acd8-4372-9fca-30a2aea5a77c','','',NULL), -('5969','Remote Turret','Turret','GunTurret','cffe164c-f0ad-45f4-b3a1-324495b092a9','','',NULL), -('5970','LH86 \"Voyager\" Pistol','Weapon','Small','4d8d3254-5f17-46e5-a862-5669c442c6a3','','',NULL), -('5971','Maintenance_Workzone_Below','Usable','UNDEFINED','9c1b690d-906f-4dce-9b09-4b0d8079ab00','','',NULL), -('5972','RSI_Zeus_CargoGrid_Main','CargoGrid','UNDEFINED','ff8b37cf-1875-4e64-ae77-1760dec2d2e7','','',NULL), -('5973','Paint_Valkyrie_Procyon','Paints','UNDEFINED','1feb8489-5287-4f72-88a0-4d589ba2c3a9','','',NULL), -('5974','Razorback Pants Yellow','Char_Clothing_Legs','UNDEFINED','63adf032-98af-41fe-a4bd-34be9cc66a83','','',NULL), -('5975','test_gats_gattlings_s3','Weapon','Gun','c605b5b2-e1a7-4736-b3e7-01c79d2aff9c','','',NULL), -('5976','Feynmaline','Cargo','Cargo','e0acc152-438c-45d0-b34e-2965870b97e4','','',NULL), -('5977','counter_display_mod_end_0038x01x01_NoTopPorts','ShopDisplay','UNDEFINED','5bf2fe11-69b3-45ba-b9fb-51cb71cde728','','',NULL), -('5978','Carryable_1H_SQ_Datapad_Fluff_Orb_HathorGroup_006','Misc','UNDEFINED','19d8266b-b744-4046-9e36-85665b9a1abc','','',NULL), -('5979','Constellation ArcCorp Livery','Paints','UNDEFINED','78c15b15-709f-4822-94d6-0ae07e322469','','',NULL), -('5980','DockingTube_Fuel_Ports_DRAK_Dragonfly','DockingCollar','UNDEFINED','613c4590-9e11-45ea-927a-5a0569c5c5dd','','',NULL), -('5981','ORIG_350r_Thruster_Mav_Fixed_01_Bottom','ManneuverThruster','FixedThruster','14e16229-2ab7-41df-b968-e268b5851f52','','',NULL), -('5982','Seat','SeatAccess','UNDEFINED','8c637ee0-1dbd-4471-964a-07cf2836b0dc','','',NULL), -('5983','SHIELDS','ShieldController','UNDEFINED','d020ed57-024c-4425-88da-f9c93546fdb6','','',NULL), -('5984','Overlord Legs Mirador','Armor','Legs','40daf42d-cd29-48f0-a820-9720ac015c29','','',NULL), -('5985','ORIG_135c_Thruster_Retro_Left','ManneuverThruster','JointThruster','639d77d0-17f3-4850-aff8-e0dded594dad','','',NULL), -('5986','Tolo Jacket Crusader Edition Blue','Char_Clothing_Torso_1','UNDEFINED','0c3e3cd6-4376-4458-a653-55e9aaf9dfb0','','',NULL), -('5987','Mining Arm','ToolArm','UNDEFINED','4e5b552a-8023-4b59-8282-c27b58a4c2c6','','',NULL), -('5988','FSK-8 \"Bloodline\" Combat Knife ','Weapon','Knife','e1704491-defc-4b51-ac66-341f9a157767','','',NULL), -('5989','Waldron Pants Blue','Char_Clothing_Legs','UNDEFINED','2e70e815-a09e-44ea-b897-db2789acffd0','','',NULL), -('5990','SHIELDS','ShieldController','UNDEFINED','5b9f65a0-af4e-406d-982a-4b55990fba8d','','',NULL), -('5991','DockingTube_Fuel_Ports_ORIG_890Jump','DockingCollar','UNDEFINED','e5d7a11b-9732-4ca2-b1eb-470a717fbfd9','','',NULL), -('5992','Seat','Usable','UNDEFINED','2b4b1b1e-2bfc-42a2-823f-0e2f2c4d301d','','',NULL), -('5993','fruit_tray_2_e','Misc','UNDEFINED','c8430ab7-1a1f-4adb-9ca7-4a0c6eb7a09a','','',NULL), -('5994','Glacosite','Cargo','Cargo','733e63a4-ff22-4a68-9f70-2575faaa1036','','',NULL), -('5995','ARGO_MOTH_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','068fd711-bf7c-4ee4-a799-110a6999c547','','',NULL), -('5996','Remote Turret','Turret','GunTurret','521057c1-159e-400d-be3b-a0f7230d4549','','',NULL), -('5997','Seat','Usable','UNDEFINED','71caa84d-72f6-4e47-8108-dac440a210b4','','',NULL), -('5998','Veggie Dog','Food','Junk','63817eec-15df-4121-9e62-011e8efcc7c5','','',NULL), -('5999','Guardian Peninsula Livery','Paints','UNDEFINED','5149f401-4438-4674-b7a5-46647bfe4edf','','',NULL), -('6000','Calico Helmet Desert','Armor','Helmet','179656e2-e05b-4c16-b85a-50b4f6dc086e','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('6001','Gladius Standard Flight Blade','FlightController','UNDEFINED','bcb3fcff-6502-4adf-b77d-4b2be3e32571','','',NULL), -('6002','Ready-Up Helmet Seagreen','Char_Clothing_Hat','UNDEFINED','87b78a62-4849-4ede-8109-7293f24af823','','',NULL), -('6003','Grav Lev 1','MainThruster','UNDEFINED','a5b7fc97-3a3a-45c4-ab61-fbe88fa91a43','','',NULL), -('6004','Seat','SeatAccess','UNDEFINED','c22b41d8-62b1-4b92-8d26-d0385c85ee7f','','',NULL), -('6005','SECURITY','DoorController','UNDEFINED','4a9ebf31-a405-4b68-9886-b4a47bd1b61d','','',NULL), -('6006','Aril Helmet Hazard','Armor','Helmet','a9305217-006d-4e46-833e-dff89c913b25','','',NULL), -('6007','Palatino Backpack Necropolis','Armor','Backpack','2821c4a9-6eb5-4cde-91e3-e2d862bb419a','','',NULL), -('6008','Seat','Usable','UNDEFINED','138db334-8468-4d61-9294-984170538408','','',NULL), -('6009','Fluorine','Cargo','Cargo','f6fee092-8598-48a4-a1fc-e13bc0f9724f','','',NULL), -('6010','KLWE_MassDriver_Ventilation_S2','WeaponAttachment','Ventilation','25bb3dd1-1455-4e05-a2d8-628ecfff21dd','','',NULL), -('6011','Door Control','Door','UNDEFINED','718a1c3a-3987-4c1c-950a-b43239f0609f','','',NULL), -('6012','Stuck at Olisar T-Shirt','Char_Clothing_Torso_0','UNDEFINED','50c96e42-c3e0-43ad-912f-5b0dbed65fab','','',NULL), -('6013','DoorProximitySensor_1_5x2_5x1_5','Sensor','DoorPart','721910b9-83e0-4f6d-be55-71f379acd13f','','',NULL), -('6014','Door Control','ControlPanel','DoorPart','028101f8-a9b9-4ec5-8dc0-b732bc170cf3','','',NULL), -('6015','INTK_ARGO_MPUV','FuelIntake','Fuel','2e0a5325-8d81-4cad-8bbd-db96d6cc99e6','','',NULL), -('6016','Carryable_cleaning_sponge_4_a','Misc','UNDEFINED','a81cfe79-aab9-4052-97e9-401632e44afa','','',NULL), -('6017','Harlowe Shirt Green','Char_Clothing_Torso_0','UNDEFINED','fb1416ad-1c22-49be-a3e4-d419480fa389','','',NULL), -('6018','Razorback Pants Purple','Char_Clothing_Legs','UNDEFINED','ede951e2-8a67-49a5-ab04-8b001761629c','','',NULL), -('6019','Zeta-Prolanide','Cargo','Small','a5f201ce-1745-4049-9d06-493bf2336d7e','','',NULL), -('6020','Hull C Poster','Misc','Utility','96102348-e7a3-46e8-acb7-add6a6d81559','','',NULL), -('6021','shelf_hat_02x01x01_03Ports','ShopDisplay','Default','b7f92d4c-d8b0-4f13-b797-bc71b7f26e08','','',NULL), -('6022','AcryliPlex Composite','Cargo','Cargo','5cf15409-b36e-4e04-8545-fd25eec63ae0','','',NULL), -('6023','table_booth_2_seat_restaurant','Usable','UNDEFINED','5a652f80-9236-4c8c-9a44-ebaca700b67b','','',NULL), -('6024','Remote Turret','Turret','GunTurret','0a7f69a5-be49-4afb-9fd5-9177b541550e','','',NULL), -('6025','Internal Tank','FuelTank','Fuel','9ff5fca0-bee5-4891-810e-d73ed4651c91','','',NULL), -('6026','Door Control','Door','UNDEFINED','85a7504e-3b6f-4465-9fa8-5571136376a8','','',NULL), -('6027','Carryable_1H_SQ_literature_book_8_a','Misc','UNDEFINED','8bdf0812-936f-4508-9249-07d28be22c3a','','',NULL), -('6028','M6A Cannon','Weapon','Gun','52c1793e-5610-4daa-aafe-a8cf55e60283','','',NULL), -('6029','Aril Backpack Red Alert','Armor','Backpack','edee517a-f240-4037-ba34-ef840711b845','','',NULL), -('6030','Lillo Pants Violet','Char_Clothing_Legs','UNDEFINED','6a0556e6-ac1c-4f07-a7de-4ab83aca909e','','',NULL), -('6031','Defiance Helmet Desert','Armor','Helmet','ee2a6fca-ceb9-4b4b-80ab-560a1a1f4e8d','','',NULL), -('6032','Bed','Usable','UNDEFINED','035004eb-cb39-4023-bda1-dc5c6538854e','','',NULL), -('6033','AEGS_Door_Decal_Hangar_01','Decal','DoorPart','8b9229f0-ac7b-409a-9ddb-fba44c0896a8','','',NULL), -('6034','Food_Vent_Slug','Food','Consumable','56a77112-d4f1-4f60-9d5c-29dc825b2719','','',NULL), -('6035','Idris Nightbreak Livery','Paints','UNDEFINED','0483f65f-827c-48e0-81ec-cd326cb89d1a','','',NULL), -('6036','AEGS_Door_Decal_WallPanel_01','Decal','DoorPart','3e66d2e5-4f3a-4f69-8446-525197d4e776','','',NULL), -('6037','Lynx Core Black','Armor','Torso','40bf4581-9232-4f16-9c7e-e56caa885547','','',NULL), -('6038','LeMarque Pants Seagreen','Char_Clothing_Legs','UNDEFINED','55d4413e-35ce-412a-9904-6d6b7ed17c66','','',NULL), -('6039','Pite','Char_Head_Piercings','UNDEFINED','e80e6781-7bf6-4591-b38e-45e851462386','','',NULL), -('6040','Door Control','Door','UNDEFINED','b37e6a4c-b945-44aa-860a-c1a5d87a4b34','','',NULL), -('6041','Carryable_1H_CY_bottle_bar_07_tequila_a','Misc','UNDEFINED','546428f2-8a56-45c7-979e-18ff34010514','','',NULL), -('6042','sc_nvy_deckcrew_helmet_01_01_04','Char_Clothing_Hat','UNDEFINED','d15d7968-300d-4785-b8a5-587a95074140','','',NULL), -('6043','Gamma Duo (2x Holographic)','WeaponAttachment','IronSight','a9d588a7-1023-410e-a001-73a973700faa','','',NULL), -('6044','Scrap','Cargo','Cargo','4aa4a685-6ccd-48b6-9bce-8bc53838b0de','','',NULL), -('6045','DRAK_Mule_CargoGrid_Side','Cargo','UNDEFINED','6520ba21-ad14-4de1-a17c-0c916196fdda','','',NULL), -('6046','Palatino Core Mark I','Armor','Torso','1458af3d-cdbd-4ad0-862c-e2bc0de06958','','',NULL), -('6047','Landlite Boots Blue','Char_Clothing_Feet','UNDEFINED','20721828-1aa7-4f21-8caa-46d2f0809535','','',NULL), -('6048','Iron (Ore)','Cargo','Cargo','81a1dd3e-3bb6-4fd5-977d-a69e1ca24752','','',NULL), -('6049','Ouratite','Cargo','Cargo','7e084c2c-bdef-40e4-af4f-3308785a23bf','','',NULL), -('6050','IndVest Jacket Orange','Char_Clothing_Torso_1','UNDEFINED','98da5564-3626-4605-aa6e-b6156d052b14','','',NULL), -('6051','RSI_Polaris_Bridge_Pilot_RADR_Display','Display','UNDEFINED','94c1eb40-0414-409b-8e2c-f58c6aa08fee','','',NULL), -('6052','Ketchum Beanie White','Char_Clothing_Hat','UNDEFINED','eec3094a-3af5-4771-b969-ac6ff48ffb45','','',NULL), -('6053','Manned Turret','TurretBase','MannedTurret','b497e796-4633-4093-a53d-494bdd24ab53','','',NULL), -('6054','burrito_2_shop_1x9_a','ShopDisplay','Default','4c0e7941-5cb2-4700-a240-d7b8bf3cb035','','',NULL), -('6055','Stud','Char_Head_Piercings','UNDEFINED','23b00afd-d305-484c-b254-7a6211156d8c','','',NULL), -('6056','Remote Turret','Turret','GunTurret','86be150c-8c7f-47f8-9392-1026189d6003','','',NULL), -('6057','Francis the Stormwal Plushie','Misc','UNDEFINED','e14a6a2b-65b6-4cca-a08e-baacb9ac0f28','','',NULL), -('6058','Seat','Usable','UNDEFINED','7fcb8682-eaaf-4220-9b14-8ce222d5dd16','','',NULL), -('6059','Door Control','Door','UNDEFINED','cbd6d70a-90d9-4616-b715-0343a9698e2e','','',NULL), -('6060','Constellation Andromeda Ship Armor','Armor','Medium','430a8559-5969-4e7c-b630-cdf1bc77a82f','','',NULL), -('6061','Sabir','Gadget','Gadget','d539a485-4a68-4426-8678-2cff115e6051','','',NULL), -('6062','H_Dashboard_Projector_HUD_CNOU_Nomad','Display','UNDEFINED','186599e9-6efc-40b4-a31b-ec94a4b315be','','',NULL), -('6063','Flight Blade','FlightController','UNDEFINED','dde42ad0-3a0b-4032-bf3c-694bb88982c1','','',NULL), -('6064','XNAA_SanTokYai_SeatAccess_Nacelle_Left','SeatAccess','UNDEFINED','440c7115-680d-417b-b398-19463b2aa189','','',NULL), -('6065','AAT-34 Turret','Turret','MannedTurret','ca675af7-567d-4738-a2ab-ba9863aa3680','','',NULL), -('6066','CR-60','ExternalFuelTank','UNDEFINED','7dc3f399-6659-4d62-919d-be21c4990581','','',NULL), -('6067','Relay','Relay','UNDEFINED','fd9d74e7-8b0a-46d3-8d14-7bf7c5e93900','','',NULL), -('6068','Personal Storage','Cargo','UNDEFINED','b3b32627-6742-4e70-9c47-23e160b8056a','','',NULL), -('6069','Aurora Mk I LX Ship Armor','Armor','Medium','c523f087-c641-4470-970d-89346a987b80','','',NULL), -('6070','Palatino Core','Armor','Torso','cef54c0b-81d1-4ccb-a67f-f7304f198184','','',NULL), -('6071','RSI_Perseus_Thruster_Main_Top_Left','MainThruster','UNDEFINED','cd8a9943-e305-4255-a556-01e35d9118ed','','',NULL), -('6072','Seat','Usable','UNDEFINED','fe09a63d-67d4-4c6d-898b-6e6a1928384c','','',NULL), -('6073','Table_Desk_1_Seat_ConstantineHurston','Usable','UNDEFINED','38a5f50a-5b7f-47c1-8f96-051695be9270','','',NULL), -('6074','AEGS_Sabre_Firebird_Thruster_Retro_Left','ManneuverThruster','FixedThruster','5407ff36-9aa2-4cab-8ab3-3655de90348e','','',NULL), -('6075','Odyssey II Helmet Starcrossed','Armor','Helmet','006277f0-e535-469e-9784-6f4ac3ba89b1','','',NULL), -('6076','Internal Tank','FuelTank','Fuel','5535a6bb-9ee8-42de-a8dd-e63b093227bb','','',NULL), -('6077','DRAK_Cutlass_Red_Thruster_Maneuver_Left','ManneuverThruster','JointThruster','e6ef510e-7daa-488f-8532-eb1ec72c9b28','','',NULL), -('6078','Book','Misc','UNDEFINED','9aed5038-8a13-4121-88c8-daac1737beba','','',NULL), -('6079','Gladiator Best in Show 2955 Livery','Paints','UNDEFINED','bab78d5e-806b-4318-b540-be51b85749d5','','',NULL), -('6080','Uncut SLAM','Cargo','Cargo','58950ef8-7d2e-4173-83cb-8b23b1901f63','','',NULL), -('6081','Venture Arms Voyager','Armor','Arms','7c46e680-7c2d-4b55-9db8-3b0a65eb3eb4','','',NULL), -('6082','Carrack 2953 Auspicious Red Rooster Livery','Paints','UNDEFINED','d5ddce8b-c147-4eaa-83e6-e7684da3dbf6','','',NULL), -('6083','counter_display_mod_center_a_01x01x01_03Ports_HackingTools','ShopDisplay','UNDEFINED','c634d7be-2967-4507-b7a8-f1463df171e1','','',NULL), -('6084','MISC_Starfarer_SCItem_Seat_CoPilot','Seat','UNDEFINED','89b30f9e-2fae-4f4b-a6ea-59a5d3c819a5','','',NULL), -('6085','Door Control','DockingAnimator','UNDEFINED','6c3d1f45-2051-47bf-9d4c-30e103649af1','','',NULL), -('6086','Hardean Jacket and Shirt Croon','Char_Clothing_Torso_1','UNDEFINED','703499dc-c294-44b3-9f3d-c5c98b5ac566','','',NULL), -('6087','ADP Arms Seagreen','Armor','Arms','2fb6bcac-f717-4600-be64-b9590565c91c','','',NULL), -('6088','Box_100x050x050','Cargo','Small','1a9c6118-bc61-4b06-bd3e-eeb6d8edd50e','','',NULL), -('6089','RSI_Zeus_Collar_Cargo_L','AttachedPart','UNDEFINED','501637e7-5f9e-400e-b6a7-a062f1ddf451','','',NULL), -('6090','Door','Door','UNDEFINED','1755f48b-20ca-4c63-be2d-7bd4e6895a03','','',NULL), -('6091','display_components_pallet_250x125x025_a','ShopDisplay','UNDEFINED','39a4660f-9084-4230-acd2-c567879c8781','','',NULL), -('6092','Large Artifact Fragment (Pristine)','Misc','UNDEFINED','b3cc386a-6dc4-46fa-bc73-238a27d080f2','','',NULL), -('6093','DustUp Arms Firestarter','Armor','Arms','b3d88e1c-122e-4801-96fc-3ecb71cc06ff','','',NULL), -('6094','Ship Showdown \'52 Mercury Coin','Misc','Utility','d98891bc-537f-4f2b-a577-2ceacda730da','','',NULL), -('6095','facial_hair_052','Char_Head_Beard','UNDEFINED','49aea185-213d-4d62-9311-64a2d34d6e6b','','',NULL), -('6096','Radar_Display_Hawk','Display','UNDEFINED','1be59916-084a-4174-a1db-f000e3552890','','',NULL), -('6097','Internal Tank','QuantumFuelTank','QuantumFuel','2ae682c9-7877-4a15-b34a-ba564a42706f','','',NULL), -('6098','Amioshi Plague','Cargo','Cargo','2ca3e398-1632-4a2f-a43a-d49451935976','','',NULL), -('6099','Guerra Pants Finch','Char_Clothing_Legs','UNDEFINED','ac1063d5-1b00-4284-82e8-cedf64915eb1','','',NULL), -('6100','Seat','SeatAccess','UNDEFINED','3199e99a-faa6-401d-8f23-74808605f520','','',NULL), -('6101','Door Control','Door','UNDEFINED','fcc80ee4-6c63-4ef4-b9f5-3b8f4b3b50f4','','',NULL), -('6102','DoorProximitySensor_1_5x2_5x1_5_Directional_Proximity','Sensor','DoorPart','c543675d-3d18-4156-8190-2cb85022e7fb','','',NULL), -('6103','INTK_RSI_Aurora_Mk2','FuelIntake','Fuel','19014248-379a-4462-90f8-276f72b0d3cd','','',NULL), -('6104','MPUV-1T TSB Flight Blade','FlightController','UNDEFINED','66110a0d-a301-4b59-a368-aae72c67a9fa','','',NULL), -('6105','Seat','SeatAccess','UNDEFINED','95fdbfe1-ecc0-4cbe-8b0c-de36fa6377fb','','',NULL), -('6106','Geist Armor Core Rogue','Armor','Torso','911df062-bafa-43e0-9ddc-d8a4330a5df2','','',NULL), -('6107','Vehicle_Screen_MFD_Holographic_MISC_Fortune_RR','Display','UNDEFINED','6021ad39-0d6c-428a-a679-1e996de3447b','','',NULL), -('6108','Bed','Usable','UNDEFINED','c1150417-fbc1-4574-998a-d54692a3cf9f','','',NULL), -('6109','MISC_Freelancer_Base_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','310c4b61-0b5e-496e-99f3-aff1bdff5d54','','',NULL), -('6110','ANVL_F7_Mk2_NoseCap','Misc','UNDEFINED','10014564-8f8c-4d50-8f9d-5a24bb3fdf2f','','',NULL), -('6111','Cinch Scraper Module','SalvageModifier','UNDEFINED','089f7dc6-8ff1-415b-832d-7a96b92afdfc','','',NULL), -('6112','Seat','SeatAccess','UNDEFINED','0a6729dd-c7b0-4507-8fc8-f0b097d6b222','','',NULL), -('6113','Personal Storage','Cargo','UNDEFINED','7724ee89-90f9-4522-9dee-84044fc2096f','','',NULL), -('6114','Tin','Cargo','Cargo','bd2d0839-d3b7-4da8-8760-c9bc8cd8377d','','',NULL), -('6115','Aril Helmet Harvester','Armor','Helmet','f9376a41-f4a1-49ec-9863-dc7b3c427f79','','',NULL), -('6116','Overlord Helmet Supernova','Armor','Helmet','a173cc6f-4c6d-4f31-8ce7-67b9b6a0fe37','','',NULL), -('6117','Drake T-Shirt Yellow Logo','Char_Clothing_Torso_0','UNDEFINED','f965bfdf-024b-4099-ae79-67514ea963ed','','',NULL), -('6118','ORIG_600_CargoGrid_Main','CargoGrid','UNDEFINED','f3c9e1b7-9cbc-43f0-881b-a5c8e15d0ddd','','',NULL), -('6119','Internal Tank','QuantumFuelTank','QuantumFuel','23ca914c-f537-4dd6-a887-3c7a2cf9a1b5','','',NULL), -('6120','Idris Ironcore Livery','Paints','UNDEFINED','8da0c78f-9bf9-44a2-9e0d-c3b4902265eb','','',NULL), -('6121','Deo Shirt','Char_Clothing_Torso_0','UNDEFINED','a15ab92a-927e-4da8-b195-26880be50343','','',NULL), -('6122','Buccaneer Polar Livery','Paints','UNDEFINED','dccdf68c-4656-4c5e-a617-b9a0ba96542b','','',NULL), -('6123','Door_Ship_Sensor_Proximity_2x4x1_5','Sensor','DoorPart','5620b7f0-179e-4fd9-85ec-5dc5c18fe0e4','','',NULL), -('6124','MISC_Starlancer_TAC_Turret_Exterior','Misc','UNDEFINED','afff9093-6f29-4e0c-8865-e1a664831b83','','',NULL), -('6125','Internal Tank','QuantumFuelTank','QuantumFuel','39a499cb-50c6-4504-b236-941ffa6639c3','','',NULL), -('6126','Cutlass Foundation Fest Livery','Paints','UNDEFINED','dcb994c4-8372-4843-ba4c-5b91cac1f5d2','','',NULL), -('6127','Arbor MH2 Mining Laser','Mining','Gun','4435898e-a6cc-4f51-ab2a-805d0cf1a44a','','',NULL), -('6128','weapon_underbarrel_light_narrow_blue_01','WeaponAttachment','Light','69b9fbc3-d478-4622-9fc4-0970813f7065','','',NULL), -('6129','Strata Backpack Heatwave','Armor','Backpack','7524df82-4578-464b-a917-d3b6c31462f6','','',NULL), -('6130','ORC-mkX Arms Arctic','Armor','Arms','dbe0522a-da6c-481b-8060-0466c35087ce','','',NULL), -('6131','Carryable_1H_SQ_Datapad_Fluff_Orb_HathorGroup_004','Misc','UNDEFINED','5a3f780b-9970-44a4-a462-3fc63880c990','','',NULL), -('6132','Flight Blade','FlightController','UNDEFINED','4b9d2970-91e2-4106-a9db-31dbdeb97bd5','','',NULL), -('6133','MSD-543 Missile Rack','MissileLauncher','MissileRack','3099ec4d-a1f1-4413-b579-7dd0aecaa7e3','','',NULL), -('6134','Orbgn_None_Consumable_Keycard_Security','FPS_Consumable','Hacking','48e499a7-c72b-45d7-a63d-f03d58f82317','','',NULL), -('6135','Tungsten','Cargo','Small','71ee8b89-5a81-40c4-89db-03fdd9c5da5f','','',NULL), -('6136','DRAK_Caterpillar_SCItem_Dashboard_TractorBeam','SeatDashboard','UNDEFINED','97b1ce9a-456e-4dab-a85a-7467d96b43b5','','',NULL), -('6137','H_Dashboard_Projector_HUD_RSI_Polaris_S_R','Display','UNDEFINED','fc56b942-761f-4878-b2ca-02bb044bbe3e','','',NULL), -('6138','Construction Pieces','Cargo','Cargo','c1cca0ed-684d-4426-8d41-122ffd24b3a6','','',NULL), -('6139','Lux Flashlight','WeaponAttachment','BottomAttachment','01ad699f-cf07-4775-b363-75b915094740','','',NULL), -('6140','Table_Booth_4_Seat','Usable','UNDEFINED','1c7bc839-fa26-49cf-bafa-c5ef71ea6d17','','',NULL), -('6141','Flight Blade','FlightController','UNDEFINED','fd88d5c1-fed3-4694-9a1d-9b825e9c3c60','','',NULL), -('6142','Beryl','Cargo','Cargo','ec4adde2-d3cf-417c-9006-28a56b0b6b40','','',NULL), -('6143','Access','SeatAccess','UNDEFINED','48b98188-045c-47a5-b312-61d3e55e8fd7','','',NULL), -('6144','ANVL_Door_Decal_Carrack_Deck3','Decal','DoorPart','918dd128-dfc0-4784-9f5e-f0778be3b502','','',NULL), -('6145','SureGrip HV-S1 Tractor Beam','TractorBeam','UNDEFINED','355b26c5-a3b7-4c34-ad8b-d281473715e8','','',NULL), -('6146','Flight Blade','FlightController','UNDEFINED','d95ba0cf-e1c8-441e-a459-5d6a0fc0518d','','',NULL), -('6147','Weapon_Rack_1_NONE_Special_Ballistic_Common_001','Usable','UNDEFINED','46f420e3-9903-4eda-8f12-3ad046482241','','',NULL), -('6148','AEGS_Idris_CargoGrid_CargoRoom_Small','CargoGrid','UNDEFINED','78b89d80-30c0-4c94-93b2-1750a2957d20','','',NULL), -('6149','RSI_Aurora_Mk2_Thruster_Mav_Top','ManneuverThruster','UNDEFINED','a9405d40-1fd5-4182-a11b-b2ef913d8663','','',NULL), -('6150','AEGS_Vanguard_Harbinger_Thruster_Mav_Joint','ManneuverThruster','JointThruster','59d49f56-370a-4235-ab8f-bf4cdd749645','','',NULL), -('6151','Colonialism_Outpost_RN_Solar_Panel','Sensor','UNDEFINED','0b12a0a9-2454-4d31-97b5-a82b68d061a0','','',NULL), -('6152','ANVL_Carrack_CargoGrid_Mid','CargoGrid','UNDEFINED','0da0802f-931f-40d6-94b9-602a20e35ef3','','',NULL), -('6153','Medical Bed','Usable','UNDEFINED','201b94da-5f63-4136-996c-655c5dff7753','','',NULL), -('6154','Citadel-SE Core White','Armor','Torso','87ad4aac-4ab8-4a4d-a76e-91b785eb0026','','',NULL), -('6155','Hercules Starlifter Argent Livery','Paints','UNDEFINED','21884177-d340-454c-bab2-e4171da3eb18','','',NULL), -('6156','Polaris Bit','Misc','Harvestable','4b697f15-c1e2-4b35-9b79-6bff5db9021b','','',NULL), -('6157','Raw Ouratite','Cargo','Cargo','25da498c-5cbc-49e9-b351-c5db6bf588b9','E','',NULL), -('6158','INTK_CRUS_Starlifter','FuelIntake','Fuel','17fe546a-dd02-4157-84c1-4ed965be4ccf','','',NULL), -('6159','Waldron Pants White','Char_Clothing_Legs','UNDEFINED','75a2e15a-60c1-49cd-838e-de3cad6c2037','','',NULL), -('6160','Door Control','Door','UNDEFINED','cf79aca9-5edd-4831-8251-8d2bcf15196e','','',NULL), -('6161','Internal Tank','FuelTank','Fuel','d604401c-57cf-435e-85e6-06250bc753e8','','',NULL), -('6162','Bed','Usable','UNDEFINED','ca57a30e-0a49-4c16-8f21-9a1751c91895','','',NULL), -('6163','TRGT. STATUS','Seat','UNDEFINED','dcdbca05-4136-4001-bb37-3f5486bcbe56','','',NULL), -('6164','INTK_ANVL_Hornet_F7A_Mk2','FuelIntake','Fuel','8084aba8-124c-422b-87cd-5e30ac3bdfc6','','',NULL), -('6165','Davin Work Gloves Green','Char_Clothing_Hands','UNDEFINED','4c9243b7-c464-46a3-8b83-53d8ae6d9726','','',NULL), -('6166','Siebe Helmet Tidal Wave','Armor','Helmet','07ed2516-d212-41d0-8bad-0dadd8cfd507','','',NULL), -('6167','SHIELDS','ShieldController','UNDEFINED','c65cddd3-4717-4dc4-b446-5fa72bbcc2fd','','',NULL), -('6168','Door Control','ControlPanel','DoorPart','d94b90b3-ed19-47a9-875c-6002b535c34b','','',NULL), -('6169','Internal Tank','FuelTank','Fuel','144b87a7-db8c-4d48-82bb-053a1f28a654','','',NULL), -('6170','PH - hdh_boots_01_01_17','Char_Clothing_Feet','UNDEFINED','0194151e-e684-4948-851c-a62176211a94','','',NULL), -('6171','MISC_Hull_A_CargoPlate','CargoGrid','UNDEFINED','3f73dc4b-abc5-448b-a449-f02627697d4a','','',NULL), -('6172','Access','SeatAccess','UNDEFINED','b8c2ec18-d1c0-412e-890c-3b07db4fa092','','',NULL), -('6173','RSI_Apollo_EmergencyLights_Right','AttachedPart','UNDEFINED','28a2a89d-c8b6-474f-9b34-efdcba23d6ad','','',NULL), -('6174','KRIG_P72_Archimedes_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','0f4bbb82-e2ab-4ba3-baa1-2d88c811a102','','',NULL), -('6175','Bo-Go (Crawdad)','Food','Tin','cd647532-f57d-49ff-80d1-714feef1c9c1','','',NULL), -('6176','CRUS_Starlifter_Thruster_VTOL_Wing_Left','MainThruster','FixedThruster','54e70a9f-d27a-4951-9419-970cc76b92ed','','',NULL), -('6177','Detara Jacket','Char_Clothing_Torso_1','UNDEFINED','354a3fcd-1002-41ab-8989-1998577c6ae8','','',NULL), -('6178','XDL Monocular Rangefinder','Weapon','Gadget','08124949-6620-431c-96e3-65107e22dc9d','','',NULL), -('6179','rod_legs_02x01x04_05Ports','ShopDisplay','Default','2897200a-40a3-43a3-92d9-f0e46e9fd2b1','','',NULL), -('6180','ORC-mkV Legs Seagreen','Armor','Legs','a514dfdf-fe27-4921-87ef-81b47b49b844','','',NULL), -('6181','Zeus Crusader Livery','Paints','UNDEFINED','afea861e-01c3-433a-8f7a-56b655b05ffc','','',NULL), -('6182','Kino Shoes Green','Char_Clothing_Feet','UNDEFINED','f7ce4655-e424-45db-a948-156481ea2dcc','','',NULL), -('6183','Lynx Legs Twilight','Armor','Legs','976c0c1e-3724-4d2b-9192-7b27d7f2e6b0','','',NULL), -('6184','Pink QuikFlare','Weapon','Grenade','742670bd-0f9c-4209-a589-598bd9b27caf','','',NULL), -('6185','AmmoBox_GATS_BallisticGatling_Mounted_S1','AmmoBox','Magazine','7364eae7-deb4-46cf-b2db-0db7a5b7c21b','','',NULL), -('6186','Ridgewalker Boots','Char_Clothing_Feet','UNDEFINED','273750b1-9ce4-4116-8a65-399ac773e890','','',NULL), -('6187','INTK_CNOU_Mustang_Gamma','FuelIntake','Fuel','eb40218f-ad4c-4e02-b93b-aeb8ae461c35','','',NULL), -('6188','ARGO_ATLS_GEO_Backpack','Usable','UNDEFINED','3f53c75f-524e-4a33-bcc4-dfd2719800ad','','',NULL), -('6189','ANVL_F7CR_RearAntenna','Misc','UNDEFINED','045b1d87-9e12-4fc3-ad6d-b319856fc290','','',NULL), -('6190','Medical Bed','Usable','UNDEFINED','8c3eb41a-6498-4bb5-a6f1-2cf0c28a4db9','','',NULL), -('6191','Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','b3dfb441-7b8f-4ba4-835d-4ecd6b4a8e5b','','',NULL), -('6192','Carryable_1H_CY_weight_dumbbell_1_24kg_a','Misc','UNDEFINED','1daffa69-bb91-40e1-89f2-aa5b6438699f','','',NULL), -('6193','Inquisitor Legs Green','Armor','Legs','9b6d2a06-c408-4b25-a234-488523cd8d2b','','',NULL), -('6194','ORC-mkX Helmet (XenoThreat v2)','Armor','Helmet','91d4c4bd-d197-4da1-b570-27fc18e00dd7','','',NULL), -('6195','Medical Bed','Usable','UNDEFINED','dabc5f27-d95c-4625-97d7-351e1ff3cc7c','','',NULL), -('6196','Carryable_utensil_fork','Misc','UNDEFINED','70dec8c2-9679-4966-a2c7-3a6fae4084a6','','',NULL), -('6197','hooks_torso1_03x01x04_03Ports_LongAllowed','ShopDisplay','Default','9d428102-5a8e-4887-9ea0-fe11206397ff','','',NULL), -('6198','AEGS_Javelin_SCItem_Seat_Bridge_Left_RemoteTurret_Blocked','Seat','UNDEFINED','e7ea85e8-35fe-4b57-87e0-0bd1446260de','','',NULL), -('6199','Calico Legs Tactical','Armor','Legs','132f3822-b981-4b61-8358-02df0f7c1f4d','','',NULL), -('6200','AEGS_Retaliator_OC_Front_Bomber','Room','UNDEFINED','555db475-75d0-4048-b701-81b9a7fd98dc','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('6201','Spirit Ruby Livery','Paints','UNDEFINED','c7a87df1-5372-4060-a504-dccab04f987f','','',NULL), -('6202','Corbel Core Patina','Armor','Torso','3e9b3246-d5a8-415b-9857-6cc210efe871','','',NULL), -('6203','Aluminum','Cargo','Cargo','d1659021-b5b6-4846-a83f-dc051b9ce0c8','','',NULL), -('6204','CRUS_Starlifter_SCItem_Turret_Seat_Left','Seat','UNDEFINED','cb736ad2-32e2-432b-b431-9f2b299dc7b9','','',NULL), -('6205','display_gadgets_multitool_01','ShopDisplay','UNDEFINED','fa03840e-6b82-4b68-bc5a-f0f697c18f7e','','',NULL), -('6206','Flight Blade','FlightController','UNDEFINED','b75eb304-d1ee-499d-ba94-b6471b99a44c','','',NULL), -('6207','AAT-34 Turret','Turret','MannedTurret','1f7dbd2a-871e-42ff-907d-d4f3546c6f88','','',NULL), -('6208','Strife Mass Driver Cannon','Weapon','Gun','86630fcf-09c3-4def-a7b4-9385cbc05a42','','',NULL), -('6209','Citadel Core Dark Red','Armor','Torso','ab06c2dd-33bb-4f2a-a4c8-de991b501f16','','',NULL), -('6210','MSD-313 Missile Rack','BombLauncher','BombRack','4394a178-7e74-4943-9538-2139f65839fd','','',NULL), -('6211','ARMR_ESPR_Talon','Armor','Medium','e6fdaa19-7ec0-4e16-b2d9-3a5a4d6dfa9f','','',NULL), -('6212','TRGT. STATUS','Seat','UNDEFINED','d21c83dd-54bd-4f3d-b288-039022c85814','','',NULL), -('6213','Internal Tank','QuantumFuelTank','QuantumFuel','66116c07-3d01-409f-948c-ddd9559e16a7','','',NULL), -('6214','Venture Core Sienna','Armor','Torso','46d0dd26-bfc7-4a40-b7df-9eedcf8c431a','','',NULL), -('6215','StorageCage_Time_ZeroG_Empty','Cargo','UNDEFINED','ca2dbc8e-d49b-48fd-8ae9-3775602d4b9d','','',NULL), -('6216','Fluorine','Cargo','Cargo','3a2c0865-cbc7-4e5e-9f9a-16dc640ecd8d','','',NULL), -('6217','Vera Compensator1','WeaponAttachment','Barrel','e3d211f4-3381-4ba1-9807-f96c446866de','','',NULL), -('6218','Projector_HUD_Mining_MOLE','Display','UNDEFINED','ab30c1ab-0615-452e-9add-3cea34999611','','',NULL), -('6219','Bantam Hat TABA','Char_Clothing_Hat','UNDEFINED','767e592b-f750-43d9-ae17-2dda3395dcc6','','',NULL), -('6220','ANVL_Ballista_SCItem_Dashboard_Driver','SeatDashboard','UNDEFINED','251739b0-8bf7-4e87-86c2-e57ad3dd1bdb','','',NULL), -('6221','Adiva Jacket Red','Char_Clothing_Torso_1','UNDEFINED','03bb3f37-a122-4a1d-be72-11e799fbd221','','',NULL), -('6222','Steadfast','PowerPlant','Power','0ed88703-3183-48c8-95f1-eda2b5b4381a','','',NULL), -('6223','Citadel Arms Brimstone','Armor','Arms','e7801723-def0-41d3-b132-e43102590da3','','',NULL), -('6224','Origin 350r Racing Helmet','Armor','Helmet','ea133a3b-6e17-4eeb-be1c-a6da8a8b3b97','','',NULL), -('6225','Mahoney Nurse Scrub Top','Char_Clothing_Torso_1','UNDEFINED','562944d1-9e2e-49be-8a3c-aef4860c3ceb','','',NULL), -('6226','ANVL_Pisces_Thruster_Main_Left','MainThruster','FixedThruster','48f9fcb0-7b67-46e5-bd84-262ca4eb0c2e','','',NULL), -('6227','fruit_basket_1_shop_1x7_b','ShopDisplay','Default','827a5862-37b7-4fcc-b47d-04b7c56c4a6f','','',NULL), -('6228','Door Control','ControlPanel','DoorPart','a9e3c9bb-691d-422d-b75d-89ebad2e7b44','','',NULL), -('6229','Lightstrike III Cannon','Weapon','Gun','4e2b431e-916b-479b-9617-86e7e53a431a','','',NULL), -('6230','Seat','SeatAccess','UNDEFINED','bbefd7df-c528-4f3c-bd1c-6bf903020de9','','',NULL), -('6231','TRGT. STATUS','Seat','UNDEFINED','002a4bf9-2aea-4d70-ac1c-d0d69ab6d17f','','',NULL), -('6232','Kelvid','Cooler','UNDEFINED','c9eecfff-8ab2-4cd1-b7f8-1ea6aa86fd5a','','',NULL), -('6233','SNS-R7x','Radar','MidRangeRadar','01d37caa-d580-4443-b3bd-c1f856ec5bf6','','',NULL), -('6234','MISC_Hull_C_FoldingStrut_2C','Cargo','UNDEFINED','87c4c397-bd47-4af4-a630-39730ed7ce44','','',NULL), -('6235','Cumulus Jacket Gray','Char_Clothing_Torso_1','UNDEFINED','04898f0d-030c-42de-878c-0e36d79dc8ef','','',NULL), -('6236','ARMR_GRIN_MTC','Armor','Medium','dc878cca-7e93-4530-9f71-aeed4a13ffb8','','',NULL), -('6237','Carryable_TBO_FL_4SCU_Commodity_Organic_Armillaria','Cargo','Cargo','52197228-505d-4bb2-a41f-ff431d04ea25','','',NULL), -('6238','MedGel','Cargo','Cargo','24160bf1-cddf-4b3c-aa75-64bdf4fb91c6','','',NULL), -('6239','AEGS_Retaliator_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','4136693a-5d85-4b32-a8d7-a6470ca48eaa','','',NULL), -('6240','Crusader Black Knight','Misc','UNDEFINED','d8addd7a-0920-4030-89a5-6e1a7a366a93','','',NULL), -('6241','ADP Legs Hurston Edition','Armor','Legs','daa51c80-7720-4ece-8de3-598cdc8929d1','','',NULL), -('6242','Nyman Jacket White','Char_Clothing_Torso_1','UNDEFINED','c3880dcd-c3ec-4973-a3d6-edb923485c0a','','',NULL), -('6243','Container','Misc','Personal','eda18cee-b767-49f0-878d-d3ac23e9e828','','',NULL), -('6244','Plastic Cup','Drink','UNDEFINED','b5946f70-40de-4905-952b-3d7d318ce1e4','','',NULL), -('6245','Fury Templar Livery','Paints','UNDEFINED','c9bcee5c-ba5b-4597-9911-0c826528be70','','',NULL), -('6246','Chamar Pants','Char_Clothing_Legs','UNDEFINED','8ebd7671-bd35-49a2-a914-e6e68c2e6431','','',NULL), -('6247','Weapon Rack','Usable','UNDEFINED','0f9d89f2-6ea2-4192-86ab-e2b4bcd8e584','','',NULL), -('6248','Strata Helmet microTech Edition','Armor','Helmet','e83f76c3-fee6-4599-bad7-ec27673ceb2a','','',NULL), -('6249','counter_display_mod_end_b_0038x01x01_NoTopPorts','ShopDisplay','UNDEFINED','a92e6fb8-a072-44f9-9a8e-0e4fabef3542','','',NULL), -('6250','ASD Hat','Char_Clothing_Hat','UNDEFINED','29c5b17a-07f4-49a9-bb4a-a2fab66c609d','','',NULL), -('6251','DRAK_Buccaneer_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','a18a049c-8659-4d73-873b-b0d8831dea5c','','',NULL), -('6252','Heart of the Woods','Cargo','Cargo','cb1c1afb-1b0a-4c08-9329-e462731ce6e6','','',NULL), -('6253','Shipment','Misc','UNDEFINED','99c233cc-cc12-4f58-8939-0334483c82f1','','',NULL), -('6254','AEGS_Reclaimer_Remote_Turret_Console_2','Seat','UNDEFINED','a4587907-b2fa-4451-bb9a-8b6f5805a700','','',NULL), -('6255','Door','Door','UNDEFINED','a1120f82-3a03-4ea8-ac74-a27ad5d9b47e','','',NULL), -('6256','Gallant Rifle Battery (45 cap)','WeaponAttachment','Magazine','0988e9ce-5f5d-4eb8-83a7-dc70f187579d','','',NULL), -('6257','MSD-543 Missile Rack','MissileLauncher','MissileRack','c42fa96d-f619-4270-842c-28dbc7173131','','',NULL), -('6258','MRAI_Guardian_Thruster_Main_Right','MainThruster','JointThruster','dd24b908-f2e2-49a1-87b7-3c9ccd8b49be','','',NULL), -('6259','Seat','Usable','UNDEFINED','c9e57f58-3356-4fc6-8e1b-93e77326eee8','','',NULL), -('6260','Seat','Usable','UNDEFINED','3f3ccf4a-aae2-4665-9d96-4e608d3d4bf3','','',NULL), -('6261','Palatino Legs','Armor','Legs','987c74f3-73bc-40fa-b3ba-71fc6379321d','','',NULL), -('6262','Cutlass Elysium Livery','Paints','UNDEFINED','bad25221-01dd-41bb-81d9-655288a17859','','',NULL), -('6263','Torpid Module','MiningModifier','Gun','47ba04b0-010b-47cd-9f7d-209e2ec190b9','','',NULL), -('6264','MacFlex Arms Seagreen','Armor','Arms','d045b2f1-b86a-46c9-a385-1eb0f3426b76','','',NULL), -('6265','Silicon','Cargo','Cargo','0683036e-3dd4-40a4-ab8b-1f1f544a8ab0','','',NULL), -('6266','Aril Legs Quicksilver','Armor','Legs','633ee9c9-44d2-4f41-a2d2-2a6d2ba74fe0','','',NULL), -('6267','Seat','SeatAccess','UNDEFINED','a64b154b-0029-44f9-b883-814c8515d326','','',NULL), -('6268','Caret Pants Light Grey','Char_Clothing_Legs','UNDEFINED','4d8e26b3-c838-4b7c-9c80-f458558e6c61','','',NULL), -('6269','Carryable_2H_CU_universal_metal_crate_a','Misc','UNDEFINED','ba674318-2787-4694-8722-aa307144a50a','','',NULL), -('6270','Internal Tank','FuelTank','Fuel','47a979af-9553-42bd-97be-5d4d25700223','','',NULL), -('6271','display_item_noGeo_01Port_Shoes','ShopDisplay','UNDEFINED','d7f32133-3674-42a2-b6ab-c8356f99b94e','','',NULL), -('6272','S71 \"Ascension\" Rifle','Weapon','Medium','dddca60b-e7af-4a5f-bbe4-55c2b298fb63','','',NULL), -('6273','Thunderball Bomb','Bomb','Utility','3c3f79ae-acb2-4472-a08d-2ddb1afcc700','','',NULL), -('6274','HRST_LaserScatterGun_Barrel_S1','WeaponAttachment','Barrel','c8cbdd9b-10e7-4e7d-8ce7-aa1041955666','','',NULL), -('6275','display_wall_end_centermass_3port_IP_dir_right','ShopDisplay','Default','b356b603-94a5-4fba-92af-33bd8028c8ad','','',NULL), -('6276','ANVL_Terrapin_RampLight','Misc','UNDEFINED','9bc742c2-6e6d-44e2-875f-f89c7294f893','','',NULL), -('6277','Palatino Legs Mark I','Armor','Legs','fe1f3199-6680-4929-b511-7a85dc73437f','','',NULL), -('6278','Station','SeatAccess','UNDEFINED','3a8db59c-4009-4c49-a83c-4004f2bbbbde','','',NULL), -('6279','Aztalan Helmet','Armor','Helmet','bccb4451-aee1-49a2-8262-87a58d372f19','','',NULL), -('6280','Tevarin War Service Marker (Pristine)','Misc','Trophy','523efc7f-9038-4531-95ea-9719308ae63b','','',NULL), -('6281','Carryable_1H_CY_drug_painkillers_1_c','Misc','UNDEFINED','0b0af7fe-2f7f-46bf-b185-86da3867a074','','',NULL), -('6282','LifeGuard Medical Attachment','WeaponAttachment','Utility','5c19c75e-fe9c-438b-862a-3639cf187763','','',NULL), -('6283','orig_bedding_duvet_4_g','Seat','UNDEFINED','03e90086-80f2-4606-a338-ae1c239a442e','','',NULL), -('6284','Bracewell Boots Grey','Char_Clothing_Feet','UNDEFINED','fcd84a03-dfc3-4bc7-b5b5-d137ba9c1285','','',NULL), -('6285','LH86 \"Righteous\" Pistol','Weapon','Small','94af6f9e-7642-41f4-96ad-cf29b34f4794','','',NULL), -('6286','Syulen Ch.iing Livery','Paints','UNDEFINED','758cb316-8138-49cd-86ef-9621cb13e507','','',NULL), -('6287','Sol-III Core Bombardier','Armor','Torso','ef0299fd-d85e-470e-a38a-e7c4f3f8da68','','',NULL), -('6288','IAE 2953 Hat Purple','Char_Clothing_Hat','UNDEFINED','46f648b2-d6a2-4c9c-82a4-9dd1ee5f516b','','',NULL), -('6289','BEHR_LaserCannon_SF7E_FiringMechanism_S7','WeaponAttachment','FiringMechanism','6418c288-bbb5-4688-bb91-d6764c8c55ef','','',NULL), -('6290','ORC-mkV Core White','Armor','Torso','cb27c023-fb27-4bd6-b799-8fb6deb8b4cd','','',NULL), -('6291','INTK_ANVL_Hurricane','FuelIntake','Fuel','4510de80-243e-4da1-a359-98cbd26ba03e','','',NULL), -('6292','MISC_Hull_C_DockingTube','DockingCollar','UNDEFINED','6e6f3001-f5d9-4ff2-a7f0-a1a7da1909cb','','',NULL), -('6293','RN-7s','DockingCollar','UNDEFINED','8b1915bf-22ce-473d-9c1d-727423d59c0e','','',NULL), -('6294','Carryable_2H_Vent_Floor','Misc','UNDEFINED','37d8d43c-2c50-43dd-964a-a2bc01026b5f','','',NULL), -('6295','Seat','SeatAccess','UNDEFINED','1fab0e07-6039-497d-ac58-94d950d4f35b','','',NULL), -('6296','DRAK_Cutlass_Red_Thruster_Maneuver_Top','ManneuverThruster','JointThruster','238053ef-8119-4573-a273-a554f7dd1970','','',NULL), -('6297','Seat','SeatAccess','UNDEFINED','e2415669-f3ce-45f7-a4f2-c5217677718d','','',NULL), -('6298','Touchstone (8x Monitor)','WeaponAttachment','IronSight','c75282e6-8b92-4398-ac27-bd6f56d627b2','','',NULL), -('6299','Riccite','Cargo','Cargo','76c8da22-7b1b-4efd-8474-a110f3ed6dc4','','',NULL), -('6300','MITE_Simpod','Usable','UNDEFINED','416bb319-cf28-44fa-aa8e-fde32bb93efa','','',NULL), -('6301','Flight Blade','FlightController','UNDEFINED','6c5e6aae-0357-42ae-95d2-027609962ead','','',NULL), -('6302','KRIG_l21_Wolf_Thruster_Mav_Capsule_Bottom','ManneuverThruster','UNDEFINED','297b4cfb-f996-4c6f-9b5c-33fd2ba25b62','','',NULL), -('6303','11-Series Broadsword Cannon','Weapon','Gun','f03daac4-28e2-405c-b226-c258151cb9f1','','',NULL), -('6304','Artimex Arms Red Alert','Armor','Arms','7ebf7cf8-1ffc-40d5-97f8-75d4225d36c1','','',NULL), -('6305','rack_gun_size_1_0025x0075x00375_1_a','Misc','UNDEFINED','319ebed6-6e92-45dc-a28b-15e207974612','','',NULL), -('6306','Bannock Jumpsuit Warm Ash','Char_Clothing_Torso_1','UNDEFINED','80f49f8f-d2e2-41ea-81e6-86c9135dc9f8','','',NULL), -('6307','Ana Legs Endro','Armor','Legs','b73ab0ef-5a5e-44f7-b74c-d686297d5bb5','','',NULL), -('6308','ORC-mkV Legs Blue','Armor','Legs','915f57e4-a00b-416f-8c19-e4b88cd071e7','','',NULL), -('6309','Kareah_Datapad_Backstory_4x3_Screen','Display','UNDEFINED','25794ff8-9ab4-49d4-88a1-3ae4df22a4e9','','',NULL), -('6310','Faction Jacket Teal','Char_Clothing_Torso_1','UNDEFINED','abb98b3b-bca3-49f7-97e3-747cea55a284','','',NULL), -('6311','Paint_Perseus_Beige_Green_Red','Paints','UNDEFINED','7660b182-6b30-4934-ac08-050a2586d042','','',NULL), -('6312','MRAI_Guardian_Thruster_Mav_MX','ManneuverThruster','FixedThruster','4ea2f9b6-2ebd-aeaa-856f-ad76fed8009a','','',NULL), -('6313','Inmate Worksuit','Armor','Undersuit','6ef9457f-8828-4dc7-b53f-01d94ea22760','','',NULL), -('6314','Morozov-SH Legs Terrene','Armor','Legs','475e9a4e-ae27-4a75-a1f5-64e068be1b48','','',NULL), -('6315','Retaliator Torpedo Rear Module','Module','UNDEFINED','130ea15f-d075-403d-89c9-60d303fc25f0','','',NULL), -('6316','facial_hair_049','Char_Head_Beard','UNDEFINED','13994558-1b29-497a-ba24-47e836059c1b','','',NULL), -('6317','Pyro RYT \"Crusader\" Multi-Tool','Weapon','Gadget','81e731fa-b0f9-40ec-b625-9b7e43f81adb','','',NULL), -('6318','Seat','Usable','UNDEFINED','c648904f-3efd-4123-8fd5-685170442bfb','','',NULL), -('6319','Blue Bilva','Cargo','Cargo','596b9d2d-59c0-4a10-8e7b-2407c4e30cb3','','',NULL), -('6320','Golem Faultline Livery','Paints','UNDEFINED','37f0f3d8-9200-45e0-ae91-a23436ae3eef','','',NULL), -('6321','KRIG_P72_Archimedes_WingTip_Right','AttachedPart','UNDEFINED','54dbc1eb-3188-4ef6-8c6e-dd0bc6a7dbe2','','',NULL), -('6322','One Light Cap Blue','Char_Clothing_Hat','UNDEFINED','0ebc2c2d-7aae-40d1-abda-168688da4b1e','','',NULL), -('6323','Venture Core Aqua','Armor','Torso','94e04e11-3b50-405f-bd35-0ad36abf1e56','','',NULL), -('6324','Ponos Boots Grey','Char_Clothing_Feet','UNDEFINED','5a5c7bb2-13a6-481e-bb0a-03513ea6426f','','',NULL), -('6325','StarHeart','PowerPlant','Power','41a56edf-ce69-4638-9c80-1692c3d345c6','','',NULL), -('6326','Flight Blade','FlightController','UNDEFINED','4ae9dbea-3fae-2843-9758-38f2e4d81984','','',NULL), -('6327','Door Control','ControlPanel','DoorPart','c8025eed-0a02-44a1-b788-40922f710214','','',NULL), -('6328','Hornet Ironheart Livery','Paints','UNDEFINED','e22efffe-bb60-439a-b8c6-7282ed65aa88','','',NULL), -('6329','Seat','Usable','UNDEFINED','8beee750-4140-42e8-a8dd-b3fdd285e23a','','',NULL), -('6330','IAE 2955 Hat Black','Char_Clothing_Hat','UNDEFINED','a194d548-ba3b-4670-b366-8a447f0de60f','','',NULL), -('6331','Door Control','Door','UNDEFINED','de6b640f-df5a-41ac-baf9-8d1abdc0a0e1','','',NULL), -('6332','M9A Cannon','Weapon','Gun','d34e4ab3-8700-4a31-9801-34a321843309','','',NULL), -('6333','CBH-3 Helmet Black','Armor','Helmet','82070439-9c9d-46a5-9328-3c197b00bed7','','',NULL), -('6334','Seat','Usable','UNDEFINED','5566e6c0-59a7-4330-95f6-1a1e811a90eb','','',NULL), -('6335','ESPR_LaserCannon_FiringMechanism_S4','WeaponAttachment','FiringMechanism','9dafee72-fb27-421a-8cb6-60629dd72e4c','','',NULL), -('6336','PH - scu_service_shirt_01_whammers01_01','Char_Clothing_Torso_0','UNDEFINED','70c2d69e-b902-4a98-8204-6a4d34cc136e','','',NULL), -('6337','Seat','SeatAccess','UNDEFINED','76459230-2054-4908-ba40-9e2bc7ee7c2f','','',NULL), -('6338','WarmingSpot_FireBarrel_Drum','Usable','UNDEFINED','aa02ba4a-cc2c-493e-901c-2772f1d4ca6c','','',NULL), -('6339','Argus Helmet Black/Aqua/Silver','Armor','Helmet','d41fec31-ff74-4460-a217-260eaa869a65','','',NULL), -('6340','GSX-HP','ExternalFuelTank','UNDEFINED','19e17c79-b73b-4a8c-b0a8-6ed4d134ffdc','','',NULL), -('6341','bag_toolbox_1_a','Cargo','UNDEFINED','c895533d-0847-4ee3-9009-076e14d93afa','','',NULL), -('6342','bag_toolbox_2_a','Cargo','UNDEFINED','a54c9948-90a9-4ee0-a030-45f4f44fd031','','',NULL), -('6343','Seat','Usable','UNDEFINED','2c205e35-ce5e-4415-a3b7-68904a6f206b','','',NULL), -('6344','Lynx Legs Draas','Armor','Legs','8ed52b69-ddbe-4d56-8bcb-e71aaa5c8a6d','','',NULL), -('6345','counter_display_04x01x01_18Ports','ShopDisplay','UNDEFINED','2d3a3609-b4e6-4db8-821c-b70c09bad593','','',NULL), -('6346','Armor_Crate_CZ','Usable','UNDEFINED','56d98ce6-bc66-484c-98bb-d7485424231d','','',NULL), -('6347','Pulse Crossfire Livery','Paints','UNDEFINED','b981b90d-70c4-404a-9a29-db64108efe7c','','',NULL), -('6348','Karna \"Dominion Camo\" Rifle','Weapon','Medium','05abba47-8806-4869-aa77-03ad237902c5','','',NULL), -('6349','Ajax Security Uniform Pants','Char_Clothing_Legs','UNDEFINED','bdfed6de-7e10-4b47-a229-5493ab7576a6','','',NULL), -('6350','hooks_torso0_02x01x04_02Ports','ShopDisplay','Default','5cc062ed-7a55-4138-aab2-47b34ed740ca','','',NULL), -('6351','ht_bench_table_microtech_1_single_b','Usable','UNDEFINED','bf9ea8ea-7d2e-40b1-ad33-37172c1a243e','','',NULL), -('6352','Stormwal Sculpture Replica','Misc','Flair_Wall_Picture','1e2778c1-6b2e-4c19-9198-dbca796ae538','','',NULL), -('6353','Weapon_Rack_Cz_004','Usable','UNDEFINED','4c164e8d-e27d-46bf-8d2c-641f8ad7a2d6','','',NULL), -('6354','Chlorine','Cargo','Cargo','15970ae2-30a9-437c-af5e-1dd86d89f671','','',NULL), -('6355','Zeta-Prolanide','Cargo','Cargo','3bd72e48-7d23-4aa8-bced-ab1c92b77e4b','','',NULL), -('6356','Locker_Armor_LoadoutTest','Usable','UNDEFINED','ab39f85f-8664-4bdf-b9ec-c5cd93fdf348','','',NULL), -('6357','RSI_Zeus_Decorative','AttachedPart','UNDEFINED','7d1dd844-b45c-45ed-a691-49aa195174ef','','',NULL), -('6358','Internal Tank','QuantumFuelTank','QuantumFuel','a5330068-cd45-47c5-bbef-2401c8777856','','',NULL), -('6359','Paint_Mole_Orange','Paints','UNDEFINED','a0034448-f077-4fce-9413-812d4db5e54a','','',NULL), -('6360','Seat','SeatAccess','UNDEFINED','76e42cf0-77ea-4e0f-a247-8dbc9153f38a','','',NULL), -('6361','MacFlex Core Seagreen','Armor','Torso','f9e4e71d-4dc6-40a0-aad9-93a5af81aa0b','','',NULL), -('6362','TRGT. STATUS','Seat','UNDEFINED','cd806a0c-2513-4b2a-8bb1-c4e8f73a2888','','',NULL), -('6363','Door Control','ControlPanel','DoorPart','f495e262-7779-43f8-b95a-6656039f6c7a','','',NULL), -('6364','Zeus Exploration Suit Helmet Solar','Armor','Helmet','ed3c8d10-f2d1-4136-b547-2ef062f0ce15','','',NULL), -('6365','Concept Shirt Aqua','Char_Clothing_Torso_0','UNDEFINED','1f6cd323-cdaf-4544-b66b-c5326dde79b1','','',NULL), -('6366','Multitool_Attachment','WeaponAttachment','Utility','753e218d-6368-4005-aee9-60f821aeebaa','','',NULL), -('6367','Inquisitor Arms Violet','Armor','Arms','840e1940-466c-4a42-962e-238f8bc4460d','','',NULL), -('6368','Balor HCH Helmet Twilight','Armor','Helmet','92ce36b2-b41c-4e2f-bc61-29db7086c7e8','','',NULL), -('6369','Carryable_1H_FL_tool_xray_1_handheld_a','Misc','UNDEFINED','fa10563e-2843-41a2-8bbc-e8c29e455f8a','','',NULL), -('6370','Remote Turret','Turret','GunTurret','c434c727-4e01-49dc-b6a5-ac4ba7bfe1df','','',NULL), -('6371','ORC-mkV Core Aqua','Armor','Torso','ef42816f-1b5a-4d20-985a-d6d938f271df','','',NULL), -('6372','Shipment','Misc','UNDEFINED','e900b640-1ee2-4a9f-b0ec-070bc992004d','','',NULL), -('6373','Seat','Usable','UNDEFINED','9a46aa4c-a8c8-4419-8601-01d3d2b29251','','',NULL), -('6374','ESPR_Prowler_Thruster_Mav_Lateral_Utility','ManneuverThruster','UNDEFINED','2b8e5485-48f6-4151-8c01-c92cf52fbdf6','','',NULL), -('6375','Stirling Exploration Backpack Chroma Edition','Armor','Backpack','b0865ce7-1aa5-4ba9-8821-e13b2361c407','','',NULL), -('6376','Dashboard','Seat','UNDEFINED','f0d425b0-8522-448e-8764-ac8119708bd8','','',NULL), -('6377','Debnam Gloves Seagreen','Char_Clothing_Hands','UNDEFINED','852a72e1-d37d-4845-8960-94a74758a58d','','',NULL), -('6378','ANVL_Terrapin_Locker','Player','UNDEFINED','b1a35616-f075-4cea-b8d9-64607042a992','','',NULL), -('6379','Vehicle_Screen_MFD_Holographic_MISC_Freelancer_R','Display','UNDEFINED','9ddad4c1-08d8-44e9-8634-d2b0d5bd4be0','','',NULL), -('6380','Lynx Legs White','Armor','Legs','e877dfab-2ffe-40da-b826-04ce1185c325','','',NULL), -('6381','mobyGlass Personal Computers','Cargo','Small','3f888e3a-90c6-4f2c-8ecd-923c2652226a','','',NULL), -('6382','Baru Gloves (Left Only)','Char_Clothing_Hands','UNDEFINED','8acb55be-2219-445b-abe9-ebc981aa8cbd','','',NULL), -('6383','Pyro RYT Multi-Tool','Weapon','Gadget','5a58baa2-9db8-48b1-9b59-08d556ed88b4','','',NULL), -('6384','Freeze','Misc','Harvestable','28ed6c8a-8d8b-4791-bd61-355abf7861db','','',NULL), -('6385','Redeemer Polar Camo Livery','Paints','UNDEFINED','c185a54d-822c-4a9a-8bec-bcac5326bd6d','','',NULL), -('6386','DRAK_Cutlass_Red_Thruster_Maneuver_Rear_Bot','ManneuverThruster','JointThruster','df37ef36-dda6-4d04-9d90-55858b94a856','','',NULL), -('6387','Cordimon Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','f9fa091a-13fd-4721-b23e-8a534c4daf56','','',NULL), -('6388','Carryable_1H_SQ_fruit_oza_1_a','Food','Plant','591b4ad8-1bea-44dd-b429-7a785d0efa1b','','',NULL), -('6389','GAMA_Syulen_Thruster_Mains_Large','MainThruster','FixedThruster','a80698a4-7a94-452b-a1bc-b388b51bf3b8','','',NULL), -('6390','Seat','Usable','UNDEFINED','215cd4dd-7e78-48fb-8de2-26be7fa84f8c','','',NULL), -('6391','Seat','SeatAccess','UNDEFINED','b5372b4a-a222-4047-bb6d-f184e274c348','','',NULL), -('6392','bar_box_energy_onemeal_tofu','ShopDisplay','Default','34647e6d-2104-43d4-8c08-68078e1f0904','','',NULL), -('6393','Blue Bilva','Cargo','Cargo','3d2e6075-a991-4d82-893b-135a3eab81b1','','',NULL), -('6394','TRGT. STATUS','Seat','UNDEFINED','f851e4ed-2ec7-474b-9df5-84dc47ba5b28','','',NULL), -('6395','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','aeaba0e0-732d-4243-aadd-d88126a893d2','','',NULL), -('6396','Cupboard','Cargo','UNDEFINED','ce7a51d1-791e-4d8a-b574-8d91f30d7a8a','','',NULL), -('6397','Lamont Umbra Undersuit','Armor','Undersuit','af4fe2de-7944-4a21-89d7-92be9920877f','','',NULL), -('6398','Ship Showdown \'52 C8X Pisces Coin','Misc','Utility','813e6b3c-6b97-45f0-9bd3-59f695e3f8d1','','',NULL), -('6399','Seat','SeatAccess','UNDEFINED','3b48624f-dbce-410a-b60c-c444b2a2ab72','','',NULL), -('6400','Access','SeatAccess','UNDEFINED','8a2732a2-8d63-430d-9a17-88e691b9ebfd','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('6401','Outback Core','Armor','Torso','dd28b0ac-6e6b-44e9-8ec9-852e1c4d6f40','','',NULL), -('6402','Overlord Legs Polarity','Armor','Legs','33ec5f25-322c-49e6-847f-752859402c2e','','',NULL), -('6403','Outback Arms','Armor','Arms','c6f501b3-d538-41b8-a235-1a02575aaf44','','',NULL), -('6404','Stitcher Core','Armor','Torso','0e476efa-b76d-4300-ba37-677569084781','','',NULL), -('6405','ADP Arms Violet','Armor','Arms','9e2d5873-d585-457c-b7e3-44438fb3a2b9','','',NULL), -('6406','Sukoran','Shield','UNDEFINED','39e7e5bf-27ba-4e45-914f-3fcc79a8886c','','',NULL), -('6407','Inquisitor Core White','Armor','Torso','4afec779-8571-4c7c-8a18-e77bcff8c305','','',NULL), -('6408','Hair Care Product','Misc','UNDEFINED','2917d0b0-2695-4c4b-a9d4-8b57cba3308e','','',NULL), -('6409','Revenant Pod','Misc','UNDEFINED','ccc05a6d-2ecb-442d-8f7a-ce6b31e8cd57','','',NULL), -('6410','Palatino Backpack','Armor','Backpack','3e79b1d5-d213-4c0d-b212-eba3399bcfa2','','',NULL), -('6411','Drifter','QuantumDrive','UNDEFINED','1546dd53-4a3d-4fd7-b1ed-bf207bfc9a9f','','',NULL), -('6412','BEHR_LaserCannon_Ventilation_S3','WeaponAttachment','Ventilation','a6b1caf6-944b-4fb5-9bd1-c34dfb38ea77','','',NULL), -('6413','Aloprat Skewer','Food','Consumable','2d1497bc-7947-4748-913f-23a7ce852185','','',NULL), -('6414','OpioPen (Roxaphen)','FPS_Consumable','Medical','d99811fe-a60e-4f38-91a5-cfdb77ac3c97','','',NULL), -('6415','Door Control','Door','UNDEFINED','30bd6547-0ecd-4810-9cd4-8f946f40670d','','',NULL), -('6416','parr_outfit_02','Char_Clothing_Torso_1','Male','fc235d16-dff4-44fa-a0fc-d7ff61306729','','',NULL), -('6417','Carryable_1H_CY_weight_dumbbell_1_1kg_c','Misc','UNDEFINED','2d10e49e-4384-47b3-ad40-b91c53f7e0a8','','',NULL), -('6418','ClipVest Work Harness Blue','Char_Clothing_Torso_1','UNDEFINED','ce7fdfc3-b318-423f-8dfd-13aa4a8c2d18','','',NULL), -('6419','Overlord Helmet Stinger','Armor','Helmet','8648122f-b381-4090-9fc6-6829bc02cb91','','',NULL), -('6420','Intrepid-OS','Suit','ThrusterPack','63e5146d-edcd-423e-915a-4f2f3e8be860','','',NULL), -('6421','AEGS_Sabre_Firebird_Thruster_Mav_Joint_01','ManneuverThruster','Light','29029b91-2025-436f-8a81-d502fbdf2e3d','','',NULL), -('6422','Sarilus','Cargo','Cargo','5acebe0d-6af4-404b-85f4-9fee6c06f556','','',NULL), -('6423','Expedition','QuantumDrive','UNDEFINED','4702547f-fa0f-4f6c-b2ed-9782ee9f518b','','',NULL), -('6424','Flight Blade','FlightController','UNDEFINED','5265daad-9c37-4a34-bb66-7afd87ba3e38','','',NULL), -('6425','stand_shop_medium_Cooler','ShopDisplay','UNDEFINED','6e90c98e-4446-4654-932e-1b8c1fa397a5','','',NULL), -('6426','Bengal_BallisticCannon_Ventilation_S7','WeaponAttachment','Ventilation','a7167416-0fce-4482-af7e-0e108e5a8469','','',NULL), -('6427','dynapack_container_01x01x01_4Ports','ShopDisplay','UNDEFINED','09ace1cd-3d9f-4178-a90a-8b3085cc2278','','',NULL), -('6428','Aster Gloves Sand','Char_Clothing_Hands','UNDEFINED','5d864483-2433-4c73-981a-9cd67ae980f8','','',NULL), -('6429','AEGS_Reclaimer_Thruster_Mav_Fixed_Top','ManneuverThruster','FixedThruster','438653d5-7916-4775-a7e0-b17a45d9c585','','',NULL), -('6430','Carryable_TBO_FL_16SCU_Commodity_ProcessedGoods_AceInterceptorHelmet','Cargo','Cargo','0412e7b0-8e23-415d-8af1-386e9b0c903a','','',NULL), -('6431','ORC-mkV Arms Red','Armor','Arms','743be4e4-f6d3-41d1-aec9-c5880520eb97','','',NULL), -('6432','Golem Cypher Livery','Paints','UNDEFINED','13742bbe-675e-450e-9b48-5e6bcd4b2dbc','','',NULL), -('6433','Door Control','Door','UNDEFINED','fb62a888-1172-440f-894a-c0c1d04c80da','','',NULL), -('6434','P8-SC SMG','Weapon','Medium','bc644573-ea0f-4974-b23c-63b24425f639','','',NULL), -('6435','SCItemDisplayScreen_ScreenSize_W60_H34_H69_Custom_Bridge_Hologlobe','Display','Default','61c43962-34e7-484a-9667-c46312d2420d','','',NULL), -('6436','MISC Freelancer MIS Missile Launcher','MissileLauncher','MissileRack','a96187df-fe72-41ed-a8dc-394f8dd883f0','','',NULL), -('6437','Clempt Pants Imperial','Char_Clothing_Legs','UNDEFINED','bcecfae6-323f-48d3-b371-94a8db842907','','',NULL), -('6438','Mug','Drink','UNDEFINED','6b628df2-a2a1-446c-9d52-9fe2b7e6d63e','','',NULL), -('6439','WowBlast Desperado Toy Pistol Red','Weapon','Small','8b1e2f39-c841-4802-b963-d17414e96421','','',NULL), -('6440','VNCL_Stinger_Thruster_Main_Fixed_Small','MainThruster','FixedThruster','e4b80ee3-1e78-4528-8d2b-079969507f60','','',NULL), -('6441','m_scale_vlk_adult','Char_Accessory_Head','Vanduul','abf42469-7694-4696-965a-1cbbc4ebf60b','','',NULL), -('6442','MacFlex Legs White','Armor','Legs','355e287a-433f-4286-bff2-d7367008169a','','',NULL), -('6443','Apollo Olympian Livery','Paints','UNDEFINED','72c72134-4560-4c35-9dc7-2408e3efeed4','','',NULL), -('6444','display_ship_components_03x0075x0275_b','ShopDisplay','UNDEFINED','a6b3232e-8f0e-48ee-b66c-c7dbe083b2db','','',NULL), -('6445','Beacon Undersuit Tan/Brown','Armor','Undersuit','8c1744f0-2b01-4a80-a08f-8e77968e8acd','','',NULL), -('6446','SHIELDS','ShieldController','UNDEFINED','d92c8588-1f7f-4a40-a839-f9066bcc31a6','','',NULL), -('6447','Manned Turret','TurretBase','MannedTurret','44224c1b-81d3-4346-ad8a-bdf81e73e0db','','',NULL), -('6448','TRGT. STATUS','Seat','UNDEFINED','4742dd7b-ae42-4ee7-9882-c0dec44ec3e2','','',NULL), -('6449','Corbel Legs Patina','Armor','Legs','dd047930-4575-452f-ae06-006245f50a34','','',NULL), -('6450','AEGS_Door_Decal_Deck_B','Decal','DoorPart','4648a8fd-67e5-4c12-ac19-132eb5ec719d','','',NULL), -('6451','Turret','TurretBase','MannedTurret','9070f456-ffce-485f-bce0-3347bf83e5ee','','',NULL), -('6452','Palatino Backpack Deadlock','Armor','Backpack','4974a180-0a7b-436f-9eae-bbb9ccfdd35c','','',NULL), -('6453','Internal Tank','FuelTank','Fuel','404772f0-0730-4006-997c-a8452a86ffd2','','',NULL), -('6454','ARGO_ATLS_GEO_Mining_Tool','Misc','UNDEFINED','7c718ef7-251f-4ccf-aec5-02c44253e011','','',NULL), -('6455','Palatino Backpack Mark I','Armor','Backpack','877290d3-a275-414f-9eb1-7d2fce3c4fdb','','',NULL), -('6456','Turret','Turret','BallTurret','547ec8ba-89a6-49a8-8065-67349f179971','','',NULL), -('6457','WhiteOut','Cooler','UNDEFINED','29026bad-ef1d-4a72-8059-f1fe2c397603','','',NULL), -('6458','Consolidated Outland Hat','Char_Clothing_Hat','UNDEFINED','5b1235e2-65bc-4c4a-a5b6-5a047cfa3f8c','','',NULL), -('6459','CRUS_Starlifter_Door_Decal_Kitchen','Decal','DoorPart','8a5204b4-3435-42ac-acda-2bcbe43a1fb9','','',NULL), -('6460','Thorby Shirt','Char_Clothing_Torso_0','UNDEFINED','d22422fa-7584-4cfb-8f7d-556e3aaf453a','','',NULL), -('6461','Dashboard','SeatDashboard','UNDEFINED','cef904d1-ac4a-4979-815f-fe136f53f694','','',NULL), -('6462','IndVest Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','7b2797f9-b000-459f-83a9-2f3d56f8cc1c','','',NULL), -('6463','Polaris Best in Show 2955 Livery','Paints','UNDEFINED','8fbd84e2-b595-4709-a7a2-c745d18dc1b3','','',NULL), -('6464','HLX99 Hyperprocessors','Cargo','Small','d763bdc1-0866-49dd-8a81-1f87ce83f8a5','','',NULL), -('6465','600i 2954 Auspicious Red Dragon Livery','Paints','UNDEFINED','4295a217-453d-475c-b7b6-f486f6e98e68','','',NULL), -('6466','Seat','SeatAccess','UNDEFINED','4f4815d3-fc88-4380-a2f4-3804fe2e0b45','','',NULL), -('6467','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','bc836163-6d15-4d0a-a7c4-a3a812dad0bd','','',NULL), -('6468','AEGS_Sabre_Firebird_Winglet_Right','Misc','UNDEFINED','23c7c227-f23f-4a86-bbfa-7409a8b9720d','','',NULL), -('6469','MISC_Freelancer_Base_SCItem_Dashboard_Esc_Pod_Upper_Right','SeatDashboard','UNDEFINED','dee3b90c-674c-4028-90e2-0de4565f41c9','','',NULL), -('6470','Door Control','Door','UNDEFINED','65962533-0ae8-420e-9377-798b0917160c','','',NULL), -('6471','Arclight \"Boneyard\" Pistol','Weapon','Small','5d94d393-8bb2-49dc-aeae-dbd4fb450842','','',NULL), -('6472','RSI_Zeus_Thruster_Retro','ManneuverThruster','Retro','1c9861ba-98e1-446d-a8f7-98b19e70818c','','',NULL), -('6473','CargoBox_050x050x050_Tank_Water_StartTop','Cargo','Cargo','852e6e98-fb23-4a18-9daf-11d12b88e44a','','',NULL), -('6474','Terrapin Vitality Livery','Paints','UNDEFINED','4f585d9e-37bc-24f4-887e-09b325df3783','','',NULL), -('6475','Seat','Usable','UNDEFINED','4dd2315e-59c3-46c4-8971-91b0cf122ed0','','',NULL), -('6476','Landlite Boots Violet','Char_Clothing_Feet','UNDEFINED','832a4625-b3e1-4ec2-b8e0-e20bb8a42dc8','','',NULL), -('6477','Ouratite','Cargo','Cargo','57a8a123-afcf-4769-9190-86016a14ff68','','',NULL), -('6478','Carryable_2H_FL_05x05x05_MissionItem_waste_bloody_a','Misc','UNDEFINED','1ceb16f1-4a17-44e3-9e72-855775051903','','',NULL), -('6479','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','0bb8cd37-41ed-4bc9-a4b2-681c249d2418','','',NULL), -('6480','Keystone Jacket Gold','Char_Clothing_Torso_1','UNDEFINED','a35400a7-cd40-423a-beec-8115df104445','','',NULL), -('6481','Strata Helmet Amber','Armor','Helmet','33251b3f-ff0c-412d-80d2-2dc02a35c088','','',NULL), -('6482','Medical Supplies','Cargo','Cargo','7f1d1839-a751-41d4-8927-1f7199cafb8b','','',NULL), -('6483','Falston Jumpsuit \"microTech Edition\"','Char_Clothing_Torso_1','UNDEFINED','7f17f8ea-b1e3-4cf8-a85e-7696f1a3bdbc','','',NULL), -('6484','Syulen Ocellus Livery','Paints','UNDEFINED','351db7bd-7a74-4be9-be02-49708063860b','','',NULL), -('6485','Stinger Deathstalker Livery','Paints','UNDEFINED','63b86c01-d57e-45a8-9a91-206d02be41c8','','',NULL), -('6486','Seat','SeatAccess','UNDEFINED','6352cbfa-5b3b-41a9-8afa-9212d90bcd47','','',NULL), -('6487','Door Control','ControlPanel','DoorPart','29513059-8617-4537-9401-9d25116fd4dc','','',NULL), -('6488','TRGT. STATUS','Seat','UNDEFINED','70e94efa-7a36-47d2-95c9-ab357b30fe7d','','',NULL), -('6489','Manned Turret','TurretBase','MannedTurret','8f934d57-bd0c-4c36-9c80-79917fda6be9','','',NULL), -('6490','FBL-8u Undersuit Desert Digital','Armor','Undersuit','1545424c-74cb-4a94-804c-919ea103d1e8','','',NULL), -('6491','Aril Legs Hazard','Armor','Legs','cd86a6ff-0abc-4bf0-bce3-00be8cc3643e','','',NULL), -('6492','RSI Lorica Ship Armor','Armor','Medium','18692e61-4ad2-42e2-b79c-37c21dc5c8f7','','',NULL), -('6493','Seat','SeatAccess','UNDEFINED','f31b04ea-b75e-4c19-a78f-520a153a0b7e','','',NULL), -('6494','Armor_Crate_CZ_Firerat_007','Usable','UNDEFINED','0568930d-9ac9-4de5-bd27-76ad90e9a067','','',NULL), -('6495','Door','Door','UNDEFINED','d85a92a0-23f7-4972-bb1c-cbbe2ce0f93b','','',NULL), -('6496','DCSR2','Cargo','Small','cd90dea7-264d-4f42-90ca-dc9a33c6a5d4','','',NULL), -('6497','Beryl (Raw)','Cargo','Cargo','61c0471c-27b9-482a-82ce-860b8cf072ee','','',NULL), -('6498','Devastator Shotgun Battery (12 cap)','WeaponAttachment','Magazine','86eec5f7-3dd0-40f2-a433-3dc143c0d231','','',NULL), -('6499','ADP Arms White','Armor','Arms','b2e2dfd2-84ed-419d-b38b-8b8f8ee6f263','','',NULL), -('6500','ADP Core Orange','Armor','Torso','3032438e-76c3-4fe9-a25f-2e59013b5904','','',NULL), -('6501','Citadel Core Icefall','Armor','Torso','9349eae9-9072-4333-a9e1-520866ad7d32','','',NULL), -('6502','Cobalt','Cargo','Cargo','f9948a7c-da1a-482a-812b-afeba0711dfa','','',NULL), -('6503','Gadget_Cabinet_kegr_fire_extinguisher_01_Nozzle_ground','Usable','UNDEFINED','def2901d-b7d5-4ab5-bc5d-28f6f01764ce','','',NULL), -('6504','Strata Arms microTech Edition','Armor','Arms','d2ae95d8-ba4a-4a5c-aab4-8cbeeea05893','','',NULL), -('6505','Radar_Display_Mantis','Display','UNDEFINED','7a267da3-d086-4d94-ba7c-74398ce8900f','','',NULL), -('6506','Cup','Drink','UNDEFINED','4c4c30a3-f200-42f0-a6c7-97d0697a8826','','',NULL), -('6507','TRGT. STATUS','Seat','UNDEFINED','12839e0d-c06a-4103-a380-f1a1e82cc3e4','','',NULL), -('6508','MISC_Fury_Thruster_Main_LX','MainThruster','JointThruster','6000f4f3-1553-49b7-9c9d-ca48d251f3e9','','',NULL), -('6509','Slipstream','PowerPlant','Power','92fc134c-4d10-48fb-b439-aec44e36fe4e','','',NULL), -('6510','Carrion Helmet','Armor','Helmet','14f935ce-cc19-4871-8235-7b8edc03246a','','',NULL), -('6511','DoorProximitySensorItem_3x8x1_5','Sensor','DoorPart','97a2c043-94fd-4763-af92-5d25a0722a1f','','',NULL), -('6512','Deo Shirt Twilight','Char_Clothing_Torso_0','UNDEFINED','956ddf19-a9e8-4044-8857-eab7e563fd2a','','',NULL), -('6513','Defiance Legs Charcoal','Armor','Legs','9847beac-0ce3-49fe-bccb-4c175517f512','','',NULL), -('6514','Bantam Hat URW','Char_Clothing_Hat','UNDEFINED','40cb5e9c-2d30-41eb-a672-93a4e8ae207c','','',NULL), -('6515','ORIG_600i_Thruster_Mav_Fixed_03_Top','ManneuverThruster','FixedThruster','19ae4388-858f-4964-8761-e12d38a4f025','','',NULL), -('6516','TrueDef-Pro Arms','Armor','Arms','9cf087db-51cf-44c3-8acd-e252a4836e6c','','',NULL), -('6517','Endurance','PowerPlant','Power','49d355d9-b5a5-454a-a6e8-dedb4bdffa02','','',NULL), -('6518','Sarilus','Cargo','Cargo','51e100c1-58ae-4cc9-8c66-3b46893ac3f5','','',NULL), -('6519','AEGS_Retaliator_Esc_Pod_Decal_04','Decal','DoorPart','9edd2a20-2b5f-49b4-a6bf-677badd78deb','','',NULL), -('6520','Datapad','Misc','Gadget','f19b178c-fefa-48bb-8e2d-37877ab507c8','','',NULL), -('6521','EE16 (16x Telescopic)','WeaponAttachment','IronSight','7b3e9ad7-45f2-4ee5-b17a-8b8b8bb0112c','','',NULL), -('6522','Aril Core Red Alert','Armor','Torso','e3c59d62-f2c4-40bd-bf93-36dce86e9089','','',NULL), -('6523','Pite','Char_Head_Piercings','UNDEFINED','782d5764-1e9a-4b5c-a69c-e5a5e09af2a0','','',NULL), -('6524','Weapon Rack','Door','UNDEFINED','cac88501-e371-4ea9-a057-575f1cef8061','','',NULL), -('6525','TrueDef-Pro Arms Black/Grey/Red','Armor','Arms','bb5394d0-d54d-4cf3-83d9-1de80156ed70','','',NULL), -('6526','Door Control','Door','UNDEFINED','80f9834b-b37f-48e3-bbdd-608db1872b6e','','',NULL), -('6527','Vanduul Metal','Misc','Harvestable','9889fb6f-5ab7-4b8e-b553-8ad7e233741d','','',NULL), -('6528','ARMR_ANVL_Valkyrie','Armor','Medium','315fae0f-6991-4248-ac72-86f05a6f56c5','','',NULL), -('6529','Clempt Pants Seagreen','Char_Clothing_Legs','UNDEFINED','fe92b60e-3388-4381-bc44-d4688b8bfc29','','',NULL), -('6530','Lindinium','Cargo','Cargo','70970816-e2a4-46c5-9008-6c0fdc8055da','','',NULL), -('6531','Door','Door','UNDEFINED','af5c4b2b-134e-490f-8a30-8ec32899829d','','',NULL), -('6532','RSI Apollo S02 Missile Rack','MissileLauncher','MissileRack','472dcf8a-dba7-56e1-d556-a9d0ce074aaf','','',NULL), -('6533','Concept Shirt Violet','Char_Clothing_Torso_0','UNDEFINED','d4445c8b-24b5-4373-86b4-3f7b089a8744','','',NULL), -('6534','Fresh Food','Cargo','Cargo','f6878ffe-0541-461e-a185-6bf30fd3e1dc','','',NULL), -('6535','LeMarque Pants Black','Char_Clothing_Legs','UNDEFINED','f534460a-50bc-4b55-9687-92e4d6e1305c','','',NULL), -('6536','Inquisitor Arms Aqua','Armor','Arms','a3d2c4b2-1e97-4522-8ff5-0769bf0f62bd','','',NULL), -('6537','Pembroke Exploration Suit RSI Edition (Modified)','Armor','Undersuit','e22947ac-8964-4c1a-a715-9974ceb5cc56','','',NULL), -('6538','AEGS_Dropship_Seat','Usable','UNDEFINED','5b1395a8-f67b-4ce7-bfb4-9185d9857e8d','','',NULL), -('6539','Venture Legs Aqua','Armor','Legs','c0d49eda-3381-46a9-abfd-97e540a5a8aa','','',NULL), -('6540','Demeco LMG','Weapon','Medium','b13a3815-92e7-4e09-962f-b24bcdaf3a42','','',NULL), -('6541','MISC_Starlancer_Seat_Access_Drone','SeatAccess','UNDEFINED','f5d1510b-b1c5-4b77-ae0a-a7a9a1aec149','','',NULL), -('6542','m_human_mannequin_rsi_suit_01','ShopDisplay','UNDEFINED','5c8c8c88-24d7-483a-a91f-df85506e469b','','',NULL), -('6543','Sol-III Core Aviator','Armor','Torso','4def8d44-c340-4c66-a837-38a3cf0fa45f','','',NULL), -('6544','FocalWave-10 (1x Holographic)','WeaponAttachment','IronSight','fadb8d2f-ae39-4ca1-8d64-3fc7423d2154','','',NULL), -('6545','Vehicle_Screen_MFD_Holographic_ORIG_300i_BL','Display','UNDEFINED','69bf63ff-171d-44ff-a11e-23b6d41b7261','','',NULL), -('6546','Seat','Usable','UNDEFINED','c928b3f6-06cf-4a8d-950e-0b6d732cdfcd','','',NULL), -('6547','Personal Storage','Cargo','UNDEFINED','a3feab2d-ea3f-42c0-b6bf-22f128be45e1','','',NULL), -('6548','VNCL_Scythe_Thruster_Retro_Fixed_Left','ManneuverThruster','FixedThruster','98f26807-74ff-40b5-bbd0-29f188ec7d2d','','',NULL), -('6549','AEGS_Door_Screen_Single_04','Decal','DoorPart','e2348cd4-12a9-438e-bd18-fb09d59b03f2','','',NULL), -('6550','Seat','SeatAccess','UNDEFINED','b7db8eca-a431-4d9d-9255-879f128eeb72','','',NULL), -('6551','Inquisitor Legs Base','Armor','Legs','304fbb02-3fd4-4d75-b39e-a4b1f7634d91','','',NULL), -('6552','RSI_Polaris_Torpedo_Tube_Inner_Geo_L','AttachedPart','UNDEFINED','af5cf223-4fcc-4f79-8f38-d3abbe757d95','','',NULL), -('6553','Li-Tok Boots Imperial','Char_Clothing_Feet','UNDEFINED','eddaf0e9-ae2b-49b5-a803-ad58a6f86b0f','','',NULL), -('6554','RCMBNT-RGL-2','InventoryContainer','Cargo','2043df43-9347-4e32-90a4-48494e33c08c','','',NULL), -('6555','Redeemer Valencia Livery','Paints','UNDEFINED','544eb1ce-16fb-4ca6-bf8f-d51061f42360','','',NULL), -('6556','H_Dashboard_Projector_HUD_DRAK_Herald','Display','UNDEFINED','2676efe7-0cb0-48f5-bf14-55c27746ca78','','',NULL), -('6557','Door Control','Door','UNDEFINED','986da4db-ea2d-463c-9bfb-71c989400412','','',NULL), -('6558','Weapon_Rack_ANVL_Asgard_11_Slot','Usable','UNDEFINED','36a00265-1774-46b7-a611-2722f5564cda','','',NULL), -('6559','Odyssey II Helmet Lovestruck','Armor','Helmet','274cb719-5b55-480c-b9c4-bc78baae20a9','','',NULL), -('6560','Tacit Suppressor1','WeaponAttachment','Barrel','1217e61b-1a57-4d94-8aa4-16d5fcb59adf','','',NULL), -('6561','MISC_Hull_C_FoldingStrut_2A_Outer','Cargo','UNDEFINED','e4c24413-ee8f-49cc-8ed4-22d6ea5bdfe3','','',NULL), -('6562','Cirrus Boots Gray','Char_Clothing_Feet','UNDEFINED','3e59ed2b-93c3-4043-bac9-15c68212fb5d','','',NULL), -('6563','Radar_Display_MISC_Reliant','Display','UNDEFINED','8e0db77b-1f27-421d-9bd4-843baf789943','','',NULL), -('6564','Monde Arms Hiro','Armor','Arms','2f871290-4387-479b-ba21-00107c5e0695','','',NULL), -('6565','GrimHex_Datapad_BennyArtist_4x3_Screen','Display','UNDEFINED','4126ff24-db23-4859-b571-1185befd1088','','',NULL), -('6566','Morningstar Helmet Blue','Armor','Helmet','c7e772e7-a99f-4881-b0ef-bfe0093807c6','','',NULL), -('6567','FR-86','Shield','UNDEFINED','5fa67088-9677-40c4-b552-46c16bd7162e','','',NULL), -('6568','Spirit Ardent Livery','Paints','UNDEFINED','29dbf289-c9b2-475d-84f6-aaaa56678c5b','','',NULL), -('6569','Cyclone Whirlwind Livery','Paints','UNDEFINED','be0fc881-71b1-4ede-9514-ea7bcfd417e9','','',NULL), -('6570','Torrent','QuantumDrive','UNDEFINED','d1b9fbc4-797b-4777-a9da-f2e58c095922','','',NULL), -('6571','Seat','Usable','UNDEFINED','3d9ae6ad-ac79-4243-b2b8-98615c8e3be5','','',NULL), -('6572','Carrack Copernicus Livery','Paints','UNDEFINED','0871c014-2813-4a61-8926-c5b9ab0d1d52','','',NULL), -('6573','Ranta Dung','Cargo','Cargo','4b0223c9-d585-414a-a143-fc94a8a77ed3','','',NULL), -('6574','Door Control','Door','UNDEFINED','c422ec7c-5fa2-4ccd-be12-509b1ed4603b','','',NULL), -('6575','MSD-212 Missile Rack ','GroundVehicleMissileLauncher','GroundVehicleMissileRack','272edd9d-f140-4290-98c4-caaae994faad','','',NULL), -('6576','Door Control','Door','UNDEFINED','6b248a8f-af83-4d48-bcbd-eb441e79a87a','','',NULL), -('6577','DRAK_Cutlass_Blue_Thruster_Maneuver_Top','ManneuverThruster','JointThruster','a5587418-b88e-42b0-81b2-bbca4404b39d','','',NULL), -('6578','Flight Blade','FlightController','UNDEFINED','0861b6e7-e6ec-42ec-a346-7c76896cdb33','','',NULL), -('6579','Inquisitor Core Violet','Armor','Torso','045877db-4103-4ebc-bf9f-9929e8107a64','','',NULL), -('6580','box_fabric_1_005x005x005_b_v003','Cargo','UNDEFINED','fd760d9a-b89c-4755-81d2-1441a38cadd6','','',NULL), -('6581','ORC-mkX Core Nightfire','Armor','Torso','f94f4f75-a1ec-40d3-80ea-34cdf0ec9205','','',NULL), -('6582','Door Control','Door','UNDEFINED','cb385907-1159-4b9c-bff9-31ce73198d88','','',NULL), -('6583','300 Series Evening Onyx Paint','Paints','UNDEFINED','47c3fa31-45be-400a-8f3f-d84d5c257811','','',NULL), -('6584','Sarilus','Cargo','Cargo','ce3db476-5196-45cd-864e-8e61807b9b01','','',NULL), -('6585','Lillo Pants','Char_Clothing_Legs','UNDEFINED','4702b22c-c820-4a6f-a489-25f867ddae6f','','',NULL), -('6586','ANVL_Arrow_Thruster_Main','MainThruster','FixedThruster','92828407-58a9-4696-b6ff-3af03fb4708c','','',NULL), -('6587','Blood Bank Poster','Misc','Utility','a1d054e2-7900-4baf-a413-94f894c093d2','','',NULL), -('6588','Internal Tank','FuelTank','Fuel','cbbea99f-9708-4610-a8f7-7383cfd67efd','','',NULL), -('6589','Balor HCH Helmet Seagreen','Armor','Helmet','ec0a0668-d3aa-4665-b6b6-8b76a1c0aaf1','','',NULL), -('6590','Inquisitor Legs Imperial','Armor','Legs','f5158f55-db03-4447-aed8-181b92fbc99f','','',NULL), -('6591','Weapon_Rack_TMBL_Cyclone_1_Slot_Right','Usable','UNDEFINED','eaa2fe94-efc6-4a3b-ad26-d67b037a906f','','',NULL), -('6592','m_human_mannequin_legacy_outlaw_heavy','ShopDisplay','UNDEFINED','39301b21-a9f6-4135-ae11-53ad556f12d8','','',NULL), -('6593','AEGS_Retaliator_SCItem_Engineer_Console','Seat','UNDEFINED','155e6164-019d-40d8-a822-83ca8ced0780','','',NULL), -('6594','Li-Tok Boots','Char_Clothing_Feet','UNDEFINED','232b4111-aa78-4aa1-96da-eb3af77bb86f','','',NULL), -('6595','Calico Legs Desert','Armor','Legs','40d591f3-e9ec-484c-8d3f-051917d293f2','','',NULL), -('6596','Debnam Gloves (Modified)','Char_Clothing_Hands','UNDEFINED','334d3f18-e18c-45dd-9209-aaa7c6f1f23a','','',NULL), -('6597','Giocoso Helmet Azure','Armor','Helmet','fbb9f356-b016-4d2a-9a63-e20973d31e5b','','',NULL), -('6598','Pembroke Helmet RSI Graphite Edition ','Armor','Helmet','89f443ed-9358-4f72-a728-f5841c36532c','','',NULL), -('6599','DockingTube_Fuel_Ports_AEGS_Vanguard_Harbinger','DockingCollar','UNDEFINED','e7bb1037-ee42-43f7-b096-32161616ec0a','','',NULL), -('6600','MISC_Hull_C_FoldingStrut_1C','Cargo','UNDEFINED','9fc56366-e8df-4ceb-b54a-f208182708da','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('6601','100 Series Frostbite Camo Livery','Paints','UNDEFINED','d8ae58b1-4bff-4294-95e6-44879ffe2f73','','',NULL), -('6602','Personal Storage','Cargo','UNDEFINED','99776683-b7a6-440c-9e84-2a5defde5f84','','',NULL), -('6603','f_human_mannequin_legacy_marine_medium','ShopDisplay','UNDEFINED','ecc283d6-b314-494f-b4e9-5583f736c77c','','',NULL), -('6604','Internal Tank','FuelTank','Fuel','c717ccc2-f372-440f-8207-8ffeb72bc3fc','','',NULL), -('6605','IndVest Jacket Seagreen','Char_Clothing_Torso_1','UNDEFINED','a0b9e0d3-043a-4590-88b9-cc4cab8f2bf5','','',NULL), -('6606','Arden-SL Core Coramor Edition \"Fate\"','Armor','Torso','af19fb14-ac9a-4886-a0bc-e2914e72971e','','',NULL), -('6607','Pingala Seeds','Cargo','Cargo','0424256a-8e7f-4cf6-b8b3-bfb0eb933b46','','',NULL), -('6608','gibbs_outfit_01','Char_Clothing_Torso_1','Female','34f56333-ca35-4656-9c4f-50302148e8bc','','',NULL), -('6609','400i IceBreak Livery','Paints','UNDEFINED','96283179-6513-4c52-b107-91964ea78242','','',NULL), -('6610','MOTH Sundial Livery','Paints','UNDEFINED','167198fb-ba5f-4ad5-97ca-b7da3f0554cd','','',NULL), -('6611','Lynx Arms Pariah','Armor','Arms','6708804f-b781-40b7-b691-608f83641aec','','',NULL), -('6612','Asgard Sand Sea Livery','Paints','UNDEFINED','f536fd69-3c41-4962-9d9a-52949ac9f9ed','','',NULL), -('6613','Door Control','Door','UNDEFINED','8c262c16-c3ef-4a86-9f55-f37010f0044d','','',NULL), -('6614','Bed','Seat','UNDEFINED','ade4208a-2bff-4bf8-a9c5-d32003145c60','','',NULL), -('6615','BANU_Defender_Thruster_Mav','ManneuverThruster','JointThruster','c631861b-11f6-4635-be10-df27e1e2688a','','',NULL), -('6616','Geist Backpack Snow Camo','Armor','Backpack','5d4fc095-7a9f-44a6-b9e6-adbd124fcc9c','','',NULL), -('6617','Iron','Cargo','Small','1b519781-eaa8-42e4-8f24-228cf833d104','','',NULL), -('6618','Eclipse Knockout Livery','Paints','UNDEFINED','1e1e8ef2-964d-4868-9068-c759edcbc9cc','','',NULL), -('6619','RSI_Scorpius_Antares_SCItem_Dashboard_Gunner','SeatDashboard','UNDEFINED','5b22a8bd-c734-4092-957e-d5e2f3ab9675','','',NULL), -('6620','Mining_Consumable_01','MiningModifier','UNDEFINED','d68e9225-0858-4611-a5dc-b795a6a9db88','','',NULL), -('6621','Medium Artifact Fragment (Damaged)','Misc','UNDEFINED','90d6be79-89e5-4794-a0d1-f88ccb6c97a7','','',NULL), -('6622','Aufeis','Cooler','UNDEFINED','308a2992-585b-40ba-9cfb-51251a3e0683','','',NULL), -('6623','Internal Tank','FuelTank','Fuel','4ace014a-78c2-462b-aa41-059edc0a3062','','',NULL), -('6624','Morozov-SH-I Legs Lifeforce','Armor','Legs','0328fdb0-702d-453b-bd53-edde68751989','','',NULL), -('6625','Arrow Headhunters Reaper Livery','Paints','UNDEFINED','3f5233ab-c7ef-42f9-a7d4-b4dfe7338051','','',NULL), -('6626','Tevarin War Service Marker (Damaged)','Misc','Trophy','6ceed597-ed94-4abb-828a-f493e0d0b374','','',NULL), -('6627','CF-667 Mammoth Repeater','Weapon','Gun','7189e901-34d8-45a4-bf3e-0932c7958424','','',NULL), -('6628','Feynmaline','Cargo','Cargo','2fab375a-d5ac-4db2-8825-02ec1192acac','','',NULL), -('6629','AEGS_Door_Decal_Pilot_ReadyRm','Decal','DoorPart','b2bf878d-e10d-430c-880a-9c3eead4127d','','',NULL), -('6630','FLTR-L Module','MiningModifier','Gun','e2647306-e5d7-452a-8af6-d7141b540a6b','','',NULL), -('6631','can_drink_1_pips_a','Cargo','UNDEFINED','deba927d-970b-4573-84a8-d5fc7fd162bd','','',NULL), -('6632','INTK_RSI_Aurora_CL','FuelIntake','Fuel','f0960ba1-e1c1-4174-8382-6b6a8f06a8c5','','',NULL), -('6633','rod_cargo_rail_3_a_02x01x01_04Ports','ShopDisplay','Default','043712af-4ea5-4288-bd4c-9ff12b4b68ad','','',NULL), -('6634','Taranite','Cargo','Cargo','5aa1a8d8-f013-4c80-87de-d8021bbd19da','','',NULL), -('6635','SHIELDS','ShieldController','UNDEFINED','d85ccfb1-ae3f-4749-a8d1-ffebd639fec7','','',NULL), -('6636','ht_crate_dry_1_0125x0125x0125_a','Cargo','UNDEFINED','751e0238-ea7a-4a87-a3d9-b84dd374a902','','',NULL), -('6637','Construction Materials','Cargo','Cargo','e094bf88-f71e-4410-8d5e-8d72097dbc43','','',NULL), -('6638','Razor Racing Livery','Paints','UNDEFINED','9a4947ae-c956-4894-8b86-b4bc4c664e54','','',NULL), -('6639','Door Control','ControlPanel','DoorPart','8000f80c-772c-424d-9b13-b2b4c018ebb5','','',NULL), -('6640','Fluorine','Cargo','Cargo','344dc60f-f744-43cd-b3e9-177b1e3c6f16','','',NULL), -('6641','Door Control','ControlPanel','DoorPart','3a8bdcea-bb0e-4bf1-b32f-67636cc19055','','',NULL), -('6642','Apollo Tier 1 Module Right','Module','UNDEFINED','40f36374-37de-9184-e880-cc5ac6c7749e','','',NULL), -('6643','Cumulus Pants Brown','Char_Clothing_Legs','UNDEFINED','f9c11af1-1b13-4694-836c-612fa23e867d','','',NULL), -('6644','DockingTube_Fuel_Ports_AEGS_Redeemer','DockingCollar','UNDEFINED','cdc570e0-1a01-41d9-bd36-574fadd012d4','','',NULL), -('6645','Talon Crimson Livery','Paints','UNDEFINED','2fc900c8-625b-4cff-b634-ef9e221aec86','','',NULL), -('6646','AAT-34 Turret','Turret','MannedTurret','07fda541-7c95-461f-a940-ea92a7f3c8ba','','',NULL), -('6647','Degnous Root','Cargo','Cargo','0ce70251-0a51-4713-ba2d-1649206a0a7d','','',NULL), -('6648','Radar_Display_C8_Pisces','Display','UNDEFINED','2534989e-7359-4741-a527-00fbd058b3ef','','',NULL), -('6649','Erebos','QuantumDrive','UNDEFINED','27a34dd7-30aa-4eca-ae37-1f87e343e238','','',NULL), -('6650','Adiva Jacket Olive','Char_Clothing_Torso_1','UNDEFINED','a2049dec-d59c-4b66-9cce-df6cd68bd5c7','','',NULL), -('6651','Freelancer Ship Armor','Armor','Medium','b36b3203-545b-4693-9a4b-ffa981a3f2da','','',NULL), -('6652','counter_components_end_b_0038x01x01','ShopDisplay','UNDEFINED','09f29a90-5b9e-4ac9-a7b2-6d21a9cfa626','','',NULL), -('6653','AEGS_Avenger_Warlock_Thruster_Main','MainThruster','FixedThruster','7da85561-0f09-4452-9fe8-da1acae2dd7b','','',NULL), -('6654','AIModule_Unmanned_PU_PSec_GreenzoneTurret_Small','AIModule','UNDEFINED','675aa71e-d7da-453e-895d-94c5593e54fa','','',NULL), -('6655','MISC Hat','Char_Clothing_Hat','UNDEFINED','068920d7-06fc-49a5-8ad5-c4c29f791139','','',NULL), -('6656','Book','Misc','UNDEFINED','aa0b2693-e9b0-487a-843b-9862fb745e44','','',NULL), -('6657','Caterpillar microTech Livery','Paints','UNDEFINED','0877710f-546a-401f-9e1f-dd249cb903f3','','',NULL), -('6658','Morozov-SH Legs Brushdrift','Armor','Legs','69f4611b-0347-428f-be08-4636faa8d076','','',NULL), -('6659','Venture Undersuit Seagreen','Armor','Undersuit','c4278b54-bd34-46a4-a704-9322a37eb1dc','','',NULL), -('6660','Strata Legs Shubin Edition','Armor','Legs','4ca81b2d-a601-4bb0-bc03-302b9958d67a','','',NULL), -('6661','Door Control','Door','UNDEFINED','fa586c3a-7ee6-4e63-bb3a-c0fa3cc5473a','','',NULL), -('6662','TrueDef-Pro Legs Black/Grey','Armor','Legs','169f4e21-4b7b-42ba-ba7d-16edd1f5a4bf','','',NULL), -('6663','Dolivine','Cargo','Cargo','8b1de3eb-534e-432b-b0bb-b505fa6f5b09','','',NULL), -('6664','Bed_AEGS_Reclaimer_Captain','Usable','UNDEFINED','ed19c900-a675-484d-a2c7-79ba4a96b7f2','','',NULL), -('6665','CRUS_Starfighter_Ballistic_Nacelle_Right','Misc','UNDEFINED','97b387b0-a28c-4011-8106-ad1dbdc0201a','','',NULL), -('6666','Seat','Usable','UNDEFINED','fa6d6296-e4b3-4ac6-8103-c9fa773347ca','','',NULL), -('6667','TRGT. STATUS','Seat','UNDEFINED','16948c42-d793-486a-94fc-94a2ba5510ef','','',NULL), -('6668','Strata Legs Neptune','Armor','Legs','c7b9de5a-0887-4c57-a4b7-d8a6699218f9','','',NULL), -('6669','Torreto Shirt','Char_Clothing_Torso_1','UNDEFINED','77d67708-5f1f-49c7-b845-b8e68796c7d2','','',NULL), -('6670','Oracle Helmet Orange','Armor','Helmet','acc632e0-5547-485a-8bb7-a11c4713709a','','',NULL), -('6671','Lynx Core Dark Green','Armor','Torso','65d7e6df-14c0-404b-a35a-0184d457760f','','',NULL), -('6672','MacFlex Legs Red','Armor','Legs','c9ea8b31-e7e6-46ca-84e8-7c4dc7fee8da','','',NULL), -('6673','Cutlass Ghoulish Green Livery','Paints','UNDEFINED','15fc396e-b987-4007-bf2b-be42164711d3','','',NULL), -('6674','X1 2954 Auspicious Red Dog Livery','Paints','UNDEFINED','86a2ad62-8eab-4601-b972-a2ca92b5ff93','','',NULL), -('6675','Falco','Shield','UNDEFINED','b64ab3f3-4b44-418c-a438-57a04a1cf1b2','','',NULL), -('6676','Railing_Straight_8m_Lowtech_Open_A','Usable','UNDEFINED','6334efd7-41bb-41a4-8e08-7634cdc2efec','','',NULL), -('6677','CargoBox_050x050x050_Tank_Gas','Cargo','Cargo','0b965a15-8a05-4dcb-aba7-7632a2ad32a6','','',NULL), -('6678','Citadel-SE Arms Maroon','Armor','Arms','5efce443-201d-420b-90f6-df2253591609','','',NULL), -('6679','Morningstar Helmet Raven','Armor','Helmet','b403c4a7-136f-4b4e-897c-6dd9f9bba9f0','','',NULL), -('6680','ANVL_Hornet_F7CM_Dashboard_Pilot','SeatDashboard','UNDEFINED','9362b930-6f06-48a4-a927-aff2e134030d','','',NULL), -('6681','PTV Gunmetal Livery','Paints','UNDEFINED','7b35dc9f-c013-4b54-b6a5-d50c3c3c9133','','',NULL), -('6682','ORIG_890_Jump_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','bd3b1279-ad58-4a62-8ad7-c2c8c13a6397','','',NULL), -('6683','PAB-1 Core Red','Armor','Torso','805e384f-750d-4ead-9e3d-419274577e87','','',NULL), -('6684','ORC-mkX Helmet Twilight','Armor','Helmet','a501cbcc-781c-4fbf-bb66-73a3f8b18522','','',NULL), -('6685','MISC T-Shirt','Char_Clothing_Torso_0','UNDEFINED','f254ba07-da76-463c-a26b-c3a6f54cd168','','',NULL), -('6686','CNOU_HoverQuad_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','8b163b82-0a6e-4a96-83be-07274bc1907a','','',NULL), -('6687','Door','Door','UNDEFINED','29f39234-767f-45f5-af5c-72630b918753','','',NULL), -('6688','PAB-1 Core','Armor','Torso','10372410-e9a9-4b71-b12a-9d09f8838338','','',NULL), -('6689','Fresh Food','Cargo','Small','6aad1a77-cef2-405f-8f59-24827f37a4bf','','',NULL), -('6690','Origin Black Bishop','Gadget','UNDEFINED','17b90587-f5be-4367-9d96-3b8b86d8d51d','','',NULL), -('6691','Weapon_Rack_1_Volt_Shotgun_Uncommon_003','Usable','UNDEFINED','6b726a77-ae70-4cd0-bdcd-7f3c834438ea','','',NULL), -('6692','G-2 Helmet White','Armor','Helmet','0c18e5a2-e0c4-4e9b-855a-e9dfea9525d2','','',NULL), -('6693','Orbgn_None_Consumable_Keycard_OrbitalAccess','FPS_Consumable','Hacking','9c1f1060-259e-499c-8b00-758807c9caab','','',NULL), -('6694','Carryable_1H_SQ_medical_bag_1_plasma_a','Misc','UNDEFINED','0527f859-9b79-4ff8-996a-97d3261ebeca','','',NULL), -('6695','Kopion Horn','Misc','UNDEFINED','c85b3312-3aaa-478a-9afb-344d151a00ef','','',NULL), -('6696','Cuesta Shoes','Char_Clothing_Feet','UNDEFINED','0c111e7a-f912-4e91-9472-08fad4920cc8','','',NULL), -('6697','Impact I Mining Laser','Mining','Gun','6429e3d3-c813-4dfc-bc68-c95b54123722','','',NULL), -('6698','Odyssey II Helmet Yellow','Armor','Helmet','9de3a559-0136-4baf-b2ce-ab7fdda4bec5','','',NULL), -('6699','Drink_bottle_absinthe_01_a','Drink','Bottle','6ae5b751-cec7-471a-a0e0-d81ddb8a7819','','',NULL), -('6700','RSI_Salvation_Thruster_Main','MainThruster','FixedThruster','a20d2835-64ef-41aa-b4ea-10121d143e1a','','',NULL), -('6701','Avenger Shroud Livery','Paints','UNDEFINED','33165ef1-ff5a-4b93-8653-e6f6e1e0b4ab','','',NULL), -('6702','Carryable_1H_CY_garnish_olive_1_a','Misc','UNDEFINED','b7e6507d-1020-4a02-a71a-0fcfebb952f9','','',NULL), -('6703','Scorpius Stinger Livery','Paints','UNDEFINED','7aa165d8-a1be-49de-be43-d5559b8d054b','','',NULL), -('6704','Door Control','Door','UNDEFINED','37506e70-b45c-45c1-b76d-6cefae3f5c84','','',NULL), -('6705','Table','Cargo','UNDEFINED','29a64ac3-ab64-4289-83ce-b32754f9f1ba','','',NULL), -('6706','Stoneskin Helmet Tactical','Armor','Helmet','5973794c-82dc-445a-a7f8-c95c5c73d0f0','','',NULL), -('6707','Seat','SeatAccess','UNDEFINED','a97e9b72-1e81-44a3-9384-0ebe086ff841','','',NULL), -('6708','Calamity XII-EM Torpedo','Missile','Torpedo','f253a14d-26a1-4087-9b4a-2b2d96a179fc','','',NULL), -('6709','INTK_ANVL_Arrow','FuelIntake','Fuel','6401a5fc-f3a8-4a2a-a48d-3df8cb40bbd2','','',NULL), -('6710','DCP Armor Legs Clawed Steel','Armor','Legs','03f5ecd2-d90a-4b5e-9ac6-29994b7a1450','','',NULL), -('6711','C54 \"Origin Racing\" SMG','Weapon','Medium','84eefadf-08c0-4a9b-ac96-c6c46528420e','','',NULL), -('6712','Debnam Gloves Olive','Char_Clothing_Hands','UNDEFINED','2d1536b0-1757-45af-b1a9-d82e854a97b9','','',NULL), -('6713','Door','Door','UNDEFINED','b049ec6c-ea2c-4887-a6aa-13352839b2ee','','',NULL), -('6714','300 Series Granite Paint','Paints','UNDEFINED','4c013940-6e22-428d-93ce-5e8c672a556e','','',NULL), -('6715','display_ship_components_03x0075x0275_a_qdrives','ShopDisplay','UNDEFINED','628e1e0c-f5fb-48b1-a780-17e923259910','','',NULL), -('6716','none_consumable_hackingchip_02','FPS_Consumable','Hacking','c7372f52-b36f-466f-9aaa-36a291b47883','','',NULL), -('6717','BEHR_BallisticRepeater_Barrel_S2','WeaponAttachment','Barrel','91eb90b3-23dc-4215-aa33-6140aa438df6','','',NULL), -('6718','Antium Legs','Armor','Legs','4221af8b-ae76-423e-b178-169756aa1757','','',NULL), -('6719','Construction Rubble','Cargo','Cargo','365102c7-d987-4ecd-a681-31e3b7583bac','','',NULL), -('6720','Weapon Rack','Usable','UNDEFINED','f6f5df72-e8ed-4daa-8787-a22d4f85f1eb','','',NULL), -('6721','ANVL_Valkyrie_CargoGrid','CargoGrid','UNDEFINED','90bf8f6d-b4a7-41bb-9678-b6fad483ed54','','',NULL), -('6722','Carryable_2H_CY_weight_barbell_bumperplate_1_30kg_a','Misc','UNDEFINED','096c5431-0685-4a07-b9bf-439c89483250','','',NULL), -('6723','ANVL_Door_Decal_Carrack_Cargo','Decal','DoorPart','db4491ff-db7d-4984-8ac9-935c9d383437','','',NULL), -('6724','Fizzz Triple Berry','Drink','Can','8c1d1884-f3e1-49ca-a7f1-f46dd59a3b9c','','',NULL), -('6725','Internal Tank','QuantumFuelTank','QuantumFuel','6147fb39-4ade-4e00-a2ea-b556f947e342','','',NULL), -('6726','VariPuck S4 Gimbal Mount','Turret','GunTurret','91cbab68-afd2-456d-8df7-058d534b1668','','',NULL), -('6727','Iron (Ore)','Cargo','Cargo','271effd5-3aa8-4538-b9a0-b0f33dc86d68','','',NULL), -('6728','ZeroRush','Cooler','UNDEFINED','d1790ef8-ec9e-4193-887c-e92d0889e326','','',NULL), -('6729','Carryable_1H_SQ_Datapad_Fluff_Orb_HathorGroup_008','Misc','UNDEFINED','9c32a061-eb28-4b31-9590-3709808e7857','','',NULL), -('6730','RSI_Scorpius_SCItem_Dashboard_Gunner','SeatDashboard','UNDEFINED','7a444021-53da-4e36-b42d-ccd158764707','','',NULL), -('6731','Koya Pants ','Char_Clothing_Legs','UNDEFINED','30bf223f-73f9-4d8a-9a8d-f787b884f83c','','',NULL), -('6732','Rime Module','MiningModifier','Gun','4af4857b-b564-4448-afbc-820ff288c0af','','',NULL), -('6733','Seat','SeatAccess','UNDEFINED','300e1eb0-2c2b-4990-a700-ed06fff4194c','','',NULL), -('6734','Koya Pants White Pinstripe','Char_Clothing_Legs','UNDEFINED','e80b04d2-24e5-4f01-9068-2920ca050b8e','','',NULL), -('6735','Flight Blade','FlightController','UNDEFINED','9de44e42-8ed1-40f7-961f-c208e864146a','','',NULL), -('6736','facial_hair_035','Char_Head_Beard','UNDEFINED','9cc49aed-9588-43ce-98df-b04791d717cd','','',NULL), -('6737','Slickdry Waders Saddle','Char_Clothing_Legs','UNDEFINED','9ecc270d-fcb6-4639-82b2-1d149b776230','','',NULL), -('6738','K7 Pants Green','Char_Clothing_Legs','UNDEFINED','bf3859ac-bdd7-4b11-95f9-319d3b4eaecc','','',NULL), -('6739','Valkyrie V Missile','Missile','Torpedo','b74c05cb-0f60-403a-92cf-663a12268830','','',NULL), -('6740','ANVL_Paladin_SCItem_Remote_Turret_Seat','Seat','UNDEFINED','c6169663-53ea-4400-8f2e-c175b1eefb39','','',NULL), -('6741','Internal Tank','FuelTank','Fuel','76c46bfb-45f8-47a7-b932-0b4345b7f6f1','','',NULL), -('6742','Bed_Pillow_AEGS_Med_Bay','Seat','UNDEFINED','d5a63ffc-bfd8-4c3e-9fe6-92754cbbac02','','',NULL), -('6743','Spicule','QuantumDrive','UNDEFINED','9ade5d70-fab6-43d5-9f12-72394fa2d5a0','','',NULL), -('6744','PH - eld_glasses_01_01_01','Char_Accessory_Eyes','UNDEFINED','438c2a51-e3f8-44de-97bc-5b03f0c19dfe','','',NULL), -('6745','Door Control','Door','UNDEFINED','778cd136-9785-4f9c-a974-03262e4ad99a','','',NULL), -('6746','Venture Core Purple','Armor','Torso','b75db55a-437f-45b0-9bf7-a58329a14fa0','','',NULL), -('6747','Venture Helmet Olive','Armor','Helmet','e6e7ca38-3b3f-4e4b-bee7-7a49f9f244d0','','',NULL), -('6748','Aegis Gladius - Noise Launcher','WeaponDefensive','CountermeasureLauncher','6515264d-c648-4338-ac15-9b543b2074dd','','',NULL), -('6749','Diluthermex','Cargo','Cargo','9c361f58-730b-4f29-a5d4-4de29624ec9e','','',NULL), -('6750','Weapon_Rack_GRIN_STV_1Slot','Usable','UNDEFINED','eb14320a-a67f-47ba-8c71-2f7a3e28b8c0','','',NULL), -('6751','Vehicle_Screen_MFD_Holographic_ORIG_X1_R','Display','UNDEFINED','25b9c162-87e1-4e8d-a022-810c57bd6268','','',NULL), -('6752','Carryable_2H_FL_Safe_1_a','Misc','UNDEFINED','d9227583-b725-43d2-a084-094d4d928371','','',NULL), -('6753','Door_Ship_Sensor_Proximity','Sensor','DoorPart','f920f109-832c-4f00-a444-5b2a7bea845c','','',NULL), -('6754','Manned Turret','TurretBase','MannedTurret','1038eb5e-13f6-4c9b-86c0-09d0ada966cb','','',NULL), -('6755','Door Control','ControlPanel','DoorPart','cc782051-099e-4ee3-8a34-e22f1c7cda50','','',NULL), -('6756','ADP Legs Yellow','Armor','Legs','cd5f4f54-3426-4030-ae86-addf74c94d96','','',NULL), -('6757','PAB-1 Legs Sakura Sun Edition','Armor','Legs','a8e77bfb-5882-4b2d-ab97-3067088387d0','','',NULL), -('6758','ADP Core Executive','Armor','Torso','42681059-b715-4690-8d48-25bd830962a8','','',NULL), -('6759','Hydrogen Fuel','Cargo','Cargo','c9540a47-4002-4dba-9c24-3658d4e850d8','','',NULL), -('6760','Food_bowl_puree_01_c','Food','Consumable','a9959047-793f-44f1-9c0e-1f982268fed0','','',NULL), -('6761','Redfin Energy Modulators','Cargo','Cargo','8c71b1a9-0aa7-4fc3-8a87-34c8fb363fd2','','',NULL), -('6762','Cutter Tectonic Livery','Paints','UNDEFINED','0fe14f78-0560-4a72-9e93-976db2cb468f','','',NULL), -('6763','TOAG_LaserGatling_FiringMechanism_S2','WeaponAttachment','FiringMechanism','57dfbdf1-e62d-470b-a89f-5aa2f8dda06d','','',NULL), -('6764','TRGT. STATUS','Seat','UNDEFINED','d9754479-4d29-4ccd-b4ec-ab46cf273f1e','','',NULL), -('6765','Antium Arms','Armor','Arms','127fb2c6-6566-4e17-8e6c-ce214e2ec408','','',NULL), -('6766','Nox Star Kitten Livery','Paints','UNDEFINED','2b0dc10d-7167-4e88-bc8b-9ee52eae5855','','',NULL), -('6767','Door','Door','UNDEFINED','ff634075-d44d-4d9f-8d69-85cce6268372','','',NULL), -('6768','Seat','SeatAccess','UNDEFINED','7c88bb0f-b850-4310-bd2e-54a7225891c2','','',NULL), -('6769','Ranta Dung','Cargo','Cargo','7f4d715e-b7d4-45d6-947c-f7d48a20ebc7','','',NULL), -('6770','Screen','SeatDashboard','UNDEFINED','dbdb43e1-085f-495d-88bc-f495cf5d8bee','','',NULL), -('6771','Colossus Bomb','Bomb','Utility','2b8a744d-c0a0-4f92-b0e6-bf4ae077cc11','','',NULL), -('6772','Origin White Pawn','Gadget','UNDEFINED','66f709d7-fc2a-40d8-adde-77d556339b15','','',NULL), -('6773','Toughlife Boots Dark Red','Char_Clothing_Feet','UNDEFINED','888adbc8-ccfc-4de6-99a5-abeccd65b468','','',NULL), -('6774','Zelena Pants Redwood and Bisbee Boots','Char_Clothing_Legs','UNDEFINED','5c0f50e2-3711-4f3a-aa21-d1d83ee4b004','','',NULL), -('6775','AEGS_Door_Decal_Avenger_Pod_3','Decal','DoorPart','1abbc87e-be8f-484b-8afb-f67b3e5bac63','','',NULL), -('6776','Pulse Laser Pistol Battery (60 Cap)','WeaponAttachment','Magazine','b76f9795-28fe-40a3-9a60-ffdbc4e8c713','','',NULL), -('6777','Morozov-SH Arms Terracotta','Armor','Arms','0ebe3817-3cbe-4a2a-9453-fbf0a81d0cbe','','',NULL), -('6778','SalvageInternalStorage_MISC_Fortune','SalvageInternalStorage','UNDEFINED','a88fdc30-acab-4fec-b072-fe80e1aa35e5','','',NULL), -('6779','Door Control','Door','UNDEFINED','407d9437-32f9-4366-b204-6908638dc618','','',NULL), -('6780','Nitrogen','Cargo','Cargo','d139e261-4664-4fa7-aeed-90e578eb0af1','','',NULL), -('6781','DRAK_Cutlass_Blue_Thruster_Maneuver_Rear_Top','ManneuverThruster','JointThruster','d8a87992-9295-48a7-a7c3-084c68e50176','','',NULL), -('6782','Cliffback T-Shirt Dark Green','Char_Clothing_Torso_0','UNDEFINED','4a0a2b97-95ac-46aa-8b55-1940d981c130','','',NULL), -('6783','Ardent Boots Tan','Char_Clothing_Feet','UNDEFINED','8b387f1f-9f69-47f3-906f-53017c5253a0','','',NULL), -('6784','Bioplastic','Cargo','Cargo','b72e635a-6b17-45a8-b93a-3909a9df41e0','','',NULL), -('6785','ANVL_Asgard_Thruster_Main_Aux','MainThruster','FixedThruster','e4a7e38a-1630-41e9-87ad-c01ca421d6f5','','',NULL), -('6786','DockingTube_Fuel_Ports_ORIG_m50','DockingCollar','UNDEFINED','8e8af6ac-bc1a-49d0-a60b-05d579cee408','','',NULL), -('6787','Waveshift','Gadget','Gadget','478ffd41-77dc-4239-a842-9fdf3d2072ac','','',NULL), -('6788','ORC-mkV Core Executive','Armor','Torso','b082f5ea-c134-48be-bff3-bfa9a354c1b5','','',NULL), -('6789','Lightstrike VI Cannon','Weapon','Gun','a336be9a-ea2f-4db2-97ec-593ad6134471','','',NULL), -('6790','E\'tam','Cargo','Cargo','56668f00-fe4b-4218-800a-fb5d370b49bc','','',NULL), -('6791','Prism Laser Shotgun','Weapon','Medium','7dd1988f-77cf-40f0-a29e-dac5e2186aad','','',NULL), -('6792','Internal Tank','QuantumFuelTank','QuantumFuel','9a7c9328-1cd7-4043-8079-65db61da1e6a','','',NULL), -('6793','Book','Misc','UNDEFINED','3fbe94a7-0d5d-483a-b8a9-f3c0ba193286','','',NULL), -('6794','Door','Door','UNDEFINED','91e00b16-cd33-4830-a48c-aecfdb4d4c77','','',NULL), -('6795','INTK_MISC_Starlancer','FuelIntake','Fuel','d902e16e-757b-4b35-8ddd-83c9063d8171','','',NULL), -('6796','AEGS_Sabre_Thruster_Retro_L','ManneuverThruster','FixedThruster','f5aefa5e-fe35-4b3c-8f42-9027994408c8','','',NULL), -('6797','MPUV-1T Sunlight Livery','Paints','UNDEFINED','628547e0-ca96-4394-bc3a-d30f756623fb','','',NULL), -('6798','GLSN_Shiv_Thruster_Main','MainThruster','FixedThruster','0de41740-720e-4f3a-b394-15a39e0b9576','','',NULL), -('6799','Atlasium','Cargo','Cargo','b81f3760-1653-4f6c-9cf0-04b139fefd0e','','',NULL), -('6800','Falston Jumpsuit \"Shubin Edition\"','Char_Clothing_Torso_1','UNDEFINED','2fa01652-f297-4c9d-a29c-078d369ccfdb','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('6801','Decari Pod','Misc','Harvestable','46ca075c-afe4-406d-b4d2-e1323025c582','','',NULL), -('6802','Ana Core Wao','Armor','Torso','03684512-8a00-423e-8b59-0798da4f5512','','',NULL), -('6803','DockingTube_Fuel_Ports_ARGO_MOTH','DockingCollar','UNDEFINED','ccb1db2c-7db8-4fca-963c-29ff3b652f3e','','',NULL), -('6804','Seat','SeatAccess','UNDEFINED','d352ae56-d526-402a-94ec-238a85d30dee','','',NULL), -('6805','Adrift Shirt Dark Blue','Char_Clothing_Torso_0','UNDEFINED','7bf6fbca-b47d-41ca-8ae9-9145c48315ae','','',NULL), -('6806','Weapon_Rack_1_GMNI_SMG_Common_001','Usable','UNDEFINED','5a512064-dd6a-405c-b4a6-eefa83628e64','','',NULL), -('6807','PTV Tactical Stealth Livery','Paints','UNDEFINED','14493997-2f6e-4ea5-b3d1-a9a5c0f6143a','','',NULL), -('6808','Colonialism_Outpost_RN_AA_Missile','Missile','UNDEFINED','4bc2513a-1440-4c6c-8a89-fd351b2d7165','','',NULL), -('6809','Lynx Legs Yellow','Armor','Legs','84241e79-fb77-4fba-8783-1df8c6744dce','','',NULL), -('6810','Counter_2m_mix_station','Usable','UNDEFINED','d9c3c030-85d6-4c82-b29f-7e4dc6528562','','',NULL), -('6811','RAFT Anchor Livery','Paints','UNDEFINED','2e53c623-fc47-4a9b-8c76-171ada174078','','',NULL), -('6812','AEGS_Door_Decal_Avenger_Pod_4','Decal','DoorPart','f411882c-2804-4775-903b-f37e23525d1a','','',NULL), -('6813','Internal Tank','FuelTank','Fuel','694fd7b8-882e-42b2-97c8-5a79a5115bd6','','',NULL), -('6814','RSI Noise Launcher','WeaponDefensive','CountermeasureLauncher','38977e1e-2908-4c21-a303-e38ac50692a4','','',NULL), -('6815','KRIG_P72_Archimedes_Thruster_Mav_Fixed_02','ManneuverThruster','FixedThruster','166c6028-9e7e-440f-a987-521f1207f2ff','','',NULL), -('6816','INTK_ANVL_Hornet_F7A_Mk1','FuelIntake','Fuel','b6ed4db6-182a-44d7-bce3-45c0059f1431','','',NULL), -('6817','ORIG_100i_Thruster_Mav_Fixed_Bottom','ManneuverThruster','FixedThruster','6bb156b6-25bd-46f2-ad21-9521641d95d4','','',NULL), -('6818','Remote Turret','Turret','GunTurret','30e5fb7f-35c1-47af-92b9-0ebca8200464','','',NULL), -('6819','Door Control','ControlPanel','DoorPart','c4909f3e-ae9f-446f-84d3-de94b845eeac','','',NULL), -('6820','Internal Tank','FuelTank','Fuel','abba6b91-b85b-4239-945a-3dc9eb2a5fab','','',NULL), -('6821','IronBand Hard Hat','Char_Clothing_Hat','UNDEFINED','47f7b9e9-9b39-49f1-9bfc-69cba5cdc8ba','','',NULL), -('6822','Venture Undersuit Alpha','Armor','Undersuit','5014225a-bb4a-4467-b31b-5e68f7c219dc','','',NULL), -('6823','Raptor IV Missile','Missile','Missile','e1659bcf-0595-43ad-9376-386e4ca875e0','','',NULL), -('6824','Door','Door','UNDEFINED','205e6ad6-9f57-45b1-82d4-6bb6f9803b79','','',NULL), -('6825','Ready-Up Helmet Blue','Char_Clothing_Hat','UNDEFINED','700e400e-9616-4296-9d07-8410703033fd','','',NULL), -('6826','Access','SeatAccess','UNDEFINED','63b9221c-b122-463c-8b4f-32d477aca394','','',NULL), -('6827','StorageCage_Quantum_CustomLoadout','Cargo','UNDEFINED','b16f51c2-5d12-4505-9e25-33d98c4201c0','','',NULL), -('6828','Railing_Straight_1m_LowTech_Util_Stairs_01x01_end_a','Usable','UNDEFINED','04f17b85-f030-4a7b-aa33-85aeed4ca16f','','',NULL), -('6829','Osoian Hides','Cargo','Cargo','c010f532-cd8a-43b4-b732-19e57f14b29d','','',NULL), -('6830','Quantity','Misc','UNDEFINED','4630c3e6-cb4c-4be0-9772-e71905acf61d','','',NULL), -('6831','Bed','Usable','UNDEFINED','5c373b36-ae86-424a-b5d5-328f4b86e910','','',NULL), -('6832','Agricultural Supplies','Cargo','Cargo','491919c3-3003-499e-b540-f9105fdf936d','','',NULL), -('6833','XS-90 Explorer Goggles','Char_Accessory_Eyes','UNDEFINED','aa482baf-49f5-4d73-957a-cbf593d62a89','','',NULL), -('6834','Parallax \"Shock Trooper\" Energy Assault Rifle','Weapon','Medium','98efd8ff-b0ba-48cf-bb48-3ff4e1bd3b3f','','',NULL), -('6835','Corsair Skullcrusher Livery','Paints','UNDEFINED','4d7130bd-e4a0-462c-a0bd-2efd214bdb66','','',NULL), -('6836','Internal Tank','QuantumFuelTank','QuantumFuel','91beb033-db49-4a90-96a3-bcf26556a4e8','','',NULL), -('6837','stand_shop_large_PowerPlant','ShopDisplay','UNDEFINED','17b47a33-4d3c-46a6-a8a5-80465d6bd996','','',NULL), -('6838','Seat','Usable','UNDEFINED','70706c64-7219-4315-abc5-71ba3681e962','','',NULL), -('6839','Carrack Plushie','Misc','Personal','d8aa4cc2-0957-4ea8-b1fa-8ad32e48f9a8','','',NULL), -('6840','Resolu','Radar','MidRangeRadar','188ec15a-2fc2-46f4-9679-2b78c86a8a7d','','',NULL), -('6841','Seat','Usable','UNDEFINED','9e7d6018-1fe9-4a46-87c0-207cacf31472','','',NULL), -('6842','ORIG_M50_Thruster_Mav_Joint_old','ManneuverThruster','FixedThruster','5a7d0ecd-3b5c-433e-ad8e-b679c446a87a','','',NULL), -('6843','MOLE Shubin Livery','Paints','UNDEFINED','4eb550d5-3b35-4f43-a399-e47d34ddff5a','','',NULL), -('6844','Arrowhead Sniper Rifle Battery (16 cap)','WeaponAttachment','Magazine','66f0410b-bcd9-4be5-96ed-aab6f65f3420','','',NULL), -('6845','Arrowhead \"Pathfinder\" Sniper Rifle','Weapon','Medium','f5ad75c2-151d-4d62-96ae-f522e026c1e2','','',NULL), -('6846','Zeus Exploration Suit Backpack','Armor','Backpack','3c584b93-bf9d-4a6e-999d-6c21b81c08be','','',NULL), -('6847','Razorback Pants Twilight','Char_Clothing_Legs','UNDEFINED','6cde2140-e233-44f1-88a8-8af1690263ce','','',NULL), -('6848','Seat','Usable','UNDEFINED','c4ff7a76-69eb-4a0d-bebf-3c370e64299a','','',NULL), -('6849','Tuvois Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','8670a3d2-82c4-4a31-9e7c-7284aa3859af','','',NULL), -('6850','DRAK_Corsair_Gravity_Generator','Player','UNDEFINED','36ed120d-fffe-466e-bf7d-2248733caa86','','',NULL), -('6851','AEGS_Door_Decal_SleepingQ_01','Decal','DoorPart','035c96e9-e07d-47ee-87f9-d2b4696eba7b','','',NULL), -('6852','Giocoso Helmet Obsidian','Armor','Helmet','d674a92d-bcc0-4901-b5b1-3e335fdd9c38','','',NULL), -('6853','MaxLift Keystone Tractor Beam','Weapon','Gadget','685eb9f6-e072-4e12-a580-183b49cf3f37','','',NULL), -('6854','M5A Cannon','Weapon','Gun','f72ca643-b48c-4f6e-abb7-d5bc8eb261aa','','',NULL), -('6855','Weapon_Rack_1_BEHR_SMG_Common_001','Usable','UNDEFINED','8d2d0c0a-94bc-4a8b-8834-2946edb38859','','',NULL), -('6856','AEGS_Door_Decal_Escapepods_Large_02','Decal','DoorPart','ebd3b742-dab9-4231-b01a-74f3e9414dfe','','',NULL), -('6857','ANVL_Pisces_Thruster_Main_Right','MainThruster','FixedThruster','202ac51c-83e7-49ee-8b62-ae6c33057de5','','',NULL), -('6858','CRUS_Starlifter_Bomb_Bay_Covers','Misc','UNDEFINED','f3fe8784-8283-475c-b7a1-22daa7c7f1be','','',NULL), -('6859','Internal Tank','QuantumFuelTank','QuantumFuel','efe4f483-28eb-4780-8530-4329a0f98a16','','',NULL), -('6860','CSP-68L Backpack Epoque','Armor','Backpack','b6d25fdc-38b2-455a-a36c-63545734da97','','',NULL), -('6861','CRUS_Spirit_C1_Exterior_Nose_Collector','Misc','UNDEFINED','5ef8823c-e79e-492f-8aa8-c9f2a7069a8d','','',NULL), -('6862','Lynx Core Dark Red','Armor','Torso','35b59600-e2b5-4bf2-ad7b-b30f8966acd0','','',NULL), -('6863','Libio Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','d228a102-4054-475c-b03f-02b4be7e7b15','','',NULL), -('6864','AEGS_Reclaimer_CargoGrid_Small','CargoGrid','UNDEFINED','2f5c0872-3240-4c37-8b04-404ea1ec82b3','','',NULL), -('6865','Pampero Boots Maroon','Char_Clothing_Feet','UNDEFINED','c099e0e2-2bc3-4fe2-9e01-61f6f3875b3a','','',NULL), -('6866','Table_1_Seat_RSI_Com_Reception','Usable','UNDEFINED','8863dc62-a050-4ba5-86c5-55acb5d1ac02','','',NULL), -('6867','Covalex Cargo Plushie','Misc','Flair_Wall_Picture','eebd2f91-08b0-473d-84df-d02ab4179623','','',NULL), -('6868','AEGS_Redeemer_Storage_Decal_03','Decal','DoorPart','89c28fae-39ea-4123-9bcd-397775a5dfb0','','',NULL), -('6869','Door','DockingAnimator','UNDEFINED','14c3c643-7679-4d77-9bd2-06b7c23cbdd5','','',NULL), -('6870','tool_power_1_grinder_a','Misc','UNDEFINED','49807245-89fd-473e-8b9a-48d4783a173f','','',NULL), -('6871','Internal Tank','FuelTank','Fuel','126ea718-aa97-4165-b914-c45048bbf28d','','',NULL), -('6872','Hornet Mk II Fortitude Livery','Paints','UNDEFINED','f681a43f-16b2-4b3e-bcbc-3de64894ae73','','',NULL), -('6873','Quantity','Misc','UNDEFINED','648901db-e132-43be-ac80-5bb3191d2b79','','',NULL), -('6874','Camion Jacket','Char_Clothing_Torso_1','UNDEFINED','30467dd6-3c91-4e54-b3b6-988e3f2cc92c','','',NULL), -('6875','XDL \"Forest\" Monocular Rangefinder','Weapon','Gadget','28b8d79c-9bf8-4914-bc34-544a0c93ba2b','','',NULL), -('6876','hair_30_prop','Char_Hair_Prop','UNDEFINED','a373cffd-ada9-496d-bbb9-eb8e47373ef6','','',NULL), -('6877','Door Control','DockingAnimator','UNDEFINED','d560bd9c-e2b5-4d54-9b32-9eeac85ecfdf','','',NULL), -('6878','Arden-SL Legs Archangel','Armor','Legs','746618f0-65d2-4b2c-af99-b9f5c732ba7f','','',NULL), -('6879','Samya Tank Storm','Char_Clothing_Torso_0','UNDEFINED','b82c64c5-0a2f-4e64-91fd-78aac1d1216b','','',NULL), -('6880','EX-T10-IR \"Executor\" Torpedo','Missile','Torpedo','ad1356d1-384d-4368-916c-5af6b8ec91a3','','',NULL), -('6881','ANVL_Door_Decal_Carrack_AftTurret','Decal','DoorPart','630cf8de-89e7-4d34-a426-f2a7d6e515f4','','',NULL), -('6882','utensil_tray_1_food_a','Misc','UNDEFINED','1423da53-3f8a-483c-ae8c-02c227000915','','',NULL), -('6883','TrueDef-Pro Arms Black/Aqua/Silver','Armor','Arms','2db3851d-f617-4b52-8188-edcc24bc47f0','','',NULL), -('6884','m_human_mannequin_slaver_heavy_02','ShopDisplay','UNDEFINED','c56e7e61-94a9-49a0-adbf-d383fd5518ac','','',NULL), -('6885','XNAA_SanTokYai_Thruster_Mav_Bottom','ManneuverThruster','FlexThruster','4c4bbc4c-3b94-4786-aa75-95cfa0ba46ad','','',NULL), -('6886','Giotto Jacket Crusader Edition Purple Pinstripe','Char_Clothing_Torso_1','UNDEFINED','08de725e-377d-4145-ab12-ed51cfac2f70','','',NULL), -('6887','MISC_Starlancer_Seat_Access_Copilot','SeatAccess','UNDEFINED','bd9207ad-570a-4aaa-891a-0e4393b5a789','','',NULL), -('6888','Strata Core Pyrotechnic Edition','Armor','Torso','70517964-6996-417a-b114-203ced148192','','',NULL), -('6889','Tuvois Jacket Violet','Char_Clothing_Torso_1','UNDEFINED','b5aa2a2f-7763-4b19-b96b-24428b8089d4','','',NULL), -('6890','Carryable_2H_FL_05x05x05_Commodity_gas_inert_chlorine_a','Cargo','Small','cdf7f324-6fcb-437e-b4fd-533f04a13c7f','','',NULL), -('6891','microTech T-Shirt','Char_Clothing_Torso_0','UNDEFINED','51a16178-3bf2-4269-a9c8-579211767cea','','',NULL), -('6892','Door','Door','UNDEFINED','8bd56472-e0a6-4545-86c2-3d2914b1f5ab','','',NULL), -('6893','ORIG_100i_Thruster_Mav_Left','ManneuverThruster','FixedThruster','9736fe9f-b1b8-4bd7-9078-692259993405','','',NULL), -('6894','Door Control','ControlPanel','DoorPart','97ec43ac-fa16-430d-b61c-acc7e9db7873','','',NULL), -('6895','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','42fb5b92-5a36-4d83-bfbd-ef95a92ffbfb','','',NULL), -('6896','Tempus Tank Grey','Char_Clothing_Torso_0','UNDEFINED','fe35b83f-3417-4107-80eb-704d8187eabe','','',NULL), -('6897','Fluorine','Cargo','Cargo','9bdd0884-c52d-42f1-b376-d59656191a10','','',NULL), -('6898','TRGT. STATUS','Seat','UNDEFINED','578f5664-90a5-46fb-9dec-33609a5268af','','',NULL), -('6899','Burke QD','QuantumInterdictionGenerator','UNDEFINED','1f74e62c-6093-4d2f-a560-e33df359a7e4','','',NULL), -('6900','m_human_mannequin_rsi_suit_05','ShopDisplay','UNDEFINED','9c069433-37c0-4587-b495-30aeadf84fa9','','',NULL), -('6901','CRUS_Star_Runner_Thruster_VTOL','ManneuverThruster','UNDEFINED','8e4a059c-cbea-4483-bc90-e3817fdc7891','','',NULL), -('6902','Carryable_1H_SQ_drug_concealed_1_a','Misc','Utility','1ebafd12-9723-4018-a351-86db38af04aa','','',NULL), -('6903','Libio Jacket Violet','Char_Clothing_Torso_1','UNDEFINED','670c55b0-a6a0-4109-9e71-6585f20ed286','','',NULL), -('6904','AEGS_Eclipse_Thruster_Mav_Ball','ManneuverThruster','JointThruster','84c341b1-f785-49b5-b1c2-4eef3f8c9567','','',NULL), -('6905','TRGT. STATUS','Seat','UNDEFINED','0c8d595d-aade-41b2-a7b0-d4e843bf2f24','','',NULL), -('6906','Pampero Boots Yellow','Char_Clothing_Feet','UNDEFINED','15456f3d-5b7b-40ef-a750-cb5b5a8d669a','','',NULL), -('6907','H_Dashboard_Projector_HUD_CRUS_Starrunner','Display','UNDEFINED','de6f030f-c9dc-4956-8064-b3e0b38c6847','','',NULL), -('6908','Fractus Gloves Green','Char_Clothing_Hands','UNDEFINED','270e1803-7753-49ab-a6ac-9db7cb959c3c','','',NULL), -('6909','Door Control','Door','UNDEFINED','e9e378d8-57d5-4d7a-975d-b8ba10dfcbff','','',NULL), -('6910','Inquisitor Arms Black Steel','Armor','Arms','afbe1f75-0e68-4e80-8d79-88279c8c52e5','','',NULL), -('6911','Door','Door','UNDEFINED','25856473-b7fe-458e-a072-b9742aa5a7e6','','',NULL), -('6912','Seat','Usable','UNDEFINED','a52244da-adf0-4fd3-8b0c-8e6ae3405353','','',NULL), -('6913','Overlord Core Gilded','Armor','Torso','6348c2d2-4ea4-43d0-a48c-bcccb7cb0b3a','','',NULL), -('6914','ORC-mkV Legs Imperial','Armor','Legs','229667b8-fb14-465f-9113-2143b9fb0b94','','',NULL), -('6915','Seat','Usable','UNDEFINED','456a3502-372c-48ac-ab4e-c156d9fcae32','','',NULL), -('6916','TruBarrier Hazard Suit Hi-Vis Biohazard','Char_Clothing_Torso_1','UNDEFINED','d5c01391-1d1a-4403-ab99-760ac05a1a8a','','',NULL), -('6917','TRGT. STATUS','Seat','UNDEFINED','044f8411-2ca7-4d39-a251-790f6bf57a1a','','',NULL), -('6918','TruBarrier Hazard Suit Dark Biohazard','Char_Clothing_Torso_1','UNDEFINED','f652aeee-00e1-4a1e-ba3c-bf280bb67a4d','','',NULL), -('6919','TruBarrier Hazard Suit Warning','Char_Clothing_Torso_1','UNDEFINED','ec1b1120-cee3-4c28-82cd-234515d52c13','','',NULL), -('6920','Wrecker Legs Ashen','Armor','Legs','86df375f-c899-4e95-8f01-9a1d79e39998','','',NULL), -('6921','TruBarrier Hazard Suit Moss','Char_Clothing_Torso_1','UNDEFINED','086214a4-3164-4a74-bf2e-80174a7730a2','','',NULL), -('6922','Rattler II Missile','Missile','Missile','8acc8f1f-47cb-46e4-bf58-bea2ac5ff52e','','',NULL), -('6923','Nyman Jacket Violet','Char_Clothing_Torso_1','UNDEFINED','5c599276-b05c-45df-a449-5a7243c70478','','',NULL), -('6924','Carryable_1H_CY_glass_tall_1_a','Misc','UNDEFINED','90f64b7b-8580-4579-97fe-a7f69025f31f','','',NULL), -('6925','PH - nrs_shoes_03_01_9tails01','Char_Clothing_Feet','UNDEFINED','df9ee778-1e26-489a-b1fc-31f7ed4ee80b','','',NULL), -('6926','lna_pants_01_01_01','Char_Clothing_Legs','UNDEFINED','a9d26fa3-5bf4-43f9-a78e-64860f2c099b','','',NULL), -('6927','LIGHTS','LightController','UNDEFINED','056628be-ecee-41b9-9dd2-bb32215e6e34','','',NULL), -('6928','Outback Helmet Sleet','Armor','Helmet','023e95f4-857e-444c-8bf2-8901bae5ecf3','','',NULL), -('6929','SHIELDS','ShieldController','UNDEFINED','6088a5ab-0c46-4a1a-84ed-6e2ee44b359e','','',NULL), -('6930','AImodule_ATC','AIModule','UNDEFINED','c5003168-d252-4a02-bb18-3784ddc133dd','','',NULL), -('6931','Asgard Sky Forge Livery','Paints','UNDEFINED','d92e1048-724f-424f-8b7a-e7bb6d5e4551','','',NULL), -('6932','Monde Core Hemlock Camo','Armor','Torso','d1748942-0ee7-457c-8beb-d3c838aa62ea','','',NULL), -('6933','CRUS_Spirit_Copilot_Dashboard','SeatDashboard','UNDEFINED','be2c8dd0-e27a-48d6-8104-1a73539029a0','','',NULL), -('6934','VariPuck S5 Gimbal Mount','Turret','GunTurret','99e0ea17-45fc-4700-8607-ab879d05a284','','',NULL), -('6935','AAT-34 Turret','Turret','MannedTurret','6c4f23e5-d8dd-4950-91a3-7c595b09309a','','',NULL), -('6936','un_box_plastic_4_food_a','Misc','UNDEFINED','1232b136-7fc6-4755-8ab7-52d8edba7698','','',NULL), -('6937','Door Control','ControlPanel','DoorPart','ded7fede-f770-4744-8abd-3d0daf3df45d','','',NULL), -('6938','Stud','Char_Head_Piercings','UNDEFINED','2fdc6c23-c36a-489d-b418-45d1d5785b40','','',NULL), -('6939','Seat','Usable','UNDEFINED','3710c161-91d2-412c-b999-8412db355ff8','','',NULL), -('6940','Tracer Laser Pointer Green','WeaponAttachment','BottomAttachment','14bc8a2c-10f2-4f6e-a45e-eec476367d45','','',NULL), -('6941','Altruciatoxin','Cargo','Cargo','93f88b44-1f93-4eb5-909b-0af007228490','','',NULL), -('6942','Sawtooth Combat Knife','Weapon','Knife','ea692f4b-0545-4f0b-8d4f-05f41fa1e876','','',NULL), -('6943','Calico Core Tactical','Armor','Torso','751a666e-fb4b-49db-b90e-c9e50b5e0315','','',NULL), -('6944','Seat','Usable','UNDEFINED','4c271ea8-5b37-cf76-cc4c-8837cd8ab7a6','','',NULL), -('6945','Ouratite','Cargo','Cargo','a52c99f4-f270-4ac2-bbb0-57f67f0345f5','','',NULL), -('6946','Door Control','Door','UNDEFINED','c0d50ec6-8b20-47c6-aa7e-ce77e4004529','','',NULL), -('6947','Self Destruct Unit','SelfDestruct','UNDEFINED','e9655bd9-dd74-46ee-8a15-2ac3bd3dfde1','','',NULL), -('6948','Door Control','ControlPanel','DoorPart','21362886-8d5a-4cca-8ec0-69aef632dfc6','','',NULL), -('6949','Weapon_Rack_1_KSAR_Sniper_AmmoOnly_001','Usable','UNDEFINED','3b76312b-9785-47c4-a15d-af32200defed','','',NULL), -('6950','ANVL_Hornet_F7CM_Mk2_Thruster_Mav_1','ManneuverThruster','JointThruster','a96b2d4d-7b69-4271-a4e7-dec2d4705337','','',NULL), -('6951','Sureshot Helmet Red Menace','Armor','Helmet','720de38f-f785-4e83-bf9b-0413c89c2a76','','',NULL), -('6952','INTK_RSI_Constellation_Andromeda','FuelIntake','Fuel','12112340-9f10-40c8-930f-c8dca8dad7a8','','',NULL), -('6953','Door Control','Door','UNDEFINED','8b47f55e-cbb4-4734-a7a3-7484cb49cf20','','',NULL), -('6954','Internal Tank','QuantumFuelTank','QuantumFuel','25813f35-f83c-42d9-9134-95d50b453ac3','','',NULL), -('6955','Atlasium','Cargo','Cargo','c34a0aab-7e1d-437e-8ca4-9efc4c63ada9','','',NULL), -('6956','utensil_tray_1_food_a_with_loadout_whammersfood','Misc','UNDEFINED','71cc89db-b1b1-4928-8631-191b33c0a356','','',NULL), -('6957','Morozov-SH Legs Terracotta','Armor','Legs','88eb6f3c-b507-4173-bb14-126c7ecd6d7b','','',NULL), -('6958','Weapon_Rack_1_NONE_Shotgun_Common_001','Usable','UNDEFINED','29377a3c-8e97-4a84-8be0-a18359fad1a0','','',NULL), -('6959','ARMR_MISC_Hull_C','Armor','Medium','c28b6745-66b2-4c56-a44a-4b491509e3ff','','',NULL), -('6960','Waste','Cargo','Cargo','6f4b120f-3d7c-414e-b562-44d4c8368536','','',NULL), -('6961','CRUS_Intrepid_Thruster_VTOL','ManneuverThruster','UNDEFINED','2413b346-c154-436d-8079-88332e935149','','',NULL), -('6962','F55 LMG Magazine (150 cap)','WeaponAttachment','Magazine','daa0fe47-d6f7-44eb-a3d6-e3e13724a6ba','','',NULL), -('6963','Seat','Usable','UNDEFINED','b1f46824-50a5-4a49-9d67-23242869d88a','','',NULL), -('6964','TrueDef-Pro Arms Black/Silver/Yellow','Armor','Arms','72333eaa-2f24-4c32-a873-2f9604aceccb','','',NULL), -('6965','Door Control','Door','UNDEFINED','983c6a92-f22c-411b-bc23-556a05cd781d','','',NULL), -('6966','Ventris Jumpsuit Crusader Edition Blue','Char_Clothing_Torso_1','UNDEFINED','b823b761-7ef4-47a7-bd53-195159edce69','','',NULL), -('6967','Seat','SeatAccess','UNDEFINED','aebf797f-38aa-41e0-a3d7-b44dc7b3b137','','',NULL), -('6968','Ares Star Fighter Missile Launcher','MissileLauncher','MissileRack','fe1443e8-3688-4c23-9042-f9427843ed05','','',NULL), -('6969','Door Control','Door','UNDEFINED','13cdf225-9dd9-4e6f-92db-f36b2ae330b5','','',NULL), -('6970','Carryable_1H_CY_bottle_bar_14_mixer_b','Misc','UNDEFINED','c0ea0773-6379-4b16-96d7-dbc7988fc4d7','','',NULL), -('6971','Carryable_1H_CY_medical_eyedrop','Misc','UNDEFINED','66529aca-29ef-41bb-a710-506699709add','','',NULL), -('6972','400i 2954 Auspicious Red Dragon Livery','Paints','UNDEFINED','97526d66-1b33-4d66-b446-a06a2eb0e478','','',NULL), -('6973','CRUS_Starlifter_CargoGrid_Large_M2','CargoGrid','UNDEFINED','6fe4ea07-9414-45d0-8953-203239236d30','','',NULL), -('6974','Defiance Helmet Firestarter','Armor','Helmet','fdd7ea9e-e6d4-42e0-b56e-8758dd440ea5','','',NULL), -('6975','Door','Door','UNDEFINED','c663960f-0c1b-4931-a18b-30adce815514','','',NULL), -('6976','fruit_tray_1_c','Misc','UNDEFINED','f306dca0-85f9-4775-a033-e7140b05f070','','',NULL), -('6977','Lillo Pants Olive','Char_Clothing_Legs','UNDEFINED','23039d2b-596d-413f-b619-6042df1af3b3','','',NULL), -('6978','Screen_Datapad','Display','UNDEFINED','b95d6bad-b7f3-453e-96bc-281cf8dfad40','','',NULL), -('6979','Processed Food','Cargo','Small','ef097ed9-9c1f-45e3-ae7b-eb2c12caff08','','',NULL), -('6980','Flair_Dashboard_Bobblehead_02','Flair_Cockpit','Flair_Static','27091a02-d1d3-40ec-acd5-b2a0f3a1ca77','','',NULL), -('6981','PAB-1 Core White','Armor','Torso','93cfbe4d-b598-43a8-9ec7-a054a64edb68','','',NULL), -('6982','Manned Turret','TurretBase','MannedTurret','423e1466-9371-4fe4-81da-9a3c72512ebe','','',NULL), -('6983','Gale Head Cover Teal','Char_Clothing_Hat','UNDEFINED','7ef52f9d-cecf-43d4-af38-7e89202a0783','','',NULL), -('6984','HoverQuad Turbocharged Livery','Paints','UNDEFINED','8edd0299-3390-4958-9201-dac9b1c76cf2','','',NULL), -('6985','Drake Caterpillar Weapon Mount','Turret','GunTurret','31f31a22-aea8-4805-ac25-1f19b5740646','','',NULL), -('6986','INTK_AEGS_Vanguard_Harbinger','FuelIntake','Fuel','405e6fdd-cc48-459c-b54c-8f755fb8f131','','',NULL), -('6987','G-2 Helmet Blue','Armor','Helmet','bda1a03c-589e-4b09-a621-5a46feb3851a','','',NULL), -('6988','AEGS_Retaliator_Turret_Lights_Lower','Room','UNDEFINED','05093bee-1814-41f9-9651-2db3968e9915','','',NULL), -('6989','Adroit Gloves Olive','Char_Clothing_Hands','UNDEFINED','ae2ccd9b-b429-44c2-9112-d4e55f6cf8ca','','',NULL), -('6990','Sol-III Helmet Aviator','Armor','Helmet','b28d0efc-961a-4480-875a-3f7210ce3836','','',NULL), -('6991','MacFlex Core Twilight','Armor','Torso','6fa3d339-9a79-4891-8bfb-4dea426f6f72','','',NULL), -('6992','Redfin Energy Modulators','Cargo','Cargo','b99730b1-7482-44fd-ad76-f2f13fd7cb6a','','',NULL), -('6993','100i 2954 Auspicious Red Dog Livery','Paints','UNDEFINED','7b21462f-b0ad-433e-9809-d1a97f9e511e','','',NULL), -('6994','Marok Gem','Cargo','Cargo','1c8f600a-544e-4923-8297-1c1820ec596c','','',NULL), -('6995','Scorpius Nightbreak Livery','Paints','UNDEFINED','9e8a633a-6088-43e7-82b2-17e875f4cb10','','',NULL), -('6996','Corsti Boots','Char_Clothing_Feet','UNDEFINED','64f30d23-994f-41a0-9774-cc13d9093270','','',NULL), -('6997','Flight Blade','FlightController','UNDEFINED','8313f0ea-1285-4fe2-86e4-f0ad32788ebb','','',NULL), -('6998','Flight Blade','FlightController','UNDEFINED','b46d531c-f64a-4771-bb56-b01916a39d50','','',NULL), -('6999','display_components_s2_modular_shield_3ports','ShopDisplay','UNDEFINED','d5995c2b-ba5e-419e-851f-c36697912cdd','','',NULL), -('7000','KRIG_P52_Merlin_Dashboard_Pilot','SeatDashboard','UNDEFINED','a5f6a9c6-fd0c-4e10-b9c3-62b82191aa62','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('7001','lt_lamp_desk_2_a','Light','UNDEFINED','eb7c18ae-d279-4194-937f-397ed589716d','','',NULL), -('7002','Organics','Cargo','Cargo','a6590ed4-103e-4a67-964f-5e8464adc027','','',NULL), -('7003','KRIG_l22_AlphaWolf_Thruster_Mav_Capsule','ManneuverThruster','UNDEFINED','dffecca5-3717-422f-b5d2-dddf13996987','','',NULL), -('7004','RSI_Zeus_Wings','AttachedPart','UNDEFINED','b9e5023b-5e5b-4878-ae42-855ec37e05e8','','',NULL), -('7005','Tundra Kopion Horn','Misc','Harvestable','31033547-e451-44d2-85df-ab16b9d083d9','','',NULL), -('7006','Cambio-Lite SRT Attachment','WeaponAttachment','Utility','99379aa0-7240-4014-813a-0ab460f885f5','','',NULL), -('7007','Kamar Jacket Blue Striped','Char_Clothing_Torso_1','UNDEFINED','4d9c3a76-9f7c-439a-b893-fedf0fe87a35','','',NULL), -('7008','SonicLite','PowerPlant','Power','ad089033-7cfc-479f-b7d4-49a93e1e3bd4','','',NULL), -('7009','Intrepid Oblivion Livery','Paints','UNDEFINED','262d338c-f4c6-4609-bc67-335b6639654a','','',NULL), -('7010','facial_hair_002','Char_Head_Beard','UNDEFINED','e6c2c999-3731-4163-9f1a-e37df9b9a267','','',NULL), -('7011','Remote Turret','Turret','GunTurret','5b3f8f7b-f645-448b-ab16-642c57c49df3','','',NULL), -('7012','Compboard','Cargo','Cargo','1b59493c-afd7-4548-aeeb-3cf42a41ddf7','','',NULL), -('7013','CoolCore','Cooler','UNDEFINED','553f7473-1d24-41b5-bd53-baa4190464d0','','',NULL), -('7014','Cardona Jacket Yellow','Char_Clothing_Torso_1','UNDEFINED','c841b95c-1b80-4738-9516-f06d2b4cf787','','',NULL), -('7015','Waste','Cargo','Cargo','59b39ab6-0196-4ece-b3fc-d810c2f61ab5','','',NULL), -('7016','Seat','SeatAccess','UNDEFINED','d29d3ef3-44f5-4586-9ae6-6d9a3c2a1751','','',NULL), -('7017','Vehicle_Screen_MFD_Holographic_Glaive_TL','Display','UNDEFINED','a79b19c6-0133-4021-80e9-e885cbd337aa','','',NULL), -('7018','Aegis Eclipse Torpedo Rack','MissileLauncher','MissileRack','ffaf4f8b-6712-4a72-aa54-003187447399','','',NULL), -('7019','Flight Blade','FlightController','UNDEFINED','c9ab6b66-2edf-4dbc-8c73-0304441dcc03','','',NULL), -('7020','Parallax \"microTech\" Energy Assault Rifle','Weapon','Medium','6b390f80-d93e-47c7-9ca4-717dd388be4c','','',NULL), -('7021','Sunset Berries','Cargo','Cargo','cfb006f3-b068-406b-844d-0a7f7782e9fd','','',NULL), -('7022','Radar_Display_KRIG_P52','Display','UNDEFINED','5fabbde1-a3e1-44bc-9869-63678b2295c0','','',NULL), -('7023','GLSN_Shiv_Thruster_Maneuver_Rear_Vent_Right','ManneuverThruster','JointThruster','ece8523e-3ea8-4051-8891-934469e0ebdd','','',NULL), -('7024','Door Control','ControlPanel','DoorPart','93728b5d-ad71-469d-8f96-8f659081a432','','',NULL), -('7025','Ectio Glasses','Char_Accessory_Eyes','UNDEFINED','2ddeaeb6-fd84-450a-9dbb-9f9869ed68a3','','',NULL), -('7026','Carryable_2H_FL_05x05x05_MissionItem_Present_b','Misc','UNDEFINED','3c9f1086-e502-4c12-af83-692572a576e8','','',NULL), -('7027','Cryo-Star SL','Cooler','UNDEFINED','7db13b34-c8b1-4e1a-9aba-3dcd7087e995','','',NULL), -('7028','DRAK_Buccaneer_Thruster_Retro','ManneuverThruster','UNDEFINED','af44d55b-15c2-4003-9b31-ae085218d4ce','','',NULL), -('7029','Asgard Skullcrusher Livery','Paints','UNDEFINED','9b99bf98-c0df-4221-9a90-883840b0115d','','',NULL), -('7030','Bed','Usable','UNDEFINED','a66793a3-c532-43a2-a01e-fd44b0c8f989','','',NULL), -('7031','MISC Starfarer Fuel Intake','FuelIntake','Fuel','d8913855-325b-46f1-ba5f-22c0c2ef1ea2','','',NULL), -('7032','Screen','Display','UNDEFINED','8609e3ea-2901-49be-9e34-c488f2b0bf1a','','',NULL), -('7033','MacFlex Core Grey','Armor','Torso','78308f10-be90-49f5-8c9e-1171949e7b41','','',NULL), -('7034','ANVL_Pisces_Thruster_Mav_Joint','ManneuverThruster','JointThruster','34d2a86b-8d83-4277-ba03-83c6f6fea4a5','','',NULL), -('7035','Palatino Helmet Daystar','Armor','Helmet','cf8dcddd-a095-4b1b-851d-274a53cfc833','','',NULL), -('7036','Grin_Rear_Module_MTC','Misc','UNDEFINED','69b9f672-2643-4dc7-bb2a-0e26f0b63405','','',NULL), -('7037','Remote Turret','Turret','GunTurret','f2b386d2-2a92-43ba-b9ca-e12f26f466aa','','',NULL), -('7038','Internal Tank','FuelTank','Fuel','bcc10e7e-0ffc-42a2-a68d-45ff1b817c65','','',NULL), -('7039','Tuvic Outerwear Jacket Tactical','Char_Clothing_Torso_1','UNDEFINED','5e1ddd8d-8d1a-4abe-92cd-4763f85f842d','','',NULL), -('7040','Weapon_Rack_Cz_012','Usable','UNDEFINED','2319c249-9730-4f61-a623-e97c76c6a938','','',NULL), -('7041','Self Destruct Unit','SelfDestruct','UNDEFINED','27875030-1290-4098-827f-f1a5b67c0615','','',NULL), -('7042','Cliffback T-Shirt Imperial','Char_Clothing_Torso_0','UNDEFINED','da739f16-1141-4fd7-9a3e-acc6d67cd5fa','','',NULL), -('7043','Remote Turret','Turret','GunTurret','441efd3a-fa36-40bd-94b3-bfe4d3b1de51','','',NULL), -('7044','AIModule_Unmanned_PU_SecurityNetwork_OrbitalSentry','AIModule','UNDEFINED','bddd7723-793f-4cee-860f-aa03ebefc5e8','','',NULL), -('7045','ANVL_Hornet_F7CS_Mk2_Thruster_Main','MainThruster','FixedThruster','4702bfb7-8c5c-4720-9ada-84f088392687','','',NULL), -('7046','Carryable_1H_CY_gym_jug_1_a','Misc','UNDEFINED','f515686a-1c69-486e-87fc-d747d1a67630','','',NULL), -('7047','SHIELDS','ShieldController','UNDEFINED','1b39eead-4f1e-4e89-bdfb-726f1b50cc5e','','',NULL), -('7048','CNOU_Nomad_Thruster_Retro_Left','ManneuverThruster','FixedThruster','ee18bfee-937d-4335-9782-8bbb314f7700','','',NULL), -('7049','FullForce Pro','PowerPlant','Power','1dee7b69-d26e-4c02-98cd-f2f5d129134a','','',NULL), -('7050','Door Control','ControlPanel','DoorPart','483b1731-2ab3-4eb9-9a82-a856166001bc','','',NULL), -('7051','MISC_Starfarer_Gemini_Bump_Seat','Usable','UNDEFINED','5a4915d1-0a32-420c-8873-14074a9d1a56','','',NULL), -('7052','TRGT. STATUS','Seat','UNDEFINED','9fc18f3f-8512-4251-b706-e889e7ffb471','','',NULL), -('7053','RSI_Hermes_Thruster_Mav_Top','ManneuverThruster','FixedThruster','e0acf15e-c651-482c-b098-4c660162bade','','',NULL), -('7054','Reliant Samos Sensor Suite','Turret','GunTurret','a587ba9e-7cc9-49c8-bf63-d6bae4a8a9b8','','',NULL), -('7055','Geist Armor Helmet','Armor','Helmet','fe6ecbc9-a063-4c1c-9249-d3203aa08619','','',NULL), -('7056','AirlockTerminalStatusScreen','StatusScreen','AirlockPart','74642729-0ea0-42a8-9719-090fc363bdc3','','',NULL), -('7057','Hellion Scattergun','Weapon','Gun','c7c36fea-dcf5-48b9-9939-bf2771f9f8f4','','',NULL), -('7058','ESPR_Talon_Thruster_Mav_Lateral','ManneuverThruster','JointThruster','aaff2e56-ca2a-4163-99c3-b415b00c63fc','','',NULL), -('7059','Renegade Cut Vest (Modified)','Char_Clothing_Torso_1','UNDEFINED','e9231761-516a-43f2-a06b-03a167cbcd3a','','',NULL), -('7060','Ammonia','Cargo','Cargo','afa96ede-0c20-4e38-829b-872b5fbde02f','','',NULL), -('7061','Maze','Cargo','Cargo','4f2ea31e-0d59-4305-b520-b2d0cdbaaa9f','','',NULL), -('7062','Utensil_Plate_Chanadaltadka','Misc','UNDEFINED','904bbcc3-1900-49cd-9a44-cde064467512','','',NULL), -('7063','Flight Blade','FlightController','UNDEFINED','415471b4-fc53-4e52-86e0-8153664ab328','','',NULL), -('7064','Walesko','FPS_Consumable','Hacking','8c632754-3e85-42bd-b393-b072c6410808','','',NULL), -('7065','ANVL_Hornet_F7_Mk2_Thruster_Main','MainThruster','FixedThruster','424c7706-b566-4a7d-a4bc-8ec1ec33c895','','',NULL), -('7066','MTC Baracus Livery','Paints','UNDEFINED','97132163-0353-4ecc-86d6-b431474bfb60','','',NULL), -('7067','Wrecker Core Ashen','Armor','Torso','6aa55505-c56a-4d5e-8a43-3987fdeb90f4','','',NULL), -('7068','SHIELDS','ShieldController','UNDEFINED','610d29ff-5c45-4b52-8a26-6fe206abca89','','',NULL), -('7069','Golem Sunstruck Livery','Paints','UNDEFINED','d5a48459-4b61-431b-af35-25ca8aa224f4','','',NULL), -('7070','SalvageFillerStation_ARGO_MOTH_Left','SalvageFillerStation','UNDEFINED','7e47570a-6dee-4ecc-9f96-ca07ac08e0a5','','',NULL), -('7071','Door','Door','UNDEFINED','44383f93-a44a-4e77-8714-7a338020e592','','',NULL), -('7072','Atavi Shirt \"Pathfinder\"','Char_Clothing_Torso_0','UNDEFINED','fde88d59-a8ef-42ec-ac77-c440103a1938','','',NULL), -('7073','Carryable_2H_CY_container_ore_1_short_b','Misc','UNDEFINED','2feeedd9-57e3-4186-acaa-b5ff5b246610','','',NULL), -('7074','fruit_plant_1_b_3003','Misc','UNDEFINED','c529b2e0-973c-468d-ba9f-e0960ba48450','','',NULL), -('7075','display_components_pallet_125x125x025_a','ShopDisplay','UNDEFINED','5ea48cea-c0e8-4338-9252-df931ffac4ef','','',NULL), -('7076','Bed_Blanket_AEGS','Usable','UNDEFINED','022b3a95-48c3-407f-9bae-adce6dae9cdc','','',NULL), -('7077','fruit_plant_1_b_2003','Misc','UNDEFINED','03598bbe-853f-4f4e-8a89-b90688f95882','','',NULL), -('7078','ARMR_MISC_Razor_LX','Armor','Medium','ed22365a-fd55-40c6-8f8d-3b63a9527b7e','','',NULL), -('7079','Buccaneer Ghoulish Green Livery','Paints','UNDEFINED','5f081514-6ad3-4575-a3e9-14bfe5662043','','',NULL), -('7080','Ammonia','Cargo','Cargo','107a00bb-1576-4a62-981a-8e9206e914de','','',NULL), -('7081','CitizenCon 2954 Storage Chest','InventoryContainer','Cargo','f997c5ec-51a7-4f5b-8e42-d3ec66d8db5a','','',NULL), -('7082','OMNI-AFS-Sapphire Armored Flight Suit','Armor','Undersuit','812ede0a-2b62-4d08-ae64-b2e6ab480845','','',NULL), -('7083','MASTER_screen_16x9_5_0094x0054_a','Display','UNDEFINED','51619216-1415-4ad1-ab32-659e0bd0f4cf','','',NULL), -('7084','TRGT. STATUS','Seat','UNDEFINED','cd9e9668-5fbd-4684-b8f3-e0104ab1c347','','',NULL), -('7085','Manned Turret','TurretBase','MannedTurret','2228584b-0def-4713-8b40-1a9685f9a444','','',NULL), -('7086','Antium Helmet Storm','Armor','Helmet','11c7bd0d-8194-4c77-841f-154bf7cb3e7a','','',NULL), -('7087','Argon','Cargo','Cargo','8fab527e-d27b-4746-8e22-bf1971b5768f','','',NULL), -('7088','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','64fc3736-99ad-4997-b436-e2acaa4bcf57','','',NULL), -('7089','Reno Work Vest','Char_Clothing_Torso_1','UNDEFINED','b2ed41ec-d581-4104-8a1e-ebf019d3c1a7','','',NULL), -('7090','Salvaged Skull Couch','Usable','Cargo','e64fbbd8-4562-4a4b-a9ab-afa65a808af3','','',NULL), -('7091','Door Control','Door','UNDEFINED','c1628a02-8732-4d13-9ccd-5d303473ac9b','','',NULL), -('7092','MISC_Freelancer_Thruster_Main_Right','MainThruster','FixedThruster','ac5494ac-bc5e-4312-bcbd-258fd051967b','','',NULL), -('7093','ToolSafe Vest Falstaff','Char_Clothing_Torso_1','UNDEFINED','fadac319-4aa4-4f3e-9c1e-a147f18f5ad4','','',NULL), -('7094','ControlPanel_Screen_RoomControl','ControlPanel','DoorPart','4322e286-ac50-4ae8-857a-f5b928546165','','',NULL), -('7095','G-2 Helmet Greycat Edition','Armor','Helmet','3ebf0955-87bb-42eb-9a0a-74b5357f39c5','','',NULL), -('7096','SmartGen','PowerPlant','Power','39e271e4-e9f4-421d-9673-063726b72c8b','','',NULL), -('7097','AEGS_Retaliator_Thruster_Mav_Joint_01','ManneuverThruster','FixedThruster','de67e988-b542-40f3-bf54-2fc5eba4d47f','','',NULL), -('7098','Pulse Auspicious Red Livery','Paints','UNDEFINED','0c963d33-44f1-4ed8-9c55-f3c2efa617d1','','',NULL), -('7099','ORIG_100i_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','d1e01206-8649-452b-a629-4394d5647795','','',NULL), -('7100','DRAK_Caterpillar_SCItem_Seat_SupportLeft','Seat','UNDEFINED','db562aa4-13aa-4e1e-bc99-69185af6c9f3','','',NULL), -('7101','Controller_Salvage_ARGO_MOTH_ToolArm','SalvageController','UNDEFINED','b9b21470-d973-4b8a-aa55-3b5a42506e88','','',NULL), -('7102','MISC_Razor_EX_Thruster_Lateral','ManneuverThruster','FixedThruster','8c64554e-0382-4310-b511-fad31345d9a5','','',NULL), -('7103','Seat','Usable','UNDEFINED','16ca300c-9b2a-420e-ae49-af58245a594e','','',NULL), -('7104','ClipVest Work Harness Green','Char_Clothing_Torso_1','UNDEFINED','431ce947-1df1-482f-b227-d096cfd0cfbf','','',NULL), -('7105','Counter_Klim','Usable','UNDEFINED','87eca279-ceda-40cf-b4ac-54e5762bef5e','','',NULL), -('7106','Ati Jacket Tan','Char_Clothing_Torso_1','UNDEFINED','0ecb635a-7234-474a-a39d-9dff366683d6','','',NULL), -('7107','FBL-8a Core Arctic Digital','Armor','Torso','1c25ab55-8414-44e8-bca3-286d83d8e25d','','',NULL), -('7108','JOKR_DistortionCannon_FiringMechanism_S3','WeaponAttachment','FiringMechanism','62494280-cf60-46f4-819e-eb2fc76a6c60','','',NULL), -('7109','Clipper Firewall Livery','Paints','UNDEFINED','1e58433e-00ef-49d2-b126-cc99c016baff','','',NULL), -('7110','CBH-3 Helmet Tan','Armor','Helmet','f5b4bf5c-5cf4-48e3-b421-f592f6cecff5','','',NULL), -('7111','ANVL_Hornet_F7A_Mk1_Thruster_Main','MainThruster','FixedThruster','ad5a3583-5a04-48c8-a322-91139381ac1b','','',NULL), -('7112','G-2 Helmet Dark Red','Armor','Helmet','30f07ea7-ccd2-4afd-8c20-11c6cb660d1f','','',NULL), -('7113','GVSR Repeater','Weapon','Gun','5f37d7dd-8d94-465e-a4c4-da78bd3941d8','','',NULL), -('7114','ParaMed \"AA Defense\" Medical Device','Weapon','Small','57550dfd-73c5-46ad-a509-f43957a8c1a9','','',NULL), -('7115','DRAK_Cutlass_Red_Thruster_Maneuver_Bottom','ManneuverThruster','JointThruster','04df1775-76c0-4adf-85f5-a57f69532e8d','','',NULL), -('7116','RSI_Aurora_Mk2_Dashboard_Btn_Wings','AttachedPart','UNDEFINED','057c038b-9f13-4456-a738-44b01068c575','','',NULL), -('7117','VariPuck S7 Gimbal Mount','Turret','GunTurret','e405f0a1-c1c2-46d1-80cf-b0a51acc313f','','',NULL), -('7118','Zelena Pants Conifer and Bisbee Boots','Char_Clothing_Legs','UNDEFINED','70806b7a-1693-420d-bd84-9aa94b62b1aa','','',NULL), -('7119','Carrion Arms Maniac','Armor','Arms','f5a0c671-44b4-4940-91e7-3f6ba0c2d84b','','',NULL), -('7120','F8 Lightning Nightweaver Livery','Paints','UNDEFINED','27581f33-45ec-467f-b92b-14961892e5d9','','',NULL), -('7121','Oracle Helmet Firebrick','Armor','Helmet','8bd6634f-b34a-4e31-b2c5-6e2b792b55f4','','',NULL), -('7122','RSI_Zeus_CL_Thruster_Retro_Left','ManneuverThruster','Retro','b136f052-08cc-454b-84c4-f52d405dc350','','',NULL), -('7123','Seat','SeatAccess','UNDEFINED','05201ed6-445c-472b-b13a-40c4845a79db','','',NULL), -('7124','RSI Constellation Side Missile Rack','MissileLauncher','MissileRack','d92f158b-ec14-4203-91f6-c4314b805c18','','',NULL), -('7125','Detatrine','Cargo','Cargo','1d391027-d353-4b0b-8776-dc69074c3046','','',NULL), -('7126','Auditor Pants Grey','Char_Clothing_Legs','UNDEFINED','e87171f9-44da-4cdd-8a19-5696da72d1e5','','',NULL), -('7127','Wrecker Core Payback','Armor','Torso','a99040ab-1325-4844-83c2-4672a15e9ef7','','',NULL), -('7128','DoorDefaultPowered','Door','UNDEFINED','9fa4ce13-6d49-40fd-a01f-0c4f82e0c5cb','','',NULL), -('7129','Landlite Boots White','Char_Clothing_Feet','UNDEFINED','9414b128-c814-4e70-bac2-39c79704975f','','',NULL), -('7130','ANVL_Lightning_F8_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','8b1bee89-8ee1-49a9-998e-9f4d6f28fa30','','',NULL), -('7131','MPUV-1T PHB Flight Blade','FlightController','UNDEFINED','b34f33bd-7df5-4bfb-b1e5-8297ddd5e0cc','','',NULL), -('7132','m_human_mannequin_base_armor_Collector_HeavyCombatArmor','ShopDisplay','UNDEFINED','5a57a60b-86c5-41e9-bff5-c35e2a7cf5c1','','',NULL), -('7133','Paint_300_Seat_Brown','Misc','UNDEFINED','89df7f80-334d-40fe-b542-0444ad6239b3','','',NULL), -('7134','AEGS_Redeemer_Thruster_Mav','ManneuverThruster','JointThruster','7c47d98f-96a2-48fd-b67d-73153108c01b','','',NULL), -('7135','XNAA_SanTokYai_Gills','AttachedPart','UNDEFINED','05d5e917-3073-4958-ad82-766fa6f15690','','',NULL), -('7136','Deadhead Helmet','Armor','Helmet','7260707d-323d-4bb6-b0fa-a289337774e7','','',NULL), -('7137','Deadhead Helmet Windfall','Armor','Helmet','660d1512-7078-4dc2-9d05-e58b0321e44e','','',NULL), -('7138','ORIG_100i_Intake','Misc','UNDEFINED','242d2b79-acee-4052-b957-ec3a2cd1febd','','',NULL), -('7139','Deadhead Helmet Lucky Break','Armor','Helmet','33896834-653b-4d20-ab5c-336f50956ce5','','',NULL), -('7140','890 Jump Penumbra Livery','Paints','UNDEFINED','bc0c7bfb-1b14-4c45-b407-9a39c1c296f3','','',NULL), -('7141','Door','Door','UNDEFINED','3e916022-cea9-4213-b3f2-b5242e75c008','','',NULL), -('7142','Detatrine','Cargo','Cargo','c2c2840f-84f5-47c6-a4f8-6a14104c4330','','',NULL), -('7143','XIAN_Scout_Thruster_Main','MainThruster','JointThruster','508f3f08-bee9-46dc-8f10-457e752aad93','','',NULL), -('7144','BEHR_LaserCannon_Ventilation_S5','WeaponAttachment','Ventilation','99011ee7-d883-46bd-b75f-48708073ecd1','','',NULL), -('7145','Weapon_Rack_AEGS_11slots','Usable','UNDEFINED','cf460047-0605-488e-b994-259b43d8ed54','','',NULL), -('7146','mobiGlas Original Casing','MobiGlas','Personal','555a13e6-8c31-428d-b0fd-a5e9782b35f1','','',NULL), -('7147','Manned Turret','TurretBase','MannedTurret','7b96c8ad-13c8-4055-95ea-04a33a9aabef','','',NULL), -('7148','Bed','Usable','UNDEFINED','0bafdeac-d152-4f0f-beef-b4fe0333eb42','','',NULL), -('7149','Beacon Undersuit Pink/White','Armor','Undersuit','8abd144f-90ac-4039-9b28-64704499b058','','',NULL), -('7150','Seat','Usable','UNDEFINED','c21f4987-5372-4e2e-9971-def5ef015b71','','',NULL), -('7151','Ponos Boots Aqua','Char_Clothing_Feet','UNDEFINED','879b619e-05e1-4f2c-9f37-f6158fa7321b','','',NULL), -('7152','Enter Atmosphere 2956 Poster','Misc','Utility','9089f698-e3ed-4781-93af-e40a5685e901','','',NULL), -('7153','Remote Turret','Turret','GunTurret','07842740-cfcf-420f-ba8c-0750fbc193b4','','',NULL), -('7154','Ana Core Endro','Armor','Torso','b461e2c0-5f5a-4f1f-b119-4e92bbb3df1c','','',NULL), -('7155','Aslarite (Raw)','Cargo','Cargo','4b2a0236-84de-45cb-a36b-3ad038977428','','',NULL), -('7156','Atzkav \"Deadeye\" Sniper Rifle','Weapon','Medium','6ab71d2c-e0a4-4875-92a1-6cf90b746532','','',NULL), -('7157','Citadel Core Ignitor','Armor','Torso','282f92f8-1bda-41d2-9ba6-b4b5eee4dd57','','',NULL), -('7158','Combat Supplies','Cargo','Cargo','69936b1a-1b1e-4006-91d5-809555cc1c43','','',NULL), -('7159','RSI_Scorpius_Spine','Misc','UNDEFINED','3d96ccac-f068-471e-90fd-856c02204934','','',NULL), -('7160','Fotia Seedpod','Cargo','Cargo','21c1feda-35e4-4829-aa85-5d7532fc9597','','',NULL), -('7161','Flight Blade','FlightController','UNDEFINED','d6862f39-3bc6-4763-b5ac-1e375493eed4','','',NULL), -('7162','Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','f1f31581-14a7-4b31-b00c-ad30ff567bff','','',NULL), -('7163','Consolidated Outland T-Shirt','Char_Clothing_Torso_0','UNDEFINED','493e6e61-96e7-47b9-9961-03c911c36e33','','',NULL), -('7164','AEGS_Retaliator_Door_Cap_Rear','Misc','UNDEFINED','1d954c41-d91c-4791-aab6-8eac99aa6b5d','','',NULL), -('7165','CSP-68L Backpack Forest Camo','Armor','Backpack','77080f6f-e3d0-434a-b43b-1b5d5c99e06f','','',NULL), -('7166','Weapon_Rack_RSI_Perseus_19_Slot','Usable','UNDEFINED','60e9e8ee-495c-42f5-af44-7ef2903f8df3','','',NULL), -('7167','TRGT. STATUS','Seat','UNDEFINED','a93b8b8b-b42c-485b-b147-3f0e21acf69b','','',NULL), -('7168','Door Control','Door','UNDEFINED','e251346f-49c4-4d94-ae06-2c957b2ff2e5','','',NULL), -('7169','Antium Arms Storm','Armor','Arms','05304794-a87c-4a00-8517-6a0470c898f9','','',NULL), -('7170','ARGO_ATLS_PowerSuit_SCItem_Dashboard','SeatDashboard','UNDEFINED','b8340787-1655-45c0-a5bd-4b76fb960157','','',NULL), -('7171','Year of the Ram Envelope','Misc','UNDEFINED','7292474d-5af7-4e86-8e47-cc6018c56696','','',NULL), -('7172','display_1m_a_centermass_1port','ShopDisplay','Default','6203b3ea-a308-446c-ad6e-7b01f9cd7386','','',NULL), -('7173','volume_head_01','Armor','Undersuit','a9c6cb88-96a4-4002-9739-831ee16296af','','',NULL), -('7174','fruit_plant_3_a_6003','Misc','UNDEFINED','5766f155-130a-403f-b193-cba98d485537','','',NULL), -('7175','fruit_plant_3_a_5003','Misc','UNDEFINED','d32eacc8-40eb-42f3-8335-3c6b7e212a8f','','',NULL), -('7176','G-2 Helmet Hurston Edition','Armor','Helmet','7ec912bd-9b83-40ea-9f5d-9067d535b207','','',NULL), -('7177','fruit_plant_3_a_4003','Misc','UNDEFINED','e6487135-83be-472d-b448-dcb09dc9721c','','',NULL), -('7178','Taftan Boots Olive','Char_Clothing_Feet','UNDEFINED','309dec09-79be-4819-b9c0-6267e182d307','','',NULL), -('7179','fruit_plant_3_a_3003','Misc','UNDEFINED','3993f0b0-2fc7-4042-be7d-34b2e3b27c50','','',NULL), -('7180','fruit_plant_3_a_2003','Misc','UNDEFINED','f9a7901a-1752-4a97-b435-bae4c6293240','','',NULL), -('7181','AEGS_Retaliator_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','b023f8cf-10b0-448f-ad5b-fca49f5de2c5','','',NULL), -('7182','Toughlife Boots Red','Char_Clothing_Feet','UNDEFINED','af450721-ef5a-439b-9e1c-1535b2172d6a','','',NULL), -('7183','AEGS_Vanguard_Hoplite_Baydoor','Misc','UNDEFINED','5a4ffbdc-65b6-4c67-9bd0-0f89527f30c0','','',NULL), -('7184','Morozov-SH Arms Aftershock','Armor','Arms','44e11ae3-a90c-4fb0-8409-c1311111baf7','','',NULL), -('7185','Devoue','Radar','MidRangeRadar','b3b162b0-e1ac-433c-961b-9494790344d4','','',NULL), -('7186','OverDrive','PowerPlant','Power','13880fbe-7295-4f55-886d-251ad01e2677','','',NULL), -('7187','Door_Concertina_AEGS_Toilet','Usable','UNDEFINED','e4f09ab6-d66e-4cb3-89b7-b118bb45e5d1','','',NULL), -('7188','Bed','Usable','UNDEFINED','61f120f0-e006-4f40-9e31-cd5144c847d0','','',NULL), -('7189','Internal Tank','FuelTank','Fuel','67120dba-14ff-4bac-a386-7f172479b668','','',NULL), -('7190','Personal Storage','Cargo','UNDEFINED','9612dbaa-fec6-4d99-88ab-bd0067b30048','','',NULL), -('7191','Cyan QuikFlarePro','Weapon','Grenade','0c95b32a-568e-4ad8-87df-304a4dad67b4','','',NULL), -('7192','MISC_Hull_C_Thruster_Retro_Small','ManneuverThruster','FixedThruster','7fcbc381-7e91-4b00-9a0c-75cd0d428592','','',NULL), -('7193','Seat','Usable','UNDEFINED','9a9b630e-792a-4e29-9cba-96b0ba0cd975','','',NULL), -('7194','Flight Blade','FlightController','UNDEFINED','867a60e0-ac75-4dbf-ab3c-7c1c2263d737','','',NULL), -('7195','AEGS_Javelin_Thruster_Mav_Joint_02_Invulnerable','ManneuverThruster','JointThruster','9b2c9bee-6379-4176-ac35-98a405b36780','','',NULL), -('7196','Cliffback T-Shirt Purple','Char_Clothing_Torso_0','UNDEFINED','4e0ad41d-d313-4170-84bd-0ff528429af5','','',NULL), -('7197','Ripper SMG','Weapon','Medium','6defe8cd-0894-4377-8fd0-2384b2109d70','','',NULL), -('7198','Seat','SeatAccess','UNDEFINED','782cb016-3aa3-4e89-ab5f-07e6e46b5f82','','',NULL), -('7199','Piercings_ball_01','Char_Head_Piercings','UNDEFINED','a2605c16-3dc7-49d5-a628-7da9d190bd92','','',NULL), -('7200','Tin','Food','Tin','4e8154da-02cb-49e1-a694-a2933e9f1bf2','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('7201','Ares Star Fighter Deadlock Camo Livery','Paints','UNDEFINED','88f204a0-852f-4dc5-9ca9-9dbc03076be3','','',NULL), -('7202','GSX-RF','ExternalFuelTank','UNDEFINED','43352b7a-8750-4963-ad67-c0f610f968cd','','',NULL), -('7203','fruit_plant_1_a_3003','Misc','UNDEFINED','63e2bc62-a46d-46f5-9808-5abe4251553a','','',NULL), -('7204','fruit_plant_1_a_2003','Misc','UNDEFINED','2b1c8145-6109-4f48-9d1e-f31153923caa','','',NULL), -('7205','fruit_plant_1_a_5003','Misc','UNDEFINED','2b029fe7-84bf-41cb-b7b3-405e38597348','','',NULL), -('7206','un_can_drink_2_h','Misc','UNDEFINED','4d46038b-52f8-4387-97d5-f52277735443','','',NULL), -('7207','fruit_plant_1_a_4003','Misc','UNDEFINED','044998eb-e094-4b4c-a547-927273a8e367','','',NULL), -('7208','fruit_plant_1_a_6003','Misc','UNDEFINED','86d4f3e5-4bea-4ea9-b0f0-e2ca542005bd','','',NULL), -('7209','PT2 (2x Holographic)','WeaponAttachment','IronSight','208281d5-412b-46c3-b0b3-bea4c33bb17c','','',NULL), -('7210','Maintenance_Workzone_Down','Usable','UNDEFINED','abc18388-496b-48f0-8e40-8946b17a022b','','',NULL), -('7211','H_Dashboard_Projector_HUD_ARGO_Mole','Display','UNDEFINED','2c15b107-a71d-4ed9-b845-5908c76a6780','','',NULL), -('7212','Ventra Gloves','Char_Clothing_Hands','UNDEFINED','df914121-324f-4e45-9eb1-24bb838472d2','','',NULL), -('7213','CRUS_Starfighter_Energy_Nacelle_Right','Misc','UNDEFINED','c13dcf3e-1df7-4704-86b6-313169b10b86','','',NULL), -('7214','Quartz (Raw)','Cargo','Cargo','967202d0-e6fb-4762-96d0-1f9b3ce0d803','','',NULL), -('7215','Asgard Savannah Livery','Paints','UNDEFINED','98c50b9d-7a2d-4917-9da7-53b455ac96dc','','',NULL), -('7216','Door Control','Door','UNDEFINED','684a983b-b985-4852-90cf-58513cf67399','','',NULL), -('7217','TRGT. STATUS','Seat','UNDEFINED','f381830f-9192-4abc-be06-c1a2facc02e5','','',NULL), -('7218','cbd_main_hall_display_case_S3','ShopDisplay','Default','b230ecad-9ee9-43ed-bf75-ba69173a75c0','','',NULL), -('7219','mobiGlas Emerald Casing','MobiGlas','Personal','27a75a80-dcfe-4dfb-89c0-fd426e3c0949','','',NULL), -('7220','Parvat Jacket Snow Hearth','Char_Clothing_Torso_1','UNDEFINED','7680edb9-a9f1-4595-8c0e-8fe355963510','','',NULL), -('7221','Freelancer Stock Missile Rack','MissileLauncher','MissileRack','0bb262d5-a3f6-40ba-a5c3-32ee445327b0','','',NULL), -('7222','Anvil Hornet Ghost Mk II Center Cap','Module','UNDEFINED','167138ef-b585-4a7b-8808-a70ba93d0390','','',NULL), -('7223','DockingTube_Fuel_Ports_Krig_alphawolf','DockingCollar','UNDEFINED','a31d9ef6-de4c-4d9f-ac60-079adc6387ff','','',NULL), -('7224','rod_torso1_02x01x04_05Ports','ShopDisplay','Default','e0dbb9f5-19db-4e18-b638-46b700135a4c','','',NULL), -('7225','Aluminum','Cargo','Cargo','93c7aa8d-559b-4f89-9607-8c56ba67c5bb','','',NULL), -('7226','Apollo Tier 3 Module Left','Module','UNDEFINED','4983357f-cfe5-148f-8573-653efce249a2','','',NULL), -('7227','HLX99 Hyperprocessors','Cargo','Cargo','5a4080c9-8647-47d3-bbbe-4e76b58fff37','','',NULL), -('7228','Seat','SeatAccess','UNDEFINED','45e88f4c-0f97-4e7d-928c-47aa5ec4da54','','',NULL), -('7229','display_components_vertical_3Ports_s01','ShopDisplay','UNDEFINED','f033afb9-d178-4547-aad6-526612435473','','',NULL), -('7230','DRAK_Cutlass_Red_Thruster_Maneuver_Outer_Bot','ManneuverThruster','JointThruster','0f59d62e-95b7-4407-bff6-b87e5e3e11f6','','',NULL), -('7231','PersonalMobiGlas','Display','Personal','661acc55-6b06-4513-b952-3e6837fb7fbe','','',NULL), -('7232','Aslarite','Cargo','Cargo','b7b399a5-d8bc-4a80-9b58-ca0a5939ae04','','',NULL), -('7233','Bokto Helmet','Armor','Helmet','ce095413-724c-492b-8e25-7ec2cb532988','','',NULL), -('7234','Pyro RYT \"Bloodline\" Multi-Tool ','Weapon','Gadget','921ca4aa-79cb-4039-a877-3d424bb4cbe5','','',NULL), -('7235','Ana Helmet Endro','Armor','Helmet','53741591-226f-4a5f-ab96-f091f1d60d37','','',NULL), -('7236','Ana Helmet Wao','Armor','Helmet','28364e25-63ee-4acc-bf78-d3ae3308cc5b','','',NULL), -('7237','Citadel Legs Icefall','Armor','Legs','e6d6521b-e40e-4b56-ab61-3a2a3fa5f7df','','',NULL), -('7238','Carryable_1H_CY_can_drink_2_a','Misc','UNDEFINED','fb408eb4-3fd1-4b9a-8044-a7178f042b8c','','',NULL), -('7239','Cyclone Lovestruck Livery','Paints','UNDEFINED','17c91e5c-22f7-483b-a4a8-9ed9359b1c1b','','',NULL), -('7240','KRIG_P72_Archimedes_Intake','FuelIntake','NoseMounted','ceaa01df-718b-413b-96e4-ce59388ee7d1','','',NULL), -('7241','K7 Pants Dark Green','Char_Clothing_Legs','UNDEFINED','0edd3669-a5eb-405c-889b-3ce3b4660880','','',NULL), -('7242','Filler Station','SalvageFillerStation','UNDEFINED','7b52235d-c4da-4520-891e-00201e1ea277','','',NULL), -('7243','Steel','Cargo','Cargo','8bb2a949-8347-41c2-afbf-66b63a673e47','','',NULL), -('7244','Seat','Usable','UNDEFINED','eaae6b3d-4f7c-4019-9529-1eb97513a815','','',NULL), -('7245','Gold (Ore)','Cargo','Cargo','12fbd7da-3e92-4bd8-ab68-8e81fe50fd42','','',NULL), -('7246','Gladiator Ship Armor','Armor','Medium','95435a5e-9744-4955-9e3c-a2bac27f6a15','','',NULL), -('7247','Shipment','Misc','UNDEFINED','f00d1588-4b04-4e95-981d-9bd1d6bfb0c7','','',NULL), -('7248','Internal Tank','FuelTank','Fuel','e2826550-a68a-4c61-a3de-1e502222c24a','','',NULL), -('7249','Antium Core Moss Camo ','Armor','Torso','cd3e2da2-98cc-48a3-9f75-9bc0ea075858','','',NULL), -('7250','ARGO_MPUV_Cargo_Pod_Interior','Room','UNDEFINED','2c33586e-24a2-4d3e-bb2b-177cbb997d7e','','',NULL), -('7251','Scrap','Cargo','Small','e840719a-3e5b-43e2-84ba-db7b0332814f','','',NULL), -('7252','sw_heavy_helmet','Armor','Helmet','b94c95de-a0c6-40d9-8a5a-9ef35dda95b9','','',NULL), -('7253','Prospector Dolivine Livery','Paints','UNDEFINED','af85230b-4d9d-4354-8d06-4233e777fe41','','',NULL), -('7254','AEGS_Javelin_CargoGrid_Hangar','CargoGrid','UNDEFINED','d703ef50-7df6-423b-842b-4f6ca18a5dee','','',NULL), -('7255','ORIG_85X_Thruster_Mav_Fixed_04_Right','ManneuverThruster','FixedThruster','9b81685b-6b01-4d57-b931-2ab0f5ff0867','','',NULL), -('7256','m_human_mannequin_marine_undersuit','ShopDisplay','UNDEFINED','f9243eaa-7781-481a-98ff-138156849155','','',NULL), -('7257','Iodine','Cargo','Small','b829c86c-6ff3-46cd-acbf-3a4fc101907e','','',NULL), -('7258','Torreto Pants Orange','Char_Clothing_Legs','UNDEFINED','6e9b4da7-bcdf-441e-bb81-e5b69297d3ab','','',NULL), -('7259','TRGT. STATUS','Seat','UNDEFINED','7cfe6103-3e2d-4192-a902-4471ed051510','','',NULL), -('7260','Thermax','Cooler','UNDEFINED','bba050c3-1348-45a8-91c6-73e4ecf5082f','','',NULL), -('7261','Carryable_utensil_spork','Misc','UNDEFINED','25f98f21-0eba-4b89-b9f6-b5f73280f17f','','',NULL), -('7262','CargoBox_050x050x050_Tank_Gas_Stacked_2','Cargo','Cargo','69eeec4f-ffb1-4dd1-9ffa-a2b417778658','','',NULL), -('7263','klim_jumpsuit_01','Char_Clothing_Torso_1','Male','5d2b0685-e0c3-4bcd-8d1b-71fcb5b7fc05','','',NULL), -('7264','lt_light_flood_2_wall_a','Light','UNDEFINED','76a0d2be-0918-41a9-ad2a-00f12c191741','','',NULL), -('7265','Lightstrike V Cannon','Weapon','Gun','5eef2a62-013b-4b80-80e4-5198213da1ec','','',NULL), -('7266','Concept Shirt (Modified)','Char_Clothing_Torso_0','UNDEFINED','11c73427-0a60-41e2-a15d-0f5bf2e0b66f','','',NULL), -('7267','Flight Blade','FlightController','UNDEFINED','ab251efb-5dae-4f76-bf40-966598c24f35','','',NULL), -('7268','Stud','Char_Head_Piercings','UNDEFINED','c3be406b-8fee-47b3-b8a3-d6b0bb227df0','','',NULL), -('7269','Door_RSI_Polaris_Front_EntranceHatch','Door','UNDEFINED','baa4a101-41a0-4f88-a3ef-818bb7375e09','','',NULL), -('7270','Internal Tank','FuelTank','Fuel','e767f85a-4ff7-48b0-b9dd-e04f96c2b071','','',NULL), -('7271','DockingTube_Fuel_Ports_RSI_Salvation','DockingCollar','UNDEFINED','b1e16781-e250-4979-86b1-625b9a7b255e','','',NULL), -('7272','Torga Shoes','Char_Clothing_Feet','UNDEFINED','cf59794d-9c57-46ff-8367-a78e061c1a63','','',NULL), -('7273','Carryable_1H_SQ_DataPad_Fluff_StormBreaker_ResearchFacility_Armory','Misc','UNDEFINED','e1bde3e9-0aab-4587-a20a-dab223b433c5','','',NULL), -('7274','AEGS_Gladius_Thruster_Main','MainThruster','FixedThruster','5d118473-dd82-4182-81a8-3bcf35b8d969','','',NULL), -('7275','Grav Lev 1','ManneuverThruster','JointThruster','e7941976-1595-427c-94ed-070171a70e1d','','',NULL), -('7276','Door Control','ControlPanel','DoorPart','dac52783-74a5-41e3-a562-36f79b21e2d7','','',NULL), -('7277','Lynx Legs Orange','Armor','Legs','a16e9087-8f85-4765-a7c6-732790437727','','',NULL), -('7278','INTK_CNOU_Mustang_Beta','FuelIntake','Fuel','51bc4450-cb8f-4092-9f98-db0f9ed82fd1','','',NULL), -('7279','AAT-34 Turret','Turret','MannedTurret','b8aa0117-97ad-4d08-b609-e83df24d55ef','','',NULL), -('7280','FullSpec-Max','Radar','MidRangeRadar','6bd2ac52-cb7d-43b8-8f92-efe11079d914','','',NULL), -('7281','Thlilye Laser Gatling','Weapon','Gun','6e3a862f-d13e-4873-ba34-24f3e554984d','','',NULL), -('7282','Daredevil Jacket','Char_Clothing_Torso_1','UNDEFINED','2219397c-3944-4975-b484-72dc84d23ca7','','',NULL), -('7283','RSI_Polaris_SeatAccess_TurretSeat_Right','SeatAccess','UNDEFINED','dd774851-4cca-4610-8e5d-7dc8decffb4c','','',NULL), -('7284','Mushroom Pad Thai','Food','Box','a83b9175-b5f5-4d7c-9346-fa972597749a','','',NULL), -('7285','Finley the Stormwal Large Luminalia Plushie','Misc','Personal','7209cf96-1620-412e-ae3c-ab3f8094bca9','','',NULL), -('7286','ht_glass_generic_1_a','Misc','UNDEFINED','1ac893c8-e151-4413-ae53-193a5a198a12','','',NULL), -('7287','bottle_drink_1_sports_shop_4x5_a','ShopDisplay','Default','ca6be878-396c-47b0-aa6f-7f971b3bcc87','','',NULL), -('7288','Katla Mask Yellow','Char_Clothing_Hat','UNDEFINED','f2b5d03c-2637-471b-a7c4-fee89d98a33d','','',NULL), -('7289','Seat','Usable','UNDEFINED','28ec7e7d-624b-4479-9432-4f09c20ce308','','',NULL), -('7290','ADP Arms Hurston Edition','Armor','Arms','f25afa5d-1fca-4343-bab9-f7578fcf99fc','','',NULL), -('7291','400i 2954 Auspicious Red Dog Livery','Paints','UNDEFINED','15987396-c9e2-4d19-a7c8-a3f7a6932806','','',NULL), -('7292','Seat','SeatAccess','UNDEFINED','964977aa-82f0-433b-90b9-d7ae56be2d7c','','',NULL), -('7293','Zeus Exploration Suit Helmet','Armor','Helmet','0e5ef30a-0c2b-433c-9b77-f177c922ceb4','','',NULL), -('7294','Medical Bed','Usable','UNDEFINED','6ceae1ef-676f-491f-8ac2-76f5da377680','','',NULL), -('7295','Fluorine','Cargo','Cargo','42ebfbd0-0c9c-44e2-bab5-e020a4c971ee','','',NULL), -('7296','RSI_Apollo_EmergencyLights','AttachedPart','UNDEFINED','67f9198c-4617-40fb-8099-8f8e129bd0e0','','',NULL), -('7297','can_drink_3_energy_bm_shop_1x5_a','ShopDisplay','Default','cbf66035-a735-4fcc-ad5a-71bb73ee54cc','','',NULL), -('7298','ORC-mkV Core Imperial','Armor','Torso','c7af9b9e-0933-4701-b1ac-a90d13acd0b9','','',NULL), -('7299','Venture Legs','Armor','Legs','70f6dd3a-790c-4b8b-b355-c256e09af19f','','',NULL), -('7300','RSI_Apollo_Skylight','AttachedPart','UNDEFINED','c267796b-38b6-41ea-a87c-2693f8b40dd6','','',NULL), -('7301','Internal Tank','FuelTank','Fuel','843bb7d7-760b-4265-87fe-89c66b575775','','',NULL), -('7302','Big Winner T-Shirt','Char_Clothing_Torso_0','UNDEFINED','5602b501-84c8-492d-bf59-a1b7f5ade010','','',NULL), -('7303','Bed','Seat','UNDEFINED','12902b2b-f38d-44ce-9c5c-656deaaea7fa','','',NULL), -('7304','Aurora Mk I CL Ship Armor','Armor','Medium','b71bad28-d9ca-43c3-b256-9b4a7502dc25','','',NULL), -('7305','Radar_Display_Terrapin','Display','UNDEFINED','62a93dca-aeb5-4ee0-9647-1045fc7083eb','','',NULL), -('7306','IAE 2955 T-Shirt Gray','Char_Clothing_Torso_0','UNDEFINED','0f0e52b8-1e54-4107-aaaf-0ccea3732690','','',NULL), -('7307','Internal Tank','FuelTank','Fuel','28ddd04f-66c2-4e4e-8231-0e0d7b0a8dca','','',NULL), -('7308','Internal Tank','FuelTank','Fuel','b6c1a1f0-4f82-4939-9220-ce8a16fe77f8','','',NULL), -('7309','ANVL_Hawk_Thruster_Mav_Joint','ManneuverThruster','JointThruster','1fd8c719-00ee-4949-9085-d6af5d9911e3','','',NULL), -('7310','Carryable_1H_CY_bottle_cognac_pourable_1_a','Misc','UNDEFINED','cfcaf5b4-d567-49fc-9ff0-5226a6e0a44a','','',NULL), -('7311','Door','Door','UNDEFINED','3ce7643a-fda9-497a-ac7f-3fa5210c2571','','',NULL), -('7312','Valkyrie T-Shirt','Char_Clothing_Torso_0','UNDEFINED','390de0a3-b247-4ab3-a236-bf32cfbc0f22','','',NULL), -('7313','Lynx Arms Grey','Armor','Arms','de759022-125e-42dc-8b8e-c8739bd6a776','','',NULL), -('7314','Carryable_2H_FL_EighthSCU_Commodity_Nonmetal','Cargo','Cargo','7c61004b-b447-425a-80d9-d62ea42f954f','','',NULL), -('7315','Arrowhead \"Stormfall\" Sniper Rifle','Weapon','Medium','a82ee2bb-7eca-4f2c-916c-ce742740089b','','',NULL), -('7316','Geist Armor Legs Golden Blossom','Armor','Legs','304f6a96-d6ce-493b-ab50-931d2e506ce5','','',NULL), -('7317','Parallax \"Fun Kopion Skull\" Energy Assault Rifle','Weapon','Medium','c57281a9-b879-47f5-b7b5-16929d79ee5d','','',NULL), -('7318','Door Control','Door','UNDEFINED','696aab71-18a7-4d95-8b77-a1aadf4f8712','','',NULL), -('7319','H_Dashboard_Projector_HUD_ORIG_85X','Display','UNDEFINED','080cb360-462b-4531-b60c-d7fcd6a9d150','','',NULL), -('7320','Hurston Hat','Char_Clothing_Hat','UNDEFINED','651a72fe-cd4f-409a-bfd7-e88772b919f4','','',NULL), -('7321','Omnapoxy','Cargo','Cargo','1921fedf-6afb-47cb-9637-b535107b610e','','',NULL), -('7322','Armor_Crate_CZ_Horizon','Usable','UNDEFINED','da7dd2d0-5ae0-43aa-b297-14e7809b4155','','',NULL), -('7323','ANVL_Hawk_Seat_Prisoner','Seat','UNDEFINED','79b87237-5c0e-4249-a384-b459302cff36','','',NULL), -('7324','facial_hair_040','Char_Head_Beard','UNDEFINED','61a8f3db-6dd2-4d6b-8e63-03f4a4b5fcf9','','',NULL), -('7325','Freeze','Cargo','Cargo','005e35c5-62a2-441d-aabd-d81139b437cb','','',NULL), -('7326','C8 Pisces Responder Livery','Paints','UNDEFINED','bb11eca9-0cd3-4e6c-94a4-fe53bb3d3ea2','','',NULL), -('7327','ORIG_890_Jump_Thruster_Mav_TRR','ManneuverThruster','FixedThruster','39db0af0-28e7-4665-8dee-d2191875e8be','','',NULL), -('7328','300 Series Black Rose Paint','Paints','UNDEFINED','6d57899e-beb2-47b1-b39f-7575fbb0dc21','','',NULL), -('7329','ADP-mk4 Arms Woodland','Armor','Arms','bef9cd69-24f0-434a-ba7a-2bf751228093','','',NULL), -('7330','Ketchum Beanie','Char_Clothing_Hat','UNDEFINED','b7c1bbdb-93bf-49fb-bb9e-ea73bdaffbc9','','',NULL), -('7331','Flight Blade','FlightController','UNDEFINED','e7bff659-576b-4a28-961e-646cb3ebef88','','',NULL), -('7332','RSI_Bengal_Dashboard_Pilot','SeatDashboard','UNDEFINED','c7dc8c3a-127c-47ec-ba93-f41469b07078','','',NULL), -('7333','ANVL_Paladin_Thruster_Vtol','MainThruster','UNDEFINED','6c940995-f9ec-4a99-8cb4-f5c64bb4c822','','',NULL), -('7334','Seat','Usable','UNDEFINED','b6b80568-df16-4213-bd7a-f4f75ff02b23','','',NULL), -('7335','Bed','Seat','UNDEFINED','78f105e9-441d-434f-bbad-327def808395','','',NULL), -('7336','Turret','TurretBase','MannedTurret','6655af14-7171-46e2-85d8-6028f291c18e','','',NULL), -('7337','vlk_spewgun_ballistic_ice_juvenile','Weapon','Medium','1792d761-5d8e-4f42-912c-bf42840b9a86','','',NULL), -('7338','DockingTube_RSI_Polaris','DockingCollar','UNDEFINED','263cca06-07d8-4524-92ec-d313a6872405','','',NULL), -('7339','Carryable_1H_CY_utensil_jigger_1_a','Misc','UNDEFINED','ba4a2308-e09f-4344-a37a-0e1e39e74ff0','','',NULL), -('7340','Paint_Perseus_Grey_Grey_Orange','Paints','UNDEFINED','d60e53be-2e49-486e-ac20-1463e7043960','','',NULL), -('7341','Argus Helmet Black/Silver/Blue','Armor','Helmet','713c5fd6-20ea-48e4-8c9b-a4c67db5e50c','','',NULL), -('7342','AAT-34 Turret','Turret','MannedTurret','1efa302d-2fab-4459-b54d-53892886e744','','',NULL), -('7343','G-2 Helmet Covalex Edition','Armor','Helmet','c790b326-5270-47bb-a0ef-a0ed8829767a','','',NULL), -('7344','Spruce Cap Ellroy\'s','Char_Clothing_Hat','UNDEFINED','d3831d0c-be4e-4ea3-8414-1607888f2074','','',NULL), -('7345','Palatino Backpack Sunstone','Armor','Backpack','aa3a3eeb-9d03-414e-8ef2-0988a9b88fb6','','',NULL), -('7346','MSD-582 Missile Rack','MissileLauncher','MissileRack','f1efe8e8-371d-4bf6-8a76-581caf1ad866','','',NULL), -('7347','BEHR_LaserCannon_Ventilation_S1','WeaponAttachment','Ventilation','1da7ba1c-941e-4072-ad2f-ab2ac47b4655','','',NULL), -('7348','Misfit Jacket','Char_Clothing_Torso_1','UNDEFINED','dda19d18-6b1a-48c0-919d-73986626a49d','','',NULL), -('7349','DockingTube_Fuel_Ports_ARGO_MPUV','DockingCollar','UNDEFINED','a522f9eb-7c2f-4c9c-a598-2f8154662693','','',NULL), -('7350','MSD-543 Missile Rack','MissileLauncher','MissileRack','44c134d1-061f-4642-b4f1-aa05b19191bd','','',NULL), -('7351','Testudo Core Turfwar','Armor','Torso','ca5d29ea-e118-401f-9da0-c36594958867','','',NULL), -('7352','Armor_Crate_CZ_Firerat_004','Usable','UNDEFINED','431cc360-6e1e-48d6-a21f-3c4488e542fc','','',NULL), -('7353','Jaclium (Ore)','Cargo','Cargo','fef1557a-bd3e-44ab-a436-a561fced6e8f','','',NULL), -('7354','Door Control','Door','UNDEFINED','c6991237-06b3-45a7-bc13-8b5a7b2c6822','','',NULL), -('7355','Odyssey II Undersuit Purple/Black','Armor','Undersuit','2897896d-738f-4fcf-96f6-3cc61905cace','','',NULL), -('7356','Carbon-Silk','Cargo','Cargo','95607ca6-2514-498d-ba38-566787664c40','','',NULL), -('7357','Lorber Shoes','Char_Clothing_Feet','UNDEFINED','62bb2ac1-d1e5-44e4-a0d0-1e66badaab59','','',NULL), -('7358','Desert Cat Boots','Char_Clothing_Feet','UNDEFINED','3928915d-8985-48b9-ab55-43afb14b7075','','',NULL), -('7359','Organics','Cargo','Cargo','5d151a52-5840-4fe5-be20-c361a2120153','','',NULL), -('7360','DRAK_Golem_Thruster_Mav_Fixed_Top','ManneuverThruster','FixedThruster','cb6f48c8-df4e-46e3-b77d-a53bf645290b','','',NULL), -('7361','Aves Arms','Armor','Arms','64631198-28b5-49f0-893f-92b9bfadf95e','','',NULL), -('7362','Deo Shirt Tan','Char_Clothing_Torso_0','UNDEFINED','4194fa59-617c-4cc5-8b51-77a583154c86','','',NULL), -('7363','Voss Helmet','Armor','Helmet','0842c9b9-088a-4eae-9c1c-41db1d3120da','','',NULL), -('7364','RSI_Aurora_GS_Thruster_LN_Retro_Right','MainThruster','FixedThruster','52c24b29-a23d-4da8-884c-973315a41da5','','',NULL), -('7365','Locker_Suit_Right_AEGS','Usable','UNDEFINED','d98d7ac8-cebe-4863-a8c7-a1926e532bcc','','',NULL), -('7366','TRGT. STATUS','Seat','UNDEFINED','e9c1e3f1-a8f8-4dc8-a3e8-ff6787c90635','','',NULL), -('7367','Ranta Dung','Cargo','Cargo','0eb081ac-5891-45e9-a61d-55ceeac8cb14','','',NULL), -('7368','Starfarer Gemini Ship Armor','Armor','Medium','4552f0e6-b7aa-426c-bead-be1c5b1f4046','','',NULL), -('7369','Wally\'s Bar Hologram Replica','Misc','Flair_Wall_Picture','081fe84e-0e31-4d22-88e2-8281fe5e10f2','','',NULL), -('7370','Inquisitor Arms Olive','Armor','Arms','150f53ce-f168-4951-bec2-18349861b21e','','',NULL), -('7371','Tuvois Jacket Red','Char_Clothing_Torso_1','UNDEFINED','119feca0-d5ef-4883-9786-fa8e83bfcb14','','',NULL), -('7372','Exo-8 Helmet (Used)','Armor','Helmet','45a0b4d9-3798-4620-b46e-f127ee20e604','','',NULL), -('7373','Algid','Cooler','UNDEFINED','115aaff9-c8c5-4b93-bc14-9f22524fe8a8','','',NULL), -('7374','Concept Shirt Dark Red','Char_Clothing_Torso_0','UNDEFINED','e68c18b9-c538-4e68-a875-5bb0cc60c132','','',NULL), -('7375','AEGS_Reclaimer_Thruster_Mav_Fixed_Bottom_Front','ManneuverThruster','FixedThruster','f015423d-21e9-45ce-9855-692aba4caedc','','',NULL), -('7376','Arrowhead \"Midnight\" Sniper Rifle','Weapon','Medium','2e418f00-1e0f-4870-9392-c9c36c369d0a','','',NULL), -('7377','Serac','Cooler','UNDEFINED','18600693-df8b-4898-a9a6-e91291e69dd4','','',NULL), -('7378','RSI_Constellation_Phoenix_CargoGrid_Main','CargoGrid','UNDEFINED','a5397e6b-42b3-403b-b83d-8b5b9b4a31b4','','',NULL), -('7379','display_booth_stand_3_weapon_0075x002x01125','ShopDisplay','Default','0d22aff7-5313-45c2-9af9-ce1e66a45763','','',NULL), -('7380','TrueDef-Pro Legs Red/Silver','Armor','Legs','c0014f7f-a016-42c3-9c04-09aa39c62011','','',NULL), -('7381','Chiron Backpack Heartthrob','Armor','Backpack','f674b2a2-a589-4957-a8b3-e2b62708c894','','',NULL), -('7382','Seat','SeatAccess','UNDEFINED','381137d5-c83a-4cb0-a1cd-d9809182cdc3','','',NULL), -('7383','Radar_Display_CRUS_Starrunner','Display','UNDEFINED','763bd3e9-6d1d-4209-bb6e-8376b0be11e1','','',NULL), -('7384','Arclight \"Midnight\" Pistol','Weapon','Small','716624c5-8d5d-4357-8900-65d44197347b','','',NULL), -('7385','KRIG_P52_Merlin_Thruster_Mav_Vertical_Bottom','ManneuverThruster','JointThruster','2f8e97d8-93b0-40c6-b8d2-7d6e7a2ebe19','','',NULL), -('7386','Adiva Jacket Seagreen','Char_Clothing_Torso_1','UNDEFINED','e64a507a-66d2-4c34-93dd-4c18f294c125','','',NULL), -('7387','SHIELDS','ShieldController','UNDEFINED','62a3b6ac-3620-4be8-82ec-20e3893e6ef6','','',NULL), -('7388','AEGS_Door_Decal_Escapepods_Large_05','Decal','DoorPart','adfc03b7-ba0f-4507-9d18-34f3363dfa83','','',NULL), -('7389','DRAK_Clipper_Thruster_Retro_Aux_Right','ManneuverThruster','UNDEFINED','1baa5ce9-eff5-4069-9446-79f97326dd28','','',NULL), -('7390','TRGT. STATUS','Seat','UNDEFINED','39f8eead-4c71-4f40-82ab-6a34f7fad866','','',NULL), -('7391','Oracle Helmet Dark Red','Armor','Helmet','6d0485b9-f793-46aa-8b37-9413d588a6bc','','',NULL), -('7392','Libio Jacket Red','Char_Clothing_Torso_1','UNDEFINED','e81f4997-07bf-40f2-a00b-193973dbf05a','','',NULL), -('7393','Carryable_1H_CY_glass_cocktail_1_a','Misc','UNDEFINED','3a27f7de-4ac0-4f77-b779-31a008360c3c','','',NULL), -('7394','Door Control','Door','UNDEFINED','5671c73a-2216-4470-bcf3-0249a6cedf91','','',NULL), -('7395','ORIG_350r_Dashboard_Pilot','SeatDashboard','UNDEFINED','1805b512-af3d-4981-891a-ed6cf31764e5','','',NULL), -('7396','Artimex Helmet Canuto','Armor','Helmet','6e98c7be-f047-4d1e-b830-605d5036874a','','',NULL), -('7397','Weapon_Rack_Grin_MTC','Door','UNDEFINED','f29b3c46-df00-4147-91ad-745142bd9192','','',NULL), -('7398','sc_nvy_bridgeofficer_boots_01_01_01','Char_Clothing_Feet','UNDEFINED','d39fae14-10f6-4209-adf3-28368894ef9b','','',NULL), -('7399','Vehicle_Screen_MFD_Holographic_Prowler_BR','Display','UNDEFINED','cde15f3e-eca8-4d89-9aac-c592079845a0','','',NULL), -('7400','Beacon Undersuit Crimson','Armor','Undersuit','df3a8ce8-2a8a-4511-b4fd-d3cdf40302d9','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('7401','Morozov-SH-I Core Lifeforce','Armor','Torso','c6554d7a-b832-4a8f-9eb5-7d69c451675f','','',NULL), -('7402','Greenwater Shirt Olive','Char_Clothing_Torso_0','UNDEFINED','3d53e2d3-ea0f-4ef5-ab1a-1fd94075ff2d','','',NULL), -('7403','Warden Backpack Keystone','Armor','Backpack','5631d510-9a72-4b63-a7d9-e148defdf80c','','',NULL), -('7404','Stalker V Missile','Missile','Torpedo','9d2d7b0d-9f54-4fe1-8bff-c6ea2a5af5d3','','',NULL), -('7405','Mercury','Cargo','Cargo','e31d6897-85b6-46cc-a046-30a7331ac761','','',NULL), -('7406','Morningstar Helmet White','Armor','Helmet','e0fa4e0e-c497-4c42-bb78-3fae776157a9','','',NULL), -('7407','Davin Work Gloves Imperial','Char_Clothing_Hands','UNDEFINED','489147fe-ea6f-4bfc-825d-d49ad7a1b374','','',NULL), -('7408','Origin Jumpworks 125a Ship Armor','Armor','Medium','3b4c1c53-5416-46b3-aba3-5cbe5a7d8517','','',NULL), -('7409','UDM Container Model','Misc','Flair_Wall_Picture','5ac913ec-bfca-464d-b5e6-0c422f52bbea','','',NULL), -('7410','Arclight \"Executive Edition\" Pistol','Weapon','Small','1955753f-3472-4f04-ab9e-044af04a22f4','','',NULL), -('7411','Nyman Jacket Red','Char_Clothing_Torso_1','UNDEFINED','3b35cec4-11d7-4d89-8aab-263102d0ee44','','',NULL), -('7412','Ship Showdown \'52 Mercury Coin','Misc','Utility','77e07416-cad8-4de8-8447-9e4b6c6cb49b','','',NULL), -('7413','Door Control','ControlPanel','DoorPart','fb51f1c4-2f9f-4b78-809e-55aba0bfe9c7','','',NULL), -('7414','Prospector Foundation Fest Livery','Paints','UNDEFINED','5598c685-802c-4893-9646-3796d89eadc1','','',NULL), -('7415','Seat','SeatAccess','UNDEFINED','77e79aa1-e2b7-4e9e-9b82-1c68713fa2ef','','',NULL), -('7416','A03 Sniper Rifle Magazine (15 cap)','WeaponAttachment','Magazine','c12a76b1-80b2-4db5-9648-20a1cd0f4d67','','',NULL), -('7417','Seat','SeatAccess','UNDEFINED','e2c147ba-ebae-45a9-ab62-66a1a10abd4f','','',NULL), -('7418','Cambio SRT Canister','WeaponAttachment','Magazine','100037d0-d9c1-400d-a29a-c2ea3b621753','','',NULL), -('7419','Retaliator Unladen Rear Module','Module','UNDEFINED','2085bd4c-f2f3-4630-aee6-da2d455e92ac','','',NULL), -('7420','Seat','Usable','UNDEFINED','10d1604a-29a0-4708-8dbb-8d80ec9d7d6e','','',NULL), -('7421','MTC Brushwood Camo Livery','Paints','UNDEFINED','4bad411b-2ff1-4c02-81a9-7061cb7c501f','','',NULL), -('7422','RSI_Constellation_Base_BayWall_Right','Container','UNDEFINED','6900a68c-2078-4580-84ad-b383acc48fa6','','',NULL), -('7423','sc_nvy_deckcrew_nogoggles_helmet_01_01_01','Char_Clothing_Hat','UNDEFINED','ac69b410-02fe-4ea7-a63f-4cb6e8133c98','','',NULL), -('7424','Janalite','Cargo','Cargo','7270a7e6-7823-42b4-8619-774e81fefc5f','','',NULL), -('7425','Pyro RYT Multi-Tool','Weapon','Gadget','505e4ea1-b6ec-4a34-9484-31b0234e8235','','',NULL), -('7426','Door','Door','UNDEFINED','2e32912e-f6f5-4be6-820b-b4b9e7ea66da','','',NULL), -('7427','Blade Ship Armor','Armor','Medium','3e079c98-45c0-4d08-b647-313fe1d1c584','','',NULL), -('7428','GCD-Army Legs','Armor','Legs','653342e1-8196-4ccb-ad2c-4567c71759e1','','',NULL), -('7429','Railing_Straight_4m_Hurston_Lorville_Glass_C','Usable','UNDEFINED','61e4bf26-2c87-4fa4-8d59-0dba58a19b92','','',NULL), -('7430','Door','Door','UNDEFINED','4609dabd-21d1-43be-8490-82f60819780a','','',NULL), -('7431','display_item_noGeo_01Port_Hat_stiff','ShopDisplay','UNDEFINED','0b63274f-b69e-49e5-b5fd-834ae296d7c2','','',NULL), -('7432','Degnous Root','Cargo','Cargo','739bd503-6280-45d1-ba93-460389902460','','',NULL), -('7433','Devastator \"Executive Edition\" Shotgun','Weapon','Medium','4d1c4182-f460-4009-84e4-1df97d3f0547','','',NULL), -('7434','RSI_Apollo_Medivac_Thruster_Retro_Left','ManneuverThruster','FixedThruster','44dabf88-17d4-4d40-854f-9cc261fad7b2','','',NULL), -('7435','Weapon Rack','Usable','UNDEFINED','b2a3e92d-111b-4d6a-91a0-a0551e564542','','',NULL), -('7436','INTK_RSI_Meteor','FuelIntake','Fuel','910b6e4f-7a1e-4ede-be51-c396bc1e789e','','',NULL), -('7437','STV Cobalt Grey Livery','Paints','UNDEFINED','a297ea4e-6b1e-4192-bf97-b8dc18408949','','',NULL), -('7438','Door Control','Door','UNDEFINED','eee22d9d-1d59-4506-bc41-ff3a9e5a2b4c','','',NULL), -('7439','Astley Pants (Modified)','Char_Clothing_Legs','UNDEFINED','fa48bd6d-b05e-4ecc-a71a-c19876ad5211','','',NULL), -('7440','Weapon_Rack_Cz_Firerat_002','Usable','UNDEFINED','ecc55426-6115-42f7-a0c9-b047ae6c93d9','','',NULL), -('7441','Carbon','Cargo','Cargo','31e1cbdb-2ebe-4fa2-a456-1fe6f46fa3ec','','',NULL), -('7442','H_Dashboard_Projector_HUD_XIAN_Nox','Display','UNDEFINED','aded6a4a-3361-4988-b594-a941c926195e','','',NULL), -('7443','Origin White King','Gadget','UNDEFINED','70a68700-0f9a-49bf-b408-ef38ed8de862','','',NULL), -('7444','m_human_mannequin_base_armor_Collector_SBDes','ShopDisplay','UNDEFINED','0a9b3770-4deb-4024-be17-8f5903a084e6','','',NULL), -('7445','Neograph','Cargo','Cargo','1680dc0e-0c99-443c-bf7c-fe90faaa4c16','','',NULL), -('7446','ARGO_MPUV_Leg_Right','Misc','UNDEFINED','dc44c0d2-e36f-4053-bcc4-29d0bf8d6d08','','',NULL), -('7447','Ramp Control','Usable','UNDEFINED','44a18200-a04f-b0ea-3e75-d2b83a8ffaab','','',NULL), -('7448','TRGT. STATUS','Seat','UNDEFINED','7d293b7a-6d82-44c2-903d-a5cdb93e97df','','',NULL), -('7449','Dashboard','SeatDashboard','UNDEFINED','a69c298d-8df3-4922-815b-7b1b631dab4e','','',NULL), -('7450','Flood Energy','Drink','Can','5d2b02eb-51e4-4b3a-9efb-7f3c63a3d97d','','',NULL), -('7451','Prim Shoes Aqua','Char_Clothing_Feet','UNDEFINED','366a829c-7bf8-455b-b411-9240047ecdb1','','',NULL), -('7452','Souvenirs','Cargo','Cargo','b110ba9a-dce9-45cf-b8cd-fbb58dd1a793','','',NULL), -('7453','ORC-mkX Arms Autumn','Armor','Arms','3d5525ba-387e-4a03-ba6c-fa4e9a36fa3b','','',NULL), -('7454','Carryable_1H_SQ_Datapad_Fluff_Orb_HathorGroup_007','Misc','UNDEFINED','d60f0010-3a22-4c22-83a1-9c828e1bcafe','','',NULL), -('7455','H_Dashboard_Projector_HUD_GAMA_Syulen','Display','UNDEFINED','5c5b03e5-51b8-4507-8f30-5e2d8def5f6f','','',NULL), -('7456','table_poker_1_a_3_Seat','Usable','UNDEFINED','2324f37b-0526-4d1b-b6c5-a8257e818596','','',NULL), -('7457','Harlowe Shirt Purple','Char_Clothing_Torso_0','UNDEFINED','3635c7e0-56c9-407b-8ecf-b40b3c0dfc37','','',NULL), -('7458','MASTER_can_carryable_1h','Cargo','UNDEFINED','bf464cd0-0401-43ba-a88a-bec9ba09c27e','','',NULL), -('7459','Vacha Jacket Ebony','Char_Clothing_Torso_1','UNDEFINED','f8951a65-0099-4c49-850c-c28d8bc9b5c5','','',NULL), -('7460','MacFlex Legs Sienna','Armor','Legs','88ee3ada-6603-4a32-8479-c62e3d2728e5','','',NULL), -('7461','Shower','Cargo','UNDEFINED','b3afb4ac-ded3-429f-9ca3-4080503ffeca','','',NULL), -('7462','Devastator \"Rager\" Shotgun','Weapon','Medium','82c475c9-7e54-4991-ad37-66f08cbc54f3','','',NULL), -('7463','Inquisitor Arms Red','Armor','Arms','80cb3a30-5626-45c7-b6c1-2015481f5b7c','','',NULL), -('7464','Razorback Pants Orange','Char_Clothing_Legs','UNDEFINED','c80ac343-70c2-485b-b624-20d74c0c83de','','',NULL), -('7465','Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','a3c3b445-7625-4f5c-b6b2-977c1f8552d8','','',NULL), -('7466','Bed','Usable','UNDEFINED','510d203c-ad7e-4848-959b-a7b89bc43b38','','',NULL), -('7467','Internal Tank','QuantumFuelTank','QuantumFuel','e39c1aa6-8abc-434b-8e08-5a1ad28c5aca','','',NULL), -('7468','GLSN_Shiv_Thruster_Maneuver_Bottom','ManneuverThruster','JointThruster','a9cef900-ab7a-4d2f-af11-6a7153f20da6','','',NULL), -('7469','Saldynium (Ore)','Cargo','Cargo','ba87badc-fb45-43a5-9256-705729f0c6c1','','',NULL), -('7470','Lillo Pants Yellow','Char_Clothing_Legs','UNDEFINED','f1a07fef-7357-45f6-846c-94b587ae8c28','','',NULL), -('7471','Radar_Display_Aurora','Display','UNDEFINED','8ce26532-3b22-451f-a7b0-3220cf0d08e1','','',NULL), -('7472','Seat','Usable','UNDEFINED','ec276a15-608d-4d31-ac90-9dc0b56f48a3','','',NULL), -('7473','MISC_Hull_C_FoldingStrut_2C_Outer','Cargo','UNDEFINED','955fbffc-dcec-4a88-9196-f9b3da3ee07a','','',NULL), -('7474','Inquisitor Legs Dark Green','Armor','Legs','6c53806f-80f6-48c8-8f6c-93d866948d5e','','',NULL), -('7475','ARMR_TMBL_Nova','Armor','Medium','95fd9f33-938d-40dd-a8ce-31aa231822b2','','',NULL), -('7476','Millrun Waders Calypso','Char_Clothing_Legs','UNDEFINED','09170a25-64c9-4a49-b80d-2ffa9d5e8d0c','','',NULL), -('7477','Mercury Gloves \"Voyager\"','Char_Clothing_Hands','UNDEFINED','c128176f-b971-45e0-a314-6c11b1e4d3ab','','',NULL), -('7478','Carryable_1H_CY_utensil_strainer_1_a','Misc','UNDEFINED','5871590a-14e7-4484-a915-922bfb6d8324','','',NULL), -('7479','Bed','Usable','UNDEFINED','2b64419c-dd96-4282-9275-e99e2de50a8e','','',NULL), -('7480','Fluorine','Cargo','Small','abcc1be0-5507-4a1e-938b-63fea40e7f52','','',NULL), -('7481','DRAK_Cutlass_Blue_Thruster_Retro','MainThruster','FixedThruster','1c58c3be-3344-4a8b-a476-5b500cb11df4','','',NULL), -('7482','Seat','Usable','UNDEFINED','e75abcb5-eada-40d3-a934-be5842900f94','','',NULL), -('7483','Personal Storage','Cargo','UNDEFINED','99596ec1-bda5-443c-822a-39dff0ca22e7','','',NULL), -('7484','Lynx Arms Imperial','Armor','Arms','0029eeb3-9062-47d6-82bd-27246f31427b','','',NULL), -('7485','Prowler Stormbringer Livery','Paints','UNDEFINED','28450c13-4f89-4dfa-b571-c25c9ec3f32c','','',NULL), -('7486','CRUS_Starlifter_SCItem_Turret_Seat_Bridge','Seat','UNDEFINED','dec44ed6-9eb7-49ae-94df-e9b5a9780dcb','','',NULL), -('7487','NONE_LaserRepeater_PowerArray_S1','WeaponAttachment','PowerArray','c2586394-394a-41e5-b63a-acfbf9af08c0','','',NULL), -('7488','RSI_Perseus_Thruster_Main_Bottom_Left','MainThruster','UNDEFINED','a3b6896c-2b5d-44bb-81a7-74c2719c3d58','','',NULL), -('7489','Antium Core Maroon','Armor','Torso','dc04cecd-1e9d-4e9d-b64e-8b1c5867de1c','','',NULL), -('7490','Amiant Pod','Misc','UNDEFINED','778b4ee1-4dbb-4656-899b-afc3d8f8b9be','','',NULL), -('7491','SLAM','Misc','Utility','72d2cf52-8306-4ebc-83d0-463ccb93e5e5','','',NULL), -('7492','MISC_Starfarer_Gemini_Thruster_Main_Derelict','MainThruster','FixedThruster','5c587757-0ff0-4ab5-9ef0-ab24e8dc0b57','','',NULL), -('7493','Sangar Helmet','Armor','Helmet','d28e663f-32ee-496d-b475-4c84b17158df','','',NULL), -('7494','CitizenCon \'54 Coin','Misc','Utility','5075adb4-7170-4751-a30a-38a4e87a5e30','','',NULL), -('7495','MISC_Starfarer_Base_SCItem_Dashboard_Sup_Right','SeatDashboard','UNDEFINED','6989011d-e32c-4825-9358-393729f47fe9','','',NULL), -('7496','Crusader White Rook','Misc','UNDEFINED','b29a3c09-396c-4fb3-8eb9-1e500c480f78','','',NULL), -('7497','display_guns_04x01x01_6Ports','ShopDisplay','UNDEFINED','8bec16c7-efde-450e-87f6-3c8382d41603','','',NULL), -('7498','rack_gun_size_3_005x0075x01125_1_a','Misc','UNDEFINED','ac9101bf-7a9b-419c-a52f-4973f88d122b','','',NULL), -('7499','Blood_Decal_Splat2','Decal','DoorPart','236ca8a1-0d9e-43d5-a31c-4b9778133d8c','','',NULL), -('7500','Tona Shoes Black','Char_Clothing_Feet','UNDEFINED','b83dc29f-4c34-478f-88f5-ef70194fb245','','',NULL), -('7501','Defiance Core Charcoal','Armor','Torso','1deec5ee-7490-41d0-aa7d-cbf8b7e1ebda','','',NULL), -('7502','Aril Arms Red Alert','Armor','Arms','3a9cdda4-d92f-4cfe-9160-0d9f8b06bb55','','',NULL), -('7503','JS-500','PowerPlant','Power','53e75236-5a91-4d75-8c23-373e44daa69c','','',NULL), -('7504','Killshot \"Bloody\" Rifle','Weapon','Medium','870eb4ac-e1c9-4d0b-b62b-d23579e05104','','',NULL), -('7505','Duck Sword T-Shirt','Char_Clothing_Torso_0','UNDEFINED','c367fff0-b946-4873-acfd-bbf270f5d2f5','','',NULL), -('7506','Carryable_2H_FL_toy_plushy_cargo_1_a','Misc','Flair_Wall_Picture','de15fd8a-4304-4d38-a876-67ceecba814c','','',NULL), -('7507','Valkyrie 2950 Best In Show Livery','Paints','UNDEFINED','7d5de3f3-47be-4e2a-af46-40cc2abecf8c','','',NULL), -('7508','RSI_Scorpius_Antares_SCItem_Seat_CoPilot','Seat','UNDEFINED','ee6685e5-c6d7-47a4-b4a0-99a0b0d9de89','','',NULL), -('7509','Seat','Usable','UNDEFINED','2c91d119-1810-41fc-962e-f88a5740d7ae','','',NULL), -('7510','Paint_Gladius_Default','Paints','UNDEFINED','43b92bad-2ad4-45c2-accc-d4911b2c32df','','',NULL), -('7511','DockingTube_Fuel_Ports_RSI_Aurora_LX','DockingCollar','UNDEFINED','d57fa76f-bd80-41a6-9a94-751e76528e80','','',NULL), -('7512','Seat','Usable','UNDEFINED','6ed0f5ef-0015-4ffb-825a-d29337285b0f','','',NULL), -('7513','Bed','Seat','UNDEFINED','53828788-5e0c-419f-8e0a-6b7ffc257dfa','','',NULL), -('7514','Ravager-212 \"Bright Star\" Twin Shotgun','Weapon','Medium','bfd81a96-9369-4430-b057-432eac9512d8','','',NULL), -('7515','Novikov \"Ascension\" Exploration Suit','Armor','Undersuit','3598bc92-1257-4779-a6f7-1b90c5c99e6c','','',NULL), -('7516','TMBL_Storm_Ground_Refueling_Port','Door','UNDEFINED','9ab48b7f-a24b-47bc-8af6-fe8d8ac8e180','','',NULL), -('7517','Varhey Boots Ochre','Char_Clothing_Feet','UNDEFINED','bcd55149-c2a6-4a51-8067-0b35a2e952e7','','',NULL), -('7518','MASTER_tool_2_handed','Misc','UNDEFINED','ea577a10-b996-485b-a37c-fddcbb8fca12','','',NULL), -('7519','Pollux Pants','Char_Clothing_Legs','UNDEFINED','a82f62f1-fd2b-4b5d-a60d-f87337885a13','','',NULL), -('7520','Book','Misc','UNDEFINED','562099e9-2f9b-45cc-94d3-39b96f1e5e10','','',NULL), -('7521','Silco Shirt','Char_Clothing_Torso_0','UNDEFINED','735f762e-9118-416b-9a3f-cc6d9f3823a7','','',NULL), -('7522','MISC_Fortune_Thruster_Mav_Fixed_04','ManneuverThruster','FixedThruster','d9686bdc-135f-489f-9105-c445993c9846','','',NULL), -('7523','Door Control','ControlPanel','DoorPart','43ed547b-834c-4668-b655-b2d75c69e14d','','',NULL), -('7524','MacFlex Arms Aqua','Armor','Arms','56af16f4-bc6c-4f09-b76c-9c82283a2623','','',NULL), -('7525','Door Control','Door','UNDEFINED','a99fb618-3970-441b-887a-bbd1051ab265','','',NULL), -('7526','Day One Shirt Seagreen','Char_Clothing_Torso_0','UNDEFINED','39ea1748-c46a-494e-ba37-6939fd5b1c6b','','',NULL), -('7527','M50 Skullcrusher Livery','Paints','UNDEFINED','ce4a4027-7a0d-4814-8d4c-b029260570d5','','',NULL), -('7528','FBL-8a Core (Modified)','Armor','Torso','577b08ae-a78f-417b-abc9-aaae869541cb','','',NULL), -('7529','ADO-5 Laser Mine','Grenade','Small','b0d64307-0e61-4bfc-a915-697d1073bfc1','','',NULL), -('7530','Odyssey II Helmet Dark Red','Armor','Helmet','cddc5fb5-1989-4053-8b6e-474979132011','','',NULL), -('7531','Shipment','Misc','UNDEFINED','de47d1f3-d301-4d7a-8281-f56f4292dc95','','',NULL), -('7532','Morozov-CH Backpack Redshift','Armor','Backpack','bf7dc239-a0f1-4a48-b3d7-b30b3eeaf2a2','','',NULL), -('7533','ORC-mkX Legs Singularity','Armor','Legs','3b12c3bd-bfd9-4aab-b21b-092af0500bc8','','',NULL), -('7534','Door','Door','UNDEFINED','96f7761c-f9f8-49b6-81fc-19422db4c4d4','','',NULL), -('7535','Glacosite','Cargo','Cargo','da9257f3-b8cf-480c-85f2-3adf3a130321','','',NULL), -('7536','ORIG_125a_Thruster_Retro_Right','ManneuverThruster','JointThruster','7f125cbd-c660-4c95-ab31-52c0d5732a1c','','',NULL), -('7537','sc_nvy_pilot_light_helmet_01_01_opaque','Armor','Helmet','2a81e804-a321-450c-ac47-169b2df467b1','','',NULL), -('7538','Diluthermex','Cargo','Cargo','e5397866-2f39-41bd-8fe1-151b4800f4be','','',NULL), -('7539','Door Control','ControlPanel','DoorPart','65655277-582c-4c8d-81d2-65399aeded08','','',NULL), -('7540','Agrippa','Radar','MidRangeRadar','85d23bcf-e781-4321-a4ed-f8cc3e36e299','','',NULL), -('7541','ForceFlex Undersuit Ember Camo','Armor','Undersuit','511ab0de-9cf3-45be-ac7a-8d3420f2c98a','','',NULL), -('7542','Sledge II Mass Driver Cannon','Weapon','Gun','c657c03c-6ac6-4da6-ab70-bfab52804444','','',NULL), -('7543','AEGS_Javelin_SCItem_Seat_Bridge_Right_RemoteTurret_Blocked','Seat','UNDEFINED','b39bb849-676e-4234-9f55-a68dec6efd93','','',NULL), -('7544','Landlite Boots Seagreen','Char_Clothing_Feet','UNDEFINED','304c8e73-b168-4082-8024-7002d71a4e3f','','',NULL), -('7545','Door Control','Door','UNDEFINED','73f56922-4480-4c42-8e46-69ec275ccea3','','',NULL), -('7546','MacFlex Core \"Rucksack\"','Armor','Torso','782bb2ca-50b2-4e19-8518-b5e3abffdbd9','','',NULL), -('7547','Seat','SeatAccess','UNDEFINED','828db412-66f7-4e68-a5e0-5cd352561347','','',NULL), -('7548','GP-33 MOD \"Quite Useful\" Grenade Launcher','Weapon','Medium','a67d3f66-790a-4a4b-97df-8ec0723cb163','','',NULL), -('7549','ANVL_Hornet_F7C_Mk2_Dashboard_Pilot','SeatDashboard','UNDEFINED','1b9fa3df-12ed-40ec-841f-098a9d01c516','','',NULL), -('7550','INTK_MISC_Hull_C','FuelIntake','Fuel','90105c00-268b-4bde-8e57-16c795e6a96f','','',NULL), -('7551','Carryable_1H_CY_converter_relay_1_a','Misc','UNDEFINED','402d3d29-8f06-4169-b91b-05229b5f6ed2','','',NULL), -('7552','Manned Turret','TurretBase','MannedTurret','5102785b-9f02-46a3-9a5d-a1cebb5db9bf','','',NULL), -('7553','ARGO_CSV_Cargo_Rack_Top','Container','Cargo','afd82878-534c-4992-80d9-f91c3b762fab','','',NULL), -('7554','ELD - shirt (04) - name','Char_Clothing_Torso_0','UNDEFINED','4e7a4cee-4a74-4691-8a9b-086ab0fc2a81','','',NULL), -('7555','game_chess_1_queen_a','Misc','UNDEFINED','de8110a9-692e-4d4c-99fd-c9e5194e7bff','','',NULL), -('7556','H_Dashboard_Projector_HUD_ANVL_Valkyrie','Display','UNDEFINED','c93db5a6-0127-433d-a6e8-d8690bed76c6','','',NULL), -('7557','Venture Helmet Yellow','Armor','Helmet','b5659236-51ac-49a2-9eca-fd3be2356bc7','','',NULL), -('7558','lt_incense_tower_1_a','Cargo','UNDEFINED','a0fa0f95-3e7e-410e-9e57-c51d8e2ae9c7','','',NULL), -('7559','ClipVest Work Harness Twilight','Char_Clothing_Torso_1','UNDEFINED','632e7e08-5972-4d2a-af1b-c8da1fdf5c87','','',NULL), -('7560','Door','DockingAnimator','UNDEFINED','37d46e6e-72bb-403f-98cd-a519d93838f4','','',NULL), -('7561','TroMag Burst Generator','EMP','UNDEFINED','b171c0f3-7e9b-49b7-a6b4-8422315d4a6e','','',NULL), -('7562','Ventra Gloves Twilight','Char_Clothing_Hands','UNDEFINED','bfe9a4fb-b273-4d04-a327-e4670793678a','','',NULL), -('7563','RSI_Polaris_SeatAccess_Captain','SeatAccess','UNDEFINED','4e009c39-4322-47ae-b557-cc8db07f36f6','','',NULL), -('7564','Wanderer Boots \"Pathfinder\"','Char_Clothing_Feet','UNDEFINED','94764285-2c27-4a9d-8e7d-c4156751805e','','',NULL), -('7565','Radar_Display_Vanguard','Display','UNDEFINED','c4bee632-c196-489b-aa41-c030cbc4ec92','','',NULL), -('7566','Stoneskin Undersuit','Armor','Undersuit','6a3daab4-c2c2-4a11-a7a6-a9c77baf6b1d','','',NULL), -('7567','Door Control','Door','UNDEFINED','a11b0307-39bb-425c-9ecc-52e78b62c74a','','',NULL), -('7568','Atlasium (8 SCU)','Cargo','Cargo','40e8e983-15d8-47fd-82ab-6eb1d16c7ba5','','',NULL), -('7569','Col Head Cover Maroon','Char_Clothing_Hat','UNDEFINED','6cb8150c-6e2d-4d93-9f11-3ba743227215','','',NULL), -('7570','DRAK_Cutlass_Blue_Thruster_Maneuver_Vertical_Negative','ManneuverThruster','JointThruster','9ebaf310-2a4b-43fe-9c2f-8d9daf47539d','','',NULL), -('7571','Door Control','Door','UNDEFINED','281f8a1a-6eb1-4401-995e-46a89d5e5fb3','','',NULL), -('7572','WEAPONS','WeaponController','UNDEFINED','7eb841ca-ea71-404e-a40b-00bb2474a32b','','',NULL), -('7573','Internal Tank','QuantumFuelTank','QuantumFuel','502da9f3-e63f-401a-bbeb-71c730c1b4c7','','',NULL), -('7574','Partillium','Cargo','Cargo','7f84fe1d-2f18-45d6-b62b-82fac27936d4','','',NULL), -('7575','Weapon_Rack_1_KSAR_Rifle_Energy_01_Common_001','Usable','UNDEFINED','c80c4b7b-a10d-4d41-9b42-be204bd2a5c4','','',NULL), -('7576','Raw Ouratite','Cargo','Cargo','7e56f77f-cf29-4631-9bbb-2b8ef039f29f','','',NULL), -('7577','Access','SeatAccess','UNDEFINED','57abc2d9-0a5b-40ae-9f64-23a7853a1f80','','',NULL), -('7578','Internal Tank','QuantumFuelTank','QuantumFuel','3c51d1b5-5904-466f-86e6-54acaacbe247','','',NULL), -('7579','Projector_HUD_Generic','Display','UNDEFINED','93bfb321-c271-4779-93fe-2c8f11d456e4','','',NULL), -('7580','CRUS_Starlifter_Thruster_Main_Aux_1','MainThruster','FixedThruster','2fbb4b6c-6705-4548-bacb-a47ad847c41a','','',NULL), -('7581','BEHR_LaserRepeater_Ventilation_S10','WeaponAttachment','Ventilation','ad3c0368-df82-4b5c-a921-8ec6bd505c57','','',NULL), -('7582','Syulen Tao?moa Livery','Paints','UNDEFINED','66c4ebd3-3053-4d71-aabd-6d55a81987b9','','',NULL), -('7583','TCS-4 Undersuit Black/Grey','Armor','Undersuit','7b620f81-b65d-4242-a6a8-56e668fd43ee','','',NULL), -('7584','Seat','Usable','UNDEFINED','2cb3662c-8de8-4172-8618-8cb39ba4b339','','',NULL), -('7585','Ht_D_Airlock_Door_Ext','Door','AirlockPart','a4ff8a40-7189-424b-a933-eae1e21dee6a','','',NULL), -('7586','DR Model-XJ2 Repeater','Weapon','Gun','a5ade53b-9c40-477a-aaf8-78b6ef485283','','',NULL), -('7587','MISC_Hull_C_Thruster_Mav_Fixed_Bottom','ManneuverThruster','JointThruster','e11c41b3-ba46-4d1e-baac-36d2119ae2f5','','',NULL), -('7588','Venture Undersuit Blue','Armor','Undersuit','57cd535c-cbde-4dbb-9f6a-e95a954b8ce7','','',NULL), -('7589','Paint_MPUV_Navy','Paints','UNDEFINED','f343fc44-6c7c-426f-9458-8250e183191a','','',NULL), -('7590','CNOU_Mustang_Gamma_Thruster_Mav_Fixed_01_Down','ManneuverThruster','FixedThruster','3374c895-9116-4d33-8c09-06a5bdb1073c','','',NULL), -('7591','Seat','SeatAccess','UNDEFINED','9b63d843-7671-4fe2-b76a-141cb094fb99','','',NULL), -('7592','display_components_pallet_250x125x025_a_quantum','ShopDisplay','UNDEFINED','44e59835-cb65-4a86-84c6-0cd09a5ebf7b','','',NULL), -('7593','Door Control','ControlPanel','DoorPart','89e90cc0-2ce4-409e-a173-9e134b724c03','','',NULL), -('7594','H_Dashboard_Projector_HUD_CRUS_Starlifter','Display','UNDEFINED','69883881-14c8-4b30-8a4a-29b31080534b','','',NULL), -('7595','Door','Cargo','UNDEFINED','99c7af25-0661-4519-8f15-9e8a71611fa1','','',NULL), -('7596','Taranite (Raw)','Cargo','Cargo','71cda3aa-e6a9-4917-9266-932e5b53fde5','','',NULL), -('7597','Bed','SeatAccess','UNDEFINED','0c4a591f-688f-4e4c-b37b-ef96b33f6cdd','','',NULL), -('7598','Gallant \"Redline\" Rifle','Weapon','Medium','0e6d3999-bc9d-46cf-81ae-7288e556e2d1','','',NULL), -('7599','Door Control','ControlPanel','DoorPart','941c530c-597c-4c19-bfd0-92a005fbe38f','','',NULL), -('7600','Door Control','Door','UNDEFINED','b2ecb585-e600-4351-b645-5158f35b0c29','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('7601','Carryable_TBO_FL_16SCU_Commodity_ProcessedGoods_OrganHarvesting','Cargo','Cargo','9a616986-f2b7-451a-a2d7-0004acdaaad0','','',NULL), -('7602','GPI_Relay_3slot_001','Relay','UNDEFINED','4fe58e96-7649-4276-b95e-52e0ea6d7685','','',NULL), -('7603','Copper (Ore)','Cargo','Cargo','61cadc8f-68a2-4173-98e7-e20b12996304','','',NULL), -('7604','K7 Pants Twilight','Char_Clothing_Legs','UNDEFINED','7bc2c62b-4278-4349-89dd-22354c531496','','',NULL), -('7605','HighTechAirlockExteriorStatusSign','StatusScreen','AirlockPart','8bf3135d-0bd3-4903-bd72-dcdd204295ae','','',NULL), -('7606','shelf_hat_02x02x04_06Ports','ShopDisplay','Default','174385b0-7213-4022-ac27-0382916e0e8a','','',NULL), -('7607','BC-Grey Hat','Char_Clothing_Hat','UNDEFINED','7c92e4f4-bd40-46e2-bef7-7f9284ce94cb','','',NULL), -('7608','Door Control','Door','UNDEFINED','11856fe8-b8f0-4dec-bc81-905b1122e24f','','',NULL), -('7609','WEAPONS','WeaponController','UNDEFINED','12b7627a-e02b-409c-b536-29dabbeb7b30','','',NULL), -('7610','Worthy Journey T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','a675654f-7da7-420d-a829-a8e6d87016e5','','',NULL), -('7611','TRGT. STATUS','Seat','UNDEFINED','442b7465-6f5e-46c1-9d1c-4b0a0db821ea','','',NULL), -('7612','TrueDef-Pro Arms','Armor','Arms','1036805c-1d16-43db-ae15-7f04f7c38a66','','',NULL), -('7613','Door Control','Door','UNDEFINED','e2b79bb5-2fc9-40ae-8d42-c16db4a2ca06','','',NULL), -('7614','Seat','Usable','UNDEFINED','3687bad6-611b-4102-8962-4cd7bf6aa059','','',NULL), -('7615','RangeFinder Jacket Element','Char_Clothing_Torso_1','UNDEFINED','5d75de72-422c-4cbc-91b8-8c386270018b','','',NULL), -('7616','Venture Core Twilight','Armor','Torso','9f8cbca6-d5be-4d2c-8bb4-0337410f98b0','','',NULL), -('7617','Tungsten','Cargo','Cargo','dc6d498c-ad02-449e-87b8-bc71a6f7ff0c','','',NULL), -('7618','Treadmill','Usable','UNDEFINED','4436389e-bff3-4928-bf91-8bb9791fa60c','','',NULL), -('7619','Ponos Boots Dark Green','Char_Clothing_Feet','UNDEFINED','846fc398-dbb0-4af7-98e3-f9d4aed7f371','','',NULL), -('7620','Test_DisplayScreen_PowerPlant','Cargo','Small','9c60a05b-55c3-4717-8e11-2a627a205683','','',NULL), -('7621','Flight Blade','FlightController','UNDEFINED','b8151561-a48c-4426-b4b5-7308ab699d62','','',NULL), -('7622','ANVL_Door_Decal_Carrack_elevator','Decal','DoorPart','4f781478-0a70-46e0-811f-d19fd8937e8f','','',NULL), -('7623','RSI_Apollo_Docking_Arm','Door','UNDEFINED','41852f35-62e0-30f3-34f4-7d21881c3197','','',NULL), -('7624','clothing_undersuit','Armor','Undersuit','8f053253-5bc0-4a89-a9ca-86887a09f5a7','','',NULL), -('7625','ADP-mk4 Arms Justified','Armor','Arms','e0d55691-c8cf-4865-9003-b6f69c81278c','','',NULL), -('7626','can_drink_3_energy_b','Drink','Can','c604fcb7-6f1b-4f7d-a809-66e4cab5be30','','',NULL), -('7627','C8 Pisces Red Alert Livery','Paints','UNDEFINED','4a624335-c479-4ede-992b-31d74eb2be59','','',NULL), -('7628','Flight Blade','FlightController','UNDEFINED','5de236d0-dfe0-428e-8a35-f3b68346bd2f','','',NULL), -('7629','Elevator Control','Elevator','UNDEFINED','39fe73b4-f8a6-4b71-8463-ebfffa6936da','','',NULL), -('7630','Origin Black Pawn','Gadget','UNDEFINED','02acd374-f953-4812-a0ad-e55c98b9df5f','','',NULL), -('7631','Taftan Boots Shale','Char_Clothing_Feet','UNDEFINED','73329971-3bdd-46aa-87c7-38ccf6156f4c','','',NULL), -('7632','Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','d6ac4215-f750-4c51-abc5-a8546771db55','','',NULL), -('7633','Toughlife Boots Orange','Char_Clothing_Feet','UNDEFINED','98590b81-8fd2-4069-9ff8-d1aa66a59c2d','','',NULL), -('7634','Door','Door','UNDEFINED','c86d2aa5-e826-45b1-bc92-02a657fb791c','','',NULL), -('7635','AEGS_Door_Decal_Avenger_Pod_2','Decal','DoorPart','24bb4a97-3698-4860-aae5-a09dc21383a2','','',NULL), -('7636','ANVL_Hornet_F7CM_Thruster_Mav_Joint_01','ManneuverThruster','JointThruster','8644049b-02f1-483b-b330-a84a2a6a2cfe','','',NULL), -('7637','MISC_Prospector_Thruster_Mav_Fixed_03_Top','ManneuverThruster','FixedThruster','ae85ec59-f6c7-4a63-a923-5e02e5890796','','',NULL), -('7638','Weapon_Rack_RSI_Ursa_Medivac','Usable','UNDEFINED','0130af2c-ff44-40a3-a4f6-6f0fc1f4d2ff','','',NULL), -('7639','MISC_Prospector_Thruster_Mav_Fixed_01_Top','ManneuverThruster','FixedThruster','2ef8b99c-2154-4859-9157-7e886d88bffd','','',NULL), -('7640','Custodian \"Executive Edition\" SMG','Weapon','Medium','12d0e35b-c357-4893-af64-46543e483676','','',NULL), -('7641','Concept Shirt Red','Char_Clothing_Torso_1','UNDEFINED','bbf09fe5-0c49-4269-beae-2ce1346f50cb','','',NULL), -('7642','Lynx Core Rager','Armor','Torso','07598ef6-7a56-49ca-b7ff-8c82e1f96789','','',NULL), -('7643','DockingTube_Fuel_Ports_ANVL_Carrack','DockingCollar','UNDEFINED','d470199d-f6e3-4efe-8b8f-cdf24286aecb','','',NULL), -('7644','C8 Pisces Nightbreak Livery','Paints','UNDEFINED','882d760c-2e9a-43f6-9c1f-3fec60214b41','','',NULL), -('7645','Testudo Arms Earthshake','Armor','Arms','f7753764-2420-446d-9b79-2eda37667d7a','','',NULL), -('7646','Jumping Limes','Cargo','Cargo','e61ef344-def5-42fc-b443-a6099ef05263','','',NULL), -('7647','Arcus Gloves Yellow','Char_Clothing_Hands','UNDEFINED','1c824ad7-84cf-46a1-b58e-202b5cf25a3c','','',NULL), -('7648','Mountaintop Jacket Multitone','Char_Clothing_Torso_1','UNDEFINED','3dfc5dbd-c000-4fb6-82f6-579b97775bce','','',NULL), -('7649','Weapon_Rack_TMBL_Cyclone_1_Slot_Left','Usable','UNDEFINED','f90a0530-51f2-4494-8c5f-9d1387a492e6','','',NULL), -('7650','TRGT. STATUS','Seat','UNDEFINED','b534ffc9-8cb6-4d53-b94e-f573409f0af3','','',NULL), -('7651','Door Control','DockingAnimator','UNDEFINED','435bded3-95e6-4698-9e1a-823f1c12a40e','','',NULL), -('7652','J-5 Helmet Pyrotechnic','Armor','Helmet','40656389-c9a7-42aa-8a5a-f70d9368dddb','','',NULL), -('7653','Argus Helmet Red/Silver','Armor','Helmet','4f71177d-43c7-4347-9f85-763560a56395','','',NULL), -('7654','Drivetrain','WheeledController','UNDEFINED','72253c71-4370-4912-957b-f73de130d638','','',NULL), -('7655','Glow','Cargo','Cargo','45e0b5c6-e108-4562-b20a-1e86775a129b','','',NULL), -('7656','DRAK_Vulture_Component_Radar','Player','UNDEFINED','e08dd4ff-4b4d-4525-9a14-c2e1ddf56d90','','',NULL), -('7657','Seat','Usable','UNDEFINED','59ebc1c5-88ca-4fdd-9ef1-b2ca8f97b001','','',NULL), -('7658','Remote Turret','Turret','GunTurret','ddd85309-3ea5-4d60-a0d9-c182ebe86498','','',NULL), -('7659','Beacon Undersuit Sky/Grey','Armor','Undersuit','bc45ae33-cdcf-4ca3-b62c-f7b02e891268','','',NULL), -('7660','PAB-1 Arms Desert','Armor','Arms','cf055d20-61b5-4cee-a7fb-f2c1ed74bfd5','','',NULL), -('7661','MaxLift Tractor Beam Battery','WeaponAttachment','Magazine','c3ba088f-3a92-412b-90a8-de468d76ec2c','','',NULL), -('7662','Sangar Helmet Grey/Black','Armor','Helmet','168ad48a-ca8b-4272-8c9c-fd0d863959fb','','',NULL), -('7663','Bexalite (Raw)','Cargo','Cargo','a8656f54-bc20-4ce2-8753-71b98760ad35','','',NULL), -('7664','Cordimon Jacket Violet','Char_Clothing_Torso_1','UNDEFINED','11bf60b1-1734-462b-aedd-bf1ab56c9cc3','','',NULL), -('7665','Turret','WeaponMount','WeaponControl','1fc0f4a0-efb6-4562-90d4-df9661c74fea','','',NULL), -('7666','Nyman Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','7fa687ac-50b2-4db0-886e-b0e4d7e7bccc','','',NULL), -('7667','display_item_noGeo_01Port_Gadget_Utility','ShopDisplay','UNDEFINED','5252be68-60eb-4870-8743-3337be378f36','','',NULL), -('7668','Door Control','ControlPanel','DoorPart','830e4a78-5645-43d8-857b-64b2b421fb8f','','',NULL), -('7669','Booth_Table_8_CircularBar_b','Usable','UNDEFINED','c47ed12e-90c0-47a4-ab41-679dffb64b6f','','',NULL), -('7670','INTK_MRAI_Pulse_LX','FuelIntake','Fuel','0b4d5d2e-3163-435e-ae1f-59106a6cd2ce','','',NULL), -('7671','HRST_LaserRepeater_Ventilation_S4','WeaponAttachment','Ventilation','17340e60-6b59-441a-af6b-3abb3692c610','','',NULL), -('7672','Bracewell Boots','Char_Clothing_Feet','UNDEFINED','dcf7ce46-6163-4684-96cc-5aa6e62318cd','','',NULL), -('7673','ORC-mkX Helmet Iceborn','Armor','Helmet','3c6998f3-edcd-4098-a7eb-49ad75743bbf','','',NULL), -('7674','ANVL_Hornet_F7_Mk2_Thruster_Retro_Right','ManneuverThruster','Retro','a3f91739-a0cf-4f4f-90b1-7af51e0842cc','','',NULL), -('7675','Palatino Helmet Necropolis','Armor','Helmet','d313a06b-1fdb-4a45-992a-3a282ffdf342','','',NULL), -('7676','un_bowl_fluid_1_a','Food','Consumable','69832e49-b1b3-440a-8b01-e4163c53cae4','','',NULL), -('7677','Tritium','Cargo','Cargo','72ecfa54-6a7e-4b56-90fe-a18c925d5537','','',NULL), -('7678','300 Series First Response Paint','Paints','UNDEFINED','8121f249-7c41-4559-8aba-817079b45052','','',NULL), -('7679','Dolivine','Cargo','Cargo','cedac811-4ef8-4867-8321-e8da8c046575','','',NULL), -('7680','Door Control','ControlPanel','DoorPart','e4d9a243-b8b4-46ca-a1ba-e4506b0cbcd5','','',NULL), -('7681','Prestige MISC Racing Jacket','Char_Clothing_Torso_1','UNDEFINED','582d09b8-76df-4e87-8a57-f60a1fd0ec49','','',NULL), -('7682','MacFlex Arms Red','Armor','Arms','a474b4ef-3368-4f07-ab33-2374a56c92f8','','',NULL), -('7683','MacFlex Core Olive','Armor','Torso','1ece8d4a-c03f-47bf-b06a-6ac5b8471671','','',NULL), -('7684','RSI_Constellation_Taurus_CargoGrid_Tail','CargoGrid','UNDEFINED','4612e7cc-4837-4f84-8da1-4104d10523f9','','',NULL), -('7685','AEGS_Retaliator_OC_Rear_Bomber','Room','UNDEFINED','0d8dc578-3099-42ab-99ca-e9d3131e4048','','',NULL), -('7686','rod_cargo_rail_1_a_02x01x04_12Ports','ShopDisplay','Default','7675a900-d181-46ae-9619-c2559e0238cc','','',NULL), -('7687','Emod Stabilizer1','WeaponAttachment','Barrel','0ff25cf5-6f7b-47e8-8842-f12d8abfe68b','','',NULL), -('7688','un_medical_box_1_hazard_a','Misc','UNDEFINED','ceb6fcd4-f124-4e58-a6a0-6165dddfdc42','','',NULL), -('7689','Gallant \"Stormfall\" Rifle','Weapon','Medium','0bb6d34b-143e-4632-a72f-9e42ec87d470','','',NULL), -('7690','ORIG_890_Jump_Thruster_Mav_RSL','ManneuverThruster','FixedThruster','d04d2002-efa0-4f48-a913-3053bc47f6fb','','',NULL), -('7691','Eyaja Knife','Weapon','Knife','54e47ec3-7805-4f45-a298-7c92eca2d78e','','',NULL), -('7692','Venture Undersuit Base','Armor','Undersuit','c04c08dd-6a92-452e-bf67-3a2d1dcf6e33','','',NULL), -('7693','TRGT. STATUS','Seat','UNDEFINED','df1e3725-0bfa-40f5-887f-cc1689908796','','',NULL), -('7694','MISC Freelancer MIS Missile Launcher','MissileLauncher','MissileRack','2c0a8a0f-b754-4c31-840e-471a1b95111d','','',NULL), -('7695','Vehicle_Screen_MFD_Holographic_Prowler_TL','Display','UNDEFINED','0cbfdcac-bb42-4457-9233-fef8d3ebf8a2','','',NULL), -('7696','Beacon Undersuit Brown/Black','Armor','Undersuit','174718e3-012b-45c2-8c16-48bf0c968ca3','','',NULL), -('7697','Door Control','Door','UNDEFINED','2effb9b2-213d-4676-9d92-458cdfb9d78c','','',NULL), -('7698','Door Control','Door','UNDEFINED','f3cf2919-3ae1-4ff2-9ef8-60d136371a97','','',NULL), -('7699','VNCL_Gen2_PlasmaCannon_S2','Weapon','Gun','5c85d440-66fc-403f-8e66-2a92fe6678ae','','',NULL), -('7700','Antium Legs Jet','Armor','Legs','8ca8d79b-1672-4213-a1f8-d063b0752e47','','',NULL), -('7701','un_jar_glass_3_herbs_a','Misc','UNDEFINED','842e0005-cacf-48e7-8f01-0d529312fbc6','','',NULL), -('7702','HRST_LaserRepeater_PowerArray_S1','WeaponAttachment','PowerArray','45fe2f96-7fbe-457f-a13c-521dd72dcad2','','',NULL), -('7703','DockingTube_Fuel_Ports_MISC_Freelancer','DockingCollar','UNDEFINED','60be3af9-771a-4d28-bd46-478c0d4a5be1','','',NULL), -('7704','ANVL_Valkyrie_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','d6bf4970-95e0-491d-8f3f-526865ea3a0a','','',NULL), -('7705','100 Series Timberline Livery','Paints','UNDEFINED','a71c0ad8-0cff-47e1-b81d-31faeb18f17b','','',NULL), -('7706','Palatino Core Shadow Gild','Armor','Torso','261904de-e9c4-43da-af2b-9b2b4c9afe7a','','',NULL), -('7707','CSP-68L Backpack Cayman','Armor','Backpack','22eb018b-376e-4718-b1fa-42b14d07e5a6','','',NULL), -('7708','IndVest Jacket Black','Char_Clothing_Torso_1','UNDEFINED','40710ca0-2cfa-4c7a-83d0-e3678c507e10','','',NULL), -('7709','ThermalFoam','Cargo','Cargo','c79960e4-3bef-40cb-9919-698c2c8a1b40','','',NULL), -('7710','GME 240-15 Patient Slippers Primrose','Char_Clothing_Feet','UNDEFINED','35610109-b8e8-4e69-a850-a14aff31a8da','','',NULL), -('7711','Bottle','Bottle','Default','c425609e-03cc-43f7-97c7-87ba0abd6cc3','','',NULL), -('7712','Marias Suit','Char_Clothing_Torso_1','UNDEFINED','bb551027-74c9-4909-ba31-8ca8c981ce46','','',NULL), -('7713','RSI_Hermes_Skylight_Armor','AttachedPart','UNDEFINED','287bf5dd-24f4-4977-8e86-925fcbc87f8a','','',NULL), -('7714','Book','Misc','UNDEFINED','e7a0a086-e8dc-4cf0-b244-02d7eb7367f1','','',NULL), -('7715','Carryable_2H_CU_tool_socket_set_closed_1_a','Misc','UNDEFINED','3e3cffc4-7cb2-4bc6-af45-370856c3780d','','',NULL), -('7716','Skellig Pants Dark','Char_Clothing_Legs','UNDEFINED','7bc019eb-d6cd-4732-9b3a-74b9794e9b90','','',NULL), -('7717','CS-L Pants','Char_Clothing_Legs','UNDEFINED','e52145a2-c49d-4a96-b55d-5c51dd1fadd9','','',NULL), -('7718','Waste','Cargo','Cargo','daf43eba-04fa-4008-b263-c551b60c72a7','','',NULL), -('7719','bar_box_snagglestick_newaustin','ShopDisplay','Default','6ee7c6d6-3d1b-4005-a6a7-5a201a69a1a5','','',NULL), -('7720','Corundum','Cargo','Cargo','da493f63-95f7-41fa-823d-a39ff57eb6ec','','',NULL), -('7721','Seat','SeatAccess','UNDEFINED','0900a344-8a0c-4068-bf8a-805c78f02a0a','','',NULL), -('7722','Seat','Usable','UNDEFINED','3949d94d-899d-4e35-9846-8f15718dadb8','','',NULL), -('7723','Scaleweave Undersuit Quagmire','Armor','Undersuit','871c7d2f-bae7-411f-b63e-d64133db1c5f','','',NULL), -('7724','AllStop','Shield','UNDEFINED','bbd925a4-2699-4d8c-b513-5a97d4f9ca7c','','',NULL), -('7725','SHIELDS','ShieldController','UNDEFINED','c3530c90-100d-4ea8-8f22-3d1d843f27dc','','',NULL), -('7726','Inquisitor Arms Roughshod','Armor','Arms','22edf1e7-1e76-4a48-a2bf-74ef062600e0','','',NULL), -('7727','Remote Turret','Turret','GunTurret','2a17a938-cd69-479a-94a6-55e2bc8f72b0','','',NULL), -('7728','Datapad','Misc','UNDEFINED','14a9e45b-0e22-4b87-b403-b9022ecca5fd','','',NULL), -('7729','Radar_Display_ORIG_85x','Display','UNDEFINED','7656d57c-898e-47ae-8647-1e168cc05e6a','','',NULL), -('7730','Galen Surgical Scrub Top Primrose','Char_Clothing_Torso_1','UNDEFINED','b7fdb295-0a31-453d-8cbc-c4daa116ac19','','',NULL), -('7731','weapon_underbarrel_light_wide_purple_01','WeaponAttachment','Light','b2c50bd4-bf09-42d2-b8ad-c2f8919c8192','','',NULL), -('7732','Food_bowl_rice_01_a','Food','Consumable','2f34059c-cc68-4c3c-8f67-622cb78aff98','','',NULL), -('7733','Day One Shirt Black','Char_Clothing_Torso_0','UNDEFINED','a959ef3d-7055-4427-952e-e1299c0b7d09','','',NULL), -('7734','Internal Tank','QuantumFuelTank','QuantumFuel','bb88d816-eee1-4eef-a5a4-cec3bdaff005','','',NULL), -('7735','Altruciatoxin','Misc','Utility','d10198d2-dd87-4cc0-b5e1-3801c87a9595','','',NULL), -('7736','Edgewear Pants Dark Green','Char_Clothing_Legs','UNDEFINED','934ffc4e-2499-4c5b-a3b5-816bf0436ffc','','',NULL), -('7737','Door Control','ControlPanel','DoorPart','6aebf939-ec72-40cc-bbbe-1023dc92c6c6','','',NULL), -('7738','Strata Helmet Lodestar','Armor','Helmet','cf258b0f-534f-4e2d-bd92-a6ba04e63751','','',NULL), -('7739','Stratus Jacket Yellow','Char_Clothing_Torso_1','UNDEFINED','2d6415ba-097f-49d2-922c-ae86e77e3194','','',NULL), -('7740','Seat','Usable','UNDEFINED','eb2ee623-a51e-4a55-9095-8e8fdbfb1810','','',NULL), -('7741','Aril Core Black Cherry','Armor','Torso','ccf6ce52-02b4-4e13-8294-03d00a929153','','',NULL), -('7742','TRGT. STATUS','Seat','UNDEFINED','3df1ade8-b357-4758-8246-58e8b03bbaf1','','',NULL), -('7743','Turret_Unmanned_KBAR_AA_Ground_EA','Turret','MannedTurret','26705f38-279f-40a3-8135-fab21a2dcc4f','','',NULL), -('7744','Gladius Nightbreak Livery','Paints','UNDEFINED','6f9edf21-a4aa-4953-83c0-6426fed31308','','',NULL), -('7745','Personal Storage','Cargo','UNDEFINED','9e2678fa-d84b-4a79-bf9e-f5e03ab84f05','','',NULL), -('7746','Internal Tank','FuelTank','Fuel','cfb29484-a419-444c-8d34-31c01b564509','','',NULL), -('7747','AEGS_Door_Decal_SleepingQ','Decal','DoorPart','65fef840-528b-4402-8cfd-b821338adccd','','',NULL), -('7748','ORC-mkX Helmet Arctic','Armor','Helmet','60561eb9-5fe6-48cf-b00b-faf04ca3b139','','',NULL), -('7749','IndVest Jacket Purple','Char_Clothing_Torso_1','UNDEFINED','dcb9d08e-cd4f-424f-ac0a-3d1cc7249d5d','','',NULL), -('7750','H_Dashboard_Projector_HUD_ANVL_Legionnaire','Display','UNDEFINED','b9732862-1b0f-4331-8357-637126fc0585','','',NULL), -('7751','Carryable_2H_CY_container_ore_1_tall_b','Misc','UNDEFINED','4b9dcedb-b3be-4d1a-8558-dfe51f237313','','',NULL), -('7752','Quartz \"Piconalia\" Energy SMG','Weapon','Medium','af446ac1-0502-4b18-b7be-850fb8ea8cd1','','',NULL), -('7753','Door Control','ControlPanel','DoorPart','ed1970bd-6d0c-4d69-ab96-b821d83855ff','','',NULL), -('7754','ESPR_BallisticCannon_Barrel_S3','WeaponAttachment','Barrel','978a32c2-3868-45b4-9ff4-9add9e56e8db','','',NULL), -('7755','Door_Ship_Sensor_Proximity_AEGS_Hammerhead_Turret_Offset','Sensor','DoorPart','046310de-fb21-4ce4-a1b4-ff223652ccca','','',NULL), -('7756','Oracle Helmet Cold Steel','Armor','Helmet','097ee243-84b4-4f9e-8e33-07ad43efdc88','','',NULL), -('7757','RSI_Aurora_GS_MR_Thruster_Retro_Right','MainThruster','FixedThruster','2e679730-a80d-481f-bbcd-ea74b4b4f530','','',NULL), -('7758','Ranta Dung','Cargo','Cargo','2f4786fb-bf69-418c-b0be-352910d83511','','',NULL), -('7759','ColdSnap','Cooler','UNDEFINED','b5543ea6-b332-47d7-a02c-5f25620d2fd1','','',NULL), -('7760','Flight Blade','FlightController','UNDEFINED','60a09ab7-1c17-4726-b321-889b5dd29ab5','','',NULL), -('7761','MPUV-1P Standard Flight Blade','FlightController','UNDEFINED','83b6e655-d767-4b0c-862e-8894ae30d046','','',NULL), -('7762','Carryable_1H_CY_universal_utensil_c','Weapon','Knife','ce41d26b-de3f-46e1-84c3-bfbce127eac2','','',NULL), -('7763','Carbide Jacket Buckthorn','Char_Clothing_Torso_1','UNDEFINED','7cfd4d7c-66c0-48a6-8db2-0b7c60d81add','','',NULL), -('7764','CRUS_Starlifter_Door_Decal_PowerPlant_A','Decal','DoorPart','bdaceabe-c0dc-4688-a248-22531a1522ac','','',NULL), -('7765','Ajax Security Uniform Jacket','Char_Clothing_Torso_1','UNDEFINED','0aba253a-f590-4ea0-88ae-fa34a5c2d030','','',NULL), -('7766','Seat','Usable','UNDEFINED','b6cd3fe6-226d-463b-bb59-7033a15c3df3','','',NULL), -('7767','Door Control','Door','UNDEFINED','7198986b-576c-4d87-9ed0-989ea00610cf','','',NULL), -('7768','Outback Legs','Armor','Legs','6c8ef0b2-2970-4ec2-9458-8b3408383a5c','','',NULL), -('7769','Door','Door','UNDEFINED','4df6f38c-1acc-46f5-9514-5b44ef775ff8','','',NULL), -('7770','Venture Arms Green','Armor','Arms','3c91961c-af58-4aa1-a130-f262aa96399c','','',NULL), -('7771','ARGO_RAFT_Thruster_Retro','MainThruster','FixedThruster','808cbe98-1a5c-4d09-b300-ddfdea56053f','','',NULL), -('7772','Arrow Standard Flight Blade','FlightController','UNDEFINED','909561b0-830a-4d74-8798-8de89e6f31a1','','',NULL), -('7773','Flight Blade','FlightController','UNDEFINED','db029157-1711-418c-ab10-6d7e7b0274df','','',NULL), -('7774','WeaponMount_Gun_S1_default_gatling_ballistic_fps_balance','WeaponMount','WeaponControl','70fcdaf7-fdf8-4d2e-9b8c-889bddbebdd7','','',NULL), -('7775','Taos Balaclava and Goggles Tactical','Char_Clothing_Hat','UNDEFINED','6e9aea3c-1849-4e21-b79d-6178498a5cc8','','',NULL), -('7776','RSI_Apollo_Thruster_Mav_Bottom','ManneuverThruster','FixedThruster','075eab20-e71a-4338-8f93-ae34127fd2cb','','',NULL), -('7777','Pioneer I-G Missile','Missile','GroundVehicleMissile','8c28d7a1-c09c-4718-aa5e-bb23821c04db','','',NULL), -('7778','Seat','Usable','UNDEFINED','bb84ae26-8dde-49a1-85dc-841c0607d7d8','','',NULL), -('7779','ANVL_Carrack_Locker','Player','UNDEFINED','b6a7d958-5fd5-4dcc-8f86-2ed6a5e99ab2','','',NULL), -('7780','RSI_Polaris_Thruster_Retro_Rear_Inner','ManneuverThruster','FixedThruster','91df54bb-61ef-4fa0-8b7f-56e2c08420d1','','',NULL), -('7781','Golden Medmon','Cargo','Cargo','6c242730-a4be-4e99-b73e-6003d9e38c2f','','',NULL), -('7782','Door Control','ControlPanel','DoorPart','01110139-794e-4133-9bbe-cbe520c4117d','','',NULL), -('7783','Tritium','Cargo','Cargo','5cc8e4ef-9164-4d09-b27d-aab359f3067a','','',NULL), -('7784','CRUS_Intrepid_Thruster_Main','MainThruster','UNDEFINED','38eb0868-2c5f-4f19-96ad-d90efc0b3480','','',NULL), -('7785','\'WASP\' Repeater','Weapon','Gun','80ab18bb-9bc2-4e4f-a407-06c28e69bea7','','',NULL), -('7786','Hydrogen Fuel','Cargo','Cargo','bdf3969b-8257-4284-b9db-1cef61a348ff','','',NULL), -('7787','100 Series Slate Camo Livery','Paints','UNDEFINED','b2c23ca6-0ed9-473e-b2e6-18cc00e768d4','','',NULL), -('7788','ADP Core Twilight','Armor','Torso','e60f2abe-99b4-4343-adcc-ebb58da27873','','',NULL), -('7789','Revenant Tree Pollen','Cargo','Cargo','b9aa5b03-ff44-47e1-bf40-c9f05a42ba01','','',NULL), -('7790','Door','Door','UNDEFINED','10c09c8d-43b7-4717-ba01-2000aa8d0f86','','',NULL), -('7791','Nitrogen','Cargo','Cargo','28644209-6d3b-4ad2-81aa-3c7cdbf31b2a','','',NULL), -('7792','ORIG_100i_Winglet_Right','Misc','UNDEFINED','de6e273d-ebfc-4153-9b04-bb6cdd15687f','','',NULL), -('7793','Prim Shoes Dark Red','Char_Clothing_Feet','UNDEFINED','2fbff736-db29-4eda-9ac4-d7795f287b6c','','',NULL), -('7794','Personal Storage','Cargo','UNDEFINED','a33729d6-44cc-48d6-ade6-5cfd1ee144d1','','',NULL), -('7795','Nav-E7 Echo Scanner','TurretBase','Unmanned','a1b8ef62-25b0-4ece-a01d-9272219d4a2a','','',NULL), -('7796','SHIELDS','ShieldController','UNDEFINED','8450ad71-bdc1-49f5-904e-b23bd58e402e','','',NULL), -('7797','Carryable_2H_CU_crate_weapon_1_01x005x005_a','Misc','UNDEFINED','c9c06a17-ee43-4333-9637-5728450783cc','','',NULL), -('7798','Huracan','QuantumDrive','UNDEFINED','1ed8932d-3d51-4a5d-a323-d696bad07bef','','',NULL), -('7799','Access','SeatAccess','UNDEFINED','82905013-00da-4827-9429-48e7414fb2de','','',NULL), -('7800','Drone_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','fdb13afc-b735-40cb-9bd7-b9276758cc3b','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('7801','Day One Shirt Red','Char_Clothing_Torso_0','UNDEFINED','2bd1429c-b08c-4842-9781-b6f29b50fb5a','','',NULL), -('7802','RSI_Apollo_Elevator','AttachedPart','UNDEFINED','45fad372-ef49-50b9-17b0-812aa7aacfa4','','',NULL), -('7803','Internal Tank','FuelTank','Fuel','b394dd06-9f30-4cb2-9d86-0eae6db76833','','',NULL), -('7804','Manned Turret','TurretBase','MannedTurret','2ce10451-22ae-4686-8eed-595dcf8188e7','','',NULL), -('7805','FrostBurn','Cooler','UNDEFINED','4f61e805-f5f4-49b2-a834-cfda713f48db','','',NULL), -('7806','Retaliator Invictus Blue and Gold Livery','Paints','UNDEFINED','fa188681-cba7-4701-a45f-f6d64f97ceee','','',NULL), -('7807','Bed_ORIG_600i_Crew_B','Usable','UNDEFINED','fdd3ee06-566e-4fa5-8104-19e9d888bc3e','','',NULL), -('7808','C4-160f S5 Hornet Ball Turret','Turret','BallTurret','6bd70c5f-f778-45a5-a4f3-5952d619717d','','',NULL), -('7809','ORIG_890_Jump_Thruster_Mav_MSR','ManneuverThruster','FixedThruster','44e41758-bc8c-4d3f-9c86-339df4739a53','','',NULL), -('7810','Toughlife Boots Green','Char_Clothing_Feet','UNDEFINED','7bbb1088-0369-425e-893f-0c5253545ee7','','',NULL), -('7811','Internal Tank','FuelTank','Fuel','b526f15c-ebe8-432b-9519-03cc38e66431','','',NULL), -('7812','GATS_BallisticGatling_FiringMechanism_S1','WeaponAttachment','FiringMechanism','dcf98f50-c2f0-471c-8afd-1e037262af4a','','',NULL), -('7813','Balor HCH Helmet Crusader Edition','Armor','Helmet','181f969a-41da-455b-9366-c68899d3631f','','',NULL), -('7814','Manned Turret','TurretBase','MannedTurret','f4428535-7133-497f-98ef-3774cd730921','','',NULL), -('7815','Revenant Gatling','Weapon','Gun','a2c01b55-7c88-4b8a-a45c-c99951ab9e11','','',NULL), -('7816','Celestial','PowerPlant','Power','cfe4539d-2066-4317-8d52-cba38ac3767e','','',NULL), -('7817','Morozov-SH-C Helmet Smokescreen','Armor','Helmet','159eeeac-3523-4d1e-9d42-c67ab378912b','','',NULL), -('7818','Microid Battle Suit Legs Crucible','Armor','Legs','12d6b4ef-7207-46df-a229-c72d537cfe5c','','',NULL), -('7819','ATLS Cold Snap Livery','Paints','UNDEFINED','a7a662e3-77e8-4edc-b591-7847208a02c7','','',NULL), -('7820','Weapon Rack','Door','UNDEFINED','f4dec655-3691-4227-a1f3-c585be8968c8','','',NULL), -('7821','Mandible Sandcrawler Helmet','Armor','Helmet','95fed5c3-d40d-40b5-84e9-371458b0ff81','','',NULL), -('7822','Star Kitten Damon Helmet','Armor','Helmet','c2cff339-9b7d-48a7-84f8-7868e17e1f6a','','',NULL), -('7823','TRGT. STATUS','Seat','UNDEFINED','251f2e95-7241-4ef5-88df-bbfe258ef9f4','','',NULL), -('7824','DRAK_Cutlass_Blue_Thruster_Maneuver_Outer_Bot','ManneuverThruster','JointThruster','66fbb676-14de-48cc-9b6d-a06c8a9088a0','','',NULL), -('7825','Seat','SeatAccess','UNDEFINED','874e55a1-49ee-44dd-8ed5-a70778fb8558','','',NULL), -('7826','Vogel','Radar','MidRangeRadar','5b19ed1b-c24b-45ef-975a-70630519ea22','','',NULL), -('7827','AEGS_Reclaimer_Seat_Drone_Right','Seat','UNDEFINED','e7767c91-86ae-4378-ac79-8a104999fb60','','',NULL), -('7828','Adrift Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','2f622225-c03f-4c45-a829-171c42b1d32d','','',NULL), -('7829','Morozov-SH Core Terracotta','Armor','Torso','c6afc69d-44d0-4ce9-990f-9fb22b58ec7f','','',NULL), -('7830','TRGT. STATUS','Seat','UNDEFINED','0c6bbae0-67ba-4538-82ce-cec3835bc306','','',NULL), -('7831','Sheut','Shield','UNDEFINED','d8c15fce-d188-4ce4-b303-196bc733b5d7','','',NULL), -('7832','ControlPanel_Screen_LiftControl_9x16','ControlPanel','DoorPart','15f606c3-6c18-4852-85a9-342c3e2ca818','','',NULL), -('7833','Tablet','Misc','UNDEFINED','ac1c26f2-3ccc-4e2d-a74f-af96a9b62491','','',NULL), -('7834','ColonialismAirlockTerminalStatusScreen','StatusScreen','AirlockPart','f54c80e3-81cf-42f4-8dd9-1f2dec183361','','',NULL), -('7835','Mule Smokestack Livery','Paints','UNDEFINED','47ae7c00-2c44-4f99-83c6-a81beb2df921','','',NULL), -('7836','ORIG_125a_Winglet_Left','Misc','UNDEFINED','44ade5cb-c657-4a6d-b0d3-7d61e480050f','','',NULL), -('7837','Radar_Display_KRIG_Wolf','Display','UNDEFINED','571ee086-9417-4e1b-8da3-f18cb9f99b99','','',NULL), -('7838','Nox Finish Line Livery','Paints','UNDEFINED','d0858a9b-df0e-45be-93f1-a19eb4803fbb','','',NULL), -('7839','ANVL_Carrack_Thruster_Retro','ManneuverThruster','FixedThruster','3fe1d4b8-20d2-4e17-9a70-f0dc1c3b9ab2','','',NULL), -('7840','Good Enough Shirt Green','Char_Clothing_Torso_0','UNDEFINED','a82ef92b-84d6-4605-9bd3-faf472339907','','',NULL), -('7841','RSI Zeus Missile Launcher','MissileLauncher','MissileRack','81afcf70-56f3-4390-b2c3-4dbe5e342785','','',NULL), -('7842','K7 Pants White','Char_Clothing_Legs','UNDEFINED','f19e6228-940c-4a60-aace-266a930955c1','','',NULL), -('7843','CNOU_HoverQuad_Thruster_Retro','ManneuverThruster','FixedThruster','40310d85-e7b5-4c33-9c71-54cc6eaa93d0','','',NULL), -('7844','ruto_nvy_bridgeofficer_jacket_01','Char_Clothing_Torso_1','Male','d484f9fb-63f5-4d8b-a909-d3c14fc2ee15','','',NULL), -('7845','LifeCure Medsticks','Cargo','Cargo','6ad69c48-e535-4d10-8d1a-17036dbd26f4','','',NULL), -('7846','MASTER_screen_16x9_2_0094x0054_b','Display','UNDEFINED','665e056a-3e90-4cd1-bea5-cc89975c3022','','',NULL), -('7847','Geist Armor Legs Epoque','Armor','Legs','7b8a3d7b-17c3-4347-971d-b60578e7c6c8','','',NULL), -('7848','Internal Tank','FuelTank','Fuel','4a92080a-0202-90be-81cd-e9436e1523a5','','',NULL), -('7849','Door Control','Door','UNDEFINED','c8d27def-be1d-4530-98a4-8df37e5563f2','','',NULL), -('7850','RSI_Salvation_Thruster_Main_Large_Top_Left','MainThruster','FixedThruster','62efeb89-4ae7-4d5c-82ae-e33e39186594','','',NULL), -('7851','AEGS_Redeemer_CargoGrid','CargoGrid','UNDEFINED','2511ad55-181b-4954-878b-cd5f37d8d456','','',NULL), -('7852','Door Control','ControlPanel','DoorPart','a7f92902-f908-46c2-b264-dcaaab4ecba7','','',NULL), -('7853','SHIELDS','ShieldController','UNDEFINED','811c06ae-d3dc-468f-98a3-78bfe9755fd5','','',NULL), -('7854','Battani','Radar','MidRangeRadar','913c5d24-0a71-4c92-b94d-73da62915af7','','',NULL), -('7855','ORIG_135c_Thruster_Main_Right','MainThruster','FixedThruster','4bcb71f1-1f1f-4a2b-8fa2-f290bc32ad94','','',NULL), -('7856','Seat','Usable','UNDEFINED','055428a9-b862-43a9-a093-90bd42a21975','','',NULL), -('7857','Brightspot Flashlight Purple','WeaponAttachment','BottomAttachment','9f4969d2-074c-448b-ae6b-0697c49cff81','','',NULL), -('7858','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','fadc2bbf-d8cc-4a9e-ae94-1735d2acffe2','','',NULL), -('7859','Bed','Usable','UNDEFINED','aa13c392-d2e2-4772-b156-63e025969e06','','',NULL), -('7860','Guardian Stormburst Livery','Paints','UNDEFINED','7a8f27a1-b8e8-4ac6-b4a6-015d634c04c8','','',NULL), -('7861','Bed_RSI_Phoenix_Master','Usable','UNDEFINED','7b4171da-d595-445c-b6b7-98bd631a1877','','',NULL), -('7862','Nivala Shoes Tactical','Char_Clothing_Feet','UNDEFINED','66242a93-b551-4966-a73c-10d1360e3590','','',NULL), -('7863','ForceFlex Undersuit Ocean Camo','Armor','Undersuit','c9eb09ae-6975-4ef3-9c65-7cd5dc765394','','',NULL), -('7864','Frontier 11 Classic Sand','Char_Clothing_Legs','UNDEFINED','6c9954ef-7fae-48aa-806e-42cf41bd7f20','','',NULL), -('7865','Perseus Flintlock Livery','Paints','UNDEFINED','401d41f6-ec8d-45e6-bf3c-44ca9530d207','','',NULL), -('7866','Door','Door','UNDEFINED','348cdc56-f860-49d9-9fd2-a09769bf77ae','','',NULL), -('7867','AEGS_Idris_SCItem_Seat_Science','Seat','UNDEFINED','a9aeb804-c1f3-402e-9873-70849f83d99c','','',NULL), -('7868','ORC-mkV Arms Scorched','Armor','Arms','978726a2-90b7-4c93-a4f5-80b25faa5cbf','','',NULL), -('7869','Anvil T-Shirt Olive','Char_Clothing_Torso_0','UNDEFINED','37cb7e4e-3904-42b5-9702-54d6503fcc20','','',NULL), -('7870','Mivaldi Pants Seagreen','Char_Clothing_Legs','UNDEFINED','5e9de553-ae0b-42c0-b316-f61f6e71da69','','',NULL), -('7871','MTC Citizens for Prosperity Liberation Livery','Paints','UNDEFINED','d722a359-db28-48d7-9ed7-baf4e1ef5bbd','','',NULL), -('7872','Horizon Helmet','Armor','Helmet','8845a66f-ec8c-49a5-9c23-4a5c00db7603','','',NULL), -('7873','RSI_Polaris_Thruster_Retro_Bottom_Right','ManneuverThruster','FixedThruster','bf1cc00a-6dd0-473e-aaa4-5f1455a6d297','','',NULL), -('7874','300 Series Gilded Night Paint','Paints','UNDEFINED','0ebd7fd6-3a2d-4d5b-8cf1-b26d71e78178','','',NULL), -('7875','GLSN_Shiv_CargoGrid_Main','CargoGrid','UNDEFINED','40635903-b38b-4560-aae9-3b1c4a72d6f9','','',NULL), -('7876','Carryable_1H_SQ_DataPad_Fluff_StormBreaker_DataFacility_Maintenance','Misc','UNDEFINED','ee90fba5-4912-420a-bd3f-ac641970c74a','','',NULL), -('7877','Seat','SeatAccess','UNDEFINED','dd361bcb-f60b-48cb-9b2d-2dd344f64c7e','','',NULL), -('7878','Tolo Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','16680409-81ed-41ad-b4a2-2d8e75e24c2c','','',NULL), -('7879','Door Control','ControlPanel','DoorPart','950e583e-7bf7-46e6-8681-419fa7e2c52c','','',NULL), -('7880','Lynx Core Draas','Armor','Torso','abde0f88-24cb-4404-8fc1-baf37e855a67','','',NULL), -('7881','Guardian Sovereign Livery','Paints','UNDEFINED','239272e7-18e6-46ed-a2c3-8fc5563e6230','','',NULL), -('7882','Door Control','Door','UNDEFINED','ddf7330a-2ffa-4667-a412-ec671e77766f','','',NULL), -('7883','rockcrack_laser_powercell_storage_rack_occupied_a','Cargo','Cargo','db97aff3-d525-4fa5-b612-6ebf82912de1','','',NULL), -('7884','PAB-1 Legs Green','Armor','Legs','00a7a4ee-b8b0-4731-9be8-2070ef48e22d','','',NULL), -('7885','DockingTube_Fuel_Ports_ANVL_Pisces_Rescue','DockingCollar','UNDEFINED','4b864bac-758f-4bee-9719-1557afae6c52','','',NULL), -('7886','Cliffback T-Shirt','Char_Clothing_Torso_0','UNDEFINED','cfcff8c6-0a9d-4a87-adfd-ca73a2edfca4','','',NULL), -('7887','Ardent Boots Red','Char_Clothing_Feet','UNDEFINED','a9b72879-237b-4cf6-9287-e27544f94e81','','',NULL), -('7888','300 Series Thunderstorm Paint','Paints','UNDEFINED','2e63de43-753f-4f2a-a457-e735a364d112','','',NULL), -('7889','Remote Turret','Turret','GunTurret','6ff7b8e2-5dfc-4a5a-918f-69e8d2422a12','','',NULL), -('7890','6CA \'Bila\'','Shield','UNDEFINED','6534d6d3-85dc-4c29-aa3d-80cab37c4fa5','','',NULL), -('7891','AEGS_Sabre_Firebird_Thruster_Retro_Right','ManneuverThruster','FixedThruster','f0182970-811d-4e4f-a500-092f4e280d6b','','',NULL), -('7892','ControlPanel_Screen_LiftControl_16x9','ControlPanel','DoorPart','27ff03e3-2b7e-4790-bb53-506d1d548827','','',NULL), -('7893','Door Control','ControlPanel','DoorPart','fbfac16c-d38e-455d-8905-254590286267','','',NULL), -('7894','Pulse \"Pyrotechnic\" Laser Pistol','Weapon','Small','02e060ad-4f3e-49a0-89af-8ec7de30a59a','','',NULL), -('7895','Door Control','ControlPanel','DoorPart','eff46cec-7c44-491d-b4e8-b91c0ae05512','','',NULL), -('7896','MISC_Reliant_RADR_Display','Display','UNDEFINED','b7dbca55-8ca6-456f-913e-70d938c3c875','','',NULL), -('7897','Internal Tank','FuelTank','Fuel','6347cc89-9e6a-43a3-a80c-6be1203e7bf3','','',NULL), -('7898','Morozov-SH Helmet Thule','Armor','Helmet','cbccd69b-b3af-40a4-b71e-4d85a36923d4','','',NULL), -('7899','Internal Tank','FuelTank','Fuel','18bffbeb-9471-494f-ba76-0e8d2ab3eabc','','',NULL), -('7900','VNCL_Glaive_Thruster_Retro_Fixed_Left','ManneuverThruster','FixedThruster','d677218d-c0a3-41f0-bcbb-9cab43e7e143','','',NULL), -('7901','Seat','Usable','UNDEFINED','2fb090f2-a02b-4800-9a5d-56241336ed8c','','',NULL), -('7902','Distilled Spirits','Cargo','Small','ab06ffca-50db-45d1-aaa1-bab4090a700d','','',NULL), -('7903','Paladin Helmet Black/Silver','Armor','Helmet','7327ea89-c9dc-462b-9517-1739dbfaa184','','',NULL), -('7904','Strata Helmet Shubin Edition','Armor','Helmet','61a4e6ba-b201-4ffd-a1ee-6d9755d6604e','','',NULL), -('7905','Borase (Ore)','Cargo','Cargo','a0806527-f308-4fbe-b1ff-afe2e9360bb1','','',NULL), -('7906','Silicon','Cargo','Cargo','5eba843f-8578-43d5-b74e-9aed3d413df1','','',NULL), -('7907','DYL - jacket - name','Char_Clothing_Torso_1','UNDEFINED','26507c4f-2d1b-423b-8f1c-8fb8e4bee0f9','','',NULL), -('7908','Body','Char_Clothing_Legs','Medical','315edbf6-26c7-4065-b592-66a656b09787','','',NULL), -('7909','Quartz','Cargo','Cargo','90f1dbab-f814-41fa-ad18-e4e232246d92','','',NULL), -('7910','stand_shop_large_b_Shields','ShopDisplay','UNDEFINED','ff27f747-cc99-4d73-ba85-2fd65976ef9b','','',NULL), -('7911','MacFlex Backpack White','Armor','Backpack','e4851c07-fddb-40f5-ae65-6fbcfb08ee0c','','',NULL), -('7912','Door Control','ControlPanel','DoorPart','52525028-4913-48e2-8ed1-c78bd7d965e4','','',NULL), -('7913','Rockridge Boots','Char_Clothing_Feet','UNDEFINED','73affcbf-4f4a-4290-b4c9-3e261453c8cc','','',NULL), -('7914','Scrap','Cargo','Cargo','73fd4415-69ad-463a-b8f0-d1fd6e7d821a','','',NULL), -('7915','Door Control','Door','UNDEFINED','55776a8a-0a45-4281-8af6-761e0867d21d','','',NULL), -('7916','Talon Harmony Livery','Paints','UNDEFINED','5a63d2c5-508b-4c3e-8dbb-524ceb09a771','','',NULL), -('7917','GATS_BallisticGatling_PowerArray_S1','WeaponAttachment','PowerArray','05693c87-2b44-4792-8b37-c3b68bfc71b6','','',NULL), -('7918','RSI_Polaris_Seat_Access_Pilot','SeatAccess','UNDEFINED','ed5d8700-9014-4f20-81c7-d34a9e979913','','',NULL), -('7919','VNCL_Scythe_Thruster_side_left','ManneuverThruster','FixedThruster','8f6c7169-965d-4428-bd8c-df61a4b20631','','',NULL), -('7920','RSI_Apollo_MedGel_Receptacle','Misc','UNDEFINED','7b1c8eac-b8cd-44bb-b2e4-9c8b071a0b67','','',NULL), -('7921','ESPR_LaserCannon_Ventilation_S1','WeaponAttachment','Ventilation','68cf8143-53cf-4e5c-98d7-c97b3fdf88c5','','',NULL), -('7922','LeMarque Pants Olive','Char_Clothing_Legs','UNDEFINED','e9e980f2-5949-442b-83c9-d94adb627f1f','','',NULL), -('7923','TRGT. STATUS','Seat','UNDEFINED','a0b93ec9-85d9-4ea7-a329-f0213ff3b827','','',NULL), -('7924','Bed','Usable','UNDEFINED','9fed36b0-d5b4-4306-a009-fa4c8c04b5f3','','',NULL), -('7925','Morozov-SH-I Helmet Pyrotechnic Spitfire','Armor','Helmet','cd76b3e1-9372-4f16-9aa1-3262f55953ec','','',NULL), -('7926','Anvil Hornet Mk II S3 Nose Turret','Turret','CanardTurret','dd91d613-369e-415a-a582-2d77b780579c','','',NULL), -('7927','ARMR_MISC_Razor_EX','Armor','Medium','26273c33-ca33-4583-b6dd-e79ffb6ce956','','',NULL), -('7928','Prim Shoes Purple','Char_Clothing_Feet','UNDEFINED','9deee6d1-b4b1-4f22-9d22-93f805250e51','','',NULL), -('7929','Door Control','ControlPanel','DoorPart','9129755c-9a8c-4404-a4eb-dbd8aa282cb9','','',NULL), -('7930','Manned Turret','TurretBase','MannedTurret','a3fdce87-3b21-40a5-97ab-d26dfe51302c','','',NULL), -('7931','Snaggle Protein Stick (Pepper^3)','Food','Bar','4a1d5697-fb73-45e0-99ee-59afddbe1bb3','','',NULL), -('7932','DRAK_Corsair_Dashboard_Copilot','SeatDashboard','UNDEFINED','f3df5108-bc17-469c-9868-31e466e94ead','','',NULL), -('7933','Internal Tank','FuelTank','Fuel','307a3629-9171-45f5-b638-1076fbd91be6','','',NULL), -('7934','Morozov-CH Backpack Red Alert','Armor','Backpack','c618883f-74aa-4597-acbf-99bfd2a5ce86','','',NULL), -('7935','Zeus Exploration Helmet Starscape','Armor','Helmet','281de90c-dc1a-4a8c-a892-4a8b78867c47','','',NULL), -('7936','ANVL_Valkyrie_Turret_Console_Right','Seat','UNDEFINED','2c58f4a2-62a5-4e9c-afc1-057b153e827f','','',NULL), -('7937','TRGT. STATUS','Seat','UNDEFINED','3d2b2fad-7c84-4663-91ce-7ac9137d080f','','',NULL), -('7938','Carinite (Pure)','Cargo','Cargo','1b42492c-2691-48e7-b101-5d2f862a42c3','','',NULL), -('7939','Shiv','Weapon','Knife','31ef8e9c-1add-414a-87d0-07a38d923ac8','','',NULL), -('7940','m_human_mannequin_deckcrew_undersuit','ShopDisplay','UNDEFINED','fbafd506-2614-44b5-8bad-b12859889c7a','','',NULL), -('7941','Flight Blade','FlightController','UNDEFINED','5c213fc3-a441-4a42-8e2f-492c5792a3a0','','',NULL), -('7942','Rhodes Jacket (Modified)','Char_Clothing_Torso_1','UNDEFINED','9d8876f0-95da-4ed5-a70b-0febf3eba61b','','',NULL), -('7943','Construction Materials','Cargo','Cargo','8ea40355-f0d8-46e7-9f3b-012667c81da3','','',NULL), -('7944','Testudo Arms Clanguard','Armor','Arms','6300f7b8-e8af-487c-8df3-4f73929aa9a0','','',NULL), -('7945','SHIELDS','ShieldController','UNDEFINED','2a4bdd89-d62e-4d7f-838f-beec2bc78a71','','',NULL), -('7946','DRAK_Vulture_Component_Cooler','Player','UNDEFINED','892c99dd-9dc6-489a-9c02-7e389db936bd','','',NULL), -('7947','Harlowe Shirt Red','Char_Clothing_Torso_0','UNDEFINED','707de227-4ec3-4afb-bf8d-a180d807f7eb','','',NULL), -('7948','Fortifier Helmet Ignitor','Armor','Helmet','07ca7b3a-4a3a-4259-99b5-1d4470f745ec','','',NULL), -('7949','AEGS_Door_Screen_Double','Decal','DoorPart','a9e5bda1-2b09-44ad-8cdb-51dcf5f85b12','','',NULL), -('7950','Weapon Rack','Usable','UNDEFINED','a75b1551-0879-4d2f-96f4-771d28f3374c','','',NULL), -('7951','Breton','PowerPlant','Power','e533d75c-9275-48e9-bc93-f49a2c113bc5','','',NULL), -('7952','AImodule_ATC_NewBabbageATC01','AIModule','UNDEFINED','f877f2cb-e03d-46fb-8130-93194530e597','','',NULL), -('7953','Carryable_1H_SQ_fruit_jumpinglime_1_a','Food','Plant','fd87f08a-7ee4-49d2-94ef-62407e625f2c','','',NULL), -('7954','V801-11','Radar','MidRangeRadar','e0750711-1aba-4141-8470-090b1dfc4a6e','','',NULL), -('7955','DRAK_Herald_SeatAccess_Support','SeatAccess','UNDEFINED','249cdbb5-c619-4a29-b5db-db6e4a4c5866','','',NULL), -('7956','RSI_Scorpius_LandingGearSystem','LandingSystem','UNDEFINED','2bdbbeaf-8e2d-4ba2-8d92-072b1432a492','','',NULL), -('7957','Internal Tank','QuantumFuelTank','QuantumFuel','0d72db6f-09f8-4455-8930-68316798be22','','',NULL), -('7958','Remote Turret','Turret','GunTurret','8e3362ae-2831-405c-8fdf-fa5b09679b25','','',NULL), -('7959','Hydrogen','Cargo','Cargo','f9035429-c185-4dcc-87af-16945bbc08db','','',NULL), -('7960','NONE_LaserRepeater_FiringMechanism_S3','WeaponAttachment','FiringMechanism','a0c5c42a-4aa2-4784-83d3-f06d1adfaa12','','',NULL), -('7961','Carryable_2H_CY_container_ore_1_short_c','Misc','UNDEFINED','a3ebffbe-2f82-41be-8e3d-8ea0f9819efa','','',NULL), -('7962','Door Control','Door','UNDEFINED','f0eea0af-69bf-41ac-acc6-df484ce89f12','','',NULL), -('7963','fruit_tray_1_d','Misc','UNDEFINED','8775e95c-192a-4dac-aa6f-3489cba447ef','','',NULL), -('7964','AEGS_Redeemer_Thruster_Main_Left','MainThruster','FixedThruster','cceaff81-945c-4667-a0c8-4d34242b29e8','','',NULL), -('7965','Lynx Arms Draas','Armor','Arms','05ff08a5-d702-4f47-9e8a-7f6108132ccc','','',NULL), -('7966','Strata Backpack Lodestar','Armor','Backpack','8dd9f9b6-d7e2-4a65-9e22-212912392689','','',NULL), -('7967','BoostPen (Modamphetamine)','FPS_Consumable','Medical','83f76ccf-048a-4981-984f-ded1ad5fbee3','','',NULL), -('7968','Flight Blade','FlightController','UNDEFINED','af1b27eb-cdfd-4ff4-9da2-47187650d73b','','',NULL), -('7969','Human Food Bars','Cargo','Cargo','a12d5792-fcb2-45c2-8967-d7bcb4409903','','',NULL), -('7970','Reliant Timberline Livery','Paints','UNDEFINED','ea43d1c8-6170-47ef-90bf-1bd33f9ed4cc','','',NULL), -('7971','Li-Tok Boots Seagreen','Char_Clothing_Feet','UNDEFINED','97bc36f1-4e1e-4672-b137-10ce35f74a90','','',NULL), -('7972','Intrepid Foundation Fest Livery','Paints','UNDEFINED','5372cfc8-96dd-4749-9c82-51f3ae71b40a','','',NULL), -('7973','ORIG_X1_Thruster_Mav_Fixed_Velocity','ManneuverThruster','FixedThruster','202cd6a5-ed5a-4507-aef7-7f4a15aa194c','','',NULL), -('7974','Access','SeatAccess','UNDEFINED','87f7ad10-125b-4fe8-9296-30ca94ef1df9','','',NULL), -('7975','NONE_LaserRepeater_PowerArray_S3','WeaponAttachment','PowerArray','ee533664-b2fa-4fa3-a2bd-132026259d81','','',NULL), -('7976','Door Control','DockingAnimator','UNDEFINED','4b3ea1b9-56dd-48fc-989c-1941a6aaf803','','',NULL), -('7977','Flair_Hanging_Dice_01','Flair_Cockpit','Flair_Hanging','727ba1fb-f426-49af-a5fe-841789d95e95','','',NULL), -('7978','Radar_Display_ANVL_Paladin','Display','UNDEFINED','8a2f1ccf-659e-45d6-b7b4-7b356e8dbc3e','','',NULL), -('7979','Remote Turret','Turret','GunTurret','6669f795-4d1f-4883-9b50-2c30803db5d8','','',NULL), -('7980','VCK-1 \"Payback\" Blade','Weapon','Knife','23934f46-5787-4594-8215-4ffe019345a2','','',NULL), -('7981','Outback Legs Molehill Brown','Armor','Legs','cef9d8ba-3f10-47ed-982c-069091443b22','','',NULL), -('7982','ASAD_DistortionRepeater_PowerArray_S3','WeaponAttachment','PowerArray','05223102-5a98-4a4a-b5f4-aad50ada7f9d','','',NULL), -('7983','Xanthule Ascension Helmet','Armor','Helmet','9e992877-60a5-4bc3-983c-50e185c5ffa2','','',NULL), -('7984','Frontier 05 Pants Spring','Char_Clothing_Legs','UNDEFINED','5831f7ee-1eca-46e5-a231-70380178773b','','',NULL), -('7985','Sangar Helmet Orange/Black','Armor','Helmet','f8f2f73d-6d59-402e-92f7-8fac760c39fa','','',NULL), -('7986','Fotia Seedpod','Cargo','Cargo','8a196a34-d46f-49cc-8d2b-3a690a18a31a','','',NULL), -('7987','display_components_platbay_counter_a_1slot','ShopDisplay','UNDEFINED','249446fe-f49e-4407-b37e-3030565c6c09','','',NULL), -('7988','Zeta-Prolanide','Cargo','Cargo','dcc6046c-c2de-42f2-8bcb-fd9cc94a27b7','','',NULL), -('7989','HRST_LaserRepeater_Barrel_S3_Storm','WeaponAttachment','Barrel','16b6586e-110c-4ffd-b35e-d959af1320c5','','',NULL), -('7990','Tona Shoes White','Char_Clothing_Feet','UNDEFINED','d5cb70a3-7444-4a65-a807-a96218e661e2','','',NULL), -('7991','Defiance Core Firestarter','Armor','Torso','0db6c2fd-28ca-420d-9a06-687a4d68a795','','',NULL), -('7992','E\'tam','Cargo','Small','b21b65f7-92d9-4173-b695-9706ca5a34dd','','',NULL), -('7993','DeconPen Xtra','FPS_Consumable','Medical','d58c8d01-6b52-4a2a-bb11-7ef8e2ebcc7f','','',NULL), -('7994','Door Control','Door','UNDEFINED','8850ccda-140e-47a0-9da7-7daa35a660ec','','',NULL), -('7995','DetoxPen (Resurgera)','FPS_Consumable','Medical','6f961f33-b938-4954-9ba4-7921f366e9bc','','',NULL), -('7996','Gasping Weevil Eggs','Cargo','Cargo','e045616f-69ef-47e1-82f8-6b6aef2e5711','','',NULL), -('7997','Weapon_Rack_MISC_Reliant_Tana_3_Slots','Usable','UNDEFINED','bc41af98-812c-4e66-8453-4e36b1011247','','',NULL), -('7998','Killshot \"Bleach\" Rifle','Weapon','Medium','f75f27cb-0467-438e-8a13-fe203e802d8e','','',NULL), -('7999','Dymantium','Cargo','Cargo','f4136a6f-ac5a-47ac-bdd8-60f91d9cb4eb','','',NULL), -('8000','Remote Turret','Turret','GunTurret','a0407316-de1e-4cc9-bb45-4d548d9a10d1','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('8001','ORIG_M50_Thruster_Main_Dummy','MainThruster','FixedThruster','4a19c59f-773e-4a26-9459-897e80817226','','',NULL), -('8002','Door Control','Door','UNDEFINED','ad491d3f-9cb7-4864-9f47-f5d48bd17640','','',NULL), -('8003','tool_manual_1_spanner_b','Misc','UNDEFINED','643bd632-9d65-4cc1-b37f-ca89d0486b24','','',NULL), -('8004','Medical Bed','Usable','UNDEFINED','35f995a2-b22a-45d6-b334-23986cc42027','','',NULL), -('8005','Hydrogen','Cargo','Cargo','74c37612-a6d5-4497-a5d2-fcd131d8442c','','',NULL), -('8006','VNCL_Blade_Thruster_Main_Fixed_02','MainThruster','FixedThruster','002e5ca4-2936-4695-8711-8329fa03af57','','',NULL), -('8007','Lynx Core Lichen','Armor','Torso','0ec29c10-875e-44a9-8e5f-08f831fdaf3e','','',NULL), -('8008','Twenty-Sided Plushie Green','Misc','UNDEFINED','1273b98d-6183-438f-8f2a-3e5caf258f49','','',NULL), -('8009','VariPuck S4 Gimbal Mount','Turret','GunTurret','aa93f7bf-151d-456d-8657-a2647a5d3510','','',NULL), -('8010','RSI_Perseus_Thruster_Mav_Top','ManneuverThruster','UNDEFINED','11c01463-dd1b-4fef-89a9-9f4b545b9d6f','','',NULL), -('8011','Door','Door','UNDEFINED','b6b8bafd-5f12-4e27-bdd0-d34ecbe1eca9','','',NULL), -('8012','Inert Materials','Cargo','Cargo','985db7db-586f-4ffd-9e60-f8baf05b8f1d','','',NULL), -('8013','Chiron Legs Samaritan','Armor','Legs','16297271-4a56-4c93-b46d-418704427ca6','','',NULL), -('8014','Lengua Sandwich','Food','Junk','59206c7a-a29c-462a-b318-b86f43c30fa9','','',NULL), -('8015','Paradan Boots','Char_Clothing_Feet','UNDEFINED','a5cfa010-ee34-4fab-b77a-ce6a92247e00','','',NULL), -('8016','Reclaimer Aphorite Livery','Paints','UNDEFINED','86ed92d2-c794-44ff-88f3-8fe16c2ae491','','',NULL), -('8017','Venture Arms Starcrossed','Armor','Arms','f2b18d39-edc1-447e-ba23-fc6b1171391c','','',NULL), -('8018','Bar_Table_Scrap_01','Usable','UNDEFINED','8518445d-9aed-4977-8c69-ce09dbac621e','','',NULL), -('8019','Varhey Boots','Char_Clothing_Feet','UNDEFINED','aaba8a52-ac72-4868-a7d3-52bc897a908f','','',NULL), -('8020','VNCL_Gen2_PlasmaCannon_PowerArray_S2','WeaponAttachment','PowerArray','37015725-0548-431e-a591-d6b8c48cae86','','',NULL), -('8021','Book','Misc','UNDEFINED','c2ddf236-6207-4eb7-8396-0bb8c8df7b26','','',NULL), -('8022','Silco Shirt Mandalay','Char_Clothing_Torso_0','UNDEFINED','cae003de-fa26-4e14-95e7-ad1dae4d6d66','','',NULL), -('8023','Safehab','LifeSupportGenerator','UNDEFINED','21a4d323-3cb1-4ec1-a6b7-be14a73e7951','','',NULL), -('8024','Cargo_Comm_125x3_Metal_Tungsten_a','Cargo','Cargo','d93ddccf-aae0-4b6e-82df-27e5c9e7fc16','','',NULL), -('8025','Hornet Mk II Lovestruck Livery','Paints','UNDEFINED','447e73c4-3e5b-4f38-b71e-2c2b4ad76a49','','',NULL), -('8026','AllStop','Shield','UNDEFINED','339bd641-8dfb-4bc1-b273-5ffc5f702fbb','','',NULL), -('8027','MacFlex Backpack Orange','Armor','Backpack','485b0ac2-bfb2-47d0-9bdb-4a9448eefb4f','','',NULL), -('8028','RSI_Polaris_SeatAccess_Turret_Front','SeatAccess','UNDEFINED','807ca7c8-8f2a-4213-a1d1-a5ecd4c014d9','','',NULL), -('8029','MacFlex Arms Imperial','Armor','Arms','ad7c4ffa-7d0c-475f-9479-4bbd3a6be9ba','','',NULL), -('8030','Trawler Scraper Module','SalvageModifier','UNDEFINED','9dd4d8a5-49ab-493f-93cb-0536050cd9b4','','',NULL), -('8031','Deep-Space Undersuit Brassy','Armor','Undersuit','d3504f1b-282f-467f-acaa-856c6b904935','','',NULL), -('8032','Testudo Arms Disrupt Camo','Armor','Arms','224d3dcf-4671-41ae-8062-3916928b374c','','',NULL), -('8033','SLAM','FPS_Consumable','Medical','e45d713d-797e-478a-9aa1-30f4ff95c68a','','',NULL), -('8034','Diamond','Cargo','Small','4cf04241-eeb3-4550-9e20-c409ddea6afc','','',NULL), -('8035','Draugar Gatling','Weapon','Gun','85726664-e16d-4a24-98f8-7cc8f0ba6f00','','',NULL), -('8036','Internal Tank','FuelTank','Fuel','4392d1fe-dfdf-4457-a1cf-6e3787acc4fb','','',NULL), -('8037','Seat','Usable','UNDEFINED','a6412fd7-5803-4a5c-9e05-d72c5327f3b1','','',NULL), -('8038','Cupboard','Cargo','UNDEFINED','71d24d50-7780-4b40-88f0-14617d982236','','',NULL), -('8039','ORC-mkX Legs Nightfire','Armor','Legs','91e37b74-cbf8-4a72-82e4-419d0874a84e','','',NULL), -('8040','Day One Shirt Twilight','Char_Clothing_Torso_0','UNDEFINED','48a5d955-a3e3-40a6-bc32-c74e6b7e937e','','',NULL), -('8041','CRUS_Starlifter_Thruster_Mav_M2','ManneuverThruster','JointThruster','6082a037-07ac-4288-a3e3-e56cba90225d','','',NULL), -('8042','Arden-CL Backpack Balefire','Armor','Backpack','7744c18c-397d-40d1-a920-08541048f1e0','','',NULL), -('8043','Lunes (Spiral Fruit)','Cargo','Cargo','47b05bf1-2dca-4828-bad9-c8026f11f08b','','',NULL), -('8044','Personal Care Product','Misc','UNDEFINED','d8f68656-aed0-43cc-b92a-19a04fd05037','','',NULL), -('8045','Helix I Mining Laser','Mining','Gun','81e1a10a-c7bd-401f-92e1-284115dcd6e1','','',NULL), -('8046','VNCL_Scythe_Thruster_Main_Fixed','MainThruster','FixedThruster','4acf6608-0de8-4d42-8d00-aea0888f3513','','',NULL), -('8047','Arden-CL Backpack Elysium','Armor','Backpack','6d3e0441-f24e-4c38-94b5-ada3af8a4609','','',NULL), -('8048','tool_power_1_impact_driver_a','Misc','UNDEFINED','6a976576-f02b-4a32-9002-b0debbf25543','','',NULL), -('8049','Deadhead Helmet','Armor','Helmet','cee7e534-e8f4-49a4-a224-60ce7512adc5','','',NULL), -('8050','Screen','Display','UNDEFINED','0dea6453-0158-4afd-ab73-410392df3b11','','',NULL), -('8051','Seat','Usable','UNDEFINED','d3461baf-2c00-416c-959f-c1bc9be2316a','','',NULL), -('8052','ARMR_TMBL_Storm','Armor','Medium','a0113201-fb19-4510-9cd8-6d7697a522cd','','',NULL), -('8053','Door Control','Door','UNDEFINED','80925795-2c5e-415b-b6ed-e5676b4d0ae2','','',NULL), -('8054','Paladin Shadowfall Livery','Paints','UNDEFINED','9d408a0a-cfbd-4c76-ba56-14a69fe60dce','','',NULL), -('8055','StorageCage_Time_CustomLoadout','Cargo','UNDEFINED','cb393330-845f-4d41-a5c0-94393211fd0e','','',NULL), -('8056','Azrael Helmet Ruby','Armor','Helmet','a106f7b5-705d-4cbb-b9a7-3a7fdf56a2d6','','',NULL), -('8057','Yeast Extract and Butter Sandwich','Food','Junk','d11bf4cb-2f91-463c-a8e2-0bbe850c01a3','','',NULL), -('8058','Seat','SeatAccess','UNDEFINED','79ce0c2f-e5d1-4a79-831d-e67f9cface1a','','',NULL), -('8059','Door Control','ControlPanel','DoorPart','4ffd7fd2-6b57-4714-aa3c-3528bdd9d244','','',NULL), -('8060','Manned Turret','TurretBase','MannedTurret','982ce3ab-41f4-40bf-a833-6237e7a97893','','',NULL), -('8061','Tripledown \"Dark\" Pistol','Weapon','Small','738f2d6a-9967-48c2-93aa-4fb7e7e6ba44','','',NULL), -('8062','SHIELDS','ShieldController','UNDEFINED','d005b805-940e-4aba-af65-fb242543441b','','',NULL), -('8063','Remote Turret','Turret','PDCTurret','f634427c-f3be-42c2-a042-96976f78b29c','','',NULL), -('8064','Lifeline Module','MiningModifier','Gun','a133320c-1cd0-4622-99dd-715924d6f928','','',NULL), -('8065','TRGT. STATUS','Seat','UNDEFINED','ff9d15db-f2b2-4cc6-b364-daae75184b04','','',NULL), -('8066','screen_4x3_covalex_datapad','Display','UNDEFINED','ffc845b4-ad4f-4946-b4fa-ba75ae77108f','','',NULL), -('8067','counter_office_1_straight_02x0075x01_b','Misc','UNDEFINED','ab07a940-f036-4088-b6d1-c2d00c4ce5e1','','',NULL), -('8068','Balor HCH Helmet Violet','Armor','Helmet','a834a5db-1ff6-46e5-a336-39c06ad32e25','','',NULL), -('8069','Door Control','Door','UNDEFINED','7e719b6e-3d86-4e54-90fb-b20d467e2fd7','','',NULL), -('8070','UNE Silver Ingot (Flawed)','Misc','UNDEFINED','227094dc-269c-48d2-99bc-6d75e93e67db','','',NULL), -('8071','Cutlass Blue Plushie','Misc','Personal','b81bad02-501e-4f2a-a0b4-1a173f6cb3f8','','',NULL), -('8072','Lillo Pants Aqua','Char_Clothing_Legs','UNDEFINED','10f73fb9-c725-4238-8625-3723714775e7','','',NULL), -('8073','Monde Core Daimyo','Armor','Torso','d61c205d-300a-4b24-aefa-7e0bcbbfadc1','','',NULL), -('8074','Nitrogen','Cargo','Cargo','0d092f74-eb3c-4e21-a683-b1cd6cf3f9f7','','',NULL), -('8075','Relay','Relay','UNDEFINED','bcc8fa77-c177-4ee3-983f-bd528ae3676c','','',NULL), -('8076','Sadaryx','Cargo','Cargo','4027bc86-ac10-4243-8336-b8535c7084a5','','',NULL), -('8077','Inquisitor Legs Blue','Armor','Legs','b8c861ca-fe1d-4c52-9a1e-66c335a7c2e3','','',NULL), -('8078','Table_1_Seat_RSI_Polaris_Captain','Usable','UNDEFINED','57119112-5a87-42cb-8bd4-fb6d7230823a','','',NULL), -('8079','Carryable_Bucket_Mop','Misc','UNDEFINED','95b6796a-e251-4cf1-875e-307d63387367','','',NULL), -('8080','FUNT','FPS_Consumable','Hacking','95c07bf7-7901-4b70-89d5-c5d383eb229c','','',NULL), -('8081','SalvageInternalStorage_AEGS_Reclaimer','SalvageInternalStorage','UNDEFINED','6bf2f71b-b030-4363-b59c-083818916bb5','','',NULL), -('8082','Door Control','ControlPanel','DoorPart','9cdc60cf-0cdc-4b2c-9cd6-cec71612e2c8','','',NULL), -('8083','Venture Core Lovestruck','Armor','Torso','45bc6edb-e6e4-4f9b-80cb-f3396390e11f','','',NULL), -('8084','Drake Hat Red Logo','Char_Clothing_Hat','UNDEFINED','a8e32536-61af-420b-be89-11cacc341da0','','',NULL), -('8085','Deadhead Helmet Lucky Break','Armor','Helmet','667f6d7b-f21a-4875-a645-a059ee89a0af','','',NULL), -('8086','Elevator Control','Elevator','UNDEFINED','670e9aee-67d4-4220-8d86-0345480cd627','','',NULL), -('8087','Carryable_1H_CY_universal_utensil_a','Weapon','Knife','ce611df2-fbc3-4986-93f0-1d5d2d5a550b','','',NULL), -('8088','ElevatorBase_Waypoint','Elevator','UNDEFINED','49cb57db-c2e8-46f8-93ea-8b827ca395ec','','',NULL), -('8089','Carnifex Armor Lucky Break','Armor','Torso','15f3ee06-cc61-41c7-89bc-0b5197d0b040','','',NULL), -('8090','sc_nvy_medical_corpsman_boots_02_01_01','Char_Clothing_Feet','UNDEFINED','269eaaf9-83c9-44fa-a06a-9294c5f27a1d','','',NULL), -('8091','Draug','Cooler','UNDEFINED','16dc5148-59f5-497b-a2b1-8f6f66513a8f','','',NULL), -('8092','Silicon','Cargo','Cargo','bb0b4382-12d9-4f0a-9ef8-f95e4bc86c46','','',NULL), -('8093','RSI_Apollo_Medivac_Thruster_Mav','ManneuverThruster','FixedThruster','46db53c7-20ca-610e-6ef7-68eee68318aa','','',NULL), -('8094','Weapon_Ship_Cz_004','Usable','UNDEFINED','563423b0-17e8-4ec3-828c-57a9706cfb1e','','',NULL), -('8095','MISSILES','MissileController','UNDEFINED','a72fed63-eca7-4763-ba80-bf36f2b65c86','','',NULL), -('8096','Radar_Display_1m','Display','UNDEFINED','4d7b0746-992e-486c-86c7-3817ccc7d34c','','',NULL), -('8097','MISC_FuelRefinery_R','FuelTank','Fuel','b4a0b012-e5a6-48c6-bc1f-8ee7acad335a','','',NULL), -('8098','sc_nvy_bdu_jumpsuit_01_01_gunner','Char_Clothing_Torso_1','UNDEFINED','594d0ae1-0494-4639-b632-a9de8f9ac37d','','',NULL), -('8099','Mustang Omega Ship Armor','Armor','Medium','5f1151c2-d9fc-4d20-84bc-9c57ecf61f18','','',NULL), -('8100','Remote Turret','Turret','GunTurret','b22c5a8d-3f04-43e2-8268-8233a2fca65d','','',NULL), -('8101','Pico the Penguin Luminalia Plushie','Misc','Flair_Static','33228b90-3fa0-4a32-8cf1-460ae91aa2ce','','',NULL), -('8102','Vehicle_Screen_MFD_Holographic_Talon_BR','Display','UNDEFINED','f7584c27-1d4b-4d30-8b99-0bab833b5fee','','',NULL), -('8103','Fortune Highlander Livery','Paints','UNDEFINED','ff7896e4-c353-4cd2-a23f-6e65c907ffa3','','',NULL), -('8104','Fortune 2955 Auspicious Red Pig Livery','Paints','UNDEFINED','7a44a748-5f3d-47a0-ab93-111326a14118','','',NULL), -('8105','DynaFlex','Cargo','Cargo','8d56a6d5-1bfa-4fef-af97-09e640622d39','','',NULL), -('8106','Carryable_2H_FL_EighthSCU_Commodity_Metal','Cargo','Cargo','aa987f43-7d59-425d-b12d-97cfed33087c','','',NULL), -('8107','Leyland\'s Tortoise','Misc','UNDEFINED','da78eea2-c918-486e-8e65-165f0e04c7c4','','',NULL), -('8108','Counter_Bar_1m_DEPRECATED','Usable','UNDEFINED','f95af855-bbe2-41af-a41f-22796589abfb','','',NULL), -('8109','ARGO_MOLE_Thruster_Retro','ManneuverThruster','Retro','4916e488-e888-486a-8eea-c0ee1278d74c','','',NULL), -('8110','AEGS_Javelin_Docking_Bay_Airlock','Misc','UNDEFINED','043e81c8-befd-4230-8ffa-e7fc75a204a0','','',NULL), -('8111','Seat','Usable','UNDEFINED','ccd3d32e-3ea7-4781-8ded-a20ab4fe586d','','',NULL), -('8112','Inquisitor Core Orange','Armor','Torso','a1321639-6bb0-4729-a1dd-5839dd5ebfaf','','',NULL), -('8113','AEGS_Eclipse_RADR_Display','Display','UNDEFINED','34132ee7-ce9d-443b-b6aa-1718d64c90a0','','',NULL), -('8114','Recycled Material Composite','Cargo','Cargo','020cef7e-1581-4b6d-a76c-e513400836b3','','',NULL), -('8115','Mercury Star Runner Blackguard Livery','Paints','UNDEFINED','180927dc-55d8-4dc8-9b93-561dec31402b','','',NULL), -('8116','Door Control','Door','UNDEFINED','163f064c-4421-406d-8a6a-754e1d5b139d','','',NULL), -('8117','Ventra Gloves Sienna','Char_Clothing_Hands','UNDEFINED','118b43e3-3007-4fe6-a4d3-b02d65eecaa0','','',NULL), -('8118','Dominance-2 Scattergun','Weapon','Gun','ac55431a-d662-4d92-bda7-ea44f27ca597','','',NULL), -('8119','Iodine','Cargo','Cargo','3ba44652-11e5-419e-9745-abe2f64d8dd8','','',NULL), -('8120','Door Control','ControlPanel','DoorPart','993a444e-4708-4001-8e5c-cb73a3b38959','','',NULL), -('8121','expo_display_shirts_and_hats_tumbril','ShopDisplay','Default','03237f61-3417-46b4-9f96-73b558991066','','',NULL), -('8122','facial_hair_017','Char_Head_Beard','UNDEFINED','2d459cc1-f95d-4baa-a118-cbc05bca9d97','','',NULL), -('8123','Gadget_Cabinet_kegr_fire_extinguisher_01_NoRN_high','Usable','UNDEFINED','9ec20d3c-658a-496d-97d4-41b96741e08b','','',NULL), -('8124','Stileron','Cargo','Cargo','efaa7c5a-7f37-4da6-a8d1-664f523a782c','','',NULL), -('8125','RSI_Polaris_SCItem_SeatAccess_Turret_Manned','SeatAccess','UNDEFINED','275ad320-463a-44ae-a704-c4e600f9d146','','',NULL), -('8126','Carnifex Pants Lucky Break','Armor','Legs','27bfb11d-a2df-4f3a-bb81-14f7e0e64096','','',NULL), -('8127','mobiGlas Charcoal Casing','MobiGlas','Personal','624cebab-2767-4096-8461-72c2b6d707c6','','',NULL), -('8128','CRUS_Starlifter_Ext_Door_Bottom','Container','UNDEFINED','b21af299-6bfa-4aac-b69e-2fab5d2aa87f','','',NULL), -('8129','Pingala Seeds','Misc','UNDEFINED','6c16296a-196f-40f9-b369-fa250c476497','','',NULL), -('8130','Hermes Earthfall Livery','Paints','UNDEFINED','13958c7b-101f-4732-97c7-24aee51946c1','','',NULL), -('8131','Door Control','Door','UNDEFINED','33243a3d-fbf3-460b-b53e-40fff51dc93e','','',NULL), -('8132','ESPR_Prowler_Thruster_Retro_02_Utility','ManneuverThruster','UNDEFINED','6179becb-a72a-4381-b11c-60144d880fa2','','',NULL), -('8133','Idris Beachhead Livery','Paints','UNDEFINED','319dfd92-a7c3-412a-bbac-852609244ff7','','',NULL), -('8134','TOAG_LaserRepeater_Barrel_S3','WeaponAttachment','Barrel','03cc2a73-1401-44b5-a751-a519b8d42496','','',NULL), -('8135','Piecemeal Armor Legs Grey','Armor','Legs','a63697d1-8c80-43b0-b2b8-7c16f16f577d','','',NULL), -('8136','ORIG_85X_SCItem_Dashboard_Copilot','SeatDashboard','UNDEFINED','02efba4b-8520-46d0-bf4d-940d9860f523','','',NULL), -('8137','Performance T-Shirt','Char_Clothing_Torso_0','UNDEFINED','43ca5bd7-4b6c-4b0f-aefe-53e2bb6b765f','','',NULL), -('8138','P8-SC \"Stormfall\" SMG','Weapon','Medium','ff54216e-eef9-497e-b342-0fe4def2f7fb','','',NULL), -('8139','ARMR_MISC_Starlancer_TAC','Armor','Medium','5152457d-4a50-47d6-9528-17b7ab6e3efb','','',NULL), -('8140','Focus II Module','MiningModifier','Gun','bb54a97f-bdfb-4772-91a1-7273d88bec19','','',NULL), -('8141','TCS-4 Undersuit Twilight','Armor','Undersuit','0a577d55-3893-4b33-afe0-0fefafc01cf6','','',NULL), -('8142','Personal Storage','Cargo','UNDEFINED','63c865cc-ff8f-4f1a-bf68-df30af16592b','','',NULL), -('8143','shelf_hat_04x01x04_10Ports','ShopDisplay','Default','ed830c12-2284-49c6-a8b4-4e5472a8d9e1','','',NULL), -('8144','Frontline','QuantumDrive','UNDEFINED','02287bd1-e17b-4f73-bca2-0cded92a9423','','',NULL), -('8145','ARGO_MPUV_Thruster_Aux_Fixed_03','ManneuverThruster','FixedThruster','2a04fd49-ad40-40c3-b187-7114a50d4de1','','',NULL), -('8146','Col_A_Airlock_Tube_Door_Double_Ext_Internal_1','Door','AirlockPart','33c51e3a-8a13-4790-a5ff-c14cb086b4f8','','',NULL), -('8147','Ginger Five-Spice Kacho','Food','Box','246a120c-7f2d-483f-8724-511379b505ac','','',NULL), -('8148','TMBL_Nova_SCItem_Dashboard_Passenger','SeatDashboard','UNDEFINED','17755d82-717a-4f5f-b89e-d9a69f5d5521','','',NULL), -('8149','Seat','SeatAccess','UNDEFINED','25e32062-9f96-40ef-83c0-8e8709b24221','','',NULL), -('8150','Prim Shoes Red','Char_Clothing_Feet','UNDEFINED','6df991fa-cb82-4e1f-b74f-c6acdad6adf5','','',NULL), -('8151','Cargo_Comm_125x3_Gas_Fluorine_a','Cargo','Cargo','6cbfe6eb-f66c-447d-b33b-816c62b6204c','','',NULL), -('8152','Canelo Pants Marigold','Char_Clothing_Legs','UNDEFINED','657869b4-8c4f-489f-93c5-7a0a945f22d2','','',NULL), -('8153','Lt_A_Airlock','Usable','UNDEFINED','c3c77ed9-6e5d-450a-9422-b4d6a3528859','','',NULL), -('8154','Altimont Pants','Char_Clothing_Legs','UNDEFINED','6a5035b6-af8d-49a1-b5a1-efc7118918f6','','',NULL), -('8155','MacFlex Legs Blue','Armor','Legs','33ae835f-53c7-4131-85b0-82d2f75fb081','','',NULL), -('8156','AAT-34 Turret','Turret','MannedTurret','61f5ac39-4c07-45f7-aff5-c0420604406e','','',NULL), -('8157','Door','Door','UNDEFINED','bd703016-1294-410c-86c3-118644932b70','','',NULL), -('8158','Corbel Arms Mire','Armor','Arms','5ebbcd20-815d-4f90-ba7d-75f7ad717b46','','',NULL), -('8159','Giotto Jacket Crusader Edition Teal','Char_Clothing_Torso_1','UNDEFINED','b8af1efa-10e0-445d-bdad-f7d876799956','','',NULL), -('8160','Bed','Seat','UNDEFINED','0605ed02-097c-4abb-b574-079667aa78ab','','',NULL), -('8161','ORIG_85X_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','85f682c4-3cc5-444f-bf33-8b233490fde0','','',NULL), -('8162','Weapon_Rack_RSI_Zeus_9_Slot','Usable','UNDEFINED','299449b5-68f8-4472-ad16-0b5e957eb2f8','','',NULL), -('8163','Carinite','Cargo','Cargo','36eb5935-b03c-414e-b767-38eebff0847d','','',NULL), -('8164','CF-447 Rhino Repeater','Weapon','Gun','99df9822-458a-4e0b-8e95-3525848f79f2','','',NULL), -('8165','RSI_Polaris_Thruster_Main_Inner','MainThruster','UNDEFINED','697ad29e-6757-40e3-ac3a-9b6a5d41175c','','',NULL), -('8166','universal_necksock_undersuit_01','Char_Flair','UNDEFINED','425bcac8-99e9-493e-aa41-0f8904856e45','','',NULL), -('8167','H_Dashboard_Projector_HUD_ANVL_Legionnaire_CoPilot','Display','UNDEFINED','07159cad-5d99-4a4a-9c7a-d4b6a342469f','','',NULL), -('8168','Book','Misc','UNDEFINED','588a0b69-91fc-4d32-8dde-f1860a31cf79','','',NULL), -('8169','Pisces PHB Flight Blade','FlightController','UNDEFINED','c18f4bbe-e9a0-4a43-b1ba-7fad5a3387d1','','',NULL), -('8170','Deri Gloves Arctic','Char_Clothing_Hands','UNDEFINED','4a202cdb-394a-471b-a772-dc46cd33541e','','',NULL), -('8171','Calister Pants Armadillo','Char_Clothing_Legs','UNDEFINED','5de8da89-6384-41b3-a3d8-9487768b9b6c','','',NULL), -('8172','DeltaMax','PowerPlant','Power','0a713a9d-7e70-4586-87a6-ce08c337a8ea','','',NULL), -('8173','Remote Turret','Turret','GunTurret','88af5f26-b49f-4b7a-b7a6-e4488525fbb7','','',NULL), -('8174','INTK_RSI_Constellation_Aquila','FuelIntake','Fuel','93692842-612d-4e34-9180-33c930572969','','',NULL), -('8175','CF-557 Galdereen Repeater','Weapon','Gun','01948ce4-5951-469a-b92c-875c96dd4e4c','','',NULL), -('8176','f_human_mannequin_odyssey_suit_01','ShopDisplay','UNDEFINED','970e5c8a-d7c9-4adb-a868-edca50206809','','',NULL), -('8177','Remote Turret','Turret','GunTurret','6d9dbe36-882b-41e4-a273-b68191854a8e','','',NULL), -('8178','RSI_Mantis_Thruster_Mav_Joint','ManneuverThruster','JointThruster','8a5bea1c-8995-46bb-8118-b22941cd4bcf','','',NULL), -('8179','can_drink_3_energy_pips_shop_1x5_a','ShopDisplay','Default','b41e6393-ee29-440a-84e3-2bf3a0421f69','','',NULL), -('8180','Radar_Display_Retaliator','Display','UNDEFINED','0f3f52ae-4d42-496e-8b54-a0e68607b25d','','',NULL), -('8181','Deadhead Helmet','Armor','Helmet','eb65b1b2-beed-4600-8c9b-0f7c89558167','','',NULL), -('8182','DRAK_Dragonfly_SCItem_Dashboard_Pilot_Pink','SeatDashboard','UNDEFINED','a75b5bf1-aad4-4ae7-b403-61caeca24351','','',NULL), -('8183','ROC Black Cherry Livery','Paints','UNDEFINED','9eeaeade-4196-4fcd-8832-873857864a89','','',NULL), -('8184','Day One Shirt White','Char_Clothing_Torso_0','UNDEFINED','14e6318d-70a4-4418-99b7-3fe7d6a0498c','','',NULL), -('8185','Gamma (1x Holographic)','WeaponAttachment','IronSight','048facd2-32e2-419a-81e9-e9f7a6e971f7','','',NULL), -('8186','Whamburger','Food','Junk','335ad7be-bc4c-445b-b98a-84a25c1eaad4','','',NULL), -('8187','ANVL_Hornet_F7A_Mk1_Dashboard_Pilot','SeatDashboard','UNDEFINED','12594e2e-35b1-4ee9-9092-a7d5f9fad994','','',NULL), -('8188','IceDive','Cooler','UNDEFINED','c5b36e51-f6ea-4823-be8b-f3dd12fbda3c','','',NULL), -('8189','DRAK_Cutlass_Thruster_Maneuver_Vertical_Positive','ManneuverThruster','JointThruster','b25680c6-8b7c-4145-b212-c53449bc4305','','',NULL), -('8190','Carryable_1H_SQ_MissionItem_Delivery_SmallBox_02','Misc','Utility','121937d0-b856-4830-9726-d200833fa87f','','',NULL), -('8191','KRIG_L21_Wolf_Wingtip_Exterior','AttachedPart','UNDEFINED','70e72299-a5d5-4c7e-b367-d46eefb231c5','','',NULL), -('8192','Door','Door','UNDEFINED','7dfef519-e144-43d8-ba76-a1ea69968cab','','',NULL), -('8193','RSI_Apollo_Canister_Storage_Shelf_Parent','Misc','UNDEFINED','eaedbd3a-734b-4372-89a8-3d08a267f2e8','','',NULL), -('8194','Morozov-SH-I Arms Pyrotechnic','Armor','Arms','ce754844-2f59-45f4-ad88-70a7792cf6ee','','',NULL), -('8195','test_mug','Misc','UNDEFINED','1e6486c5-0ea0-418c-ab9d-8f52b9b23a00','','',NULL), -('8196','Paint_Gladius_Procyon','Paints','UNDEFINED','a1372df8-e5d5-4c2f-9893-78f8a52b7b64','','',NULL), -('8197','RSI_Meteor_Thruster_Retro','ManneuverThruster','JointThruster','22f86234-d210-4a05-a244-187ed936bba0','','',NULL), -('8198','WK-8 Shoes','Char_Clothing_Feet','UNDEFINED','cd94dd46-a34d-4808-88e8-b0319c06515c','','',NULL), -('8199','AEGS_Avenger_Titan_Thruster_Main','MainThruster','FixedThruster','ebdae5f7-edfb-44eb-be4b-2b8d5e6fe8ad','','',NULL), -('8200','Chada Collar and Panniers Mahogany','Char_Clothing_Torso_1','UNDEFINED','882aafdd-ed2c-4ca0-bbbd-698265bc2afc','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('8201','Bed','Usable','UNDEFINED','9c847944-79fe-4a2c-a7fb-45dabcd060d2','','',NULL), -('8202','Seat','Usable','UNDEFINED','43cb8969-c493-4262-9e28-9fddb251b41e','','',NULL), -('8203','Vehicle_Screen_MFD_Holographic_ORIG_400i_R','Display','UNDEFINED','d3848c6d-515f-44c4-91da-497d5740b4e2','','',NULL), -('8204','EX-T12-IR \"Executor\" Torpedo','Missile','Torpedo','eda2bcfa-58cf-4225-af77-bc2b1ba0a8d7','','',NULL), -('8205','m_human_mannequin_rsi_suit_07','ShopDisplay','UNDEFINED','64b52fbc-efff-498a-9e50-86ba8c2b0572','','',NULL), -('8206','BEHR_BallisticRepeater_PowerArray_S1','WeaponAttachment','PowerArray','94483882-6057-44e5-b640-c8d15b607926','','',NULL), -('8207','Vehicle_Screen_MFD_Holographic_ORIG_100i_R','Display','UNDEFINED','a0c424fb-54cf-4c50-bee9-c2bd01a1cbf4','','',NULL), -('8208','Defender Polar Livery','Paints','UNDEFINED','9037a260-de99-4690-9088-834a9af54615','','',NULL), -('8209','Atavi Shirt Dark','Char_Clothing_Torso_0','UNDEFINED','e9493f7a-3481-4a54-9b18-333a81ae5576','','',NULL), -('8210','PAB-1 Arms Imperial','Armor','Arms','57df0c92-4f29-4fb5-a6b4-9980fa81c90e','','',NULL), -('8211','ARGO_MPUV_1T_Thruster_Retro_Joint','ManneuverThruster','FixedThruster','98044d97-bf77-45bd-a867-04619b684730','','',NULL), -('8212','vanduul_drone_skull_cap_01','Char_Accessory_Head','Vanduul','4bc9fc64-fb62-40ce-bd3a-6bd1c06cdede','','',NULL), -('8213','Internal Tank','FuelTank','Fuel','35241580-f111-4aac-bd44-a8f72954bcdb','','',NULL), -('8214','Citadel Arms Icefall','Armor','Arms','06854bc6-995c-4e69-904b-b62e99df27d3','','',NULL), -('8215','Seat','Usable','UNDEFINED','cd9a5574-535b-434e-b8f0-fa33b5b321c1','','',NULL), -('8216','box_plastic_4_weapon_opened_015x01x0025_a_klwe_sniper_energy_01','Misc','UNDEFINED','14ab151b-2468-4bc3-95f5-517dcb9cd113','','',NULL), -('8217','MISC Reliant Ship Armor','Armor','Medium','a9669d19-4a9b-4098-b9d5-7dab86ebe3c5','','',NULL), -('8218','shelf_shoe_2_highend_b','ShopDisplay','Default','458a2013-7576-480a-b541-dda35f012ad7','','',NULL), -('8219','Seat','Usable','UNDEFINED','c12ee2f3-c49e-4dee-b697-71c46b46c538','','',NULL), -('8220','Fractus Gloves Brown','Char_Clothing_Hands','UNDEFINED','78faee2d-53cc-42b5-be99-678ac6b33864','','',NULL), -('8221','Internal Tank','FuelTank','Fuel','b78e26c3-d8ed-45f1-a664-d0151ab60a2e','','',NULL), -('8222','sc_marine_bdu_shirt_01_01_01','Char_Clothing_Torso_0','UNDEFINED','3443241d-f0b5-4ef9-9c54-5692f62f1657','','',NULL), -('8223','Redeemer Fortuna Livery','Paints','UNDEFINED','18391c19-d63b-44f1-a37f-7ae5c6b1ad2b','','',NULL), -('8224','ht_glass_beer_1_a','Misc','UNDEFINED','99eaf804-94a0-4ea0-a93a-2bb24aac3e5a','','',NULL), -('8225','PAB-1 Arms Green','Armor','Arms','35c3fa48-0b58-4eb1-8ed4-60a020de25d1','','',NULL), -('8226','Aegis Hammerhead - Noise Launcher','WeaponDefensive','CountermeasureLauncher','7260b513-1fb6-4eed-a000-8e723fbfad96','','',NULL), -('8227','SHIELDS','ShieldController','UNDEFINED','b3f39ced-febc-4bf0-9f43-215d14d7f933','','',NULL), -('8228','ARMR_KRIG_l22_alphawolf','Armor','Medium','d80d2d35-a470-44bf-9f75-26568ed0fffd','','',NULL), -('8229','Ponos Boots Twilight','Char_Clothing_Feet','UNDEFINED','f73d6208-6df7-4100-9736-0e6269f4529e','','',NULL), -('8230','Door','Door','UNDEFINED','3157a45d-c6a0-4704-a776-12b3feccce15','','',NULL), -('8231','Dymantium','Cargo','Cargo','79e21fd4-7d21-4e47-afd2-06b6e39a00a4','','',NULL), -('8232','Internal Tank','QuantumFuelTank','QuantumFuel','22dc0644-96a1-4533-b03d-acaf59ab61d5','','',NULL), -('8233','Trekker Boots','Char_Clothing_Feet','UNDEFINED','a2a10efe-30bb-4a6d-ab78-e86d0de2ee15','','',NULL), -('8234','Vehicle_Screen_MFD_Holographic_ORIG_890J_T','Display','UNDEFINED','3e974635-4fa1-483c-a445-b7034fd46ab1','','',NULL), -('8235','Cargo_Comm_125x3_Mineral_a','Cargo','Cargo','0911c02f-a67d-428d-9c93-ff4756daf3fc','','',NULL), -('8236','Calister Jacket Tosca','Char_Clothing_Torso_1','UNDEFINED','61850441-da29-45fc-a443-7ab5d527746f','','',NULL), -('8237','AEGS_Vanguard_Harbinger_Thruster_Retro','ManneuverThruster','FixedThruster','4e0a1136-fcda-470d-a550-322ab22a18a6','','',NULL), -('8238','RSI Polaris Torpedo Rack','MissileLauncher','MissileRack','0186d9c6-2bbd-440e-b389-31a3a96da303','','',NULL), -('8239','Arden-SL Helmet Coramor Edition \"Fate\"','Armor','Helmet','0a0ceef1-416b-4201-bdf2-af115535396f','','',NULL), -('8240','Testudo Helmet','Armor','Helmet','4aeeae6c-c596-4327-a804-cb966ed7ae16','','',NULL), -('8241','GME 240-15 Patient Slippers','Char_Clothing_Feet','UNDEFINED','faf58736-b8a2-46d4-bc59-5c92deced973','','',NULL), -('8242','Weapon_Rack_1_NONE_LMG_AmmoOnly_001','Usable','UNDEFINED','5621b275-5391-4af4-b82c-46121711d0f6','','',NULL), -('8243','Pyro RYT Multi-Tool','Weapon','Gadget','f2970f69-4761-4ed9-8b28-53db4ac97322','','',NULL), -('8244','display_2guns_5scopes_04x01x01','ShopDisplay','UNDEFINED','da472a78-453e-4557-b9bb-de40a1f95e18','','',NULL), -('8245','Zeus Exploration Suit Solar','Armor','Undersuit','ffd31f88-ee9f-4c03-b3d7-520e550629a1','','',NULL), -('8246','Seat','Usable','UNDEFINED','18ba7731-2d07-4a52-958a-50abdbd19a41','','',NULL), -('8247','Gadget_Cabinet_kegr_fire_extinguisher_01_NoRN_hightech_NoExtinguisher_med_high','Usable','UNDEFINED','b0902069-44d4-4a4c-b23f-9bd88393db17','','',NULL), -('8248','Strode Pants Molehill Brown','Char_Clothing_Legs','UNDEFINED','51aa5d93-667d-4895-8a81-d5bd988d3828','','',NULL), -('8249','Remote Turret','Turret','GunTurret','26bc2fed-566e-4cf6-97c2-f0230ed0f57f','','',NULL), -('8250','DRAK_Cutter_Roof_Expo','Misc','UNDEFINED','4be79faf-2b54-4f54-8e76-3bbee04a82cf','','',NULL), -('8251','Savrilium (Ore)','Cargo','Cargo','1bfd2f9c-e133-471c-a0f4-f508f1710011','','',NULL), -('8252','Sawtooth \"Sirocco\" Combat Knife','Weapon','Knife','10ff47bc-9384-4133-a916-e7297cb18711','','',NULL), -('8253','Aegis Hammerhead - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','801ab036-dc7e-496e-ba23-23befd6bff91','','',NULL), -('8254','Astatine','Cargo','Cargo','5d4a0f6e-cfb1-4bcd-9e15-251f14111448','','',NULL), -('8255','Weapon_Rack_Cz_003','Usable','UNDEFINED','de5e0f1b-95d9-4b3b-a29c-dcfdd2dce28e','','',NULL), -('8256','Flight Blade','FlightController','UNDEFINED','c7a16793-48dd-45e2-9932-b8ddb1b7c093','','',NULL), -('8257','MISC_Hull_C_Thruster_Mav_Fixed_Top','ManneuverThruster','JointThruster','71841880-f39a-4147-a71b-34e9b370acb8','','',NULL), -('8258','Partillium','Cargo','Cargo','735314ca-3b49-4767-9d5b-fab00fd38091','','',NULL), -('8259','Skellig Pants Rot','Char_Clothing_Legs','UNDEFINED','3562b50a-5ff3-4086-b949-f6330b4111ea','','',NULL), -('8260','Revenant Tree Pollen','Cargo','Cargo','a5fa8f0d-622f-404d-9502-45bb3590674d','','',NULL), -('8261','ARMR_DRAK_Cutter','Armor','Medium','1c73aa97-00bd-4a0a-adda-5ed53fcc35a3','','',NULL), -('8262','IonSurge Pro','PowerPlant','Power','ae0a922e-7cd6-4bd2-9da0-23c0f575a3af','','',NULL), -('8263','Argo T-Shirt Slate','Char_Clothing_Torso_0','UNDEFINED','1c3f6350-4c77-4fee-a3ef-f6e64d8c5cf0','','',NULL), -('8264','Ouratite','Cargo','Cargo','54ae2031-7b7e-47a3-8d38-b02b68c10373','','',NULL), -('8265','P8-AR \"Metro Camo\" Rifle','Weapon','Medium','ecf9ab17-21a4-4f1a-bde3-cc31321dd549','','',NULL), -('8266','Chamar Pants','Char_Clothing_Legs','UNDEFINED','c7c2cb79-7923-4f43-b1d8-b2d08813e217','','',NULL), -('8267','Artimex Core Starchaser','Armor','Torso','787a2c0a-1311-44b9-b195-3793100ca518','','',NULL), -('8268','Cutlass Dying Star Livery (Modified)','Paints','UNDEFINED','043b1ce4-f117-4f1a-98b8-aa1540b0fdec','','',NULL), -('8269','Adiva Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','97a7bf97-3100-4ba0-ad35-86c9255391f5','','',NULL), -('8270','Door','Door','UNDEFINED','af7088ec-5999-42fd-a022-be536ac50b0c','','',NULL), -('8271','Chicken Wham','Food','Junk','9e4b35dd-85b8-4fd8-bf63-68b6a2c8a828','','',NULL), -('8272','AEGS_Door_Decal_Escapepods_Large_04','Decal','DoorPart','7dc4bbb3-c170-46b2-a373-f71360d206c4','','',NULL), -('8273','Door Control','ControlPanel','DoorPart','2fe2cdc1-c9f3-47d6-8e6f-df6a35e0edab','','',NULL), -('8274','Table_2_Seat_High_Lowtech_2_a_NoSeat','Usable','UNDEFINED','639344aa-2d4e-409c-aa49-b8b9046963d6','','',NULL), -('8275','Libio Jacket','Char_Clothing_Torso_1','UNDEFINED','521ecb9b-f144-434a-8bbc-f11e27198973','','',NULL), -('8276','Door Control','Door','UNDEFINED','555657bf-047d-4dc6-92c3-e4b5a5d9a290','','',NULL), -('8277','MISC_Starfarer_Base_SCItem_Dashboard_Sup_Left','SeatDashboard','UNDEFINED','f03128e5-494c-4929-8647-66cea96fd5d2','','',NULL), -('8278','Remote Turret','Turret','PDCTurret','d573fc9c-ac7a-499a-98bb-5ce6fce31f60','','',NULL), -('8279','Cinch Scraper Module','SalvageModifier','UNDEFINED','1743f1e2-0558-45f6-bc80-d604daf97123','','',NULL), -('8280','Picoball','Misc','UNDEFINED','0df8a4e8-b328-44ae-a0c4-a54522210aa2','','',NULL), -('8281','Sadaryx','Cargo','Cargo','67697086-ae7b-42d4-b7a2-2e1d47d2cf1d','','',NULL), -('8282','Molina Mold Samples','Cargo','Cargo','fc02c7e6-c09e-4129-9098-5639d4a0513a','','',NULL), -('8283','Paint_Perseus_Red_White_Black','Paints','UNDEFINED','ceaf7f45-d4c6-46c8-ba05-3abcc2c08b06','','',NULL), -('8284','Door Control','ControlPanel','DoorPart','2b3c570e-a577-4679-9706-b04370a51bb4','','',NULL), -('8285','ESPR_Prowler_Thruster_Mav_Lateral','ManneuverThruster','UNDEFINED','6caa7d71-c920-4915-980f-757ffd9af7a9','','',NULL), -('8286','ArmorStand_CLDA_hazmat_Orange','Misc','UNDEFINED','1e84d87f-5064-463b-8c53-9fcc00eb32b7','','',NULL), -('8287','Nyman Jacket','Char_Clothing_Torso_1','UNDEFINED','029d431e-d0a6-4a17-a8b9-f528b01d0d33','','',NULL), -('8288','Remote Turret','Turret','GunTurret','1b88cf97-4632-4d7f-ba7e-a4c41bd08a38','','',NULL), -('8289','KRON_LaserCannon_Ventilation_S1','WeaponAttachment','Ventilation','8cca33e2-1618-4335-ad7a-012db8c9dfa5','','',NULL), -('8290','LightGroupPoweredItem','Light','UNDEFINED','6e1204da-ad5c-4533-984c-d8e027822633','','',NULL), -('8291','Organics','Cargo','Cargo','09690663-3a3c-4b82-b2c4-be73368f205c','','',NULL), -('8292','KRIG_l22_AlphaWolf_Thruster_Main','MainThruster','UNDEFINED','6e3eb13c-d94f-4e5f-bf05-738ba9a718f7','','',NULL), -('8293','Ejection Rejection T-Shirt','Char_Clothing_Torso_0','UNDEFINED','f479378d-2d74-4910-a072-aa95f3fa2d6d','','',NULL), -('8294','RSI Default JetPack','Suit','ThrusterPack','5843bcbc-42c1-45d0-9f11-28f2dd6b4d36','','',NULL), -('8295','Geist Armor Legs','Armor','Legs','7cc3a072-0145-459e-b76e-1401f7e6dfc6','','',NULL), -('8296','Seat','Usable','UNDEFINED','2dde7cad-2ce7-47ee-a69c-b4e4056651b4','','',NULL), -('8297','Sabine Undersuit','Armor','Undersuit','6de8b137-5901-4dfa-b263-a756f70ff8ed','','',NULL), -('8298','Railing_Straight_1m_Hurston_Lorville_Glass_A','Usable','UNDEFINED','dffad9b3-7d0a-48f5-a7b6-36d301e238a2','','',NULL), -('8299','Seat','SeatAccess','UNDEFINED','16cd7218-87ca-418d-ad40-1293de7f56f4','','',NULL), -('8300','ROC Hadanite Livery','Paints','UNDEFINED','ea584cb2-4454-4722-b8d6-9e5bb53c6264','','',NULL), -('8301','ORIG_125a_Thruster_Mav_Fixed_Top','ManneuverThruster','FixedThruster','50df168e-9d0f-4ddf-9b26-986f6b590ce4','','',NULL), -('8302','ARGO_MPUV_Thruster_Aux_Joint','ManneuverThruster','JointThruster','7dfb111e-9cf8-4c9b-9a2d-9ae028d318b5','','',NULL), -('8303','DuraWork Pants Fogforest','Char_Clothing_Legs','UNDEFINED','4fc6a37d-54f1-4fc9-b1a3-9865a8ab9bc0','','',NULL), -('8304','HexaPolyMesh Coating','Cargo','Cargo','85e56e9e-29e9-4bc8-84f3-dc50599de54d','','',NULL), -('8305','Anvil Terrapin Nose Mount','Turret','BallTurret','7cc85c6b-5867-4437-b7c6-f9b1817baec0','','',NULL), -('8306','Caudillo Helmet Cobalt','Armor','Helmet','e40998cd-017c-492f-bce2-086d2d2fd39f','','',NULL), -('8307','Aztalan Galena Helmet','Armor','Helmet','722c7f57-40f0-41b9-96ab-422462875edd','','',NULL), -('8308','Pico the Penguin Plushie','Misc','Personal','846fe080-035b-437f-b5a9-b11aa134d3ff','','',NULL), -('8309','IFR-A77 Turret','TurretBase','MannedTurret','88a05104-18bc-4e2d-80ee-796691162c7c','','',NULL), -('8310','MOLE Lovestruck Livery','Paints','UNDEFINED','bb431e79-133a-4dc6-a044-807e1edf7ba3','','',NULL), -('8311','Thunderbolt III Missile','Missile','Missile','9a741b0a-200d-4f1a-92a8-f917510804e1','','',NULL), -('8312','SHIELDS','ShieldController','UNDEFINED','e1a16a47-1c4b-46f9-a368-8767912a1cc1','','',NULL), -('8313','Astley Pants Sunset','Char_Clothing_Legs','UNDEFINED','a60fcc9c-89e2-4222-a227-114e33960bf6','','',NULL), -('8314','Mercury Gloves (Modified)','Char_Clothing_Hands','UNDEFINED','9c8ac38c-3614-4711-9c30-74f91abf6057','','',NULL), -('8315','Waldron Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','2f055639-b2e4-4482-a435-49d80706f6b2','','',NULL), -('8316','Sion \"Tweaker\" Compensator2','WeaponAttachment','Barrel','c2a12467-36a7-4e10-8de5-39b59f8922c6','','',NULL), -('8317','HLX99 Hyperprocessors','Cargo','Cargo','ded1c479-a399-4ea9-911a-db5e7e57ff0e','','',NULL), -('8318','Fulgur','PowerPlant','Power','4364d2ea-3516-474b-8f45-ae146c120ee7','','',NULL), -('8319','Rescue Required T-Shirt','Char_Clothing_Torso_0','UNDEFINED','040f1b65-c351-49da-af08-b9bd3928646f','','',NULL), -('8320','AEGS_Idris_Thruster_Mav_Fixed','ManneuverThruster','JointThruster','30e7396b-5d1c-4c19-a82b-17ec73b284eb','','',NULL), -('8321','Origin Black King','Gadget','UNDEFINED','cf9acc78-d417-492f-a132-e7afe042f1e3','','',NULL), -('8322','Door','Door','UNDEFINED','04ff90e0-960d-482c-8c83-606537499577','','',NULL), -('8323','Door Control','Door','UNDEFINED','677dc9db-6cf6-420a-b62d-7803d7d99ba5','','',NULL), -('8324','Taiga','Cooler','UNDEFINED','576b939f-1596-42ee-95b4-d5c871542d8c','','',NULL), -('8325','ControlPanel_Screen_LiftControl_3x4','ControlPanel','DoorPart','3151be21-a310-47de-b592-e4a9332d237f','','',NULL), -('8326','Seat','Usable','UNDEFINED','bd821e8c-1bf7-4278-86dd-3570c304ba1f','','',NULL), -('8327','Access','SeatAccess','UNDEFINED','bc0a16d4-fbad-40cb-9466-cd7c7f2b450d','','',NULL), -('8328','m_human_mannequin_legacy_marine_medium','ShopDisplay','UNDEFINED','07d13fd6-6663-4144-9a8c-0697c7b7a7a2','','',NULL), -('8329','Ramp Control','Usable','UNDEFINED','1edf7dac-6511-432f-8acd-f83df0c06eaf','','',NULL), -('8330','ORIG_350r_Yoke','Misc','UNDEFINED','114684c5-280b-4445-9868-6a59dcfd1ad0','','',NULL), -('8331','Seat','SeatAccess','UNDEFINED','9c6a62ed-7d8b-4f49-acb8-8b3838ba057f','','',NULL), -('8332','Seeker IX Torpedo','Missile','Torpedo','a53527ab-3c28-460d-bc96-dcfac76f1463','','',NULL), -('8333','Railing_Straight_4m_Lowtech_Bravo_Open_A','Usable','UNDEFINED','abadb7b7-2896-4967-91db-3bd62ce01997','','',NULL), -('8334','MISC_Hull_C_Int_Rear','Room','UNDEFINED','40d38354-93cb-4bf7-8548-3a513e430634','','',NULL), -('8335','PH - scu_service_shirt_02_ellroys01_01','Char_Clothing_Torso_0','UNDEFINED','7fbcb909-d950-4382-a50b-a61188ec6e82','','',NULL), -('8336','Bottle','Misc','UNDEFINED','2bf9bfaa-9be5-40ca-a6ac-c54eb15f1005','','',NULL), -('8337','Bottle','Misc','UNDEFINED','d3d6f111-ccf8-4159-8c47-10e2d4855f94','','',NULL), -('8338','Door Control','Door','UNDEFINED','2defee6b-b83e-434c-82a4-d3a54ef6063c','','',NULL), -('8339','Screen','Display','UNDEFINED','1c4da227-05a0-45d9-9452-a9bd39ecadd7','','',NULL), -('8340','Seat','Usable','UNDEFINED','dd6a144e-5cdf-4af5-80f5-405d490619f5','','',NULL), -('8341','Monde Legs Hiro','Armor','Legs','bcbece46-cb89-409c-85fc-714b3b763ddf','','',NULL), -('8342','ESPR_LaserCannon_Barrel_S5','WeaponAttachment','Barrel','1e698927-5846-4ca4-adb5-812e89f660d2','','',NULL), -('8343','MC-Pinhead Hat \"Voyager\"','Char_Clothing_Hat','UNDEFINED','160b0acb-5134-43ec-a931-6172928428d0','','',NULL), -('8344','Docking Collar','DockingAnimator','UNDEFINED','d608ae8e-cc6d-42e3-bbef-3c906e8ba42a','','',NULL), -('8345','Carryable_1H_CY_tool_manual_1_knife_a','Misc','UNDEFINED','44e4f176-0034-4201-930e-42b434da31bc','','',NULL), -('8346','LifeCure Medsticks','Cargo','Cargo','1e487854-0134-4864-bd5d-6c423ee387af','','',NULL), -('8347','Remote Turret','Turret','PDCTurret','8cf936b1-35db-45c5-b374-cb34ed0cddf8','','',NULL), -('8348','ANVL_Door_Decal_Carrack_Deck1','Decal','DoorPart','e5c3113d-978d-48ed-930a-f42bc472f05c','','',NULL), -('8349','Heart of the Woods','Misc','UNDEFINED','94512633-ff1c-48f9-85b3-6d0cbcd690d8','','',NULL), -('8350','Lillo Pants Sienna','Char_Clothing_Legs','UNDEFINED','45c8f478-08ec-420e-89eb-a058874aed8e','','',NULL), -('8351','Concept Shirt White','Char_Clothing_Torso_0','UNDEFINED','b5408369-a6af-4313-a063-4910695304aa','','',NULL), -('8352','Door Control','ControlPanel','DoorPart','7feb3919-c032-4b5a-a264-e6aee2453614','','',NULL), -('8353','Carbon-Silk','Cargo','Cargo','348a1837-79a8-4dc0-a1dc-341383c642a3','','',NULL), -('8354','Balor HCH Helmet Imperial','Armor','Helmet','95a78bfa-b2f0-430a-85ff-7ac35c3c93c9','','',NULL), -('8355','Inquisitor Legs Seagreen','Armor','Legs','f0008d0c-a28e-4fbc-bf1e-5d055b3eb913','','',NULL), -('8356','Lister Surgical Shoes','Char_Clothing_Feet','UNDEFINED','4c1d7930-8609-4c77-bbb7-fa9bee467f27','','',NULL), -('8357','Janalite','Cargo','Cargo','1a448dd5-bd68-465b-bd4e-7f7ed6d40807','','',NULL), -('8358','RSI_Scorpius_Thruster_Mav_Joint','ManneuverThruster','JointThruster','11f09457-8857-4e4e-b24e-c7602100bc3d','','',NULL), -('8359','ORC-mkX Arms Singularity','Armor','Arms','8ad97a3a-0a2b-40ca-8b67-5315b891fb82','','',NULL), -('8360','Door Control','Door','UNDEFINED','418006cd-29b1-4f15-9ecb-4fdd2215585a','','',NULL), -('8361','Vehicle_Screen_MFD_Holographic_ORIG_300i_TR','Display','UNDEFINED','d50fb0f6-29e5-4275-a4a1-60cc6dbdde8c','','',NULL), -('8362','harvestable_base_AsteroidFPSMineable','Misc','UNDEFINED','5eb04bca-82ed-4658-8953-be7e9b523218','','',NULL), -('8363','Seat','SeatAccess','UNDEFINED','75d726a3-7356-4294-b73d-20c4c5a00245','','',NULL), -('8364','Savrilium (Ore)','Cargo','Cargo','a49d25de-345d-4dfd-af85-3c12540723a7','','',NULL), -('8365','Locker_Suit_RSI_Com_Sloped_30','Usable','UNDEFINED','6eb0eb52-524c-4183-8f1d-943e3abb9e7b','','',NULL), -('8366','Monde Arms Daimyo','Armor','Arms','8ac5b124-b847-4eb6-a862-e032df662c70','','',NULL), -('8367','Maintenance_Workzone_Middle','Usable','UNDEFINED','e37f4cb7-42eb-416b-b44f-75f219044d44','','',NULL), -('8368','vanduul_pilot_core_01_01_01','Armor','Torso','6353f2e3-0476-4930-b03f-94fae2a24b00','','',NULL), -('8369','Stirling Exploration Helmet ASD Edition','Armor','Helmet','a85f88c8-ad54-4785-9a96-a4c8c84b796c','','',NULL), -('8370','Carragio Jacket Charcoal','Char_Clothing_Torso_1','UNDEFINED','d9b967ca-5f23-4a0b-a601-49bb98ed18ab','','',NULL), -('8371','ARMR_ORIG_400i','Armor','Medium','25db4a7e-572d-48bd-85e5-5ebd15f174ca','','',NULL), -('8372','Morningstar Helmet Red','Armor','Helmet','a8c4dba6-592d-4049-a242-7026ec8f826a','','',NULL), -('8373','Flight Blade','FlightController','UNDEFINED','a2242e10-e4cd-4170-8c1e-62661e7549be','','',NULL), -('8374','Prism Laser Shotgun Battery (20 cap)','WeaponAttachment','Magazine','14e12fed-37fd-4c75-b61e-1b21d1bbade7','','',NULL), -('8375','Carryable_2H_CY_weight_barbell_bumperplate_1_10kg_a','Misc','UNDEFINED','5c9da978-78a5-4dcd-9a27-41ce762c1954','','',NULL), -('8376','Faction Jacket Black','Char_Clothing_Torso_1','UNDEFINED','6bdab5a8-e691-412a-ae64-96c1fc914920','','',NULL), -('8377','behr_ltp_kinetic_01_MiningBase','Gadget','Gadget','5f08ab09-4628-4297-93ed-4708c0c12c2d','','',NULL), -('8378','Construction Materials','Cargo','Cargo','6c7c8884-a792-4588-88a3-aecfe2e435ed','','',NULL), -('8379','display_components_noGeo_01Port_s01_power','ShopDisplay','UNDEFINED','a2163259-8b93-42ca-ad8a-b44902ae42ba','','',NULL), -('8380','RSI_Perseus_Thruster_Main_Top_Right','MainThruster','UNDEFINED','fe3cc86e-a274-49a6-aa12-bd055cd94513','','',NULL), -('8381','Prim Shoes Seagreen','Char_Clothing_Feet','UNDEFINED','fc6502c1-5639-4037-a53a-a173f8c5feee','','',NULL), -('8382','Door Control','Door','UNDEFINED','0c790f29-47eb-4eed-bca5-285bb1374d7a','','',NULL), -('8383','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','ddf70bab-ef40-4259-831a-607f11ec56d4','','',NULL), -('8384','Harlowe Shirt Sienna','Char_Clothing_Torso_0','UNDEFINED','1ca4eb22-7f4a-496d-9536-913f62cb3ed3','','',NULL), -('8385','DRAK_Caterpillar_CargoGrid_Module_Ladder','CargoGrid','UNDEFINED','6e9dd6df-e80a-417e-9fa5-cd71149ca5fd','','',NULL), -('8386','Manned Turret','TurretBase','MannedTurret','7d78a6a6-7bc6-42e8-891d-932d54345fcc','','',NULL), -('8387','TRGT. STATUS','Seat','UNDEFINED','35c36c48-24eb-46f2-8430-3879150704bc','','',NULL), -('8388','MISC_Fortune_Thruster_Main_Front','MainThruster','FixedThruster','408d0ea6-c250-4dc9-856f-186fe1b61190','','',NULL), -('8389','DockingTube_Fuel_Ports_ARGO_CSV','DockingCollar','UNDEFINED','b6414350-0af5-404a-9c38-6f8f6aef3c72','','',NULL), -('8390','Razorback Pants Sienna','Char_Clothing_Legs','UNDEFINED','e2a49720-8110-43a7-a15f-28d048764e95','','',NULL), -('8391','Processed Goods','Cargo','Cargo','f80c35c7-f510-4812-8060-74183b63cfb3','','',NULL), -('8392','Dymantium','Cargo','Cargo','c3dc3eea-52e0-4c91-8973-e3cccf1d0188','','',NULL), -('8393','ORIG_890Jump_CargoGrid_Hangar_Wide','CargoGrid','UNDEFINED','51d32aff-4e39-4148-8339-3676b9a42b27','','',NULL), -('8394','Door','Door','UNDEFINED','dcc5a87b-b048-4e8f-941c-cba1a7be4e9b','','',NULL), -('8395','Stor*All 4 SCU Self-Storage Container','InventoryContainer','Cargo','ced4ab55-c8d0-42d9-86d9-71f97eb38872','','',NULL), -('8396','Lillo Pants Twilight','Char_Clothing_Legs','UNDEFINED','334fe8d6-c86e-4491-89e8-c4b74eb46717','','',NULL), -('8397','AIModule_Unmanned_PU_HOS_Missile_Turret','AIModule','UNDEFINED','95b407be-684c-4a07-a42b-d32d2732dcce','','',NULL), -('8398','Xa\'Pyen','Cargo','Cargo','5017a9d9-c589-48aa-b225-ae483b06d492','','',NULL), -('8399','Util_A_Bulkhead_Airlock_Door_Double_Int','Door','AirlockPart','0eca4a81-189d-4778-acc1-0aaa833e47ba','','',NULL), -('8400','AEGS_Door_Decal_CmptRm_02','Decal','DoorPart','e23147d9-bf18-4799-a916-e480447c93cf','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('8401','Stileron','Cargo','Cargo','626cae96-794e-4df8-804c-0a03105690b6','','',NULL), -('8402','Novikov \"Expo\" Backpack','Armor','Backpack','7c3ca522-2dc3-4ad2-9cca-c2f87f2d4174','','',NULL), -('8403','Carryable_TBO_FL_8SCU_Commodity_ProcessedGoods_OrganHarvesting','Cargo','Cargo','d769f4d3-ac4e-4471-bf49-45a028632adb','','',NULL), -('8404','DRAK_Caterpillar_SCItem_Dashboard_Copilot','SeatDashboard','UNDEFINED','2f08e697-e989-4995-b0c9-41f86d77c5d7','','',NULL), -('8405','ORIG_300i_CargoGrid_Rear','CargoGrid','UNDEFINED','e4878bf9-a51e-43e8-8030-854bb110eee3','','',NULL), -('8406','Seat','Usable','UNDEFINED','b7d0e568-f39c-454b-ba47-e8d9349bc1c9','','',NULL), -('8407','Millrun Waders Vineland','Char_Clothing_Legs','UNDEFINED','4b7a75ef-1604-4904-8ed3-0180f04f0927','','',NULL), -('8408','Rhodes Jacket White','Char_Clothing_Torso_1','UNDEFINED','e7f783d0-8772-4da8-aab2-dca84e417fcd','','',NULL), -('8409','Quantum Fuel','Cargo','Cargo','198315dc-8a84-4e2d-aaec-cbfafc5a58ec','','',NULL), -('8410','Door Control','Door','UNDEFINED','5984f9f0-8bcd-44fb-bb29-e8d19df7dd8e','','',NULL), -('8411','Parapet','Shield','UNDEFINED','8d0556f4-b325-4a00-b901-9835f8ee163d','','',NULL), -('8412','Rust (Bottle)','Drink','Bottle','01ebc178-d028-452b-8c9f-4cb9a91fd494','','',NULL), -('8413','Pingala Seeds','Cargo','Cargo','ef756b89-5438-404f-959c-035866e610e0','','',NULL), -('8414','hooks_torso0_03x01x04_03Ports','ShopDisplay','Default','d96158d6-a50d-4a51-9337-36e4ec6f4e27','','',NULL), -('8415','DRAK_Cutlass_Steel_Thruster_Maneuver_Rear_Top','ManneuverThruster','JointThruster','fca64810-a49a-4417-a0ac-3188a3da04bd','','',NULL), -('8416','Ball','Char_Head_Piercings','UNDEFINED','89f3754d-bf3e-4121-a1a6-feefe3974dcd','','',NULL), -('8417','Seat','Usable','UNDEFINED','f9117f2f-7d7b-42f1-ab01-eb52ab842963','','',NULL), -('8418','Pingala Seeds','Cargo','Cargo','3114f50a-9bbb-4fd3-baea-f5cb03a0b2e8','','',NULL), -('8419','ThermalFoam','Cargo','Cargo','7778dee3-f912-492b-ba04-ac0ea68f7a2b','','',NULL), -('8420','ORIG_600i_Thruster_Main','MainThruster','FixedThruster','0df9e4bc-5cd2-4f4c-815b-7f0126a0c088','','',NULL), -('8421','Bed','Usable','UNDEFINED','25367772-ba99-42ae-b692-cc4bb265d935','','',NULL), -('8422','Door','Door','UNDEFINED','ecb8f16b-9733-42bb-a53e-03063c3c20ca','','',NULL), -('8423','Xa\'Pyen','Cargo','Cargo','0efb6b6c-aa74-45c6-a0c5-c937e5c6d210','','',NULL), -('8424','Reliant Frostbite Camo Livery','Paints','UNDEFINED','2ae651b9-bdc4-4347-9853-b1412ff0bfcb','','',NULL), -('8425','FullSpec','Radar','MidRangeRadar','4e802779-f88e-41d0-b3ba-4dcdd352cd75','','',NULL), -('8426','Access','SeatAccess','UNDEFINED','f9324e6b-186c-4832-a284-8ecea54255ee','','',NULL), -('8427','Taberna Jacket','Char_Clothing_Torso_1','UNDEFINED','0bc1af6e-9d84-4365-a459-1141f2598673','','',NULL), -('8428','Beryl (Raw)','Cargo','Cargo','d0d51d56-6f18-444f-991f-4a13c645e3d1','','',NULL), -('8429','counter_display_04x01x01_18Ports_multiTool','ShopDisplay','UNDEFINED','5cde6b2e-3005-463a-ab14-37ceee6f715b','','',NULL), -('8430','Tona Shoes Red','Char_Clothing_Feet','UNDEFINED','600b0177-763b-4d45-85cf-24205d6e895d','','',NULL), -('8431','ORIG_890J_Dashboard_Bridge_Right','SeatDashboard','UNDEFINED','39f4f216-2b3c-49a8-86d7-b07206e2f841','','',NULL), -('8432','Lanxi Jacket Gray','Char_Clothing_Torso_1','UNDEFINED','14ae8d7d-9a88-49de-b0d0-b4f10a3a3c08','','',NULL), -('8433','Pontes','QuantumDrive','UNDEFINED','419bff00-12eb-43f7-b284-f8850519b9c6','','',NULL), -('8434','AEGS_Reclaimer_Locker_Single','Player','UNDEFINED','ba0181c1-75af-4d40-82af-3b6aadfce23d','','',NULL), -('8435','WEAPONS','WeaponController','UNDEFINED','2375d6b8-ac87-4885-bedf-8285ddc39777','','',NULL), -('8436','Pyro RYT \"Ghost\" Multi-Tool ','Weapon','Gadget','d82df0dd-441d-4fe9-b6af-708eedea3245','','',NULL), -('8437','Adrift Shirt Purple','Char_Clothing_Torso_0','UNDEFINED','0d87f341-023d-442e-afe8-c3d2c0911400','','',NULL), -('8438','Union Pants (Modified)','Char_Clothing_Legs','UNDEFINED','eb1d0d76-6a2d-48fd-9eac-9c40e3aabc1e','','',NULL), -('8439','RSI_Constellation_SCItem_Seat_CoPilot_Left_MFD','Seat','UNDEFINED','6652ad56-f96e-495e-8f51-617de2295a53','','',NULL), -('8440','TruBarrier Hazard Suit Mask Hi-Vis Yellow','Char_Clothing_Hat','UNDEFINED','3fb9f0c7-cf6a-41e2-8981-0f6072eb9d7c','','',NULL), -('8441','Beryl','Cargo','Cargo','f86a61bb-5dc1-4e3e-9742-93711ea46ebf','','',NULL), -('8442','Oracle Helmet Purple','Armor','Helmet','0e0a054a-a950-414a-bd49-aa600c59290c','','',NULL), -('8443','Seat','SeatAccess','UNDEFINED','052b1cda-8907-4755-a6b5-f430c469eeaf','','',NULL), -('8444','SHIELDS','ShieldController','UNDEFINED','f1054b14-b939-4576-b534-a0cce738430b','','',NULL), -('8445','DRAK_Herald_Thruster_Aux_V2','MainThruster','FixedThruster','69c12194-96a5-499b-9200-0dd45ec78d39','','',NULL), -('8446','Station_DockingAnimator_Docking_Arm_Util_A','DockingAnimator','UNDEFINED','ee96b364-c6de-46f2-a025-fd20104d4b40','','',NULL), -('8447','EVSD Cannon','Weapon','Gun','f8c20ae0-b9c7-4c1b-9488-27d1639fb06f','','',NULL), -('8448','Odyssey II Helmet Slate','Armor','Helmet','f4172480-cb86-4ce3-ae8e-e9c2733a8a4c','','',NULL), -('8449','ORC-mkV Legs Violet','Armor','Legs','19b443a4-b5d2-42f2-85a6-6849d9a4ca38','','',NULL), -('8450','Terrapin 2954 Best in Show Livery','Paints','UNDEFINED','e8d1c8b4-bfd1-4b89-a435-1cbac4717161','','',NULL), -('8451','Reclaimer Hadanite Livery','Paints','UNDEFINED','1232857c-380c-496f-82f8-fcb097ca6e00','','',NULL), -('8452','Drink_bottle_whiskey_01_a','Misc','UNDEFINED','b4442426-9fac-443d-91e7-2c15f55db24e','','',NULL), -('8453','Pingala Seeds','Cargo','Cargo','29f0af65-70b5-40dc-a5d5-f99c1942133f','','',NULL), -('8454','AEGS_Eclipse_Thruster_Retro','ManneuverThruster','FixedThruster','ecc37329-3c8d-4dec-876d-fd3986476241','','',NULL), -('8455','Arclight \"Glimmer\" Pistol','Weapon','Small','ff264701-b252-403c-b265-9f9362efe380','','',NULL), -('8456','cbd_main_hall_display_case_2_S2Ports','ShopDisplay','Default','85c46385-6515-46f4-9682-79b6a1350bd1','','',NULL), -('8457','VNCL_Glaive_Thruster_top_front','ManneuverThruster','FixedThruster','2fa92a53-5d60-4a4f-8c5b-ee4eb1f2bc1a','','',NULL), -('8458','Toilet_Col_a_Hab_1_a','Usable','UNDEFINED','83a10f54-124d-4e56-bff6-e6b0932badf6','','',NULL), -('8459','GP-33 MOD \"Umber\" Grenade Launcher','Weapon','Medium','ae624a69-7d45-430e-9d58-134a4f04f85b','','',NULL), -('8460','Iron (Ore)','Cargo','Cargo','72cd55e0-8e45-43a6-b09e-300551f7ead9','C','',NULL), -('8461','Kino Shoes Red','Char_Clothing_Feet','UNDEFINED','1abea099-a3b6-479f-a505-b213d7ee0dc2','','',NULL), -('8462','SHIELDS','ShieldController','UNDEFINED','d467f0f7-6d3c-4f1b-9869-aa6adada8f38','','',NULL), -('8463','Seat','SeatAccess','UNDEFINED','6e5259e0-b5fd-4deb-97c9-ed1b83c15333','','',NULL), -('8464','TRGT. STATUS','Seat','UNDEFINED','aa89ec66-91a6-4fc7-b363-9788acf8a991','','',NULL), -('8465','TRGT. STATUS','Seat','UNDEFINED','b3163325-3239-47ea-bdeb-e95951ec493c','','',NULL), -('8466','Pulse Corona Livery','Paints','UNDEFINED','4ebf58e6-5744-40ee-8cb5-a4f492338494','','',NULL), -('8467','Reliant Sen Livery','Paints','UNDEFINED','e1f6f394-8ffc-4691-bac7-8d8bee0d1557','','',NULL), -('8468','Elevator','Elevator','UNDEFINED','17af79f8-1d8d-4dac-a205-818c14b96668','','',NULL), -('8469','ESPR_LaserCannon_FiringMechanism_S6','WeaponAttachment','FiringMechanism','380fe67f-4979-488c-a46f-79846b638c07','','',NULL), -('8470','Second Tevarin War Red Dress Jacket','Char_Clothing_Torso_1','UNDEFINED','96e72810-3b96-4ba4-a95e-3f1485784fbc','','',NULL), -('8471','H_Dashboard_Projector_HUD_ANVL_Hawk','Display','UNDEFINED','a8434275-e0ef-4e3c-bc1e-2a9f306922f1','','',NULL), -('8472','Beacon Undersuit \"Rust Society\"','Armor','Undersuit','980081ba-b196-4aaa-80aa-b679a8f0d91c','','',NULL), -('8473','DRAK_Cutlass_Thruster_Maneuver_Rear_Top','ManneuverThruster','JointThruster','47dc4df7-7b37-452f-8615-9d1e88c2cc58','','',NULL), -('8474','un_crate_dry_1_0125x0125x0125_a','Cargo','UNDEFINED','d7b8a629-53ac-4c1a-8ad2-4b63240b0d13','','',NULL), -('8475','AEGS_Peregrine_CML_Flare','WeaponDefensive','CountermeasureLauncher','ecad1454-c309-4050-baea-badf493c9f6b','','',NULL), -('8476','Sawtooth \"Bloodstone\" Combat Knife','Weapon','Knife','a3d5ccf0-3ce1-49fc-aef5-e51ae4ca2c59','','',NULL), -('8477','Argus Helmet Black/Silver','Armor','Helmet','26c7a438-af47-4bfd-b8ac-3c1378ca558d','','',NULL), -('8478','ReadyMeal (Beef Chunks)','Food','Sachet','72256518-19bd-47ac-b39f-0f7504b025f3','','',NULL), -('8479','RSI_Apollo_Thruster_Retro_Left','ManneuverThruster','FixedThruster','e88c4974-b24b-4e7b-82ad-ff4831383c07','','',NULL), -('8480','Mivaldi Pants Yellow','Char_Clothing_Legs','UNDEFINED','d27c5682-3b69-442a-8e9d-b4b4f3522734','','',NULL), -('8481','Horizon Helmet Blue','Armor','Helmet','0ba98032-2af4-4d78-ac95-c90b8075a59d','','',NULL), -('8482','Fresh Food','Cargo','Cargo','d345e06c-bdbc-4fe4-8527-4c10de3c34ae','','',NULL), -('8483','XL-1','QuantumDrive','UNDEFINED','fce50a6d-690e-4b2d-9104-f3743387e1f0','','',NULL), -('8484','Seat','Usable','UNDEFINED','b553f321-121f-4a90-9059-d6840a3f9cee','','',NULL), -('8485','Palatino Legs Metropolis','Armor','Legs','05d400eb-2cd2-41f4-9054-ba8e87bbdcd1','','',NULL), -('8486','Flight Blade','FlightController','UNDEFINED','5077109d-c781-4dbc-bbca-d9981335a0b5','','',NULL), -('8487','KRIG_l21_Wolf_Thruster_Mav_Pipe_Right','ManneuverThruster','UNDEFINED','12dcb8b9-f6f3-4adb-a795-751e0ed63c40','','',NULL), -('8488','Seat','Usable','UNDEFINED','e87561f3-bb6a-4553-a384-1d4e924aef04','','',NULL), -('8489','Seat','SeatAccess','UNDEFINED','9eb31ff4-e47e-4117-ac59-7998eb48fe86','','',NULL), -('8490','Door','Door','UNDEFINED','8790ed50-e96f-4930-bc35-778f100d7580','','',NULL), -('8491','Door Control','ControlPanel','DoorPart','ee68f737-d293-4904-b633-fcdcef58b4a8','','',NULL), -('8492','AEGS_Vanguard_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','6f57a43e-558b-42e1-9888-4bb096c8b548','','',NULL), -('8493','Liberator ','Weapon','Rocket','065e4a72-1226-42d7-8be0-62865c8b6ebc','','',NULL), -('8494','Manned Turret','TurretBase','MannedTurret','3a975b97-a144-4414-a98c-8c5207cdad0b','','',NULL), -('8495','Seat','SeatAccess','UNDEFINED','0a273c88-62fa-4fea-898b-55e7e95e1893','','',NULL), -('8496','Cutlass Hawthorn Livery','Paints','UNDEFINED','c98e77e8-c410-4d49-9e14-d3b2c8f772bf','','',NULL), -('8497','Weapon Rack','Door','UNDEFINED','34244b60-768c-4238-8249-8a85a84c6ef1','','',NULL), -('8498','HRST_LaserRepeater_Ventilation_S3_Storm','WeaponAttachment','Ventilation','150071d1-da8b-4262-be53-e77a3629cead','','',NULL), -('8499','WorkLife Pants Blue','Char_Clothing_Legs','UNDEFINED','644ae5ed-28fb-423e-9f4a-c8f362f3ebc9','','',NULL), -('8500','CR-60','ExternalFuelTank','UNDEFINED','dec0f5dc-68c1-4058-b60d-a7a9911a8e73','','',NULL), -('8501','Remote Turret','Turret','GunTurret','e24dc01c-60df-4687-8010-c2fe558212ff','','',NULL), -('8502','Argus Helmet Yellow/Black','Armor','Helmet','00752222-956f-4dbc-8d56-66ad980327fd','','',NULL), -('8503','Weapon_Rack_Cz_001','Usable','UNDEFINED','d9d932f4-da64-45c6-b246-837ffdf82ac8','','',NULL), -('8504','INTK_ANVL_Hornet_F7CR','FuelIntake','Fuel','eb38ef19-58a7-4c4f-b078-3375713778c3','','',NULL), -('8505','Internal Tank','FuelTank','Fuel','c53884b8-fbd0-4b0b-8f89-9084adba11c0','','',NULL), -('8506','ESPR_Prowler_Thruster_Main_Utility','MainThruster','UNDEFINED','21181664-af5f-4aa8-bb17-bdc26b3ec869','','',NULL), -('8507','Covalex_Datapad_Mel_4x3_Screen','Display','UNDEFINED','d1575ae6-c9f6-4bec-9e83-fe5e166ed036','','',NULL), -('8508','Adroit Gloves Jade','Char_Clothing_Hands','UNDEFINED','bd427a2d-81db-47be-95a4-0ab6c4224b6d','','',NULL), -('8509','Flight Blade','FlightController','UNDEFINED','c7fbf526-65b3-472f-89c3-fa3a7e283b53','','',NULL), -('8510','CNOU_Mustang_Gamma_Cover_Back','Container','Cargo','1ca4b132-5bca-41aa-ab95-4239bcfd0f3c','','',NULL), -('8511','Tungsten (Ore)','Cargo','Cargo','70de649f-b547-412d-a41d-33a54d8e1d0f','','',NULL), -('8512','RSI_Salvation_Thruster_Retro','ManneuverThruster','Retro','38671b0c-21bf-4c59-88ba-f9426160e3ab','','',NULL), -('8513','Corsair Ghoulish Green Livery','Paints','UNDEFINED','0b4bb4f0-d204-419c-8c8b-6cb3914ee1bc','','',NULL), -('8514','300 Series Monarch Paint','Paints','UNDEFINED','9cafc961-8c53-4938-af7a-32430df0022b','','',NULL), -('8515','Seat','Usable','UNDEFINED','30045f28-223f-45e2-945a-e9bffe23d13a','','',NULL), -('8516','Railing_Straight_4m_LowTech_Util_Stairs_04x01_d','Usable','UNDEFINED','4831c071-f47d-45ab-92f9-b4a7bd9a5181','','',NULL), -('8517','KRIG_P52_Merlin_Thruster_Retro_02','ManneuverThruster','JointThruster','c0fa67e9-2b9f-4fe2-a945-ef7ab3b12249','','',NULL), -('8518','Railing_Straight_8m_LT_Delta_b','Usable','UNDEFINED','58e36909-616e-4d22-b145-2108697bbd72','','',NULL), -('8519','un_can_drink_2_e','Misc','UNDEFINED','b03b8316-a43c-4ef9-acf3-78179280947d','','',NULL), -('8520','Lynx Legs Seagreen','Armor','Legs','3639d7f9-9a29-4939-b0e1-2f98687300b3','','',NULL), -('8521','Dolivine','Cargo','Cargo','145e3a20-058e-46d7-83cc-143c9be2f18c','','',NULL), -('8522','Ursa Respite Livery','Paints','UNDEFINED','aae90c25-7b6a-44ca-a586-d7ea60324d78','','',NULL), -('8523','Personal Storage','Cargo','UNDEFINED','010883b6-2f92-4ef0-8e3f-22d6e75bb68b','','',NULL), -('8524','Seat','Usable','UNDEFINED','5fcb1a71-716f-40ff-9482-40f25ab00ed1','','',NULL), -('8525','CRUS_Spirit_Door_Decal_Cooler','Decal','DoorPart','6cb63640-0ecb-4d2b-9c8a-abe0477eaf6c','','',NULL), -('8526','Carryable_1H_CY_bottle_bar_06_schnapps_a','Misc','UNDEFINED','eef9f9a9-be7e-41b9-bca0-412cf4be545f','','',NULL), -('8527','chevron_1_a','Misc','UNDEFINED','ce18d63d-edb2-4dc5-9779-6a59a9abc484','','',NULL), -('8528','Turret','Turret','MissileTurret','b8a0efed-3bef-41d5-8187-72a4fefff411','','',NULL), -('8529','Door Control','Door','UNDEFINED','8cff037b-aac4-493e-9aa5-bb566c186b0b','','',NULL), -('8530','Emod \"Scorched\" Stabilizer1','WeaponAttachment','Barrel','6086430f-6a76-4768-8baa-6e09bc56140e','','',NULL), -('8531','ControlPanel_Screen_DockingMaster_Apollo','ControlPanel','DoorPart','477804c5-304a-b30a-62c1-dc14b64f58b2','','',NULL), -('8532','ControlPanel_LightSwitch_Hull_C_Beds','ControlPanel','DoorPart','f777cd48-12db-4c3c-a6bf-3da35e990574','','',NULL), -('8533','Door Control','ControlPanel','DoorPart','09f12996-a2c3-4fcc-a9f7-719a4d4c05b3','','',NULL), -('8534','Vaux-C3 Module','MiningModifier','Gun','e40337f2-7f52-4160-95eb-0e96752bc3c2','','',NULL), -('8535','K7 Pants Blue','Char_Clothing_Legs','UNDEFINED','9fe29632-ec8c-4748-b906-865278d00c6b','','',NULL), -('8536','Door Control','Door','UNDEFINED','d67214f7-d553-4b10-8c82-2887559b129e','','',NULL), -('8537','MISC_Freelancer_Thruster_Retro','ManneuverThruster','FixedThruster','2b064d7e-2a8b-4da3-8c25-3ebfe18ea651','','',NULL), -('8538','Door Control','Usable','UNDEFINED','26c2cdc8-d08c-4008-bd3b-51d17867a6a7','','',NULL), -('8539','Davin Work Gloves Olive','Char_Clothing_Hands','UNDEFINED','5affd21e-97eb-4c79-a3d6-3a59a5069788','','',NULL), -('8540','behr_ltp_01_primed_sweeping','FPS_Deployable','Small','b082a682-a43d-4178-afed-42afa5c12ffd','','',NULL), -('8541','Waste','Cargo','Cargo','099d14e9-b318-4386-a355-a685f0f96b7a','','',NULL), -('8542','ORIG_135c_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','a0dcb89e-8ac7-4056-b580-030188182328','','',NULL), -('8543','Glacosite','Cargo','Cargo','2bce3511-ca99-40f1-852e-387606c6151d','','',NULL), -('8544','MXC Timberwolf Camo Livery','Paints','UNDEFINED','88e164f9-e6e2-4e41-a5a1-248b211dcaf2','','',NULL), -('8545','ARMR_ANVL_Terrapin','Armor','Medium','98d07eb3-d5c5-4725-babc-525deb952d8e','','',NULL), -('8546','AEGS_Door_Decal_CmptRm_04','Decal','DoorPart','5dae9a7b-8127-4f25-b4d8-6316f9a2d7a9','','',NULL), -('8547','Seat','Usable','UNDEFINED','93eb9f10-f3ec-48a9-83ae-97f23a2592a0','','',NULL), -('8548','PAB-1 Core Sakura Sun Edition','Armor','Torso','cfb071eb-791e-4c86-9778-1e44436cde70','','',NULL), -('8549','Railing_Straight_4m_TDD_01','Usable','UNDEFINED','33ddf909-2e3e-4499-81ad-eb190a0ff96d','','',NULL), -('8550','Mercury','Cargo','Cargo','56041e53-e3d1-45db-90a6-5b166fe0ac41','','',NULL), -('8551','Spirit Crimson Livery','Paints','UNDEFINED','cd950441-ed5b-4b71-8c1e-2943458406e0','','',NULL), -('8552','Strata Core Neptune','Armor','Torso','8c505189-76de-43ae-a10a-7ab42dea987c','','',NULL), -('8553','m_human_mannequin_marine_heavy','ShopDisplay','UNDEFINED','eb7e6151-6666-4777-bdf4-052922c8c963','','',NULL), -('8554','Wanderer Boots Forest','Char_Clothing_Feet','UNDEFINED','dac65e4a-9b35-41dd-8941-b9f9df71c2fc','','',NULL), -('8555','RSI_Apollo_Thruster_Retro_Nacelle','ManneuverThruster','FixedThruster','428298c9-8d47-c1d2-52a9-5da79030f1b0','','',NULL), -('8556','7SA \'Concord\'','Shield','UNDEFINED','b1e490ef-86d6-466a-afb1-3875028b7a8a','','',NULL), -('8557','Khartu-al Harmony Livery','Paints','UNDEFINED','48a57967-03a8-4778-922b-97d7750b72b6','','',NULL), -('8558','PC2 Dual S4 Mount','Turret','NoseMounted','fa227828-0b9b-4fa9-80e1-fd534202e434','','',NULL), -('8559','Door Control','Door','UNDEFINED','0c201dd0-3950-427d-9688-57e768bdfced','','',NULL), -('8560','Seat','SeatAccess','UNDEFINED','9513e2a2-b8a5-4a93-97a2-841b75106f1c','','',NULL), -('8561','Venture Core Blue','Armor','Torso','334f1bd9-7ec9-4564-bc5b-fcdf3b3b5005','','',NULL), -('8562','Door Control','Door','UNDEFINED','498d6ce9-a04d-06be-3ed2-e53bd71ea197','','',NULL), -('8563','Door Control','Door','UNDEFINED','dc678a4e-7537-40ea-8e8d-23f042561417','','',NULL), -('8564','Tarantula GT-870 Mark 3 Cannon','Weapon','Gun','42e5fc33-1e86-4141-b876-c74aaec72a25','','',NULL), -('8565','Manned Turret','TurretBase','MannedTurret','b692e35b-faa5-43c4-8700-eded659149d3','','',NULL), -('8566','Door Control','Door','UNDEFINED','025c839a-95f9-4fe8-b81b-0f7d79d7aeae','','',NULL), -('8567','Door Control','ControlPanel','DoorPart','88653347-86fd-478f-aaf3-9484cc9f913a','','',NULL), -('8568','CBH-3 Helmet Red','Armor','Helmet','9dede6cd-110d-45a9-aeeb-7dffe89883a9','','',NULL), -('8569','AEGS_Vanguard_Sentinel_Thruster_Main_01','MainThruster','FixedThruster','29959bf0-9ed7-4737-92f2-728b7e6d65c3','','',NULL), -('8570','Door','Door','UNDEFINED','8e03a5c0-9f15-449d-9427-b76b62197fba','','',NULL), -('8571','RSI_Apollo_OC_Left_Tier_1','Room','UNDEFINED','4d6cf3b5-a4fa-16ee-b374-de6ddaa7448d','','',NULL), -('8572','BR-2 \"Permafrost\" Shotgun','Weapon','Medium','6c39587a-f569-4093-9cdc-bb0b63636642','','',NULL), -('8573','Seat','SeatAccess','UNDEFINED','2d153ee5-1ed4-4a35-a91a-ac4b7085430b','','',NULL), -('8574','Ecouter','Radar','MidRangeRadar','3e11d2f3-0617-4e42-afd7-72ba8302fcdb','','',NULL), -('8575','TOAG_LaserRepeater_Ventilation_S3','WeaponAttachment','Ventilation','b4a260ff-114d-4d60-8112-1c8e3d5cb501','','',NULL), -('8576','Ponos Boots White','Char_Clothing_Feet','UNDEFINED','8b9815ab-1500-4858-b9f1-38fd92b2121b','','',NULL), -('8577','Pelerous','Radar','MidRangeRadar','62567423-2d97-4515-ab39-b90756c3fe54','','',NULL), -('8578','VCK-1 \"Maul\" Blade','Weapon','Knife','1133333b-84f7-43bb-a833-e2581bbdbe4c','','',NULL), -('8579','Door_NoRoomConnector_ARGO_MOTH_CargoDoor','Door','UNDEFINED','5d9b305e-54b6-42f4-a723-8d65d004383c','','',NULL), -('8580','Morningstar Helmet Brimstone','Armor','Helmet','ce726c1c-b0c9-499e-998c-249ae2fca47c','','',NULL), -('8581','Door Control','Door','UNDEFINED','3af66c51-45d4-40c6-acbd-0701a1d4d12d','','',NULL), -('8582','Carryable_1H_trophy_citizencon2951','Misc','UNDEFINED','654941e8-18c2-4b3a-98b1-645d77b3b81c','','',NULL), -('8583','E\'tam','Cargo','Cargo','7cdc4400-c1c6-4e99-9157-cbbc6db4a0e5','','',NULL), -('8584','RSI_Aurora_Thruster_LN_SG_Retro_Right','MainThruster','FixedThruster','63159636-2441-40e4-a89f-5bec0deea050','','',NULL), -('8585','Archibald Jacket Hearth','Char_Clothing_Torso_1','UNDEFINED','88f06c35-bca3-4ab0-b375-21540e548101','','',NULL), -('8586','ORC-mkV Arms Seagreen','Armor','Arms','c6ead4a8-1769-4d2e-b48d-452651801cd8','','',NULL), -('8587','Carryable_1H_SQ_personal_comb_5_a','Misc','UNDEFINED','248803c1-8fc1-4f83-a8aa-e676ef7e41c4','','',NULL), -('8588','TRGT. STATUS','Seat','UNDEFINED','6a430c63-4cbe-49d3-8e69-ef096dea187f','','',NULL), -('8589','Seat','Usable','UNDEFINED','c1754592-f101-451d-99f2-e71a1fad7b11','','',NULL), -('8590','Carryable_1H_CY_glass_tumbler_1_a','Misc','UNDEFINED','e4a21a51-b2ec-4623-a615-e9f40f0308c5','','',NULL), -('8591','Overlord Core Cardinal','Armor','Torso','7e600346-ac60-4feb-9fd6-354329d802cb','','',NULL), -('8592','Seat','Usable','UNDEFINED','f37124ca-d4ac-437a-ae57-379220091bbf','','',NULL), -('8593','Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','a8d0c7c8-2b3a-49ae-8e21-cb2299ef5891','','',NULL), -('8594','Door Control','Door','UNDEFINED','f2c61a4e-06ef-40fc-a817-ba2efb2cb734','','',NULL), -('8595','ORC-mkV Legs Hurston Edition','Armor','Legs','173bbdf3-44a0-465d-bec5-b034e3d13ff1','','',NULL), -('8596','Lynx Core Green','Armor','Torso','ae12527b-8cf5-4ec0-9853-682dd9f69500','','',NULL), -('8597','AEGS_Redeemer_Blankingplate_RT','Misc','UNDEFINED','84c27857-f46f-4199-96cf-cc4d80c2764c','','',NULL), -('8598','SHIELDS','ShieldController','UNDEFINED','911b245b-d338-4b94-ae28-80dff5e47ec6','','',NULL), -('8599','Venture Legs Black','Armor','Legs','98593fc3-d513-41bd-a713-ef9ed1ddd479','','',NULL), -('8600','SLAM','Cargo','Cargo','aac89cb8-665d-406d-871a-afcc179968d8','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('8601','AEGS_Reclaimer_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','e9bc25ee-c707-49da-9662-a3bc2c6a7b0f','','',NULL), -('8602','Carryable_2H_FL_Safe_Advocacy_Badge','Misc','UNDEFINED','d2a986bd-86e5-4699-a013-016f9042e55c','','',NULL), -('8603','DoorDefaultRoomConnector','Door','UNDEFINED','ab0ef44c-2084-4971-9d27-cfa15973a13b','','',NULL), -('8604','Venture Undersuit Red/White','Armor','Undersuit','4dbfb1e0-8889-458f-946a-f91d2004f910','','',NULL), -('8605','Ht_DoorPanelScreen_Locked','Misc','UNDEFINED','3be49336-c321-40c3-b7e2-8d32675dae8c','','',NULL), -('8606','ToolSafe Vest Ochre','Char_Clothing_Torso_1','UNDEFINED','0cfba48a-949d-4d52-af30-1bb41aebfab7','','',NULL), -('8607','ANVL_Pisces_Thruster_Retro_Left_C8R','ManneuverThruster','JointThruster','c2aa89d2-a735-45b4-9a26-71efb2751c9f','','',NULL), -('8608','Beacon Undersuit Grey','Armor','Undersuit','f109453c-54d3-45ca-a828-f367d90b9aa2','','',NULL), -('8609','Wrecker Arms Ashen','Armor','Arms','fd90508f-e57e-4742-9d1f-ddbd2b350b97','','',NULL), -('8610','Door Control','ControlPanel','DoorPart','cfa71c2d-cb2d-48e9-8254-b8238f4ccc3e','','',NULL), -('8611','Arclight Pistol Battery (30 cap)','WeaponAttachment','Magazine','e15e874d-a0c1-4f91-939b-b04bf7a9e839','','',NULL), -('8612','DCP Armor Arms Hunter Camo','Armor','Arms','e742fa9a-dc65-43b0-912a-f6a772a6d309','','',NULL), -('8613','MacFlex Arms Tan','Armor','Arms','bca35041-a87c-47dd-afda-9bdab05d69c6','','',NULL), -('8614','Pyro RYT Multi-Tool Battery','WeaponAttachment','Magazine','f1073c2c-900c-4c62-a866-46aa402ee1b2','','',NULL), -('8615','Warden Backpack Daimyo','Armor','Backpack','e7c00518-0760-41df-acfb-6ca578099ca1','','',NULL), -('8616','Internal Tank','QuantumFuelTank','QuantumFuel','3cc1efaf-667e-4ae9-9f1f-6c606b9d8c3e','','',NULL), -('8617','RSI_Perseus_Turret_Bottom_Lighting_OC','Room','UNDEFINED','74da8b20-6659-4ed2-b126-582b7c9e7258','','',NULL), -('8618','Caret Pants Dark Grey','Char_Clothing_Legs','UNDEFINED','c486008a-c2d0-4833-8faf-ffac44aaa55d','','',NULL), -('8619','FBL-8a Core Imperial Red','Armor','Torso','ac9f15b5-cb6b-4ae3-a77d-49234111fecf','','',NULL), -('8620','Golem Coalheart Livery','Paints','UNDEFINED','ffc265a3-ec48-42a7-b65f-a327dfdd80f8','','',NULL), -('8621','Low End Couch','Usable','Cargo','49b22154-6ff8-48af-9740-9b1122c64a07','','',NULL), -('8622','Citadel Legs Ignitor','Armor','Legs','19963664-f89b-4252-a8a1-42120939a371','','',NULL), -('8623','stand_shop_large_Shield','ShopDisplay','UNDEFINED','531ae328-a791-4a2f-80e4-e5f94cd92a8f','','',NULL), -('8624','NONE_LaserRepeater_Barrel_S2','WeaponAttachment','Barrel','17800bc8-fa08-47ec-ba0d-eba6d589e12c','','',NULL), -('8625','C54 \"Scorched\" SMG','Weapon','Medium','74c2cdbe-238a-4709-a55c-810a91dd7627','','',NULL), -('8626','TRGT. STATUS','Seat','UNDEFINED','798fcb2e-3785-4ec4-a37f-bff388a24747','','',NULL), -('8627','PC2 Dual S1 Mount','Turret','GunTurret','5eeb75ed-8fd9-488f-b5ff-c88d85d2adb3','','',NULL), -('8628','Distilled Spirits','Cargo','Cargo','a3f2a199-0ab3-4fa7-9e6c-19f28f3b636a','','',NULL), -('8629','QTNK_RSI_Bengal','QuantumFuelTank','QuantumFuel','5bc46e82-4455-4a89-a1de-5dddcbe23c96','','',NULL), -('8630','Cargo_Comm_125x3_Metal_Agricium_a','Cargo','Cargo','6b424e47-e2a3-40c5-a175-8dbebcd69a72','','',NULL), -('8631','Door Control','Door','UNDEFINED','a6b7002b-8339-4029-a5fe-2e34e373c165','','',NULL), -('8632','Neon','Cargo','Cargo','e122cd69-8fe9-4cf4-a03a-a2520f0591e4','','',NULL), -('8633','Valkyrie Splinter Livery','Paints','UNDEFINED','e7e359cc-abb6-4efb-8c92-2fdc1bdbdcb3','','',NULL), -('8634','Toilet_AEGS_Idris','Usable','UNDEFINED','d9849a4e-0bec-49ab-9059-48db0a50afea','','',NULL), -('8635','Argus Helmet','Armor','Helmet','28e6084e-084b-4ce8-968c-be2220c135df','','',NULL), -('8636','2954 Luck\'s Favor Tankard','Drink','UNDEFINED','2d01142c-0199-4ac2-9589-21096a16b98d','','',NULL), -('8637','Lillo Pants Dark Green','Char_Clothing_Legs','UNDEFINED','14f5d0a2-1ab5-4b23-bf07-eb3f7d426b71','','',NULL), -('8638','Concept Shirt Dark Green','Char_Clothing_Torso_0','UNDEFINED','8f63a459-3017-4ec8-aeea-48b271894df0','','',NULL), -('8639','Revenant Pod','Cargo','Cargo','e4df22f0-79c2-46ff-84e5-4e9f36c262e5','','',NULL), -('8640','ANVL_Carrack_SCItem_Cart_Console','Seat','UNDEFINED','14dc4406-18a6-4056-9ca3-061da42f24e9','','',NULL), -('8641','Argo MOTH Missile Launcher','MissileLauncher','MissileRack','bcef221a-2493-48e4-b737-0c006415038a','','',NULL), -('8642','Seat','Usable','UNDEFINED','a327bea5-d007-4c6e-821e-c99f09f8c241','','',NULL), -('8643','ANVL_Pisces_Thruster_Retro_Right_C8R','ManneuverThruster','JointThruster','8e7cb8de-af69-4140-a8fa-9b60ac717f91','','',NULL), -('8644','Inquisitor Arms Purple','Armor','Arms','2267db02-b727-42e2-b9ad-509bf7dc4017','','',NULL), -('8645','Door Control','Door','UNDEFINED','ad387e18-4be3-42ec-97d5-cb0e5ab5e0c8','','',NULL), -('8646','Balor HCH Helmet Aqua','Armor','Helmet','1044884e-a1df-4694-8242-b9b97a363033','','',NULL), -('8647','ANVL_Lightning_F8_Thruster_Mav_Joint_LightBlue','ManneuverThruster','JointThruster','88601b1e-a040-470b-be5a-4ba94aafe7a9','','',NULL), -('8648','Bannock Jumpsuit Blue','Char_Clothing_Torso_1','UNDEFINED','85626d7f-ff67-405d-a25e-3f1e6ca6cdde','','',NULL), -('8649','Inquisitor Legs Purple','Armor','Legs','f9fe6b21-49ac-44be-920a-64e68e4634c8','','',NULL), -('8650','ORC-mkX Arms Nightfire','Armor','Arms','53d6bec6-477c-4ff7-bc66-a356db06decf','','',NULL), -('8651','ORC-mkV Legs','Armor','Legs','bf9e7f98-fee7-4d17-8588-02238efcb637','','',NULL), -('8652','Geist Armor Helmet Golden Blossom','Armor','Helmet','db272f30-36b6-4748-af05-65546c58de6c','','',NULL), -('8653','TBF-4 \"Balefire\" Combat Knife','Weapon','Knife','66d9acb9-fea7-439f-a14c-e25e700df65f','','',NULL), -('8654','Table_Bench_8_AEGS_FullOfTrays','Usable','UNDEFINED','17056ee6-28a3-4642-87ac-756234cd8e17','','',NULL), -('8655','C5-173f S5 Hornet Mk II Ball Turret','Turret','BallTurret','ea532b81-bbe5-4cc1-aede-4566ab44607e','','',NULL), -('8656','TRGT. STATUS','Seat','UNDEFINED','4b46925c-f76f-433c-9b27-8b18541a97cb','','',NULL), -('8657','counter_kitchen_1_straight_01x015x01_b','Misc','UNDEFINED','dfd3fb52-1759-4150-aed4-fedb479ad77f','','',NULL), -('8658','Aster Gloves Moss','Char_Clothing_Hands','UNDEFINED','56eca1fc-9e33-458e-b3ca-5a53e2655368','','',NULL), -('8659','Banu Lockbox Replica','Misc','UNDEFINED','38cf68a5-9152-4ab7-8382-1c807d2c66b4','','',NULL), -('8660','Carryable_TBO_FL_32SCU_Commodity_Organic_Armillaria','Cargo','Cargo','d4dad2b3-dd0a-4869-a2bf-6e8178fd5db2','','',NULL), -('8661','Cadmium Allinide','Cargo','Cargo','c102cac2-87ad-40db-8a6d-f50e2ec43d3f','','',NULL), -('8662','ORC-mkV Arms Blue','Armor','Arms','f7a124a8-f5c8-4b6f-8d00-ddc77378c6d9','','',NULL), -('8663','Railing_Straight_6m_LT_Delta_a','Usable','UNDEFINED','10cd94e1-c73c-4537-a0ab-6554b1398b64','','',NULL), -('8664','Weapon Rack','Door','UNDEFINED','5db6f438-5acf-4f27-99ef-26e9f51ac767','','',NULL), -('8665','Bed','Usable','UNDEFINED','dbdc48ce-0e3f-4a51-97c4-056be187c2f4','','',NULL), -('8666','SHIELDS','ShieldController','UNDEFINED','c723748f-ceba-4973-bcc8-eb64ce8978e7','','',NULL), -('8667','Bed','Usable','UNDEFINED','a5bb47c8-49eb-44b0-a055-06824e20135d','','',NULL), -('8668','Hercules Starlifter Frostbite Camo Livery','Paints','UNDEFINED','89500cf6-3a3f-4a71-ab43-cbcae42e4b3a','','',NULL), -('8669','TRGT. STATUS','Seat','UNDEFINED','80ab6c74-b84a-45b2-bd8f-9a1fb2aa804d','','',NULL), -('8670','Seat','Usable','UNDEFINED','6f95658a-70b5-4334-9992-eade53921758','','',NULL), -('8671','Default_LensDisplay_PU','Visor','Personal','9873fa65-1abb-4907-a943-20c94c68de0f','','',NULL), -('8672','Sadaryx','Cargo','Cargo','a8dd145a-3259-42a0-8cdb-b81e521303f4','','',NULL), -('8673','SHIELDS','ShieldController','UNDEFINED','f30b4273-ee51-4da2-8d26-603974faf159','','',NULL), -('8674','Ration pack','Misc','UNDEFINED','d8490d2d-132b-432e-81d0-26f47576a2a8','','',NULL), -('8675','DockingTube_Fuel_Ports_DRAK_Mule','DockingCollar','UNDEFINED','cbe8b649-63a3-4c3b-a82d-c2bf404764c4','','',NULL), -('8676','Mantis Stormbringer Livery','Paints','UNDEFINED','6f233c21-651a-4727-aee0-5526f6a6c929','','',NULL), -('8677','RSI_Polaris_Thruster_Retro_Bottom_Left','ManneuverThruster','FixedThruster','6e672999-3441-462c-a95d-ef19ca2b7266','','',NULL), -('8678','Ati Jacket Olive','Char_Clothing_Torso_1','UNDEFINED','785d359a-69c8-44c3-84e3-7ad8f5f93f38','','',NULL), -('8679','Oracle Helmet Violet','Armor','Helmet','94bb9fd0-a6d7-4015-bb42-8fb4acf3f793','','',NULL), -('8680','Vulture Carbonide Livery','Paints','UNDEFINED','e22bcfed-04be-4d66-9bb1-28f0164b4145','','',NULL), -('8681','LH86 Pistol','Weapon','Small','b15f7736-0010-4c85-b684-85118761d124','','',NULL), -('8682','Seat','SeatAccess','UNDEFINED','ab677fb8-a2fd-4edf-afea-71729f60a666','','',NULL), -('8683','Arbor MH1 Mining Laser','Mining','Gun','8bfc261a-6c67-4bec-b5b5-71407e086ec9','','',NULL), -('8684','AEGS_Javelin_LandingGearSystem','LandingSystem','UNDEFINED','6f09822d-fd8c-40d5-b3f7-4c1c6ca5d6b6','','',NULL), -('8685','IndVest Jacket Aqua','Char_Clothing_Torso_1','UNDEFINED','7328f9a6-17d1-49d8-b081-6bdcbd84a196','','',NULL), -('8686','Clempt Pants Desert','Char_Clothing_Legs','UNDEFINED','6d3cc78d-f088-447e-b4ea-bd3cb88e07e7','','',NULL), -('8687','Ship Ammunition','Cargo','Cargo','cf24ddb0-8aab-43ed-a0ea-336087ec1558','','',NULL), -('8688','Cordimon Jacket Green','Char_Clothing_Torso_1','UNDEFINED','b14f0a00-b294-4ba9-b3a1-c15981003f72','','',NULL), -('8689','StorageCage_Time_Empty','Cargo','UNDEFINED','4c264078-775d-4348-8d47-eeb33d46a6bf','','',NULL), -('8690','Tona Shoes Yellow','Char_Clothing_Feet','UNDEFINED','03a5a5a3-4458-432a-8192-99185b86752e','','',NULL), -('8691','Internal Tank','QuantumFuelTank','QuantumFuel','e4bf513b-e184-432f-a15b-341d2abf8638','','',NULL), -('8692','Falston Jumpsuit \"UDF Edition\"','Char_Clothing_Torso_1','UNDEFINED','3ad0e51c-4d18-4c47-ab64-f32e8bde18bd','','',NULL), -('8693','DockingTube_Fuel_Ports_DRAK_Dragonfly_Yellow','DockingCollar','UNDEFINED','1132270b-3227-47d5-a9d5-85b6138c8033','','',NULL), -('8694','Pico the Penguin Plushie','Misc','Personal','140e8251-7561-4729-9977-445674f67426','','',NULL), -('8695','Turret','Container','Cargo','30d9c6da-a116-45ea-b321-33ccdddfedf8','','',NULL), -('8696','Door Control','ControlPanel','DoorPart','905f8dea-7e76-4731-bbf2-199d88d65276','','',NULL), -('8697','Tarantula GT-870 Mark 3 Cannon','Weapon','Gun','0c60b4ec-ba9c-42e5-9246-6f241f138167','','',NULL), -('8698','PH - scu_service_shirt_01_ellroys01_01','Char_Clothing_Torso_0','UNDEFINED','42633084-6ebe-402e-abd8-7af0dad71664','','',NULL), -('8699','Door Control','Door','UNDEFINED','b485a35d-be5d-4116-947f-84c7bcb52ff8','','',NULL), -('8700','ARMR_RSI_Apollo','Armor','Medium','46fbe917-1cf8-2bc2-cd45-e15b64530fa1','','',NULL), -('8701','BroadSpec','Radar','MidRangeRadar','c802e513-66a1-462f-bfef-a4faa1ab5f1a','','',NULL), -('8702','Strata Legs microTech Edition','Armor','Legs','33be7a7a-6d63-45a4-9e70-924c7c553a62','','',NULL), -('8703','Dashboard','SeatDashboard','UNDEFINED','673e62f2-3283-4515-af9a-28d185bcb4fa','','',NULL), -('8704','Strata Arms Hurston Edition','Armor','Arms','dbaf3e0d-754d-47f2-a852-d7530c700f17','','',NULL), -('8705','Food_bowl_puree_01_b','Food','Consumable','59b38632-212c-47f1-a258-dd59900ca2a1','','',NULL), -('8706','vlk_spewgun_ballistic_01_adult','Weapon','Medium','2712e41b-8ae8-4015-9c85-9a41ce22a19d','','',NULL), -('8707','Ares Star Fighter Cinder Livery','Paints','UNDEFINED','e68abc82-acb6-4036-9084-89c9e2302374','','',NULL), -('8708','Concept Shirt Seagreen','Char_Clothing_Torso_0','UNDEFINED','9f15b6a9-c59f-4028-88a7-b28f8b564d05','','',NULL), -('8709','ORIG_890J_Dashboard_BattleBridge_Middle','SeatDashboard','UNDEFINED','00124ac5-50fd-40aa-82dd-a6e1bc2773de','','',NULL), -('8710','Self Destruct Unit','SelfDestruct','UNDEFINED','cf46bb34-df66-4794-92f3-6aa35b652f86','','',NULL), -('8711','Titanium (Ore)','Cargo','Cargo','74769efb-dda7-4bb4-a319-55b953d697de','','',NULL), -('8712','MacFlex Legs Orange','Armor','Legs','c5877f31-d277-442f-b7c0-aa4fd64e0382','','',NULL), -('8713','Table_Bench_2_RSI_Zeus','Usable','UNDEFINED','303e0ff2-9c83-4a14-a2f9-6258da80e69c','','',NULL), -('8714','Vacha Jacket Spruce','Char_Clothing_Torso_1','UNDEFINED','53953174-e1e0-4a12-920f-4eeb419acc1b','','',NULL), -('8715','Karoby Energy Bar (Tahini & Carob)','Food','Bar','e7746c26-4094-46e8-9784-40c596b49560','','',NULL), -('8716','Kopion Horn','Misc','Harvestable','2c1e3183-28ee-4ab9-af4c-938ccec94754','','',NULL), -('8717','Personal Storage','Cargo','UNDEFINED','08375f4f-bc84-4212-abdb-42ddab4224ac','','',NULL), -('8718','WEB','Shield','UNDEFINED','6be9c02c-ff32-483f-a6f8-d984dcb97c40','','',NULL), -('8719','Station','SeatAccess','UNDEFINED','4f3d1e07-0e6d-4a55-bd24-e4730d3632c0','','',NULL), -('8720','Carryable_TBO_FL_24SCU_Commodity_Organic_Armillaria','Cargo','Cargo','764893e2-222f-4bde-97ed-2e5c1a7ed309','','',NULL), -('8721','Venture Legs Violet','Armor','Legs','c73f9e25-f10f-481e-8136-3eed451d5d62','','',NULL), -('8722','Morozov-SH-I Helmet Pyrotechnic Smokescreen','Armor','Helmet','c8c5f582-c0bb-4f9e-8dec-d1b4c357e5bc','','',NULL), -('8723','Osoian Hides','Cargo','Cargo','db38764e-57d1-4b74-9825-de9a9332b07e','','',NULL), -('8724','Shutters','AIModule','UNDEFINED','040ca76c-1562-4613-b7ee-61ed547cb517','','',NULL), -('8725','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','cc40aa1f-d70b-4e48-a7b0-f4b6cf5e6378','','',NULL), -('8726','SafeCore Boots Tosca','Char_Clothing_Feet','UNDEFINED','4d5cb6e9-f10d-4852-b0e2-c8092021c963','','',NULL), -('8727','Door Control','Door','UNDEFINED','bd2e7c63-0bd1-41c6-9df5-dff0a39f9ce2','','',NULL), -('8728','ORIG_600i_Thruster_Retro','ManneuverThruster','FixedThruster','90a2d228-1e86-4a99-80bb-dd552c02fc2e','','',NULL), -('8729','Cassandra','Radar','MidRangeRadar','f2120aaa-2b36-4d5c-9e08-8a5ab0a2802a','','',NULL), -('8730','Hello Sunshine Cheeky Planter','Misc','UNDEFINED','f9800f4f-922a-45be-85cf-fbf12e6a2d96','','',NULL), -('8731','ForceFlex Undersuit Black/Grey/Orange','Armor','Undersuit','dbc576db-0ade-498e-9a55-eea5cc21d9af','','',NULL), -('8732','Vanduul Noise Launcher','WeaponDefensive','CountermeasureLauncher','353e32bf-1a53-4f83-900d-9f966aac1c98','','',NULL), -('8733','TrueDef-Pro Core Grey/Green','Armor','Torso','b8e3170d-d108-4511-bf32-136935743e1f','','',NULL), -('8734','Fresnel \"Icebox\" Energy LMG','Weapon','Medium','506e8192-ca9c-4c3a-8115-36e90e432148','','',NULL), -('8735','sc_nvy_training_pants_02_01_01','Char_Clothing_Legs','UNDEFINED','e4bb4f46-560c-4902-a2ca-470a035a10de','','',NULL), -('8736','Scaleweave Undersuit Ironclad','Armor','Undersuit','599be669-1742-4d6d-88a5-3ee712b0c657','','',NULL), -('8737','facial_hair_007','Char_Head_Beard','UNDEFINED','adc4a371-415f-4cbb-8873-569d4aec2b23','','',NULL), -('8738','DockingTube_Fuel_Ports_MISC_Starfarer','DockingCollar','UNDEFINED','f11f6bfb-639e-4584-ace4-b94da1da1df3','','',NULL), -('8739','Door Control','Door','UNDEFINED','cc24bcf1-eac2-4253-a997-6503670b33e1','','',NULL), -('8740','MISC_Fury_Thruster_Main_Bottom','MainThruster','JointThruster','aeb94360-f1cc-425f-bc06-76340b5c0cb7','','',NULL), -('8741','Laranite','Cargo','Cargo','b30f35c0-943b-4cfd-aa9e-43723a720fdd','','',NULL), -('8742','fruit_alien_MASTER','Misc','UNDEFINED','ca8d8c76-92ba-494a-93c2-37de5d8e85fd','','',NULL), -('8743','Arrowhead \"Lamplighter\" Sniper Rifle','Weapon','Medium','acc2a73d-8492-4492-89f4-fb1dacd84fd5','','',NULL), -('8744','RSI_Aurora_GS_LN_Thruster_Main','MainThruster','FixedThruster','9eb4ddc8-5bc4-4b7a-a9f8-cafba92b3893','','',NULL), -('8745','Edgewear Pants Sienna','Char_Clothing_Legs','UNDEFINED','5ae9657a-8d3a-4899-a162-05b24b99de71','','',NULL), -('8746','StorageCage_Quantum','Cargo','UNDEFINED','55e23f54-d2d4-4088-9da3-1315f976c9b8','','',NULL), -('8747','MISC_Hull_A_Dashboard_Pilot','SeatDashboard','UNDEFINED','21289022-e60e-46ed-be5d-9cfb4f9f39eb','','',NULL), -('8748','Colonialism_Outpost_RN_Multi_Liquid_Tank_Unit','FuelTank','UNDEFINED','b5a2e337-9f13-46e4-be70-549554c55ae2','','',NULL), -('8749','Carrion Helmet Stalker','Armor','Helmet','68cab282-0097-4e5b-a6b2-365daf59c84b','','',NULL), -('8750','Lindinium','Cargo','Cargo','2037a4b6-465b-4c40-9b2e-370bff558fd9','','',NULL), -('8751','Sunset Berries','Cargo','Cargo','5ff792ae-ae11-4089-abd8-0d351e047a45','','',NULL), -('8752','ANVL_Lightning_F8_Thruster_Mav_Joint','ManneuverThruster','JointThruster','a6710f95-d0df-422a-815d-11e31084feb8','','',NULL), -('8753','STV Blue Steel Livery','Paints','UNDEFINED','b9778ac5-26bf-4876-ae49-deabf83ab9ff','','',NULL), -('8754','Remote Turret','Turret','GunTurret','0ceecdc5-0c9c-41e6-971f-ebf48805957a','','',NULL), -('8755','Carinite','Misc','Harvestable','0b83f4b2-1d15-4843-aa94-29f2b40a5cbe','','',NULL), -('8756','MPUV Nightbreak Livery','Paints','UNDEFINED','f419a008-e931-49ce-acfb-adee776189ca','','',NULL), -('8757','Door','DockingAnimator','UNDEFINED','9463e0e4-7d09-4ea7-b27b-280cc56d4961','','',NULL), -('8758','XDL \"Mark I\" Monocular Rangefinder','Weapon','Gadget','b226305b-c44e-4990-829e-732c31d04d8a','','',NULL), -('8759','ADP Core Black','Armor','Torso','bd7a1487-f335-410a-964d-d612fa689cfb','','',NULL), -('8760','SalvageFillerStation_DRAK_Vulture','SalvageFillerStation','UNDEFINED','d32fe366-2c38-472d-b9ab-48b45963e04b','','',NULL), -('8761','Cliffback T-Shirt Desert','Char_Clothing_Torso_0','UNDEFINED','47f9cbee-1449-419e-8209-e8c448a33d4e','','',NULL), -('8762','Seat','SeatAccess','UNDEFINED','b3e443a7-9c51-4b78-ba25-429c5b1d9607','','',NULL), -('8763','m_human_mannequin_slaver_medium_02','ShopDisplay','UNDEFINED','3b354def-a1b2-45cd-b82a-be2aacdd3efa','','',NULL), -('8764','Carryable_1H_CY_pipe_weapon_1_a','Misc','UNDEFINED','87268aaf-7093-486a-8936-74deb7fcf1bb','','',NULL), -('8765','stand_shop_large_b_PowerPlant','ShopDisplay','UNDEFINED','e3bf90a4-850e-4527-bec9-26895f6c3bea','','',NULL), -('8766','Fieldsbury Dark Bear Helmet Blueberry','Armor','Helmet','312b9243-2d66-46d2-98f8-c46fbcf01fb3','','',NULL), -('8767','Venture Legs Envy','Armor','Legs','ecd74081-045e-4b69-bbbe-57431d7bc9d5','','',NULL), -('8768','Invictus Flyby Hat Grey','Char_Clothing_Hat','UNDEFINED','0f2f9441-015c-4473-a713-7c73ea72768e','','',NULL), -('8769','Aril Core Red Alert','Armor','Torso','c62f4a10-d105-499e-9383-ea4096103cbd','','',NULL), -('8770','tank_water_3_005x005x005_a','Cargo','UNDEFINED','85a847f9-d318-47fd-bf17-327a5462b4fb','','',NULL), -('8771','Manned Turret','TurretBase','MannedTurret','b4ff9b2f-1f78-41bd-b24d-9d1fdd79aafb','','',NULL), -('8772','Deo Shirt Violet','Char_Clothing_Torso_0','UNDEFINED','6c2e33da-3d3b-4ac7-8bd4-d63a6d3f2944','','',NULL), -('8773','Door Control','ControlPanel','DoorPart','71c8b320-12c5-4513-a7dd-f6524f84b03c','','',NULL), -('8774','Yellow QuikFlarePro','Weapon','Grenade','120353d3-4f38-42b1-a491-21ac01d758fa','','',NULL), -('8775','Morozov-SH Arms Smokescreen','Armor','Arms','2097306a-d601-4f45-8740-c75e76536a67','','',NULL), -('8776','BATT_S03_CitizenConDemo','Battery','UNDEFINED','59035b54-d90e-4271-8a1c-0c5a5c922a09','','',NULL), -('8777','Salvation Distortion Scattergun','Weapon','Gun','76706adf-4687-4a7a-aaf1-c44af0a5d2ca','','',NULL), -('8778','KRIG_P52_Merlin_WingTip_Right','AttachedPart','UNDEFINED','e64e10dc-a218-4945-aa36-5e5eeae4baaa','','',NULL), -('8779','ORC-mkX Arms Twilight','Armor','Arms','4c0b18d0-4039-479e-afc2-655d9c76fea0','','',NULL), -('8780','Internal Tank','QuantumFuelTank','QuantumFuel','88a6e37c-8fd7-49a7-aed0-071ea9b9fedf','','',NULL), -('8781','INTK_RSI_Mantis','FuelIntake','Fuel','d7088f23-4067-4cbc-9495-f88cf3b1c995','','',NULL), -('8782','ORIG_M50_Thruster_Retro_old','ManneuverThruster','JointThruster','f24bfa1a-95bf-478a-bd26-8c13b7b6ca0c','','',NULL), -('8783','CNOU_Mustang_Beta_Thruster_Aux','MainThruster','FixedThruster','7879f45a-1ebb-4085-870c-f1c4429b5dbe','','',NULL), -('8784','Seat','Usable','UNDEFINED','8c7ec5ba-b47a-411a-9baa-0aadc2c1d425','','',NULL), -('8785','Origin Racing Helmet','Armor','Helmet','f7a46eee-bf5a-4ca8-8444-7a126093744a','','',NULL), -('8786','ANVL_Hornet_F7C_Thruster_Mav_Joint_01','ManneuverThruster','JointThruster','bc43b4b3-90a3-454b-aea4-4a352c02b96b','','',NULL), -('8787','RSI_Apollo_Medivac_Thruster_Mav_Bottom','ManneuverThruster','FixedThruster','7a999ff3-6051-4b79-8480-0ca958a2c5df','','',NULL), -('8788','tool_manual_1_lazer_a','Misc','UNDEFINED','a148ff91-d853-4e19-ba54-f5603c042319','','',NULL), -('8789','m_human_mannequin_base_armor_Collector_RAD','ShopDisplay','UNDEFINED','5583b086-6d13-4676-b596-12f5857e9553','','',NULL), -('8790','INTK_MISC_Razor','FuelIntake','Fuel','818098fe-0455-4d5b-ba8b-f584d26c4a7a','','',NULL), -('8791','Food_Grub_Seanut_2_Fried','Food','Consumable','b91620dd-0056-4591-93c1-24c6995a3614','','',NULL), -('8792','Drivetrain','WheeledController','UNDEFINED','e54af8fd-1e19-461a-b47d-036bffd3c2e5','','',NULL), -('8793','RSI_Zeus_CL_Thruster_Main_Bottom_Left','MainThruster','UNDEFINED','34fa0b33-547d-44ab-a331-525338cd0db0','','',NULL), -('8794','Ready-Up Helmet White','Char_Clothing_Hat','UNDEFINED','947d04ac-2ec5-4189-b1a3-3f3cd7fe281b','','',NULL), -('8795','MacFlex Core','Armor','Torso','6309efdf-324a-4503-bf7c-a44da432a7f4','','',NULL), -('8796','Snaggle Stick (Original)','Food','Bar','b0e04746-9e54-42e7-a95a-f212140816d0','','',NULL), -('8797','Lynx Core Embark','Armor','Torso','7408404d-d1f9-4941-bf7f-93886fac4bc9','','',NULL), -('8798','TRGT. STATUS','Seat','UNDEFINED','c496aa3e-fbf6-45a8-bf5d-bc334544203c','','',NULL), -('8799','Benaderet Dress','Char_Clothing_Torso_0','UNDEFINED','3451df7e-1b60-4e47-a793-9c15e63b6478','','',NULL), -('8800','Bexalite (Raw)','Cargo','Cargo','c1207800-352d-4d7e-b155-627c884b20f0','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('8801','Carryable_1H_CY_utensil_rag_1_a','Misc','UNDEFINED','d14bcbb1-1d6a-4e52-a4e2-dd9749ac39d6','','',NULL), -('8802','Door Control','ControlPanel','DoorPart','fe1b170f-113d-4add-bb3f-7e2082db727e','','',NULL), -('8803','Good Gift Sweater Blue','Char_Clothing_Torso_1','UNDEFINED','d4695634-ff5a-488f-8bce-2d26cd3b1481','','',NULL), -('8804','Good Gift Sweater','Char_Clothing_Torso_1','UNDEFINED','6c26a414-6537-45b4-9304-ffa216f1f15d','','',NULL), -('8805','Door_ChipReader_StormBreaker','Door','UNDEFINED','57d19d4f-9186-4e38-b95e-b38fc84a4397','','',NULL), -('8806','Tin','Cargo','Cargo','10e64486-871d-4687-aa30-98f28b8a0dfa','','',NULL), -('8807','G-2 Helmet Sakura Sun Edition','Armor','Helmet','69e83c93-c4bc-4aba-8ec7-f9a786727ce0','','',NULL), -('8808','LeMarque Pants Orange','Char_Clothing_Legs','UNDEFINED','f7bf395a-bee3-462b-92fd-12b79e1b02c3','','',NULL), -('8809','Custodian SMG','Weapon','Medium','71ffee18-c359-4809-a4d0-3cb79bc32d30','','',NULL), -('8810','screen_4x3_clovis_datapad_1','Display','UNDEFINED','cc3e4cd5-7f8d-485f-a748-acdb1eb31882','','',NULL), -('8811','Flight Blade','FlightController','UNDEFINED','5aa2173c-b2a9-4d4f-aa22-809e864984de','','',NULL), -('8812','ORC-mkV Arms Grey','Armor','Arms','624585d4-a288-40a9-a2ee-37d9996e217c','','',NULL), -('8813','WEAPONS','WeaponController','UNDEFINED','c78851f1-ded8-4e8d-91ec-905e3dae075e','','',NULL), -('8814','XIAN_Nox_Thruster_Main','MainThruster','FixedThruster','cc733f48-d372-4370-ab27-cc982d45deaf','','',NULL), -('8815','Carrion Arms Stalker','Armor','Arms','47a2080a-496f-425f-8a63-2791588984e3','','',NULL), -('8816','Geist Backpack Whiteout','Armor','Backpack','b32c8292-3509-45c2-8420-77587156319a','','',NULL), -('8817','XIAN_Nox_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','b9dc5573-5473-4f27-a2a0-4f785b496a9b','','',NULL), -('8818','Seat','SeatAccess','UNDEFINED','180cc17f-7cda-4bfb-9ed8-d48076a08dca','','',NULL), -('8819','Hornet Ironscale Livery','Paints','UNDEFINED','c6c8b8e0-faf9-4a75-b2f2-a9f100a0a5c6','','',NULL), -('8820','Door Control','Door','UNDEFINED','791ca575-8bf8-4525-9a75-7b605f8bccc8','','',NULL), -('8821','Door_Ship_Sensor_Proximity_SpawnCloset_Bulkh','Sensor','DoorPart','a4639caf-83cb-4312-95bd-b4669bed6e60','','',NULL), -('8822','TRGT. STATUS','Seat','UNDEFINED','c51b1b42-5f63-4658-8ee8-a7e45484d490','','',NULL), -('8823','P8-SC \"Desert Shadow\" SMG','Weapon','Medium','1c3b69e0-3162-40ba-afab-f9d48da6b1dc','','',NULL), -('8824','ORIG_350r_Thruster_Mav_Fixed_Front_02','ManneuverThruster','FixedThruster','a3ec6fb3-a06b-444e-97ea-dec80997ee3d','','',NULL), -('8825','Revenant Pod','Cargo','Cargo','bfa0d551-788f-4f61-a823-e693eec70550','','',NULL), -('8826','H_Dashboard_Projector_HUD_RSI_Mantis','Display','UNDEFINED','eeb6be27-c01b-4cc8-8dee-d3e82cf09249','','',NULL), -('8827','RSI Polaris Missile Rack','MissileLauncher','MissileRack','870cb1e6-befe-49c6-8b78-2e68e8e30330','','',NULL), -('8828','MISC_Hull_C_FoldingStrut_1B_Outer','Cargo','UNDEFINED','f1311bc4-45f5-4ef1-9f74-8c8a9d7917e8','','',NULL), -('8829','ARMR_GRIN_STV','Armor','Medium','342111c9-e2c9-424f-8408-0fb23342cb72','','',NULL), -('8830','box_plastic_4_005x005x005_a','Cargo','UNDEFINED','6c5e1dea-2fe2-4daa-9296-1cd1a158df47','','',NULL), -('8831','DRAK_Cutter_Thruster_AuxRetro','ManneuverThruster','Retro','f0f4ec9a-afc1-4484-aeab-8c61955a7ea6','','',NULL), -('8832','Miner\'s Horn','Misc','UNDEFINED','22a9f3ce-f741-49d1-9894-efab2c698819','','',NULL), -('8833','Door Control','Door','UNDEFINED','62dd58a0-bf44-4f64-99d6-f6d0de759375','','',NULL), -('8834','Prim Shoes Blue','Char_Clothing_Feet','UNDEFINED','f01890f1-f376-49a1-a7e4-27a844379ff8','','',NULL), -('8835','Personal Care Product','Misc','UNDEFINED','be581bc4-608a-4108-baf2-de5b60ddca92','','',NULL), -('8836','ControlPanel_VentAccess_CRUS','ControlPanel','DoorPart','3985786c-8b91-4751-ba52-1e40a1ddf0ef','','',NULL), -('8837','RSI_Polaris_Thruster_VTOL','ManneuverThruster','FixedThruster','1ffbc5d1-2993-43ee-942f-e57222084a38','','',NULL), -('8838','Harlowe Shirt Aqua','Char_Clothing_Torso_0','UNDEFINED','efbee2b8-39bb-47ab-8c54-ae7e06aaf284','','',NULL), -('8839','TRGT. STATUS','Seat','UNDEFINED','d2d2d0a7-539f-48b5-aedd-62a6c217eedf','','',NULL), -('8840','Prota','Misc','Harvestable','0b45378f-af70-46a0-a6de-c156c6ff9d1d','','',NULL), -('8841','GP-33 MOD \"Copperhead\" Grenade Launcher','Weapon','Medium','6a0c7828-4e94-4428-8363-c5431835a040','','',NULL), -('8842','INK','Shield','UNDEFINED','4323ef0d-778f-4e8f-89e8-bbe3d33f5f08','','',NULL), -('8843','Elevator Control','Elevator','UNDEFINED','c48413f4-c107-4e1a-820d-e833451a0658','','',NULL), -('8844','Mirai Fury 1xS2 Missile Rack','MissileLauncher','MissileRack','09030367-c1fd-48cd-a981-7115a4d43371','','',NULL), -('8845','Seat','SeatAccess','UNDEFINED','9417a231-0109-4220-a011-01c009e0031c','','',NULL), -('8846','Citadel Arms Ignitor','Armor','Arms','fea1241c-cb47-41b7-8b93-b6c65d9e0e6c','','',NULL), -('8847','Seat','Usable','UNDEFINED','7935acf9-bdcb-411b-ab1e-44c4bbdc58d1','','',NULL), -('8848','Canelo Pants Rosewood','Char_Clothing_Legs','UNDEFINED','6f717280-b04d-46ea-943d-af33c8c0e009','','',NULL), -('8849','Weapon_Rack_1_VOLT_LMG_Common_001','Usable','UNDEFINED','7cb33502-a41f-4708-bec8-4e99d45ddf76','','',NULL), -('8850','Neon','Cargo','Cargo','fe0b44b7-e919-4788-90a2-df93c6a0c8ad','','',NULL), -('8851','Seat','SeatAccess','UNDEFINED','d871311b-1dd1-4287-a1aa-d9a0a0f64566','','',NULL), -('8852','Door Control','Door','UNDEFINED','35d44125-c6d4-4d9c-a412-1c10587675c1','','',NULL), -('8853','S71 \"Murray Cup Racing\" Rifle','Weapon','Medium','4e9858eb-250f-4f1e-a95f-3e69adf99aa8','','',NULL), -('8854','Tripledown \"Heavy Metal\" Pistol','Weapon','Small','b8183354-373d-429c-a5e8-22952dfe6db8','','',NULL), -('8855','Vehicle_Screen_MFD_Holographic_ORIG_85X_R','Display','UNDEFINED','9f1bd13d-6080-4a1a-8dfe-c164e2252b4c','','',NULL), -('8856','Remote Turret','Turret','PDCTurret','7ce23757-c94b-4621-a489-8bf725f9df8f','','',NULL), -('8857','Manned Turret','Turret','TopTurret','5699babb-fb1b-49ca-b8b1-272fdf37d195','','',NULL), -('8858','Artimex Helmet Starchaser','Armor','Helmet','3e954276-5977-48d9-9385-fcc00cc8224b','','',NULL), -('8859','MacFlex Legs Tan','Armor','Legs','adfab1f7-6f7a-4fc5-9392-bf546601ee12','','',NULL), -('8860','Seat','Usable','UNDEFINED','1564219c-b842-418b-9d3c-f8d755c49186','','',NULL), -('8861','Greycat ROC-DS Ore Pod','Container','Cargo','e8265869-5ca5-4cbc-8821-7fe0742b2c48','','',NULL), -('8862','Potassium','Cargo','Cargo','cba25ff1-f6d5-4cfb-b9d5-03c345f5cdde','','',NULL), -('8863','RSI_Aurora_Thruster_LN_Retro_Right','MainThruster','FixedThruster','4cef6f66-b1f9-416a-b280-42604d485d00','','',NULL), -('8864','Avocado and Corn Sandwich','Food','Junk','33ce1b51-c592-4024-8040-fd2a26cb4b9b','','',NULL), -('8865','display_00125m_a_centermass_1port_1','ShopDisplay','Default','ccc4dac7-ff83-4b9f-b414-ff5b29fff137','','',NULL), -('8866','ParaMed \"Xanthic\" Medical Device','Weapon','Small','7bc1586a-5281-4058-aa69-93b6d2be1ced','','',NULL), -('8867','Bed','Usable','UNDEFINED','dbc311f3-dbcc-44c8-a3a8-34e3243a88d1','','',NULL), -('8868','RSI Medusa Cannon','Weapon','Gun','17417d27-af6d-40fc-af97-ab6db7ab313c','','',NULL), -('8869','M4A Cannon Defense Division','Weapon','Gun','31629f0f-3324-4ec1-8da2-4a6ead6a62b2','','',NULL), -('8870','Door Control','Door','UNDEFINED','511162b9-dc8c-406c-9089-526bdab034a4','','',NULL), -('8871','Seat','Usable','UNDEFINED','df67b0ae-61a3-4d2a-86df-3683d7a1716d','','',NULL), -('8872','DRAK_Caterpillar_Mattress_A','Seat','UNDEFINED','ea03316c-4f4c-4850-bd68-3737af6aa09f','','',NULL), -('8873','Container','Misc','Personal','7fed2cf1-fdcf-4068-976f-b70f144c2b50','','',NULL), -('8874','ARGO_MOTH_Salvage_Arm','ToolArm','UNDEFINED','77e9bcec-b435-4f60-91b7-f1a3525a4da0','','',NULL), -('8875','MISC_Freelancer_MAX_Derelict_SCItem_Seat_Esc_Pod_Lower_Left','Seat','UNDEFINED','4a7adb97-c399-49fa-b1aa-f87cd1fb55f5','','',NULL), -('8876','Inquisitor Legs Aqua','Armor','Legs','ff69150c-a0f8-4079-ab5d-1a52f7088157','','',NULL), -('8877','Predator Scattergun Sharkmouth Edition','Weapon','Gun','fd668181-1bb7-42fc-86b6-cb2db9cdc930','','',NULL), -('8878','ROC Harvester Livery','Paints','UNDEFINED','5ba4d6ed-8699-4933-919b-0937b8936f88','','',NULL), -('8879','AEGS_Sabre_Peregrine_Thruster_Main','MainThruster','FixedThruster','b8d1ae90-9273-47cc-ae6f-9e7bfd9b2ae5','','',NULL), -('8880','Door Control','Door','UNDEFINED','27af59ed-0eff-4107-bf53-6a5448de314e','','',NULL), -('8881','Manned Turret','TurretBase','MannedTurret','b4a1b7cd-5a48-451a-8676-5cbbf076152d','','',NULL), -('8882','tool_hammer_1_ballpein_a','Misc','UNDEFINED','bef992e4-9061-4c48-9396-38344e846e31','','',NULL), -('8883','Dominator II Missile','Missile','Missile','67d6efbd-6b65-49d9-b319-041dc6a2675a','','',NULL), -('8884','Door Control','Door','UNDEFINED','2277e3e1-f777-40c3-8061-2fbea9f9b3f2','','',NULL), -('8885','Vehicle_Screen_MFD_Holographic_ORIG_300i_BR','Display','UNDEFINED','8c85a908-7630-47b7-b763-8bdc5ff1247a','','',NULL), -('8886','STOP','Shield','UNDEFINED','86bfeaef-e0e2-4373-9dca-47e193c0b203','','',NULL), -('8887','Molina Ventilation Filters','Cargo','Cargo','03520054-e973-4c31-8e8d-4b86e4d8a98f','','',NULL), -('8888','GMRCK_S01_TMBL_Storm_AA_Custom','GroundVehicleMissileLauncher','GroundVehicleMissileRack','720ea5f5-d897-4e06-af7c-fb729295f0c6','','',NULL), -('8889','ARGO_RAFT_Thruster_Mav','ManneuverThruster','FixedThruster','0ac6c9e3-669f-45ea-93f7-781ce61cb4ff','','',NULL), -('8890','RSI_Aurora_GS_MR_Thruster_Retro','MainThruster','FixedThruster','1675923a-f22d-4ab7-8073-1007706f009c','','',NULL), -('8891','Screen','Usable','UNDEFINED','6fb4e032-925c-4f4c-8f54-dd2ac8de164a','','',NULL), -('8892','Internal Tank','FuelTank','Fuel','148fd6bc-ffb7-4bc1-89a3-5f615f9ff594','','',NULL), -('8893','Mule Silverback Livery','Paints','UNDEFINED','0e000391-7e59-4668-8820-68661d1e7a67','','',NULL), -('8894','Internal Tank','FuelTank','Fuel','64e84c91-b973-4f3e-9dd0-424637f94cb9','','',NULL), -('8895','DRAK_Herald_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','9b49245f-1be1-4de7-88ff-cf1f18043f8d','','',NULL), -('8896','Door Control','Door','UNDEFINED','eba03d61-ed0d-48cf-aaaa-81402bc63533','','',NULL), -('8897','Surveyor-Go','Radar','MidRangeRadar','e5bccaed-85de-483b-b4b8-dfb62f085b43','','',NULL), -('8898','Ventra Gloves Aqua','Char_Clothing_Hands','UNDEFINED','d46bdb78-6e0a-49d2-aeb0-4b90ae6de4a6','','',NULL), -('8899','Seat','Usable','UNDEFINED','b37d435b-2be4-44d6-b086-de56c4aa6b9f','','',NULL), -('8900','ANVL_Terrapin_SCItem_Dashboard_Pilot_Medic','SeatDashboard','UNDEFINED','41884996-35c9-efe6-74b6-ab8b5e8fc9b4','','',NULL), -('8901','Pulse \"Hurston\" Laser Pistol','Weapon','Small','8872fed7-09bc-4334-9f7f-7958d6f512a1','','',NULL), -('8902','Dominance-3 Scattergun','Weapon','Gun','5f31f7c2-1383-4d77-892b-24507515ab0b','','',NULL), -('8903','facial_hair_014','Char_Head_Beard','UNDEFINED','f3248be1-955f-429b-ab7b-9634a531e253','','',NULL), -('8904','AAT-34 Turret','Turret','MannedTurret','36822ee4-6af9-4831-aa34-bd9357d70959','','',NULL), -('8905','AEGS_Javelin_SCItem_Dashboard_Security','SeatDashboard','UNDEFINED','7f9eb78f-69c7-44e2-9d96-47ebc9f7a4e3','','',NULL), -('8906','RADR_GNRP_S03_Idris_TEMP','Radar','MidRangeRadar','944a73bb-974c-4e4c-ab0f-6f9cd062c5a5','','',NULL), -('8907','Microid Battle Suit Core Lodestone','Armor','Torso','daca7432-d852-49a7-96eb-1a2f1a7aeb48','','',NULL), -('8908','can_drink_1_pips_c','Cargo','UNDEFINED','144a47f9-30d0-420f-a230-b57007078a54','','',NULL), -('8909','Shoyu Lapsha','Food','Box','c695d42f-20f8-4c31-b130-ab4aefbaef72','','',NULL), -('8910','Dopple','Cargo','Cargo','f3741500-b243-43b3-9976-44c1752ee3fb','','',NULL), -('8911','Deadrig \'Noxious\' Shotgun','Weapon','Medium','01b0f0a7-c064-4ce7-a0ee-0039533ea53d','','',NULL), -('8912','Distilled Spirits','Cargo','Cargo','97a5ae02-be7a-4c34-a8e9-c02611630dae','','',NULL), -('8913','Hephaestanite','Cargo','Cargo','756ea9b2-d13e-4be0-b199-bd0062716b9b','','',NULL), -('8914','Access','SeatAccess','UNDEFINED','9eb0229f-dc92-44f4-86e0-f26e03b0a0f5','','',NULL), -('8915','Smoltz (Bottle)','Drink','Bottle','125e49d1-a42c-469f-ad1a-bf015f6c6fda','','',NULL), -('8916','Agricium','Cargo','Cargo','921fe800-7ae7-4945-82e7-4352d131516b','','',NULL), -('8917','Levski Coin','Misc','Utility','3309ec02-70ed-46a2-857a-01e8300f7857','','',NULL), -('8918','MSD-582 Missile Rack','MissileLauncher','MissileRack','5f655d90-2159-40b9-ba4b-b9efa3ea53b7','','',NULL), -('8919','Zip','Cargo','Cargo','793f5952-8562-4354-9465-ce5a0bb472f0','','',NULL), -('8920','Hawk Frostbite Camo Livery','Paints','UNDEFINED','b69c9c94-042a-473a-8290-dc82801e93c3','','',NULL), -('8921','AEGS_Peregrine_CML_Chaff','WeaponDefensive','CountermeasureLauncher','fed3e170-b201-415d-9cd5-82011effa3c4','','',NULL), -('8922','RangeFinder Jacket Gunmetal','Char_Clothing_Torso_1','UNDEFINED','ae883eec-d5ce-480e-b7e7-2b1e36e66086','','',NULL), -('8923','Mercury Star Runner Skyrider Livery','Paints','UNDEFINED','9d872613-7823-4889-9eb1-41fb5b9f97d3','','',NULL), -('8924','EX-T10-CS \"Executor\" Torpedo','Missile','Torpedo','7c23b548-bf60-42ca-a377-b8afa1a6763c','','',NULL), -('8925','Argo Astronautics T-Shirt','Char_Clothing_Torso_0','UNDEFINED','7c500142-0254-4507-a8ea-0da7f4ed6f61','','',NULL), -('8926','Door Control','ControlPanel','DoorPart','af5f9a51-fb1d-4996-97ee-27221a5625e7','','',NULL), -('8927','Killshot Rifle','Weapon','Medium','c098e722-902a-435b-83f8-a96cec36a012','','',NULL), -('8928','Metis','QuantumDrive','UNDEFINED','8f5a16f2-5a4d-4a7f-b625-94bae1d16506','','',NULL), -('8929','Weapon_Rack_CRUS_Intrepid','Door','UNDEFINED','e5fec8c9-1bf9-46ad-a1ee-88d5e837832b','','',NULL), -('8930','RSI_Scorpius_Thruster_Main_Bottom_Left','MainThruster','FixedThruster','a70e7bd3-68e4-4c09-bb72-9d33e5377573','','',NULL), -('8931','Council Scrip','Currency','UNDEFINED','cea4af31-612e-4d1c-9a03-e358898b5691','','',NULL), -('8932','Seat','SeatAccess','UNDEFINED','f8ec0dc6-10f9-4a19-b814-6e0a394f6490','','',NULL), -('8933','Door','Door','UNDEFINED','5cfe0576-ae03-4eb4-a459-1f7e66af651d','','',NULL), -('8934','Nyman Jacket','Char_Clothing_Torso_1','UNDEFINED','7b829483-6015-43c7-be14-3dffbccc6e54','','',NULL), -('8935','Projector_HUD_Mining_ATLS','Display','UNDEFINED','4e5a5cac-997d-4be0-9c1d-e3f36ed38cf3','','',NULL), -('8936','Razorback Pants Desert','Char_Clothing_Legs','UNDEFINED','56135181-441b-4fc9-be12-5d2a3abe4294','','',NULL), -('8937','Zeta-Prolanide','Cargo','Small','8307759d-b418-49c9-b161-44dec27f2386','','',NULL), -('8938','Medical Bed','Usable','UNDEFINED','a0b08977-46b9-4232-8195-37ed3a7d8dfc','','',NULL), -('8939','Capsulo','Radar','MidRangeRadar','9793a9fd-a521-48be-92fe-86da036b8e2a','','',NULL), -('8940','AAT-34 Turret','Turret','MannedTurret','16d7378f-69ae-4e34-aede-ddc450832939','','',NULL), -('8941','Dashboard','SeatDashboard','UNDEFINED','eba96017-8439-44b1-8c9e-0cfc30ffaa7c','','',NULL), -('8942','Tige','Radar','MidRangeRadar','bd38baac-4671-4e84-afb5-6b79f62dfaec','','',NULL), -('8943','Scorpius Blight Livery','Paints','UNDEFINED','c4313780-46e6-4e3d-92f3-2ff30ccf6658','','',NULL), -('8944','MISC_Hull_C_FoldingStrut_2A','Cargo','UNDEFINED','871fb203-e895-45bb-bce8-2620c0260cac','','',NULL), -('8945','Bokto Legs','Armor','Legs','a3d71588-8963-48a2-841e-26271ebe23dc','','',NULL), -('8946','Carryable_1H_CY_MissionItem_burrito_1_a','Misc','Junk','6dc4aefd-2ec9-401d-9be6-ba67793ac927','','',NULL), -('8947','Cumulus Jacket Brown','Char_Clothing_Torso_1','UNDEFINED','0040add3-7c01-45cf-99c4-66036eb76d86','','',NULL), -('8948','Ermer Family Farms Coffee Ice Cream','Food','Junk','9b0bba60-25e5-4bb1-a31b-cafdbca14271','','',NULL), -('8949','RSI_Aurora_Thruster_Mav_Joint_01','ManneuverThruster','JointThruster','0b31aa44-6cc5-4cec-88da-0f500507c489','','',NULL), -('8950','ORIG_300i_Thruster_Retro','ManneuverThruster','UNDEFINED','555d7904-34e0-45fb-8a4f-e628c70c51b7','','',NULL), -('8951','Tin','Cargo','Cargo','ec46c4c7-d3e6-4030-bfdf-f50b69b87b54','','',NULL), -('8952','HT_DoorPanelScreen_Public','Misc','UNDEFINED','40f3b660-30de-481b-8feb-75a1392f6204','','',NULL), -('8953','Clempt Pants Green','Char_Clothing_Legs','UNDEFINED','5a5053c4-6e28-4ab1-bc07-c00067ff8cc7','','',NULL), -('8954','Carryable_1H_CY_bottle_bar_14_mixer_f','Misc','UNDEFINED','d7727e6a-a36c-46c6-acb6-776387347d44','','',NULL), -('8955','Weapon_Rack_RSI_Meteor_3Slot_Combo_Storage','Usable','UNDEFINED','b9f9c43e-ff37-4665-8670-10d9261b0d42','','',NULL), -('8956','Concept Shirt Yellow','Char_Clothing_Torso_0','UNDEFINED','880dd867-b169-4cc6-8391-774062ad71aa','','',NULL), -('8957','LeMarque Pants Aqua','Char_Clothing_Legs','UNDEFINED','fc9c3112-e2e3-48b0-b9d4-3484fd2dc6ec','','',NULL), -('8958','BEHR_LaserCannon_PowerArray_S3','WeaponAttachment','PowerArray','8ace5adf-9b1a-49d3-8043-026c11fb36c0','','',NULL), -('8959','Weapon_Rack_1_LBCO_Sniper_AmmoOnly_001','Usable','UNDEFINED','7ed427b4-4489-48e9-8ec0-683dc3ae374f','','',NULL), -('8960','Carryable_1H_CY_Utensil_Fork','Misc','UNDEFINED','df053416-827d-4ff7-8717-3c065cb8d81c','','',NULL), -('8961','AEGS_Avenger_Warlock_Thruster_Mav_Joint','ManneuverThruster','JointThruster','d41f7c1e-ed7a-4bc4-9b37-31cbf4ed3dfc','','',NULL), -('8962','Flight Blade','FlightController','UNDEFINED','30e27db6-7e4d-42e6-96e0-51fd1563dcf9','','',NULL), -('8963','Gale Head Cover Brown','Char_Clothing_Hat','UNDEFINED','55b2567d-507b-4e82-9242-45cdf8e4d753','','',NULL), -('8964','col_a_int_door_single_a_lghtgrp','Lightgroup','DoorPart','87198c21-f8d5-40fc-b6de-87fff0d564e9','','',NULL), -('8965','Nox Slipstream Livery','Paints','UNDEFINED','0025926d-1659-44ad-9780-a9538a19a638','','',NULL), -('8966','Remote Turret','Turret','GunTurret','92bfd79f-565d-474d-aa48-7704f2582aab','','',NULL), -('8967','sc_nvy_deckcrew_gloves_01_01_04','Char_Clothing_Hands','UNDEFINED','35cf7ea4-166b-445e-a0c9-ec23f55651e7','','',NULL), -('8968','Quantum Fuel Tank','QuantumFuelTank','QuantumFuel','808bd354-4a0b-47a3-8a86-bf454eec3b44','','',NULL), -('8969','Parallax \"Crusader\" Energy Assault Rifle','Weapon','Medium','a2b14491-b76e-4cb2-bab2-7a0bed66481f','','',NULL), -('8970','Tuna Salad Sandwich','Food','Junk','a0827beb-917d-4071-895c-23a3faae6810','','',NULL), -('8971','Landlite Boots Dark Green','Char_Clothing_Feet','UNDEFINED','0298b3c3-2766-4fec-8fdf-ef1134f318b5','','',NULL), -('8972','Torite (Ore)','Cargo','Cargo','a9ef97e1-855f-4e00-b8f6-034355049bfd','','',NULL), -('8973','Aloprat Skewer','Misc','Consumable','0f768442-4bb0-4b5b-ac59-995a7929c6ee','','',NULL), -('8974','AEGS_Door_Screen_Single_03','Decal','DoorPart','deef02e7-6177-4e71-9ddf-ab833f16f3ee','','',NULL), -('8975','Loudmouth T-Shirt','Char_Clothing_Torso_0','UNDEFINED','7c805d6b-bf0a-4767-a9f8-c5a54a9c9bfc','','',NULL), -('8976','Artimex Legs Starchaser','Armor','Legs','3f31149c-b9cc-4700-9585-f924cda83daf','','',NULL), -('8977','Arden-SL Helmet Rime','Armor','Helmet','3dc34564-55db-4e7c-80c8-0b7c87dae244','','',NULL), -('8978','Arden-SL Helmet Balefire','Armor','Helmet','cadb46d0-7009-4451-a984-6d79c7dd73ae','','',NULL), -('8979','Medical Bed','Usable','UNDEFINED','63630a0c-9dbd-4e0d-8dfa-b89defc43dd2','','',NULL), -('8980','Arden-SL Helmet','Armor','Helmet','35a43d37-67fb-487a-b907-727d3737caf1','','',NULL), -('8981','ForceFlex Undersuit Black/Red','Armor','Undersuit','de20ef22-8c38-4f73-8b62-9c8851c8d1bb','','',NULL), -('8982','Arden-SL Helmet Archangel','Armor','Helmet','7aa4bff2-98be-4cdc-ba87-15560ba4fe44','','',NULL), -('8983','Sledge III Mass Driver Cannon','Weapon','Gun','ccd05b20-4042-4c49-a4c0-4a94f6d841ee','','',NULL), -('8984','Seat','Usable','UNDEFINED','4fbe7240-42fe-415c-b62c-51250c8a0c89','','',NULL), -('8985','Cirrus Boots Red','Char_Clothing_Feet','UNDEFINED','2e1b8cb3-ea8d-44f5-aeff-ed091d392b99','','',NULL), -('8986','Raw Silicon','Cargo','Cargo','16baf251-eff3-44a4-9ac0-4ef06f839f94','','',NULL), -('8987','Pyro RYT \"ArcCorp\" Multi-Tool','Weapon','Gadget','c9c0d8b0-77c4-4e9f-9bb4-64a7a6e81b67','','',NULL), -('8988','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','23eac844-17ab-4de3-bb42-f301a530e228','','',NULL), -('8989','ORIG_600i_Thruster_Mav_Fixed_02','ManneuverThruster','FixedThruster','a1f3cf25-e6d6-4cb7-b2a2-2b97b03d6eaf','','',NULL), -('8990','Stratus Jacket Brown','Char_Clothing_Torso_1','UNDEFINED','539f7797-f5fc-4793-ae35-0142f3522936','','',NULL), -('8991','INTK_MISC_Freelancer_MIS','FuelIntake','Fuel','34bbed44-361b-4ad1-80f7-a526f9f286d7','','',NULL), -('8992','Door Control','Door','UNDEFINED','e8ceac77-9e17-49dd-8be9-afeb5af8e05d','','',NULL), -('8993','Dragonfly Turbocharged Livery','Paints','UNDEFINED','5bf6d083-453e-4c32-9bd3-2fe5c6354dc5','','',NULL), -('8994','Seat','SeatAccess','UNDEFINED','1b00e8f9-46b7-4901-8b6d-a4b4c989b664','','',NULL), -('8995','Amioshi Plague','Cargo','Cargo','526b67da-2ff4-46ef-9886-ab307a737c49','','',NULL), -('8996','Aril Core','Armor','Torso','490501c8-baea-4734-b0a5-62a0cd6bd1d6','','',NULL), -('8997','Table_Booth_2_Seat_ANVL_Paladin','Usable','UNDEFINED','48a2d91d-8cce-4aff-9d28-06ad49718f60','','',NULL), -('8998','Biological Samples','Cargo','Cargo','1bca935f-85f0-493e-bdf1-208a82b0c936','','',NULL), -('8999','Venture Helmet Blue','Armor','Helmet','fffce641-92d3-4973-9e98-65fa38d4196d','','',NULL), -('9000','Weapon_Rack_GRIN_STV_1Slot_Left','Usable','UNDEFINED','6628be04-4884-4bf1-8bdb-63a64fce2262','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('9001','Cobalt','Cargo','Cargo','5c1d6fd8-2719-4434-a2ce-92291656748f','','',NULL), -('9002','ADP Core Olive','Armor','Torso','2d58d6d7-d116-4f26-b62b-3c77c39d027c','','',NULL), -('9003','Turret','Turret','BallTurret','0df7b3c2-70c4-461d-b2fc-d171ea6c0096','','',NULL), -('9004','Door Control','Door','UNDEFINED','ccf9980d-ff79-429b-906e-b17e4652c98c','','',NULL), -('9005','Flight Blade','FlightController','UNDEFINED','761739d0-236f-4efa-b79e-4b494292c931','','',NULL), -('9006','Vehicle_Screen_Physical','Display','UNDEFINED','9a48b047-69d8-44d0-84b0-14246524e5d0','','',NULL), -('9007','G-2 Helmet Executive','Armor','Helmet','2c66dda7-ffab-4f55-9a2d-edc1f25d2ac7','','',NULL), -('9008','DCP Armor Legs New Dawn','Armor','Legs','2e80c1d2-4c78-4b39-8fd8-41682ffae3c0','','',NULL), -('9009','Astatine','Cargo','Cargo','4b285725-7c67-4fba-9a21-8a24e38f6fd3','','',NULL), -('9010','Door','Door','UNDEFINED','b38cc54e-e02e-439d-b714-548954b7b461','','',NULL), -('9011','test_aimodule_unmannedturret','AIModule','UNDEFINED','8767a93d-1315-4eb9-bd40-d102ccb51af7','','',NULL), -('9012','Neograph','Cargo','Cargo','d8137375-c44d-4fbb-ab9b-f3759ad38701','','',NULL), -('9013','Overlord Helmet Polarity','Armor','Helmet','00b299c3-c705-47ed-8f2d-a10651ae7f90','','',NULL), -('9014','Feynmaline','Cargo','Cargo','ff8ce1a3-5b62-4715-b207-7a6efd7167bf','','',NULL), -('9015','SHIELDS','ShieldController','UNDEFINED','1fbc61a6-6ac6-43bc-bf99-8467f063e4da','','',NULL), -('9016','Door Control','ControlPanel','DoorPart','43be2c0c-62df-4150-8fef-7fb340de2601','','',NULL), -('9017','DRAK_Caterpillar_Thruster_Aux','MainThruster','FixedThruster','6d347cd4-2d32-46a5-99e6-1edb133e8eaa','','',NULL), -('9018','Origin Jumpworks 85X Remote Turret','Turret','GunTurret','78c9261b-1f5f-4c2e-9ff8-bb9d7495095a','','',NULL), -('9019','Door Control','ControlPanel','DoorPart','afea1f63-aeda-41a4-8b78-53b0f7b6cee1','','',NULL), -('9020','Carryable_2H_FL_Vlk_Pearl_High_02','Misc','Harvestable','5149168c-a18a-4072-b90d-da683abb54b8','','',NULL), -('9021','Door Control','ControlPanel','DoorPart','2a7c4264-7399-4e45-9a41-f0fbdbb72e78','','',NULL), -('9022','DR Model-XJ1 Repeater','Weapon','Gun','34bc9924-3f20-4bc9-a6cf-81335a0608fe','','',NULL), -('9023','Overlord Legs Skimmer','Armor','Legs','30ff2501-3687-480d-b2fb-ef7f0eaf3d11','','',NULL), -('9024','AEGS_Sabre_Peregrine_Winglet_Left','Misc','UNDEFINED','7d614779-cd62-48cc-8429-19f1c020f78d','','',NULL), -('9025','Banded Fessle','Misc','UNDEFINED','60047bc9-a814-4966-b074-58e46bd0dc0a','','',NULL), -('9026','MedGel','Cargo','Cargo','1d5cad1b-dd92-4344-bcaa-a45789b90445','','',NULL), -('9027','MISC_Freelancer_Thruster_Mav_Joint','ManneuverThruster','JointThruster','a546f61a-a8ad-470d-8605-b5dc1684bbb4','','',NULL), -('9028','Harlowe Shirt Grey','Char_Clothing_Torso_0','UNDEFINED','a2ef9447-44e6-4cba-898d-86ae387ea3ea','','',NULL), -('9029','BEHR_LaserCannon_SF7E_PowerArray_S7','WeaponAttachment','PowerArray','0004adde-8c6e-41b6-b053-49f7be705a81','','',NULL), -('9030','RSI_Apollo_Thruster_Main','MainThruster','FixedThruster','45694e1f-329e-d3a2-6610-a7ec80736aaf','','',NULL), -('9031','Aurora Mk I Pitchfork Livery','Paints','UNDEFINED','ca54d48b-0f43-4662-8199-2bcd4b925e33','','',NULL), -('9032','Weapon_Rack_Powered','Usable','UNDEFINED','6031b781-0daf-498a-9490-6bfe504d44c3','','',NULL), -('9033','Debnam Gloves Dark Red','Char_Clothing_Hands','UNDEFINED','a22fde95-6b3e-44b5-8bb1-ccebe8916ad3','','',NULL), -('9034','Balor HCH Helmet Orange','Armor','Helmet','138c137e-9678-40ed-824e-eafeee5ef410','','',NULL), -('9035','Carryable_2H_FL_crate_weapon_3_075x050x050_a','Misc','UNDEFINED','b154429d-6c86-4d4a-b548-641dd39ea3f4','','',NULL), -('9036','Ardor-3 Salvaged Repeater','Weapon','Gun','47f6c5d4-32f6-4813-9a34-a55d3c2d8aac','','',NULL), -('9037','Deadhead Helmet Windfall','Armor','Helmet','593cd516-d053-470b-a701-cf33ae3fe47e','','',NULL), -('9038','Blue Bilva','Cargo','Cargo','93245080-fa85-4c77-9dbe-7bb89bfc969b','','',NULL), -('9039','SHIELDS','ShieldController','UNDEFINED','4b02f78b-5559-92b3-4774-d9090693b4ac','','',NULL), -('9040','INTK_ARGO_MPUV_1T','FuelIntake','Fuel','04cd0176-4a1f-48e4-a7df-f26cf1a9fbc9','','',NULL), -('9041','Medical Bed','Usable','UNDEFINED','b60c8ff9-9209-47cb-a715-b98a725ed6eb','','',NULL), -('9042','\'WAR\' Cannon','Weapon','Gun','816aa854-7615-4add-a2ca-2d39ada7fea7','','',NULL), -('9043','RSI_Hermes_Thruster_Main','MainThruster','FixedThruster','4d720b5e-469e-e4e2-d405-52c1d7831ebc','','',NULL), -('9044','INTK_ARGO_MOLE','FuelIntake','Fuel','44ca34c8-068f-4df5-8021-49aeea50bf05','','',NULL), -('9045','Pickle','Food','Junk','ba364182-14ed-466e-864b-4ecec98cc06a','','',NULL), -('9046','Tungsten','Cargo','Cargo','b6cae603-6761-4b4a-bf4a-88f772e06aa3','','',NULL), -('9047','Hull C Model Box','Misc','UNDEFINED','173aa575-32bc-4689-b7ef-b868611f922d','','',NULL), -('9048','CF-117 Bulldog Repeater','Weapon','Gun','ba8c9920-9fd0-4253-a349-de32079edce2','','',NULL), -('9049','Inquisitor Legs Olive','Armor','Legs','7be74532-d5a3-46ba-85b5-6865f4bd88fe','','',NULL), -('9050','Li-Tok Boots Tan','Char_Clothing_Feet','UNDEFINED','721a6324-9ccc-4364-ba2f-0af368fd444c','','',NULL), -('9051','Access','SeatAccess','UNDEFINED','7b0f8b23-7108-43a9-8d82-0afc975029ad','','',NULL), -('9052','Personal Storage','Cargo','UNDEFINED','890ef85c-3891-47d8-9eb5-8f1dd65f59b1','','',NULL), -('9053','SHLD_GODI_S04_Bengal_SCItem','Shield','UNDEFINED','ca41d9be-bbcc-450f-ad08-1bb88c957bf8','','',NULL), -('9054','ORC-mkV Core','Armor','Torso','43b3e729-5fb2-4396-a9d7-02b7ab9e6844','','',NULL), -('9055','Methane','Cargo','Cargo','e298687a-f670-416c-a9dc-c3c4640380e2','','',NULL), -('9056','Carryable_TBO_FL_24SCU_Commodity_ProcessedGoods_ProcyonCanister_Quantum','Cargo','Cargo','ea4ad918-f751-4194-ab15-f47a47cec6c4','','',NULL), -('9057','Door Control','ControlPanel','DoorPart','6d74c187-1a27-449c-bd1f-eb75fbcc72a3','','',NULL), -('9058','Seat','Usable','UNDEFINED','bf622c19-89ef-40ce-8bde-b7f6b61c1a8b','','',NULL), -('9059','Cargo_Comm_125x3_Mineral_Corundum_a','Cargo','Cargo','3f6997fd-9bf2-4a4d-8062-7c6eb5fb7dfe','','',NULL), -('9060','Medical Bed','Usable','UNDEFINED','7a2c3281-b1c9-484c-af4c-75d7ec03d341','','',NULL), -('9061','Adiva Jacket Dark Red','Char_Clothing_Torso_1','UNDEFINED','a7af4686-ac14-4b58-8d18-3bd6d2ae6ad2','','',NULL), -('9062','Seat','SeatAccess','UNDEFINED','d9e1b905-d14d-4c99-9dc4-907f3b4237af','','',NULL), -('9063','MASTER_screen_16x9_CounterScreen_a','Display','UNDEFINED','48fba373-0bef-4e6e-b9f8-71c66e5903d3','','',NULL), -('9064','Seat','SeatAccess','UNDEFINED','6042c37e-9f1e-4d6c-a093-89cb5aa47190','','',NULL), -('9065','m_body_kopion_collar','Char_Accessory_Head','Kopion','9b420529-d950-4118-9326-7ce7a9907f00','','',NULL), -('9066','Venture Helmet Aqua','Armor','Helmet','1e100031-060a-4821-a7f6-4d6c0c77e532','','',NULL), -('9067','MXOX_NeutronRepeater_PowerArray_S1','WeaponAttachment','PowerArray','465e16ab-d149-4b68-80e1-e5d557e79860','','',NULL), -('9068','Access','SeatAccess','UNDEFINED','f8c068aa-7053-4d2a-bd9f-5e89be067e57','','',NULL), -('9069','ThermoWeave Breathing Apparatus','Char_Clothing_Backpack','UNDEFINED','a03c4c8e-e555-448a-a916-53c3af014635','','',NULL), -('9070','INTK_RSI_Aurora_LN','FuelIntake','Fuel','f778d382-5eed-423c-8fe7-c27875971870','','',NULL), -('9071','Bexalite','Cargo','Cargo','b5f9f8ae-451d-4197-8081-6ca12f3d7196','','',NULL), -('9072','Venture Helmet Pathfinder','Armor','Helmet','be0e3f90-cbae-4d5f-bd45-d34795d045f0','','',NULL), -('9073','Hornet Corin Camo Livery','Paints','UNDEFINED','45bfc8d0-6aee-4190-9601-13a8bd58b7a5','','',NULL), -('9074','Omnapoxy','Cargo','Cargo','9eda76ab-199e-43ef-b998-610a323d944d','','',NULL), -('9075','ADP Arms Blue','Armor','Arms','0c3a431a-6aa9-4d1e-9deb-fd87b27c2cfa','','',NULL), -('9076','Door Control','Door','UNDEFINED','7cc13095-98dc-4079-8156-f8fb7f34fe83','','',NULL), -('9077','Fieldsbury Dark Bear Helmet Guava','Armor','Helmet','0090e00a-4340-4032-82b8-32def1b39d99','','',NULL), -('9078','Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','1e149814-5120-4f32-86d4-1070d044bef7','','',NULL), -('9079','counter_atc_1_console_02x0075x01','Misc','UNDEFINED','c762e519-fa03-48f9-beff-416aab75cc4e','','',NULL), -('9080','UrbEx Boots Dark Purple','Char_Clothing_Feet','UNDEFINED','7d15dcc0-a97e-428e-8657-c9e8f3cfb3d1','','',NULL), -('9081','FBL-8a Legs Arctic Digital','Armor','Legs','a3d6dd14-85ee-4feb-baeb-e92ca171714c','','',NULL), -('9082','SCItemDisplayScreen_ScreenSize_W60_H34_H69','Display','Default','4b75b06d-65d0-49bd-8f34-8e3730a9e7af','','',NULL), -('9083','Ready-Up Helmet \"Pathfinder\"','Char_Clothing_Hat','UNDEFINED','3d60c9f3-82bf-4e79-bf62-09fd1ddc5187','','',NULL), -('9084','Cyclone Overdrive Livery','Paints','UNDEFINED','0527239e-9cb0-4431-9542-d1a167ef0c74','','',NULL), -('9085','Luminalia Gift Box','Container','Box','f9a755a1-5be3-49b7-b90e-a65c32ca0c99','','',NULL), -('9086','MISC_Razor_EX_Thruster_Main','MainThruster','FixedThruster','16053395-9275-43ab-9da5-b07155461979','','',NULL), -('9087','MISSILES','MissileController','UNDEFINED','1f1314e0-2ee9-4545-9394-c64220c0b489','','',NULL), -('9088','Radford Shirt','Char_Clothing_Torso_0','UNDEFINED','525403b8-7811-4b8f-8ee9-c6e4a093090f','','',NULL), -('9089','Radford Shirt Dark Blue','Char_Clothing_Torso_0','UNDEFINED','50c0b216-ffa6-463b-a815-a8e6a92a1b6b','','',NULL), -('9090','Citadel Legs Outcrop','Armor','Legs','e462b0cc-4f15-4926-9d58-4988a773b39c','','',NULL), -('9091','Radford Shirt Light Blue','Char_Clothing_Torso_0','UNDEFINED','188f0e43-18ab-4092-b64b-0196b5ea1a91','','',NULL), -('9092','Hair Care Product','Misc','UNDEFINED','8d6d6381-7a65-4df7-bf6e-3a06a86b4700','','',NULL), -('9093','EQ-B Pants','Char_Clothing_Legs','UNDEFINED','dcc62706-c387-43b3-a8cf-83fbe36bbe9c','','',NULL), -('9094','Aluminum (Ore)','Cargo','Cargo','bc3d345b-f09d-4764-8260-c74a6d63f9a7','','',NULL), -('9095','ARGO_MPUV_1T_Thruster_Main','MainThruster','FixedThruster','04660fad-c962-4091-b7d1-823adeb3da0d','','',NULL), -('9096','RCMBNT-PWL-2','InventoryContainer','Cargo','ea2cddb5-2c04-4e0c-9fa2-76a4748c9398','','',NULL), -('9097','Railing_CornerBevel_Out_4m_Lowtech_Open','Usable','UNDEFINED','0e9bdd01-bfad-41a3-b9d8-7ac4f2487952','','',NULL), -('9098','sw_heavy_environment_helmet','Armor','Helmet','9e544772-a0fb-4b5a-8b2a-69e8b8927d80','','',NULL), -('9099','RSI_Apollo_OC_Right_Tier_2','Room','UNDEFINED','4622afc9-be96-0a04-2c0d-d9df013d26ba','','',NULL), -('9100','ARGO_ATLS_IKTI_Backpack','Usable','UNDEFINED','f996eda3-731d-4d00-a333-5b9913e4de9b','','',NULL), -('9101','Pite','Char_Head_Piercings','UNDEFINED','1fc1a0f3-4d8f-4140-b824-4de146623c9e','','',NULL), -('9102','Hydrogen','Cargo','Cargo','a37e04a1-3960-41b0-80f5-2f29dc525c1e','','',NULL), -('9103','AAT-34 Turret','Turret','MannedTurret','b4b5e78b-aac5-462f-aa7e-e98e95197833','','',NULL), -('9104','Aurora Mk II TS Module','Module','UNDEFINED','be11b23a-38a3-4045-bb61-4effe23faedf','','',NULL), -('9105','Seat','SeatAccess','UNDEFINED','e4c126fe-eb66-46ff-abbf-ec94ae54812a','','',NULL), -('9106','Arrow Nightbreak Livery','Paints','UNDEFINED','47f9208e-e70f-486a-85c0-54dd0b3c8e0a','','',NULL), -('9107','Seat','Usable','UNDEFINED','3f81865f-ea6b-455f-9993-41cc0073c5d1','','',NULL), -('9108','Manned Turret','TurretBase','MannedTurret','d9cfc86b-2082-46ac-aeb2-e4da60f62832','','',NULL), -('9109','Foundation Pants Grey','Char_Clothing_Legs','UNDEFINED','217f7a33-6635-4006-be06-f1ecf238946c','','',NULL), -('9110','ATLS Monsoon Livery','Paints','UNDEFINED','124de29d-3da8-4571-8873-860f6aa8894e','','',NULL), -('9111','Debnam Gloves Black','Char_Clothing_Hands','UNDEFINED','257b1282-0d72-4795-8f32-fe05a8fd7f4a','','',NULL), -('9112','Balor HCH Helmet Dark Red','Armor','Helmet','aadb0b21-366b-41e5-94ad-3727235c2b36','','',NULL), -('9113','PU_MISSION_Outpost_PowerPlant','Cargo','Small','1abec48e-f1bc-4377-b37e-cfc31ec6758e','','',NULL), -('9114','Door','Door','UNDEFINED','4322ad7f-7a77-40d7-bf7e-8daa09a151b8','','',NULL), -('9115','Freelancer Hurston Livery','Paints','UNDEFINED','99044471-d444-4f4a-9908-a8c425f4d54f','','',NULL), -('9116','Anvil Hornet F7C Nose Turret','Turret','CanardTurret','d342658d-9562-4b07-aa26-7a47b6ed6fd3','','',NULL), -('9117','Seat','SeatAccess','UNDEFINED','c569cb0f-ce10-49e1-8a7b-65f31719f05f','','',NULL), -('9118','AImodule_ATC_LorvilleATC01','AIModule','UNDEFINED','c1e62a5b-15b3-4b26-914a-a37e06408cd6','','',NULL), -('9119','S71 \"Hemlock Camo\" Rifle','Weapon','Medium','af6792f4-06f7-4c94-bc72-878b7d77189b','','',NULL), -('9120','Door Control','Door','UNDEFINED','042af386-eb1b-4c3a-8182-935a78dc502b','','',NULL), -('9121','Seat','Usable','UNDEFINED','0834c550-4196-4951-834d-9203f96c2105','','',NULL), -('9122','Chada Collar and Panniers Shale','Char_Clothing_Torso_1','UNDEFINED','13b52b98-c02e-4be3-9e3e-1427c5bb479b','','',NULL), -('9123','Door','Door','UNDEFINED','cbb508ad-51e5-4e65-8a1c-b8dd2f85e9b7','','',NULL), -('9124','Inquisitor Legs White','Armor','Legs','5c2499c9-4158-4feb-9b87-ace0e2769f99','','',NULL), -('9125','ARMR_GAMA_Syulen','Armor','Medium','091dbb9d-10e0-4c60-8b81-bdadcaf00880','','',NULL), -('9126','Food_burger_01_a','Food','Junk','1eef232f-ab0c-40f1-aa44-c9f5b6f0e618','','',NULL), -('9127','ORIG_890_Jump_Thruster_Mav_TRL','ManneuverThruster','FixedThruster','f3cb6e8d-b515-48e0-8c4a-001861989056','','',NULL), -('9128','Ht_AirlockDoorPanelScreen','Misc','UNDEFINED','6b1cbd67-0d94-45d8-834b-f11ad80fec52','','',NULL), -('9129','Door','Door','UNDEFINED','1c5c4ae9-cd7a-4c4c-aa81-3462618aa45f','','',NULL), -('9130','Bed','Seat','UNDEFINED','c0203b17-6c2b-41a6-98c3-be391f9619db','','',NULL), -('9131','Ventra Gloves Olive','Char_Clothing_Hands','UNDEFINED','0d46bcd1-94f0-4685-9cfa-47a115ef7ea1','','',NULL), -('9132','OMNI-AFS-Sapphire Helmet Slate','Armor','Helmet','750044d5-4c9a-4d29-bf64-35a3b6de20c9','','',NULL), -('9133','ORC-mkV Core Red','Armor','Torso','0368d9db-58d5-48ea-8a1b-5d646c4ad66a','','',NULL), -('9134','sc_nvy_pilot_light_helmet_01_01_fleetweek','Armor','Helmet','09061339-10ef-4c90-8622-97e3f6480c66','','',NULL), -('9135','Pulverizer LMG Magazine (120 Cap)','WeaponAttachment','Magazine','b4df80a2-7aa6-412c-b1ff-67467bcf43ec','','',NULL), -('9136','Internal Tank','FuelTank','Fuel','8d2a2f03-ce3b-42d6-b48a-97ee983027ad','','',NULL), -('9137','Zeus Coin','Misc','Utility','da18492c-a6bf-4f76-a23a-c76ab92a339f','','',NULL), -('9138','ORC-mkV Legs Tan','Armor','Legs','a3509d0d-e42f-42aa-a3c3-b1e186e58821','','',NULL), -('9139','IAE 2951 Hat White','Char_Clothing_Hat','UNDEFINED','61877a59-553f-495e-84a2-9655bcdd5a46','','',NULL), -('9140','CRUS_Spirit_Thruster_Retro','ManneuverThruster','UNDEFINED','b1dc12b1-3690-4350-8f52-d57d1aaacf4a','','',NULL), -('9141','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','91a350f7-f031-48d6-a20c-38934d84a288','','',NULL), -('9142','ARGO_MPUV_Lights','Room','UNDEFINED','e21b90f9-caca-44e5-b950-628c1e3315d0','','',NULL), -('9143','Controller_Salvage_ARGO_MOTH_FrontCab','SalvageController','UNDEFINED','c492c204-b7fa-4489-8db7-f5f1b6e8fdac','','',NULL), -('9144','Revenant Tree Pollen','Cargo','Cargo','5d6179ac-c167-4558-b54f-26a650628d78','','',NULL), -('9145','Inquisitor Core Tan','Armor','Torso','20cf959a-e66d-41c1-8140-6cba12459fa5','','',NULL), -('9146','Ati Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','dc1b64f4-819c-4b90-adb0-92ee5ab601ec','','',NULL), -('9147','E\'tam','Cargo','Cargo','52e16dee-1010-44a6-88bd-5bce8f3e12e7','','',NULL), -('9148','DynaFlex','Cargo','Cargo','a6a89f84-dfc6-4bd3-bbfc-a654b73f8bc2','','',NULL), -('9149','Grin_Rear_Module','Door','UNDEFINED','6191f4c3-1c1a-4fce-8ac9-fc7189157e9a','','',NULL), -('9150','Seat','Usable','UNDEFINED','07daf792-e09a-48e5-8c30-979a9a487df2','','',NULL), -('9151','Citadel Legs Earthwork','Armor','Legs','77e6c484-ffb7-45e4-934a-cac4f762b48d','','',NULL), -('9152','Calister Jacket Westar','Char_Clothing_Torso_1','UNDEFINED','d9ab1663-805a-433c-b6c2-a4223ecba75d','','',NULL), -('9153','Seat','SeatAccess','UNDEFINED','e64c3b78-c0e1-4241-b4b6-758bdef0dc0c','','',NULL), -('9154','SureGrip HV-S3 Tractor Beam','SalvageHead','UNDEFINED','3fb9a8c1-adee-4ace-a90c-17d4340c2b67','','',NULL), -('9155','Access','SeatAccess','UNDEFINED','ca76f1a1-e2c5-4f73-955f-b4fd373bc989','','',NULL), -('9156','fruit_tray_2_c','Misc','UNDEFINED','91117325-a0c7-49c5-8e2d-58cb8d0b50e8','','',NULL), -('9157','Threshold Copperhead Pants','Char_Clothing_Legs','UNDEFINED','9f371afa-ec9f-40d9-a03e-f6efad04a7a9','','',NULL), -('9158','CNOU_Mustang_Beta_Thruster_Mav_Fixed_01_Down','ManneuverThruster','FixedThruster','fe18f9a7-0679-4802-b559-066e51a6490d','','',NULL), -('9159','Geist Armor Core Whiteout','Armor','Torso','57423ca0-cb0b-4572-bca0-bec8eb8349eb','','',NULL), -('9160','Ammonia','Cargo','Cargo','68c9d067-2496-4716-a11d-01ecb7e06a4b','','',NULL), -('9161','Weapon_Rack_Cz_Firerat_009','Usable','UNDEFINED','0ebb859a-f999-42d2-8d27-7bda326fea3c','','',NULL), -('9162','Marksman I Missile','Missile','Missile','37a5512d-e5c2-4b41-869d-44cd91d80eeb','','',NULL), -('9163','Hammerhead Ship Armor','Armor','Medium','33190167-101c-4693-b21a-b9b4b6bcaa18','','',NULL), -('9164','ESPR_Prowler_Component_Housing_Small','Player','UNDEFINED','fccaf1b6-0685-4dd8-afa0-337eef6956c2','','',NULL), -('9165','UI_EnvironmentScreen_Phoenix_ElevatorPanel_Bottom','StatusScreen','AirlockPart','37a231ea-652a-4e5e-80f7-c413ddeb61c2','','',NULL), -('9166','Molina Mold Treatment','Cargo','Cargo','c550cc01-9191-4276-8a0b-b421d30094c7','','',NULL), -('9167','Messhall_Food_Dispenser','Misc','UNDEFINED','46c62626-b513-48f7-ae92-9f7e6f84c143','','',NULL), -('9168','Internal Tank','FuelTank','Fuel','2fb90572-7f62-4bab-a366-45e9696a9a9b','','',NULL), -('9169','DockingTube_Fuel_Ports_CNOU_Nomad','DockingCollar','UNDEFINED','4e418849-c8b6-4f92-8a1b-9f75090a26da','','',NULL), -('9170','CNOU_Nomad_Thruster_Retro_Right','ManneuverThruster','FixedThruster','55d2fa41-e20d-409c-8f90-a2bd94e22994','','',NULL), -('9171','ORC-mkV Core Orange','Armor','Torso','87bf8c56-c86a-4732-b6b0-51783d174a8c','','',NULL), -('9172','Laranite (Raw)','Cargo','Cargo','c83acb09-a938-44a8-8dea-8c2b87407593','','',NULL), -('9173','Ready-Up Helmet Olive','Char_Clothing_Hat','UNDEFINED','5b8781c1-3722-4e09-b1f2-24cb4639383b','','',NULL), -('9174','Door Control','Door','UNDEFINED','abf90391-2cb2-4b1c-9ff9-78e33ce6fd81','','',NULL), -('9175','Ketchum Beanie Sienna','Char_Clothing_Hat','UNDEFINED','b62eedeb-b03e-4a76-b115-a40dd33b2c59','','',NULL), -('9176','Door Control','Door','UNDEFINED','dd47b13e-db71-4058-9061-4efc4721db85','','',NULL), -('9177','TMBL_Cyclone_CargoGrid_Main','CargoGrid','UNDEFINED','a65b8b6a-127a-476e-96d4-c438f2e1da07','','',NULL), -('9178','MISC Freelancer MIS Missile Launcher','MissileLauncher','MissileRack','a89a4b15-3e5a-4338-865f-4647d6d23188','','',NULL), -('9179','Hull C Miniature','Misc','UNDEFINED','48e43ad5-a9a8-4b29-b5f0-3656e2ec6f41','','',NULL), -('9180','Gadget_Cabinet_kegr_fire_extinguisher_NG_Flipped','Usable','UNDEFINED','3d1b7e85-4bee-44a4-a602-2237dc1a2a94','','',NULL), -('9181','Morningstar Helmet Yellow','Armor','Helmet','ff595abb-14b6-420e-bc59-fea001e59f72','','',NULL), -('9182','Seat','Usable','UNDEFINED','0205929c-0b77-4d0d-9885-584a385a7459','','',NULL), -('9183','Gilick Boots Black / Dark Blue','Char_Clothing_Feet','UNDEFINED','125e9b76-2996-454d-86b8-a91062462d41','','',NULL), -('9184','util_pyro_bulkhead_lrg_airlock_lghtgrp','Lightgroup','AirlockPart','c4500bb8-554d-4f2d-b5e7-2fe93835794d','','',NULL), -('9185','ORC-mkV Legs Black','Armor','Legs','d83b35bf-d498-4c13-bac8-b3d81ecabf0a','','',NULL), -('9186','Seat','SeatAccess','UNDEFINED','a2f20983-c624-47ef-99f0-43e71797c056','','',NULL), -('9187','Reaper V-G Missile','Missile','GroundVehicleMissile','a5ea02e9-fb08-498e-9598-55224dfa4b9c','','',NULL), -('9188','Tulsi Jacket Redwood','Char_Clothing_Torso_1','UNDEFINED','9e463af3-c1ed-48af-8827-357bb52997e6','','',NULL), -('9189','INTK_DRAK_Cutter','FuelIntake','Fuel','de7a70c9-e105-4304-aa7c-9d459b439a88','','',NULL), -('9190','Pembroke Backpack RSI Edition (Modified)','Armor','Backpack','38ec64d5-e99f-447b-899f-cb5392b3a236','','',NULL), -('9191','Ati Jacket Seagreen','Char_Clothing_Torso_1','UNDEFINED','d7091a0b-a443-4424-8c29-1a5615b35abb','','',NULL), -('9192','Osoian Hides','Cargo','Cargo','2c97c1e9-62a2-4478-bb80-a81b75d3bb4a','','',NULL), -('9193','Hardy Boots','Char_Clothing_Feet','UNDEFINED','5825831c-7158-4300-81da-6520e384bd06','','',NULL), -('9194','Coramor \'54 Coin','Misc','Utility','8f5f5980-f254-4904-b2d6-be203a91e870','','',NULL), -('9195','Aluminum (Ore)','Cargo','Cargo','2aa412d1-edb0-4092-a57d-247c413ca485','','',NULL), -('9196','Carryable_1H_CY_tool_allenkey_1_a','Misc','UNDEFINED','4ed24698-6933-46cb-96fb-4e258d1256af','','',NULL), -('9197','PSX Pistol Case','Misc','UNDEFINED','1bb7e9ae-182a-45a1-a39b-145cdc34b66f','','',NULL), -('9198','Seat','SeatAccess','UNDEFINED','ba980fd3-9b58-4d14-85cb-763102cdd82b','','',NULL), -('9199','Methane','Cargo','Cargo','8c4b1b1d-f326-4101-b0d5-23aee46657b5','','',NULL), -('9200','Odyssey II Helmet Obsidian','Armor','Helmet','9e4d6d1d-e19d-4bfb-9f2b-cded75235acd','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('9201','Prospector Polar Livery','Paints','UNDEFINED','521005cf-8a0c-41ea-ae2a-5894e3636aae','','',NULL), -('9202','RD-1 Jaeger (1x Red Dot)','WeaponAttachment','IronSight','b886d522-04ca-493e-9373-daa8a4f8066e','','',NULL), -('9203','TRGT. STATUS','Seat','UNDEFINED','b698de2d-5d19-470d-a7e4-9ac492594b16','','',NULL), -('9204','Inquisitor Core Imperial','Armor','Torso','485a2685-0e3c-4840-89d1-84c3432517a4','','',NULL), -('9205','Taranite','Cargo','Cargo','b449f80b-51d7-4e0f-94f4-e61bb9f2f6a6','','',NULL), -('9206','Cutlass Saurian Livery','Paints','UNDEFINED','be30eb09-9de0-4806-a491-68d74e22633a','','',NULL), -('9207','RS1 Odysey Spacesuits','Cargo','Cargo','864432a2-8b06-42a6-afc4-17225948bb22','','',NULL), -('9208','INTK_GLSN_Shiv','FuelIntake','Fuel','ce95a43d-5ca5-402d-a1be-f9db43f2a644','','',NULL), -('9209','Weapon Rack','Usable','UNDEFINED','cfc27314-3771-4b09-8ffc-d31103293091','','',NULL), -('9210','XNAA_SanTokYai_Thruster_Mav_Main','ManneuverThruster','FlexThruster','0026f271-fbd7-48ec-8dd7-e7eb51abdb62','','',NULL), -('9211','Cerrado Boots Wood','Char_Clothing_Feet','UNDEFINED','93436f11-e667-4f23-96c8-77f0f72a1017','','',NULL), -('9212','Construction Salvage','Cargo','Cargo','2ce8aed9-0123-4e2a-85c4-faa306b069f8','','',NULL), -('9213','Parallax \"GCD-Army\" Rifle','Weapon','Medium','b6dd5e0a-202c-4385-88f7-284583cd6528','','',NULL), -('9214','Venture Undersuit Pink/Black','Armor','Undersuit','064c7e7a-f71a-43db-b820-425a1f24ba1e','','',NULL), -('9215','Katla Mask Green','Char_Clothing_Hat','UNDEFINED','cd0972ef-156d-4be6-9037-d8ded9810855','','',NULL), -('9216','GammaMax','PowerPlant','Power','7efda460-54a9-4447-b74d-eaa25ea882cb','','',NULL), -('9217','Overlord Helmet Flashback','Armor','Helmet','534a5a20-5121-404e-9209-f63d12d515bb','','',NULL), -('9218','WeaponMount_Gun_S1_MISC_Starlancer_TAC_Left','WeaponMount','WeaponControl','92b15834-7f2b-4cdd-aec0-c6bee54f1131','','',NULL), -('9219','Seat','Usable','UNDEFINED','56392f6a-2bf0-41a9-933b-55d59dd4bdf7','','',NULL), -('9220','Door Control','ControlPanel','DoorPart','ec98efd0-c376-4f8a-a2fb-55a74164f04a','','',NULL), -('9221','H_Dashboard_Projector_HUD_DRAK_Corsair','Display','UNDEFINED','6063142d-8c90-40d5-a70d-3e5d1b2046c9','','',NULL), -('9222','ORC-mkV Legs Twilight','Armor','Legs','351dfd89-9884-4489-8600-30a9208a74ed','','',NULL), -('9223','Mug','Drink','UNDEFINED','40e4cfd1-bf80-419e-afcb-422820c8e040','','',NULL), -('9224','Carnifex Armor Legs Brassy','Armor','Legs','00126e44-fac3-45a6-b2c4-9bc584e1d0ef','','',NULL), -('9225','ControlPanel_LightSwitch_ANVL','ControlPanel','DoorPart','99c123b6-3fd2-41e7-81ff-6f85e9158935','','',NULL), -('9226','Vestal Water','Drink','Bottle','6d38f57a-deab-4449-8ead-3ec476811eb2','','',NULL), -('9227','Devastator \"Midnight\" Shotgun','Weapon','Medium','9752372c-6e3f-46f5-9cd8-6d3c64561097','','',NULL), -('9228','Station','SeatAccess','UNDEFINED','1889c04b-ee62-4d1d-ace0-5de9aeac3234','','',NULL), -('9229','Stratus Pants Teal','Char_Clothing_Legs','UNDEFINED','5259937d-54bf-454c-9fa5-44ff6bddaeb8','','',NULL), -('9230','Lycara','Cargo','Cargo','17a5663d-3cf9-49a2-92af-2db274ea1eb8','','',NULL), -('9231','SHIELDS','ShieldController','UNDEFINED','626f4698-0935-40ba-b05a-db638f81199a','','',NULL), -('9232','INTK_ANVL_Carrack','FuelIntake','Fuel','b494b197-5525-4317-9ff7-969b246ae94e','','',NULL), -('9233','Door Control','Door','UNDEFINED','50bd54d7-4258-4ac2-90f5-bc821756fe6a','','',NULL), -('9234','Odyssey II Helmet Green','Armor','Helmet','7f7c93da-3b89-45f0-9f46-48af149a3668','','',NULL), -('9235','MISC_Starfarer_Thruster_Retro','ManneuverThruster','FixedThruster','cae171b3-d2e4-4c51-975c-89b2c29c682f','','',NULL), -('9236','Aegis Eclipse - Noise Launcher','WeaponDefensive','CountermeasureLauncher','ed61e07d-9582-4b04-9304-7fc5aed33e0a','','',NULL), -('9237','Zeus Hurston Livery','Paints','UNDEFINED','09cfd63f-25e8-46cb-ba5f-843faf4f1c33','','',NULL), -('9238','ANVL_Carrack_Thruster_Main_Small','MainThruster','FixedThruster','f82646a8-8eb7-4b2a-a1ad-0225972117ac','','',NULL), -('9239','Seat','Usable','UNDEFINED','68c4b4bd-ce65-4cdf-8cbc-2c5dae9ccd9a','','',NULL), -('9240','Skellig Pants Silver','Char_Clothing_Legs','UNDEFINED','dd41b53e-03fa-4084-ae19-d17b045dacdc','','',NULL), -('9241','Adroit Gloves Sage','Char_Clothing_Hands','UNDEFINED','32d430f2-8135-491f-9b8c-1a4344269e4c','','',NULL), -('9242','Counter_Bottle_Pickup','Misc','UNDEFINED','69aadf97-dec6-465a-9b27-664697949354','','',NULL), -('9243','TRGT. STATUS','Seat','UNDEFINED','5856dfa0-ad96-44d9-ba7b-fe78386a04eb','','',NULL), -('9244','Distilled Spirits','Cargo','Cargo','003aeb5a-acfe-4202-8a31-b2d567e479d6','','',NULL), -('9245','Idris Commando Camo Livery','Paints','UNDEFINED','704a0768-3c0d-4751-80ba-139afe695ac9','','',NULL), -('9246','Soap','Misc','UNDEFINED','28d6c557-0732-4471-b6e0-c145c972aec3','','',NULL), -('9247','Door Control','Door','UNDEFINED','5959fabe-0575-4133-a796-982f1534337c','','',NULL), -('9248','sandwich_triangle_1_box_shop_1x3_a','ShopDisplay','Default','29f86e74-daf3-49c7-8bf4-c279bf78a847','','',NULL), -('9249','Gallant \"Boneyard\" Rifle','Weapon','Medium','35bbb045-3b35-47a9-a603-42cce6a804b4','','',NULL), -('9250','Aloprat Skewer','Food','Consumable','40e197c6-707b-4d71-9d70-0bfaf46933a9','','',NULL), -('9251','Manned Turret','TurretBase','MannedTurret','c283366e-e76a-4127-90d1-ee80cd296c37','','',NULL), -('9252','Roughneck Pants','Char_Clothing_Legs','UNDEFINED','53dd1aa3-74c4-487f-90ba-7c2c8eeb6abb','','',NULL), -('9253','MissileRack_Small','Usable','UNDEFINED','e043b692-f5e6-4fe4-b4b2-60d5b44ab219','','',NULL), -('9254','ANVL_Terrapin_Thruster_Main_Medic','MainThruster','FixedThruster','781e7986-a7cb-4e5e-baeb-cb52b8485736','','',NULL), -('9255','AEGS_Javelin_CargoGrid_M','CargoGrid','UNDEFINED','a095d119-b667-4dda-a04e-5972e85684df','','',NULL), -('9256','Seat','Usable','UNDEFINED','df8b81f8-1c2f-4f17-b349-266b11bcd41a','','',NULL), -('9257','Auditor Shirt Covalex Edition','Char_Clothing_Torso_1','UNDEFINED','0d515e89-55bc-4e42-a103-cf11e9c5962c','','',NULL), -('9258','Bed_ORIG_600i_Crew_D','Usable','UNDEFINED','f0c09148-1922-4b43-99c8-150d126b582f','','',NULL), -('9259','Weapon_Rack_ANVL_Paladin_5_Slot','Usable','UNDEFINED','ae13d73a-f425-458f-be34-39294e06282e','','',NULL), -('9260','Manned Turret','TurretBase','MannedTurret','5df90b86-bfdd-40ec-8041-88de76a04434','','',NULL), -('9261','Zip','Cargo','Cargo','791532d4-169e-4eee-a7b3-ad5a0e5818b5','','',NULL), -('9262','Bed','Seat','UNDEFINED','aece4fb0-b83e-437a-b0f5-8e1c84e0403f','','',NULL), -('9263','RSI_Polaris_rec_table','Usable','UNDEFINED','cfd9171c-9fe7-47db-a6d7-dc494c5a6aae','','',NULL), -('9264','ANVL_Terrapin_Thruster_Retro_Medic','ManneuverThruster','FixedThruster','681f75b2-5bd3-4424-ba6c-792a5fe6e34d','','',NULL), -('9265','Weapon Rack','Usable','UNDEFINED','58f7194c-b042-407b-87ed-8da98f2c5679','','',NULL), -('9266','HRST_LaserRepeater_PowerArray_S2','WeaponAttachment','PowerArray','851c418c-daef-4a75-8075-355dc5ec102a','','',NULL), -('9267','Internal Tank','FuelTank','Fuel','ecc91543-dd12-458c-bf28-b893cba1e316','','',NULL), -('9268','Nova Gunmetal Livery','Paints','UNDEFINED','d12dcd64-aaf5-485b-bda6-92ac337740a8','','',NULL), -('9269','Human Food Bars','Cargo','Cargo','53b36fcd-3b37-4056-8d9e-b9b63869c3a2','','',NULL), -('9270','Seat','SeatAccess','UNDEFINED','4c192a7f-b6a5-40dc-8338-0e41c70ce232','','',NULL), -('9271','f_human_mannequin_deckcrew_light','ShopDisplay','UNDEFINED','ae0cfb81-b2fa-4510-b78e-76149318bdac','','',NULL), -('9272','Weapon Rack','Usable','UNDEFINED','5214952d-2174-45a2-a6e0-365e38f7ef69','','',NULL), -('9273','Amaris Shirt Falstaff','Char_Clothing_Torso_0','UNDEFINED','9573db27-601e-4c9e-8c94-f56929773a85','','',NULL), -('9274','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','27b8828e-9376-4967-ab94-81bf8417f11d','','',NULL), -('9275','Recycled Material Composite','Cargo','Cargo','be014428-d35c-4f27-9660-250b5d485966','','',NULL), -('9276','Radar_Display_Screen_BG','Display','UNDEFINED','96a3dcbf-7146-4c3c-b7fd-7aa2d9636e3c','','',NULL), -('9277','AImodule_Cargo','AIModule','UNDEFINED','dc4d827c-5c7c-4582-886b-6b6833d85bf0','','',NULL), -('9278','Selby Jacket Black','Char_Clothing_Torso_1','UNDEFINED','34f855f7-5055-4853-aa09-769390bfcf05','','',NULL), -('9279','Citadel Arms Outcrop','Armor','Arms','6c139104-ea89-41cb-8347-0922e6ed7bec','','',NULL), -('9280','CRUS_Spirit_RADR_Display','Display','UNDEFINED','6700c856-16b2-44ee-8c00-47793bda4922','','',NULL), -('9281','Seat','SeatAccess','UNDEFINED','8f00c5af-723f-4d55-bae6-d4b8081bd107','','',NULL), -('9282','lt_crate_dry_1_0125x0125x0125_a','Cargo','UNDEFINED','7c322326-ad2b-4171-8c04-9a571caa093f','','',NULL), -('9283','utensil_tray_1_food_a_stacked','Misc','UNDEFINED','283ad519-967b-4050-9a28-e2cc5dbf5ab8','','',NULL), -('9284','Stash','Misc','UNDEFINED','734a71b5-5c4a-48df-bfe7-0fe03cb9fa68','','',NULL), -('9285','Morozov-SH Arms Terrene','Armor','Arms','85c7536f-7625-40bc-9ce5-f87e971fb088','','',NULL), -('9286','Lynx Arms Orange','Armor','Arms','ae3019a1-4f0f-4a41-8451-8b6b84c632e8','','',NULL), -('9287','P8-SC \"Boneyard\" SMG','Weapon','Medium','a52fb950-f3e6-4353-accf-ccb4324a07dd','','',NULL), -('9288','Venator Boots Grime Blue','Char_Clothing_Feet','UNDEFINED','76c84396-c1e8-4ac7-b4d7-6dbeb8d2ca2d','','',NULL), -('9289','Torite','Cargo','Cargo','fe9bd2da-3c57-46c3-a73f-6ce01fce9516','','',NULL), -('9290','ANVL_Pisces_C8R_Dashboard_Pilot','SeatDashboard','UNDEFINED','0ab675af-a089-48f9-8bd3-d28b4e82134d','','',NULL), -('9291','Ati Jacket Twilight','Char_Clothing_Torso_1','UNDEFINED','63b9b570-863e-4cda-aeda-a8ff2e579f92','','',NULL), -('9292','Utensil_Plate_Steak','Misc','UNDEFINED','705bee28-5632-4dd0-a660-f00817e3952f','','',NULL), -('9293','5SA \'Rhada\'','Shield','UNDEFINED','9d309719-800c-4d42-946e-fa6c240bc2df','','',NULL), -('9294','Custodian \"CitizenCon 2947\" SMG','Weapon','Medium','4fd568b4-8e53-48f9-bb74-bfee408909dd','','',NULL), -('9295','GUARD','Shield','UNDEFINED','87710dba-dd06-41b4-974e-475ee7d36055','','',NULL), -('9296','DockingTube_Fuel_Ports_RSI_Polaris','DockingCollar','UNDEFINED','6c60998d-eac4-4f31-b4c3-3ac2878a6e27','','',NULL), -('9297','Vacuums Kill T-Shirt','Char_Clothing_Torso_0','UNDEFINED','8d29adb6-6998-4c92-b67f-8911fac9742e','','',NULL), -('9298','Deo Shirt Sienna','Char_Clothing_Torso_0','UNDEFINED','7da72e2d-9fc1-4514-a0e6-54d66aee83f5','','',NULL), -('9299','Railing_Straight_4m_Lowtech_Open','Usable','UNDEFINED','4fa0246b-ccdf-48dc-969f-36a4673447af','','',NULL), -('9300','Internal Tank','FuelTank','Fuel','e88281d2-def8-4137-be27-5e9caaef6bc7','','',NULL), -('9301','Counter_Shop_Casaba','Usable','UNDEFINED','53f3ecff-e2ec-4411-abf1-5319efb0025c','','',NULL), -('9302','Carryable_1H_CY_weight_dumbbell_1_3kg_c','Misc','UNDEFINED','0918bc81-39a2-44e8-9727-34bd9a66252f','','',NULL), -('9303','ESPR_BallisticCannon_PowerArray_S2','WeaponAttachment','PowerArray','d8a9ff5f-555f-4245-b08a-2e8597d3c396','','',NULL), -('9304','MSD-322 Missile Rack','MissileLauncher','MissileRack','27b1b667-7374-4f05-8a47-9386d14108b3','','',NULL), -('9305','Jumping Limes','Cargo','Cargo','10398945-6f3a-47e9-a13f-da323bce9a5d','','',NULL), -('9306','Door_ChipReader_Level_2','Door','UNDEFINED','a4ff74dd-d03c-4c00-a8bf-1ab5b7da3751','','',NULL), -('9307','Bed','Usable','UNDEFINED','e49573ca-3fd4-4ea9-9faa-2a3029a51641','','',NULL), -('9308','Avenger Stalker Standard Flight Blade','FlightController','UNDEFINED','0306a3b9-f4d7-482a-a1ad-81542331067f','','',NULL), -('9309','H_Dashboard_Projector_HUD_RSI_Zeus','Display','UNDEFINED','ad990b37-b69a-4aeb-9b7f-2f86d9e2cd2d','','',NULL), -('9310','Aurora Mk I Green and Gold Livery','Paints','UNDEFINED','69cd6d0b-3e05-4253-90ac-877046de882b','','',NULL), -('9311','satellite_power_plant_test','PowerPlant','Power','d3f6c888-60a6-4b3f-abf0-d6ccae0d0d8b','','',NULL), -('9312','Remote Turret','Turret','GunTurret','09233455-5748-4ea3-9490-f2b7c02694c8','','',NULL), -('9313','Aphorite','Cargo','Cargo','23006dfc-aef1-45c8-8461-72bd5064526f','','',NULL), -('9314','Pite','Char_Head_Piercings','UNDEFINED','5e13ccbe-b5aa-4af5-925a-bcea0dad9652','','',NULL), -('9315','Flight Blade','FlightController','UNDEFINED','04036508-5a31-440e-a5cd-288748d405e0','','',NULL), -('9316','stand_shop_medium_b_Cooler','ShopDisplay','UNDEFINED','c2a9e6d0-f322-4dfd-a4ec-3b147ebaf56f','','',NULL), -('9317','Elevator Control','Elevator','UNDEFINED','b3fe37f0-c7dc-4d7f-9b55-45484293ba72','','',NULL), -('9318','Maintenance_Workzone_Inspect_DeckCrew','Usable','UNDEFINED','ca1c6436-5f7e-4efb-99c4-5041ea4e8575','','',NULL), -('9319','Sabine Undersuit','Armor','Undersuit','b0272a6d-67a4-4838-a3e4-1abcef0e4476','','',NULL), -('9320','Dream Wishes T-Shirt','Char_Clothing_Torso_0','UNDEFINED','eda71787-41d7-49b3-8a7a-bd7ddffa2d37','','',NULL), -('9321','DockingTube_Fuel_Ports_MISC_Freelancer_MAX','DockingCollar','UNDEFINED','482b8d3b-6826-4684-b17f-0ea4a562f157','','',NULL), -('9322','Warden Backpack Crimson Camo','Armor','Backpack','66b4cbc7-3e47-4902-a30d-ad502259bf80','','',NULL), -('9323','Handmade Glazed Mug','Drink','UNDEFINED','0a8302c4-881e-4492-b8f5-f38341e86660','','',NULL), -('9324','Door Control','ControlPanel','DoorPart','f0c5273a-0e7b-4b08-9b55-2afa81b61c51','','',NULL), -('9325','un_crate_mining_1_0125x0125x0125_a','Cargo','UNDEFINED','ebe687c5-72df-4ba5-8827-09f99da031e4','','',NULL), -('9326','Giocoso Helmet Ivory','Armor','Helmet','d2585ecb-f52e-43fd-b4dd-3cf2bd09ca9a','','',NULL), -('9327','Martel Dress','Char_Clothing_Torso_1','UNDEFINED','3166a12f-e35d-42b3-b54e-77aeb4f5abca','','',NULL), -('9328','MISC_Hull_C_FoldingStrut_1A','Cargo','UNDEFINED','55958c2e-8739-45c6-8ebf-6519d06aae4b','','',NULL), -('9329','Freelancer Ship Armor','Armor','Medium','e46c5f21-b77e-4e74-b18e-861ea8836ab0','','',NULL), -('9330','Landlite Boots Aqua','Char_Clothing_Feet','UNDEFINED','6d997d11-aea4-4341-8f30-9d4cdb7d2864','','',NULL), -('9331','Container','Container','UNDEFINED','a9aadbe5-089e-44f4-872c-dd9bb0da2da3','','',NULL), -('9332','Prism \"Hazard\" Laser Shotgun','Weapon','Medium','7221fd5d-2ac3-4dd9-a735-0b5fafe7f587','','',NULL), -('9333','Door','Door','UNDEFINED','cca6ad7b-dc66-4f8a-ac50-186bcb917887','','',NULL), -('9334','Internal Tank','QuantumFuelTank','QuantumFuel','74b1992c-bea5-4522-aeb4-c295a56f0a5b','','',NULL), -('9335','Deck Cap','Misc','UNDEFINED','657aa0be-b784-4e4e-b380-418c3f6ad9c2','','',NULL), -('9336','Door Control','Door','UNDEFINED','b534ae6f-f887-478e-855a-bedd649b460d','','',NULL), -('9337','SHIELDS','ShieldController','UNDEFINED','615b9b7a-bac5-441d-98b1-857cfa7562c9','','',NULL), -('9338','Carryable_1H_CY_weight_dumbbell_1_10kg_c','Misc','UNDEFINED','586e24a0-ae52-4d80-ace4-be3cd03d284e','','',NULL), -('9339','AEGS_Redeemer_Blankingplate_LT','Misc','UNDEFINED','7df0014e-638f-489f-8a42-bdc270f77d7e','','',NULL), -('9340','Year of the Rooster Envelope','Cargo','Cargo','d687141e-094b-4186-b08e-4e91a91ca06a','','',NULL), -('9341','Neograph','Cargo','Cargo','7627deb3-6381-4368-85f3-d6890d1ac91a','','',NULL), -('9342','Hawk Aspire Livery','Paints','UNDEFINED','208ed779-ae52-4b4c-a366-70cb31ee9836','','',NULL), -('9343','Inquisitor Legs Black','Armor','Legs','3ce9726c-05ed-4ad4-8b6e-50768040434f','','',NULL), -('9344','FullFrost','Cooler','UNDEFINED','572580a2-c164-4f99-beaa-d71cd1bd99a7','','',NULL), -('9345','Flight Blade','FlightController','UNDEFINED','86a09bf8-7c2b-4e3d-88a7-01b70e3188ef','','',NULL), -('9346','Li-Tok Boots Purple','Char_Clothing_Feet','UNDEFINED','b5a80934-e847-435c-b8e8-a0a270d7ab05','','',NULL), -('9347','Quartz \"True Valor\" Energy SMG','Weapon','Medium','f3188dc4-264e-433e-93dc-e244e0e3ddf1','','',NULL), -('9348','Flight Blade','FlightController','UNDEFINED','e6d86411-c51c-4611-b44d-4d23d92b367f','','',NULL), -('9349','Brocius Waist Apron Daylight','Char_Clothing_Torso_1','UNDEFINED','e7ca1dbc-d84f-4aac-b66a-b2f03c61fd02','','',NULL), -('9350','Mustang Guardian Livery','Paints','UNDEFINED','70f40ea0-7ddb-4333-80f9-e5a764254a9f','','',NULL), -('9351','BANU_TachyonCannon_Ventilation_S3','WeaponAttachment','Ventilation','d4174667-0469-45eb-be45-da6a1069854f','','',NULL), -('9352','ASAD_DistortionRepeater_FiringMechanism_S1','WeaponAttachment','FiringMechanism','62b2c856-bc5e-4123-8896-5d2b0b64a7bd','','',NULL), -('9353','TrueDef-Pro Arms Black/White/Violet','Armor','Arms','31134f3e-c658-4699-9dd9-7861611f7f72','','',NULL), -('9354','Carryable_TBO_FL_32SCU_Commodity_ProcessedGoods_AceInterceptorHelmet','Cargo','Cargo','5d11ccf4-120b-48ff-922c-ab376c95f614','','',NULL), -('9355','Book','Misc','UNDEFINED','c2f154cd-19d1-4ae6-ba49-0d739984f880','','',NULL), -('9356','FarSight \"Golden Blossom\" (8x Telescopic)','WeaponAttachment','IronSight','201f58e3-7c17-4217-8edf-6f6a097e5ff8','','',NULL), -('9357','Citadel Arms (Modified)','Armor','Arms','99026e33-0597-4ba1-acf1-493f2ae3d8de','','',NULL), -('9358','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','b4e41580-a67e-442c-a60a-189ff609fc5e','','',NULL), -('9359','Weapon_Rack_1_KSAR_Sniper_Common_001','Usable','UNDEFINED','81db694a-d3d3-4363-8bb3-ce65639cb63f','','',NULL), -('9360','Ship Showdown \'52 Carrack Coin','Misc','Utility','d0269187-b78f-4489-9609-47027d36419b','','',NULL), -('9361','Vagabond Jacket Molehill Brown','Char_Clothing_Torso_1','UNDEFINED','c6966e76-f4bf-49d8-be8a-912504e6eaa5','','',NULL), -('9362','Storage','Cargo','UNDEFINED','d1c7e89a-415f-4c0c-9a41-e0eee8a27213','','',NULL), -('9363','Quantum Fuel','Cargo','Cargo','7f724327-ea03-4a93-96ce-7f14cd441114','','',NULL), -('9364','Dragonfly Coalfire Livery','Paints','UNDEFINED','6aaf6389-4898-46a7-b1ef-af5db0af8231','','',NULL), -('9365','RSI_Constellation_SCItem_Seat_Merlin','Seat','UNDEFINED','3ff7371b-9d30-4b12-84be-e01f55f6d189','','',NULL), -('9366','AEGS_Eclipse_Thruster_Mav_Joint','ManneuverThruster','JointThruster','ee7d608f-2b26-4260-8878-6d79e6e5b500','','',NULL), -('9367','Screen','Usable','UNDEFINED','9cd50f7c-10d4-447a-b1b7-9c63204e62fe','','',NULL), -('9368','Internal Tank','QuantumFuelTank','QuantumFuel','8c6cd476-dbdc-458e-ae6e-d2a61cabe0c0','','',NULL), -('9369','Aril Legs','Armor','Legs','f4255f29-7e56-424e-9d1f-9ef52c7458a5','','',NULL), -('9370','Internal Tank','FuelTank','Fuel','0de085e1-07c2-4f08-a081-3a62bfee1365','','',NULL), -('9371','Seat','SeatAccess','UNDEFINED','db2cbf29-e6e5-49c0-8006-d30d9cc08feb','','',NULL), -('9372','Inquisitor Core Sienna','Armor','Torso','c21b349e-2fff-4aee-afa2-96c0c97c4853','','',NULL), -('9373','Combat Supplies','Cargo','Cargo','0770d94d-85c0-4385-b21c-7ed5f58b848a','','',NULL), -('9374','Renegade Racing Vest (Modified)','Char_Clothing_Torso_1','UNDEFINED','b3ae128b-1c8a-467a-b1da-b1882c1c4ab9','','',NULL), -('9375','INTK_AEGS_Vanguard_Warden','FuelIntake','Fuel','2c40da97-85df-43cd-bbde-772448160836','','',NULL), -('9376','ADP Arms Olive','Armor','Arms','b5deb872-f379-4a22-b943-44a169fdacfe','','',NULL), -('9377','VariPuck S6 Gimbal Mount','Turret','GunTurret','60ec9d23-30c0-4b70-81c5-1d774460b319','','',NULL), -('9378','Seat','Usable','UNDEFINED','82db6810-3ddf-4a8d-a0e0-d654ce24b4e0','','',NULL), -('9379','Devastator \"Warhawk\" Shotgun','Weapon','Medium','4432aa90-a96c-4e93-ab6b-ea1634e39164','','',NULL), -('9380','M9A Cannon','Weapon','Gun','2b815637-2fa9-484d-ba91-8ae4411a8a64','','',NULL), -('9381','Savrilium','Cargo','Cargo','f473f1b1-d3c2-48dc-bc9c-8e736a418a1f','','',NULL), -('9382','Deri Gloves Tactical','Char_Clothing_Hands','UNDEFINED','9d3bcfe2-80c3-4ed1-a864-3f5100a6bd73','','',NULL), -('9383','SHIELDS','ShieldController','UNDEFINED','3b050078-dd41-4cdf-84b3-3fbfc4d6fc26','','',NULL), -('9384','SCNR_TARS_S02_Resonance','Scanner','Scanner','08e5d4f5-5298-4909-84df-4d359ead0724','','',NULL), -('9385','MISC Prospector - Noise Launcher','WeaponDefensive','CountermeasureLauncher','389d4ae7-ec1c-40c9-96c9-1c97d8ce394e','','',NULL), -('9386','Internal Tank','FuelTank','Fuel','73294c7d-39a2-4498-b99e-98db986896f7','','',NULL), -('9387','Golem IceBreak Livery','Paints','UNDEFINED','3731eeb4-c7a1-4a5f-826b-68ec801cbacf','','',NULL), -('9388','DockingTube_Fuel_Ports_AEGS_Sabre_Peregrine','DockingCollar','UNDEFINED','f5b51270-9e56-4cc5-aba3-9c2d472953e9','','',NULL), -('9389','Door Control','ControlPanel','DoorPart','0c7440c6-bf2c-492a-9f49-8f737b705829','','',NULL), -('9390','Manned Turret','TurretBase','MannedTurret','76efc85b-599e-46d7-a4b7-fb5ced61cc08','','',NULL), -('9391','Door Control','Door','UNDEFINED','b592a70f-7490-4429-83e7-e39c69f9e565','','',NULL), -('9392','ESPR_LaserCannon_PowerArray_S3','WeaponAttachment','PowerArray','6b93dcc6-fa5d-49a4-95e5-2117907e5ca0','','',NULL), -('9393','un_flask_hip_1_a','Misc','UNDEFINED','1cd09836-2f14-4053-81ab-e0350b45fd0b','','',NULL), -('9394','Internal Tank','QuantumFuelTank','QuantumFuel','dd33bdba-9a9a-4c5f-bbeb-821a236e5f98','','',NULL), -('9395','Riccite','Cargo','Cargo','736e904a-dc9d-4604-af89-b7a4e46b65fd','','',NULL), -('9396','Door Control','Door','UNDEFINED','662ea36c-c907-4ed6-bb8a-919e64ffe9d3','','',NULL), -('9397','Remote Turret','Turret','GunTurret','8bfe26ff-7855-4791-8c90-c0a0a8d8613a','','',NULL), -('9398','SureGrip S3 Tractor Beam','SalvageHead','UNDEFINED','ae2b705a-10ff-4551-aa98-c9803194e17a','','',NULL), -('9399','Xanthule Tahn Helmet','Armor','Helmet','ae75691c-058e-4ad9-8ddb-64d4a9aa49f5','','',NULL), -('9400','LifeGuard Refill','WeaponAttachment','Magazine','03fc4136-a491-4713-b278-ef7e4333431d','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('9401','Human Food Bars','Cargo','Cargo','f6c68f57-65a2-443e-9e07-507e330a1445','','',NULL), -('9402','Medical Supplies','Cargo','Cargo','7ab1a3a5-579a-41b4-9b8f-f0d530c3c8b8','','',NULL), -('9403','DRAK_Vulture_Thruster_Retro','ManneuverThruster','FixedThruster','a2b24963-a64a-4f0e-a00e-09ed782396ca','','',NULL), -('9404','Nomo Grub Packet','Food','Sachet','b830a23a-d949-431b-a4bd-042969f39762','','',NULL), -('9405','Seat','Usable','UNDEFINED','40389b3b-6ba8-44fd-a509-7430b99daeb9','','',NULL), -('9406','Internal Tank','FuelTank','Fuel','5334eb09-ac38-4de4-8702-444e7dbb6409','','',NULL), -('9407','Seat','SeatAccess','UNDEFINED','9c72af2b-0255-4356-8d95-3ae69bb31dd2','','',NULL), -('9408','Aril Arms Scorched','Armor','Arms','31c99f94-9523-43ed-941e-4fc6d55847f3','','',NULL), -('9409','Seat','SeatAccess','UNDEFINED','8ff6e6c9-34a5-4925-9ced-85d164f028aa','','',NULL), -('9410','pacheco_outfit_01','Char_Clothing_Torso_1','Female','65b8dfec-c9c1-40ca-9887-aab90b6ff853','','',NULL), -('9411','Door','Door','UNDEFINED','9729566b-f8a2-4b89-acc1-5aa789c731e1','','',NULL), -('9412','Carryable_1H_CY_weight_dumbbell_1_12kg_b','Misc','UNDEFINED','a4932bab-3412-415d-894b-8edcd4136f66','','',NULL), -('9413','Door_ChipReader_Vault_002','Door','UNDEFINED','96206c3a-6e45-4f0f-a612-98af660a8586','','',NULL), -('9414','Seat','SeatAccess','UNDEFINED','18e037eb-c81d-4930-9741-b3bf1e35f35d','','',NULL), -('9415','RSI_Perseus_SeatAccess_Torpedo_Console','SeatAccess','UNDEFINED','e326f19b-fa16-4900-9e7f-f5f6b8ee7d38','','',NULL), -('9416','Cargo_Slot_GRIN_STV_1Slot','Usable','UNDEFINED','2bee4823-1c60-4b5a-8d3e-7d10c9c35042','','',NULL), -('9417','Safehab','LifeSupportGenerator','UNDEFINED','8f35858a-1403-42b0-aaee-36e7a9dcf8c0','','',NULL), -('9418','Lynx Core','Armor','Torso','52fe2c27-32f5-4a17-82fe-5fce8c8fbe41','','',NULL), -('9419','Decari Pod','Cargo','Cargo','3864a4d3-20fe-4c79-9831-1d63c628637b','','',NULL), -('9420','Internal Tank','QuantumFuelTank','QuantumFuel','f27f973d-9757-4fff-bc8d-00657d5b731d','','',NULL), -('9421','Aphorite','Cargo','Small','86c53bbf-adea-44af-924b-039a840ad703','','',NULL), -('9422','Seat','Usable','UNDEFINED','3b4572cc-b6c2-462f-8a40-2dfe06460d60','','',NULL), -('9423','Radar_Display_MRAI_Guardian','Display','UNDEFINED','6e2b2969-5158-4fd7-8908-9647b2390b49','','',NULL), -('9424','Seat','Usable','UNDEFINED','5b1560c2-940c-4b31-aa1f-66b45ddc460a','','',NULL), -('9425','Morozov-SH Core Iceflow','Armor','Torso','fab2554e-f443-489a-8a1f-24ddcc3acc3a','','',NULL), -('9426','ARGO_MPUV_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','b6d97e58-b11c-4a25-b94a-9a9e2c7016bc','','',NULL), -('9427','RSI_Hermes_LightCap_Right','AttachedPart','UNDEFINED','d25ca9fd-2d11-4004-ae51-4cb042ad364e','','',NULL), -('9428','Quantum Fuel','Cargo','Cargo','48a9961a-ac0a-4e59-8637-23f6ca01ce5e','','',NULL), -('9429','H_Dashboard_Projector_HUD_ORIG_400i','Display','UNDEFINED','aeaca549-50c2-4c54-97b7-b5a69747f023','','',NULL), -('9430','ATLS 2956 Auspicious Red Rat Livery','Paints','UNDEFINED','7b934dc8-9836-4efb-84dd-a206b9332241','','',NULL), -('9431','Castilla Wine Glass','Misc','UNDEFINED','e9225fe2-ef9a-41a5-b741-728ab4590673','','',NULL), -('9432','MC-Black Hat','Char_Clothing_Hat','UNDEFINED','6aa7a09c-e18a-4de2-b492-ee3c786a129a','','',NULL), -('9433','Bexalite (Raw)','Cargo','Cargo','25a68f9f-e350-4e9f-b8fd-e877e35974e3','','',NULL), -('9434','Strata Backpack Pyrotechnic Edition','Armor','Backpack','420fe0da-40b1-4db6-94d6-72055715cdff','','',NULL), -('9435','Seat','SeatAccess','UNDEFINED','a22630ef-82d9-4d16-9acb-586cac3877dd','','',NULL), -('9436','Quartz Energy SMG Battery (45 cap)','WeaponAttachment','Magazine','83ac5196-05d0-45a1-8982-aa549650f9d9','','',NULL), -('9437','Controller_Salvage_ARGO_MOTH_Left','SalvageController','UNDEFINED','ba2a5625-c6ed-4bf1-bb39-20d0a08efb7a','','',NULL), -('9438','Vanduul Decoy Launcher','WeaponDefensive','CountermeasureLauncher','4f5be138-308a-4b2d-96ff-33b5c69a740c','','',NULL), -('9439','Cup','Drink','UNDEFINED','ba3b5cb9-2e5e-443b-9c2e-82f7d0fb95d9','','',NULL), -('9440','ADP Arms Dark Green','Armor','Arms','4e7b8533-a5cb-4821-b007-2c6b8bf1a488','','',NULL), -('9441','Door Control','Door','UNDEFINED','b01ff27b-62e6-4565-a2b9-3c61fc27312b','','',NULL), -('9442','Idris Triton Camo Livery','Paints','UNDEFINED','ca4a07b0-7c4e-45cd-ab51-2d11ff3d2679','','',NULL), -('9443','Bed','Usable','UNDEFINED','f9b5d208-2ba8-48a8-a880-e697170776ed','','',NULL), -('9444','MISC_Hull_C_Thruster_Retro','ManneuverThruster','FixedThruster','7837dfda-fcef-4e12-b4e3-1ce54daf3b22','','',NULL), -('9445','MSD-481 Missile Rack','MissileLauncher','MissileRack','27ed3da2-22cf-403c-9a56-964771718028','','',NULL), -('9446','Door','Door','UNDEFINED','9e47e4dc-2b74-45ee-908c-355c7d9ded78','','',NULL), -('9447','Carryable_1H_CY_bottle_gin_pourable_1_a','Misc','UNDEFINED','add7d6d7-7a75-4753-9bbf-b0059fa10525','','',NULL), -('9448','Carryable_1H_CY_Mixing_bottle_whiskey_a','Misc','UNDEFINED','2afe14d3-ae5d-4080-bf9c-4e7b6a8adf6a','','',NULL), -('9449','Rush','QuantumDrive','UNDEFINED','4e256229-5224-40af-8806-72223f753da2','','',NULL), -('9450','Col Head Cover Brown','Char_Clothing_Hat','UNDEFINED','43af1721-316e-4d1f-8af7-8849c79bf11e','','',NULL), -('9451','AEGS_Door_Decal_Escapepods_04','Decal','DoorPart','6f50e0d3-481e-468f-95ea-fd24a9b819cb','','',NULL), -('9452','Terrapin Seabed Livery','Paints','UNDEFINED','453d25d5-0ecf-33b7-2a34-0c4d0bb5a49c','','',NULL), -('9453','Destroyer Mass Driver Cannon','Weapon','Gun','26298097-2f16-4f25-b652-9c72170b5529','','',NULL), -('9454','Door_NoRoomConnector_OpenReverse_IP','Door','UNDEFINED','91f9ec3f-9460-42fc-bb6d-8070742a6f73','','',NULL), -('9455','RSI_Salvation_Thruster_Retro_Bottom_Right','ManneuverThruster','Retro','6a7c575f-ac15-46b2-be5b-4e7a661d2626','','',NULL), -('9456','Seat','SeatAccess','UNDEFINED','76b267e3-2af6-4231-8a33-eedd61c9a691','','',NULL), -('9457','SHIELDS','ShieldController','UNDEFINED','58b1f314-100f-47b7-8da3-604cd7c692cc','','',NULL), -('9458','Sharud Wrap and Arm Bands Spruce','Char_Clothing_Torso_1','UNDEFINED','283b7a94-accd-48e3-90e1-faf4215d1d3f','','',NULL), -('9459','counter_kitchen_1_straight_01x01x01_b','Misc','UNDEFINED','5d9467cb-e3fc-4188-a99e-04f116ffdbf4','','',NULL), -('9460','TRGT. STATUS','Seat','UNDEFINED','f4fc95a6-52d8-48bf-9f0e-93000be78536','','',NULL), -('9461','Medical Bed','Usable','UNDEFINED','8b9af689-60ed-46cf-b45c-c4c4f6eb45f4','','',NULL), -('9462','Bed','Usable','UNDEFINED','f1d24106-3262-4d13-bfc2-033af8606913','','',NULL), -('9463','Lynx Legs Violet','Armor','Legs','a4f58559-692b-40a7-8b22-72b354a074e6','','',NULL), -('9464','TRGT. STATUS','Seat','UNDEFINED','871e2710-3de7-4245-b797-4c123ce4f7fe','','',NULL), -('9465','TRGT. STATUS','Seat','UNDEFINED','f593f2ff-012b-4438-9587-641a7385f044','','',NULL), -('9466','MRAI_Guardian_MX_SeatAccess','SeatAccess','UNDEFINED','4883e3e9-3e50-2108-1c1c-72d4e103dd89','','',NULL), -('9467','facial_hair_028','Char_Head_Beard','UNDEFINED','e27a835b-965f-487b-bef7-ac8be077cc62','','',NULL), -('9468','ARGO_MPUV_Cargo_Pod','Misc','UNDEFINED','de9f06e9-3730-4b4c-b7a2-52d027ad4b0d','','',NULL), -('9469','DCP Armor Core New Dawn','Armor','Torso','f60af5b8-f119-4925-9bd7-272c115c1e2e','','',NULL), -('9470','f_human_mannequin_slaver_light_02','ShopDisplay','UNDEFINED','b2f76983-90a8-4c46-a2bf-0c066a77a952','','',NULL), -('9471','Hercules Starlifter Deadlock Camo Livery','Paints','UNDEFINED','47b1c5dd-b7bb-46a5-9397-8289ed6cdfca','','',NULL), -('9472','AEGS_Javelin_SCItem_Seat_Pilot_Blocked','Seat','UNDEFINED','88699db5-fcff-4544-a2de-872bef2b7afc','','',NULL), -('9473','Door Control','ControlPanel','DoorPart','8ade00b6-0019-4ea4-ad21-fd6093d8b3e7','','',NULL), -('9474','ParaMed Medical Device','Weapon','Small','3ad9e5f0-8c8f-42b4-adc9-fed1435c8d26','','',NULL), -('9475','Tyros Jacket','Char_Clothing_Torso_1','UNDEFINED','3fd4a3ea-8cb3-4242-9f32-7668df0c98f7','','',NULL), -('9476','SHIELDS','ShieldController','UNDEFINED','a1e7dc5c-46e0-4314-a98b-79ff294260e0','','',NULL), -('9477','Chrome Dome Head Gear Grey Camo','Char_Clothing_Hat','UNDEFINED','b049e04b-daa2-45ab-ba66-761f80cbc40e','','',NULL), -('9478','Inert Materials','Cargo','Cargo','1fded95a-08e4-4d5b-84f4-3a40342713e0','','',NULL), -('9479','Hair Care Product','Misc','UNDEFINED','07160209-7dd0-4db9-bf1c-be561db3ec0a','','',NULL), -('9480','Hammerhead Nightbreak Livery','Paints','UNDEFINED','56be51d7-5883-442d-8757-1f5874b15442','','',NULL), -('9481','Zeus Mk II Firmament Livery','Paints','UNDEFINED','a134062c-f767-4872-bef5-56d171db3665','','',NULL), -('9482','RSI_Perseus_Thruster_Retro_Front_Top_Left','ManneuverThruster','Retro','dfc9bc0a-8041-4d6a-b606-7d6da845b9ef','','',NULL), -('9483','VariPuck S1 Gimbal Mount','Turret','GunTurret','2937fd28-b033-4d47-a8cc-7b470248f2f9','','',NULL), -('9484','Strata Core Lodestar','Armor','Torso','1714e5cb-00ed-414f-bea7-61585c628bb6','','',NULL), -('9485','bar_box_energy_onemeal_steak','ShopDisplay','Default','f0fb471c-c56b-447b-90df-bb98593409f1','','',NULL), -('9486','Gadget_Cabinet_kegr_fire_extinguisher_01_nogeo_ground','Usable','UNDEFINED','a89c7d30-ef52-4251-bffe-0d2a7dae3cf9','','',NULL), -('9487','Paint_Perseus_Black_Grey_Grey','Paints','UNDEFINED','3569841c-feb7-4047-9977-e1630b5a0d44','','',NULL), -('9488','Jennet','PowerPlant','Power','926ea000-c084-4461-bfd1-bbab1c1138a9','','',NULL), -('9489','ORC-mkV Arms Aqua','Armor','Arms','28f05d54-b617-43f2-b492-29883836e3d4','','',NULL), -('9490','Paint_Hammerhead_Default','Paints','UNDEFINED','efacc02f-4cc1-44d4-a1d1-3755bc39c7a9','','',NULL), -('9491','ANVL_Carrack_Thruster_Mav_Bottom','ManneuverThruster','FixedThruster','f9672d39-1950-48c1-9cc6-8cb230fa522c','','',NULL), -('9492','Door Control','ControlPanel','DoorPart','7d7eb339-085b-4c13-9a95-e1a75584e828','','',NULL), -('9493','Carryable_TBO_FL_8SCU_Commodity_Organic_Armillaria','Cargo','Cargo','596c47d8-1921-48a0-b261-6417106b90ad','','',NULL), -('9494','Door','Door','UNDEFINED','20d050f2-58b6-4fbc-a109-431e48f46acd','','',NULL), -('9495','Stor*All 8 SCU Self-Storage Container','InventoryContainer','Cargo','64d1c96f-a7c4-492f-a12e-91699e3b01bc','','',NULL), -('9496','Mining Arm','ToolArm','UNDEFINED','a7da931d-98d9-4fb4-a37d-750c11d20432','','',NULL), -('9497','Ball','Char_Head_Piercings','UNDEFINED','5dfa7c35-5807-486d-bf21-97b7ef01f471','','',NULL), -('9498','G-2 Helmet Tan','Armor','Helmet','9c28f894-4079-4ed0-8f5f-40741c47d138','','',NULL), -('9499','Body','Char_Clothing_Hands','Medical','9ff56989-a3dc-4786-b389-6feea2dea25f','','',NULL), -('9500','Dashboard','SeatDashboard','UNDEFINED','6a56d6b3-3863-4b25-a726-cb3df970a291','','',NULL), -('9501','Pampero Boots Green','Char_Clothing_Feet','UNDEFINED','7c2c61b4-99b3-46f2-9b4e-a595ce082dd7','','',NULL), -('9502','Door Control','ControlPanel','DoorPart','fac3b032-4e10-451a-884f-48b029a94ab0','','',NULL), -('9503','Seat','SeatAccess','UNDEFINED','9cd7cef8-cf4d-4fc2-9952-5f1cba1a4100','','',NULL), -('9504','Arrow Light Green and Grey Livery','Paints','UNDEFINED','f0daa12b-9873-4cf6-a341-9b95fa93d776','','',NULL), -('9505','Compboard','Cargo','Cargo','3a6e04ed-9f93-48ca-aaa4-5d6ef5949a40','','',NULL), -('9506','Raw Ouratite','Cargo','Cargo','e41f195f-5e2c-477c-a95b-7542cde5ce9f','','',NULL), -('9507','RSI_Polaris_SCItem_SeatAccess_Turret_Side_Right','SeatAccess','UNDEFINED','34f32d4a-f51b-4417-91eb-aa86478bb98d','','',NULL), -('9508','Cadmium Allinide','Cargo','Cargo','6be953a6-6b08-41db-9f32-34d4e32608b7','','',NULL), -('9509','Crusader Hat','Char_Clothing_Hat','UNDEFINED','31f70364-4c4d-4b03-826e-9e4e4d0a0e75','','',NULL), -('9510','Bluemoon Fungus','Misc','UNDEFINED','ac659f18-1681-4406-8eff-4bd9173b94a7','','',NULL), -('9511','Holdstrong','Shield','UNDEFINED','dfe6794e-80e7-4d2b-9dbc-6c2f8eb0018c','','',NULL), -('9512','Concept Shirt Purple','Char_Clothing_Torso_0','UNDEFINED','349270a6-2bdc-4d13-85d3-fb11a702650d','','',NULL), -('9513','BEHR_LaserCannon_PowerArray_S7','WeaponAttachment','PowerArray','eed0d2cb-e6e8-4c93-9e6b-e07706f903b4','','',NULL), -('9514','Inquisitor Arms Dark Green','Armor','Arms','40d944eb-b415-4888-a7c3-c867bc36908a','','',NULL), -('9515','ORC-mkV Arms White','Armor','Arms','ad0434c4-0244-461a-b45a-ee1105153d06','','',NULL), -('9516','ORC-mkV Arms Greycat Edition','Armor','Arms','b0d891a5-f143-4793-9c9c-a6957610eed6','','',NULL), -('9517','Seat','Usable','UNDEFINED','18c2d424-50a5-4df0-9638-d11e20b5c106','','',NULL), -('9518','Seat','SeatAccess','UNDEFINED','2ed695c6-1e4b-4305-8bbe-5863c58c3d12','','',NULL), -('9519','Ventris Jumpsuit Crusader Edition Blue','Char_Clothing_Torso_1','UNDEFINED','64699e98-4a20-449f-bd4d-5f20a46119e0','','',NULL), -('9520','Argus Helmet Scorched','Armor','Helmet','acf39e6f-3d0b-4a71-b006-5163e6e9ccff','','',NULL), -('9521','Carafi Cube','Food','Consumable','3317c57a-5bfc-4dea-8a2e-9394f0626de6','','',NULL), -('9522','Permafrost','Cooler','UNDEFINED','5e8af166-4930-4fbc-be29-881fc605f067','','',NULL), -('9523','Hermes Dauntless Livery','Paints','UNDEFINED','e3b2de03-eb22-4603-af5f-9af12c119fe2','','',NULL), -('9524','DockingTube_Fuel_Ports_DRAK_Caterpillar','DockingCollar','UNDEFINED','89b670a1-c26c-4548-84d6-412a22af07ab','','',NULL), -('9525','AAT-34 Turret','Turret','MannedTurret','b8bea0f5-83f6-4fda-96e3-5c13b00362b4','','',NULL), -('9526','MISC_Hull_C_FakeCargo','Cargo','UNDEFINED','1105b366-3253-493e-9445-1d027fc0eb36','','',NULL), -('9527','Pembroke Exploration Suit RSI Graphite Edition ','Armor','Undersuit','8bc00125-5d79-494d-9354-1c0d29048e02','','',NULL), -('9528','Aegis Avenger - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','222edff1-53c1-454d-852c-cecd52381b23','','',NULL), -('9529','Clempt Pants','Char_Clothing_Legs','UNDEFINED','05898ef2-5b05-435f-9764-ac0a1016d1a6','','',NULL), -('9530','Inquisitor Legs Red','Armor','Legs','73bdb20b-547f-4134-a89c-1727248fd9cb','','',NULL), -('9531','PowerSuit_SCItem_SeatAccess','SeatAccess','UNDEFINED','46e6c32c-6a10-4474-be98-12b68a91ccc7','','',NULL), -('9532','Badami Helmet Olivine','Armor','Helmet','f13c5d01-0d94-48a0-9674-5b8f85228fa4','','',NULL), -('9533','Li-Tok Boots Twilight','Char_Clothing_Feet','UNDEFINED','70bfb07c-093b-43e6-973c-aade452664e5','','',NULL), -('9534','Arrowhead \"Executive\" Sniper Rifle','Weapon','Medium','1cb72e0a-59b6-403e-bd96-81a8aab1ab40','','',NULL), -('9535','Strata Legs Heatwave','Armor','Legs','feb84493-af0e-49e3-b638-462bfef25856','','',NULL), -('9536','XNAA_SanTokYai_Thruster_Main_Bottom','MainThruster','JointThruster','9ea6cb96-db23-4544-a665-ab0ba1d342f8','','',NULL), -('9537','STV Whirlwind Livery','Paints','UNDEFINED','f2fa54ca-345b-4542-b62f-c3cb692b1c93','','',NULL), -('9538','INTK_DRAK_Buccaneer','FuelIntake','Fuel','62a48996-f8c7-4d8b-9503-991ab9bb4a89','','',NULL), -('9539','LoadingPlatformLoadingGate','Door','UNDEFINED','8766cdf7-b008-419d-af81-96d734c12d4a','','',NULL), -('9540','Door Control','Door','UNDEFINED','2cb17919-7afe-46e0-8298-63e5b456085f','','',NULL), -('9541','Datapad','Misc','UNDEFINED','b92251c4-d51d-499f-909a-626ef62afdad','','',NULL), -('9542','RSI_Polaris_Seat_Access_ExteriorDoor','SeatAccess','UNDEFINED','1e14cb27-295e-4dbc-af98-0bd550d2eafb','','',NULL), -('9543','Waylite Shoes Crimson','Char_Clothing_Feet','UNDEFINED','3bb3ea87-923f-4b9b-8f8e-0b519746e719','','',NULL), -('9544','Irradiated Valakkar Pearl (Grade C)','Misc','Harvestable','e738c625-8ef7-4238-8170-5db0c4f9c15d','R','',NULL), -('9545','Weapon Rack','Usable','UNDEFINED','205282c8-cc66-48d7-829a-2e693be856c5','','',NULL), -('9546','Cargo_Comm_125x3_Vice_Neon','Cargo','Cargo','2ccb78a6-41bf-4329-98a1-d766fe6a99a1','','',NULL), -('9547','Titanium (Ore)','Cargo','Cargo','708ba367-0485-4875-9d36-67355487c727','','',NULL), -('9548','GPI_Relay_2slot','Relay','UNDEFINED','0e9ac027-6e67-4609-ace3-341fd3a5b56a','','',NULL), -('9549','TRGT. STATUS','Seat','UNDEFINED','bb1a8394-2710-4072-b913-e118e4b3a8dd','','',NULL), -('9550','CNOU_Nomad_CargoGrid_Main','CargoGrid','UNDEFINED','ebf577c0-d12e-4d77-831d-6571ed4c9a1b','','',NULL), -('9551','SHIELDS','ShieldController','UNDEFINED','f166c9d8-e055-4990-8fc5-c68622c74c09','','',NULL), -('9552','RSI_Apollo_CargoGrid_Main','CargoGrid','UNDEFINED','8b0f46c8-895b-413b-9ef1-5e9e84797e9d','','',NULL), -('9553','box_fabric_1_005x005x005_b_v004','Cargo','UNDEFINED','b5cca238-c64c-42ad-9d44-ead154f70d43','','',NULL), -('9554','Overlord Legs Dust Storm','Armor','Legs','128daf5c-5035-4f73-b1d0-5fd4f4230308','','',NULL), -('9555','fruit_tray_2_b','Misc','UNDEFINED','a7ad0888-d804-4fc7-b357-0cf82d340a13','','',NULL), -('9556','Davin Work Gloves Seagreen','Char_Clothing_Hands','UNDEFINED','4db78881-0a98-45d9-bfd2-5071fbb49cfa','','',NULL), -('9557','GRIN_ROC_DS_CargoGrid_Main','Container','Cargo','f1c3b5c1-76b6-46ec-9436-7cd44d93e010','','',NULL), -('9558','Carrion Legs','Armor','Legs','17b4faa2-b1a1-4730-9104-944dcb9ce4bc','','',NULL), -('9559','Weapon_Rack_Cz_Firerat_008','Usable','UNDEFINED','2934ba66-22d3-4e40-9dff-6859870a6e6e','','',NULL), -('9560','Carrion Legs Payback','Armor','Legs','a6c68ce3-03d8-41dc-8b22-f1d6917f8807','','',NULL), -('9561','Gallant \"Executive Edition\" Rifle','Weapon','Medium','d7fc6971-8061-4cab-bf2e-020a922a43e5','','',NULL), -('9562','Carrion Legs Ashen','Armor','Legs','eb28a3de-f436-4860-942e-913f71081de5','','',NULL), -('9563','TRGT. STATUS','Seat','UNDEFINED','ce98b8ad-c7a3-4e64-afe1-9729355db0b1','','',NULL), -('9564','DRAK_Golem_Thruster_Main','MainThruster','FixedThruster','5d38bb1d-cff8-4947-99ba-f10597dbb229','','',NULL), -('9565','H_Dashboard_Projector_HUD_DRAK_Vulture','Display','UNDEFINED','2d00a40f-5161-4e4f-a05b-5c6ff91864b5','','',NULL), -('9566','XIAN_Nox_CML_Chaff','WeaponDefensive','CountermeasureLauncher','5987a8ac-f033-4c3f-bba2-d9c9ca9f829a','','',NULL), -('9567','Vulture Skullcrusher Livery','Paints','UNDEFINED','6daa8955-750e-4c47-bbb7-7f9882c33513','','',NULL), -('9568','m_human_mannequin_odyssey_suit_17','ShopDisplay','UNDEFINED','00fc127c-ad4c-4931-b59e-3363412d70f8','','',NULL), -('9569','Prim Shoes Imperial','Char_Clothing_Feet','UNDEFINED','6e57ffb9-9189-4e9e-ba6a-08eb29004e6f','','',NULL), -('9570','Vera Compensator3','WeaponAttachment','Barrel','e52d18bc-740e-4057-9ae9-9a1c27d088eb','','',NULL), -('9571','Yubarev Pistol','Weapon','Small','959520d7-d83d-45b7-9e7a-f6d057494736','','',NULL), -('9572','INTK_MISC_Reliant_Mako','FuelIntake','Fuel','95be3f8b-072a-4b36-b76e-cced9e883ac9','','',NULL), -('9573','Oza','Cargo','Cargo','78de21f3-66a8-4e91-841c-f9f9cb2c1fc9','','',NULL), -('9574','Door','Door','UNDEFINED','bbc356dd-88f6-450f-a958-c9361df381f3','','',NULL), -('9575','Seat','Usable','UNDEFINED','0e0809f0-116a-4df9-90df-c515792567e8','','',NULL), -('9576','Door Control','Door','UNDEFINED','9e309836-0a39-4bec-8cea-6f0857fafb73','','',NULL), -('9577','DCP Armor Helmet New Dawn','Armor','Helmet','99840963-8d8b-4b87-90d6-4ac7dfc64a9d','','',NULL), -('9578','Cutlass Black Ship Armor','Armor','Medium','a3182ef7-69e2-42b0-b115-8c49899d088e','','',NULL), -('9579','DCP Armor Helmet True Valor','Armor','Helmet','02f8aba6-608e-4826-b2b2-83cb4bb6a7f9','','',NULL), -('9580','DCP Armor Helmet Clawed Steel','Armor','Helmet','e8d10cda-0991-4dbf-ba98-21246465b24e','','',NULL), -('9581','TRGT. STATUS','Seat','UNDEFINED','d19c7678-8de0-42b8-8240-9d6c59c3d84b','','',NULL), -('9582','Razorback Pants Violet','Char_Clothing_Legs','UNDEFINED','1d5a40cc-84c7-48e9-8bb0-8851e716a3aa','','',NULL), -('9583','DCP Armor Helmet Cobalt Camo','Armor','Helmet','41d598bf-77fe-4b39-9e46-af9ee37f8498','','',NULL), -('9584','DCP Armor Helmet Jungle Camo','Armor','Helmet','dfa621c1-849e-4370-bf1d-f359f3cac40b','','',NULL), -('9585','Door Control','ControlPanel','DoorPart','19ddf50a-9425-400d-9ec6-9c6dd56b12cc','','',NULL), -('9586','DCP Armor Helmet Hunter Camo','Armor','Helmet','b348a315-1f87-49e0-bb9d-8e039f26928e','','',NULL), -('9587','Warden Backpack Hiro','Armor','Backpack','53c1ab65-7aaa-4965-b0e2-0ba5a262e4d2','','',NULL), -('9588','GPI_Relay_1slot_001','Relay','UNDEFINED','76b49f01-1ecc-4ebd-a0f2-3d71eb6c4d6c','','',NULL), -('9589','AEGS_Javelin_SCItem_Seat_Captain_Console','Seat','UNDEFINED','9cb4ac9b-0032-4719-9e53-0be05c08a864','','',NULL), -('9590','Harlowe Shirt Tan','Char_Clothing_Torso_0','UNDEFINED','50569cd6-3f95-4321-b33e-17f1db229840','','',NULL), -('9591','Carryable_1H_CY_glass_tumbler_vodka_1_a','Misc','UNDEFINED','ea412161-79ae-44b0-9394-263797893208','','',NULL), -('9592','Harvestable_Meat_1H_MarokMeat','Misc','Harvestable','ee581cd6-aee2-48af-822d-1a3f5e4bfb99','','',NULL), -('9593','Decari Pod','Misc','UNDEFINED','0a7737eb-3240-4017-b7f5-99843a7c5631','','',NULL), -('9594','AEGS_Hammerhead_RADR_Display','Display','UNDEFINED','d21fe12d-31d3-4137-80a8-0b8113c88966','','',NULL), -('9595','Gadget_Cabinet_kegr_fire_extinguisher_01_nogeo_low','Usable','UNDEFINED','c0854216-3499-4022-8bb3-87bcf4a7fe20','','',NULL), -('9596','Tuvois Jacket Green','Char_Clothing_Torso_1','UNDEFINED','0ec53953-9ce1-4e1d-9ea9-3193e086d6fc','','',NULL), -('9597','Yeng’tu Repeater','Weapon','Gun','a9780953-9488-4644-9b56-61464e9dd6b9','','',NULL), -('9598','Razorback Pants Tan','Char_Clothing_Legs','UNDEFINED','f1234b24-a673-4748-8c0a-e92abb88a778','','',NULL), -('9599','orig_bedding_duvet_3_h','Seat','UNDEFINED','3bb23cf8-274f-44e2-8e79-320d23c31b3c','','',NULL), -('9600','Arrowhead \"Nightstalker\" Sniper Rifle','Weapon','Medium','effc4f70-077f-49e3-ad97-53193626aabd','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('9601','Arrowhead Sniper Rifle','Weapon','Medium','5ea1071e-2dc7-4c96-8ae7-aa10775a093a','','',NULL), -('9602','Pressurized Ice','Cargo','Cargo','e78a76ea-4e7e-4fd4-afb2-7faaa99f2c87','','',NULL), -('9603','AEGS_Retaliator_SCItem_Seat_Bed_Upper_Right','Seat','UNDEFINED','1e82fe51-96a0-4a09-8b79-0edc49ae2617','','',NULL), -('9604','Carryable_1H_CY_weight_dumbbell_1_20kg_c','Misc','UNDEFINED','f6ac10ff-d6e7-478a-ad98-9cc5725a4320','','',NULL), -('9605','Starlancer Crusader Livery','Paints','UNDEFINED','2cf0cffb-7abc-4a65-b52a-bc74b30007e1','','',NULL), -('9606','Elevator Control','Door','UNDEFINED','eeb6398c-392a-4b83-96ba-adb7df94ac27','','',NULL), -('9607','Carryable_1H_SQ_DataPad_Fluff_StormBreaker_ResearchFacility_Transport','Misc','UNDEFINED','4e6f1821-63f4-8eaf-413c-eac5e68331a5','','',NULL), -('9608','Luminalia Gift','Cargo','Cargo','608890e1-e4b8-424a-b1d4-483884dbb8b9','','',NULL), -('9609','Internal Tank','QuantumFuelTank','QuantumFuel','97556e78-72af-4b90-ba3e-cad71e134bb5','','',NULL), -('9610','Oracle Helmet Sienna','Armor','Helmet','c134cd92-c19e-49e6-9a7a-bc8ef272a5f8','','',NULL), -('9611','Libio Jacket Green','Char_Clothing_Torso_1','UNDEFINED','8c995ee7-389f-4a8c-ae2d-7231ea4d5ff9','','',NULL), -('9612','Door Control','Door','UNDEFINED','e278f426-062c-4c0a-9678-809833a5c316','','',NULL), -('9613','Strata Backpack ArcCorp Edition','Armor','Backpack','3bb8ddf3-d6e3-4709-894b-9abfa4260c05','','',NULL), -('9614','Remote Turret','Turret','GunTurret','f627cdcb-5597-4d05-b96d-80129104aba2','','',NULL), -('9615','Savannah Kopion Horn','Misc','Harvestable','b9141d18-a8c4-4ac1-a2af-6bf91f441950','','',NULL), -('9616','Door Control','Door','UNDEFINED','cb222138-4f62-44d4-8dc4-934868b157ad','','',NULL), -('9617','Aphorite','Cargo','Cargo','2361fb12-d954-49ca-a094-67f7852e9578','','',NULL), -('9618','Beacon Undersuit','Armor','Undersuit','b8bad4f1-faa8-4e9a-b7ba-55a0418026cb','','',NULL), -('9619','Luminalia Light Stick ','Weapon','Grenade','3530c6a3-3223-4dea-ae01-47d3b821b0ae','','',NULL), -('9620','FLTR-XL Module','MiningModifier','Gun','6ebc1ebe-3058-4d41-b45b-6022f322d623','','',NULL), -('9621','Radiance','PowerPlant','Power','64844114-2aaa-4292-9326-0e3ac941afd9','','',NULL), -('9622','Door Control','Door','UNDEFINED','1e98cae8-f75a-4de9-90a3-728a85c78bbf','','',NULL), -('9623','MISC_Hull_C_Engineer_Console','Seat','UNDEFINED','5c301ef1-8dd9-404d-8467-8b2dd755fd99','','',NULL), -('9624','counter_display_02x01x01_08Ports','ShopDisplay','UNDEFINED','31c239b6-2eae-41c6-97d6-ee36e2d53f56','','',NULL), -('9625','Hull A Trailblazer Livery','Paints','UNDEFINED','48a27c8a-bb93-4bbd-96ee-86885a46d2ad','','',NULL), -('9626','Carryable_1H_CY_cutlery_chopsticks_set_1_a','Weapon','Knife','463bb84f-960f-4ffa-85aa-716ab8ce788b','','',NULL), -('9627','Sabre Star Kitten Livery','Paints','UNDEFINED','5a9caa9e-e5b0-495e-baf8-9b117316d7b8','','',NULL), -('9628','RSI Polaris Torpedo Rack','MissileLauncher','MissileRack','ddd8d826-755f-4033-a58c-823f7047e18c','','',NULL), -('9629','Torite','Cargo','Cargo','f43892db-be6e-4321-aac0-663282a23721','','',NULL), -('9630','Laranite','Cargo','Cargo','b769fe42-9320-4453-b17f-c7494467312e','','',NULL), -('9631','Dragonfly Roustabout Livery (Modified)','Paints','UNDEFINED','0dd8db43-36aa-445b-99b4-d92c0c80ce9e','','',NULL), -('9632','Outback Helmet Molten','Armor','Helmet','c14c37c2-36cb-416a-9ca1-21584db42f71','','',NULL), -('9633','DCP Armor Core True Valor','Armor','Torso','81eed668-bc58-482e-818d-869743c6aa5f','','',NULL), -('9634','AEGS_Door_Decal_Escapepods_03','Decal','DoorPart','89adb0dc-aaba-4af0-8455-6cd3e4aa91ad','','',NULL), -('9635','Field Recon Suit Core','Armor','Torso','1516552d-9a25-40f5-9aed-e99e2dae8017','','',NULL), -('9636','Stud','Char_Head_Piercings','UNDEFINED','ae661336-5475-41ed-88d3-8b7a6733ead1','','',NULL), -('9637','endcap_01_hanging_clothing_6Ports','ShopDisplay','Default','218abe69-f24f-4b52-8c98-d3e36c9f5fa3','','',NULL), -('9638','VNCL_Gen2_PlasmaCannon_PowerArray_S4','WeaponAttachment','PowerArray','37b1d2de-4d15-4dba-96b8-d6c9269992c6','','',NULL), -('9639','UI_EnvironmentScreen_Phoenix_AttractAnim','StatusScreen','AirlockPart','2c7e88d2-2217-497e-8a8e-83923790d30a','','',NULL), -('9640','display_guns_04x01x01_3Ports','ShopDisplay','UNDEFINED','c3524537-53ab-4d30-829e-f5fffd5e9e55','','',NULL), -('9641','Manned Turret','UtilityTurret','MannedTurret','facf753c-5895-4cd1-9bf8-a6b77208a580','','',NULL), -('9642','Emod Stabilizer2','WeaponAttachment','Barrel','ecbc4c11-95f3-4bd3-9fad-49bba798a942','','',NULL), -('9643','Wolf Antilles Livery','Paints','UNDEFINED','b6ad06f5-4e7d-4d16-9d8e-45a4bebe84fc','','',NULL), -('9644','Jumping Limes','Cargo','Cargo','190c675b-0250-467a-ad3a-4f020e18b3df','','',NULL), -('9645','AIModule_Unmanned_PU_PDC_CRIM','AIModule','UNDEFINED','6959c81c-06c0-4dcb-bdd2-c9a9df84ded2','','',NULL), -('9646','Blue Bilva','Cargo','Cargo','2d3f3e66-95a8-4629-bb80-ec34d65b73a9','','',NULL), -('9647','Door','Door','UNDEFINED','f961188f-ec17-4067-9eab-797feea032ad','','',NULL), -('9648','Sizi Knife','Weapon','Knife','84d29f4f-36af-4343-b350-9b1954a07e15','','',NULL), -('9649','Venture Undersuit Yellow','Armor','Undersuit','74973552-2d0c-47bb-9411-1fbe4d965f3b','','',NULL), -('9650','H_Dashboard_Projector_HUD_Generic_Alt_T','Display','UNDEFINED','0e5f3e52-9da1-4340-aecc-a5f6df3ecc13','','',NULL), -('9651','AIModule_Unmanned_PU_UEE_GreenZone_Missile_Turret','AIModule','UNDEFINED','759eb100-fac4-468e-b677-bd9960eb2017','','',NULL), -('9652','Carryable_1H_CY_medical_hammer_1_a','Misc','UNDEFINED','9cee8285-633c-47a2-a477-47ccb3f56462','','',NULL), -('9653','Neograph','Cargo','Cargo','54b8e0a7-0768-442a-ab6a-e6135932f7df','','',NULL), -('9654','DRAK_Vulture_Salvage_Arm_Left','ToolArm','UNDEFINED','374a959e-0b71-49ee-9f69-b7df06d6c581','','',NULL), -('9655','CF-557 Galdereen Repeater','Weapon','Gun','d55ffb79-a3b9-4765-8ed6-15b882ec548c','','',NULL), -('9656','display_components_pallet_250x125x025_coolers','ShopDisplay','UNDEFINED','3c96ecee-747a-494b-ad53-9f568afd03f7','','',NULL), -('9657','Controller_Salvage_AEGS_Reclaimer_ArmOperator','SalvageController','UNDEFINED','70c1c943-a363-420f-9e97-92d240f34a82','','',NULL), -('9658','Savoir','Radar','MidRangeRadar','86c8ec89-6fa6-4bbe-852c-d9e98bb41325','','',NULL), -('9659','ANVL_Carrack_Thruster_Mav','ManneuverThruster','FixedThruster','758cda94-601c-438d-9171-bd048418c7b0','','',NULL), -('9660','Prowler Hamada Livery','Paints','UNDEFINED','25b3d795-84c3-41c2-88d5-94c82c75e07f','','',NULL), -('9661','QuadraCell MX','PowerPlant','Power','ecea4817-3a40-480d-918d-6fe8cf7227c2','','',NULL), -('9662','Internal Tank','QuantumFuelTank','QuantumFuel','83853b87-b284-49e4-8118-0df8785bc877','','',NULL), -('9663','Freelancer ArcCorp Livery','Paints','UNDEFINED','f47bd64a-7721-4de1-9567-51d510d3e9f1','','',NULL), -('9664','Odyssey II Helmet Olive','Armor','Helmet','ca6c62bf-9057-400a-8798-e1a68a7435fc','','',NULL), -('9665','Door Control','Door','UNDEFINED','5fb6352f-1e54-44be-8802-9944aef6ec13','','',NULL), -('9666','ORIG_600i_Dashboard_Bridge_Right','SeatDashboard','UNDEFINED','0d839e0e-1778-4899-8d7f-5153238e4ffd','','',NULL), -('9667','Sabine Undersuit Year of the Rat','Armor','Undersuit','1e5820ef-6627-476d-9201-7bf4493267eb','','',NULL), -('9668','Manned Turret','TurretBase','MannedTurret','83a0c38e-83f6-4ebd-9d0e-6bc2e538fb7a','','',NULL), -('9669','PAB-1 Core Black','Armor','Torso','8db259bf-a608-4187-8d3e-ab3f11b54582','','',NULL), -('9670','Table_Booth_4_Seat_ORIG_400i','Usable','UNDEFINED','15f21883-d311-4df3-a5b7-40ac6cc29c03','','',NULL), -('9671','Orange QuikFlarePro','Weapon','Grenade','2a3d6a82-b18f-4475-a4f4-85c5b6019ed1','','',NULL), -('9672','Drake Caterpillar Weapon Mount','Turret','GunTurret','04715722-9661-41f9-8932-961bfda89d34','','',NULL), -('9673','Tempus Tank Olive','Char_Clothing_Torso_0','UNDEFINED','ec0cc130-be78-486b-9ab2-2e875c16fcf6','','',NULL), -('9674','Aves Starchaser Helmet','Armor','Helmet','47698727-a43f-4172-9441-e3dabaa6954b','','',NULL), -('9675','High End Couch','Usable','Cargo','c4dc650a-3020-4a7b-8f71-5791abfb29c3','','',NULL), -('9676','Venture Arms White','Armor','Arms','45ef2b88-d1d6-4439-a18f-bab47ef90a5e','','',NULL), -('9677','Frontier 05 Pants Noble','Char_Clothing_Legs','UNDEFINED','b61678bc-4b05-4b15-ba60-7fbe22a88caa','','',NULL), -('9678','PAB-1 Arms Aqua','Armor','Arms','5f139f83-a414-4e85-88fd-7c177213f530','','',NULL), -('9679','Book','Misc','UNDEFINED','83d37d14-c1b7-4293-a6c3-ccbf6f8c834e','','',NULL), -('9680','MISC_Freelancer_Base_SCItem_Dashboard_Passenger_Left','SeatDashboard','UNDEFINED','4705d6e2-d372-4749-be3e-1f16efd02d35','','',NULL), -('9681','Flight Blade','FlightController','UNDEFINED','8f95050d-6df6-4fe5-868a-137e3a492a1f','','',NULL), -('9682','Giotto Jacket Crusader Edition','Char_Clothing_Torso_1','UNDEFINED','8c866f86-07c3-4ad8-8edc-9f6fc9fb3d01','','',NULL), -('9683','RSI Noise Launcher','WeaponDefensive','CountermeasureLauncher','12f47a5d-e24e-4e20-9a94-3c74eade08c6','','',NULL), -('9684','vanduul_thul_legs_01_01_01','Armor','Legs','56d07cfa-87e6-45fb-b752-3b2c053570dc','','',NULL), -('9685','Carinite (Pure)','Cargo','Cargo','d2c48b4a-eae5-423b-8677-f4c916cb4346','','',NULL), -('9686','H_Dashboard_Projector_HUD_DRAK_Golem','Display','UNDEFINED','0efac064-1e77-4b47-9772-20cca4044511','','',NULL), -('9687','TrueDef-Pro Core Red/Silver','Armor','Torso','8b66c6fa-7d79-4df8-aa07-21f423aba990','','',NULL), -('9688','Strata Core Greycat Edition','Armor','Torso','7902359a-6e60-4710-b962-a483b67a2646','','',NULL), -('9689','Kavir Pants Redwood','Char_Clothing_Legs','UNDEFINED','5ff255a1-c4a8-438e-b809-f45a51dd4493','','',NULL), -('9690','Vehicle_Screen_MFD_Holographic_MISC_Prospector_MR','Display','UNDEFINED','cbc378f8-c89f-445c-a95a-9c0c956aabdd','','',NULL), -('9691','Parallax \"Downburst Camo\" Energy Assault Rifle','Weapon','Medium','2d446580-f196-416a-806a-c35065c305a9','','',NULL), -('9692','Seat','Usable','UNDEFINED','1dd346f2-77c4-45bc-9186-7013632d4f8c','','',NULL), -('9693','ARGO_ATLS_Battery_Storage','Usable','UNDEFINED','6e4d388b-d3bf-40ec-9686-aa9cec5cda47','','',NULL), -('9694','Hornet Mk II Bracken Livery','Paints','UNDEFINED','636ecfea-6433-49c1-a050-12af54861906','','',NULL), -('9695','SHIELDS','ShieldController','UNDEFINED','50c12341-5b66-4ecb-8c43-25043d262e6a','','',NULL), -('9696','MSD-341 Missile Rack','MissileLauncher','MissileRack','50593138-ee3f-4cc8-9654-b25c1bb6a569','','',NULL), -('9697','Odyssey II Helmet Envy','Armor','Helmet','0d701b2d-e9c4-4772-bfde-139b7dfdacb8','','',NULL), -('9698','Seat','Usable','UNDEFINED','c0f4cba8-4714-44f8-bcef-53abd4cc1bdc','','',NULL), -('9699','Remote Turret','Turret','GunTurret','06649c1a-a839-4a74-9ac9-c93505c58f72','','',NULL), -('9700','Polaris 2955 Ship Showdown Poster','Misc','Utility','7ecb4050-95ee-4c32-ab2f-6c87d840aec1','','',NULL), -('9701','F8C Lightning 2954 Ship Showdown Poster','Misc','Utility','b335ad9f-3bdb-489b-ade9-a96be3a6e287','','',NULL), -('9702','Corsair Flashpoint Livery','Paints','UNDEFINED','a6b9e53f-618e-4384-85cf-24802c13f12b','','',NULL), -('9703','Vulture 2953 Ship Showdown Poster','Misc','Utility','2c029de8-8313-440e-bcbf-670c9105d921','','',NULL), -('9704','Pipe','Misc','Personal','839698f7-9c5e-4c21-90d0-6751b4ed92fe','','',NULL), -('9705','CRUS_Starlifter_Ext_Door_Left_Sm_HACK','Container','UNDEFINED','f9350864-834a-49d3-a069-11f21217064c','','',NULL), -('9706','TE_weapon_box__apar_special_ballistic_01','Misc','UNDEFINED','de4d9648-3d69-44b9-8aea-629649db4f4c','','',NULL), -('9707','Carryable_1H_SQ_Datapad_Fluff_ContestedZone_Pyro','Misc','UNDEFINED','5bc1793f-7330-42cd-bc0c-1de02603a05d','','',NULL), -('9708','Mug','Drink','UNDEFINED','6377020e-3f0d-4274-b3d3-e694b07e8c56','','',NULL), -('9709','Utensil_Plate_LambStalford','Misc','UNDEFINED','a9860df1-f399-4e15-af2f-f4573d451040','','',NULL), -('9710','Taberna Jacket Crimson','Char_Clothing_Torso_1','UNDEFINED','0a2186df-58b5-48e3-b678-b0372b6e9578','','',NULL), -('9711','DCP Armor Arms True Valor','Armor','Arms','305dbfd0-e44e-4654-afe3-1ce02f396840','','',NULL), -('9712','Human Food Bars T-Shirt','Char_Clothing_Torso_0','UNDEFINED','6b9438fe-6559-4c7d-b242-7235100321ab','','',NULL), -('9713','TRGT. STATUS','Seat','UNDEFINED','75e1779a-b257-435a-8e0f-191614f5c5d7','','',NULL), -('9714','ht_glass_whiskey_1_a','Misc','UNDEFINED','15cc3135-d0fb-4f36-a520-fe5454409b82','','',NULL), -('9715','Table_Booth_4_Seat_rdwn_c','Usable','UNDEFINED','0e483310-55c7-4fd7-ad9b-102c030bacb3','','',NULL), -('9716','GP-33 MOD \"Ashfall\" Grenade Launcher','Weapon','Medium','e4a479eb-e58d-4fba-8d48-037af894b7b9','','',NULL), -('9717','Book','Misc','UNDEFINED','19683cd3-bdd7-4f2b-8f2f-306b8f271c09','','',NULL), -('9718','Flight Blade','FlightController','UNDEFINED','c2037b91-9793-47b9-99f6-8ad97ca6cafc','','',NULL), -('9719','stand_shop_small_b_PowerPlant','ShopDisplay','UNDEFINED','473acd17-9d42-490a-b677-6d1e212111b2','','',NULL), -('9720','DRAK_Cutter_Winglets_Scout_Left','Misc','UNDEFINED','cef7f74c-9271-4ea6-b90c-7a67a9161eea','','',NULL), -('9721','MacFlex Arms White','Armor','Arms','debaadff-62cb-4a4a-bf9e-d356891d8731','','',NULL), -('9722','Weapon Rack','Usable','UNDEFINED','791cb2a7-afc2-4cc9-82b9-8900fda396e8','','',NULL), -('9723','ESPR_BallisticCannon_Ventilation_S6','WeaponAttachment','Ventilation','bdc87185-924f-4e38-bf40-4947c02c77b5','','',NULL), -('9724','ORIG_890_Jump_Thruster_Main_BR','MainThruster','FixedThruster','e983028e-9a77-498e-bfac-9bab610f6350','','',NULL), -('9725','Seat','Usable','UNDEFINED','e8385457-94eb-43a8-963a-8986d4f16839','','',NULL), -('9726','Carryable_TBO_FL_16SCU_Commodity_ProcessedGoods_HolidayLetter','Cargo','Cargo','da949c76-f97f-4094-b020-7f873de96923','','',NULL), -('9727','Armor_Crate_CZ_Horizon_H_002','Usable','UNDEFINED','b48e0aa9-28f8-4b20-821d-8e96f31f2599','','',NULL), -('9728','bar_box_energy_onemeal_chicken','ShopDisplay','Default','a4753500-5001-4c89-ab18-677654b2e568','','',NULL), -('9729','Lamont Tawny Undersuit','Armor','Undersuit','990e975e-2693-4d6a-8556-735cb593fdb4','','',NULL), -('9730','Fluorine','Cargo','Cargo','2e9ea45c-6dfa-463b-b9c0-ca7b051ff4e7','','',NULL), -('9731','Door Control','ControlPanel','DoorPart','b07a9c94-b9a8-4244-8e8f-ef7308b0ca65','','',NULL), -('9732','ARGO_MPUV_1T_Thruster_Aux_Bottom','ManneuverThruster','JointThruster','53dc2220-9da4-4ebb-b81a-6bcfdc55d17a','','',NULL), -('9733','Geist Armor Core ','Armor','Torso','619bfecf-f076-46aa-bc4f-bf2b1e1b5aeb','','',NULL), -('9734','Radar_Display_Arrow','Display','UNDEFINED','07265c0a-6727-499e-a775-dbc2cbb63819','','',NULL), -('9735','Venator Boots ','Char_Clothing_Feet','UNDEFINED','ffe46207-98b3-4476-b1e7-5aeb0bbdab3d','','',NULL), -('9736','RSI_Perseus_Thruster_Retro_Front_Top_Right','ManneuverThruster','Retro','17c25f97-8aed-4abb-b244-c973bc5d212e','','',NULL), -('9737','AEGS_Sabre_Peregrine_Thruster_Mav_Joint_01_Top','ManneuverThruster','Light','8c3ca3e5-a06c-488c-b166-02ebeda2b099','','',NULL), -('9738','Black Prism (8x Telescopic)','WeaponAttachment','IronSight','71aac893-8957-42e2-8956-61985ab2c4a5','','',NULL), -('9739','Mixed Mining','Cargo','Cargo','490e5b84-4e0a-4484-9b53-1abc2b0757b7','','',NULL), -('9740','RSI_Constellation_Aquila_Thruster_Retro','MainThruster','FixedThruster','f506b09d-5f6a-415f-9e36-9f58a7d1d271','','',NULL), -('9741','Get Up Coffee (Mocha)','Drink','Can','b1873456-fa9d-4a91-870b-5f56f65a5c8b','','',NULL), -('9742','RSI_Hermes_Thruster_Mav','ManneuverThruster','FixedThruster','4be7508d-1485-0281-0b33-fec8e9f7bc80','','',NULL), -('9743','Bed','Usable','UNDEFINED','05f725b5-bbb5-47b6-ad72-b3d94a253dfb','','',NULL), -('9744','ReadyGrip Tractor Module','SalvageModifier','SalvageModifier_TractorBeam','cdcddccb-247c-4fcb-ab5b-915822159c87','','',NULL), -('9745','Lynx Arms Embark','Armor','Arms','38313cd3-7f86-473d-8434-73140099d22d','','',NULL), -('9746','Flight Blade','FlightController','UNDEFINED','13dba098-234e-4f52-a613-c22b87e10f6e','','',NULL), -('9747','ControlPanel_LightSwitch','ControlPanel','DoorPart','8ce774ea-8713-480b-ad4a-8cbec01785ab','','',NULL), -('9748','Prim Shoes Yellow','Char_Clothing_Feet','UNDEFINED','dfc67794-2b20-40e1-a18a-d8d4023647d5','','',NULL), -('9749','IAE 2954 T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','d6807e5b-232a-4974-af0c-038499f96977','','',NULL), -('9750','Harlowe Shirt Black','Char_Clothing_Torso_0','UNDEFINED','f5d02ab9-5be9-4cae-a566-e13a9dafbfae','','',NULL), -('9751','Tempo Jacket Sterling Silver','Char_Clothing_Torso_1','UNDEFINED','e6405005-0330-494e-9edd-54f9e34c7b5e','','',NULL), -('9752','Carryable_1H_CY_cutlery_chopstick_1_a','Misc','UNDEFINED','4d1babed-67d1-4ac3-afa4-bb7e2e9bc6c8','','',NULL), -('9753','sw_heavy_eva_helmet','Armor','Helmet','e60d1980-2501-4eba-96fb-d2565d0438a6','','',NULL), -('9754','ESPR_LaserCannon_Ventilation_S6','WeaponAttachment','Ventilation','1c9551fa-7f87-4fbc-9771-4a7971d23831','','',NULL), -('9755','DockingTube_Fuel_Ports_GAMA_Syulen','DockingCollar','UNDEFINED','8dbb209a-22ed-4fbc-a919-b0f239432b83','','',NULL), -('9756','400i Polar Livery','Paints','UNDEFINED','8b2969cc-defb-46ee-a801-6d44a05ae4ee','','',NULL), -('9757','Shackleton Shirt','Char_Clothing_Torso_0','UNDEFINED','d1788ca8-ee86-4ca6-bbbc-e80b70d86f40','','',NULL), -('9758','Ship Ammunition','Cargo','Cargo','d30bb56b-6f83-402c-a01a-fd6eb46ab022','','',NULL), -('9759','Razorback Pants Dark Green','Char_Clothing_Legs','UNDEFINED','e754c08a-b7bd-4f50-a2df-350a923ec078','','',NULL), -('9760','orig_bedding_duvet_3_i','Seat','UNDEFINED','216c1217-5657-441f-ad92-c69020ec8989','','',NULL), -('9761','Seat','SeatAccess','UNDEFINED','8fc6cead-2a6d-4e31-9d65-693af7347252','','',NULL), -('9762','ARMR_MISC_Fortune','Armor','Medium','9cfc21e1-0427-4ddc-977f-0eaa47ca68d4','','',NULL), -('9763','bar_box_snagglestick_pepper','ShopDisplay','Default','d5969017-d122-4121-8107-776b2be06e22','','',NULL), -('9764','Fury Cloudburst Livery','Paints','UNDEFINED','edf108d5-3c32-4774-afff-758b3b5d0cdd','','',NULL), -('9765','Aurora Mk II Medallion Livery','Paints','UNDEFINED','d48aa151-859e-42ef-bc55-764f12f42ac7','','',NULL), -('9766','Freelancer Star Kitten Livery','Paints','UNDEFINED','0b3ff5dc-6346-4d0a-b027-b0a9fe801414','','',NULL), -('9767','lt_tool_fire_extinguisher_1_a','Misc','UNDEFINED','7f96bf4f-f64c-474d-9c31-e6f747096d66','','',NULL), -('9768','AEGS_Hammerhead_SCItem_Dashboard_Captain_Room','SeatDashboard','UNDEFINED','5d77583e-066d-4b0f-9366-461967296a90','','',NULL), -('9769','DRAK_Clipper_CargoGrid_Main','CargoGrid','UNDEFINED','c2581ae4-ac58-4573-8740-faba827b013f','','',NULL), -('9770','Li-Tok Boots Dark Green','Char_Clothing_Feet','UNDEFINED','47aaf80f-c7ac-40df-8636-6b6a8bdf6503','','',NULL), -('9771','Aves Helmet Epoque','Armor','Helmet','4c3b48ba-1b77-4fa6-800a-5ad54cb0c832','','',NULL), -('9772','H_Dashboard_Projector_HUD_RSI_Perseus_CoPi','Display','UNDEFINED','f9be348d-0078-4017-bbc7-94b13f25bd47','','',NULL), -('9773','Aves Helmet','Armor','Helmet','83462bdc-21c1-47e7-b315-76d505dfa1cf','','',NULL), -('9774','Carrack XenoThreat Purge Livery','Paints','UNDEFINED','84184aaa-026f-4dc5-9297-ed08fce2e086','','',NULL), -('9775','Strata Helmet Crusader Black','Armor','Helmet','763ca0bf-02ec-4447-aec7-41537cd0417d','','',NULL), -('9776','fruit_plant_2_b_6001','Misc','UNDEFINED','61ea6f7d-1f60-4a2b-a643-bfebc6c876e1','','',NULL), -('9777','fruit_plant_2_b_4001','Misc','UNDEFINED','fb299441-bb6d-4256-833e-686c4fea179c','','',NULL), -('9778','fruit_plant_2_b_5001','Misc','UNDEFINED','fcb3c7d9-19f9-4661-848f-b45292636bce','','',NULL), -('9779','fruit_plant_2_b_2001','Misc','UNDEFINED','9f4f3ad8-1bc9-43ad-bfdc-79be631d8db5','','',NULL), -('9780','fruit_plant_2_b_3001','Misc','UNDEFINED','f8e9cd5b-9f70-493c-bf42-90a4f135ff78','','',NULL), -('9781','fruit_plant_2_b_1001','Misc','UNDEFINED','53c539e7-df30-47ef-81eb-aaeba0805885','','',NULL), -('9782','Door Control','Door','UNDEFINED','2aee07a6-aa78-4cbf-80d3-33176ab638cf','','',NULL), -('9783','Spirit ArcCorp Livery','Paints','UNDEFINED','a3ae2df5-461d-49f2-a6c2-cf23454e67f8','','',NULL), -('9784','JOKR_DistortionCannon_PowerArray_S3','WeaponAttachment','PowerArray','97b4db56-1622-4292-91ed-914371b1d7e8','','',NULL), -('9785','Cutter Headhunters Trauma Livery','Paints','UNDEFINED','da46c111-d6ee-4057-b7a0-f6d0c3bd7b12','','',NULL), -('9786','Lynx Arms Olive','Armor','Arms','32c5e55b-2504-493f-94cf-e8482db6226f','','',NULL), -('9787','Rokmor Suit Jacket','Char_Clothing_Torso_1','UNDEFINED','75dad1b1-17ed-4a00-a420-ced2b36f6cdf','','',NULL), -('9788','Internal Tank','FuelTank','Fuel','aa802fba-ab4b-4760-87f9-ad1fb3783419','','',NULL), -('9789','Door Control','Door','UNDEFINED','b66cf4d3-b5e7-41cb-8759-6ea5b2af44a0','','',NULL), -('9790','INTK_VNCL_Stinger','FuelIntake','Fuel','6fa7bb36-39cb-467f-8d29-fd2ba4197764','','',NULL), -('9791','Door','Door','UNDEFINED','69880379-2d17-433e-9c57-e96ee524a7d2','','',NULL), -('9792','Crate_Suit_Lootable','Usable','UNDEFINED','8eb00601-84cc-44d9-9b33-f4404768c2f9','','',NULL), -('9793','tool_manual_1_spanner_a','Misc','UNDEFINED','464388ea-5fbe-416b-9f7f-78403ce07c1e','','',NULL), -('9794','MaxLift AA Transport Tractor Beam','Weapon','Gadget','321ec859-45dc-4dc6-bdc5-f5d1808365da','','',NULL), -('9795','VNCL_Blade_Thruster_Main_Fixed_01','MainThruster','FixedThruster','366ea9b0-90d3-4c91-ba53-0cbc1ae34614','','',NULL), -('9796','DRAK_Corsair_Side_Turret_Lighting','Room','UNDEFINED','f2837dae-40e7-48ec-a179-c686c827a118','','',NULL), -('9797','Waldron Pants Black','Char_Clothing_Legs','UNDEFINED','290d5c7a-e71e-419e-9d7e-0b8973ddb82c','','',NULL), -('9798','ORIG_890_Jump_Thruster_Mav_FSR','ManneuverThruster','FixedThruster','3c51510f-a1a7-44fe-812d-65a07d2c9558','','',NULL), -('9799','AIModule_Unmanned_PU_UEE','AIModule','UNDEFINED','5734c68c-7428-4c88-b70e-438fce68296d','','',NULL), -('9800','AEGS_Idris_Lower_Camera_Mount','Turret','GunTurret','affebbab-2a46-4f66-b4c1-07b225879cd7','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('9801','Karna \"Fate\" Rifle','Weapon','Medium','8ddd972d-78a4-4c4d-8c0e-805380cd3262','','',NULL), -('9802','Door Control','ControlPanel','DoorPart','4585848c-0dab-4349-94b5-53e9d1351e7b','','',NULL), -('9803','AEGS_Idris_ATC_Seat_NoArmrests','Seat','UNDEFINED','0d77903f-0fac-4a8c-864c-390473681668','','',NULL), -('9804','MISC_Fury_ButtonCover','Misc','UNDEFINED','35b358d5-6ff9-4187-89df-d94ddf98025b','','',NULL), -('9805','Prism \"Bonedust\" Laser Shotgun ','Weapon','Medium','2085a682-db46-4fa4-a00c-16925aaa26a4','','',NULL), -('9806','Paint_300_Seat_White','Misc','UNDEFINED','b1b54bc7-33e3-49be-855b-0abb372759a2','','',NULL), -('9807','display_grate_wall_a_s2_shipweapons','ShopDisplay','Default','1d574816-468f-484a-a009-c4e677fc9677','','',NULL), -('9808','Year of the Rat Envelope','Misc','Harvestable','44e421c4-410b-4932-937f-8f1f48cbf5f7','','',NULL), -('9809','Edgewear Pants \"Pathfinder\"','Char_Clothing_Legs','UNDEFINED','88181557-eff9-4c1a-b6cc-6d76801fbe4a','','',NULL), -('9810','BEHR_JavelinBallisticCannon_Ventilation_S7','WeaponAttachment','Ventilation','b3899836-534d-44aa-966c-ce38758485d7','','',NULL), -('9811','FarSight \"Snow Camo\" (8x Telescopic)','WeaponAttachment','IronSight','6645ee2e-5a58-4db0-a3d7-5cdad7bf8d8a','','',NULL), -('9812','Epier','Radar','MidRangeRadar','c00521d8-7551-4c26-889f-30bf09d9a821','','',NULL), -('9813','LH86 \"Stormfall\" Pistol','Weapon','Small','b45e8eb9-270a-4266-9f8b-464c9350b235','','',NULL), -('9814','Katsu Karē Kacho','Food','Box','021bdeb1-cd67-4c42-a013-fabd38acaa3a','','',NULL), -('9815','Overlord Helmet Dust Storm','Armor','Helmet','afbade92-936a-495d-bbdc-f96559cdeb68','','',NULL), -('9816','Door Control','Door','UNDEFINED','de519920-6df1-401b-97a2-2c17f4143cfb','','',NULL), -('9817','Lynx Arms Violet','Armor','Arms','ae8e946a-8c02-41ff-a2b1-273dbec6c571','','',NULL), -('9818','Elespo','Cargo','Cargo','bf0b20bc-ab78-4c27-a1ee-7ee05b4706ec','','',NULL), -('9819','Bed','Usable','UNDEFINED','61cee7a1-738c-4507-8e79-522b7717b1a1','','',NULL), -('9820','Seat','SeatAccess','UNDEFINED','551ed4f5-543d-42e6-b94b-f8bb53d0b17d','','',NULL), -('9821','CNOU_Mustang_Delta_Thruster_Mav_Fixed_01_Up','ManneuverThruster','FixedThruster','51226f6c-fd81-4347-b6f3-4ae5399ab708','','',NULL), -('9822','Day One Shirt Purple','Char_Clothing_Torso_0','UNDEFINED','4720c7fe-73b4-4264-ab78-aadf855f7fa3','','',NULL), -('9823','Guardian Whiteout Livery','Paints','UNDEFINED','08c615d0-3d09-4070-81d1-030414317fa5','','',NULL), -('9824','Venture Undersuit Pathfinder ','Armor','Undersuit','0cccfb5b-b84d-478f-9518-488950b1f579','','',NULL), -('9825','ExerciseSpot_WarmupSpot','Usable','UNDEFINED','05728a04-f694-4513-afd3-9bf19d8a2b85','','',NULL), -('9826','Pyro RYT \"Black Cherry\" Multi-Tool','Weapon','Gadget','044b2357-9b52-4b77-8829-267ff25d5ab3','','',NULL), -('9827','Vehicle_Screen_MFD_Holographic_MISC_Reliant_LL','Display','UNDEFINED','e63c8e8f-26ee-4486-a9f2-07fb0705bcc6','','',NULL), -('9828','Available','Cargo','Cargo','c44c8e50-2861-4939-876f-6fd37959c1e7','','',NULL), -('9829','DRAK_Cutter_Winglets_Expo_Left','Misc','UNDEFINED','ea980988-593a-49b4-a357-de16d935815d','','',NULL), -('9830','Carryable_1H_SQ_Datapad_Fluff_Orb_HathorGroup_001','Misc','UNDEFINED','532d57bd-0b0f-4ecb-a316-10321af537a5','','',NULL), -('9831','Hellion Scattergun Sharkmouth Edition','Weapon','Gun','961c6667-32b3-453a-b651-2e639f6742c7','','',NULL), -('9832','Paint_Caterpillar_Ninetails','Paints','UNDEFINED','f7ced997-2d54-44a4-92ff-a88543f89e51','','',NULL), -('9833','88-RD Pants','Char_Clothing_Legs','UNDEFINED','cfdd6879-f3db-4ab0-842d-f169994f36a2','','',NULL), -('9834','ANVL_Paladin_Thruster_Retro_Right','ManneuverThruster','UNDEFINED','7b1e4b8e-1c08-403c-85b9-29a77ccb7178','','',NULL), -('9835','VNCL_Blade_Thruster_Aux_Fixed_Top','ManneuverThruster','FixedThruster','0f1a3b2b-254f-4348-b997-28776f03b9b9','','',NULL), -('9836','DRAK_Cutlass_Thruster_Maneuver_Vertical_Negative','ManneuverThruster','JointThruster','6748fb26-796a-4b6d-8675-cc1c9d239ff1','','',NULL), -('9837','Seat','SeatAccess','UNDEFINED','b7abac6a-fbd9-4ac8-a65a-a0a997cb2233','','',NULL), -('9838','Hercules Starlifter Invictus Blue and Gold Livery','Paints','UNDEFINED','cec048b6-8d9a-4e8d-818d-d909f65121ba','','',NULL), -('9839','Karna \"Scorched\" Rifle','Weapon','Medium','3e5d7a54-242b-4956-9e78-658cb01f0766','','',NULL), -('9840','expo_display_shirts_and_hats_consolidated','ShopDisplay','Default','7ec71577-ffb3-496b-ab92-53e3d30c0403','','',NULL), -('9841','Tarantula GT-870 Mark 3 Cannon','Weapon','Gun','eb562cbb-b113-4d95-aef7-a842c91b7d73','','',NULL), -('9842','Skin_Gold','Paints','Personal','ea28dc56-a330-4e50-8b34-817bdfd2ab39','','',NULL), -('9843','Vanduul Cleaver','Missile','Torpedo','3be04d51-971d-42e3-b741-a5b28e177e38','','',NULL), -('9844','Bed','Usable','UNDEFINED','7d0a362a-d402-438d-ab19-6b8ddb05be5e','','',NULL), -('9845','ForceFlex Undersuit Autumn Camo','Armor','Undersuit','1ae7202d-b9c0-4492-87e6-a46b2e80fc56','','',NULL), -('9846','Carryable_1H_SQ_DataPad_Fluff_StormBreaker_DataFacility_Safe03','Misc','UNDEFINED','aa0130d7-ccb7-4467-a13d-5e02b36ba5bd','','',NULL), -('9847','Personal Care Product','Misc','UNDEFINED','fd833f6c-ba24-4b16-b945-ec7c8c7dd850','','',NULL), -('9848','recorder_blackbox_3_a','Misc','UNDEFINED','0514ec22-c15d-49f4-8f7d-98250a7fd94c','','',NULL), -('9849','Creese Yormandi Jacket','Char_Clothing_Torso_1','UNDEFINED','a331124b-362a-4ba7-ab20-867877f3eca0','','',NULL), -('9850','Station','SeatAccess','UNDEFINED','3953b356-d809-47f7-88cd-e98cea84f1b3','','',NULL), -('9851','Strata Helmet Onyx','Armor','Helmet','93913c87-7031-4058-844b-21e6c4b00d7e','','',NULL), -('9852','VNCL_Stinger_Thruster_Retro_Fixed','ManneuverThruster','FixedThruster','6de28489-f22a-4ffe-81a7-68ef55bcb875','','',NULL), -('9853','Evidence','Cargo','Small','e48394f4-96ab-42a1-a3e0-b569124118a5','','',NULL), -('9854','Gold (Ore)','Cargo','Cargo','d776f520-6c61-4c75-a4c4-1b8d175fb97f','','',NULL), -('9855','Jaghte','Shield','UNDEFINED','0eae2a8c-8bc9-4b32-af70-a06e667b0165','','',NULL), -('9856','Anvil Noise Launcher','WeaponDefensive','CountermeasureLauncher','fd50d9c4-16df-4609-a270-4887877da6db','','',NULL), -('9857','drug_bottle_1_c','Cargo','UNDEFINED','5d25d4f4-cac5-4fc4-93bc-7ab8064293de','','',NULL), -('9858','Renegade Cut Vest','Char_Clothing_Torso_1','UNDEFINED','c5244c19-41d0-44b8-bbb2-efe33b2a2264','','',NULL), -('9859','MSD-543 Missile Rack','MissileLauncher','MissileRack','cc26df31-20da-487a-b307-a963e2d3f7a4','','',NULL), -('9860','ADP Core Dark Red','Armor','Torso','11183b53-4e06-40f8-a645-0e6c6ae848f2','','',NULL), -('9861','RSI_Aurora_LN_Thruster_Retro','MainThruster','FixedThruster','a611004c-1a49-4264-b74d-3ffeabbdea3a','','',NULL), -('9862','Access','SeatAccess','UNDEFINED','b0053924-28c8-49e2-98fb-3161716ff96e','','',NULL), -('9863','Carryable_2H_FL_05x05x05_Commodity_ConsumerGoods','Cargo','Small','c42f549e-a097-47a1-b7a4-74c6ff64e9b3','','',NULL), -('9864','Intrepid Wavefront Livery','Paints','UNDEFINED','e988055e-4815-454c-ac80-60472d7d077b','','',NULL), -('9865','Fieldsbury Dark Bear Helmet Lime','Armor','Helmet','e0985785-fc61-416f-8a6c-cf9b5db86bbc','','',NULL), -('9866','Yenny Shirt','Char_Clothing_Torso_0','UNDEFINED','423cb5a3-ba6c-43ea-a053-64a4a4e6be93','','',NULL), -('9867','MacFlex Arms \"Rust Society\"','Armor','Arms','6d1558b9-67f8-44d2-9299-6627d5fb3417','','',NULL), -('9868','MISC_Fury_Thruster_Main_MX','MainThruster','JointThruster','87fae1f2-37c4-4cab-af67-7f6494e8bb30','','',NULL), -('9869','DockingTube_Fuel_Ports_XIAN_Nox','DockingCollar','UNDEFINED','f10e464d-376d-45c4-a0e3-bc865cc440f2','','',NULL), -('9870','Carryable_1H_CY_drug_stomachmedicine_1_a','Misc','UNDEFINED','d2ab0ac4-700c-41a4-85be-d49373e2a598','','',NULL), -('9871','Hercules Starlifter Crusader Livery','Paints','UNDEFINED','7b5fd083-5fe4-40a2-98c0-55070d275ba6','','',NULL), -('9872','Lynx Legs Rager','Armor','Legs','5f770275-5813-44df-80f1-b45887072614','','',NULL), -('9873','Odyssey II Undersuit Orange/Black','Armor','Undersuit','a398ecd3-517b-4155-9add-0490171bc3c1','','',NULL), -('9874','JOKR_DistortionCannon_Ventilation_S1','WeaponAttachment','Ventilation','6c06d2b8-58e1-49b2-8a99-59a37f4fbb15','','',NULL), -('9875','Door','Door','UNDEFINED','b79aa3d2-af8e-4e93-af49-865af639578e','','',NULL), -('9876','H_Dashboard_Projector_HUD_AEGS_Vanguard','Display','UNDEFINED','7f50b8e3-0db5-4e97-aa8a-ee3346d8594b','','',NULL), -('9877','Strata Backpack Hurston Edition','Armor','Backpack','7fdd79ca-f01e-4560-8db2-09d450de563a','','',NULL), -('9878','RangeFinder Jacket Sandstone','Char_Clothing_Torso_1','UNDEFINED','7f32cfb7-57d5-4d33-af9b-ee69d9161a80','','',NULL), -('9879','ORC-mkV Legs Scorched','Armor','Legs','6b89d308-07cb-4500-9f73-5495acf99022','','',NULL), -('9880','Drema Injector','FPS_Consumable','Medical','6a163e8b-1819-424b-abac-3e8662c55237','','',NULL), -('9881','Door','Door','UNDEFINED','20002afa-24dd-4963-9980-226bbd2f1f63','','',NULL), -('9882','MASTER_lt_display_rtt','Display','UNDEFINED','12aedddb-8fb0-45a6-a73f-3119de50ff15','','',NULL), -('9883','SoftLock_Terminal_Standard_Refueling_Starfarer_2','Display','UNDEFINED','abc7159f-e77d-419c-af0a-f807d5146723','','',NULL), -('9884','HRST_LaserScatterGun_FiringMechanism_S1','WeaponAttachment','FiringMechanism','a2b739ea-0a14-48ea-8174-515d0f1fb169','','',NULL), -('9885','Aegis Gladius - Noise Launcher','WeaponDefensive','CountermeasureLauncher','f8d9ca6c-0fd1-4673-9649-f2cd1718816d','','',NULL), -('9886','MISC_Starlancer_Seat_Access_Turret_Left','SeatAccess','UNDEFINED','25b06a4b-c507-44ae-9cf4-93f201297466','','',NULL), -('9887','Util_A_Airlock','Usable','UNDEFINED','9f79ced1-1469-4f2c-bfd7-57e5b1c91639','','',NULL), -('9888','ARMR_MRAI_Pulse_LX','Armor','Medium','7bf9df00-598d-43ad-bb3f-fc9cdab13cd2','','',NULL), -('9889','Door Control','Door','UNDEFINED','cca18610-bd6e-499e-9075-08945ceb051d','','',NULL), -('9890','RSI_Constellation_Phoenix_Thruster_Turbine_Rear','ManneuverThruster','JointThruster','22a2c651-18ba-4b63-b455-ec39f73cb616','','',NULL), -('9891','Piecemeal Armor Legs Olive','Armor','Legs','008bc2f3-1751-4b4d-ac73-64fa63085344','','',NULL), -('9892','Chiron Core AA Support','Armor','Torso','ea095069-4da8-4152-972a-fb2ec02477e6','','',NULL), -('9893','Vanduul Plating','Misc','Harvestable','6d9192ac-dfc6-4eaa-bd2c-986e9a9c6ff2','','',NULL), -('9894','Clipper Apis Livery','Paints','UNDEFINED','4fce54c9-11b3-4e47-878d-7897349ecf88','','',NULL), -('9895','Mercury Star Runner Polar Camo Livery','Paints','UNDEFINED','d10065b5-1b2f-4490-8f4e-cc0aa75c8d66','','',NULL), -('9896','ORIG_135c_Thruster_Mav_Right','ManneuverThruster','FixedThruster','c99f59f8-3735-48bf-9210-235bf9714381','','',NULL), -('9897','LeMarque Pants Red','Char_Clothing_Legs','UNDEFINED','026d1f58-9437-48c9-8778-8061f371a229','','',NULL), -('9898','Ready-Up Helmet Dark Red','Char_Clothing_Hat','UNDEFINED','3db9caa3-bcf9-41a6-8853-b8fa28508a16','','',NULL), -('9899','Mercury Star Runner Fortuna Livery','Paints','UNDEFINED','deb67c9b-b026-4160-8d2c-37aeebf8f161','','',NULL), -('9900','Venture Legs Blue','Armor','Legs','61a4d74a-64c2-4332-b302-c8923f5d6bf9','','',NULL), -('9901','Door Control','Door','UNDEFINED','9b57cfa6-09c5-40ec-9811-b0e9054dbc57','','',NULL), -('9902','MISSILES','MissileController','UNDEFINED','507221c8-8f00-4f53-a4dc-d5a654c8e62e','','',NULL), -('9903','BEHR_BallisticGatling_Ventilation_S5','WeaponAttachment','Ventilation','e690c340-e63a-41e9-907d-21a9d8027c9d','','',NULL), -('9904','vlk_spewgun_ballistic_01','Weapon','Medium','5a8845ad-8d3e-4c62-a3fe-3135316e3a27','','',NULL), -('9905','Mountaintop Jacket Dune','Char_Clothing_Torso_1','UNDEFINED','8a5e2762-f3ad-4298-8fe8-dbb02322618b','','',NULL), -('9906','expo_display_shirts_and_hats_crusader','ShopDisplay','Default','e0b02386-aaf5-426f-8017-f5b7185908fd','','',NULL), -('9907','Manned Turret','TurretBase','MannedTurret','044bbc7f-1baa-4034-a0d7-cb99ccf74738','','',NULL), -('9908','Wolf HighSec Livery','Paints','UNDEFINED','50993a8a-a31a-4e41-8616-0839be025e50','','',NULL), -('9909','Seat','SeatAccess','UNDEFINED','2f0c1576-913d-4cf9-b0fb-4e2705fa0c29','','',NULL), -('9910','Antium Legs Midnight Sun','Armor','Legs','8e4c40b3-f9eb-40f3-811d-01a5099fdcd6','','',NULL), -('9911','Revenant Pod','Cargo','Cargo','e6d37597-bfd2-4dde-a642-fb439a980d20','','',NULL), -('9912','ANVL_Paladin_Thruster_Vtol_Front','ManneuverThruster','UNDEFINED','883d3500-b163-44aa-988b-18e82d03e9a6','','',NULL), -('9913','Parallax \"Fun Military Tooth\" Energy Assault Rifle','Weapon','Medium','289d12fc-29a6-4399-8f2f-68bd53d4a76d','','',NULL), -('9914','POWR_Carryable_JUST_S02_Broken_SCItem','Cargo','Small','5df94f2a-5760-4a53-a8db-9df692fc3343','','',NULL), -('9915','Personal Storage','Cargo','UNDEFINED','3fd02683-1304-47e1-9aff-20620d01b6fa','','',NULL), -('9916','Vanduul Noise Launcher','WeaponDefensive','CountermeasureLauncher','5b5f24e2-c088-4fb6-9ca8-3d7f194fd620','','',NULL), -('9917','CRUS_Starlifter_CargoGrid_Personal_Armory_Large','Cargo','UNDEFINED','56cbca50-f142-47e9-80d2-6bcb13eaa1a8','','',NULL), -('9918','RSI_Aurora_ES_CargoGrid_Main','CargoGrid','UNDEFINED','fd512840-1c83-4609-80f8-3a71f149bb7c','','',NULL), -('9919','Aves Legs Epoque','Armor','Legs','ead43470-3c23-4acc-99f1-f3dd0a3ecfe8','','',NULL), -('9920','Door Control','Door','UNDEFINED','5bcc42b4-c5f3-4872-ac13-3e71cd99939d','','',NULL), -('9921','Morningstar Helmet Aqua','Armor','Helmet','483d87dc-d93a-4c8b-9661-1f6f6b55d36c','','',NULL), -('9922','DCP Armor Core Cobalt Camo','Armor','Torso','cb499a8b-3f84-4684-a638-f6a159ec1488','','',NULL), -('9923','Door Control','ControlPanel','DoorPart','a9764a53-af5a-44ae-8a64-60066c751155','','',NULL), -('9924','Weapon Rack','Usable','UNDEFINED','603bd6a7-a81c-4cbc-8017-2058156f1cd2','','',NULL), -('9925','Yubarev Pistol Battery (10 cap)','WeaponAttachment','Magazine','9dc383ba-2686-46d0-abf9-1bc764aec0b6','','',NULL), -('9926','G-2 Helmet Twilight','Armor','Helmet','305ab561-6edf-48f0-9c49-c987e911e9ed','','',NULL), -('9927','AEGS_Javelin_SCItem_Seat_Pilot','Seat','UNDEFINED','0b467fe8-0d97-4114-a73a-8398362441e6','','',NULL), -('9928','AAT-34 Turret','Turret','MannedTurret','dfe8b6ad-70e7-4768-bf30-c315d34e7854','','',NULL), -('9929','Constellation 2952 Auspicious Red Monkey Livery','Paints','UNDEFINED','e10dac45-b393-438a-87a4-5bd90563b7f1','','',NULL), -('9930','Remote Turret','Turret','GunTurret','8efa5eac-5d2e-457a-8176-39cdba5094e3','','',NULL), -('9931','Pulse \"Blacklist\" Pistol','Weapon','Small','280070a1-de10-4ea8-9e27-bf4229ad67fd','','',NULL), -('9932','Chiron Core Heartthrob','Armor','Torso','2a53540e-5467-4e8d-9213-566734bd45f7','','',NULL), -('9933','Aves Talon Legs','Armor','Legs','80099a63-cfac-4a1d-81b9-633b991aca54','','',NULL), -('9934','Zeus Mk II Monteverde Livery','Paints','UNDEFINED','2458d55f-a9cb-4281-adb9-2c73f2a1961b','','',NULL), -('9935','ADP Arms Red','Armor','Arms','7daa0c89-f14e-4cb9-ae4c-411332ebcaf9','','',NULL), -('9936','box_fabric_1_005x005x005_b_v002','Cargo','UNDEFINED','ce35f4df-bbfe-4f14-9f87-d365b5108596','','',NULL), -('9937','AEGS_Reclaimer_CargoGrid_Salvage_Front_TEMP','CargoGrid','UNDEFINED','56278f62-cd74-4662-bfe1-7c4b1aa48bad','','',NULL), -('9938','ITG Flask','Drink','Bottle','7444d6a8-1684-4186-851c-b72d97a00fc4','','',NULL), -('9939','Seat','SeatAccess','UNDEFINED','fe5644b9-90e9-4af3-90df-5150a685131f','','',NULL), -('9940','6SA \'Arbiter\'','Shield','UNDEFINED','69eab676-9cc1-4e42-bacd-3fa9a78081ee','','',NULL), -('9941','Aves Starchaser Arms','Armor','Arms','83052c6c-2ea1-4f7b-9c10-2715f9519de3','','',NULL), -('9942','Personal Storage','Cargo','UNDEFINED','9bb32cbf-c326-43b7-a5e9-052b919098ef','','',NULL), -('9943','Door Control','ControlPanel','DoorPart','0d50b195-6402-48fe-ba0b-74eb990e5c8a','','',NULL), -('9944','COOL_RSI_S04_Bengal_SCItem','Cooler','UNDEFINED','a2472bfc-17ff-461d-8d99-ec68da5d04b1','','',NULL), -('9945','Dumper\'s Depot T-Shirt','Char_Clothing_Torso_0','UNDEFINED','7e44b7bc-71af-461d-9617-3d15d828ce00','','',NULL), -('9946','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','a279f467-89ae-41f3-bffd-02a842e758b2','','',NULL), -('9947','Frost-Star SL','Cooler','UNDEFINED','387da568-31d2-4479-81da-21dd015db668','','',NULL), -('9948','VNCL_Stinger_SeatAccess','SeatAccess','UNDEFINED','b328d47e-647e-4a12-8ddb-fe0c54bb5f5a','','',NULL), -('9949','Hornet Simoom Livery','Paints','UNDEFINED','443dcff7-c10c-48c3-8116-1c40c1056cd4','','',NULL), -('9950','Door Control','ControlPanel','DoorPart','93e825dc-a328-4da9-abe3-5427ab0f130c','','',NULL), -('9951','Prowler Darkrift Livery','Paints','UNDEFINED','63a2bf81-28e3-42ce-b4da-055749b6fa79','','',NULL), -('9952','SLAM','Cargo','Cargo','bceaf152-b615-45dc-af4c-59d6af9381dc','','',NULL), -('9953','Construction Salvage','Cargo','Cargo','c3fc4028-b100-47c9-964b-1e0d17033dca','','',NULL), -('9954','Iron','Cargo','Cargo','56f5535b-fb4f-4afd-a890-8502426049b5','','',NULL), -('9955','MISSILES','MissileController','UNDEFINED','ac235698-bae0-4f3a-868a-c82a451511f6','','',NULL), -('9956','Food_box_noodle_01_closed_a','Food','Box','793687e4-355f-4e44-880a-892c29f3338d','','',NULL), -('9957','Merlin Ship Armor','Armor','Medium','47a697ea-d042-4415-92b2-38118ecc93f1','','',NULL), -('9958','Cliffback T-Shirt Seagreen','Char_Clothing_Torso_0','UNDEFINED','c938355a-00b5-477e-87b0-fa06d1b17594','','',NULL), -('9959','AEGS_Reclaimer_CargoGrid_Large','CargoGrid','UNDEFINED','ba943358-a13f-48b4-855c-e6dd1806167b','','',NULL), -('9960','ASAD_DistortionRepeater_Barrel_S1','WeaponAttachment','Barrel','da467c09-db68-4e11-be84-7be6501d479a','','',NULL), -('9961','Station','SeatAccess','UNDEFINED','d912bd40-348e-464c-8141-a143990234f9','','',NULL), -('9962','DRAK_Caterpillar_CargoGrid_Nose_Access','CargoGrid','UNDEFINED','b6ac92b9-e3a6-4af2-9e0d-8ea39dc7d4e2','','',NULL), -('9963','Lycara','Cargo','Cargo','4865a4b5-4083-4099-9cab-08cc525796fa','','',NULL), -('9964','DRAK_Clipper_Thruster_Mav','ManneuverThruster','UNDEFINED','3b2e261f-c440-4543-ba65-39c3493b9c6a','','',NULL), -('9965','Odyssey II Undersuit Tan/Black','Armor','Undersuit','a408caf4-b579-4018-a367-bb237bd78982','','',NULL), -('9966','INTK_MRAI_Pulse','FuelIntake','Fuel','5e0ed472-6918-4cf9-aad9-fd5416ae34d6','','',NULL), -('9967','Salvation Lovestruck Livery','Paints','UNDEFINED','b5532228-ef37-47fd-9b83-2593c7a0d7af','','',NULL), -('9968','Door Control','ControlPanel','DoorPart','a22e3786-76d7-4777-a687-5dc8d35eb625','','',NULL), -('9969','Rustic Jacket Brown','Char_Clothing_Torso_1','UNDEFINED','3e4d3f71-f3ff-4ad5-8a39-97a9e71390ca','','',NULL), -('9970','SHIELDS','ShieldController','UNDEFINED','f3030a68-e295-4dd1-8586-84a79492ba77','','',NULL), -('9971','stand_shop_medium_b_PowerPlant','ShopDisplay','UNDEFINED','698d74de-c9c4-464a-a03f-5a24a0232d0c','','',NULL), -('9972','MISC_Prospector_Thruster_Mav_Fixed_03','ManneuverThruster','FixedThruster','e57f1e63-4388-4c14-8476-5fda18ab8bb9','','',NULL), -('9973','Argon','Cargo','Cargo','cb3beb44-5d18-428f-a4b6-4335b6eba249','','',NULL), -('9974','m_human_mannequin_clothing_TandS_Civ01','ShopDisplay','UNDEFINED','94509609-7914-4782-a291-dd9c1312da54','','',NULL), -('9975','Strata Core Shire','Armor','Torso','b80a76eb-9243-4a00-941a-40a0f1ae60f2','','',NULL), -('9976','Seat','SeatAccess','UNDEFINED','f3894a04-cce2-4667-a1d8-d049f9d47938','','',NULL), -('9977','PH - 987_shoes_01_01_9tails01','Char_Clothing_Feet','UNDEFINED','1cb67f40-d462-4900-8754-8e33884b8e45','','',NULL), -('9978','Flight Blade','FlightController','UNDEFINED','5e13cc22-27fd-4bed-8a31-8332a4ea8750','','',NULL), -('9979','Deo Shirt Seagreen','Char_Clothing_Torso_0','UNDEFINED','b3a7f0ce-9cbb-42fd-bbbb-3a5d458f6bb6','','',NULL), -('9980','ROC Mining Arm','UtilityTurret','BallTurret','32c630dd-03e7-4c36-8587-9de4160c7d43','','',NULL), -('9981','ORIG_600i_Thruster_Mav_Fixed_03_Bottom','ManneuverThruster','FixedThruster','f346ad12-ef52-4d42-b557-0da9b2adae21','','',NULL), -('9982','ARMR_MRAI_Guardian','Armor','Medium','5b43f372-4049-458d-b583-74a9e1918921','','',NULL), -('9983','Medical Supplies','Cargo','Cargo','f555aab6-a32f-4e5b-ad21-c3e7dcced606','','',NULL), -('9984','MISC_Hull_C_Thruster_Mav_Fixed_Small_Top','ManneuverThruster','JointThruster','f9541519-a4ee-44fe-b9d7-1b651d5ccd34','','',NULL), -('9985','ArmorStand_CLDA_hazmat_Yellow','Misc','UNDEFINED','e11f27eb-bd88-46b8-b8ba-c35e2029a4f0','','',NULL), -('9986','Sharud Wrap and Arm Bands Conifer','Char_Clothing_Torso_1','UNDEFINED','7b41801d-45bb-4ff9-8397-9a7b93481044','','',NULL), -('9987','Stir Fry Vegetables and Beef Omni Pack','Food','Tin','aa7c9d5f-6b0c-41ac-b71e-02d503c654f9','','',NULL), -('9988','Ambit Coverall','Char_Clothing_Torso_1','UNDEFINED','555b3b68-f1e4-4f57-b7b5-1c1e56198160','','',NULL), -('9989','facial_hair_022','Char_Head_Beard','UNDEFINED','c5b7f31a-f0b5-4229-91c3-be2f859966fa','','',NULL), -('9990','Prowler Panthera Livery','Paints','UNDEFINED','98b7b00b-086a-4504-92c7-bb5bc8ee8ac9','','',NULL), -('9991','ANVL_Terrapin_Medic_RoofCap','Misc','UNDEFINED','f6e89408-cd9f-4dc3-b2f9-66670ca7ec28','','',NULL), -('9992','bottle_drink_1_substitute_shop_3x5_a','ShopDisplay','Default','72672dc5-ea31-4cba-87a2-470f8b8fd9fa','','',NULL), -('9993','F8C Lightning Stormfire Livery','Paints','UNDEFINED','5b8a9c7e-bbaa-4772-a84f-dc199b177d82','','',NULL), -('9994','Seat','SeatAccess','UNDEFINED','4eca55db-a73b-7ba6-1216-1c0b07ca6d9f','','',NULL), -('9995','MISC_Freelancer_Base_SCItem_Seat_Passenger_Right','Seat','UNDEFINED','46b69c71-1816-4dda-89d9-b3a96a435c3e','','',NULL), -('9996','NONE_LaserRepeater_Ventilation_S2','WeaponAttachment','Ventilation','c60c218a-685c-4768-8ada-190b8e29ddb1','','',NULL), -('9997','Kopion Horn','Cargo','Cargo','2aad79f4-dec8-4584-9908-eec1eb487e0c','','',NULL), -('9998','Morozov-SH-I Arms Pyrotechnic Horizon','Armor','Arms','329c8b9a-0c8f-4bc1-9036-2f4e9fe33d60','','',NULL), -('9999','Basher T-Shirt','Char_Clothing_Torso_0','UNDEFINED','ce8b08dc-0962-4a30-944b-32330fdfb40e','','',NULL), -('10000','Paint_Perseus_Beige_Beige_Beige','Paints','UNDEFINED','1e632aec-047d-4073-b9b9-952603523dcc','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('10001','Fortune Lovestruck Livery','Paints','UNDEFINED','421f6dfe-005b-4d32-bb83-f781b7295d05','','',NULL), -('10002','Brocius Waist Apron Cloudcover','Char_Clothing_Torso_1','UNDEFINED','7dc210ff-1164-47b9-b440-50b79e96ccbd','','',NULL), -('10003','SHIELDS','ShieldController','UNDEFINED','27055da4-53ae-4a54-8460-3e2c34fd4c04','','',NULL), -('10004','DRAK_Clipper_Dashboard','SeatDashboard','UNDEFINED','cab2c9f0-02df-46cd-bc11-06e3a5d12d89','','',NULL), -('10005','Door Control','Door','UNDEFINED','821d2593-fbac-4a6a-a052-45b37222b4e0','','',NULL), -('10006','ADP Arms (Modified)','Armor','Arms','ad4a47ed-a1c2-43e9-987c-9561d53019df','','',NULL), -('10007','TrueDef-Pro Core Black/Silver/Blue','Armor','Torso','7e03acd0-edbf-4d74-9477-3b011cb7dad6','','',NULL), -('10008','DRAK_Cutlass_Red_Thruster_Maneuver_Vertical_Positive','ManneuverThruster','JointThruster','d6fadf8b-9937-4b29-b332-edd826a6c88c','','',NULL), -('10009','Fury Waverider Livery','Paints','UNDEFINED','a8e62bfa-da71-46b5-911f-e95ca9b59201','','',NULL), -('10010','Flight Blade','FlightController','UNDEFINED','31cd13ad-f75f-48ab-9c3e-16d024fefffd','','',NULL), -('10011','C8R Pisces TSB Flight Blade','FlightController','UNDEFINED','0ea9e1a2-cc41-4114-ac39-559d655c57d0','','',NULL), -('10012','Serac','Cooler','UNDEFINED','d0b4ce5b-c8ba-4a9f-90b1-c9567a6c90e9','','',NULL), -('10013','Seat','Usable','UNDEFINED','1d465cd8-92dd-4210-9a5a-429ec65819ae','','',NULL), -('10014','Debnam Gloves Yellow','Char_Clothing_Hands','UNDEFINED','913ec563-307f-4e5a-88f5-05fe04a4dd6b','','',NULL), -('10015','Aril Backpack Harvester','Armor','Backpack','eee19707-3e2d-436a-9a6e-0a447c28fd07','','',NULL), -('10016','Remote Turret','Turret','GunTurret','bcec48d5-d452-42ee-980e-b8294e01880d','','',NULL), -('10017','Weapon_Rack_DRAK_Herald','Usable','UNDEFINED','665aecf2-72e8-4cd2-87b2-b070cb08a0a2','','',NULL), -('10018','Landlite Boots','Char_Clothing_Feet','UNDEFINED','79ffa833-298c-4ea1-8a47-191b632a23ee','','',NULL), -('10019','harvestable_base_PrisonStash_01','Misc','UNDEFINED','45d6de76-f2ff-4d51-9c64-d434149675e3','','',NULL), -('10020','Lindinium (Ore)','Cargo','Cargo','fedd33e9-6aa4-43af-937b-5f7aea06097d','E','',NULL), -('10021','Ketchum Beanie Black','Char_Clothing_Hat','UNDEFINED','8defaafe-7b61-42f0-baf0-d18581beb366','','',NULL), -('10022','Seat','SeatAccess','UNDEFINED','09db2c92-ae62-40c1-9936-abcc686e6c99','','',NULL), -('10023','Davin Work Gloves Sienna','Char_Clothing_Hands','UNDEFINED','a521a843-3068-4160-a5cb-772501b751bc','','',NULL), -('10024','Internal Tank','QuantumFuelTank','QuantumFuel','4da5620a-aa1d-4e90-88b0-d54e7c0de26e','','',NULL), -('10025','Cordimon Jacket','Char_Clothing_Torso_1','UNDEFINED','f56608d1-856b-4521-bc04-e2ff7264c013','','',NULL), -('10026','Seat','Usable','UNDEFINED','18aa6788-f6e6-45d1-87a9-88864531155a','','',NULL), -('10027','TRGT. STATUS','Seat','UNDEFINED','da44c54e-9b10-4205-926d-c28319d48690','','',NULL), -('10028','MISC_Starlancer_CargoGrid','CargoGrid','UNDEFINED','4cecf036-2231-46c9-8762-3bfb2fb04229','','',NULL), -('10029','ORIG_400i_SCItem_Seat_Captain','Seat','UNDEFINED','aff1cd14-108b-4832-ace6-3be9a13bb4e6','','',NULL), -('10030','Seat','SeatAccess','UNDEFINED','50a3e8da-0de5-4f50-a1e1-593de2728fe8','','',NULL), -('10031','Cutlass Mistwalker Livery','Paints','UNDEFINED','28713bde-51eb-4c42-a6dd-c74559ecf24b','','',NULL), -('10032','PH - hdh_pants_02_01_11','Char_Clothing_Legs','UNDEFINED','280479a4-49e8-436e-b8e5-cd34717a3c62','','',NULL), -('10033','Aril Arms Quicksilver','Armor','Arms','8a92b937-8df3-4891-a96f-f6224b3db4ee','','',NULL), -('10034','Weapon_Rack_1_BEHR_SMG_AmmoOnly_001','Usable','UNDEFINED','edde754b-bcd2-4cb8-a972-e13ebb9b0b0c','','',NULL), -('10035','MISC_Starfarer_Bump_Seat','Usable','UNDEFINED','865001f1-e630-4277-88c1-5aea782fb16d','','',NULL), -('10036','Door','Door','UNDEFINED','87c4e44d-dd9d-4928-b73f-12a5502856da','','',NULL), -('10037','Seat','Usable','UNDEFINED','e60bb6a1-88b9-4a86-8c33-89c57228d4ce','','',NULL), -('10038','Seat','Usable','UNDEFINED','924c61e2-c40e-49b1-8da1-83c1f704445e','','',NULL), -('10039','ADP Arms Twilight','Armor','Arms','e147e31d-4a5b-4d6b-ab5c-852d5e2121db','','',NULL), -('10040','Paint_Starlifter_Pink_Pink_White','Paints','UNDEFINED','935ebeaf-9394-4d09-9b21-27e7d67815e9','','',NULL), -('10041','Gold','Cargo','Cargo','8b6a4ea8-5052-42aa-94ec-3fb8182d68c0','','',NULL), -('10042','Seat','SeatAccess','UNDEFINED','78114a85-b4e2-4999-94fa-42ee88747eeb','','',NULL), -('10043','Door Control','ControlPanel','DoorPart','326404ef-f422-4dfd-a28f-efa84ea1beb5','','',NULL), -('10044','display_ship_components_03x01x01_qdrives_s1','ShopDisplay','UNDEFINED','5febdd2d-51c5-4a06-8f2c-636f58215510','','',NULL), -('10045','Venture Helmet Black','Armor','Helmet','09b804c2-c3fd-4665-8fdb-04c202f499a2','','',NULL), -('10046','MXOX_NeutronRepeater_PowerArray_S2','WeaponAttachment','PowerArray','f4bdaf29-0ffd-4ace-a45a-cbeea4fb1039','','',NULL), -('10047','Decari Pod','Cargo','Cargo','802d3db3-9944-4fb7-92a6-a7b4af959efd','','',NULL), -('10048','Relay_Maintenance_Wallpanel_Top','Usable','UNDEFINED','212e15dc-97a4-4fa7-98fc-434271072517','','',NULL), -('10049','Caudillo Helmet Wildfire','Armor','Helmet','20ee36c8-9005-49cf-b0f3-813aea98a54a','','',NULL), -('10050','MPUV-1C TSB Flight Blade','FlightController','UNDEFINED','d211d188-d57e-4efc-a71f-8f081fe83e28','','',NULL), -('10051','ADP Arms Yellow','Armor','Arms','fc1dbf5c-f386-473d-8099-d3bc27598896','','',NULL), -('10052','Thrust','Cargo','Cargo','28409dfc-b9b8-4a1a-b9e8-504e3698cecf','','',NULL), -('10053','Lo Classic Kacho','Food','Box','86965521-cbe5-4587-a13c-2ffd0b76556c','','',NULL), -('10054','HRST_LaserRepeater_FiringMechanism_S1','WeaponAttachment','FiringMechanism','2e01f175-c721-46b5-989d-cf4c1e64b3ee','','',NULL), -('10055','Medical Supplies','Cargo','Cargo','66768faa-ebed-46b7-ba5c-143c03cca4d6','','',NULL), -('10056','Seanut','Food','Consumable','2f002275-e636-43b5-a671-a5238e569df1','','',NULL), -('10057','Exo-8 Helmet (Used)','Armor','Helmet','19867337-458e-4396-8396-176278e2e37b','','',NULL), -('10058','AEGS_Idris_SCItem_Seat_Tactical','Seat','UNDEFINED','48f1ead7-291f-43f6-91b9-3a21fe72f6a0','','',NULL), -('10059','Counter_Bar_2m_mix_station_DEPRECATED','Usable','UNDEFINED','256d0df3-66dc-4b50-b9f1-dd7b5881580e','','',NULL), -('10060','H_Dashboard_Projector_HUD_DRAK_Caterpillar_A','Display','UNDEFINED','2b9023a6-f5c4-4549-b4e7-9a203a331370','','',NULL), -('10061','Strata Helmet Greycat Edition','Armor','Helmet','ab25a81e-03b5-4527-816d-b72aca854310','','',NULL), -('10062','Monde Core Keystone','Armor','Torso','3203b170-0a8b-4b5d-be1a-241d619b63d5','','',NULL), -('10063','Internal Tank','FuelTank','Fuel','44a9a6fd-cb6d-4e5f-bc22-5f17f4e8b096','','',NULL), -('10064','Seat','Usable','UNDEFINED','70037ee8-3937-41e0-85fa-d01e4aed41cc','','',NULL), -('10065','Seat','Usable','UNDEFINED','19086563-84a2-499a-a01e-5db11365c58e','','',NULL), -('10066','Paint_300_Dash_Wood','Misc','UNDEFINED','9774d932-4981-4c64-acd4-920708c6be77','','',NULL), -('10067','DockingTube_Fuel_Ports_AEGS_Gladius','DockingCollar','UNDEFINED','40dd057e-af6e-4b12-aa76-2c85ffaf8aa2','','',NULL), -('10068','Door Control','Door','UNDEFINED','ec7b993d-6fa2-4acc-9610-0a37349d3ee6','','',NULL), -('10069','weight_barbell_rack_1_a','Misc','UNDEFINED','42ae6914-6fb6-45bb-88d9-19ef89c48a77','','',NULL), -('10070','Carnifex Core Windfall','Armor','Torso','58b84a4e-2108-45dc-b982-1ae9a9bd483e','','',NULL), -('10071','Seat','Usable','UNDEFINED','92f42096-09e1-44b5-97b5-6aca970606db','','',NULL), -('10072','Sunset Berries','Cargo','Cargo','10ef9b65-529a-4644-9258-2e3de4587021','','',NULL), -('10073','MC-Pinhead Hat','Char_Clothing_Hat','UNDEFINED','b11c148e-8f08-4152-beeb-d35b2d0fc31b','','',NULL), -('10074','Venture Undersuit Tan/Brown','Armor','Undersuit','7ed9e237-a706-4ece-adab-420b57e812d2','','',NULL), -('10075','Door','AttachedPart','UNDEFINED','25b91169-2958-4df1-8052-e09ee75835b2','','',NULL), -('10076','Screen','Usable','UNDEFINED','eceaf1f5-268f-4671-8620-5036e59e8998','','',NULL), -('10077','sc_nvy_bdu_engineer_belt_01_01_20','Char_Clothing_Torso_2','UNDEFINED','cd27150b-9799-4850-a744-de3da1ba6373','','',NULL), -('10078','Courser Jeans Lead','Char_Clothing_Legs','UNDEFINED','71e90d1f-7a4a-467a-8fe5-72bde27b5447','','',NULL), -('10079','Internal Tank','QuantumFuelTank','QuantumFuel','85c562b9-18bf-4c4b-928c-7449e2d6f319','','',NULL), -('10080','VNCL_Scythe_Thruster_top_back','ManneuverThruster','JointThruster','458d510d-9acb-4aa2-977e-9e40b407168e','','',NULL), -('10081','Polaris Quasar Livery','Paints','UNDEFINED','4fba1da6-5795-4aa0-b2bd-4e5d5545cc8f','','',NULL), -('10082','MISC_Freelancer_MAX_Derelict_SCItem_Seat_Esc_Pod_Upper_Right','Seat','UNDEFINED','47f0d9e1-88d6-424e-a73c-5c5ef5682ba2','','',NULL), -('10083','Seat','Usable','UNDEFINED','b8455ec8-c6db-43e3-8377-672dc2364c73','','',NULL), -('10084','Bed','Usable','UNDEFINED','9f9e9041-ac0a-4019-9a79-2787efb1cbf1','','',NULL), -('10085','sc_marine_bdu_shirt_01_01_eckhart','Char_Clothing_Torso_0','UNDEFINED','77db4ec3-62cf-4eb2-bc23-1f07cd1bb191','','',NULL), -('10086','Radar_Display_Gladiator','Display','UNDEFINED','fc5b0705-02c2-4863-8bf9-b2f8ff8ee75a','','',NULL), -('10087','Yellow QuikFlarePro','Weapon','Grenade','ec6dab4e-a4c2-4e4e-ab23-d9b573bd0b76','','',NULL), -('10088','Hornet Mk II Regalia Livery','Paints','UNDEFINED','ffa18173-abfb-43e2-ab40-b066bc2454d9','','',NULL), -('10089','HighTechAirlockTerminalTemplate','ControlPanel','AirlockPart','c4eb30b3-6e30-4f1d-8831-4261c688f2c4','','',NULL), -('10090','Seat','Usable','UNDEFINED','27e9f7bd-c19b-4380-aeb2-dd9dffcb9fa3','','',NULL), -('10091','DockingTube_Fuel_Ports_VNCL_Blade','DockingCollar','UNDEFINED','400dfa5a-e5b7-4f2a-98f2-ca173043741c','','',NULL), -('10092','Weapon_Rack_Powered_ESPR_Prowler','Usable','UNDEFINED','23288eb6-6851-4cb5-8a30-aff2b7649c10','','',NULL), -('10093','Col_A_Airlock_Single_Small_Int','Door','AirlockPart','298bd130-2cbb-4386-8794-77119bd36046','','',NULL), -('10094','DayBreak','PowerPlant','Power','fda65886-0ccb-4a80-a5ee-528b186d4584','','',NULL), -('10095','Messhall_Tray','Misc','UNDEFINED','9bc5b227-46d4-48a2-9a13-5776834295d0','','',NULL), -('10096','INTK_BANU_Defender','FuelIntake','Fuel','8c198cec-e4b1-432d-a6af-cabbec4c560e','','',NULL), -('10097','Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','d9f2674f-b3a7-4228-abcd-14de48145afd','','',NULL), -('10098','Freelancer Deck the Hull Livery','Paints','UNDEFINED','2bb0bbaa-2057-45c7-a3ac-d6b6c910fbfb','','',NULL), -('10099','Toughlife Boots Seagreen','Char_Clothing_Feet','UNDEFINED','0e5a9e57-7da9-4452-aa03-b2a20604f76a','','',NULL), -('10100','Seat','Usable','UNDEFINED','014a08ba-1edd-49d5-bb8d-e7a00271c530','','',NULL), -('10101','RSI Constellation Side Missile Rack','MissileLauncher','MissileRack','15e27bfc-12a3-4388-abaf-a1facf1437f3','','',NULL), -('10102','Artimex Helmet','Armor','Helmet','7491b9a8-f601-47d4-97ff-148924704363','','',NULL), -('10103','vanduul_drone_undersuit_01','Armor','Undersuit','6905cf60-5861-42c3-bbfd-c9c120c9fd27','','',NULL), -('10104','Palatino Core Daystar','Armor','Torso','bc01680a-2d65-4572-b1b5-c09af2783c0c','','',NULL), -('10105','Fizzz Cola','Drink','Can','a663297e-ad1d-4383-baae-f4f3d85b5146','','',NULL), -('10106','Borase (Ore)','Cargo','Cargo','9d63d0db-2308-40fa-8659-389d8f6976a3','','',NULL), -('10107','MXOX_NeutronRepeater_Ventilation_S2','WeaponAttachment','Ventilation','cd67ef2c-8124-4bca-8a43-1197c36c33cc','','',NULL), -('10108','Taftan Boots Sandalwood','Char_Clothing_Feet','UNDEFINED','acb82f89-1b06-488e-b875-b34f1c84253e','','',NULL), -('10109','Inquisitor Core Black Steel','Armor','Torso','c5eaa2a6-1259-47b5-b713-8e7cab5163ea','','',NULL), -('10110','ORIG_890J_Seat_BattleBridge_Right','Seat','UNDEFINED','73d6e074-644f-4925-9b64-51bc2853eb27','','',NULL), -('10111','Remote Turret','Turret','MissileTurret','5815fc36-9669-4b72-b5d1-8959cc857e48','','',NULL), -('10112','DRAK_Mule_CargoGrid_Front','Cargo','UNDEFINED','e1776ba2-5abe-4f34-b61c-1c84f2d0e84e','','',NULL), -('10113','SHIELDS','ShieldController','UNDEFINED','63feae6d-5ee6-470c-a388-f0d5035fb1e1','','',NULL), -('10114','Zip','Cargo','Cargo','b9507a5c-d597-45a9-a140-2e80ceba074f','','',NULL), -('10115','P8-SC \"Executive Edition\" SMG','Weapon','Medium','f39aea20-4d89-4525-be69-d6cd336e05e0','','',NULL), -('10116','Door Control','Door','UNDEFINED','b9bd9fa9-88f7-4224-83fb-89f255471eb9','','',NULL), -('10117','Seat','SeatAccess','UNDEFINED','f998f007-9ddd-4453-a57f-8865127166ba','','',NULL), -('10118','Internal Tank','FuelTank','Fuel','03219503-0950-4a54-86d1-3513db38de66','','',NULL), -('10119','Seat','SeatAccess','UNDEFINED','cfc0fca7-4203-4230-9657-644bc77d94f9','','',NULL), -('10120','TrueDef-Pro Core Base','Armor','Torso','c2e23ceb-6844-4dde-a75d-5230fd0ec507','','',NULL), -('10121','Door Control','ControlPanel','DoorPart','a811ba87-f7b8-48da-9cc8-a953964144df','','',NULL), -('10122','DRAK_Golem_Thruster_Main_Right','MainThruster','FixedThruster','594b7665-57fd-44d5-a1c5-b48a8a5af048','','',NULL), -('10123','Weapon_Rack_1_NONE_LMG_Uncommon_001','Usable','UNDEFINED','520f6c75-95d5-4a63-a6a8-8bf34e81a2b5','','',NULL), -('10124','VNCL_Glaive_RADR_Display','Display','UNDEFINED','2735f9c2-6076-4de1-a4d5-720f86e230f7','','',NULL), -('10125','Weekend Warrior Smoothie','Drink','Bottle','4dee4e50-4c57-450e-b866-6f42eac41430','','',NULL), -('10126','CSP-68M Backpack Epoque','Armor','Backpack','dda5fe81-7978-4bb9-86e5-c551f4d66e12','','',NULL), -('10127','sw_medium_helmet','Armor','Helmet','4d31155d-4ab9-45b7-abc6-1965e84dc94e','','',NULL), -('10128','Edgeriders Shoes Bluebee','Char_Clothing_Feet','UNDEFINED','11a3e18d-3eab-4de7-b2f7-1aa26f5b8cbe','','',NULL), -('10129','GATS_BallisticCannon_Barrel_S3','WeaponAttachment','Barrel','5bcd7b38-3d29-40f5-be4f-9d1bf81514ea','','',NULL), -('10130','Redfin Energy Modulators','Cargo','Small','09dec91f-5480-4757-8ddc-642f8c40c8dc','','',NULL), -('10131','Beradom','Cargo','Cargo','8198cdbc-74da-40ac-96c2-baacf49b767b','','',NULL), -('10132','Plasma Battery','Cargo','Cargo','1f024f7b-4b63-4b8f-897f-eede4f062ff0','','',NULL), -('10133','can_drink_3_energy_pips_shop_2x5_a','ShopDisplay','Default','eb62622c-0571-418f-8342-9f1392a28164','','',NULL), -('10134','CRUS_Starlifter_Thruster_VTOL_Wing_Right','MainThruster','FixedThruster','f98b974a-28cf-42dd-9ca0-05c12ab1d4af','','',NULL), -('10135','Hornet F7A Ship Armor','Armor','Medium','64ee6d28-2235-41fd-a6d7-dde7cb808393','','',NULL), -('10136','Geist Armor Arms Snow Camo','Armor','Arms','bfc2d914-873d-45a3-866d-c5757fb20c7b','','',NULL), -('10137','Door','Door','UNDEFINED','8044f842-20db-4fa0-acbc-fa3bb9016684','','',NULL), -('10138','Processed Goods','Cargo','Cargo','8c466409-fe60-4c6b-9832-30faa2674694','','',NULL), -('10139','AEGS_Retaliator_SCItem_Seat_Bed_Rear_Left','Seat','UNDEFINED','b9be6ca1-b4a1-46e9-b57f-8b69e3bda22d','','',NULL), -('10140','MISC_Fortune_Thruster_Mav_Fixed_03_Top','ManneuverThruster','FixedThruster','3d8087c6-49dc-4164-96b5-fc5ff0257d01','','',NULL), -('10141','ORIG_300i_Thruster_Main','MainThruster','FixedThruster','06c74aa3-d87e-4a72-88ae-812d213cfc7c','','',NULL), -('10142','Star Kitten Mug','Drink','UNDEFINED','d5f2412c-e848-44ff-87a3-df1df8a5e824','','',NULL), -('10143','Internal Tank','QuantumFuelTank','QuantumFuel','33745bfa-b2b5-4dc3-95cc-0388c5944865','','',NULL), -('10144','Door Control','Door','UNDEFINED','bd7870ce-dc16-49a7-bc90-0bea76e6b80d','','',NULL), -('10145','Seat','SeatAccess','UNDEFINED','7fcdb3cc-9618-4c84-9025-f580f53dd272','','',NULL), -('10146','H_Dashboard_Projector_HUD_ORIG_X1','Display','UNDEFINED','5d869425-a747-494f-bd10-1d0e347fd760','','',NULL), -('10147','Detara Jacket Mandalay','Char_Clothing_Torso_1','UNDEFINED','a39a7c2d-4985-4ecb-b96f-ab898d8db6f7','','',NULL), -('10148','Fierell Cascade','PowerPlant','Power','50e95028-4764-416c-9380-7d9d52d8d82b','','',NULL), -('10149','Bottle','Bottle','Default','a4324c66-f319-4d92-860e-ec7bba081dfa','','',NULL), -('10150','Glacosite','Cargo','Cargo','221cf92e-190e-4ab5-9cdb-65a0eb6ce957','','',NULL), -('10151','Internal Tank','QuantumFuelTank','QuantumFuel','485b5298-7bcc-49a1-a542-543fcff8b53e','','',NULL), -('10152','Carryable_1H_CY_tool_manual_socket_1_g','Misc','UNDEFINED','d3ff6806-c100-499e-be37-f3d3b67209de','','',NULL), -('10153','ORC-mkV Legs Purple','Armor','Legs','4f7dae90-0366-431c-9f65-79b17f571512','','',NULL), -('10154','Bed','Usable','UNDEFINED','3369ea25-5708-4904-a527-2fed9d8c122b','','',NULL), -('10155','Door','Door','UNDEFINED','02544986-5ea1-4536-93dc-685b66cbe1c9','','',NULL), -('10156','Rieger-C2 Module','MiningModifier','Gun','369d2b1b-d42e-41b4-aff4-74de9712ab68','','',NULL), -('10157','Stor*All 1 SCU Self-Storage Container','InventoryContainer','Cargo','44512a35-3a37-48b9-bf0e-c1bf87b4503b','','',NULL), -('10158','Faction Jacket Purple','Char_Clothing_Torso_1','UNDEFINED','afe865e8-c514-45e9-91c8-dad4e8d35a87','','',NULL), -('10159','XIAN_Scout_SCItem_SeatAccess','SeatAccess','UNDEFINED','1ac88a6c-c145-4a53-83dc-22b6fdf56e76','','',NULL), -('10160','Pulse Laser Pistol','Weapon','Small','02e848a0-d729-4826-a780-8506a2ae4a89','','',NULL), -('10161','Future Navy Pilot T-Shirt','Char_Clothing_Torso_0','UNDEFINED','39f98c32-8fc6-45d8-a9ed-0c726f9c49ed','','',NULL), -('10162','F55 LMG','Weapon','Medium','d52a4cbb-4791-476d-a104-9f21e8d3f855','','',NULL), -('10163','Weapon Rack','Usable','UNDEFINED','747296ea-5e9c-49c5-a984-3c70b934cd95','','',NULL), -('10164','Aurora Mk I Shocking Blue Livery','Paints','UNDEFINED','4e6b46cc-6675-4449-bbb7-1726d21c3404','','',NULL), -('10165','Aegis Sabre - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','07ada054-698a-4769-8129-ddd9bc059b75','','',NULL), -('10166','Door Control','Door','UNDEFINED','58141363-7ffc-4df5-8f68-a62a66e3afad','','',NULL), -('10167','TRGT. STATUS','Seat','UNDEFINED','135341a7-ecbd-4cf5-9454-19eb9da42675','','',NULL), -('10168','Harlowe Shirt Dark Red','Char_Clothing_Torso_0','UNDEFINED','d80c8d06-9687-411f-9d8c-ddaa81d1f6de','','',NULL), -('10169','KRIG_P52_Merlin_DockingTube','DockingCollar','UNDEFINED','1006fe37-88d5-46b7-b2de-3dc403394ada','','',NULL), -('10170','SalvageFillerStation_MISC_Fortune_Right','SalvageFillerStation','UNDEFINED','4f191c66-88c5-4e6a-9762-7a5a5a67d6a2','','',NULL), -('10171','Bed_MISC_Starfarer_Gemini_Captain','Usable','UNDEFINED','77b63487-90db-4d41-bdfa-c8bf7ce989e6','','',NULL), -('10172','Flight Blade','FlightController','UNDEFINED','4e0a3638-d7e5-4609-8488-f72dc050d9f7','','',NULL), -('10173','MacFlex Legs Purple','Armor','Legs','ed0660db-04f2-4520-9486-645f113d686b','','',NULL), -('10174','Seat','Usable','UNDEFINED','4d2d28ae-6c89-4e5f-8622-0e59ff0ad558','','',NULL), -('10175','Razorback Pants Aqua','Char_Clothing_Legs','UNDEFINED','e339d52e-721c-4dab-9928-8e410ec2cf44','','',NULL), -('10176','Balor HCH Helmet','Armor','Helmet','35e498db-02e4-4963-9afa-ee08970c2036','','',NULL), -('10177','orig_bedding_duvet_3_f','Seat','UNDEFINED','e72d14e9-a264-4b8d-964f-ece2469276e3','','',NULL), -('10178','RSI_Constellation_Taurus_Thruster_Turbine_Rear','ManneuverThruster','JointThruster','e564e22f-bd12-40c1-8a26-83cc52be7cb6','','',NULL), -('10179','Carryable_1H_CY_tool_manual_socket_4_a','Misc','UNDEFINED','ce472825-424c-4b31-9dca-5f85404f3c65','','',NULL), -('10180','Drink_bottle_substitute_01_a','Drink','Bottle','e33ad9e1-7ea9-423c-a573-dd11fd242293','','',NULL), -('10181','Ambit Coverall','Char_Clothing_Torso_1','UNDEFINED','e6113791-d139-452a-8a89-9d2ab5776a7f','','',NULL), -('10182','Loscha Work Vest Sirocco','Char_Clothing_Torso_1','UNDEFINED','7afc67af-f00f-47c3-bda2-867068cbb3ac','','',NULL), -('10183','WiDoW','Cargo','Cargo','657ae4dc-a300-4fba-a882-0e2e3061f63c','','',NULL), -('10184','facial_hair_032','Char_Head_Beard','UNDEFINED','5519577b-6efa-4f8a-9c64-62af3ff528ba','','',NULL), -('10185','Li-Tok Boots Aqua','Char_Clothing_Feet','UNDEFINED','fec6388a-e902-41b2-a6e4-f0a6c8853e72','','',NULL), -('10186','Quartz \"Hurston\" Energy SMG','Weapon','Medium','66614c4b-2fc8-4a82-a315-aef1ae1be062','','',NULL), -('10187','H_Dashboard_Projector_HUD_ANVL_Carrack','Display','UNDEFINED','2cee16d2-2219-4720-940b-8be2ebe6978b','','',NULL), -('10188','fruit_pumpkin_1_a','Cargo','UNDEFINED','40b6eb6c-c3b6-4221-a48a-b9639329a97b','','',NULL), -('10189','Chlorine','Cargo','Cargo','32fe2145-b56a-4ee8-ab32-d79dfd8a9605','','',NULL), -('10190','BANU_TachyonCannon_Ventilation_S2','WeaponAttachment','Ventilation','8766cd54-08e9-42a3-b2b0-d85cf1790913','','',NULL), -('10191','Lynx Legs Pariah','Armor','Legs','c1c986a8-5a4c-4a6f-b508-8da3d3a7bd20','','',NULL), -('10192','Internal Tank','FuelTank','Fuel','1dd08408-4329-493d-968b-a5f098683222','','',NULL), -('10193','CRUS_Starfighter_Energy_Nacelle_Left','Misc','UNDEFINED','0e63559e-65e8-43eb-a424-b4ca22892086','','',NULL), -('10194','Ball','Char_Head_Piercings','UNDEFINED','ba82be4f-6607-41e3-ac0f-bf0bbb3482e6','','',NULL), -('10195','Bantam Hat DMC','Char_Clothing_Hat','UNDEFINED','83cba1b0-098e-49c1-a45a-d43a6c13a40a','','',NULL), -('10196','SCItemDisplayScreen_Station_Info_A','Display','Default','b42b1c83-3532-4cfb-ade7-9dd7b53ef13c','','',NULL), -('10197','ANVL_Ballista_SCItem_SeatAccess_Support','SeatAccess','UNDEFINED','0252385f-3f85-401d-ac94-521ec902a169','','',NULL), -('10198','he_a_wall_low_right_a_2Ports','ShopDisplay','UNDEFINED','ca82d371-9c52-4354-b375-936c40160d8a','','',NULL), -('10199','Arden-CL Backpack','Armor','Backpack','d502827b-23b7-4e61-ab6d-86cba29b6f30','','',NULL), -('10200','Seat','Usable','UNDEFINED','8085b54f-2516-4929-8eea-dc47121dd819','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('10201','ARGO_MPUV_CargoGrid_Main','CargoGrid','UNDEFINED','2e20319b-0d57-4c27-a3f7-6317736d0d76','','',NULL), -('10202','Stirling Exploration Backpack','Armor','Backpack','ec96a58f-4675-4fc4-bbd7-33e3332e105f','','',NULL), -('10203','Cargo_Comm_125x3_Mineral_Beryl_a','Cargo','Cargo','e1f1fe4f-4e9c-41d4-9f0e-b47aef85af87','','',NULL), -('10204','Dolivine','Cargo','Cargo','59cd6143-9103-4dfe-a130-d7fb08ba25ba','','',NULL), -('10205','AAT-34 Turret','Turret','MannedTurret','638eb0ee-251a-48f5-99d8-5d274c584ecd','','',NULL), -('10206','Carryable_1H_CY_drug_calcar_1_b','Misc','UNDEFINED','36ee7f2d-c98e-4469-903b-920ff380ab6b','','',NULL), -('10207','AEGS_Idris_SCItem_Seat_Pilot_Blocked','Seat','UNDEFINED','8b755b7e-8217-4d68-b6ea-5b06f0e8b9f8','','',NULL), -('10208','tool_tinsnips_1_a','Misc','UNDEFINED','4f064836-b337-490a-9436-09108e191adf','','',NULL), -('10209','P8-SC \"Epoque\" SMG','Weapon','Medium','1b9a7f76-907b-4c1a-8073-d353ebbb46fd','','',NULL), -('10210','Baru Gloves Brick (Left Only)','Char_Clothing_Hands','UNDEFINED','a2ff68d7-d240-4e11-97ce-87ee7b9c3954','','',NULL), -('10211','WeaponMount_FakeHolographic_Gun_S1_default_gatling_ballistic','WeaponMount','WeaponControl','a3efcfb9-9fcc-4b5e-ab26-a6b54f44a7a0','','',NULL), -('10212','Davin Work Gloves Yellow','Char_Clothing_Hands','UNDEFINED','31a2094c-7849-4836-b52d-169cfe1b4a12','','',NULL), -('10213','Oza','Cargo','Cargo','1fe7dc01-47fa-4ed7-bce9-0a78ba0ccf7d','','',NULL), -('10214','Seat','SeatAccess','UNDEFINED','cf0b0f09-498a-4b6b-a431-9e5a3984fc73','','',NULL), -('10215','Seeker IX-G Torpedo','Missile','GroundVehicleMissile','d2cd6b43-5787-41a2-a581-4817b7155b22','','',NULL), -('10216','Aphorite','Misc','Harvestable','3f137385-dd8f-410b-b5f3-7b4d283c09cd','','',NULL), -('10217','TMBL_Storm_Dashboard_Pilot','SeatDashboard','UNDEFINED','a5d87d1b-43e6-4dfe-927e-0956f7593bdb','','',NULL), -('10218','Manned Turret','TurretBase','MannedTurret','83b3c04e-f976-4bed-9f8b-be73ec7c3bde','','',NULL), -('10219','Li-Tok Boots Orange','Char_Clothing_Feet','UNDEFINED','63b41ddc-cc25-4e15-8f70-a5d2fa520c16','','',NULL), -('10220','Seat','SeatAccess','UNDEFINED','5d7e4c94-dc94-4c2b-8f74-5d822d0252d0','','',NULL), -('10221','Spartan Sidewinder Livery','Paints','UNDEFINED','0b55d477-383a-436b-b78a-746372ea94d2','','',NULL), -('10222','Door Control','Door','UNDEFINED','73a062a8-411a-4398-b912-6fa0d15475b8','','',NULL), -('10223','Tuvois Jacket Grey','Char_Clothing_Torso_1','UNDEFINED','58412166-9986-48d9-a9d8-18cfe3215902','','',NULL), -('10224','Morozov-SH-I Helmet Gideon','Armor','Helmet','89aec5b9-d51b-41fe-ad81-2ba9d9668a10','','',NULL), -('10225','Copper','Cargo','Cargo','add891f5-99ec-4322-8ab7-d138b08cf27b','','',NULL), -('10226','DockingTube_Fuel_Ports_DRAK_Herald','DockingCollar','UNDEFINED','db20e819-90c5-402c-8220-3a8a92ffc891','','',NULL), -('10227','Internal Tank','FuelTank','Fuel','05cbc30c-9e21-44d1-bad7-1857ef4e31b3','','',NULL), -('10228','Golden Medmon','Cargo','Cargo','4ce3ddf1-cdc3-45f7-8a3f-c1d8454e76b8','','',NULL), -('10229','Death Mask \'54 Coin','Misc','Utility','755e9c47-374a-4bcb-9746-b5f9a97459cc','','',NULL), -('10230','Weapon_Rack_1_Volt_Shotgun_Uncommon_001','Usable','UNDEFINED','0ae5eb60-a259-47b5-8fdf-08f26828dcfb','','',NULL), -('10231','G-2 Helmet Dark Green','Armor','Helmet','be40eecd-427b-485c-8010-83ef35e52386','','',NULL), -('10232','Paint_300_Dash_CarbonFiber','Misc','UNDEFINED','2a97cff8-dc03-470a-860e-9226650da066','','',NULL), -('10233','ANVL_Asgard_Thruster_Mav_Joint_Bottom','ManneuverThruster','FlexThruster','bdd2a629-37f6-4b8f-a02c-c3b5602a0d04','','',NULL), -('10234','Adiva Jacket Aqua','Char_Clothing_Torso_1','UNDEFINED','e822bea6-453a-49aa-81f7-ec48d6548da8','','',NULL), -('10235','box_plastic_4_005x005x005_a_CINEMATIC','Cargo','UNDEFINED','d235d0b1-d684-43e8-be31-1a5896a697bb','','',NULL), -('10236','ORIG_890J_Dashboard_BattleBridge_Left','SeatDashboard','UNDEFINED','07305fb3-2380-4dd0-9b47-223b10ee5561','','',NULL), -('10237','Oracle Helmet White','Armor','Helmet','31e8ff2d-5e6a-44ba-8697-e75fb2fdbcb3','','',NULL), -('10238','Libio Jacket Grey','Char_Clothing_Torso_1','UNDEFINED','6bfa3cf9-b399-402b-a6f7-d811656a426d','','',NULL), -('10239','Kamar Jacket','Char_Clothing_Torso_1','UNDEFINED','e12e6f4e-bd59-47a0-977f-31db657bf276','','',NULL), -('10240','SCItemDisplayScreen_Station_Info_B','Display','Default','017917c0-8529-405b-b23a-e24f047193b3','','',NULL), -('10241','ANVL_Hornet_Dashboard_Pilot','SeatDashboard','UNDEFINED','1fbd87cc-fb7d-47d3-8f49-1dceddd3c451','','',NULL), -('10242','Door','Door','UNDEFINED','4725faf9-4517-41f2-adfd-d3ad9e2fb36c','','',NULL), -('10243','ANVL_Hornet_F7CM_Mk2_Thruster_Retro_Right','ManneuverThruster','Retro','98fa5111-88b3-42f0-96c1-7c0cca1c674c','','',NULL), -('10244','Guardian Desert Dusk Livery','Paints','UNDEFINED','924778b7-f262-4443-ba0a-6bc180c5eacd','','',NULL), -('10245','Palatino Legs Moonfall','Armor','Legs','80f66f6f-8b0b-4517-87e9-8f094dcb2b55','','',NULL), -('10246','Fizzz Cola','Drink','Can','1c02d6b2-da89-4ca2-bbbe-16397ba9808f','','',NULL), -('10247','RSI_Perseus_Thruster_VTOL','ManneuverThruster','UNDEFINED','1461ba9c-95b4-42db-930e-e62dd7630798','','',NULL), -('10248','MSD-423 Missile Rack','MissileLauncher','MissileRack','fcf0cee0-94f6-4bfb-aed3-e255d7f1e12c','','',NULL), -('10249','Cup','Drink','UNDEFINED','489a0746-be25-4666-87a5-38826ba6ce35','','',NULL), -('10250','Bar_Table_Direct','Usable','UNDEFINED','617f46e1-db4d-401c-80f9-830279bf84f7','','',NULL), -('10251','Outback Arms Molehill Brown','Armor','Arms','54b6887e-934e-4299-84cc-2b8e7cf642a8','','',NULL), -('10252','Seat','SeatAccess','UNDEFINED','b3c8209e-01c4-4f9a-a191-d2045e58c911','','',NULL), -('10253','AEGS_Idris_Thruster_Main_01','MainThruster','JointThruster','bd322d68-703f-4e11-9496-76c049b50552','','',NULL), -('10254','Corundum (Raw)','Cargo','Cargo','99f0cfc0-4167-4534-9499-5407cd66f862','','',NULL), -('10255','Party Favors','Cargo','Cargo','f5f27fe1-874a-4e09-af0d-03dd371ffe0a','','',NULL), -('10256','Datapad','Misc','Gadget','82d7d445-2937-40fd-9787-91614bd450a2','','',NULL), -('10257','Door Control','Usable','UNDEFINED','e8243c87-a6e6-4719-8e72-0fe2df899552','','',NULL), -('10258','Gasping Weevil Eggs','Cargo','Cargo','55ec8856-e51f-41a7-9362-c1171558f79b','','',NULL), -('10259','Nyman Jacket Grey','Char_Clothing_Torso_1','UNDEFINED','de5a222c-66b2-4fee-baca-30fa53011c75','','',NULL), -('10260','Invictus Hat Blue','Char_Clothing_Hat','UNDEFINED','b8969809-ae7b-429d-b4cd-a30ebe4f4e94','','',NULL), -('10261','CRUS_Starfighter_Thruster_Retro_Right','ManneuverThruster','FixedThruster','92c0f169-c622-4f86-966b-708bdfca9469','','',NULL), -('10262','StrikeForce II-G Missile','Missile','GroundVehicleMissile','e768a935-97f7-45fc-9201-79ba2c5802da','','',NULL), -('10263','TrueDef-Pro Core CDF','Armor','Torso','e0ce3a2c-f71b-421f-b6e2-a22da0359601','','',NULL), -('10264','Deri Gloves Crimson','Char_Clothing_Hands','UNDEFINED','3a9c9fac-d4d4-47a6-b268-bc71f3cf6cfe','','',NULL), -('10265','Seat','SeatAccess','UNDEFINED','7acc9c50-1474-4d42-88f1-a937936f87ab','','',NULL), -('10266','Apollo Tier 3 Module Right','Module','UNDEFINED','41eb4311-f7d4-8db4-1cb5-f77b32eb5c80','','',NULL), -('10267','Testudo Backpack Deathblow','Armor','Backpack','c7714630-8e01-4be4-9fd4-f123a192a3eb','','',NULL), -('10268','RSI_Perseus_DockingTube','DockingCollar','UNDEFINED','6a181062-8e13-401b-836d-17f6aab01d4f','','',NULL), -('10269','RSI_Scorpius_Thruster_Retro_Left','ManneuverThruster','JointThruster','9fa91245-dc14-429c-b35e-9ddae3b36b40','','',NULL), -('10270','Hawk Central Tower Livery','Paints','UNDEFINED','19fa979b-8c22-4e75-a8e1-62c778b6b9ad','','',NULL), -('10271','f_human_mannequin_explorer','ShopDisplay','UNDEFINED','c878c3bb-f2a0-4d68-a231-85d5aa6a4224','','',NULL), -('10272','Seat','Usable','UNDEFINED','463536d4-c907-47db-abaa-36890710ce92','','',NULL), -('10273','Anvil Aerospace T-Shirt','Char_Clothing_Torso_0','UNDEFINED','81b7a449-ab70-433b-9768-69116c4fbce5','','',NULL), -('10274','mod_tray_hotdog_1_a','ShopDisplay','Default','9132939f-ef03-4924-abfa-cffdda18dfbe','','',NULL), -('10275','Door Control','ControlPanel','DoorPart','e0d871cc-bbc9-4e55-aa08-96aea968f29b','','',NULL), -('10276','Ahmanson Gloves','Char_Clothing_Hands','UNDEFINED','264fe967-3f63-410d-8653-36cb98cb9caa','','',NULL), -('10277','Door Control','Door','UNDEFINED','8b34dbe9-e153-4f5b-9a1c-3e2993ca3259','','',NULL), -('10278','TRGT. STATUS','Seat','UNDEFINED','cd1f5318-9d2f-490e-8705-606d5556c0dd','','',NULL), -('10279','Hephaestanite','Cargo','Cargo','88c6eee2-c741-4358-a4b7-2282f4793a34','','',NULL), -('10280','Citadel Arms Roughshod','Armor','Arms','2ee042ec-8dd1-44fe-a584-d3824adb5323','','',NULL), -('10281','Door Control','Door','UNDEFINED','842f9f66-327d-47de-b3ca-3c03e93e23bd','','',NULL), -('10282','H_Dashboard_Projector_HUD_Generic_Alt','Display','UNDEFINED','a5dd45e4-b2c2-4d9b-af96-336bcc3ef138','','',NULL), -('10283','ADP-mk4 Legs Exec','Armor','Legs','0b727012-b73d-43d7-8a82-4dd25733a188','','',NULL), -('10284','Hair Care Product','Misc','UNDEFINED','4736171a-00c1-442e-8f6f-6f20d2d63c4a','','',NULL), -('10285','CRUS_Starlifter_Door_Decal_LifeSupport_A','Decal','DoorPart','fbe5251a-dc32-49e3-a020-0e09f0937944','','',NULL), -('10286','TrueDef-Pro Arms Gold/Grey/Black','Armor','Arms','3a18d6a1-ae8e-446d-bd87-7e92290c497a','','',NULL), -('10287','Zerua Jacket','Char_Clothing_Torso_1','UNDEFINED','c76c8fbc-c532-4e02-80a3-870b365bf070','','',NULL), -('10288','Door Control','ControlPanel','DoorPart','4894f2f7-0370-501d-01b0-186587c98988','','',NULL), -('10289','Testudo Legs Disrupt Camo','Armor','Legs','ddaa7dda-b8f8-4df4-9acf-4fc976134ecb','','',NULL), -('10290','Defiance Arms (Modified)','Armor','Arms','61cdc857-57cf-4335-bca2-0fe4154c0b3d','','',NULL), -('10291','Vehicle_Screen_MFD_Holographic_MISC_Freelancer_L','Display','UNDEFINED','e625fe25-8dcc-4140-b3f2-a55fc0754198','','',NULL), -('10292','Door Control','Door','UNDEFINED','2cd1c3ae-ef21-4279-80c1-2d1f58cba654','','',NULL), -('10293','Pulse Nightrider Livery','Paints','UNDEFINED','8b43f871-5737-4ac4-9648-037d5063334d','','',NULL), -('10294','AEGS_Gladius_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','ac0e33cd-13bb-4776-9717-02d725977ffe','','',NULL), -('10295','Seat','SeatAccess','UNDEFINED','b2d49c3b-c933-4312-9dd0-bff924e86b68','','',NULL), -('10296','Duotone Duster','Char_Clothing_Torso_1','UNDEFINED','c316507a-13e2-4d2a-927c-30fd081f1675','','',NULL), -('10297','Access','SeatAccess','UNDEFINED','82864af2-abf6-4ec5-b324-d926f79e1a3e','','',NULL), -('10298','RSI_Constellation_Aquila_Thruster_Turbine_Rear','ManneuverThruster','JointThruster','35cb4e17-0530-4e7b-8319-3ce6d510a44b','','',NULL), -('10299','ANVL_Valkyrie_Thruster_Main_Rear','MainThruster','FixedThruster','a0bd89dc-6702-4bb8-8035-8604380b2ea9','','',NULL), -('10300','Variable Service Shoes','Char_Clothing_Feet','UNDEFINED','979c18d6-3e59-4038-be76-8364bb0196fc','','',NULL), -('10301','MVSA Cannon ','Weapon','Gun','febc4b3a-09d7-446e-99a4-0f6be2387346','','',NULL), -('10302','DRAK_Cutlass_Thruster_Maneuver_Lateral','ManneuverThruster','JointThruster','3d0717f3-8ac3-4a9a-9956-019e143def82','','',NULL), -('10303','Retaliator Underbrush Livery','Paints','UNDEFINED','39c706be-6f13-49ef-8b3b-1731e33932be','','',NULL), -('10304','f_human_mannequin_deckcrew_undersuit','ShopDisplay','UNDEFINED','5fcedeff-4990-4155-98bf-a93c5531d3a8','','',NULL), -('10305','Seat','Usable','UNDEFINED','8a3a65b5-c9d7-495f-b9d2-36684994be9b','','',NULL), -('10306','Grav Lev 1','ManneuverThruster','JointThruster','991d1cbd-a7e8-46f0-9ee0-3fbfcdf65bbf','','',NULL), -('10307','Taranite (Raw)','Cargo','Cargo','d7f356aa-41c3-4d73-9683-d906b93cfae4','','',NULL), -('10308','bench_table_showroom_1_a','Usable','UNDEFINED','59698d24-3566-4e20-9e67-7127bb86a311','','',NULL), -('10309','Diamond Laminate','Cargo','Cargo','515ace49-9c03-4505-b840-15f2ee29279e','','',NULL), -('10310','Ship Showdown \'52 Mercury Coin','Misc','Utility','136e5e15-f77a-4e16-8ade-87175aeb29d3','','',NULL), -('10311','box_plastic_4_weapon_opened_005x010x00375_a','Misc','UNDEFINED','5b0e95e3-057f-4fcf-a3ea-f306b30dad15','','',NULL), -('10312','INTK_RSI_Perseus','FuelIntake','Fuel','837cccba-2136-472e-ae98-0aad430ca01b','','',NULL), -('10313','Seat','SeatAccess','UNDEFINED','33ecd7ff-9cd8-4b85-8817-3a83ef190fa4','','',NULL), -('10314','m_human_mannequin_survival_secondlife','ShopDisplay','UNDEFINED','f01313a8-4015-48c3-b414-26de29c59562','','',NULL), -('10315','Outback Core Grime Blue','Armor','Torso','c78ade7c-c1c9-4876-9b7c-e4cefbf77402','','',NULL), -('10316','MISC Prospector - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','9435f4fd-d09f-44f3-a72b-27b20b28c1f8','','',NULL), -('10317','Seat','SeatAccess','UNDEFINED','8439d909-43bf-4033-a3b4-65e72acef06b','','',NULL), -('10318','Grilled Chicken Roll Omni Pack','Food','Sachet','0a7dcfec-eca5-4a82-b733-0ece20efc333','','',NULL), -('10319','Bluemoon Fungus','Misc','Harvestable','f0e84bd5-6205-491c-ab80-9cf377032c14','','',NULL), -('10320','Voidripper Dark Cloud Helmet','Armor','Helmet','2014ad88-72be-41a5-bfbb-5ea829c815d6','','',NULL), -('10321','Inquisitor Core Black','Armor','Torso','c6608ba6-3318-4477-b6a6-3d6c3a7461e2','','',NULL), -('10322','Seat','Usable','UNDEFINED','97104994-b04e-473a-a2a7-49ceafe8c528','','',NULL), -('10323','Titanium','Cargo','Cargo','7eebed8f-84b5-4ce8-ab6b-6e1011c67eb4','','',NULL), -('10324','Wrecker Legs Payback','Armor','Legs','80db8cce-4a53-4157-aeaa-3dbd7b842322','','',NULL), -('10325','Seat','SeatAccess','UNDEFINED','7a703b8e-3a7f-40c2-82d9-5fcb6bd23edd','','',NULL), -('10326','Weapon_Rack_ANVL_Atlas_1_Slot','Usable','UNDEFINED','22fc70dd-fbd3-4d30-a155-ce0deed2b1c5','','',NULL), -('10327','DRAK_Clipper_Thruster_Fin_Main_Inner','Misc','UNDEFINED','fb3622bb-70c4-48be-be9b-8e8c25fbbb07','','',NULL), -('10328','Lightstrike I Cannon','Weapon','Gun','0cced6b1-acfd-4c55-96cc-d0503638b9ad','','',NULL), -('10329','Utensil_Ladle','Misc','UNDEFINED','84e9e0a4-e61a-474e-b058-dcc79a414758','','',NULL), -('10330','Door Control','Door','UNDEFINED','c60804e9-a492-4dc4-9993-64c6dd4e6558','','',NULL), -('10331','DustUp Core Firestarter','Armor','Torso','890b8d44-eaad-4771-ad6b-abe683833867','','',NULL), -('10332','Personal Storage','Cargo','UNDEFINED','8f36268b-79f9-4a80-ae47-14097d8303d1','','',NULL), -('10333','Argus Helmet Yellow/Grey','Armor','Helmet','5aeaab89-2fe3-4efd-bada-83c9bea6f343','','',NULL), -('10334','DRAK_Cutlass_Steel_Thruster_Maneuver_Left','ManneuverThruster','JointThruster','b5222c16-e3c4-4208-a63c-2e45be9757cd','','',NULL), -('10335','Door Control','Door','UNDEFINED','e92329e2-637b-4cb2-b99c-b82a8b310248','','',NULL), -('10336','SHIELDS','ShieldController','UNDEFINED','73648c03-3753-4401-be0d-ead0a24f46b6','','',NULL), -('10337','AEGS_Retaliator_OC_Front','Room','UNDEFINED','ee50f6ef-6b78-4eb9-ad9a-d0208c193270','','',NULL), -('10338','Radar_Display_CRUS_Starfighter','Display','UNDEFINED','53e557a2-348f-4aef-84a8-70e64ae49669','','',NULL), -('10339','Door Control','Door','UNDEFINED','22ae6341-c9f9-41f8-968a-cf4f8fc1b3aa','','',NULL), -('10340','Carrack Miniature \"2952 Best in Show\" ','Misc','UNDEFINED','ca0c4dd1-01a2-4539-88e4-139e6e5dfc13','','',NULL), -('10341','AEGS_Javelin_SeatAccess_Rear_Left','SeatAccess','UNDEFINED','094c503f-566d-4c22-8238-4c826a0490b4','','',NULL), -('10342','VariPuck S3 Gimbal Mount','Turret','GunTurret','f0151581-3d41-40c0-809f-71c3afc26428','','',NULL), -('10343','Morozov-SH Legs Vesper','Armor','Legs','193991a2-0905-42b8-9076-468d07b76163','','',NULL), -('10344','ORC-mkV Arms Executive','Armor','Arms','d52f5083-1dfa-42f4-ab17-06a0387206aa','','',NULL), -('10345','SoftLock_Terminal_Standard_Refueling_Starfarer_Catwalk','Display','UNDEFINED','1fa1381c-c892-42ef-8f56-77d36962b7d7','','',NULL), -('10346','Seat','Usable','UNDEFINED','285c844a-fe97-4c31-9577-76b2a6edd3dd','','',NULL), -('10347','Door Control','ControlPanel','DoorPart','1b0aa195-608a-4cc7-aea6-ecf95e5fc68e','','',NULL), -('10348','Door Control','ControlPanel','DoorPart','61c7abca-f35c-4c17-934e-e245b344990a','','',NULL), -('10349','DRAK_Caterpillar_SCItem_Seat_Copilot','Seat','UNDEFINED','55847df3-abf8-4159-9dd0-191e3b0d07c7','','',NULL), -('10350','DRAK_Cutlass_Thruster_Maneuver_Bottom','ManneuverThruster','JointThruster','a1de9fc8-9a5a-4a43-9a95-44d8f28a5582','','',NULL), -('10351','ORC-mkV Legs (Modified)','Armor','Legs','dd61e1f6-26cb-439e-b8a5-63d1c5225e9f','','',NULL), -('10352','Remote Turret','Turret','GunTurret','be5dc09d-583a-44e1-aed3-5bf094460c3a','','',NULL), -('10353','PAB-1 Arms Dark Red','Armor','Arms','ad55fa01-fcde-4ada-9edf-d110cbc40878','','',NULL), -('10354','ORIG_X1_Thruster_Main_Velocity','MainThruster','FixedThruster','85af7127-9c39-485a-a053-3f6d424e6d5f','','',NULL), -('10355','AEGS_Hammerhead_Thruster_Mav_Fixed_LowPoly','ManneuverThruster','FlexThruster','789c0e2c-b5ef-45dc-91e3-6183af19fa5a','','',NULL), -('10356','Small Artifact Fragment (Flawed)','Misc','UNDEFINED','b1f53744-0c95-4922-812b-ed795bd14b54','','',NULL), -('10357','tool_manual_1_screwdriver_b','Misc','UNDEFINED','6ab7750a-7132-4e97-8304-fe08d4c47364','','',NULL), -('10358','MASTER_screen_16x9_6_0094x0054_a','Display','UNDEFINED','ccc9e9c6-98a6-464a-a756-31e8ed159731','','',NULL), -('10359','Food_fruit_decari_pod_01','Food','Plant','09fffd16-ced5-499f-96fa-c7bd5f1c7ef7','','',NULL), -('10360','Door Control','ControlPanel','DoorPart','5b2ee058-02b0-4f09-8635-d73ea1a3fe08','','',NULL), -('10361','LH86 Pistol Magazine (25 cap)','WeaponAttachment','Magazine','068c28b8-3ea3-409a-b08d-1d53ae1e3303','','',NULL), -('10362','DockingTube_Fuel_Ports_RSI_Constellation_Aquila','DockingCollar','UNDEFINED','03885cd9-228a-41d1-9b6f-a7472f77d5b5','','',NULL), -('10363','Personal Care Product','Misc','UNDEFINED','ecdb2155-294d-469c-bf7e-1ab4a6de01b2','','',NULL), -('10364','C8 Pisces Scrubland Camo Livery','Paints','UNDEFINED','194e3f24-e30a-4eb9-9c6f-4a8a0c34b754','','',NULL), -('10365','Seat','Usable','UNDEFINED','a949eee6-7a68-44e7-ade7-47d81857b160','','',NULL), -('10366','Tungsten (Ore)','Cargo','Cargo','33b9ed09-e0f4-4986-ae02-5c9f4dc4cd8a','','',NULL), -('10367','AEGS_Retaliator_OC_Front_Cargo','Room','UNDEFINED','f7784f3b-865a-45d0-9aad-395cbdacc378','','',NULL), -('10368','Cloud City T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','d66f9346-cdec-4379-93e2-a9d19118c8b6','','',NULL), -('10369','TEST_shelf','ShopDisplay','UNDEFINED','b19c3f9d-97d3-4b53-bf73-601eb67d30e9','','',NULL), -('10370','Origin White Queen','Gadget','UNDEFINED','702d29a4-ea9e-4c06-86d5-857b86ba67f5','','',NULL), -('10371','P-Series Murray Cup Livery','Paints','UNDEFINED','da2b554f-7bad-4ac1-9f61-9196a131d485','','',NULL), -('10372','Carryable_1H_CY_bottle_bar_champagne_rsi_a','Misc','UNDEFINED','c6191e64-c47a-4001-9afd-0f064f21630a','','',NULL), -('10373','Prospector Aphorite Livery','Paints','UNDEFINED','44fd4baf-ecb2-40dd-909b-afc333edfbbe','','',NULL), -('10374','Harlowe Shirt Seagreen','Char_Clothing_Torso_0','UNDEFINED','848f77d4-ab81-4a6e-ae73-dd024a82e244','','',NULL), -('10375','DRAK_Cutlass_Thruster_Maneuver_Outer_Bot','ManneuverThruster','JointThruster','52892d57-3656-4d3e-9c63-8a0a90e8ea7b','','',NULL), -('10376','Silverton Pants Olive','Char_Clothing_Legs','UNDEFINED','457f27cb-80a9-419f-b230-7c1a8fbfa033','','',NULL), -('10377','Altimont Pants Dark Teal','Char_Clothing_Legs','UNDEFINED','902b63b1-c288-4fee-ae5f-ca94101a66c5','','',NULL), -('10378','Remote Turret','Turret','PDCTurret','b611629a-ea05-47cf-b71e-6b72b8621847','','',NULL), -('10379','Cadmium Allinide','Cargo','Cargo','d1200ba6-5ec5-459e-82ff-be2420b22bbc','','',NULL), -('10380','Beacon Undersuit Purple/Black','Armor','Undersuit','e0282658-bea2-4f45-afe7-9f1466fc1be0','','',NULL), -('10381','Lastaprene','Cargo','Cargo','22bfac5b-dd4a-403b-a35e-740da4661b24','','',NULL), -('10382','Reliant Tana Missile Launcher','MissileLauncher','MissileRack','64e06a7a-2609-4de3-aad4-1bb2020dfdcf','','',NULL), -('10383','Snaggle Stick (Smoke Daddy)','Food','Bar','99123640-9527-46f6-8fb2-e7eaf2e60a42','','',NULL), -('10384','Prowler Harmony Livery','Paints','UNDEFINED','e6720b13-ea37-44bd-ac16-418d1b879fbc','','',NULL), -('10385','Internal Tank','QuantumFuelTank','QuantumFuel','476ca244-5ffe-4472-850a-bc653d9fbcf7','','',NULL), -('10386','Datapad','Misc','Gadget','ae9dfbd4-e2bf-4cf2-9855-cc178be7ae6a','','',NULL), -('10387','FBL-8a Arms Desert Digital','Armor','Arms','67afb1c7-681a-4da6-94fd-2ce7efd53451','','',NULL), -('10388','Ship Showdown \'52 Scorpius Coin','Misc','Utility','bffe3208-a55b-426c-8ab2-c1ba70ea1c96','','',NULL), -('10389','PAB-4 Light Armor','Suit','Armor','b2e758b5-99b3-40eb-9641-8f30d16f2c1b','','',NULL), -('10390','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','9ea460a8-bfca-4121-866c-947f2808b516','','',NULL), -('10391','Pathfinder IV-G Missile','Missile','GroundVehicleMissile','4359f338-ee1c-47e3-8607-1613bb35dac5','','',NULL), -('10392','VNCL_Stinger_Thruster_Aux_Fixed_01_Bottom','ManneuverThruster','FixedThruster','a62324ce-4df8-4686-b816-1ec8121b062d','','',NULL), -('10393','PTV All Terrain Camouflage: Forest (ATC-F) Livery','Paints','UNDEFINED','847aa805-c322-451a-8b97-f9728e748742','','',NULL), -('10394','Ball','Char_Head_Piercings','UNDEFINED','cd8ddd1b-1ece-42d3-bd04-faf6f1ea9440','','',NULL), -('10395','Avenger Invictus Blue and Gold Livery','Paints','UNDEFINED','6e8b2371-5381-4542-be9a-f6d97bb74612','','',NULL), -('10396','HRST_LaserRepeater_FiringMechanism_S4','WeaponAttachment','FiringMechanism','c765f8cd-ac40-4b77-851f-0f68876428e0','','',NULL), -('10397','Luminalia Gift','Cargo','Cargo','47059963-f01a-4b85-a475-33e117428713','','',NULL), -('10398','Misfit Jacket Rawhide','Char_Clothing_Torso_1','UNDEFINED','a36483e1-8051-441f-86d9-953a4827180d','','',NULL), -('10399','ORIG_890J_Dashboard_Bridge_Left','SeatDashboard','UNDEFINED','4cfb87c4-6968-45d3-b193-89c0306c6d1b','','',NULL), -('10400','ANVL_Terrapin_Thruster_Mav_Fixed','ManneuverThruster','JointThruster','0fe5382e-22c1-4e4b-b6a5-bd92ce054b96','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('10401','orig_fridge_mini_1_a','Cargo','UNDEFINED','9d877b27-922c-48c6-be8a-2c0a1172cfe9','','',NULL), -('10402','Hemera','QuantumDrive','UNDEFINED','3bd1502d-f593-456f-a3a9-14fec5b8c1a5','','',NULL), -('10403','DockingTube_Fuel_Ports_RSI_Aurora_MR','DockingCollar','UNDEFINED','781267b3-afdc-45c4-8763-407e762e789b','','',NULL), -('10404','VariPuck S6 Gimbal Mount','Turret','GunTurret','5b7b1b80-e5ee-4cc3-8b24-93c9353412dc','','',NULL), -('10405','Monde Arms Crimson Camo','Armor','Arms','6c826b04-85b7-4972-8380-d73aa8e3a560','','',NULL), -('10406','Zeus Exploration Backpack Starscape','Armor','Backpack','a511e130-95d3-45af-971e-6d0139e69a81','','',NULL), -('10407','BANU_Defender_Thruster_Mav_Top','ManneuverThruster','JointThruster','31e09ba0-d489-497b-8db0-53de00ff04c6','','',NULL), -('10408','Stud','Char_Head_Piercings','UNDEFINED','4fb636e1-3a50-46a2-925d-378336c78334','','',NULL), -('10409','Cobalt','Cargo','Cargo','8a128475-6dfb-4afd-984d-b77598082ef4','','',NULL), -('10410','Spirit IceBreak Livery','Paints','UNDEFINED','5e615822-2ae1-4f8d-a9f9-3d83c2912c7e','','',NULL), -('10411','SHIELDS','ShieldController','UNDEFINED','03a2e793-1b0e-4361-b886-7dd59102051d','','',NULL), -('10412','Retaliator Grey Livery','Paints','UNDEFINED','efab3704-b3af-463a-bb23-ffed977ea759','','',NULL), -('10413','DRAK_Cutter_Rambler_Thruster_Main_Left','MainThruster','FixedThruster','11ff1548-eb09-4a36-8365-f86980c157c6','','',NULL), -('10414','ESPR_LaserCannon_PowerArray_S4','WeaponAttachment','PowerArray','4429224f-35f4-497b-b23a-c7861285ea68','','',NULL), -('10415','Aves Arms Epoque','Armor','Arms','c39d6475-f85a-4084-9b4b-c5d13d976046','','',NULL), -('10416','RSI_Constellation_Andromeda_Thruster_Main','MainThruster','FixedThruster','d3d287b8-947a-4b9c-8c24-ab69e5e8db42','','',NULL), -('10417','Anvil Bastion Ship Armor','Armor','Medium','eb6c0f07-8bf4-4edd-8386-1f31d00a0cb3','','',NULL), -('10418','SafeTow S3 Towing Beam','TowingBeam','UNDEFINED','fd3625ad-6dce-4a48-ac86-3c7f8f09e11f','','',NULL), -('10419','Kamar Jacket','Char_Clothing_Torso_1','UNDEFINED','fef9e55d-4c9f-4849-885a-625ce1d1dcd4','','',NULL), -('10420','Nox Whirlwind Livery','Paints','UNDEFINED','3f6c02bc-9cb2-4759-a26a-9bf47c476cab','','',NULL), -('10421','CRUS_Starlifter_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','08042a38-a5e5-4864-aea8-e9f934c7315b','','',NULL), -('10422','Flight Blade','FlightController','UNDEFINED','278e5e83-f74f-4cd2-8b02-306675bdce0a','','',NULL), -('10423','AEGS_Sabre_Thruster_Mav_TopRL','ManneuverThruster','JointThruster','04152838-c121-4b87-8558-ca1a3eb1721f','','',NULL), -('10424','TRGT. STATUS','Seat','UNDEFINED','86a10b84-b0bf-45bd-95a7-05e69a66d9ac','','',NULL), -('10425','FarSight (8x Telescopic)','WeaponAttachment','IronSight','7b02ea9f-ba9a-48a9-89c4-e557155bd471','','',NULL), -('10426','Golden Medmon','Misc','UNDEFINED','2b6e605b-d7a1-4691-8bb4-d38021d62540','','',NULL), -('10427','Flight Recorder','Cargo','Small','dd3df180-9aa4-4ee8-adaf-29f934674505','','',NULL), -('10428','HexaPolyMesh Coating','Cargo','Cargo','c39afc94-364d-40fb-bdd2-0a13c8345f77','','',NULL), -('10429','Potassium','Cargo','Cargo','e8e41da8-6429-4d98-ac9f-4251f20f502a','','',NULL), -('10430','ARGO_SRV_Thruster_Retro','ManneuverThruster','UNDEFINED','ee762ea7-e49f-4402-a6ff-95ce26f4050d','','',NULL), -('10431','NDB-30 Repeater','Weapon','Gun','2f9fad1d-f591-4e69-ae64-af5ba0a883f7','','',NULL), -('10432','Agricium','Cargo','Cargo','39fc3d72-496b-40e8-8861-94e4285c16f1','','',NULL), -('10433','FBL-8u Undersuit Arctic Digital','Armor','Undersuit','0208e4e8-1463-4749-a6ff-1f289cfc5353','','',NULL), -('10434','Field Recon Suit Legs','Armor','Legs','cc7aa50a-e09d-4d23-a417-1386a35b0a2b','','',NULL), -('10435','CRUZ Dark','Drink','Bottle','6fb96ac8-464d-4345-b45d-49e851b32957','','',NULL), -('10436','Access','SeatAccess','UNDEFINED','9b51951e-aebc-4a39-8506-8550b2d67dcb','','',NULL), -('10437','RSI_Constellation_PH_BayWall_Left','Container','UNDEFINED','5072c903-f5ed-4373-a526-6240cfeaeb0d','','',NULL), -('10438','Venture Helmet Violet','Armor','Helmet','441d03a3-dee1-48f4-bf9e-b803cb76e530','','',NULL), -('10439','Armor_Crate_CZ_Firerat_005','Usable','UNDEFINED','fdb03d42-9120-4119-b47d-8fb816136392','','',NULL), -('10440','Sion Compensator3','WeaponAttachment','Barrel','f739108f-7720-4a5e-b173-a65e07b314da','','',NULL), -('10441','display_weapon_rack_1_grate_b','ShopDisplay','UNDEFINED','d96deee3-6b30-4cd1-95a1-f4f7bfb56391','','',NULL), -('10442','ADP Core','Armor','Torso','cf98d3f9-24d1-47b2-9cb9-f7ba09e3571f','','',NULL), -('10443','Carnifex Armor Legs Bruiser','Armor','Legs','28e7f7de-287b-4370-93b3-d24515b4c3cb','','',NULL), -('10444','ARMR_CRUS_Star_Runner','Armor','Medium','fc82cdb8-4933-4cd7-955d-2e95a8e3e14e','','',NULL), -('10445','TRGT. STATUS','Seat','UNDEFINED','5285c8fb-d828-417a-903d-b41f10f596d1','','',NULL), -('10446','icePick','FPS_Consumable','Hacking','f6912bc9-83d8-4424-8579-367f1b2856e3','','',NULL), -('10447','Seat','SeatAccess','UNDEFINED','018b0fef-6f87-4291-8628-9c37fb5cf99f','','',NULL), -('10448','MSD-582 Missile Rack','MissileLauncher','MissileRack','31a7dd73-e9e4-419b-85ab-43a489d0e02b','','',NULL), -('10449','Agricultural Supplies','Cargo','Cargo','0df31f11-c659-4e7b-ad8b-d15106ed339e','','',NULL), -('10450','Seat','Usable','UNDEFINED','dd68d2ee-f9f1-4b80-9816-66227651a613','','',NULL), -('10451','Bexalite','Cargo','Cargo','9f63146d-c8e7-4e19-afd5-c05c0c19e995','','',NULL), -('10452','Mirai Fury MX 2xS1 Missile Rack','MissileLauncher','MissileRack','25d8a725-42f4-4f2c-a197-b653c8383868','','',NULL), -('10453','Door Control','ControlPanel','DoorPart','baf98d38-2f62-4d4d-bd68-ba33dd47a85b','','',NULL), -('10454','300 Series Scarlet Steel Paint','Paints','UNDEFINED','63bff2af-0221-41e5-885a-3fb4cb1380d4','','',NULL), -('10455','Vehicle_Screen_MFD_Holographic_Glaive_BR','Display','UNDEFINED','f1f7b60b-3fc6-4346-adff-d1f4ab8bb9f3','','',NULL), -('10456','AEGS_Retaliator_OC_Front_Base','Room','UNDEFINED','215e992a-0bb6-4bf2-9f74-b0e880fd447d','','',NULL), -('10457','Strode Pants Sleet','Char_Clothing_Legs','UNDEFINED','8a528e68-1870-4292-8c88-63659254ec89','','',NULL), -('10458','DustUp Legs Desert','Armor','Legs','8a83964b-e892-41a5-be76-d362e06581d5','','',NULL), -('10459','Nyman Jacket Imperial','Char_Clothing_Torso_1','UNDEFINED','25ce3f6c-1743-4bac-a6fa-9a01495ab245','','',NULL), -('10460','Ridgely Jacket Wavelength','Char_Clothing_Torso_1','UNDEFINED','5687180c-e590-4d7d-9d61-fbf0ce7f238f','','',NULL), -('10461','Calister Jacket','Char_Clothing_Torso_1','UNDEFINED','4465e84b-3244-4f8a-bb7e-0f84cf2d9a02','','',NULL), -('10462','AEGS_Hammerhead_Thruster_Mav_Fixed_Bottom','ManneuverThruster','FlexThruster','4369917e-024c-4437-8a92-34888ba2e086','','',NULL), -('10463','ORIG_X1_CML_Flare','WeaponDefensive','CountermeasureLauncher','3d8fdd0f-e993-43e1-a632-ef002d36befb','','',NULL), -('10464','DRAK_Clipper_Thruster_Main','MainThruster','UNDEFINED','12d39281-daf3-4119-890a-cef1692ff0f6','','',NULL), -('10465','Carryable_1H_CY_tool_manual_socket_2_b','Misc','UNDEFINED','cf0c8912-8cee-4bed-9313-ff84e9e57050','','',NULL), -('10466','weapon_underbarrel_light_narrow_purple_01','WeaponAttachment','Light','18d0e506-c28f-48fb-820b-d0333ca25db5','','',NULL), -('10467','display_components_s2_modular_power','ShopDisplay','UNDEFINED','bf79af95-1a2e-4fcf-9097-9e47b7b5ec6b','','',NULL), -('10468','ESPR_Talon_Thruster_Mav_Bottom','ManneuverThruster','JointThruster','116a7399-7be0-4273-ae00-92c8c6c687f1','','',NULL), -('10469','ESPR_LaserCannon_Barrel_S4','WeaponAttachment','Barrel','2918d41c-ae45-40ed-adf8-b50461e38532','','',NULL), -('10470','Grappler Gloves','Char_Clothing_Hands','UNDEFINED','4ec71867-d197-4047-8d20-e6b32328c48e','','',NULL), -('10471','Door Control','Door','UNDEFINED','fa573c68-272f-4609-9f4c-9473cd14b375','','',NULL), -('10472','Parallax \"Sunstone\" Energy Assault Rifle','Weapon','Medium','3e58c8fd-19ff-47b6-9b3a-333addb2573d','','',NULL), -('10473','Jaclium (Ore)','Cargo','Cargo','ea79efd5-6eaf-49ae-bd9b-4f1a9f1993c0','','',NULL), -('10474','Raw Ouratite','Cargo','Cargo','da08c30f-b989-4417-bb80-06850166207b','','',NULL), -('10475','Storm GCD-Army Livery','Paints','UNDEFINED','c3f4df2e-b978-47e9-b56c-7a27773d733b','','',NULL), -('10476','Carnifex Armor Core Bruiser','Armor','Torso','9d72d08c-9f77-4c3b-afc8-b5e6170c9430','','',NULL), -('10477','ANVL_Pisces_Thruster_Retro_Left_C8X','ManneuverThruster','JointThruster','ed5b0de0-6663-45ed-9b79-a7005b6daf8a','','',NULL), -('10478','Door Control','Usable','UNDEFINED','c7555736-0b2e-4151-85de-f214ec44b528','','',NULL), -('10479','Bed_OpenClose','Usable','UNDEFINED','0813eabf-5d58-4ccb-86f0-84aa6a97036a','','',NULL), -('10480','Wastelander Undersuit','Armor','Undersuit','8b1649cc-aaa2-4895-a993-7307e7c7598e','','',NULL), -('10481','Door Control','ControlPanel','DoorPart','71984fe6-fd24-4da3-aa60-eee7d024836d','','',NULL), -('10482','ControlPanel_Screen_LiftControl_1x1','ControlPanel','DoorPart','706216ae-f221-4d53-8c0a-2220b5b841b4','','',NULL), -('10483','CRUS_Spirit_C1_Exterior_Collector','Misc','UNDEFINED','50feaf43-598c-4de3-b6c8-3c65fe132627','','',NULL), -('10484','Ship Ammunition','Cargo','Cargo','a14f2f2a-d6e7-4109-aef5-c3a8ca295a73','','',NULL), -('10485','AEGS_Reclaimer_Locker_Door_L','Player','UNDEFINED','c93dc15f-1979-4e16-bdfb-590bdfeba167','','',NULL), -('10486','KRIG_L21_Wolf_Thruster_Pipe_Right','AttachedPart','UNDEFINED','bd014a33-8612-4570-ad28-9c10750ce454','','',NULL), -('10487','XDL \"Tactical\" Monocular Rangefinder','Weapon','Gadget','89321e56-3758-4c3e-8d8c-89948518c734','','',NULL), -('10488','Detara Jacket VIneland','Char_Clothing_Torso_1','UNDEFINED','5543ef74-868b-4d97-8bc8-9643725f7a26','','',NULL), -('10489','MISC_Starlancer_Thruster_Mav_Top','ManneuverThruster','FixedThruster','54e280b3-7695-468b-a886-3502e9a5c0d7','','',NULL), -('10490','Waldron Jacket White','Char_Clothing_Torso_1','UNDEFINED','a1b11659-1f1a-4e6b-b5f7-66242442e641','','',NULL), -('10491','Cyclone Finish Line Livery','Paints','UNDEFINED','4148e2a6-4135-446e-b7d4-8a4ff5355c29','','',NULL), -('10492','Nyman Jacket Purple','Char_Clothing_Torso_1','UNDEFINED','c438ac68-6b55-4e20-be3d-f37d41a39ec5','','',NULL), -('10493','Omnapoxy','Cargo','Cargo','5029e09a-9905-468a-978e-722f345f1f6e','','',NULL), -('10494','Diligence','PowerPlant','Power','be3eb52b-243a-4ed9-833a-d348f910a32a','','',NULL), -('10495','Drivetrain','WheeledController','UNDEFINED','5b34e25e-bf67-44be-9244-a137f2b17190','','',NULL), -('10496','m_human_mannequin_legacy_marine_heavy','ShopDisplay','UNDEFINED','07de8c67-7ac9-4cbb-b39b-c47070f5f7de','','',NULL), -('10497','Tolo Jacket Dark Teal Stripe','Char_Clothing_Torso_1','UNDEFINED','61e8df1e-0ce6-4b96-ae38-20fc6d578db7','','',NULL), -('10498','ADP-mk4 Core Justified','Armor','Helmet','bdc57882-359e-4ba1-a8d3-9bb645ebea8b','','',NULL), -('10499','Door Control','ControlPanel','DoorPart','d6fded4a-9062-4be3-8283-575607a27638','','',NULL), -('10500','G-2 Helmet Imperial','Armor','Helmet','def46478-4494-44f9-9f2c-e516a8780a95','','',NULL), -('10501','Taranite (Raw)','Cargo','Cargo','b1a55391-bbc1-45fc-9466-9fed47039e1b','','',NULL), -('10502','Venture Arms','Armor','Arms','2b021c8a-5cfc-4316-a228-6e8e0e220162','','',NULL), -('10503','ThermalFoam','Cargo','Cargo','62b5a361-0d9c-4527-ac9c-60e8f1bfb2b8','','',NULL), -('10504','Morningstar Helmet Dark Green','Armor','Helmet','ae7a6249-33ae-42b0-bfa1-f3fa6f9ffa3e','','',NULL), -('10505','Norfield','DockingCollar','UNDEFINED','b46eae55-2ed3-4008-9635-8fe26a1a3a4c','','',NULL), -('10506','Hardean Jacket and Shirt Dallas','Char_Clothing_Torso_1','UNDEFINED','c2904256-5ac1-4380-a356-99228156f7ac','','',NULL), -('10507','ESPR_Talon_Thruster_Retro_R','ManneuverThruster','FixedThruster','1ef259f9-e889-49dc-8467-10f4effb4c9c','','',NULL), -('10508','Stirling Exploration Backpack Granite Edition','Armor','Backpack','6fa2057f-c865-426d-9f08-b3627bbbb477','','',NULL), -('10509','Stella Fortuna \'54 Coin','Misc','Utility','44c0e27b-70fc-486d-a8a6-858a0f118b2c','','',NULL), -('10510','Carrack Headhunters Trauma Livery','Paints','UNDEFINED','714504f3-0634-432b-8a77-3af72f52d853','','',NULL), -('10511','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','594e5e7a-1016-43f2-9999-4287bb7890ca','','',NULL), -('10512','Seat','SeatAccess','UNDEFINED','76e87307-6050-4587-a325-cb0e72a1db45','','',NULL), -('10513','Cargo_Comm_125x3_Vice_Stims','Cargo','Cargo','58fd4740-1cf3-4a53-bcbe-2569e8cf7d52','','',NULL), -('10514','Davin Work Gloves Blue','Char_Clothing_Hands','UNDEFINED','11751f17-95f8-414f-b5e4-071cceaf568a','','',NULL), -('10515','ADP Arms Orange','Armor','Arms','eeef5072-9099-44a3-8950-efec5769fdf2','','',NULL), -('10516','Door Control','ControlPanel','DoorPart','bdc8b498-16f5-4147-a5fb-43624ae6a214','','',NULL), -('10517','Copper (Ore)','Cargo','Cargo','298b5f65-3c52-4446-949e-e55ec57d1268','','',NULL), -('10518','MISC Reliant Ship Armor','Armor','Medium','cb95183c-9957-4949-a76b-cb34c309bb11','','',NULL), -('10519','Railing_Straight_4m_Hurston_Lorville_Glass_A','Usable','UNDEFINED','903798f1-e79a-495f-97c0-3ff2b8662517','','',NULL), -('10520','RSI Decoy Launcher','WeaponDefensive','CountermeasureLauncher','9281a5b2-6211-4dcb-909f-57ec70ce4117','','',NULL), -('10521','Seat','Usable','UNDEFINED','9451d536-d062-4b7f-8099-ae90d2b3f614','','',NULL), -('10522','Constellation Invictus Blue and Gold Livery','Paints','UNDEFINED','aea811c0-c709-4b1e-8c38-ce0def31debe','','',NULL), -('10523','TopLine Apron Pants Whammer\'s','Char_Clothing_Legs','UNDEFINED','4085636a-8c3c-47b4-b89c-8f7221201ef3','','',NULL), -('10524','Door Control','ControlPanel','DoorPart','455b2a13-9140-4c61-94c0-c65f89f4954b','','',NULL), -('10525','MISC_Fortune_Ground_Refueling_Port','Door','UNDEFINED','8c462cbe-ecf2-4a68-a34f-931ecf13367b','','',NULL), -('10526','CRUS_Starlifter_CargoGrid_Small_A2','CargoGrid','UNDEFINED','e2ed45c8-cadd-4082-af72-9357f32b2e6e','','',NULL), -('10527','Fotia Seedpod','Cargo','Cargo','3aada733-8f06-42ae-8af9-36c19b354dc7','','',NULL), -('10528','LH86 \"Permafrost\" Pistol','Weapon','Small','27b1ae96-778f-443e-b74f-204888ae35c6','','',NULL), -('10529','m_human_mannequin_odyssey_suit_16','ShopDisplay','UNDEFINED','62b9664c-d5eb-4fbd-b3fa-66c90398b450','','',NULL), -('10530','Railing_Straight_4m_Lowtech_Catwalk_A','Usable','UNDEFINED','0cfebeca-2074-492b-b6f0-bbcf1cfdb724','','',NULL), -('10531','Venator Boots Molten','Char_Clothing_Feet','UNDEFINED','5eebd931-167a-467e-8349-a6cd82df15b0','','',NULL), -('10532','Weapon_Rack_Cz_Firerat_004','Usable','UNDEFINED','d988f771-eab7-4ae8-bde8-e51abba680e8','','',NULL), -('10533','Medium Artifact Fragment (Flawed)','Misc','UNDEFINED','11970df0-5796-43b0-aff0-ad026cb61ca3','','',NULL), -('10534','Door Control','ControlPanel','DoorPart','5077feae-a0cd-4a1a-ae4f-f6e8be0c69cc','','',NULL), -('10535','DRAK_Cutlass_Blue_Thruster_Maneuver_Right','ManneuverThruster','JointThruster','32ccc804-9142-4481-8c08-7058ed0fb823','','',NULL), -('10536','Drivetrain','WheeledController','UNDEFINED','4fb3ab46-25d3-4b41-af0b-f454e8a93503','','',NULL), -('10537','Taranite','Cargo','Cargo','33be464b-34df-427e-8dc7-70bdbd528fa3','','',NULL), -('10538','Seat','Usable','UNDEFINED','be9e9e7e-16df-4e9b-aaa0-7f9ed3a6761a','','',NULL), -('10539','Flight Blade','FlightController','UNDEFINED','caa7a6dd-5975-405f-8c96-44d0ce3be6b7','','',NULL), -('10540','Internal Tank','QuantumFuelTank','QuantumFuel','a8410d5b-4adb-490c-836b-7acbbeff8e10','','',NULL), -('10541','Morozov-SH-S Helmet Spite','Armor','Helmet','a122d5b5-9bec-4855-a0e4-b94727e325bc','','',NULL), -('10542','ORIG_M50_Thruster_Mav_Fixed_Bottom','ManneuverThruster','FixedThruster','868ce6db-490a-4871-b93f-df4d63b91cb0','','',NULL), -('10543','MRAI_Pulse_LX_Thruster_Mav','ManneuverThruster','FixedThruster','882270cd-457d-42c8-85bb-18d7aedd0f56','','',NULL), -('10544','Utensil_Plate_Tikka','Misc','UNDEFINED','9fb983ce-1576-4655-9801-37ee617d12c1','','',NULL), -('10545','Prim Shoes Tan','Char_Clothing_Feet','UNDEFINED','7f967ac9-fd18-42ce-8002-9e86469cb7e1','','',NULL), -('10546','MRAI_Guardian_Thruster_Retro','ManneuverThruster','Retro','15c1a760-442b-4893-949e-326274dbcecb','','',NULL), -('10547','Clempt Pants Dark Red','Char_Clothing_Legs','UNDEFINED','ccab5ae1-2ad5-4b7b-b47a-6857583e442b','','',NULL), -('10548','ANVL_Door_Decal_Carrack_Ladder','Decal','DoorPart','6d24cde5-31ca-4aee-a181-103a46503d2d','','',NULL), -('10549','Tuvois Jacket Yellow','Char_Clothing_Torso_1','UNDEFINED','fa2824c2-b143-4082-b954-5b15f64a2e07','','',NULL), -('10550','Razorback Pants Green','Char_Clothing_Legs','UNDEFINED','a7c713dc-b6d5-4fe7-a19f-ff50fd1a5c0d','','',NULL), -('10551','Seat','SeatAccess','UNDEFINED','c59e98c6-556e-4feb-a3fb-3815d56a64ca','','',NULL), -('10552','Weapon_Rack_RSI_Aurora_Mk2_8_Slot','Usable','UNDEFINED','e9a230de-6bc8-43c4-b0a8-1b7a45f37cfb','','',NULL), -('10553','Internal Tank','FuelTank','Fuel','470a944b-bfbc-4ceb-837c-dbf721fd6c46','','',NULL), -('10554','MISC_Razor_Thruster_Lateral','ManneuverThruster','FixedThruster','fdd5da78-74a6-46d3-a64e-d5d826299df1','','',NULL), -('10555','Argo Hat Slate','Char_Clothing_Hat','UNDEFINED','9b4ae63f-1fc5-4551-8345-a04a45dcb916','','',NULL), -('10556','M8A Cannon','Weapon','Gun','4e3897c1-a48f-4dce-b3cf-0f91fe3eb0f6','','',NULL), -('10557','RSI_Aurora_GS_CL_Thruster_Retro_Right','MainThruster','FixedThruster','25c9c739-1f69-4c16-8df6-beb582b64b6e','','',NULL), -('10558','Overlord Arms Switchback','Armor','Arms','6482300c-bb8b-4d54-b198-19221b789338','','',NULL), -('10559','Adiva Jacket Yellow','Char_Clothing_Torso_1','UNDEFINED','71496f52-dc9b-481f-841c-5f02b560ac02','','',NULL), -('10560','RSI_Polaris_Dashboard_ATC_NoFlight','SeatDashboard','UNDEFINED','9f14e554-df6f-4a19-984c-5e5a09ad8e41','','',NULL), -('10561','RSI Default JetPack','Suit','ThrusterPack','f66a70d5-a484-4b01-b4e0-24b90c4c86f5','','',NULL), -('10562','Reclaimer Dolivine Livery','Paints','UNDEFINED','a00d9465-8e6f-4597-9bd0-1a0d0d24ab0d','','',NULL), -('10563','Lynx Core Sienna','Armor','Torso','3f1c3650-9760-48be-b285-a24ad58caff4','','',NULL), -('10564','Inquisitor Legs Sienna','Armor','Legs','11670a31-10ce-4aea-b1fe-a27ea4068943','','',NULL), -('10565','Libio Jacket Yellow','Char_Clothing_Torso_1','UNDEFINED','c5626a80-16b7-4a8a-9f80-77c183518bc9','','',NULL), -('10566','Quartz \"New Dawn\" Energy SMG','Weapon','Medium','ae9081fd-58c2-4346-a71e-bb834d00df89','','',NULL), -('10567','Organics','Cargo','Cargo','b948548b-180b-430f-86f2-4edd8810a334','','',NULL), -('10568','ASAD_DistortionRepeater_FiringMechanism_S3','WeaponAttachment','FiringMechanism','c5fe3707-d93e-42b7-8c6f-7e9c8ce695fc','','',NULL), -('10569','game_chess_1_rook_b','Misc','UNDEFINED','868d9cd3-15df-415d-924a-9ee9cc78b69d','','',NULL), -('10570','Hull A Bombora Livery','Paints','UNDEFINED','9f99d159-e50a-4693-afb3-0ec99a64828d','','',NULL), -('10571','PAB-1 Core Executive','Armor','Torso','7fac7127-200f-4152-bed5-2b7362981d75','','',NULL), -('10572','Valkyrie Foundation Fest Livery','Paints','UNDEFINED','4f90232a-2a34-45d4-bf47-1985139de61d','','',NULL), -('10573','Internal Tank','FuelTank','Fuel','8e325d76-2ec1-4b71-8f9b-075a0bb9429a','','',NULL), -('10574','Seat','SeatAccess','UNDEFINED','7729a98c-63b7-4794-ba8f-3fcaa81ffa42','','',NULL), -('10575','ANVL_Terrapin_Thruster_Mav_Joint','ManneuverThruster','FixedThruster','99aaf279-efd4-4db2-a1bc-00e0d8a96dbe','','',NULL), -('10576','Door Control','ControlPanel','DoorPart','2022a5b2-cd42-46c5-b9d5-a51add45e0d2','','',NULL), -('10577','Orsen Officer Pants','Char_Clothing_Legs','UNDEFINED','cbfd8fd6-4fda-4c8f-ab70-1dec05543334','','',NULL), -('10578','ControlPanel_Screen_LightControl_4x3','ControlPanel','DoorPart','5a4fe35e-f408-49ee-8860-a04ec0f3359e','','',NULL), -('10579','Mercury','Cargo','Cargo','a2611765-3c56-4acc-8fc3-fd589b1a9666','','',NULL), -('10580','Razor Hosanna Livery','Paints','UNDEFINED','5f43669d-b4d3-4da9-801b-fa91956b529e','','',NULL), -('10581','Manned Turret','Seat','UNDEFINED','4cbb0194-a946-da9a-e179-4b7f5b98ce98','','',NULL), -('10582','Nyman Jacket Yellow','Char_Clothing_Torso_1','UNDEFINED','4dd8dee2-4019-4a4a-b320-fb4e7665b4c5','','',NULL), -('10583','Glas_Cup','Misc','UNDEFINED','14ce076b-b5fd-48ad-8f64-1d3d53f28e13','','',NULL), -('10584','Door Control','Door','UNDEFINED','d1b1f7a1-d033-422b-a4d4-cb315ecf0f4b','','',NULL), -('10585','Flight Blade','FlightController','UNDEFINED','61adfd26-1fb1-4a59-a8e9-68ea406b46c3','','',NULL), -('10586','Carryable_1H_CY_weight_dumbbell_1_16kg_b','Misc','UNDEFINED','808d6323-a5a2-4afc-92ea-5c19142b71bd','','',NULL), -('10587','Projector_HUD_Mining_MOTH','Display','UNDEFINED','65d936f2-9e44-4ebd-ba75-8f1775df0f01','','',NULL), -('10588','Terra Liberty Ale (Bottle)','Drink','Bottle','0179f52a-2214-40c3-8d82-94ff974ce97d','','',NULL), -('10589','Slayer Cannon','Weapon','Gun','60c7754c-32db-4855-9673-fb849d5e3a4a','','',NULL), -('10590','Wrecker Helmet Payback','Armor','Helmet','a728485f-0fc2-41de-bf20-6feee8323c64','','',NULL), -('10591','Seat','Usable','UNDEFINED','b7b4d504-5fcd-4a86-a019-1f77a7c416dc','','',NULL), -('10592','Lynx Arms Abyss','Armor','Arms','a88fda49-54dc-4b2b-8e19-33559c29df55','','',NULL), -('10593','DockingTube_Fuel_Ports_ORIG_85X','DockingCollar','UNDEFINED','3aaa0d85-8e41-49d3-a362-6fc8de1b36a1','','',NULL), -('10594','Palatino Core Moonfall','Armor','Torso','a554ed13-c5d6-46df-a7b0-dce25cefe9d2','','',NULL), -('10595','Bed','Usable','UNDEFINED','bdc7306f-d879-43e8-9ef3-dd70c18ae8f7','','',NULL), -('10596','Outback Helmet Molehill Brown','Armor','Helmet','3964b84c-f63a-4dbd-aaaa-8c6cadf861dd','','',NULL), -('10597','INTK_AEGS_Javelin','FuelIntake','Fuel','e5dac81e-796d-48f1-9d84-08cf73409e8b','','',NULL), -('10598','Allegro','QuantumDrive','UNDEFINED','70163f66-522d-4161-824e-18eb08299258','','',NULL), -('10599','TRGT. STATUS','Seat','UNDEFINED','d97e2015-2833-4d84-891d-c47973ef95e0','','',NULL), -('10600','Weapon_Rack_2_Slots_RSI_Meteor','Usable','UNDEFINED','da91c3eb-3b66-46f3-89d2-5938e1885ab9','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('10601','Abetti','Radar','MidRangeRadar','1c6c2145-5f0f-4a69-adf6-82339a0b2559','','',NULL), -('10602','GMRCK_S02_TMBL_Storm_AA_Custom','GroundVehicleMissileLauncher','GroundVehicleMissileRack','65193d8e-3df2-4eed-bf13-71d95c0ddec4','','',NULL), -('10603','Carryable_2H_FL_MissionItem_IndustrialFlare','Misc','UNDEFINED','10838ba5-d257-4708-8601-7d41ac8efb34','','',NULL), -('10604','Carryable_2H_CY_weight_barbell_bumperplate_1_20kg_b','Misc','UNDEFINED','c05c9802-ee90-45a5-a01f-705ca0fe77dc','','',NULL), -('10605','MISSILES','MissileController','UNDEFINED','158a8461-a8b2-4778-ac64-63ae56a1f5a0','','',NULL), -('10606','Flight Blade','FlightController','UNDEFINED','b879d40e-5066-40e8-92ff-d8f32c6376a0','','',NULL), -('10607','Carinite','Cargo','Cargo','b7cea3c9-0c55-4fd0-8c2c-ef70245389c9','','',NULL), -('10608','Veil Flash Hider3','WeaponAttachment','Barrel','678aae5b-0d55-42fb-bfe2-ce9973715529','','',NULL), -('10609','LifeCore Boots','Char_Clothing_Feet','UNDEFINED','6f71ba7a-97a9-43d5-bb65-d6ac15fcff2b','','',NULL), -('10610','Flight Blade','FlightController','UNDEFINED','fdec799f-dc40-45e0-bc57-6ed70b33b5c3','','',NULL), -('10611','shelf_hat_bandana_02x01x01_03Ports','ShopDisplay','Default','ca41a962-b89f-4f68-b6a4-d9207d332e07','','',NULL), -('10612','ORIG_350r_Thruster_Mav_Fixed_02','ManneuverThruster','FixedThruster','3250a417-37a9-4ae1-aa85-5939269e3296','','',NULL), -('10613','Avenger Titan Standard Flight Blade','FlightController','UNDEFINED','42a4e6e4-a6cf-4a51-998b-5131f8fe821c','','',NULL), -('10614','Weapon_Rack_1_Slot_ARGO_Pistol','Usable','UNDEFINED','31bf792a-d35f-4f44-8bad-fba57650be77','','',NULL), -('10615','Door Control','ControlPanel','DoorPart','f4310978-24b9-4a71-a26f-ebeecf9fae58','','',NULL), -('10616','Door Control','Door','UNDEFINED','46f538de-0d79-49e0-89a9-90bf1454551a','','',NULL), -('10617','Devastator \"Starchaser\" Shotgun','Weapon','Medium','a150758d-fb03-435d-bad8-77774292f4ba','','',NULL), -('10618','Finley the Stormwal Mug','Drink','UNDEFINED','1ad58e8f-ffc7-4e9a-81e7-f808c8d8d465','','',NULL), -('10619','ANVL_Hornet_F7CM_Mk2_Thruster_Main','MainThruster','FixedThruster','cf25a82a-95fb-49b2-b0f1-4b3efc605361','','',NULL), -('10620','Main Powerplant','PowerPlant','Power','ae9cec5a-0917-441d-802b-3d96d79478cc','','',NULL), -('10621','Radar_Display_CRUS_Spirit_A1','Display','UNDEFINED','f7a2d524-445e-4fb0-8387-404ce67b67d0','','',NULL), -('10622','Redfin Energy Modulators','Cargo','Cargo','3a199ae7-7d0b-4ca9-8d2e-369ada31fec2','','',NULL), -('10623','Anvil Gladiator - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','b16cbb47-7dc7-4be4-b95e-de7275f9cd2d','','',NULL), -('10624','Snapback Boots','Char_Clothing_Feet','UNDEFINED','49932044-a878-47cf-9114-782f4d3e7bad','','',NULL), -('10625','TopLine Apron Pants Kel-To','Char_Clothing_Legs','UNDEFINED','796fb0f7-6987-4d0f-8b19-3fb801c57929','','',NULL), -('10626','S71 Rifle Magazine (30 cap)','WeaponAttachment','Magazine','1fc5d1dc-1fbd-480b-9b1a-a5121963de78','','',NULL), -('10627','Calister Jacket Armadillo','Char_Clothing_Torso_1','UNDEFINED','c0a76c89-7b05-4f94-9c15-0fc31ecfdfc1','','',NULL), -('10628','Carryable_1H_CY_personal_flare_1_a','Misc','UNDEFINED','772340c2-5c67-4d26-8385-320f93ced5bc','','',NULL), -('10629','Aluminum','Cargo','Cargo','c9eabe69-ba70-4567-94b8-c39d78d0c739','','',NULL), -('10630','Jericho','Weapon','Rocket','679d7f26-7539-4414-976d-0c809ba89933','','',NULL), -('10631','facial_hair_031','Char_Head_Beard','UNDEFINED','c3080eb5-5e6d-4659-9f35-a68721830b13','','',NULL), -('10632','Weapon_Rack_1_BEHR_Sniper_Common_001','Usable','UNDEFINED','03edfc1a-9a7b-488d-bc15-d1c7a9dec612','','',NULL), -('10633','AEGS_Reclaimer_Thruster_Mav_Fixed_Large','ManneuverThruster','FixedThruster','e54842f8-e002-4b9e-8e68-40d7a06414f7','','',NULL), -('10634','Quantainium','Cargo','Cargo','b84af979-4f10-481e-bd1c-280e3cd147fb','','',NULL), -('10635','Processed Food','Cargo','Cargo','f3929b85-0191-4cd9-9d3c-8afd8594ef43','','',NULL), -('10636','Borase (Ore)','Cargo','Cargo','30211a91-e90c-45eb-8860-eb88f90c6b6b','','',NULL), -('10637','weapon_underbarrel_light_wide_Darkblue_01','WeaponAttachment','Light','f83b27c3-6e73-49db-b486-8a2033e710ed','','',NULL), -('10638','Anvil Gladiator Torpedo Rack','MissileLauncher','MissileRack','13349103-5fe6-4dc1-bbb9-4a27bcc01b40','','',NULL), -('10639','ORIG_400i_SCItem_Dashboard_Captain_Room','SeatDashboard','UNDEFINED','a458ad5f-4391-4c36-8c56-db816edde532','','',NULL), -('10640','TRGT. STATUS','Seat','UNDEFINED','15e8399f-8c67-4653-a05c-feacc30606d1','','',NULL), -('10641','Inquisitor Arms Neon Pink ','Armor','Arms','6d8d3c54-19f3-4ed1-bfe4-43caa62acd90','','',NULL), -('10642','Lynx Legs Frostline','Armor','Legs','dedd80f6-374b-4974-b666-1169e003ec8a','','',NULL), -('10643','H_Dashboard_Projector_HUD_ANVL_Gladiator','Display','UNDEFINED','40ae562d-46db-4364-86dd-e2cda43a20b7','','',NULL), -('10644','Leyland\'s Tortoise','Misc','UNDEFINED','baddd87c-ae22-4534-a7e3-f8fda1a44542','','',NULL), -('10645','Lt_AirlockDoorPanelScreen','Misc','UNDEFINED','33b38cd4-11c0-44ac-891d-d4414afd7a39','','',NULL), -('10646','Lost Plague Helmet Biohazard Blue','Armor','Helmet','bbfc48f5-b10b-4701-98ed-1c694bc32d49','','',NULL), -('10647','Door Control','Door','UNDEFINED','89511fb1-e0fe-4d10-923c-7f3005d7c49f','','',NULL), -('10648','DRAK_Cutlass_Thruster_Maneuver_Left','ManneuverThruster','JointThruster','5eb60288-e1e7-45f5-ad78-e74c2232c7ad','','',NULL), -('10649','Kavir Pants','Char_Clothing_Legs','UNDEFINED','41483b87-d5af-4c7e-a0ca-e8db21e86131','','',NULL), -('10650','Medical Bed','Usable','UNDEFINED','56abde54-c9b1-4a7e-adc8-0dbe9e5a64b5','','',NULL), -('10651','Seat_Jump_ORIG_300i_Bathroom_Toilet','Usable','UNDEFINED','8c61f5fc-23c5-4ad6-926e-a1809ba2b91f','','',NULL), -('10652','Soap','Misc','UNDEFINED','0af26e66-8e92-4e23-9790-ca28c0b3948c','','',NULL), -('10653','Internal Tank','FuelTank','Fuel','851319cf-e5c5-4978-ba5f-ae337664e353','','',NULL), -('10654','Standing_Harness_ESPR_Prowler_C','Usable','UNDEFINED','79a9d403-6e37-41ec-9140-3e0de6412ee8','','',NULL), -('10655','Cutter Caiman Livery','Paints','UNDEFINED','75d7a2ae-1622-4b46-9dfa-00d968c27477','','',NULL), -('10656','TS-2','QuantumDrive','UNDEFINED','8ea47c7e-f70f-469d-abc2-911cc5013854','','',NULL), -('10657','MISC_Starfarer_Thruster_Main','MainThruster','FixedThruster','965ee334-131c-490d-b096-4ab82406d455','','',NULL), -('10658','ARGO_ATLS_IKTI_ARGOS_Shoulder_Shield','Misc','UNDEFINED','b4e901ff-d2a0-4d34-b96d-1860449dd1b1','','',NULL), -('10659','Door_NoRoomConnector_RSI_Polaris_Toilet_R','Door','UNDEFINED','45b6787c-9b91-4a0d-a34d-bdca9f30e9f7','','',NULL), -('10660','Door Control','ControlPanel','DoorPart','f71e777f-dfca-4939-9c5a-eca41ae8083e','','',NULL), -('10661','Screen','SeatDashboard','UNDEFINED','3c16e8e2-5bee-45b6-83f0-7eddc02ce43e','','',NULL), -('10662','Terrapin Purple Haze Livery','Paints','UNDEFINED','fb335d47-b37b-44a8-9d1a-8384f2d828ba','','',NULL), -('10663','Carryable_1H_CY_drug_calcar_1_a','Misc','UNDEFINED','48570b07-5ceb-4470-99d1-fe6f05916a2f','','',NULL), -('10664','Flight Blade','FlightController','UNDEFINED','db89de23-e7d8-4ec9-b532-6ac9af8f14b6','','',NULL), -('10665','Piecemeal Armor Legs','Armor','Legs','36200c80-ecf8-472f-9cbe-4994e11ecbab','','',NULL), -('10666','AEGS_Javelin_Thruster_Retro_Invulnerable','ManneuverThruster','FixedThruster','62d2c4a0-0b1a-4f92-8d0f-1689e7265730','','',NULL), -('10667','shelf_shoe_1_highend_b','ShopDisplay','Default','a301c049-dea4-4474-9283-0e0e9ddd60a2','','',NULL), -('10668','Access','SeatAccess','UNDEFINED','e40fd268-8923-41f6-a4e5-3e28b2014270','','',NULL), -('10669','Aloprat Skewer','Misc','Consumable','02051b5d-b4dc-4c59-8c86-369135c24c68','','',NULL), -('10670','Strata Helmet Pyrotechnic Edition','Armor','Helmet','269bfab5-e97a-4d71-a053-06d7abbf765c','','',NULL), -('10671','ORC-mkX Helmet Nightfire','Armor','Helmet','85cba80f-4284-4880-9070-fbbac78d9fd7','','',NULL), -('10672','DockingTube_Fuel_Ports_DRAK_Dragonfly_Pink','DockingCollar','UNDEFINED','a16375c4-34d7-48bf-8d92-9cdf54fb4938','','',NULL), -('10673','Calister Pants Westar','Char_Clothing_Legs','UNDEFINED','a92cab3c-d2a6-4a4c-8940-8ee722edeca9','','',NULL), -('10674','Lycara','Cargo','Cargo','dc6088d5-18f8-43d6-9b1a-c70352a71629','','',NULL), -('10675','JOKR_DistortionCannon_Barrel_S3','WeaponAttachment','Barrel','5b36c810-176a-4a2d-80bf-5d452242c1b6','','',NULL), -('10676','Flair_Hologram_Vanduul_Skull_1_a','Usable','UNDEFINED','b0b71d3d-3b34-404b-9179-a47407e679b2','','',NULL), -('10677','Castillo Jacket Formal','Char_Clothing_Torso_1','UNDEFINED','7e320fe2-8d67-4aef-999d-bace4e6e38d7','','',NULL), -('10678','Weapon_Rack_3_Slot_RSI_Common_Medgun','Usable','UNDEFINED','9017db4b-82b6-4f7f-89a4-8f5412e7e7fa','','',NULL), -('10679','Pulse 2956 Auspicious Red Rat Livery','Paints','UNDEFINED','7593bd66-377f-4472-89f2-fee872e079da','','',NULL), -('10680','Processed Food','Cargo','Cargo','8447c077-93f5-48e4-93c7-2ebe49ae4276','','',NULL), -('10681','Sureshot Helmet','Armor','Helmet','02bee84d-1bc7-4530-8fe3-61e6e49e53bd','','',NULL), -('10682','m_human_mannequin_odyssey_suit_10','ShopDisplay','UNDEFINED','fd9eec4f-e0dd-494a-b577-0b0c5475ed71','','',NULL), -('10683','Carbon-Silk','Cargo','Cargo','e7d6b938-c200-40e9-95ae-eb9f7eade1c8','','',NULL), -('10684','Morozov-SH-C Helmet Terrene','Armor','Helmet','d8556daf-60ba-413b-9d70-5b2f31d8af61','','',NULL), -('10685','Godmother Sandwich','Food','Junk','61b3eb5a-7edc-4803-b564-1874c70d7204','','',NULL), -('10686','AEGS_Reclaimer_Seat_TractorBeam_Left','Seat','UNDEFINED','dc3aa40d-54cb-4aee-a59c-784d6c04d71e','','',NULL), -('10687','Ready-Up Helmet Red','Char_Clothing_Hat','UNDEFINED','89cbf76c-e09f-4ff3-b585-f9876aa3df13','','',NULL), -('10688','CNOU_Mustang_Thruster_Mav_Fixed_01_Up','ManneuverThruster','FixedThruster','4b551f5a-65ab-4445-8ae1-50028116f103','','',NULL), -('10689','weapon_underbarrel_light_narrow_gold_01','WeaponAttachment','Light','46c7a3a0-55f6-414a-852f-c62376d747cd','','',NULL), -('10690','Hadanite','Cargo','Small','b9f3755d-125e-4af0-8876-5630fb5fcd9b','','',NULL), -('10691','Manned Turret','TurretBase','MannedTurret','d2e36cb0-33bb-4bec-877b-cd1336e1bfc4','','',NULL), -('10692','Seat','SeatAccess','UNDEFINED','fe331e51-b1eb-4b55-8a32-6c3346b7f190','','',NULL), -('10693','TwoStateAnimator_Control_SingleButton_Instanced','Misc','Default','6dad61be-8ab5-4412-ab8b-118763225a2e','','',NULL), -('10694','MTC Boreal Livery','Paints','UNDEFINED','5ab8d057-aae8-4c37-91b1-143384842d20','','',NULL), -('10695','ActiveWear Training Shorts','Char_Clothing_Legs','UNDEFINED','311d0c49-59f5-4004-94cb-caa234df753d','','',NULL), -('10696','Bed_ORIG_600i_Crew_C','Usable','UNDEFINED','66533670-7c5e-4bd0-86c4-ad7e09e9a9d3','','',NULL), -('10697','MOLE Aphorite Livery','Paints','UNDEFINED','2fa51a37-2de3-4297-9ed6-86a61f20ef57','','',NULL), -('10698','Railing_Straight_1m_LowTech_Util_Stairs_01x01_end_b','Usable','UNDEFINED','7b881286-21fe-4d79-b414-05d5b652aa85','','',NULL), -('10699','mobiGlas Apricot Casing','MobiGlas','Personal','cd6f3213-9aa5-4dbb-ae23-72f015c221d8','','',NULL), -('10700','Cutlass Flashfire Specialty Mount','TurretBase','MannedTurret','06056515-2d92-4697-a432-0c1e158bacff','','',NULL), -('10701','IAE 2950 T-Shirt','Char_Clothing_Torso_0','UNDEFINED','3ba85dd2-d1ce-40e3-b8b7-d512d882912c','','',NULL), -('10702','Aslarite','Cargo','Cargo','d4a481f5-0584-45bc-9b7e-ccfa2441c2df','','',NULL), -('10703','Bed','Usable','UNDEFINED','c240cde2-fd05-41c3-a8f5-bc7737e4429e','','',NULL), -('10704','HRST_LaserRepeater_PowerArray_S5','WeaponAttachment','PowerArray','fa13abfe-b343-48a8-8497-9c96c18974e7','','',NULL), -('10705','MASTER_couch_2','Usable','UNDEFINED','405433af-4427-4a6b-909e-a748924a5ea1','','',NULL), -('10706','TruBarrier Hazard Suit Mask Warning','Char_Clothing_Hat','UNDEFINED','12bbf500-5f7c-437e-a317-11ff5bb677ad','','',NULL), -('10707','Armor_Crate_CZ_Horizon_H_001','Usable','UNDEFINED','c375930f-90b1-4c22-a629-ed30d05ab511','','',NULL), -('10708','TruBarrier Hazard Suit Mask Dark Biohazard','Char_Clothing_Hat','UNDEFINED','396f65bb-75cd-4788-b4d4-17cbd40d7328','','',NULL), -('10709','TruBarrier Hazard Suit Mask Moss','Char_Clothing_Hat','UNDEFINED','4f2ad480-bcc0-4f0c-9c69-35b5ea316b42','','',NULL), -('10710','TruBarrier Hazard Suit Mask Hi-Vis Biohazard','Char_Clothing_Hat','UNDEFINED','aa8d386c-696b-4fef-bf64-0aef10190072','','',NULL), -('10711','Paladin Downstream Livery','Paints','UNDEFINED','cf22e114-9a98-474c-8da7-41eb3de33441','','',NULL), -('10712','Seat','SeatAccess','UNDEFINED','f77db077-366e-45a4-a2e5-54b68a9a4e32','','',NULL), -('10713','Door Control','Door','UNDEFINED','60618a88-efed-44ac-b6af-58cf8b43ad94','','',NULL), -('10714','Flight Blade','FlightController','UNDEFINED','a713988b-57e2-48de-9c31-9869316ff41e','','',NULL), -('10715','Fury Tengu Livery','Paints','UNDEFINED','545e4bc2-225d-49f9-ae33-4f8482ba1cbd','','',NULL), -('10716','AAT-34 Turret','Turret','MannedTurret','191cbacf-82a8-4ae4-9081-0ce594aaab25','','',NULL), -('10717','Door Control','ControlPanel','DoorPart','9db87a9f-6a7a-4b56-baeb-ffe3671d118d','','',NULL), -('10718','Atzkav \"Venom\" Sniper Rifle','Weapon','Medium','fc4903e4-7e46-44d8-a20d-3db7e0062e26','','',NULL), -('10719','Gadget_Cabinet_kegr_fire_extinguisher_01_nogeo_med_low','Usable','UNDEFINED','e8bd63dc-4142-44b7-84aa-312c784f4def','','',NULL), -('10720','Door','Door','UNDEFINED','231e4fb9-8948-438b-9904-4178464d1528','','',NULL), -('10721','Palatino Core Metropolis','Armor','Torso','336e2289-16ea-4c51-934c-39aca677b21b','','',NULL), -('10722','Tin','Cargo','Cargo','25ae0b7e-3128-4cba-bd83-a1cbfc19c96d','','',NULL), -('10723','Foundation Festival Hat Black','Char_Clothing_Hat','UNDEFINED','1b261147-6914-47de-9364-41fba0098f51','','',NULL), -('10724','Paint_Idris_Procyon','Paints','UNDEFINED','833f0ca4-5d6a-48e7-b72d-046be3ba251d','','',NULL), -('10725','KLWE_MassDriver_Ventilation_S3','WeaponAttachment','Ventilation','c69ad780-94d8-49ba-9cc6-68e307c539a8','','',NULL), -('10726','Idris_Crew_Qtrs_Locker_l','Player','UNDEFINED','178d218f-145c-40ab-8462-882f331b6584','','',NULL), -('10727','Stark Compensator3','WeaponAttachment','Barrel','b72f4a2e-6609-4ee3-80a1-1d6a02490c75','','',NULL), -('10728','Datapad','Misc','Gadget','58a7f76c-b029-4220-9aee-344a9b02f5f7','','',NULL), -('10729','ESPR_Prowler_Thruster_Mav_Down_Utility','ManneuverThruster','UNDEFINED','61482039-bc3d-42d9-bf99-ad3f95d9913f','','',NULL), -('10730','Focus Module','MiningModifier','Gun','e8864c48-6cd1-49e8-95ba-91912e321f35','','',NULL), -('10731','Main Powerplant','PowerPlant','Power','4f29e9ae-6a77-4461-b479-0479b9ecdca0','','',NULL), -('10732','RSI_Zeus_Thruster_Main_Bottom_Left','MainThruster','UNDEFINED','828a462f-d4e3-416a-aa9d-8d0a2dfdbae8','','',NULL), -('10733','TCS-4 Undersuit Desert','Armor','Undersuit','339e2d46-80aa-4eed-84cd-9efd5725b52b','','',NULL), -('10734','Aves Shrike Core','Armor','Torso','8c717a1f-7f67-448c-b340-b4322fc7481a','','',NULL), -('10735','Golem Deck the Hull Livery','Paints','UNDEFINED','dd7c1cb0-8a9a-467a-914e-051d26251918','','',NULL), -('10736','m_human_mannequin_locker','ShopDisplay','UNDEFINED','c787947d-e12a-4d58-84eb-4754ffdf1e90','','',NULL), -('10737','Carryable_1H_CY_bottle_vodka_pourable_1_a','Misc','UNDEFINED','bedcb7a2-f6a8-4863-a90d-7574a17175b2','','',NULL), -('10738','bar_mmhc_glass_coke_empty','Misc','UNDEFINED','8d7f9dfd-a9cd-4573-a2d9-b1c236a684a2','','',NULL), -('10739','Pathfinder IV Missile','Missile','Missile','77dc28bf-0742-490f-ac49-1d430cb6b48f','','',NULL), -('10740','Bed_Simple','Usable','UNDEFINED','446a089e-065c-4dbd-9f65-6d1df15e6be7','','',NULL), -('10741','Seat','SeatAccess','UNDEFINED','71c40387-c53f-4d2e-acbd-393036f3e6c7','','',NULL), -('10742','Door Control','ControlPanel','DoorPart','07374957-cfaa-4687-bb6c-16e5a7f2a817','','',NULL), -('10743','Cloud City T-Shirt Black','Char_Clothing_Torso_0','UNDEFINED','6bf651ce-1f3f-4fe3-8b59-034bcdc7de33','','',NULL), -('10744','GP-XP Industrial Battery','Battery','Cargo','1ac9abb1-dc3d-4e2a-aded-8470f83add22','','',NULL), -('10745','counter_display_mod_end_b_0038x01x01_02Ports','ShopDisplay','UNDEFINED','9db76fbd-b74b-4c70-9f87-1d010baa844a','','',NULL), -('10746','Emilion Pants','Char_Clothing_Legs','UNDEFINED','d6415769-ff23-430c-a326-d40c6d62ca59','','',NULL), -('10747','DoorProximitySensorItem_12x4x4','Sensor','DoorPart','c427395e-4f52-4b92-b21e-a96b87fbe453','','',NULL), -('10748','Ambit Coverall','Char_Clothing_Torso_1','UNDEFINED','828d7cb2-00ad-4f4a-9e69-f66ac42e8642','','',NULL), -('10749','Railing_Straight_2m_Lowtech_Hangar_A','Usable','UNDEFINED','807cd39e-a9d8-4545-a3bb-ba3fdad406cd','','',NULL), -('10750','ARGO_MPUV_DockingTube','DockingCollar','UNDEFINED','e00e9287-c93d-4fd9-9385-b1a82e83586c','','',NULL), -('10751','Weapon Rack','Usable','UNDEFINED','0ca64cf3-eb53-41ca-932f-13896441180c','','',NULL), -('10752','Altimont Pants Teal','Char_Clothing_Legs','UNDEFINED','c4771b30-57cb-40a4-acea-a8f3b9497892','','',NULL), -('10753','f_human_mannequin_truDef_pro_odyssey','ShopDisplay','UNDEFINED','6cc2bc47-914e-46ee-a6a0-c2f154021a6e','','',NULL), -('10754','Lillo Pants Purple','Char_Clothing_Legs','UNDEFINED','d5f52524-03c8-4f39-9549-95bdc3520573','','',NULL), -('10755','MacFlex Legs Yellow','Armor','Legs','3f4d46ba-9512-4277-8ff1-0c0b96904401','','',NULL), -('10756','Internal Tank','QuantumFuelTank','QuantumFuel','c714619c-012d-47e1-9a83-523be972a76b','','',NULL), -('10757','Razorback Pants Dark Red','Char_Clothing_Legs','UNDEFINED','b418034e-d9e9-43aa-9f43-1b50b85f2883','','',NULL), -('10758','orig_bedding_duvet_3_j','Seat','UNDEFINED','e621abc3-e146-4b81-a1f4-5b94186b7d1a','','',NULL), -('10759','Scout Ship Armor','Armor','Medium','59d32a20-d36e-40f5-99ec-641954677c04','','',NULL), -('10760','RSI_Zeus_Thruster_VTOL','ManneuverThruster','UNDEFINED','8a0e466e-a1a1-436a-a417-32533e86b985','','',NULL), -('10761','Book','Misc','UNDEFINED','b07f33c8-0fae-49eb-b60d-e56d00bda2d9','','',NULL), -('10762','ADP-mk4 Legs Red Alert','Armor','Legs','a2dd47d0-3d8c-4a04-ae91-8be9bcf6bb24','','',NULL), -('10763','Carryable_1H_CY_weight_dumbbell_1_20kg_a','Misc','UNDEFINED','b18aee51-fc53-4128-88f2-96b96e4ca66d','','',NULL), -('10764','Door Control','Door','UNDEFINED','9f340b7b-7aee-4c80-972d-ba30cce770cb','','',NULL), -('10765','Reliant Missile Launcher Cap','MissileLauncher','MissileRack','ae51c660-a166-4811-8979-15e64c4fc4ce','','',NULL), -('10766','Flight Blade','FlightController','UNDEFINED','f561ee9a-a8da-40b8-9837-849583a6500f','','',NULL), -('10767','Overlord Arms Riptide','Armor','Arms','12d78608-d86c-4d0e-9a7a-0bec5e418139','','',NULL), -('10768','Seat','SeatAccess','UNDEFINED','e61cc803-e5b6-40bb-9e90-c6d17b475d0d','','',NULL), -('10769','Bed','Usable','UNDEFINED','4bc4bab8-20db-4651-ad41-f85513df386b','','',NULL), -('10770','C-788 Cannon','Weapon','Gun','6635dc5f-dfcd-4b72-9d9d-8d3620820352','','',NULL), -('10771','Devastator \"Whirlwind\" Shotgun','Weapon','Medium','e3c66ad6-44a9-4130-92b6-5da8c70c8574','','',NULL), -('10772','ATLS Safety Orange Livery','Paints','UNDEFINED','e752fd5b-c275-471f-9a81-4de6d3c7972e','','',NULL), -('10773','Outback Legs Molten','Armor','Legs','53720e21-4f47-4cda-8fc9-12090923872b','','',NULL), -('10774','Lunes (Spiral Fruit)','Cargo','Cargo','71b65393-bda1-4267-9e70-4361a259ec7a','','',NULL), -('10775','Carryable_TBO_FL_4SCU_Commodity_Organic_MarokPearl','Cargo','Cargo','7be1ef1b-7e35-4ed8-8228-c53ba35dadab','','',NULL), -('10776','PAB-1 Core Yellow','Armor','Torso','3e73a2a2-bba5-4483-8415-95b6643c57d3','','',NULL), -('10777','Anvil Decoy Launcher','WeaponDefensive','CountermeasureLauncher','5a9e0874-ec5e-4ef2-84f0-6f8cb8444176','','',NULL), -('10778','Carryable_TBO_FL_16SCU_Commodity_ProcessedGoods_Thrust','Cargo','Cargo','54dad888-be83-490a-bf14-96b557af4873','','',NULL), -('10779','AImodule_GenATC02','AIModule','UNDEFINED','ffa40c2a-f97b-4a31-8931-400fcde38007','','',NULL), -('10780','Seat','SeatAccess','UNDEFINED','d76b0af3-63fa-4435-b9de-1c1a4ca4dc63','','',NULL), -('10781','DockingTube_Fuel_Ports_ANVL_Hurricane','DockingCollar','UNDEFINED','622827e6-5854-4b16-a8e4-e9a0c9537fd0','','',NULL), -('10782','ANVL_Pisces_Thruster_Mav_Joint_Top','ManneuverThruster','JointThruster','82e7d690-4237-4af3-8c41-50efd413268b','','',NULL), -('10783','Camion Jacket','Char_Clothing_Torso_1','UNDEFINED','08f8f4a5-ff76-4449-add2-373e36853fd6','','',NULL), -('10784','Jumping Limes','Misc','Harvestable','eb1bc678-53dd-4c2d-90c5-6bfe1310fc6e','','',NULL), -('10785','Controller_Salvage_DRAK_Vulture','SalvageController','UNDEFINED','56157788-054f-4994-b840-062c638023f9','','',NULL), -('10786','CF-227 Badger Repeater','Weapon','Gun','0e3f4b37-8085-4641-a360-40e4e372cd15','','',NULL), -('10787','Stirling Exploration Helmet Olympian Edition','Armor','Helmet','8393d934-246c-4285-9aab-62062136eea1','','',NULL), -('10788','Pancea MedGel Canister','Container','Medical','21789f4a-ffaa-4d9c-ab24-3de6fd2880b3','','',NULL), -('10789','Avenger Titan Ship Armor','Armor','Medium','7090c713-5e36-4150-a19b-8c4fe439be9d','','',NULL), -('10790','SHIELDS','ShieldController','UNDEFINED','27320011-9723-47f4-9d7d-ba5d93a8d349','','',NULL), -('10791','Internal Tank','QuantumFuelTank','QuantumFuel','99544286-58d3-41d7-9aac-380a17ea4936','','',NULL), -('10792','Tona Shoes Orange','Char_Clothing_Feet','UNDEFINED','46788831-9ec2-4bf5-9e75-0b28e80c83f2','','',NULL), -('10793','M50 Murray Cup Livery','Paints','UNDEFINED','4cd1b1bf-5ea0-442c-843b-e74720e993a2','','',NULL), -('10794','Sabre Raven Ship Armor','Armor','Medium','f7b85e3a-86b0-485d-a35c-b41668fc88da','','',NULL), -('10795','Overlord Legs Stinger','Armor','Legs','d3b40c0e-e7b9-44b2-af5b-774df8685632','','',NULL), -('10796','Ixonia Gloves Coal','Char_Clothing_Hands','UNDEFINED','17502f4f-6f15-459d-a754-13eefec83e2c','','',NULL), -('10797','KRIG_l22_AlphaWolf_Thruster_Mav_Round','ManneuverThruster','UNDEFINED','4557e4e8-714d-4b81-a16e-babc20086404','','',NULL), -('10798','Seat','SeatAccess','UNDEFINED','40c82d59-d42a-4ecd-89e5-a96b26087ba9','','',NULL), -('10799','Custodian \"Boneyard\" SMG','Weapon','Medium','57b40b0c-90da-40c5-ba9d-07aec1a8e595','','',NULL), -('10800','Lindinium (Ore)','Cargo','Cargo','ce2e4f2c-2cbf-4236-92e6-c2999edf8b52','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('10801','BlastChill','Cooler','UNDEFINED','94ea5bb5-070c-4c75-b90d-66c26c38bb2a','','',NULL), -('10802','Iron (Ore)','Cargo','Cargo','35ef9f0c-1b7d-4004-a8c4-474820e170ff','','',NULL), -('10803','Door Control','Door','UNDEFINED','2d7e111c-e1a8-490b-a0ea-a493b00fbf28','','',NULL), -('10804','OT4-RF (4x Telescopic)','WeaponAttachment','IronSight','718aca95-c774-4266-a0e2-50ba2a56088e','','',NULL), -('10805','M9A Cannon','Weapon','Gun','c2a8fdaa-a195-4f1d-a223-70eef526e09d','','',NULL), -('10806','Cutter Frontier Fighters Camo Livery','Paints','UNDEFINED','5413291f-f462-4e0c-b237-6c067468affa','','',NULL), -('10807','Food_bowl_chowder_01_a','Food','Consumable','8535ed63-0214-4ff2-85c7-d82d4980c2d2','','',NULL), -('10808','Agrodolce Delight Kacho','Food','Box','91914070-df29-4be8-a6bb-0710532c6a08','','',NULL), -('10809','Door_NoRoomConnector_Syulen_Ground_FuelPort','Door','UNDEFINED','78304e9f-d01a-49b8-89ad-6839b73276ad','','',NULL), -('10810','SHLD_GODI_S04_Javelin_SCItem','Shield','UNDEFINED','9b94c0fa-476b-42bd-bebd-b1d633f149ca','','',NULL), -('10811','Weapon_Rack_1_VOLT_LMG_Uncommon_001','Usable','UNDEFINED','927ea71a-88b8-4aaf-abe2-d56bffd046fa','','',NULL), -('10812','Calico Helmet Tactical','Armor','Helmet','69e5c3b0-90d7-4269-a664-553169988519','','',NULL), -('10813','AEGS_Door_Decal_Brig_SecurityRm','Decal','DoorPart','625a1f6d-af6c-4119-bda3-9b1a0bc26137','','',NULL), -('10814','Falston Jumpsuit \"Sakura Sun Edition\"','Char_Clothing_Torso_1','UNDEFINED','8a77dc2b-2bab-4245-960f-4a2dad5c419d','','',NULL), -('10815','Palatino Legs Sunstone','Armor','Legs','5d00db0e-c92b-4379-ab41-79708c02d7dd','','',NULL), -('10816','TRGT. STATUS','Seat','UNDEFINED','24c57dac-759d-4bd6-bef6-72f422ffbac9','','',NULL), -('10817','Internal Tank','QuantumFuelTank','QuantumFuel','5b17582f-2b2a-4493-8df1-a0534405f760','','',NULL), -('10818','Seat','Usable','UNDEFINED','39372fe0-cdf3-4932-9fb0-fbc4877aeec5','','',NULL), -('10819','Hephaestanite','Cargo','Cargo','6b2b370c-1005-4a1e-8e45-b9f471f678d5','','',NULL), -('10820','Door Control','ControlPanel','DoorPart','a1fd39ec-9386-4f15-ad88-e10bf8b5e4dc','','',NULL), -('10821','Access','SeatAccess','UNDEFINED','2d504f28-4bed-4260-aa21-e55e6e1383d1','','',NULL), -('10822','Door Control','Door','UNDEFINED','14f07f14-bd73-4e7b-af48-7c5b27fa51a5','','',NULL), -('10823','Hull C Horizon Livery','Paints','UNDEFINED','631770c0-a3f0-4502-bb69-e806eb8dd2ae','','',NULL), -('10824','GAMA_Syulen_Thruster_Mav_Top','ManneuverThruster','FlexThruster','8cad3e69-09ab-4eb2-aec6-157e352d01a5','','',NULL), -('10825','Mustang IceBreak Livery','Paints','UNDEFINED','4ca56399-3457-47e8-86d5-e83106d01af2','','',NULL), -('10826','AEGS_Hammerhead_Thruster_Mav_Fixed_Top','ManneuverThruster','FlexThruster','0cbf9f9a-84c2-4f5b-bb82-bd3b80fc13be','','',NULL), -('10827','Seat','SeatAccess','UNDEFINED','31895c4b-bb65-417b-8273-ac4e9178f689','','',NULL), -('10828','LH86 \"Boneyard\" Pistol','Weapon','Small','c4289e35-b35d-4357-9cc9-c290e566b388','','',NULL), -('10829','stand_shop_large_b_Cooler','ShopDisplay','UNDEFINED','c5d17165-b13a-4729-a00f-c0dacc852107','','',NULL), -('10830','Aegis Eclipse - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','5f2b344a-89b5-43af-a2ae-269a2dd5150f','','',NULL), -('10831','Door Control','Door','UNDEFINED','fba99136-43e9-4907-a4f4-71e6ceff1219','','',NULL), -('10832','Salvation','SeatAccess','UNDEFINED','6f5b75d0-b2b6-4173-88c9-24feb48b8158','','',NULL), -('10833','Door Control','Door','UNDEFINED','76730ed4-fbeb-4584-a7d4-0b55be50b422','','',NULL), -('10834','TRGT. STATUS','Seat','UNDEFINED','12516294-990d-4d00-87a0-e5280e5fef26','','',NULL), -('10835','Grin_MDC_Door_Exterior_Decal','Decal','DoorPart','14990696-0d57-4694-a960-39a008301135','','',NULL), -('10836','Seat','Usable','UNDEFINED','05a8c458-a5a8-4260-acb2-dea20159dfd5','','',NULL), -('10837','SunFlare','PowerPlant','Power','8e828c4f-b435-4db5-aab4-318dead98403','','',NULL), -('10838','Maze','Cargo','Small','c731e598-8691-4ea9-a4ed-8f86740e094f','','',NULL), -('10839','m_human_mannequin_ship_jacker','ShopDisplay','UNDEFINED','8ab1eb6a-8278-40c6-a0a4-c816e9c2c758','','',NULL), -('10840','ClipVest Work Harness','Char_Clothing_Torso_1','UNDEFINED','f6e31bbf-ef09-40ec-b0f2-201dfe1f9847','','',NULL), -('10841','Spirit Valor Livery','Paints','UNDEFINED','6a9b1dc3-a073-44a8-afad-17f3d641a0e4','','',NULL), -('10842','Ati Jacket Imperial','Char_Clothing_Torso_1','UNDEFINED','e1ea77e9-23d5-42fe-aef4-b088ad3cdbf6','','',NULL), -('10843','TRGT. STATUS','Seat','UNDEFINED','c3809be1-b37c-4ff7-846e-689eb252eee5','','',NULL), -('10844','DRAK_Vulture_Component_Battery','Player','UNDEFINED','5a816b66-5bf4-42b5-846f-1fb467504df0','','',NULL), -('10845','Falston Jumpsuit \"Crusader Edition\"','Char_Clothing_Torso_1','UNDEFINED','0d4d5f99-6258-4f27-bf5d-f787bf23b379','','',NULL), -('10846','HRST_LaserRepeater_Barrel_S4','WeaponAttachment','Barrel','fadfa113-d0c5-4444-8848-dd8490f5878b','','',NULL), -('10847','Copper (Ore)','Cargo','Cargo','a18794a7-9320-4d4b-a684-7dd8565f8d53','','',NULL), -('10848','Sunset Berries','Cargo','Cargo','88663c6c-4340-45e9-8822-972a2e6b17c2','','',NULL), -('10849','DRAK_Dragonfly_SCItem_Dashboard_Pilot_YellowJacket','SeatDashboard','UNDEFINED','dac370ec-c8b9-4a14-b863-dc2628d72715','','',NULL), -('10850','Door Control','Door','UNDEFINED','108727ff-ae76-466b-8b63-7d99d1df22c3','','',NULL), -('10851','Locker_Suit_RSI_Polaris_XO','Usable','UNDEFINED','e226c8c7-c2c6-450d-b903-7028c9ccd3eb','','',NULL), -('10852','Vulture Oriole Livery','Paints','UNDEFINED','9103a4a7-4ab1-4a18-aec0-e5442f65766d','','',NULL), -('10853','Door','Door','UNDEFINED','338605d5-13b7-4faa-be30-309b73f83730','','',NULL), -('10854','ODOK Jacket','Char_Clothing_Torso_1','UNDEFINED','c565b33e-49d4-4bb9-8b60-87576d937cef','','',NULL), -('10855','ORC-mkV Arms Yellow','Armor','Arms','72b8d295-fcbd-45ae-a155-389ecdae8c3c','','',NULL), -('10856','screen_4x3_reclaimer_datapad','Display','UNDEFINED','a0a4d1d4-5d38-47ef-ae4a-8e3171e70e82','','',NULL), -('10857','TRGT. STATUS','Seat','UNDEFINED','420b6d9c-2abb-48bc-87b7-88f2bfb8ba0a','','',NULL), -('10858','E\'tam','Misc','Utility','7b3d4cf2-3313-4472-9180-8f5896d411d6','','',NULL), -('10859','DRAK_Herald_Thruster_Main','MainThruster','FixedThruster','ad0de399-7fea-421d-ba3d-104a286b0f1d','','',NULL), -('10860','Carryable_2H_FL_crate_weapon_3_075x045x00375_a','Misc','UNDEFINED','a455a4bf-bbf0-4e9e-bfb4-f8776590d54d','','',NULL), -('10861','RSI_Salvation_Thruster_Main_Small_Bottom_Left','MainThruster','FixedThruster','8a15be85-cf37-4987-adf5-3f10984ff58a','','',NULL), -('10862','Door Control','ControlPanel','DoorPart','eaad2d7d-52de-4371-8ce1-64a803694742','','',NULL), -('10863','Theta Pro LL (8x Telescopic)','WeaponAttachment','IronSight','89ed520d-5514-49a5-bd11-2620f725b509','','',NULL), -('10864','ESPR_BallisticCannon_PowerArray_S3','WeaponAttachment','PowerArray','aba67d74-1e55-4248-9c7a-6c3cb960b85e','','',NULL), -('10865','Lynx Core Orange','Armor','Torso','42977ad5-7264-43e1-98e3-3124ce3901ca','','',NULL), -('10866','Door Control','Door','UNDEFINED','389feee9-32d1-4281-9788-9d5ca21d4cf3','','',NULL), -('10867','Personal Storage','Cargo','UNDEFINED','d156ea6d-9a13-4f59-9640-40713c925a4a','','',NULL), -('10868','Testudo Helmet Disrupt Camo','Armor','Helmet','3d103e2c-2322-4647-9c82-b2f7ebc9dea1','','',NULL), -('10869','UEE 6th Platoon Medal (Worn)','Misc','Trophy','adc5a48b-ff05-4a1e-8f13-cec792ed8a87','','',NULL), -('10870','WhiteRose','PowerPlant','Power','a5518651-cd87-490d-98ee-dccba428fdca','','',NULL), -('10871','ToolSafe Vest','Char_Clothing_Torso_1','UNDEFINED','245a0669-f18b-4b30-8fdc-63e2522b8649','','',NULL), -('10872','Ambrus Suit','Char_Clothing_Torso_1','UNDEFINED','533c9f98-0bed-4310-9ffc-ec708e6ccd0c','','',NULL), -('10873','Beacon Undersuit Woodland','Armor','Undersuit','889ada90-0990-4d77-9882-d63d046e9d73','','',NULL), -('10874','Concept Shirt Tan','Char_Clothing_Torso_0','UNDEFINED','3293c787-c3d2-41d9-9ecf-07bfd16621f9','','',NULL), -('10875','TCS-4 Undersuit Red Alert','Armor','Undersuit','a32d3418-e09a-4715-90fd-80ea7e521070','','',NULL), -('10876','Carrion Helmet Maniac','Armor','Helmet','148e90e8-938f-4418-b07d-8e0e94b3df06','','',NULL), -('10877','AEGS_Retaliator_Door_Cap_Front','Misc','UNDEFINED','bab56126-c1ae-4c0d-98ba-dd8d93ee6092','','',NULL), -('10878','Seat','SeatAccess','UNDEFINED','5d8d3758-5765-4dc7-b332-1264242b888b','','',NULL), -('10879','Balor HCH Helmet Dark Green','Armor','Helmet','229cab57-75ea-49b2-b637-ebc7ccf140c4','','',NULL), -('10880','Seat','Usable','UNDEFINED','c8969807-d46c-4d51-9855-beef44364c20','','',NULL), -('10881','Green Blend Smoothie','Drink','Bottle','53f383f7-2132-4038-b4c3-6d88b95dddfc','','',NULL), -('10882','RSI_Polaris_SeatAccess_Tractor_Console','SeatAccess','UNDEFINED','acf568cd-d2dc-4dda-8757-6de1099ff098','','',NULL), -('10883','Palatino Arms Daystar','Armor','Arms','9dc4078f-9598-4453-92e8-d479acadfca8','','',NULL), -('10884','AEGS_Redeemer_Wardrobe_Decal_01','Decal','DoorPart','eff4bb07-dd9e-4fc5-8ae1-c832dd32b5fc','','',NULL), -('10885','Cordimon Jacket Imperial','Char_Clothing_Torso_1','UNDEFINED','a6a304e9-d2ea-4b5c-a0d4-3da1a375795c','','',NULL), -('10886','Nox Turbocharged Livery','Paints','UNDEFINED','46541353-3aba-4c0c-bccf-1ded19f98510','','',NULL), -('10887','display_ship_components_03x0075x0275_a_shields','ShopDisplay','UNDEFINED','4c6abaff-54b6-4de6-ad4f-f7c7a440b74b','','',NULL), -('10888','SCItemDisplayScreen_ScreenSize_W64_H36_H74','Display','Default','c4a50c4c-9c93-48a7-8a43-989fc342cbdf','','',NULL), -('10889','display_components_pallet_250x125x025_b_quantum','ShopDisplay','UNDEFINED','d9b8df12-3546-4d34-b18d-cabe389a1895','','',NULL), -('10890','S-38 \"Scorched\" Pistol','Weapon','Small','5c3e378d-69b1-47dd-86ef-4a154a9c84c2','','',NULL), -('10891','IndVest Jacket','Char_Clothing_Torso_1','UNDEFINED','d9e81a07-af5e-4519-89fc-9a555991f4d1','','',NULL), -('10892','Re-Authorizer','FPS_Consumable','Hacking','1bdf2214-6e54-44f7-87bd-eef795513078','','',NULL), -('10893','Guri Pants Lime','Char_Clothing_Legs','UNDEFINED','335cb29d-af24-46f0-bb07-f65286757e8b','','',NULL), -('10894','Li-Tok Boots Olive','Char_Clothing_Feet','UNDEFINED','bf08ee5b-9277-4f6d-a288-6770c32a2d7a','','',NULL), -('10895','Internal Tank','FuelTank','Fuel','4f50909f-e812-0aef-b2d7-9e323c15e299','','',NULL), -('10896','IFR-W57 Turret','TurretBase','MannedTurret','a1a6eaa7-b0d6-4afe-9b99-07a9d57d0e52','','',NULL), -('10897','Door Control','Door','UNDEFINED','b85331b6-bcae-424b-a64b-9a2191bb98b5','','',NULL), -('10898','AEGS_Reclaimer_Thruster_Main','MainThruster','FixedThruster','45e0a42f-092a-41c8-a95e-a7a05c1b9735','','',NULL), -('10899','Salvaged Skull 1 SCU Container','InventoryContainer','Cargo','f034b39f-4d86-4dbc-9d9a-4544041dde08','','',NULL), -('10900','VNCL_Scythe_RADR_Display','Display','UNDEFINED','c6840520-fe9f-4213-ab18-9606749297f2','','',NULL), -('10901','RSI_Meteor_Thruster_Main_Right','MainThruster','FixedThruster','00651c34-c0d0-47be-bd0a-3f3e03ff4fda','','',NULL), -('10902','Guardian Black Magic Livery','Paints','UNDEFINED','660df6a1-e7dd-417a-b4a5-90b81f41b453','','',NULL), -('10903','Access','SeatAccess','UNDEFINED','630ec417-5ab8-4a35-95df-d552c4f981b6','','',NULL), -('10904','Fury Sunrise Livery','Paints','UNDEFINED','780cc9de-e4ec-44ec-ad98-f8d9302351c2','','',NULL), -('10905','INTK_AEGS_Vanguard_Sentinel','FuelIntake','Fuel','19a90c48-d5fd-4394-9121-5885f2b0cfe9','','',NULL), -('10906','Palatino Core Sunstone','Armor','Torso','89c91b5c-3006-4777-a870-9059b4f3efb2','','',NULL), -('10907','Iron (Ore)','Cargo','Cargo','46e7bd2a-42ea-41c7-bcf9-8f1eae8cb52a','','',NULL), -('10908','ORIG_100i_Thruster_Main_Right','MainThruster','FixedThruster','0e954da4-a096-4a86-bc48-fabae1152a92','','',NULL), -('10909','Ship Showdown \'52 Mercury Coin','Misc','Utility','29f6bf04-c2d1-4006-a23a-ac7f1a4ae254','','',NULL), -('10910','UEE 6th Platoon Medal (Damaged)','Misc','Trophy','69ec5112-0ce4-4fc2-9b41-c6884cf9b15d','','',NULL), -('10911','Outback Arms Grime Blue','Armor','Arms','fcd41c68-367c-40c7-86c4-712786bb73a6','','',NULL), -('10912','Colonialism_Outpost_RN_Comms_Mast','CommsController','UNDEFINED','3d0dc49d-c08a-4452-a87b-2c44294d4b7d','','',NULL), -('10913','ClipVest Work Harness Imperial','Char_Clothing_Torso_1','UNDEFINED','74186540-75f1-422a-a05f-55ce7fa38f79','','',NULL), -('10914','Nomad Jackal Livery','Paints','UNDEFINED','934be226-4f96-4d6a-a84d-97750e6f98d5','','',NULL), -('10915','Inquisitor Core Dark Green','Armor','Torso','7b756dc5-ad76-47e2-9e48-d398d6f25827','','',NULL), -('10916','Vagabond Jacket','Char_Clothing_Torso_1','UNDEFINED','b40e52c5-d3b4-495e-b8d5-f5e0428c5a5d','','',NULL), -('10917','FBL-8a Arms Righteous','Armor','Arms','91fe75da-ee46-47f7-9968-26acbedab5d1','','',NULL), -('10918','CRUS_Starlifter_Door_Decal_Cooler_A','Decal','DoorPart','cddbc63f-b8c7-4d80-a7cb-fb67a246ab3e','','',NULL), -('10919','Fizzz Soursop','Drink','Can','984ec579-deb1-4c68-8bde-0cb0e995b8f1','','',NULL), -('10920','Door Control','Door','UNDEFINED','60f0922d-aa4c-40c0-b736-1833a6d2b8e0','','',NULL), -('10921','Jacopo Monocle','Char_Accessory_Eyes','UNDEFINED','f9c45e20-1522-4f87-9f9c-932d089514e0','','',NULL), -('10922','Paint_Gladius_Hurston','Paints','UNDEFINED','0f242cc7-718e-4d8e-8e9e-19858773df17','','',NULL), -('10923','Seat','Usable','UNDEFINED','df2e23e8-1dca-405e-a5c1-37e7895767fb','','',NULL), -('10924','Turret','Turret','GunTurret','b13be22c-06a1-477c-b550-1139a0b51607','','',NULL), -('10925','KRIG_l21_Wolf_Thruster_Mav_Round','ManneuverThruster','UNDEFINED','24a986e8-7843-4388-bfc6-536b6dd7d66d','','',NULL), -('10926','AEGS_Door_Decal_Escapepods_01','Decal','DoorPart','ce771e5c-8ed6-4f86-975a-5c762eb94a34','','',NULL), -('10927','screen_4x3_1_0018x00135_a','Display','UNDEFINED','6c5e5afe-635e-4bc5-ba66-27fe09105bb7','','',NULL), -('10928','Seat','Usable','UNDEFINED','9c04d786-c757-4fcd-a431-3e786d3c8a46','','',NULL), -('10929','Beacon Undersuit','Armor','Undersuit','1d1afe42-39a6-46cb-b8b5-a60a8eb66f74','','',NULL), -('10930','Perseus Resilient Livery','Paints','UNDEFINED','dced07ce-cb72-4cad-865a-0e4a6bdf64c1','','',NULL), -('10931','Flight Blade','FlightController','UNDEFINED','d7236108-290f-4bde-ac25-0fee2bae7334','','',NULL), -('10932','ORIG_600i_Dashboard_Bridge_Left','SeatDashboard','UNDEFINED','29fd47f9-4098-4317-8dc2-85507b3920cf','','',NULL), -('10933','Mixed Mining','Cargo','Cargo','16500844-88c6-4837-85e9-4328028a1b4d','','',NULL), -('10934','Paint_300_SeatTrim_GlossBlue','Misc','UNDEFINED','064dd7d3-bf85-4cc7-9fc9-e67596753b5a','','',NULL), -('10935','Headhunter Head Lamp','Misc','UNDEFINED','f6b4c6f1-5e64-4775-8c07-469fc9c95cbe','','',NULL), -('10936','Door Control','Door','UNDEFINED','6f142fe4-4cf8-4eda-b378-04217191200d','','',NULL), -('10937','Weapon_Rack_RSI_Ursa_Rover_2_Slots','Usable','UNDEFINED','9c0fe6a2-62d2-4566-8450-aa6d792e131c','','',NULL), -('10938','Door Control','ControlPanel','DoorPart','37a1fc8d-cd39-49a8-b37f-541b0d234226','','',NULL), -('10939','Seat','Usable','UNDEFINED','73ccdef0-d6ba-4e6e-a9db-0a0510601f68','','',NULL), -('10940','Njakte Knife','Weapon','Knife','c5f73e29-47ab-49dd-a571-9d3280d938c8','','',NULL), -('10941','Venture Undersuit Seagreen/Black','Armor','Undersuit','019f9e2f-9205-47a6-ab24-5feefc38c4a6','','',NULL), -('10942','ADP-mk4 Legs Big Boss','Armor','Legs','3b8cafc9-822e-456a-886b-5f0bfc3a509b','','',NULL), -('10943','Small Container','Container','UNDEFINED','eb935401-8c7c-4291-8d68-e8d70efedf23','','',NULL), -('10944','Foundation Pants (Modified)','Char_Clothing_Legs','UNDEFINED','a21e7b95-f7f1-4634-9d45-348edfda3d1a','','',NULL), -('10945','Door','Door','UNDEFINED','903c62b3-ddcf-46e5-b279-b24345b1425d','','',NULL), -('10946','Dolivine','Misc','Harvestable','20094ded-ad04-46a3-b734-9e37aa3154b3','','',NULL), -('10947','tool_screwdriver_2_a','Misc','UNDEFINED','36f87f92-e732-4d4c-af32-49092eaa68ab','','',NULL), -('10948','Table_6_Seat_ANVL_Carrack','Usable','UNDEFINED','8f405cbd-a030-4b6c-bf5d-7fd4f9e7a830','','',NULL), -('10949','Wooden Rooster Charm (Medium)','Misc','UNDEFINED','0335bfc2-2613-4e1c-84e6-44acb20a3f07','','',NULL), -('10950','VNCL_Scythe_Thruster_Aux_Joint','ManneuverThruster','JointThruster','c4a0512b-d919-4d5f-8929-4ae73fd97d88','','',NULL), -('10951','Saldynium (Ore)','Cargo','Cargo','ca2d525e-541f-4a93-950a-d17efaed3244','','',NULL), -('10952','Vivant Shoes Grey','Char_Clothing_Feet','UNDEFINED','45985c07-701e-4f41-8602-da2c7ad8fba4','','',NULL), -('10953','RS1 Odysey Spacesuits','Cargo','Cargo','e4ac7ad6-0a03-4105-b10d-7a13d1b569d2','','',NULL), -('10954','Morningstar Helmet Neon Pink','Armor','Helmet','78835c61-f743-4239-b560-6e33a1e93569','','',NULL), -('10955','TRGT. STATUS','Seat','UNDEFINED','774bd021-1710-4bf9-8110-c1a6f3cf4fe6','','',NULL), -('10956','Construction Rubble','Cargo','Cargo','4394d5c0-bf17-4247-9c64-55ea076adedd','','',NULL), -('10957','Door Control','Door','UNDEFINED','7e2892eb-82d7-4d81-8711-a9918aa7a957','','',NULL), -('10958','Internal Tank','FuelTank','Fuel','8e00f476-2c69-4edb-a792-864ed8132324','','',NULL), -('10959','TrueDef-Pro Core Black/Silver','Armor','Torso','8b70a1a7-d685-4645-b05e-f3baa49e6e66','','',NULL), -('10960','Chill-Max','Cooler','UNDEFINED','98180be7-076c-4621-994a-284d1c17a366','','',NULL), -('10961','DRAK_Herald_SeatAccess_Ship_Enter','SeatAccess','UNDEFINED','febd8557-9c16-4e4c-a41c-db794d4be6bb','','',NULL), -('10962','Cup','Drink','UNDEFINED','be7e9a47-3378-415e-ac2e-70769989da99','','',NULL), -('10963','WowBlast Desperado Toy Pistol Magazine (10 cap)','WeaponAttachment','Magazine','2a509aec-7439-4416-881d-59d30568ff6c','','',NULL), -('10964','Calico Arms Desert','Armor','Arms','962f0e10-5d39-43c9-8afe-ee7429699b27','','',NULL), -('10965','un_jar_glass_1_berries_b','Misc','UNDEFINED','a1264f81-2e8f-4c18-a61f-1628d591e951','','',NULL), -('10966','AEGS_Door_Decal_Escapepods_Turrets','Decal','DoorPart','b058568d-af46-48eb-8cdf-495b9242851a','','',NULL), -('10967','FieldLite Flashlight Red','WeaponAttachment','BottomAttachment','d7d93249-f0ef-4b50-803b-781a904a2cef','','',NULL), -('10968','Venture Arms Twilight','Armor','Arms','3268f149-5624-49a6-af48-549d0e48fa71','','',NULL), -('10969','Door Control','ControlPanel','DoorPart','0391ca27-2eee-41eb-96dd-99e6fd6d0728','','',NULL), -('10970','TrueDef-Pro Core (Modified)','Armor','Torso','b434206e-6ed5-432f-956c-b26f3b39ef39','','',NULL), -('10971','Debnam Gloves Orange','Char_Clothing_Hands','UNDEFINED','b702cb56-c153-4d3d-bd1f-919bc4e908e7','','',NULL), -('10972','Flight Blade','FlightController','UNDEFINED','7427f9d0-17c1-40b5-a031-9dc94c466dc9','','',NULL), -('10973','TRGT. STATUS','Seat','UNDEFINED','2edc20db-08f3-4db3-85aa-e4931a6b9bbc','','',NULL), -('10974','HG-2 Jaeger (2x Holographic)','WeaponAttachment','IronSight','484cc311-5ef6-4d07-ab75-a75452e7d244','','',NULL), -('10975','ANVL_Valkyrie_Thruster_Main_Front','MainThruster','FixedThruster','db065f22-aa08-4389-be82-b8ff7094b38f','','',NULL), -('10976','Carryable_2H_CY_container_ore_1_tall_c','Misc','UNDEFINED','c8abf6d0-526e-4ce4-835c-05fb3278d38c','','',NULL), -('10977','Carryable_TBO_FL_24SCU_Commodity_ProcessedGoods_EvidenceBox','Cargo','Cargo','2db1fe90-97fa-419f-8c4b-7c18ffd05761','','',NULL), -('10978','AAT-34 Turret','Turret','MannedTurret','44e8f5aa-3f12-45e2-87d4-0423de88e7b0','','',NULL), -('10979','ESPR_BallisticCannon_Barrel_S2','WeaponAttachment','Barrel','7cde0f79-3e0c-4d9a-b71a-b83b3251673e','','',NULL), -('10980','Carryable_2H_CY_weight_barbell_bumperplate_1_5kg_a','Misc','UNDEFINED','a551076c-183c-4ff7-b232-b310055040bf','','',NULL), -('10981','Sadaryx','Cargo','Cargo','4444061f-61e0-4247-987e-855f65fa118a','','',NULL), -('10982','BANU_Defender_Thruster_Main','MainThruster','FixedThruster','bed07c41-3f9f-4daa-85e2-288436da9f98','','',NULL), -('10983','RSI_Aurora_GS_Cargo_Rack','AttachedPart','UNDEFINED','f61f3dcb-eb85-4d53-a21c-bcf0d83a43c8','','',NULL), -('10984','Locker_Suit_DRAK_Corsair','Usable','UNDEFINED','060e5ce0-913f-4989-8330-49292dab87c8','','',NULL), -('10985','Arden-CL Backpack Red Alert','Armor','Backpack','45d17cb6-95f1-4987-b41e-c7210ded2376','','',NULL), -('10986','Ventra Gloves Dark Red','Char_Clothing_Hands','UNDEFINED','7aa2a9fb-839a-45e0-b8ba-6f510a363597','','',NULL), -('10987','MASTER_lt_crate_1SCU','Cargo','UNDEFINED','48251649-ae6a-49c1-895d-843818d7f711','','',NULL), -('10988','facial_hair_018','Char_Head_Beard','UNDEFINED','2dec0896-245b-4ab1-b13d-44b0046c6774','','',NULL), -('10989','burrito_2_shop_1x10_a','ShopDisplay','Default','d2b307d4-186b-4852-af52-152ba57d8861','','',NULL), -('10990','Zenith \"Landslide\" Laser Sniper Rifle','Weapon','Medium','b1662474-624e-453d-93fa-64638bcf9317','','',NULL), -('10991','LH86 \"Desert Shadow\" Pistol','Weapon','Small','15beb454-90fb-4492-a06f-44a8eda06949','','',NULL), -('10992','HAVEN','Shield','UNDEFINED','aebbc33c-5a32-43c7-8646-f3373466c68f','','',NULL), -('10993','WorkLife Pants Black','Char_Clothing_Legs','UNDEFINED','2ab42a6b-ba40-4783-bd77-e1538238032a','','',NULL), -('10994','ActiveWear Training Shorts Khaki','Char_Clothing_Legs','UNDEFINED','bbd8c0de-d106-4533-a028-cea52d999b40','','',NULL), -('10995','Remote Turret','Turret','GunTurret','87d06f4d-2a38-47af-ab8d-52f427ae4917','','',NULL), -('10996','Tungsten (Ore)','Cargo','Cargo','ffea8c03-60a0-4d6f-b2ee-d847e084a8f6','','',NULL), -('10997','mobiGlas Ocean Casing','MobiGlas','Personal','70285c6e-e46e-4270-a61b-082ae71f38dc','','',NULL), -('10998','Seat','SeatAccess','UNDEFINED','22e4ff27-5645-4b91-bdad-3c988f3ab624','','',NULL), -('10999','Parvat Jacket Backdraft','Char_Clothing_Torso_1','UNDEFINED','69d17a6c-0338-4f06-a42e-4c6bb2e3bca2','','',NULL), -('11000','Weapon Rack','Usable','UNDEFINED','e76fe33a-4e54-4ba4-8f5a-dac668b591a4','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('11001','ANVL_Gladiator_Thruster_Mav_Joint_02','ManneuverThruster','JointThruster','500a6de0-26ed-4831-bbfc-9f13baa3c5c2','','',NULL), -('11002','Quartz (Raw)','Cargo','Cargo','4a85671f-e17b-4792-af89-9b1f352645e1','','',NULL), -('11003','BEHR_BallisticRepeater_FiringMechanism_S2','WeaponAttachment','FiringMechanism','6ad18354-8c76-4578-b060-a1b2d3eaf3ee','','',NULL), -('11004','MISC T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','1806ffa5-84ed-4252-9daf-947fde440f9c','','',NULL), -('11005','Blood_Decal_Streak','Decal','DoorPart','6a957fb1-8b70-4f4d-a975-22466ac4e2c8','','',NULL), -('11006','ORIG_X1_Ground_Refueling_Port','Door','UNDEFINED','02bb4e97-1e63-4998-bc04-b151cd2835c4','','',NULL), -('11007','Door','Door','UNDEFINED','d4dbb2f7-eb01-4946-8d5c-703110a9ecdc','','',NULL), -('11008','Venture Arms Yellow','Armor','Arms','1ac304b7-7855-4558-8b26-04b25f93961f','','',NULL), -('11009','H_Dashboard_Projector_HUD_ANVL_Lightning_F8','Display','UNDEFINED','517ee1fe-2e3a-4070-a332-62487efcd448','','',NULL), -('11010','Flight Blade','FlightController','UNDEFINED','4c143b67-e684-47b7-99e3-6ec869ed90ea','','',NULL), -('11011','Novikov \"Expo\" Helmet','Armor','Helmet','e60e1386-51d1-488a-9ad9-04f98d7ee81c','','',NULL), -('11012','Testudo Core Disrupt Camo','Armor','Torso','5056e6f9-4a55-4902-9190-ce4d8e5dfc5e','','',NULL), -('11013','Paint_Hammerhead_Procyon','Paints','UNDEFINED','abf9e951-73eb-429a-861b-f42da2a25c2a','','',NULL), -('11014','TruBarrier Hazard Suit Cobalt','Char_Clothing_Torso_1','UNDEFINED','1a7b010d-ac45-4749-bc2e-22ec924de710','','',NULL), -('11015','Tona Shoes Green','Char_Clothing_Feet','UNDEFINED','e3879057-edd4-4060-b240-8580813f8897','','',NULL), -('11016','Door','Door','UNDEFINED','e5ce64f1-c7dc-4b3e-9c64-1c4c1fd409af','','',NULL), -('11017','RSI_Bengal_Dashboard_Large_Remote_Turret','SeatDashboard','UNDEFINED','995869bb-3583-4345-b748-f0e1d44b09a1','','',NULL), -('11018','ComfortAir Lite','LifeSupportGenerator','UNDEFINED','b9c57c11-2e49-4098-9475-671b7788e318','','',NULL), -('11019','Weapon_Rack_1_NONE_LMG_Common_001','Usable','UNDEFINED','a655d368-d1c3-48b1-a1f4-0f9ec28b565a','','',NULL), -('11020','Flareweed Stalk','Misc','UNDEFINED','90c24dc0-6d94-424d-86a3-8c4358168c16','','',NULL), -('11021','RPEL','Shield','UNDEFINED','0d335e5f-94ea-4d27-a608-6024e588e131','','',NULL), -('11022','Inquisitor Core Olive','Armor','Torso','167623eb-929c-44a0-9005-2942fc69de7c','','',NULL), -('11023','Door Control','Door','UNDEFINED','e21c4c09-d78b-4e83-9227-8cd7f1bbd019','','',NULL), -('11024','AEGS_Retaliator_CargoGrid_Front_Main','CargoGrid','UNDEFINED','85330907-ff0d-4ddf-9b8d-5e1ee6e28a5e','','',NULL), -('11025','Testudo Core Clanguard','Armor','Torso','6384133d-4fc0-49e5-9481-0e5160c0e383','','',NULL), -('11026','Beradom','Cargo','Cargo','0eeaba20-45f7-4b9d-afe5-ce9dee006d86','','',NULL), -('11027','RSI_Mantis_Thruster_Retro','ManneuverThruster','JointThruster','5c08cc95-30c3-4a23-9f6e-683ee02eab37','','',NULL), -('11028','Aurora Mk I Invictus Blue and Gold Livery','Paints','UNDEFINED','85d6910a-93f3-4a1d-96f9-1954860a78bc','','',NULL), -('11029','Book','Misc','UNDEFINED','effef363-37cb-4e65-879a-7f0873e2f9c5','','',NULL), -('11030','Door Control','Door','UNDEFINED','d1631ef5-c9b1-4616-bd5a-c1d5f58570dd','','',NULL), -('11031','Torrent Compensator2','WeaponAttachment','Barrel','88dcee19-a914-4624-8100-45a2ac913731','','',NULL), -('11032','Flight Blade','FlightController','UNDEFINED','5b5c7aed-38ac-42e8-a180-43a574c690f7','','',NULL), -('11033','ORIG_600i_Seat_Bridge_Right','Seat','UNDEFINED','302fc178-6d26-40c0-8b4a-35e324c41abe','','',NULL), -('11034','Elevator Control','Elevator','UNDEFINED','95fdaf3e-ad7a-4ba4-9b3e-21fc229b5d11','','',NULL), -('11035','Seat','SeatAccess','UNDEFINED','5d3beb4f-464b-4f1e-b419-9f3512ed44bd','','',NULL), -('11036','Omnisky IX Cannon','Weapon','Gun','95c85f25-ccd9-402e-b02a-522f5a97a654','','',NULL), -('11037','Ati Jacket Dark Green','Char_Clothing_Torso_1','UNDEFINED','f5dc3c80-10c6-4858-83f5-31dcc7a71e34','','',NULL), -('11038','rack_gun_size_4_005x00375x015_1_a','Misc','UNDEFINED','20f68c9d-423c-442a-a38c-70a4b0e3897d','','',NULL), -('11039','AEGS_Sabre_Firebird_Thruster_Mav_Joint_04','ManneuverThruster','JointThruster','b5681fcf-666a-41c0-8d84-5086f1c6b3a4','','',NULL), -('11040','CRUS_Intrepid_Thruster_Mav_Top','ManneuverThruster','UNDEFINED','365056b5-5a8b-4115-af4f-3f09cc5631ad','','',NULL), -('11041','Stud','Char_Head_Piercings','UNDEFINED','907a2fc0-4823-44e7-9593-1766aa1892ae','','',NULL), -('11042','Tractor Turret','ToolArm','UNDEFINED','43421e75-383e-48c3-9820-00e0f8193c08','','',NULL), -('11043','Bed','Usable','UNDEFINED','44adc9b7-81c3-430c-906d-acfbeb9698f0','','',NULL), -('11044','MSD-683 Missile Rack','MissileLauncher','MissileRack','094b4d58-a73c-4ccb-8151-68b4f9fb1d66','','',NULL), -('11045','Mala','Cargo','Cargo','741a39f0-fc9a-4560-b7a5-fdfb09bb1ecd','','',NULL), -('11046','Titanium','Cargo','Cargo','1bde62de-c306-4756-b901-b4299a223b3a','','',NULL), -('11047','Flight Blade','FlightController','UNDEFINED','a5e39736-be94-4214-8063-c8fa9aabe24d','','',NULL), -('11048','INTK_CNOU_HoverQuad','FuelIntake','Fuel','8d26d892-445c-4b60-ab17-eec78218ff55','','',NULL), -('11049','MISC_Hull_A_Thruster_VTOL','ManneuverThruster','FixedThruster','7edc17aa-a5b1-43cb-b8a3-25b44fe64661','','',NULL), -('11050','Bar_Table_small_rdwn_2_seat','Usable','UNDEFINED','fb6e1068-b3e0-450e-87d8-d0088af7d86d','','',NULL), -('11051','Mug','Drink','UNDEFINED','3e723218-e982-4ec1-b430-43583ead0a43','','',NULL), -('11052','Door Control','Door','UNDEFINED','8ffab339-cb54-4795-92cb-31dd3cd17764','','',NULL), -('11053','Testudo Core Deathblow','Armor','Torso','a3ce6502-8004-4c58-9788-bc391d77ad3f','','',NULL), -('11054','Concept Shirt','Char_Clothing_Torso_1','UNDEFINED','e6cb0703-a25b-4adb-b51c-4799b6e55bf5','','',NULL), -('11055','Deadhead Helmet Dust','Armor','Helmet','d765957b-e68d-463b-887f-379654a5510b','','',NULL), -('11056','MacFlex Legs Olive','Armor','Legs','a7a1807b-4ffa-420a-939c-d181cbabfc91','','',NULL), -('11057','Carnifex Armor Core Brassy','Armor','Torso','648bca08-c754-4bec-8bf1-4d1d46e033e5','','',NULL), -('11058','Venture Undersuit Purple/Black','Armor','Undersuit','75862bfe-9432-47ff-8ea7-d1ce8397008e','','',NULL), -('11059','un_box_plastic_1_berries_b','Misc','UNDEFINED','551c7d09-ccdc-43d5-a544-ae4585695952','','',NULL), -('11060','Salvation Eureka Livery','Paints','UNDEFINED','b47c2586-e012-4321-b642-ed44e0c7ff37','','',NULL), -('11061','Caterpillar Deck the Hull Livery','Paints','UNDEFINED','5f6eb22e-f7e0-4c87-9e68-27179f217b2a','','',NULL), -('11062','Door Control','ControlPanel','DoorPart','2d150366-15ab-4da4-9060-3843b8467106','','',NULL), -('11063','Aves Talon Helmet','Armor','Helmet','113b8ce8-6703-4004-8b30-a73b96d48c23','','',NULL), -('11064','CNOU_Mustang_Beta_Thruster_Main','MainThruster','FixedThruster','66a2703e-8df3-4f57-9e0b-031e6c432bb6','','',NULL), -('11065','Aurora Mk II Obscurity Livery','Paints','UNDEFINED','da651812-4804-4c9d-9b0a-d143bbdd92db','','',NULL), -('11066','Pulverizer \"Zigzag\" LMG','Weapon','Medium','d04c3b55-ca67-4076-834c-45e57e4d3de2','','',NULL), -('11067','Ready-Up Helmet Sienna','Char_Clothing_Hat','UNDEFINED','65fed3c6-aba7-45a2-be7b-bffa27e639d2','','',NULL), -('11068','Radar_Display_Hornet_F7A_MK2','Display','UNDEFINED','594550f8-d202-4d17-9f94-7334ffe65916','','',NULL), -('11069','Coloma Coat Sage and Navy','Char_Clothing_Torso_1','UNDEFINED','b45986d8-2360-4488-a9df-da6120b87136','','',NULL), -('11070','Hair Care Product','Misc','UNDEFINED','9f0cb790-2bdf-4c49-b8db-0667a8c8fcbd','','',NULL), -('11071','RSI Decoy Ammo Box','WeaponDefensive','CountermeasureLauncher','c34456a1-eda3-421b-bb10-bb676c616017','','',NULL), -('11072','TMBL_Cyclone_SCItem_Dashboard_Passenger','SeatDashboard','UNDEFINED','cbb230de-7fae-40e1-a3d8-37b5c14150fd','','',NULL), -('11073','Invictus Hat Blue','Char_Clothing_Hat','UNDEFINED','6d3712a7-b1f3-4d23-9921-85ba93ae5824','','',NULL), -('11074','Jaclium (Ore)','Cargo','Cargo','59969a6a-76e7-4316-9893-6ddb50a7199c','','',NULL), -('11075','Door Control','Door','UNDEFINED','bdc3b905-fad7-4213-920c-92af9ad7bb95','','',NULL), -('11076','Aurora Mk II DM Module','Module','UNDEFINED','29913ca8-55ff-4add-992e-e779b1e4ab18','','',NULL), -('11077','Morozov-SH-I Helmet Pyrotechnic Vesper','Armor','Helmet','ad9cc137-ea54-45d5-af8c-0b2efe96d3ed','','',NULL), -('11078','Internal Tank','FuelTank','Fuel','6b5e5a09-582d-4df3-b04f-753ebd7584ce','','',NULL), -('11079','DRAK_Caterpillar_SCItem_Seat_TractorBeam','Seat','UNDEFINED','04824870-5fb6-4966-b399-fd048f71ba60','','',NULL), -('11080','Pressurized Ice','Cargo','Cargo','7b7f7d1a-bac5-490f-b4da-fa2f61acbd9f','','',NULL), -('11081','display_components_pallet_250x125x025_a_power','ShopDisplay','UNDEFINED','18af5b3a-cd4e-4b56-af67-ed84dd4b2c74','','',NULL), -('11082','MISC_Starlancer_Thruster_Main','MainThruster','FixedThruster','26ec8ad9-a0d0-49ad-b328-3d0571af7f8d','','',NULL), -('11083','Box_Plastic_050x050x050','Cargo','Small','bc7e0525-8c64-49e1-a1f2-c85b53546580','','',NULL), -('11084','AirlockDoorDefaultTemplate_Int','Door','AirlockPart','aa1a1ecd-de0a-4d94-ba2a-bb59c2f33805','','',NULL), -('11085','Kino Shoes White','Char_Clothing_Feet','UNDEFINED','de5247b1-ca7b-4af1-9079-bb4997168881','','',NULL), -('11086','Door Control','Door','UNDEFINED','4b81b30e-1377-4039-9ddd-83875cd03786','','',NULL), -('11087','Door','Door','UNDEFINED','45ec770a-1607-4b7a-9f6b-8f2ec127ab72','','',NULL), -('11088','Internal Tank','QuantumFuelTank','QuantumFuel','8a4b7764-22fc-49ab-b8c2-2f8001400fb9','','',NULL), -('11089','Door Control','Door','UNDEFINED','d2cbe74a-11da-42ce-b82a-f76206768773','','',NULL), -('11090','Delta \"Scorched\" (1x Reflex)','WeaponAttachment','IronSight','d4d27d5f-3c80-4b31-bc34-2de8357b79d7','','',NULL), -('11091','Irradiated Valakkar Pearl (Grade A)','Misc','Harvestable','e738b605-8ef7-4238-8170-5db0c4f9c15d','R','',NULL), -('11092','m_human_mannequin_base_armor_Collector_HeavyUtil','ShopDisplay','UNDEFINED','da56c51c-936f-44cb-9278-8d38a18e8c16','','',NULL), -('11093','Door Control','ControlPanel','DoorPart','b1c71ab1-f92a-4f4c-aea9-f16ce9498548','','',NULL), -('11094','MSD-442 Missile Rack','MissileLauncher','MissileRack','0a38dafc-a21d-4684-bbb6-20b179ba3535','','',NULL), -('11095','Table_Gama_Syulen','Usable','UNDEFINED','d02bd10c-7e66-4444-b736-36069577b5a6','','',NULL), -('11096','Vehicle_Screen_MFD_Holographic_Nox_C','Display','UNDEFINED','92854604-b167-466b-9144-3b66a84e732b','','',NULL), -('11097','Hercules Starlifter ArcCorp Livery','Paints','UNDEFINED','fdbfaeee-f978-4c2e-86ef-fe1f45050d1d','','',NULL), -('11098','Citadel-SE Legs White','Armor','Legs','4822ce40-491f-4d30-9eb1-0a4b64837b98','','',NULL), -('11099','Double Dog','Food','Junk','aa514342-dc16-44ce-afc7-34b962228b5e','','',NULL), -('11100','Torreto Pants Green','Char_Clothing_Legs','UNDEFINED','4cd4f142-0aba-4dfa-afa8-bcef1c8587d5','','',NULL), -('11101','Seat','Usable','UNDEFINED','f187ae0b-d7f4-48ea-a891-28b8daa03e7b','','',NULL), -('11102','Tempus Tank Horizon','Char_Clothing_Torso_0','UNDEFINED','54726173-0bfb-48d7-8889-4fe195534405','','',NULL), -('11103','Horizon Helmet Grey','Armor','Helmet','bab1351e-a4c0-4f33-a1b2-ce9af62f2346','','',NULL), -('11104','Door Control','Door','UNDEFINED','734f285b-e36c-4b8a-8bae-361d6b24451a','','',NULL), -('11105','sc_nvy_medical_corpsman_pants_01_01_01','Char_Clothing_Legs','UNDEFINED','d9728c9d-270a-4f3f-8ad6-e35b228c15c8','','',NULL), -('11106','Taranite','Cargo','Cargo','fee4c438-9c15-46fd-b69b-215f28c2494c','','',NULL), -('11107','ForceFlex Undersuit Purple/Gold','Armor','Undersuit','ff15f00d-918e-460c-9abb-5bfa5941a4ab','','',NULL), -('11108','Weapon Rack','Usable','UNDEFINED','38925736-c3be-4d90-b014-7849d01bca23','','',NULL), -('11109','Elevator Control','Elevator','UNDEFINED','286b904f-f67f-48af-b8ba-ac9869491aff','','',NULL), -('11110','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','85566c9e-e299-40f4-9d47-0b412ee5bf59','','',NULL), -('11111','Citadel-SE Core Dark Green','Armor','Torso','68fd65e6-6017-4ad6-a770-b164253c204f','','',NULL), -('11112','m_human_mannequin_base_armor_Collector_SpikeyArmor','ShopDisplay','UNDEFINED','068cd85b-2786-4fbc-b7bd-6171b1678f3a','','',NULL), -('11113','display_wall_stand_centermass_3port','ShopDisplay','Default','e222468f-2d4c-4969-8640-a542ee4acd95','','',NULL), -('11114','J-5 Helmet Rust','Armor','Helmet','4d1b1131-572b-4db2-896f-8f7461f7902f','','',NULL), -('11115','OneMeal Nutrition Bar (Roast Chicken)','Food','Bar','b90ef8cd-8c71-4e37-b354-fe6fab41c07a','','',NULL), -('11116','GRIN_STV_Dashboard_Driver','SeatDashboard','UNDEFINED','6d808555-04cb-4670-95ab-3fe402ddaa50','','',NULL), -('11117','Door','Door','UNDEFINED','69dbbc3e-0a5a-4d49-84d7-c9eae80ac8a9','','',NULL), -('11118','Morozov-CH Backpack Thule','Armor','Backpack','7063d4ef-e198-49a4-8da0-0230e3474dcf','','',NULL), -('11119','Scourge Railgun','Weapon','Large','699db405-4ca1-4993-ba58-a9f90001ae6b','','',NULL), -('11120','CBH-3 Helmet Violet','Armor','Helmet','c43bd2f8-3c3f-4d65-a60b-d47decd619bc','','',NULL), -('11121','Polaris Nightbreak Livery','Paints','UNDEFINED','bc0f6356-3cfa-4a54-875b-5456ac03ff0e','','',NULL), -('11122','Ravager-212 Twin Shotgun','Weapon','Medium','3ec76bc1-de5a-44f8-8469-783ec803d89d','','',NULL), -('11123','Ponos Boots Imperial','Char_Clothing_Feet','UNDEFINED','6b15415e-fd25-4b68-a64c-fd92687fb0db','','',NULL), -('11124','Manned Turret','TurretBase','MannedTurret','982679e6-e701-4006-9cb2-4785acdc940f','','',NULL), -('11125','Agricultural Supplies','Cargo','Cargo','9bdf3f41-951d-4419-b35d-3230b3060634','','',NULL), -('11126','KLWE_MassDriver_PowerArray_S1','WeaponAttachment','PowerArray','f745dc02-c36d-419a-99ff-966852c596b5','','',NULL), -('11127','Zeus 2955 Ship Showdown Poster','Misc','Utility','b2d397f9-993a-4495-afc1-11c11743bcfe','','',NULL), -('11128','Internal Tank','FuelTank','Fuel','18f0edd5-2c31-4827-9407-5bc4ab2964fa','','',NULL), -('11129','Terrapin 2954 Ship Showdown Poster','Misc','Utility','2f535672-73c5-4e49-90ef-74b42c3cbd0c','','',NULL), -('11130','Redeemer 2953 Ship Showdown Poster','Misc','Utility','f2ddab21-a878-4faf-8314-e8bfcf361dcf','','',NULL), -('11131','Ma\'s Ready to Eat Chicken Home Stew','Food','Tin','37a49a6f-78f7-49bb-a419-a049bd3132fb','','',NULL), -('11132','Pepperoni Pizza (Slice)','Food','Consumable','686bfc31-e597-4484-a244-624880d7a720','','',NULL), -('11133','TCS-4 Undersuit Lifeforce','Armor','Undersuit','0602b4d4-00bd-41a7-84a2-4f6e48879156','','',NULL), -('11134','Door Control','Door','UNDEFINED','6b6f0797-913d-4cfb-958c-c217b27f4f94','','',NULL), -('11135','Inquisitor Core Raven','Armor','Torso','1e4144b4-b08b-4282-bd67-79e9a1162976','','',NULL), -('11136','7MA \'Lorica\'','Shield','UNDEFINED','fb145cc4-2e30-44a0-865d-b9ea0e40fae1','','',NULL), -('11137','ARGO_ATLS_GEO_SCItem_Seat_Driver','Seat','UNDEFINED','e069e960-816f-42a1-8711-7e46b94dea4e','','',NULL), -('11138','Vulcan','QuantumDrive','UNDEFINED','ead4350a-695e-4d5d-86c3-e33f99d08217','','',NULL), -('11139','Aegis Gladius - Noise Launcher','WeaponDefensive','CountermeasureLauncher','58010245-07e0-4235-aff4-d506cc07e318','','',NULL), -('11140','Door Control','ControlPanel','DoorPart','4c7fb496-eb0c-49a0-ba3a-8beb285a11a7','','',NULL), -('11141','Advocacy Badge (Replica)','Misc','UNDEFINED','e628df8a-122c-46a9-a4cc-710183fef436','','',NULL), -('11142','vanduul_pilot_arms_01_01_01','Armor','Arms','07d3a685-7756-4c35-9ca4-79e204a17ba1','','',NULL), -('11143','TRGT. STATUS','Seat','UNDEFINED','df104805-3e9b-48c4-be46-a4a8215de7fb','','',NULL), -('11144','Taberna Jacket Ash','Char_Clothing_Torso_1','UNDEFINED','4f69045d-8af3-4f6c-9fa3-ebb32ab6fe72','','',NULL), -('11145','RapidCool','Cooler','UNDEFINED','8db577f4-7874-4c0d-950f-1722015b6f5f','','',NULL), -('11146','Kino Shoes Tan','Char_Clothing_Feet','UNDEFINED','8e7e53fb-2179-40d4-ba72-f32d6d89604d','','',NULL), -('11147','Rieger Module','MiningModifier','Gun','44b6d85a-ad86-479b-8cd9-5b3d9ab9eddc','','',NULL), -('11148','Venture Core Olive','Armor','Torso','bfc7556e-6cbe-48a8-abda-3172da05cc44','','',NULL), -('11149','Remote Turret','Turret','Utility','b3344733-3afa-478a-a6c2-0e438cd5a9a7','','',NULL), -('11150','ORC-mkX Core Twilight','Armor','Torso','6bac597c-1848-42c2-9aa1-d7d7e109d5d1','','',NULL), -('11151','stand_shop_medium_Shields','ShopDisplay','UNDEFINED','409e67fe-4d7a-4fbd-ad9c-c46cffa02cea','','',NULL), -('11152','Diamond Laminate','Cargo','Cargo','f2c36585-179c-4848-949c-3b2dae71e5b9','','',NULL), -('11153','Ares Star Fighter Hosanna Livery','Paints','UNDEFINED','2f6d0e7e-5dee-455d-851a-f330a17c2f65','','',NULL), -('11154','AIModule_Unmanned_PU_PDC_PIR','AIModule','UNDEFINED','50375166-0435-4016-b9eb-b0b5a58231e3','','',NULL), -('11155','Maintenance_Workzone_Down_Inspect','Usable','UNDEFINED','6a24abe9-4ea9-4cef-82cc-8c088c774a4f','','',NULL), -('11156','Mivaldi Pants Dark Red','Char_Clothing_Legs','UNDEFINED','4d7083e2-0d0e-4f21-aced-cbdda58343ad','','',NULL), -('11157','Horizon Helmet Sienna','Armor','Helmet','977eed9f-c3d8-45c9-8c91-6bdd0f651584','','',NULL), -('11158','Carryable_1H_SQ_DataPad_Fluff_StormBreaker_DataFacility','Misc','UNDEFINED','40d76551-9fc4-735b-bd3f-d369c644f48d','','',NULL), -('11159','Stratus Jacket Teal','Char_Clothing_Torso_1','UNDEFINED','d63caeed-4086-4964-9f3c-b36f1c2b237b','','',NULL), -('11160','Pite','Char_Head_Piercings','UNDEFINED','53df111e-293d-4968-b631-a3a27ef9026b','','',NULL), -('11161','H_Dashboard_Projector_HUD_ANVL_Hornet_F7C','Display','UNDEFINED','902940fc-2183-4dc6-badd-91d2472e003a','','',NULL), -('11162','Custodian \"Brimstone\" SMG','Weapon','Medium','04f4d949-9504-4dda-ad33-fadcdec04d8f','','',NULL), -('11163','Spirit Intrepid Livery','Paints','UNDEFINED','e17d8189-666f-41aa-b1c8-af212b07a84d','','',NULL), -('11164','Door Control','Door','UNDEFINED','4b9ddcde-5aee-4b9e-bd4e-b731bc21d0da','','',NULL), -('11165','Seat','Usable','UNDEFINED','151d7b19-64f5-4897-a238-e559b4a3aa4c','','',NULL), -('11166','Coda Pistol (Modified)','Weapon','Small','052b79e7-6c1d-4aee-96f6-e6d92559892f','','',NULL), -('11167','none_lmg_ballistic_01_collector01','Weapon','Medium','ee891d64-c65a-47fb-97d2-a5658e16fa85','','',NULL), -('11168','Parvat Jacket Forest Shade','Char_Clothing_Torso_1','UNDEFINED','3a580346-3e9e-4f69-815b-b2d6d0e6eb7f','','',NULL), -('11169','ORIG_350r_Winglet','Misc','UNDEFINED','7901b246-b8fe-4747-8f07-29669431cd18','','',NULL), -('11170','VNCL_Weapon_Mount_Left','Misc','UNDEFINED','3a2e523e-6e5e-46cc-b604-2188fa0781dd','','',NULL), -('11171','MISC_Hull_A_Thruster_Mav_Roll','ManneuverThruster','FixedThruster','634393c2-40e2-4c4a-8cf0-ff46bb3cbd6e','','',NULL), -('11172','Carryable_1H_CY_tool_manual_socket_1_b','Misc','UNDEFINED','60cc8237-766e-4416-a688-f53e58497aa4','','',NULL), -('11173','Taranite','Cargo','Cargo','be1d4ea6-91c4-4b66-a5e6-0e35aa9eec59','','',NULL), -('11174','DRAK_Clipper_Thruster_Retro_Right','ManneuverThruster','UNDEFINED','39f92801-c849-4d26-b4e0-306bea7ce1a6','','',NULL), -('11175','Carryable_1H_CY_bottle_gas_1_a','Misc','UNDEFINED','1fd2a757-2e53-47c3-91fc-7e137c2a787f','','',NULL), -('11176','Invictus Hat Beige','Char_Clothing_Hat','UNDEFINED','4027c62b-cfb1-44f0-a016-f4ff33305614','','',NULL), -('11177','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','118b1a38-9427-4aac-abfe-b65d4e0acac6','','',NULL), -('11178','Carryable_2H_FL_05x05x05_Commodity_Nonmetal','Cargo','Small','11fd89d0-df38-4e88-b19b-fe629d863b95','','',NULL), -('11179','TrueDef-Pro Legs Grey/Green','Armor','Legs','bbc4d982-f0ea-45f8-888d-a38111787a2c','','',NULL), -('11180','ARMR_ESPR_Prowler','Armor','Medium','ef591c41-6546-4026-9a40-c05937c7e13c','','',NULL), -('11181','Internal Tank','FuelTank','Fuel','c53884b8-fbd0-4b0b-8f89-9084afba11c0','','',NULL), -('11182','Low End Couch','Usable','Cargo','101f3a22-1817-42de-8117-ba8b31e088cd','','',NULL), -('11183','Hangar_FreightElevator_CargoGrid_XL','CargoGrid','UNDEFINED','8465c434-90fc-493e-9aec-a89465420601','','',NULL), -('11184','SCItemDisplayScreen_NewsScreen_Lorville','Display','Default','a8a5f3fb-7f06-43de-967e-d42fa1a93cb2','','',NULL), -('11185','AEGS_Retaliator_Door_Screen_01','Decal','DoorPart','9ec430cd-2d83-4f61-a89a-f9e40f92f090','','',NULL), -('11186','Adiva Jacket','Char_Clothing_Torso_1','UNDEFINED','0456e210-a99a-4708-b83c-103c1d02923a','','',NULL), -('11187','HeatSink','Cooler','UNDEFINED','4df4557d-6c24-421a-9db6-36d731dcffe4','','',NULL), -('11188','TRGT. STATUS','Seat','UNDEFINED','9691ecc2-975f-46f7-a27d-9fe9460550a2','','',NULL), -('11189','Corundum (Raw)','Cargo','Cargo','fdf2d12c-eafa-4eac-be26-c418e651bbad','','',NULL), -('11190','INTK_MISC_Fortune','FuelIntake','Fuel','6df259b2-5df0-46de-b471-2ae611e3c024','','',NULL), -('11191','Lost Wallet T-Shirt','Char_Clothing_Torso_0','UNDEFINED','845e1eeb-174a-4396-b368-4a0dacc5bf93','','',NULL), -('11192','DockingTube_Fuel_Ports_BANU_Defender','DockingCollar','UNDEFINED','fbe6aa73-d527-465f-adc8-642a4817ae34','','',NULL), -('11193','M8A Cannon','Weapon','Gun','9937a13e-65d7-4ee2-8ce0-d027e999be97','','',NULL), -('11194','UDM Cargo Plushie','Misc','Flair_Wall_Picture','6490c0b0-b7ba-4ea0-abb0-7f1b4fbe897a','','',NULL), -('11195','Steel','Cargo','Cargo','cdd37bb5-97a0-4089-8518-8e9f812e643f','','',NULL), -('11196','Vulture Longhorn Livery ','Paints','UNDEFINED','0c52ceb6-d267-4dd5-abd0-d546c4cca9f9','','',NULL), -('11197','MSD-442 Missile Rack','MissileLauncher','MissileRack','f74933cf-181c-42d0-b7b9-e01f6340749c','','',NULL), -('11198','ADP Legs Violet','Armor','Legs','1e1edec0-3bd3-45dd-a5c1-581ad4f12208','','',NULL), -('11199','Torite (Ore)','Cargo','Cargo','f9a563ba-4437-4855-97e5-5387a54b8d6f','','',NULL), -('11200','Mala','Cargo','Cargo','a89b60a1-0253-4bd0-ae99-94f20bc0635e','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('11201','Ridgewalker Boots Navy Blue','Char_Clothing_Feet','UNDEFINED','338bedd9-831e-4e7c-bb29-9e0a121100f1','','',NULL), -('11202','AIModule_Unmanned_PU_NineTails','AIModule','UNDEFINED','888ff370-b005-4559-9c10-320bd8ade7c7','','',NULL), -('11203','RSI_Aurora_LN_Thruster_SG_Main','MainThruster','FixedThruster','d24bb9ff-7a3b-47ee-8665-888411b6f30c','','',NULL), -('11204','Seat','SeatAccess','UNDEFINED','5f35e976-b447-4169-850c-73cc8d76b860','','',NULL), -('11205','Deep-Space Undersuit Bruiser','Armor','Undersuit','9fb6a5f1-f5ae-4ca7-ac11-02a23e56c59d','','',NULL), -('11206','Bottle_Liquor','Misc','UNDEFINED','e03c54dc-e198-4f24-b769-bf4b81d822d1','','',NULL), -('11207','Anvil Gladiator','SeatDashboard','UNDEFINED','11b66d92-5eb2-42b9-bc16-9f6ee8c05561','','',NULL), -('11208','AEGS_Retaliator_Thruster_Mav_Fixed_Front_Top_Right','ManneuverThruster','FixedThruster','7f695455-716c-4c0c-9aa6-9d137ac4d34b','','',NULL), -('11209','CargoBox_050x050x050_Metal_StartTop','Cargo','Cargo','2296e12c-8f59-4e9f-8ad6-21744fab6407','','',NULL), -('11210','Degnous Root','Cargo','Cargo','f5a8d50f-231b-40c6-9a3d-3ee9d40b08e3','','',NULL), -('11211','Carryable_TBO_Creature_Trophy_vlkApexFang','Misc','Harvestable','68ccd2a1-6c7f-4373-af4f-501e7a7db99e','','',NULL), -('11212','MISC_Razor_LX_Thruster_Lateral','ManneuverThruster','FixedThruster','14a2eb30-82ea-4ca0-bbdb-24576c2534b3','','',NULL), -('11213','Quell Suppressor2','WeaponAttachment','Barrel','121af95d-f791-42f8-bf26-c4ec73d65db4','','',NULL), -('11214','Tumbril Storm Turret','Turret','TopTurret','7ef065cf-e830-48c1-836d-089ed6cb4574','','',NULL), -('11215','counter_display_mod_center_a_01x01x01_noTopPort','ShopDisplay','UNDEFINED','668b4bb4-7d9b-4246-899f-3e6c7ea3917b','','',NULL), -('11216','H_Dashboard_Projector_HUD_CRUS_Spirit_A1','Display','UNDEFINED','e5dd8381-ca77-4595-a6f8-6a9e080d6aeb','','',NULL), -('11217','ControlPanel_Screen_LightControl_Physical_NoAlarm','ControlPanel','DoorPart','bc8af3c6-60bc-4407-8530-2039c9a7ce0f','','',NULL), -('11218','Wrecker Helmet Ashen','Armor','Helmet','25f43e4d-991c-4d20-aa5b-96bc375a02d9','','',NULL), -('11219','ForceFlex Undersuit Black/Gold','Armor','Undersuit','e8f87624-cf90-4c1a-811a-b789eb83b36c','','',NULL), -('11220','Levin Undersuit Electrum (Refurbished)','Armor','Undersuit','95c5685e-02c3-4730-9bfa-e7b5ea48de1c','','',NULL), -('11221','Spiced Protein Stew Combat Ration','Food','Tin','58c88acc-7dc6-4069-a322-819bfc10f212','','',NULL), -('11222','Door Control','DockingAnimator','UNDEFINED','926571fa-bffa-443d-b765-f06e5810a5aa','','',NULL), -('11223','Table_Bench_4_AEGS','Usable','UNDEFINED','75a6fed3-1d4e-4d44-bb9a-647a563c9220','','',NULL), -('11224','Ares Star Fighter Polar Camo Livery','Paints','UNDEFINED','34e27746-0cef-4eab-a97b-f24b04f3c452','','',NULL), -('11225','Horizon Helmet Twilight','Armor','Helmet','f514397f-ccd3-49a1-854c-09412542a58b','','',NULL), -('11226','Table_Bench_7_AEGS','Usable','UNDEFINED','c96a7733-9873-4c7f-80a7-2269bf5bde8b','','',NULL), -('11227','Table_Bench_8_AEGS','Usable','UNDEFINED','daf73d72-a2b3-4047-bed0-943fab16528b','','',NULL), -('11228','Fortune Luminance Livery','Paints','UNDEFINED','5a20caf8-ca85-45a0-b81b-b6493c00066a','','',NULL), -('11229','ARGO_ATLS_PowerSuit_SCItem_Seat_Driver','Seat','UNDEFINED','ad9758a5-9dfc-4f16-8b8e-f4ec12394a24','','',NULL), -('11230','Attrition-2 Repeater','Weapon','Gun','ea6b4297-83a4-476f-aee0-9d4f87168cf7','','',NULL), -('11231','Aurora Mk I False Colors Livery','Paints','UNDEFINED','9766d23a-8930-4734-bef2-d898e4a5bb75','','',NULL), -('11232','ORIG_315p_Intake','FuelIntake','UNDEFINED','e27e92cd-ad8d-4116-b93e-288044c0aa2e','','',NULL), -('11233','PC2 Dual S4 Mount','Turret','NoseMounted','f10376d0-7068-4124-adf5-aabea4b69c43','','',NULL), -('11234','Vaux Module','MiningModifier','Gun','586a6f24-c94f-4cfc-9370-0df8a5ed3fe2','','',NULL), -('11235','Carryable_1H_SQ_Datapad_Fluff_Orb_HathorGroup_003','Misc','UNDEFINED','48e894b5-6a0f-4b0a-8906-b0f3b08a1a79','','',NULL), -('11236','Test_OutpostMission_DataPad_KeyCode_4x3_Screen_Clue','Display','UNDEFINED','1f0bf2f0-a5c8-4308-a866-e9da32f567e3','','',NULL), -('11237','game_checker_piece_double_b','Gadget','UNDEFINED','23d79324-2b33-4fa8-8fad-eb0beed144eb','','',NULL), -('11238','Door Control','Door','UNDEFINED','ccf656b3-bffc-492d-8368-0eb17432cb20','','',NULL), -('11239','Ammo Crate','Cargo','Cargo','ac3d6f79-258c-47fb-9fe0-8ece7babff68','','',NULL), -('11240','display_grate_wall_a_s1_shipweapons','ShopDisplay','Default','58dfb504-45b8-4f0f-8952-b116591a51c1','','',NULL), -('11241','Aztalan Tamarack Legs','Armor','Legs','91e1da4a-faf8-4b4f-b583-babb996f170e','','',NULL), -('11242','Year of the Monkey Envelope','Misc','UNDEFINED','7c0c019e-29f1-46c7-9adf-3733495d0e14','','',NULL), -('11243','Oracle Helmet Embark','Armor','Helmet','8b7770f5-b664-466b-80d8-1ed97923c0be','','',NULL), -('11244','Snapback Boots','Char_Clothing_Feet','UNDEFINED','307628da-b47d-41df-84fc-b47fb0b23d87','','',NULL), -('11245','One Light Undersuit Blue','Armor','Undersuit','57bea4cf-d6ab-45ae-82af-e44a0e577745','','',NULL), -('11246','Cordimon Jacket Aqua','Char_Clothing_Torso_1','UNDEFINED','9df3d60a-0708-4b9b-857b-85714c7af870','','',NULL), -('11247','MRAI_Guardian_Thruster_Mav_Top_MX','ManneuverThruster','FixedThruster','4ec2ed72-29d5-7b5a-478c-4e27d409e7ba','','',NULL), -('11248','Bottle','Misc','UNDEFINED','6823c3ad-055b-4566-aa56-1292b3f36de6','','',NULL), -('11249','Frost-Star XL','Cooler','UNDEFINED','bea66e66-0d30-4f9c-8eaa-b15002fb2299','','',NULL), -('11250','Carryable_1H_CY_tool_manual_socket_1_a','Misc','UNDEFINED','59c2bab6-f224-4f0f-acc7-f4b314675c33','','',NULL), -('11251','Personal Storage','Cargo','UNDEFINED','c3967c91-5a65-4f44-a647-4dffc0f0553c','','',NULL), -('11252','Steel','Cargo','Cargo','ea4de041-27f4-4405-9be4-54ed2e4ada34','','',NULL), -('11253','H_Dashboard_Projector_HUD_CRUS_Intrepid','Display','UNDEFINED','eead1877-8557-4a4d-9e59-bb97faae4474','','',NULL), -('11254','ControlPanel_Screen_LightControl_9x16_col','ControlPanel','DoorPart','fd2064d1-51fb-4a31-a112-688d8376239a','','',NULL), -('11255','Strata Helmet ArcCorp Black','Armor','Helmet','b05e445d-dc87-420b-93b7-5a6eb964b440','','',NULL), -('11256','MXOX_NeutronRepeater_FiringMechanism_S3','WeaponAttachment','FiringMechanism','6768613e-5c87-4505-940e-5b4a96e3038b','','',NULL), -('11257','RSI Constellation Painting','Misc','Flair_Wall_Picture','2c7b59c8-2c40-4dfe-97cf-9b99f1dd9f19','','',NULL), -('11258','Door Control','Door','UNDEFINED','df956979-c941-483d-8410-33beb6c7efa6','','',NULL), -('11259','FS-9 \"Stoneface\" LMG','Weapon','Medium','cd5b759f-5d1f-4a70-a47e-4153ad35e495','','',NULL), -('11260','Fortuna Racing Flight Suit','Armor','Undersuit','e6511d9a-03ab-41c6-8d1f-5f8d2b4b879d','','',NULL), -('11261','Door Control','ControlPanel','DoorPart','efcb578e-eabd-46bc-8579-d6607d57d99a','','',NULL), -('11262','Hardean Jacket and Shirt Sunday','Char_Clothing_Torso_1','UNDEFINED','8e0d98ad-7fe0-440e-9b32-1f1b1530533d','','',NULL), -('11263','RSI_Scorpius_Thruster_Main_Top_Right','MainThruster','FixedThruster','791b1713-a71c-4d79-9f90-f3f3045101d7','','',NULL), -('11264','ANVL_Lightning_F8_Thruster_Main_Grey','MainThruster','FixedThruster','8390efa5-b95f-4887-a5ef-335176f2a87f','','',NULL), -('11265','VNCL_Blade_Thruster_Aux_Fixed_01','ManneuverThruster','FixedThruster','5f63e356-b0bb-4d52-9dec-f60249845ab3','','',NULL), -('11266','Dak Galbi Chicken Burrito','Food','Junk','d030076e-3747-4b1b-bb81-7eb1e5f1f98d','','',NULL), -('11267','Radar_Display_Hornet_F7CM_Mk2_CP','Display','UNDEFINED','af3cdd1b-2369-4db2-8acd-109bbc4c30b3','','',NULL), -('11268','rod_torso1_03x01x04_18Ports','ShopDisplay','Default','d0f9e126-476e-4b01-af90-b7361963a4d7','','',NULL), -('11269','ST-205 Missile Rack','MissileLauncher','MissileRack','0aacb3f5-96b3-43a1-b566-d537d9e6cebe','','',NULL), -('11270','DRAK_Cutlass_Steel_Thruster_Maneuver_Rear_Bot','ManneuverThruster','JointThruster','ef4986c1-c3e9-4eec-8c28-8aec74f2888d','','',NULL), -('11271','SparkFire','QuantumDrive','UNDEFINED','83ecc7c9-7869-42c9-9b67-c58948a89e58','','',NULL), -('11272','RangeFinder Jacket Element','Char_Clothing_Torso_1','UNDEFINED','24eae38f-0ea4-4d51-96c6-e5d0dbadf682','','',NULL), -('11273','Seat','Usable','UNDEFINED','4915dbe9-c3d2-4e67-bb79-5af2754870d1','','',NULL), -('11274','Libio Jacket White','Char_Clothing_Torso_1','UNDEFINED','48a1d3c4-1a77-4f02-96e6-80400cadf04e','','',NULL), -('11275','Inquisitor Core Blue','Armor','Torso','2c010f15-4e9b-481d-93ae-71ea4c739d69','','',NULL), -('11276','DockingTube_RefuelNozzle_FuelGiver_MISC_Starfarer','DockingCollar','UNDEFINED','66cd26ca-7db5-402e-aaac-e391bdcb1def','','',NULL), -('11277','Datapad','Misc','UNDEFINED','ad02c964-20bc-4c45-9da5-55b180cfe741','','',NULL), -('11278','Door','Door','UNDEFINED','f130e12e-fd92-4ea9-ae88-06e1f2c98080','','',NULL), -('11279','ASAD_DistortionRepeater_PowerArray_S1','WeaponAttachment','PowerArray','c8a3bfbd-b17d-4f90-b094-935c003a70df','','',NULL), -('11280','Cody Gloves','Char_Clothing_Hands','UNDEFINED','80e5cf8b-b704-4e2c-ad4f-daf13490ba55','','',NULL), -('11281','Ventris Jumpsuit Crusader Edition','Char_Clothing_Torso_1','UNDEFINED','6b74d1d3-ab4b-46f3-af0a-4e2c90f494e9','','',NULL), -('11282','Lt_DoorPanelScreen_Locked','Misc','UNDEFINED','b788cb4f-842a-4d33-84df-e59c81086f09','','',NULL), -('11283','Jungle Quasi Grazer Egg','Misc','Harvestable','3a74229d-4654-43f7-8148-8c135f62b82b','','',NULL), -('11284','Beacon Undersuit Red/Black','Armor','Undersuit','47a9fe47-405e-4828-bc2d-73192c6ef946','','',NULL), -('11285','H_Dashboard_Projector_HUD_RSI_Polaris_CP','Display','UNDEFINED','3f60da49-8614-4ad6-90aa-5527cc448612','','',NULL), -('11286','weight_barbell_bumperplate_rack_1_a','Misc','UNDEFINED','258101bc-25ed-4710-9c34-9f12a61bcadd','','',NULL), -('11287','Balor HCH Helmet Red','Armor','Helmet','5fc35e71-19ff-4e2a-9f82-f9c968721838','','',NULL), -('11288','orig_bedding_duvet_3_g','Seat','UNDEFINED','b06a3f79-1efd-4b62-8517-248c7cb779b8','','',NULL), -('11289','Chada Collar and Panniers Spruce','Char_Clothing_Torso_1','UNDEFINED','278abb41-ff29-4ade-a6f8-2cf34b40bb03','','',NULL), -('11290','GLSN_Shiv_Thruster_Retro_Right','MainThruster','FixedThruster','b8910d6f-16d2-48d2-9de0-70fdfccff0d0','','',NULL), -('11291','Li-Tok Boots Green','Char_Clothing_Feet','UNDEFINED','a802e1fc-4d88-4f4c-8a68-771fd175b56c','','',NULL), -('11292','Livia Shirt (Modified)','Char_Clothing_Torso_0','UNDEFINED','e9d6b566-1b0d-4074-9420-3f8042747ffd','','',NULL), -('11293','DockingTube_Fuel_Ports_AEGS_Vanguard_Hoplite','DockingCollar','UNDEFINED','a7bb37a3-5b80-4be2-aeab-0e0894315cca','','',NULL), -('11294','Stormburst Bomb','Bomb','Utility','1b95523e-e2de-4de9-9b41-2cf79bfae59a','','',NULL), -('11295','Adiva Jacket Violet','Char_Clothing_Torso_1','UNDEFINED','cf63d187-71bb-4934-ba8b-c455f0350444','','',NULL), -('11296','Vehicle_Screen_MFD_Holographic_ORIG_400i_L','Display','UNDEFINED','c33db04e-9395-448a-8fdf-f72d218432b7','','',NULL), -('11297','Citadel Arms Dark Red','Armor','Arms','de45351f-8bb1-4e5a-b7cc-e3e560d14ee6','','',NULL), -('11298','RSI_Apollo_Docking_Collar_Large','Door','UNDEFINED','4271f80f-1e9b-eb77-f05f-c420c4537f97','','',NULL), -('11299','Vehicle_Screen_MFD_Holographic_ORIG_100i_L','Display','UNDEFINED','2eee634d-b5bd-4fc1-ba0b-c7fc2f85253c','','',NULL), -('11300','Carryable_TBO_Creature_Trophy_vlkApexPearl','Misc','Harvestable','732174ca-e164-47f6-a19a-08deda6ab1f2','','',NULL), -('11301','RSI_Constellation_Fake_Merlin','Container','UNDEFINED','038a6d91-7064-4c19-a2fb-dde328adaeeb','','',NULL), -('11302','Maze','Cargo','Cargo','baad59ea-c25d-4b46-ba53-8400059491d9','','',NULL), -('11303','MSD-683 Missile Rack','MissileLauncher','MissileRack','72b8b47b-d61f-4e07-9298-f20044f9508f','','',NULL), -('11304','Foundation Festival \'54 Coin','Misc','Utility','2feafc37-9768-4ac3-9631-d35ec6f3cd2f','','',NULL), -('11305','Fractus Gloves Teal','Char_Clothing_Hands','UNDEFINED','62173a57-ce47-465a-bc03-e83dfbc2a4eb','','',NULL), -('11306','StorageCage_Damage_ZeroG_Empty','Cargo','UNDEFINED','abe2cc34-d9fe-4050-9e98-399c2aecc2a0','','',NULL), -('11307','Datapad','Misc','UNDEFINED','1c4242b7-0da8-4ded-80e1-0a4ac4bd56b7','','',NULL), -('11308','ORIG_100i_Thruster_Retro_Right','ManneuverThruster','JointThruster','13961747-8cf7-4aaf-99f7-6632fed23783','','',NULL), -('11309','Bannock Jumpsuit Black','Char_Clothing_Torso_1','UNDEFINED','25e0b4e7-f6da-4caa-b17b-23083b1ee697','','',NULL), -('11310','ORC-mkV Legs Aqua','Armor','Legs','b5c3262c-936a-4f82-8b4a-ff97c3d1cafe','','',NULL), -('11311','400i Penumbra Livery','Paints','UNDEFINED','0b98f172-5ab8-403b-8a82-093a96911833','','',NULL), -('11312','Chokehold Gloves Sleet','Char_Clothing_Hands','UNDEFINED','2364ccda-e3fa-4d7a-a2cf-30af731705a2','','',NULL), -('11313','Ati Jacket','Char_Clothing_Torso_1','UNDEFINED','d410f968-8aed-4426-9120-a3fb4648c2e1','','',NULL), -('11314','RSI_Zeus_ES_Thruster_Main_Top_Left','MainThruster','UNDEFINED','3473a99b-cf25-4d42-8655-491c1834dd36','','',NULL), -('11315','Pitambu','Cargo','Cargo','7388e39d-b6e9-4dba-a4f2-68b924737c4f','','',NULL), -('11316','Access','SeatAccess','UNDEFINED','5f66fa45-a93a-4bef-a941-9205de892a8a','','',NULL), -('11317','Calister Jacket Shuttle Gray','Char_Clothing_Torso_1','UNDEFINED','fc251db0-c0ef-4df9-acf1-f5ee28b2f18f','','',NULL), -('11318','Door Control','Door','UNDEFINED','77f45e8a-4e2c-45c4-ad54-9f5f2e7b2e51','','',NULL), -('11319','Overlord Legs Flashback','Armor','Legs','0a5b19d8-2e51-425e-bba9-83485d91a7f0','','',NULL), -('11320','Seat','Usable','UNDEFINED','9aafdcaa-0fb1-422d-b032-aeddd69af4d3','','',NULL), -('11321','MISC_Door_Decal_Hull_A_Airlock','Decal','DoorPart','7586c17c-10bd-4e16-9c5a-c11eb4cc8d75','','',NULL), -('11322','Glacosite','Misc','Harvestable','ae6d8d74-04fa-4d21-9991-4232f8eb2cfe','','',NULL), -('11323','Remote Turret','Turret','GunTurret','a0571aa6-f71f-4465-a38a-44005e372ccc','','',NULL), -('11324','ADP-mk4 Helmet Righteous','Armor','Helmet','40db1cc3-db01-4c3c-97a7-3f6a902c4d99','','',NULL), -('11325','Esteril Lab Coat ASD Edition','Char_Clothing_Torso_1','UNDEFINED','7f85c5a3-101f-4a8c-ab27-ad8a45dc671b','','',NULL), -('11326','he_a_wall_low_left_a_center','ShopDisplay','UNDEFINED','d561126f-da6c-498f-817b-6de3dd927925','','',NULL), -('11327','Door','Door','UNDEFINED','6da456b4-79b8-4d82-a699-b9e09d45b0b7','','',NULL), -('11328','Internal Tank','QuantumFuelTank','QuantumFuel','0ac5b393-3462-41a3-ab4f-7940e1de6ac1','','',NULL), -('11329','display_guns_scopes_04x01x01_2_4Ports','ShopDisplay','UNDEFINED','8383cd52-c55f-47c5-aa61-ab2016bc9f39','','',NULL), -('11330','Remote Turret','Turret','BallTurret','975fb594-5a96-4f42-bb79-554668e9e0a6','','',NULL), -('11331','Lynx Legs Sandstorm','Armor','Legs','fd1367e0-9c11-418f-8a34-bcbfad550b78','','',NULL), -('11332','Cumulus Pants Teal','Char_Clothing_Legs','UNDEFINED','05d2d567-0575-42b4-803b-88655162c6f0','','',NULL), -('11333','Seat','SeatAccess','UNDEFINED','5feb8526-754b-4154-ad17-ce2a66a04a4b','','',NULL), -('11334','Parallax \"ArcCorp\" Energy Assault Rifle','Weapon','Medium','60a7a08c-9450-421e-ae10-3acf1b0686f0','','',NULL), -('11335','Door Control','Door','UNDEFINED','021d1d15-5648-4d2e-ade1-d19969025ee8','','',NULL), -('11336','GAMA_Syulen_Headlight_Top','Misc','UNDEFINED','ae3fc01a-ee78-4dbf-8bc7-5149ae64b3bd','','',NULL), -('11337','Door Control','ControlPanel','DoorPart','02ea923b-c288-4a1a-a96f-d53a9bc7227f','','',NULL), -('11338','Combat Supplies','Cargo','Cargo','623b4e75-7221-4db3-9410-a5972b80cbea','','',NULL), -('11339','ARGO_MOLE_Thruster_Mav_Joint','ManneuverThruster','JointThruster','ca2c842a-4c3d-4291-aefa-9c37d6d53635','','',NULL), -('11340','Testudo Arms Combustion','Armor','Arms','7ad4b3e9-343d-4fc5-a4a7-951350eef978','','',NULL), -('11341','Pingala Seeds','Cargo','Cargo','1ed06f81-6b41-4107-84b1-18fa3c8c97c0','','',NULL), -('11342','GRIN_ROC_CargoGrid_Main','Container','Cargo','a3ea3ede-23a3-410d-a576-175d25949c17','','',NULL), -('11343','MC-DFA Hat','Char_Clothing_Hat','UNDEFINED','61346f85-70eb-4442-9634-ab67e2a70b86','','',NULL), -('11344','AEGS_Redeemer_Storage_Decal_01','Decal','DoorPart','fe3767b9-2afb-4ce6-8799-0aeaae1b5dda','','',NULL), -('11345','Miner\'s Horn','Misc','Harvestable','332b51c6-d1da-476f-960c-f76154c0cf5f','','',NULL), -('11346','Omarof (16x Telescopic)','WeaponAttachment','IronSight','ab80732a-c829-45e7-92c0-2f4893a8f1f8','','',NULL), -('11347','DockingTube_Fuel_Ports_ARGO_MOLE','DockingCollar','UNDEFINED','dcc5827c-2d51-44bd-b821-f1223d36aa18','','',NULL), -('11348','Seat','Usable','UNDEFINED','8e04c557-4715-4e2e-8f53-2e8df3358e27','','',NULL), -('11349','TRGT. STATUS','Seat','UNDEFINED','01cb781b-9e46-4c12-93e9-aea749092570','','',NULL), -('11350','sc_nvy_bdu_jumpsuit_02_01_20','Char_Clothing_Torso_1','UNDEFINED','3b0e29a1-ecee-4182-b705-aca2be69a62a','','',NULL), -('11351','Lynx Core Imperial','Armor','Torso','588b2565-ae51-4bc1-85e2-ffaebba632f5','','',NULL), -('11352','Quantity','Misc','UNDEFINED','1c2cf175-30bb-4860-a2c6-d3d8f42a9646','','',NULL), -('11353','RSI_Bengal_Thruster_Retro_Main_Right','ManneuverThruster','JointThruster','94f8e005-ce15-4429-9878-6da902129920','','',NULL), -('11354','Lindinium (Ore)','Cargo','Cargo','7ad7a688-93d1-4daa-8f83-6be34f88f14e','','',NULL), -('11355','BEHR_LaserRepeater_FiringMechanism_S10','WeaponAttachment','FiringMechanism','f7e2ec51-931a-47f3-b71f-07b7313bafd5','','',NULL), -('11356','Samya Tank Birch','Char_Clothing_Torso_0','UNDEFINED','271af0de-8a7a-4b7f-b597-54d8bad90e1e','','',NULL), -('11357','Seat','SeatAccess','UNDEFINED','89a1c5f2-c9ef-4499-8aa0-1f1b705e3310','','',NULL), -('11358','Counter_Bar_1m_shelf_DEPRECATED','Usable','UNDEFINED','0a445bd5-c5ac-43ed-9681-13f1aa1bdc09','','',NULL), -('11359','Hermes Navarra Livery','Paints','UNDEFINED','a1d7c68e-af12-4a8c-876c-0fdc73040fb5','','',NULL), -('11360','Neograph','Cargo','Cargo','a02c059e-bff1-42a9-b3cb-c15794757d65','','',NULL), -('11361','Fortifier Helmet Roughshod','Armor','Helmet','93cc91da-f89d-4fd8-805b-2ad85db26e6c','','',NULL), -('11362','Vacha Jacket Midnight','Char_Clothing_Torso_1','UNDEFINED','cd02c7b4-c103-4db2-85d5-ee241ec25b2e','','',NULL), -('11363','Door Control','Door','UNDEFINED','5f34a55c-fde9-44d7-b29f-6b42e023cf0a','','',NULL), -('11364','CRUS_Spirit_Door_Decal_PowerPlant','Decal','DoorPart','2385af23-43fc-4d6b-b6f6-61f6722e8416','','',NULL), -('11365','Locker_Shallow_WallRight_AEGS_NoWall','Misc','UNDEFINED','7ef4b77c-3b02-4df2-95d7-1869e81ad81b','','',NULL), -('11366','Weapon Rack','Usable','UNDEFINED','da779de9-844e-46e2-a9a1-537b6ca2053f','','',NULL), -('11367','Balor HCH Helmet Olive','Armor','Helmet','bd9a0eba-9da9-46a6-a100-318e9f8c1da2','','',NULL), -('11368','AEGS_Door_Decal_MessHall_Single','Decal','DoorPart','1149dca5-05f4-4405-bb87-49c5c05af7da','','',NULL), -('11369','INTK_CNOU_Mustang_Alpha','FuelIntake','Fuel','bbcbe77b-1be2-42ce-8cca-c4aa04b5ea8b','','',NULL), -('11370','MISC_Hull_C_Dashboard_Tractor','SeatDashboard','UNDEFINED','82f39cb2-b073-465c-91a4-8ba7a8b01626','','',NULL), -('11371','Shimmer','Shield','UNDEFINED','ecc8d200-548c-4de0-a60e-d1e316515170','','',NULL), -('11372','AEGS_Door_Decal_CapQ','Decal','DoorPart','68b97bde-44d0-495f-8e64-a9aff2700a47','','',NULL), -('11373','Door Control','ControlPanel','DoorPart','d2c0f090-1191-4a2d-9c92-c92e44b46f14','','',NULL), -('11374','Door_Ship_Sensor_Proximity_6x4x2','Sensor','DoorPart','4d7474bc-364d-4b97-88d6-8e644a0e40a1','','',NULL), -('11375','MPUV-1P PHB Flight Blade','FlightController','UNDEFINED','c3aab17a-cc16-4c8a-afae-0ffa0a5eb3f0','','',NULL), -('11376','Door Control','Door','UNDEFINED','715fd0ff-2e94-4a1c-bc6b-9e8eaa9538e3','','',NULL), -('11377','Intrepid Nocturne Livery','Paints','UNDEFINED','ee6b42a1-df1d-47fa-b898-5ee452bc9868','','',NULL), -('11378','PAB-1 Legs Greycat Edition','Armor','Legs','63de3464-11ee-45df-bc7c-1ef4df879a91','','',NULL), -('11379','Stronghold','Shield','UNDEFINED','3a2e37f0-dc95-4082-b74d-fe968ed64eb3','','',NULL), -('11380','DoorProximitySensor_8x3x3','Sensor','DoorPart','526b8d86-ed70-4ca8-97b8-88b2557d7514','','',NULL), -('11381','PAB-1 Arms Black','Armor','Arms','8a24e0e2-7bba-4e95-879d-6c864a6d758a','','',NULL), -('11382','RSI_Polaris_SeatAccess_ATC','SeatAccess','UNDEFINED','f355bd06-c6bd-4f3d-8fca-c19716981889','','',NULL), -('11383','AAT-34 Turret','Turret','MannedTurret','24c9fd70-995e-4b66-9ccd-0c65992ebf66','','',NULL), -('11384','Door','Door','UNDEFINED','c58ea601-320c-4a24-a994-c1ca13d663dc','','',NULL), -('11385','Gamma LL (1x Holographic)','WeaponAttachment','IronSight','d5da6ad7-8013-4db0-a75e-3060f7d987db','','',NULL), -('11386','Anvil Noise Launcher','WeaponDefensive','CountermeasureLauncher','f77baf89-8edc-4c1c-b385-5827ee44d112','','',NULL), -('11387','ORIG_125a_Thruster_Mav_Right','ManneuverThruster','FixedThruster','2fa5dc80-65a0-43d0-b099-4ff4b01a7d08','','',NULL), -('11388','ammoCrate_01Port','ShopDisplay','UNDEFINED','48e5b64b-958c-400b-97e7-42bbef21d1db','','',NULL), -('11389','Cargo_Comm_125x3_Metal_Aluminum_a','Cargo','Cargo','c832b978-2f4a-4121-8c26-0f8ed3c821f6','','',NULL), -('11390','ESPR_Talon_Thruster_Main_TR','MainThruster','FixedThruster','1e8c3a62-2f24-4fb1-904e-469726d8a4f1','','',NULL), -('11391','Carryable_1H_CY_subi_dain_sasu_s01_pl01_100','Misc','UNDEFINED','c44c0121-d9ba-4ac5-929c-3c6fb4dbafcb','','',NULL), -('11392','AEGS_Retaliator_SCItem_Seat_Bed_Lower_Left','Seat','UNDEFINED','87e8d6ec-fa29-47df-be5c-f585b07d16bb','','',NULL), -('11393','Stirling Exploration Backpack Sediment Edition','Armor','Backpack','1eb980e9-1cad-41f5-b01f-d1c1d00d7c68','','',NULL), -('11394','RSI_Hermes_Nacelles_Mount','AttachedPart','UNDEFINED','09cafb8c-1575-4fa2-939a-aa17a3a0c16d','','',NULL), -('11395','MASTER_lt_tank_1SCU','Cargo','UNDEFINED','002846b9-b085-4489-a699-dcc9ff572a85','','',NULL), -('11396','AEGS_Redeemer_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','d59fbcef-e64e-40fb-9acb-56a062c488e9','','',NULL), -('11397','Diamond','Cargo','Cargo','27e1d544-c7f9-4293-b1e2-6298aff53be0','','',NULL), -('11398','SHIELDS','ShieldController','UNDEFINED','8b749dab-6806-4970-a8db-99da054bcb98','','',NULL), -('11399','Manned Turret','TurretBase','MannedTurret','8a296bd2-a47c-4ce7-829b-b5eb5a6ad5ed','','',NULL), -('11400','Weapon_Rack_ANVL_Hawk_1Slot','Usable','UNDEFINED','2ca31d21-be4d-4647-b20b-61e22a7828ea','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('11401','Lt_A_Airlock_GreenZone','Usable','UNDEFINED','6bdb2541-2233-43b3-b9c5-0aed1475a4b4','','',NULL), -('11402','Seat','SeatAccess','UNDEFINED','1e397b62-635f-477a-85f7-3af47e32c11d','','',NULL), -('11403','cbd_main_hall_display_case_1_S3Port_2_S1Ports','ShopDisplay','Default','c36169f9-8fa0-4427-a718-abc49b3066d5','','',NULL), -('11404','Quartz \"GCD-Army\" SMG','Weapon','Medium','d18fdc66-e468-409f-8349-9fc547c60158','','',NULL), -('11405','Twenty-Sided Die Ship Manufacturers','Misc','UNDEFINED','d15b41ac-67b2-4325-845f-bf312153d7fe','','',NULL), -('11406','Assailant IV-G Missile','Missile','GroundVehicleMissile','8814fe40-39c1-43c0-8ad4-5bad1c2a2c5c','','',NULL), -('11407','Counter_Bar_1m_tap_DEPRECATED','Usable','UNDEFINED','cccf3fd9-70a5-49b0-b74d-90755bba237a','','',NULL), -('11408','Datapad','Misc','Gadget','907d775d-8fac-4704-95a2-33d011897c60','','',NULL), -('11409','Flight Blade','FlightController','UNDEFINED','62ee1944-9df6-4e60-a912-2fff1d3abaa1','','',NULL), -('11410','Guerra Pants Stonewall','Char_Clothing_Legs','UNDEFINED','08bc4ddc-87ec-4c29-8244-159b51efc406','','',NULL), -('11411','ThermoWeave Gloves ASD Edition','Char_Clothing_Hands','UNDEFINED','0673155b-2b19-4e2a-ad79-e6a42305b6f8','','',NULL), -('11412','Internal Tank','QuantumFuelTank','QuantumFuel','27bdfdae-097a-4072-84f2-9a369ac6e986','','',NULL), -('11413','TRGT. STATUS','Seat','UNDEFINED','2f9a285d-9949-4f5e-98a7-e1200b3a1a14','','',NULL), -('11414','Crusader Mercury Star Runner Nose Turret','Turret','BallTurret','bb009a7b-bbce-4f41-a8d5-6cb0a80f7182','','',NULL), -('11415','Seat','Usable','UNDEFINED','ad03f538-4e3c-40d9-b8e7-52cab05ca657','','',NULL), -('11416','Bucket_Ice_1_rsi_a','Misc','UNDEFINED','8f46ef1c-d3ef-4d7a-892b-c6f65c1daa88','','',NULL), -('11417','Zeus Mk II Sunswept Livery','Paints','UNDEFINED','bc38563b-284d-4437-8095-9088073236ad','','',NULL), -('11418','Strata Legs Greycat Edition','Armor','Legs','034569d7-8453-4d9d-b018-18ea66eac310','','',NULL), -('11419','AEGS_Idris_RADR_Display','Display','UNDEFINED','11012ab2-2bc5-49e3-b129-9c311e9d93f5','','',NULL), -('11420','Potassium','Cargo','Cargo','81e45e4e-4df6-4193-ba07-b9ef30589083','','',NULL), -('11421','Flight Blade','FlightController','UNDEFINED','c32625a3-dba8-4b93-aad8-5ad4c67b25db','','',NULL), -('11422','Methane','Cargo','Cargo','12e66c82-af0f-4408-9e5d-c75cf7a9006d','','',NULL), -('11423','Seat','SeatAccess','UNDEFINED','1226848b-1c40-48fb-82a2-53e324e3aff1','','',NULL), -('11424','AEGS_Redeemer_SCItem_Support_Seat_Rear','Seat','UNDEFINED','1c0868f9-9483-491c-aa9b-d6a756ae7bfc','','',NULL), -('11425','AEGS_Vanguard_RADR_Display','Display','UNDEFINED','389a44a0-7a37-4352-9c85-117d1c02e74c','','',NULL), -('11426','Lt_D_Airlock_Op_Small','Usable','UNDEFINED','bcd7b278-b858-46f7-9c89-9b666ae90745','','',NULL), -('11427','Aril Helmet','Armor','Helmet','b07c855e-79ac-4c5c-b7b7-aa8df9b1a987','','',NULL), -('11428','Seat','Usable','UNDEFINED','83c778da-f495-43db-92ed-63afb67d8ed7','','',NULL), -('11429','Hawk Timberline Livery','Paints','UNDEFINED','050ac7fc-09cc-4723-8109-6544e960153a','','',NULL), -('11430','Bed_MISC_Starfarer_Gemini_Crew','Usable','UNDEFINED','6f332438-9104-4378-81e6-2390aaec6add','','',NULL), -('11431','RSI_Hermes_SeatAccess_Tractor_Station','SeatAccess','UNDEFINED','63201dbc-981a-4874-ad4e-261296846fad','','',NULL), -('11432','Palatino Backpack Metropolis','Armor','Backpack','62f4655f-7fbb-40c0-92bb-9bf82d531fe8','','',NULL), -('11433','BANU_TachyonCannon_FiringMechanism_S2','WeaponAttachment','FiringMechanism','8f3fe3ad-f671-415d-a97c-7d43f733e805','','',NULL), -('11434','HRST_LaserRepeater_Barrel_S1','WeaponAttachment','Barrel','110bb508-2042-4290-85f0-f045d999c448','','',NULL), -('11435','sc_nvy_commodore_bridgeofficer_hat_01_01_01','Char_Clothing_Hat','UNDEFINED','f55d0aab-0009-4885-9370-6bfe319dbd74','','',NULL), -('11436','Controller_Mining_Vehicle','MiningController','UNDEFINED','e6e717b9-6fcf-4002-bafa-c7ac6aea9f29','','',NULL), -('11437','Railing_Straight_4m_Lowtech_Guardrail_C','Usable','UNDEFINED','08dd1801-a7fc-4642-880c-70de6feb9abf','','',NULL), -('11438','Polaris Apex Livery','Paints','UNDEFINED','566f7415-fc71-4141-9b89-a0eb1a7f16c8','','',NULL), -('11439','AEGS_Redeemer_Thruster_Main_Right','MainThruster','FixedThruster','3104f043-26b8-49ee-b348-299ae739d6e2','','',NULL), -('11440','SalvageInternalStorage','SalvageInternalStorage','UNDEFINED','01bbe184-3534-40b7-9311-735ae5844fd6','','',NULL), -('11441','VNCL_Stinger_Thruster_Aux_Fixed_02_Bottom','ManneuverThruster','FixedThruster','0ea89a89-57b3-4eb1-8a96-24b401afb627','','',NULL), -('11442','Salvation Safeguard Livery','Paints','UNDEFINED','65b10317-c5b2-43a6-b32b-f4a0ea20778c','','',NULL), -('11443','AEGS_Hammerhead_Thruster_Mav_Fixed_Left','ManneuverThruster','FlexThruster','91bbb14b-040c-4723-b362-6c0a7acbf05c','','',NULL), -('11444','table_glass_1_b_2_Seat','Usable','UNDEFINED','63069bcf-2bbd-412e-b26d-87eee108cf17','','',NULL), -('11445','Flight Blade','FlightController','UNDEFINED','345b1dd3-207f-46dd-97dd-fa2dab471e1b','','',NULL), -('11446','table_glass_1_b_3_Seat','Usable','UNDEFINED','5b1ed398-fee9-4acd-83aa-bc50117bf413','','',NULL), -('11447','EX-T12-EM \"Executor\" Torpedo','Missile','Torpedo','f3a369d7-b39a-4ab0-9265-224d994bb5bd','','',NULL), -('11448','Foundation Pants Desert','Char_Clothing_Legs','UNDEFINED','ea8aa707-ceb2-4690-a418-ad3ab8f25b55','','',NULL), -('11449','LeMarque Pants Grey','Char_Clothing_Legs','UNDEFINED','18d2af08-b04a-4500-8041-50f361749e44','','',NULL), -('11450','Whamburger D-Lux','Food','Junk','d5301c1a-01c1-41f8-82e4-9561dc25fb56','','',NULL), -('11451','Potassium','Cargo','Cargo','d02ecfa2-0762-43e7-a457-497fb6ab09d1','','',NULL), -('11452','Projector_HUD_Mining_ROC','Display','UNDEFINED','af5f7f3a-037c-4f3e-aae3-fd508c147338','','',NULL), -('11453','Hammerhead Polar Camo Livery','Paints','UNDEFINED','225e3679-0cc9-4076-bebf-b74531410e68','','',NULL), -('11454','Gadget_Cabinet_kegr_fire_extinguisher_01_med_high','Usable','UNDEFINED','421b5bb2-93e1-4f14-b248-8017bb524b07','','',NULL), -('11455','Sag Paneer Combat Ration','Food','Tin','ff07c63e-3963-4733-8497-22956cbf2fbc','','',NULL), -('11456','AEGS_Vanguard_Sentinel_Thruster_Retro','ManneuverThruster','FixedThruster','a1ccf90c-8ab2-485d-a7bc-5022775eafb8','','',NULL), -('11457','Radar_Display_MISC_Razor','Display','UNDEFINED','04c974b0-8f45-41dc-a1a4-d13212b84b38','','',NULL), -('11458','M9A Cannon','Weapon','Gun','af019617-94ee-4a91-b62b-124c93f2a45e','','',NULL), -('11459','AEGS_Door_Decal_Hangar_04','Decal','DoorPart','4948c6b0-788f-4250-91b3-4b918229cda4','','',NULL), -('11460','Aegis Avenger Stalker','SeatDashboard','UNDEFINED','2057a35e-7531-4cd8-a80a-af8e9651dcbc','','',NULL), -('11461','ANVL_Valkyrie_Turret_Console_Left','Seat','UNDEFINED','b4e98599-956d-4b3a-8129-497da1ad96bf','','',NULL), -('11462','RSI_Constellation_CargoGrid_Main','CargoGrid','UNDEFINED','f3963899-a698-4b9c-8efc-e0ad363d0e77','','',NULL), -('11463','RSI_Aurora_Mk2_Ground_Refueling_Port','Door','UNDEFINED','2e34c469-5093-4507-9100-4b17469be815','','',NULL), -('11464','G-2 Helmet Desert','Armor','Helmet','63d5c4b1-7a41-42fc-b202-ea9b07fc6389','','',NULL), -('11465','Concept Shirt Black','Char_Clothing_Torso_0','UNDEFINED','507718a6-f77f-4302-b637-ca3ccf90a5bb','','',NULL), -('11466','Door Control','ControlPanel','DoorPart','56b3406a-c2d8-440e-b108-8e5d8011ff55','','',NULL), -('11467','Performance T-Shirt (Modified)','Char_Clothing_Torso_0','UNDEFINED','61a5bb90-aad2-4cb5-ac61-8e360924bb38','','',NULL), -('11468','Demon Fang Combat Knife','Weapon','Knife','9e8d6cf1-17d6-453e-bfe3-44529969eebf','','',NULL), -('11469','Ramp Control','Usable','UNDEFINED','1fd940c8-ecce-4854-919d-90f6b97ddb3d','','',NULL), -('11470','RCMBNT-RGL-1','InventoryContainer','Cargo','378ddc31-5d39-4511-9d77-48fc052df7b7','','',NULL), -('11471','CRUS_Spirit_A1_Exterior_Nose','Misc','UNDEFINED','de7e6ed3-8f10-4070-ae80-48d1b145fb3d','','',NULL), -('11472','Beacon Undersuit Orange','Armor','Undersuit','76f8ae3d-4e44-4459-94d2-db9f00ef2586','','',NULL), -('11473','INTK_MISC_Reliant_Sen','FuelIntake','Fuel','b94e4023-a43f-4eea-adc8-17111e097fec','','',NULL), -('11474','Diamond Laminate','Cargo','Cargo','b245ebd1-c670-4610-95c9-fc4343275404','','',NULL), -('11475','Door Control','ControlPanel','DoorPart','b7b4c89b-6a1c-4313-a4e3-d06c60b7bb43','','',NULL), -('11476','MissileRack_Large_Pathfinder_BEHR','Usable','UNDEFINED','314a9cd4-31e0-4e7f-a634-3ae4272fd180','','',NULL), -('11477','Door Control','Door','UNDEFINED','e1f3db61-8cb0-45b5-afab-1c2891128475','','',NULL), -('11478','Saskia Jacket','Char_Clothing_Torso_1','UNDEFINED','23799159-4649-468e-aef5-758e808a4b47','','',NULL), -('11479','Vindel','Misc','UNDEFINED','d9dc71af-3ae1-4dfa-a153-ca1e1c6f93fb','','',NULL), -('11480','ANVL_Paladin_SCItem_Remote_Turret_Seat_Right','Seat','UNDEFINED','541cb916-a34f-487c-bccc-8530158dc18b','','',NULL), -('11481','Constellation Andromeda Ship Armor','Armor','Medium','30fdaba0-4307-453c-8273-746479ae98ce','','',NULL), -('11482','GATS_BallisticCannon_Ventilation_S2','WeaponAttachment','Ventilation','a736f0bf-155b-4c7f-988d-902a51096759','','',NULL), -('11483','KRON_LaserCannon_Ventilation_S3','WeaponAttachment','Ventilation','4f963d23-b8bd-4fa0-b1d3-0358cb4d1919','','',NULL), -('11484','CVSA Cannon','Weapon','Gun','8115a034-92bf-4766-b0ce-408398ddc7e7','','',NULL), -('11485','Aztalan Galena Arms','Armor','Arms','5ab46e93-33ef-443d-a9a8-694121286bfc','','',NULL), -('11486','ht_glass_cocktail_1_a','Misc','UNDEFINED','de58fe06-5278-447c-9bf1-c551ec7c114e','','',NULL), -('11487','MISC_Hull_C_FoldingStrut','Cargo','UNDEFINED','3f9fc5fe-95d2-4e5a-9640-afbb943a7c7f','','',NULL), -('11488','Ship Showdown \'52 Mercury Coin','Misc','Utility','571cdfb4-3a55-4692-ae1f-cff4c6d5b6a4','','',NULL), -('11489','CRUS_Starlifter_Thruster_Mav_Front_A2','ManneuverThruster','JointThruster','4d788737-61c6-491a-839a-3eccdddc1604','','',NULL), -('11490','ChipSet_Apollo_DockingMaster','Misc','UNDEFINED','46c7334a-0c4f-1ce0-0f52-495aa8299296','','',NULL), -('11491','Big Benny\'s Mug','Drink','UNDEFINED','6259d9a0-b449-4427-924a-e7713c5e15ee','','',NULL), -('11492','m_human_mannequin_deckcrew_light','ShopDisplay','UNDEFINED','ba53cf52-faca-41d9-b163-8040d1a6aab8','','',NULL), -('11493','Corsti Boots CFP','Char_Clothing_Feet','UNDEFINED','d95596d6-9895-46a5-887f-6caacb66de3f','','',NULL), -('11494','MISC_Hull_C_Dashboard_Pilot','SeatDashboard','UNDEFINED','3d41e1bc-3ebf-4658-8e32-fe4686a156f5','','',NULL), -('11495','Seat','SeatAccess','UNDEFINED','a3ef4c2f-326c-4141-aad3-ce3ed0c4267d','','',NULL), -('11496','Levin Undersuit Limelight (Refurbished)','Armor','Undersuit','9f88dd1f-8e47-4104-98e6-be0bdd2b5c06','','',NULL), -('11497','MISC_Fortune_Thruster_Mav_Fixed_01_Top','ManneuverThruster','FixedThruster','8a5d4c98-f9b3-4317-80b1-21fd69b5e725','','',NULL), -('11498','Seat','Usable','UNDEFINED','88a77c69-6455-4d87-a6d4-3a49fcb59d62','','',NULL), -('11499','MISC_Starlancer_Thruster_Front_Mav','ManneuverThruster','FixedThruster','25e6cf55-b138-471a-8bec-198f5150f4af','','',NULL), -('11500','Internal Tank','QuantumFuelTank','QuantumFuel','2046ec36-046f-4bb7-bb8c-accd7e3d31e0','','',NULL), -('11501','COMP_BEHR_S01_CSR_RP','Misc','UNDEFINED','6a717799-51a3-48ec-bded-917b870216f6','','',NULL), -('11502','DoorProximitySensorItem_3x1x2_Directional_Proximity','Sensor','DoorPart','b6dd9118-ff8a-4435-b35b-a5188fb9b0e1','','',NULL), -('11503','Door Control','Door','UNDEFINED','9d6c7541-75a1-43ba-8082-3d6e2c7687a3','','',NULL), -('11504','Coin Display Case','Misc','Flair_Wall_Picture','da798ecd-5685-45c8-b0f8-e2a9a1a498e9','','',NULL), -('11505','expo_display_shirts_and_hats','ShopDisplay','Default','32e2d90a-bcd6-4ff6-8267-1c46efa78de7','','',NULL), -('11506','MSD-683 Missile Rack','MissileLauncher','MissileRack','504840a4-821b-4a20-bb67-062f89c16320','','',NULL), -('11507','Venture Helmet Carrack Edition','Armor','Helmet','596f9763-3231-4ee2-8c74-50d2fc7f01c3','','',NULL), -('11508','box_plastic_4_weapon_opened_005x010x00375_a_ksar_shotgun','Misc','UNDEFINED','b516c541-8548-45ec-8c91-90fa8c49a658','','',NULL), -('11509','ORC-mkX Core Justified','Armor','Torso','5f6f389e-1f32-4e81-88c2-466bdbd5df55','','',NULL), -('11510','Test_Clovis_Datapad_Clue01_4x3_Screen','Display','UNDEFINED','46c47bff-ed94-4794-a3c8-87790507cf58','','',NULL), -('11511','ORIG_890_Jump_Thruster_Main','MainThruster','FixedThruster','37630081-f12d-46df-9e85-11d770180d13','','',NULL), -('11512','Seat','Usable','UNDEFINED','37b94944-e63a-4cf9-a876-8159d7043bfc','','',NULL), -('11513','Carryable_2H_CY_weight_barbell_bumperplate_1_20kg_a','Misc','UNDEFINED','f5fca9a4-4eea-41f8-94b7-41996e9b5197','','',NULL), -('11514','MXOX_NeutronRepeater_FiringMechanism_S2','WeaponAttachment','FiringMechanism','e090007e-3c41-4429-8b32-76794da6e246','','',NULL), -('11515','Carrion Core Maniac','Armor','Torso','62c5bdd0-a035-4f93-8e5e-eeb1b85243e8','','',NULL), -('11516','Door Control','Door','UNDEFINED','8068f7a9-2df4-4b4b-9d4d-9cb031961763','','',NULL), -('11517','Door Control','Door','UNDEFINED','c6ca20ad-b2aa-446c-acfd-31b0358baaac','','',NULL), -('11518','Testudo Backpack Earthshake','Armor','Backpack','17d9c6b5-8a2c-4900-9639-2026707570b6','','',NULL), -('11519','Razorback Pants White','Char_Clothing_Legs','UNDEFINED','065a00be-c9f9-4762-b44a-49ffecc6dbc0','','',NULL), -('11520','orig_bedding_duvet_3_o','Seat','UNDEFINED','15a9ee34-a59c-46f8-98da-e15450483b6d','','',NULL), -('11521','Carryable_1H_CY_utensil_soda_1_a','Misc','UNDEFINED','faabe6c6-f5c4-4978-aa48-1bdde69e0a4b','','',NULL), -('11522','Gold','Cargo','Small','739c6b5a-69e5-45a6-bd6f-64913f644907','','',NULL), -('11523','Mustang Omega Livery','Paints','UNDEFINED','de95879d-ebaf-49c6-8016-ebfbd1d8d7bb','','',NULL), -('11524','Hydropulse','Cooler','UNDEFINED','3127738f-d2ba-44bb-913c-eb380182bef8','','',NULL), -('11525','Overlord Arms Predator','Armor','Arms','5a0eddea-874b-4493-96dc-e52c10c4bd16','','',NULL), -('11526','Weapon Rack','Usable','UNDEFINED','cbcb8f60-11d1-4938-9805-2a33fa343243','','',NULL), -('11527','DRAK_Clipper_Thruster_Fin_Main_Outer','Misc','UNDEFINED','f4775e7b-ef8a-42f8-8635-aa75281fc35a','','',NULL), -('11528','RSI_Aurora_Mk2_Module','Module','UNDEFINED','e8d9c34e-33a0-4c43-8194-e7326b61f479','','',NULL), -('11529','weapon_underbarrel_light_wide_red_01','WeaponAttachment','Light','8b848848-07b5-44dc-8709-5f292d028625','','',NULL), -('11530','Hill Horror Reborn Poster','Misc','Utility','0c5fa958-f9be-4db1-8137-fab85f78b305','','',NULL), -('11531','H_Dashboard_Projector_HUD_Generic','Display','UNDEFINED','eac65871-9378-45e3-a67a-b56011648d97','','',NULL), -('11532','Berry Blend Smoothie','Drink','Bottle','0794d4f6-1e8b-4ad4-afea-df58458ef5e9','','',NULL), -('11533','Valkyrie V-G Missile','Missile','GroundVehicleMissile','c87e69f1-f860-431f-8739-78f938ce4be0','','',NULL), -('11534','PAB-1 Core Blue','Armor','Torso','c51d801c-a4f2-4f3d-b5c3-77ddcc6167dd','','',NULL), -('11535','Starlancer Snowcap Livery','Paints','UNDEFINED','2ea2b311-ec4a-479f-9540-8dc07277b221','','',NULL), -('11536','RSI_Zeus_Thruster_Retro_Right','ManneuverThruster','Retro','3f6623f1-9fcf-478d-9539-4462b1895f42','','',NULL), -('11537','display_ship_components_03x01x01_power_s1','ShopDisplay','UNDEFINED','a91915f2-9113-4e0d-8129-20cf19a43994','','',NULL), -('11538','Ma\'s Ready to Eat Traveler\'s Day Dinner','Food','Sachet','2fff6a4a-2dd2-4748-a91e-e9ea851ff450','','',NULL), -('11539','AEGS_Redeemer_Wardrobe_Decal_03','Decal','DoorPart','ab9dcc33-d68e-4033-b13d-6699ae663c59','','',NULL), -('11540','Relay','Relay','UNDEFINED','175e10ba-3752-4b28-bcb0-9f50c6349f80','','',NULL), -('11541','GPI_Relay_3slot','Relay','UNDEFINED','87b549c6-1ab6-44ca-adc3-f47aa4462469','','',NULL), -('11542','Door Control','Door','UNDEFINED','0ca765ac-3110-44bf-97fc-4b27d0267169','','',NULL), -('11543','MISC_Hull_C_FoldingStrut_1D','Cargo','UNDEFINED','0ca877ed-b2bd-4202-bac5-5bfeb8e9a6c7','','',NULL), -('11544','Jumping Limes','Cargo','Cargo','1d5db1e7-0e61-4ed4-b549-a87ff5fd35df','','',NULL), -('11545','Venture Arms Blue','Armor','Arms','b7729883-55cb-4ae6-8d65-d134bc575ce3','','',NULL), -('11546','Carryable_2H_CY_furniture_pillow_1_d','Misc','UNDEFINED','914a5537-e28d-47df-8e55-cf3c3814f9b5','','',NULL), -('11547','fruit_plant_interactable','Misc','UNDEFINED','eb3655d6-bd8e-4047-aec5-c37cd2ef950e','','',NULL), -('11548','Arden-SL Core Coramor Edition \"Kismet\"','Armor','Torso','369bb4b1-7713-4f56-af20-f91ea46a371a','','',NULL), -('11549','Door Control','Door','UNDEFINED','be0cc73b-9ba7-4cab-b023-7b7386a26fdc','','',NULL), -('11550','Small Container','Container','UNDEFINED','aaf95219-c2dc-458a-869a-df5df935bbf8','','',NULL), -('11551','RSI_Aurora_MR_Thruster_Retro','MainThruster','FixedThruster','c4cc2197-e260-4501-ab0b-08c76668e628','','',NULL), -('11552','ANVL_Terrapin_Medic_Lightbar','Misc','UNDEFINED','31fbb266-9fdc-4aeb-85c8-301d17ba6ede','','',NULL), -('11553','CRUS_Star_Runner_Secret_Cargo_Panel','Player','UNDEFINED','c4cfae2e-bef4-45fe-914e-818c920f853e','','',NULL), -('11554','Radar_Display_RSI_Polaris','Display','UNDEFINED','e6036d99-cc04-46ca-868c-f49a3e2f9b90','','',NULL), -('11555','Tona Shoes Seagreen','Char_Clothing_Feet','UNDEFINED','0b7bfad8-0a69-4f44-8e9f-8f83cdca6099','','',NULL), -('11556','Agricultural Supplies','Cargo','Cargo','282e0a66-c9e0-4140-95c8-56a511ba2399','','',NULL), -('11557','f_human_mannequin_survival_secondlife','ShopDisplay','UNDEFINED','f4f92a6d-fcd4-4366-9365-aa96c313a3d1','','',NULL), -('11558','Lunes (Spiral Fruit)','Cargo','Cargo','e55f1ab8-de81-4c07-aa03-047a9066f82d','','',NULL), -('11559','CRUS_Starfighter_Thruster_Retro','ManneuverThruster','FixedThruster','fc390626-f63f-490e-9e62-f086e8e18830','','',NULL), -('11560','display_shop_mount_1_wall_a','ShopDisplay','UNDEFINED','36961074-4be2-4aa3-94f4-82970aa23282','','',NULL), -('11561','MISC_Fury_Thruster_Main_Bottom_LX','MainThruster','JointThruster','d4e53d51-831f-4d47-969c-1e4834aa38ca','','',NULL), -('11562','OneMeal Nutrition Bar (Fried Tofu)','Food','Bar','6dc7fccb-9e6a-437c-924b-ade224667b66','','',NULL), -('11563','Falston Jumpsuit \"Red Wind Edition\"','Char_Clothing_Torso_1','UNDEFINED','88e01754-d8bd-41ec-9ced-27c994630d53','','',NULL), -('11564','Door','Door','UNDEFINED','43938b9b-a393-41e6-aa66-a5e6cef60297','','',NULL), -('11565','Khaos','QuantumDrive','UNDEFINED','1a7eabcd-1c1f-4641-bf5b-41089a774fb6','','',NULL), -('11566','DRAK_Clipper_Thruster_Main_Top','MainThruster','UNDEFINED','1e3726fc-f779-483c-898c-ecd5d24d131f','','',NULL), -('11567','Inquisitor Core Olive','Armor','Torso','9302d7d7-f9c0-469a-ac31-f2339b8f991a','','',NULL), -('11568','G-2 Helmet Violet','Armor','Helmet','4cbdcb40-b22e-4418-a2c0-858d9fff8482','','',NULL), -('11569','Seat','Usable','UNDEFINED','31410b63-6b2b-4356-b3f0-69cc6dbcd49b','','',NULL), -('11570','Internal Tank','FuelTank','Fuel','978b024e-ccf7-4087-8306-1cc9e5c7c6dd','','',NULL), -('11571','Revenant Gatling','Weapon','Gun','83671df2-63e6-4683-8125-bdccd7d1cd7e','','',NULL), -('11572','DRAK_Golem_Thruster_VTOL_Retro_Left','ManneuverThruster','Retro','a22a1095-4b79-4df6-a316-e3d85d989f4f','','',NULL), -('11573','MSD-683 Missile Rack','MissileLauncher','MissileRack','d3497338-3bf8-4433-bcd4-50b3693f90b3','','',NULL), -('11574','Construction Salvage','Cargo','Cargo','2e11ba45-2701-4fcd-8aea-482430910239','','',NULL), -('11575','ARGO_MPUV_Leg_Left','Misc','UNDEFINED','469652b2-8d31-4e97-a71c-76deadde110b','','',NULL), -('11576','Artimex Arms Elysium','Armor','Arms','80720f8a-00ad-4bf5-b04b-42fcb146446e','','',NULL), -('11577','Pisces Headhunters Trauma Livery','Paints','UNDEFINED','6d3d35c6-049c-4fb9-b831-d098d40dc5d2','','',NULL), -('11578','Strog-N-Off Burrito','Food','Junk','07c9d587-6da6-4c21-82d0-bd718e3ccb20','','',NULL), -('11579','Door','Door','UNDEFINED','1720bf22-8cdc-4067-9e20-0e591b64da2e','','',NULL), -('11580','ORIG_400i_Thruster_Main','MainThruster','FixedThruster','75b95dd5-b751-4eef-80e6-847b4bd02f0f','','',NULL), -('11581','Door Control','ControlPanel','DoorPart','479cd940-fe1d-4e9f-b7f8-f8963ea48541','','',NULL), -('11582','Seat','Usable','UNDEFINED','cd23e960-c337-4332-b847-761813edc5b6','','',NULL), -('11583','Remote Turret','Turret','GunTurret','dbd219ff-eca1-4e6b-8426-783f119e102a','','',NULL), -('11584','rod_torso0_02x01x04_09Ports','ShopDisplay','Default','521b34e6-df14-4e72-b924-f9c12eff781c','','',NULL), -('11585','Radford Shirt Crusader Edition','Char_Clothing_Torso_0','UNDEFINED','3c733ed1-4f5f-42c5-a485-e5b91773ab3a','','',NULL), -('11586','Radford Shirt Crusader Edition Dark Blue','Char_Clothing_Torso_0','UNDEFINED','c2e04302-10c2-47cd-aff2-1fde85e2b9ee','','',NULL), -('11587','Radford Shirt Crusader Edition Light Blue','Char_Clothing_Torso_0','UNDEFINED','b8b8e24d-9f77-49a9-a95c-37e5ec0c33d1','','',NULL), -('11588','Diluthermex','Cargo','Cargo','7df26686-8161-4978-b0db-6a98611eff65','','',NULL), -('11589','RS-Barrier','Shield','UNDEFINED','6ed772d7-ba17-4bf1-ae49-0a6ff82be1a9','','',NULL), -('11590','m_human_mannequin_slaver_undersuit_02','ShopDisplay','UNDEFINED','3e76f61c-958a-4ee3-9f4a-710250271e31','','',NULL), -('11591','Zeta-Prolanide','Cargo','Cargo','557c666c-ba5e-40de-b9a6-34f4568e413d','','',NULL), -('11592','RSI_Zeus_Thruster_Retro_Left','ManneuverThruster','Retro','2ab4256b-b5fc-49e9-b8e2-0b4151eed5b3','','',NULL), -('11593','Deep-Space Undersuit Shutdown','Armor','Undersuit','fc43a93b-b862-4f2b-a97a-1c0e8e05b947','','',NULL), -('11594','Table_Booth_4_Seat_MISC_Starlancer','Usable','UNDEFINED','ec56e772-9345-4feb-a986-738f629cfb33','','',NULL), -('11595','Seat','SeatAccess','UNDEFINED','216f435d-8146-4296-958f-be0ce112d27a','','',NULL), -('11596','Boreal','Cooler','UNDEFINED','62f0d8cc-ed06-47d6-9522-bd3950faa19d','','',NULL), -('11597','TrueDef-Pro Legs Black/Silver','Armor','Legs','a9d685fe-785d-4de7-985b-0a5073bc78b7','','',NULL), -('11598','un_box_plastic_1_berries_a','Misc','UNDEFINED','59d6ad1f-ea26-4954-997b-050c52d7410e','','',NULL), -('11599','CF-337 Panther Repeater','Weapon','Gun','bd13235d-1261-4b71-b32f-aed1a8beb526','','',NULL), -('11600','Carinite (Pure)','Cargo','Cargo','a2505f3d-550f-4f27-89e6-b4cd1ed81712','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('11601','Stoic Suppressor2','WeaponAttachment','Barrel','4ef9f8dd-6229-4c86-bc8e-025c6cc87c2c','','',NULL), -('11602','Carryable_1H_SQ_DataPad_Fluff_StormBreaker_ResearchFacility','Misc','UNDEFINED','4f2918ac-39af-4ca2-9b04-4738a69b1a80','','',NULL), -('11603','ANVL_Pisces_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','07241088-c4c7-4b2a-9579-585dd0036a99','','',NULL), -('11604','Carbon','Cargo','Cargo','7dac41a5-7c94-4273-bf57-51927edd6f9c','','',NULL), -('11605','Seat','Usable','UNDEFINED','5f4d0cb1-8343-403e-b52f-68573046d24d','','',NULL), -('11606','AEGS_Eclipse_Thruster_Main','MainThruster','FixedThruster','c41f1bf5-34c3-498f-a47f-4a6fdba8cd91','','',NULL), -('11607','DynaFlux','PowerPlant','Power','0b758584-4cc6-4306-85dd-07e1b81d6852','','',NULL), -('11608','ARGO_ATLS_GEO_Thruster_Small','Misc','UNDEFINED','0d2f54bb-a5fd-42f5-8cd1-fbff2ddbb3af','','',NULL), -('11609','Oracle Helmet Red','Armor','Helmet','c94881f7-6ce1-4fb3-8bd7-018e71d1d19a','','',NULL), -('11610','Lynx Core Aqua','Armor','Torso','7afbaddb-6dff-47e1-bf1b-2d38854b5a37','','',NULL), -('11611','AEGS_Idris_SCItem_Seat_Bridge_Rear_Left','Seat','UNDEFINED','e7dedffb-414f-4947-a433-ea9984305ae2','','',NULL), -('11612','Deadrig \"Smudge\" Shotgun','Weapon','Medium','4eb70778-c449-459e-8d2b-91dbc15cd6be','','',NULL), -('11613','Seat','Usable','UNDEFINED','c865c3a7-773b-4fb4-be67-cf3cf387c175','','',NULL), -('11614','Seat','Usable','UNDEFINED','78edaa29-e238-4a97-8e72-4dec608cdb6f','','',NULL), -('11615','Vehicle_Screen_MFD_Holographic_MISC_Razor_L','Display','UNDEFINED','f689ab5f-2b25-41f1-a07c-e0c46077d05c','','',NULL), -('11616','Paint_Reclaimer_Default','Paints','UNDEFINED','5053de1a-7736-4893-815d-6c9684f6416d','','',NULL), -('11617','Ball','Char_Head_Piercings','UNDEFINED','23dc9eae-9a20-48f1-b20d-d8de86c7a5bf','','',NULL), -('11618','Stirling Exploration Helmet Alkaline Edition','Armor','Helmet','8d4e342c-5984-44a5-9643-2eb1cdc080d8','','',NULL), -('11619','shelf_shoe_2_highend_a','ShopDisplay','Default','90fb569b-904a-4cc5-ad53-9db64694d558','','',NULL), -('11620','Ball','Char_Head_Piercings','UNDEFINED','7d910114-a979-434f-b455-e40fc0b8e3ff','','',NULL), -('11621','Aril Helmet Scorched','Armor','Helmet','e5882903-64ef-492f-8925-824e87d12e40','','',NULL), -('11622','RSI_Constellation_Andromeda_Thruster_Mav_Joint','ManneuverThruster','JointThruster','e992d170-2343-4d88-b8e3-45794f1b54b6','','',NULL), -('11623','Door Control','DockingAnimator','UNDEFINED','7e73c75e-2f0b-41f8-bfd9-5fe767d0cc90','','',NULL), -('11624','Seat','Usable','UNDEFINED','aa25979e-1bad-48ba-8eec-8703afbfc75a','','',NULL), -('11625','Tuvois Jacket Sienna','Char_Clothing_Torso_1','UNDEFINED','5cda15be-9b98-436d-a9a8-7f7faea64ff9','','',NULL), -('11626','PAB-1 Arms Seagreen','Armor','Arms','8a5ffcee-61b3-4306-963d-2e3117e8c462','','',NULL), -('11627','Door Control','ControlPanel','DoorPart','42d889e5-bfa7-4ec5-b254-81fe57242157','','',NULL), -('11628','Bioplastic','Cargo','Cargo','19ec701c-3273-4e36-8ade-8a469f9134e6','','',NULL), -('11629','Madras Asada Burrito','Food','Junk','1f634ecf-d8d1-44cd-b5fa-ff9f5cea9074','','',NULL), -('11630','Stirling Exploration Helmet Tungsten Edition','Armor','Helmet','2da53b97-2d4f-4db6-9b92-3f86a7f068d5','','',NULL), -('11631','Redeemer Seraphim Livery','Paints','UNDEFINED','1c0fe724-cead-4758-a98b-133cb6054893','','',NULL), -('11632','DockingTube_Fuel_Ports_RSI_Constellation','DockingCollar','UNDEFINED','32b3be75-c1c1-46c0-baee-21c247833250','','',NULL), -('11633','AEGS_Vanguard_Hoplite_Thruster_Retro','ManneuverThruster','FixedThruster','e45de9ea-3fe3-4308-8814-2a3a17cd33d8','','',NULL), -('11634','Stirling Exploration Backpack Tungsten Edition','Armor','Backpack','ffed2a85-50bc-4e64-b0dc-8d9f743537b7','','',NULL), -('11635','Beacon Undersuit Yellow','Armor','Undersuit','933894e3-d30b-4465-855a-5c96a853965d','','',NULL), -('11636','PAB-1 Arms White','Armor','Arms','568b97c6-8474-4b13-9d9a-a15fee167c62','','',NULL), -('11637','sc_nvy_pilot_light_core_01_01_01','Armor','Torso','e2abd6ef-9435-465d-82f1-707bf115b5e1','','',NULL), -('11638','m_human_mannequin_slaver_heavy','ShopDisplay','UNDEFINED','379fbfeb-0eb8-4b46-9fde-03ba01b8c0ca','','',NULL), -('11639','RSI_Apollo_Thruster_Mav_Top','ManneuverThruster','FixedThruster','5f67e0af-bdf6-415a-8e3e-533a541eee72','','',NULL), -('11640','DRAK_Corsair_Thruster_Mav','ManneuverThruster','UNDEFINED','30d6313a-fd07-48d9-919b-eca8f17fe242','','',NULL), -('11641','Door Control','Door','UNDEFINED','f908a0a4-9f51-4f3d-bb67-1e6fdc1595dc','','',NULL), -('11642','ADP Core Hurston Edition','Armor','Torso','c0d24124-2f68-4799-a2d8-00e72ef148f3','','',NULL), -('11643','Carryable_2H_CY_weight_barbell_bumperplate_1_5kg_b','Misc','UNDEFINED','2fa611cb-d6f3-460d-8c8f-ffcd8af4ab2f','','',NULL), -('11644','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','64630f02-4ba0-4d46-9af0-c3e12ff87a86','','',NULL), -('11645','INTK_ORIG_890J','FuelIntake','Fuel','e49684c8-2c14-44bf-856f-adc4c82f3ef3','','',NULL), -('11646','rack_drink_1_icecream','ShopDisplay','Default','2a6a1b64-a942-448f-8a7e-222d3447e964','','',NULL), -('11647','AEGS_Vanguard_Sentinel_SCItem_Engineer_Console','Seat','UNDEFINED','70a61b0f-6506-407f-b2bf-3d9ac746d11c','','',NULL), -('11648','Carryable_TBO_FL_32SCU_Commodity_ProcessedGoods_OrganHarvesting','Cargo','Cargo','2fa9bda3-779d-4f61-bf5d-8eaf0be3d319','','',NULL), -('11649','Degnous Root','Misc','UNDEFINED','3bcb41db-ece0-4e4f-904b-3b961c6d219e','','',NULL), -('11650','Door Control','Door','UNDEFINED','99f4bd73-d312-4bcc-9d1b-e68ce06a2252','','',NULL), -('11651','Door Control','ControlPanel','DoorPart','1c61fcc2-79c0-4c0c-9bf6-a27d35d441af','','',NULL), -('11652','Karna Rifle','Weapon','Medium','b0253c68-8f48-4313-a4b7-034a7d9e7441','','',NULL), -('11653','Chlorine','Cargo','Cargo','fe8c1451-9806-4575-b066-0b30c239855b','','',NULL), -('11654','Auditor Shirt Crusader Edition','Char_Clothing_Torso_1','UNDEFINED','976976c9-2116-4fc9-a402-bbf2b2433a72','','',NULL), -('11655','RADR_Display','Display','UNDEFINED','ffc98aab-70a8-4553-83bd-ba3ba10d331c','','',NULL), -('11656','Ball','Char_Head_Piercings','UNDEFINED','818dc943-f641-4810-8cb0-347b5e2b6a19','','',NULL), -('11657','Oshi','Misc','UNDEFINED','b847e420-9bf2-41f1-bd72-ef0fbab2307e','','',NULL), -('11658','Door Control','Door','UNDEFINED','0691a7ce-e740-480f-a1ea-0fd8d98cf57f','','',NULL), -('11659','Copper','Cargo','Cargo','e83d00a8-7bd6-434f-b5c8-ae37741bfdf9','','',NULL), -('11660','Cockpit Recorder Prop','Misc','Personal','19fe6c47-06ab-4e40-bd74-02fdeb876855','','',NULL), -('11661','AEGS_Reclaimer_Thruster_Retro_02','ManneuverThruster','JointThruster','89c78d15-b6d1-4ec3-9283-2f1fb085a153','','',NULL), -('11662','display_wall_centermass_NewBabbage_4port','ShopDisplay','Default','4366f398-8c50-4c33-9618-31f8bea8804f','','',NULL), -('11663','Bantam Hat Phill\'s Fill-Up','Char_Clothing_Hat','UNDEFINED','0f901e72-dc3c-4f89-abcd-e14e1290b9f4','','',NULL), -('11664','Seat','Usable','UNDEFINED','6f759d3a-b80e-4db1-bd34-86ff20fb7a72','','',NULL), -('11665','Internal Tank','FuelTank','Fuel','cbfeea69-e21d-48d5-8346-dab69f5bc479','','',NULL), -('11666','Door','Door','UNDEFINED','41e4bfb3-4a99-443a-b918-f71ba14704c2','','',NULL), -('11667','Aves Shrike Helmet','Armor','Helmet','c4409ebd-1cd2-4de1-a720-0d5ba889497d','','',NULL), -('11668','Seat','Usable','UNDEFINED','3ed4456e-46c3-4760-b171-c04f5ed99e66','','',NULL), -('11669','StorageCage_Damage_ZeroG','Cargo','UNDEFINED','f42dda38-2cab-471b-8c43-e67e6a8a096b','','',NULL), -('11670','Audio-Visual Equipment','Cargo','Cargo','66a48bdc-e86c-4ff8-959a-b447e4403049','','',NULL), -('11671','Strata Legs Shire','Armor','Legs','9f69fbf7-b71e-4255-a91d-4f47cc65cc29','','',NULL), -('11672','AEGS_Retaliator_CargoGrid_Rear_main','CargoGrid','UNDEFINED','57218002-83a7-40bb-931b-44c0e3a1facf','','',NULL), -('11673','Microid Battle Suit Legs Lodestone','Armor','Legs','2af41fa2-7ee1-47ab-baf7-d0045a166026','','',NULL), -('11674','RADR_Unmaned_Turret','Radar','MidRangeRadar','89637ea5-8897-45ba-8403-46ca3188ed61','','',NULL), -('11675','Weapon Rack','Door','UNDEFINED','5b6c04a4-4a7d-424d-8a78-54b7c2db3040','','',NULL), -('11676','MacFlex Arms Blue','Armor','Arms','a3afc4cd-bc14-4f19-8c90-75eb22e53feb','','',NULL), -('11677','Day One Shirt Dark Green','Char_Clothing_Torso_0','UNDEFINED','28b327f8-954f-4fce-9628-2f212f1734b4','','',NULL), -('11678','Personal Care Product','Misc','UNDEFINED','591fb76f-04ed-428f-857b-81883442d901','','',NULL), -('11679','Cobalt','Cargo','Cargo','1b8506a4-40ed-4015-9f7d-071efc7d6906','','',NULL), -('11680','HRST_LaserScatterGun_Barrel_S2','WeaponAttachment','Barrel','bf863df2-430f-4eb5-addd-25afc9ad7ebc','','',NULL), -('11681','Fortifier Helmet Base','Armor','Helmet','ddb57a14-88c9-416e-bb38-b5da0bea94a0','','',NULL), -('11682','Carryable_1H_SQ_datapad_rugged_1_a','Misc','UNDEFINED','285257f2-efea-4c32-a43c-913fd867dd89','','',NULL), -('11683','volume_foot_01','Armor','Undersuit','4aa968f3-4e6c-42d6-9a19-88702bf8b174','','',NULL), -('11684','Weapon_Rack_1_Volt_SMG_Uncommon_001','Usable','UNDEFINED','0ad7646d-b37d-41bd-870b-d5c4cd3802a0','','',NULL), -('11685','Door Control','ControlPanel','DoorPart','303bfd5d-aa0e-4ee7-b05d-af5e14e1ac22','','',NULL), -('11686','UEE 6th Platoon Medal (Pristine)','Misc','Trophy','366d803c-d830-4668-8375-01776d852519','','',NULL), -('11687','Glacosite','Cargo','Cargo','204cfa4f-2f57-4d09-8555-bd1c75fb6792','','',NULL), -('11688','CRUS_Spirit_A1_Exterior','Misc','UNDEFINED','3ac685aa-bab2-4c79-8558-591a3144e3ed','','',NULL), -('11689','Remote Turret','Turret','PDCTurret','e841d7ed-3807-4173-82b5-109ae3943077','','',NULL), -('11690','ARMR_ANVL_Terrapin_Medic','Armor','Medium','f17fd7ca-3bd8-4164-8b96-042d5a4222de','','',NULL), -('11691','Door','Door','UNDEFINED','58df0aca-f7b5-43b4-bbce-7bd63c3a78a1','','',NULL), -('11692','Dust Devil Legs Epoque','Armor','Legs','24606af7-106f-4892-a522-081ac7d771f8','','',NULL), -('11693','Novikov \"Ascension\" Backpack','Armor','Backpack','5c007fa0-4354-47c6-b1e3-03c9fd9d2be3','','',NULL), -('11694','volume_shirt_01','Armor','Undersuit','3fcec19e-ee3b-4e4d-b11a-fb380a8d3b89','','',NULL), -('11695','BANU_Defender_Thruster_Retro','ManneuverThruster','Retro','97334a38-1722-46ec-9119-18d908e9912f','','',NULL), -('11696','Internal Tank','QuantumFuelTank','QuantumFuel','f483672e-c317-4ce8-b94f-b8afe1428aff','','',NULL), -('11697','Seat','Usable','UNDEFINED','e8f26cb7-6a3f-483b-b1bb-2db44e14f421','','',NULL), -('11698','Internal Tank','QuantumFuelTank','QuantumFuel','7443c014-3705-42b2-b967-d08ba688475e','','',NULL), -('11699','Agricium (Ore)','Cargo','Cargo','724b2fcc-f89d-4474-ac95-c9d02399b345','','',NULL), -('11700','JDRV_AEGS_S04_Javelin_SCItem','JumpDrive','UNDEFINED','c7d2da14-754f-41f1-9251-4d5f7694fa00','','',NULL), -('11701','Seat','SeatAccess','UNDEFINED','bc0474e2-b774-4224-9cf5-6654813ec1b5','','',NULL), -('11702','Quantum Fuel','Cargo','Cargo','1b2250da-46e6-4d9b-847c-a57cf958ba2e','','',NULL), -('11703','Markanda Undersuit Basalt (Refurbished)','Armor','Undersuit','cae6ba4d-4be2-4af6-a64e-1b9a929c69b3','','',NULL), -('11704','Anvil Decoy Launcher','WeaponDefensive','CountermeasureLauncher','de5d5a8e-c69d-44a3-9126-415d87a17e60','','',NULL), -('11705','Access','SeatAccess','UNDEFINED','43d7166d-cf1a-424c-84d5-b06ebbf14f16','','',NULL), -('11706','Aztalan Helmet Epoque','Armor','Helmet','7ede6215-65ac-4629-afd2-29e66374bb48','','',NULL), -('11707','un_box_plastic_2_berries_a','Misc','UNDEFINED','92496b4b-581d-45b4-9b4f-6f5651c9f17a','','',NULL), -('11708','Karna \"Brimstone\" Rifle','Weapon','Medium','b5a8e588-4d57-410f-a784-99403cf65fc4','','',NULL), -('11709','Venture Core','Armor','Torso','dc079d73-0014-41ff-8c00-3adf0eabbc3b','','',NULL), -('11710','Golem Greysteel Livery','Paints','UNDEFINED','4599c9c0-f1d0-4f63-af8c-def1cb01bfb4','','',NULL), -('11711','United Empire of Earth Mini-Flag','Flair_Cockpit','Flair_Static','0da6ef02-1468-4adf-bc88-79a62a931165','','',NULL), -('11712','Internal Tank','QuantumFuelTank','QuantumFuel','6370972a-804a-44af-a196-3fea93780626','','',NULL), -('11713','Specialty Hornet S5 VariPuck Mount','Turret','BallTurret','18895043-42c5-4f1d-a5e8-4cf7c78bd69f','','',NULL), -('11714','Freelancer Whammer\'s Livery','Paints','UNDEFINED','ea626499-8dfa-4af0-a148-5286a2cfcac2','','',NULL), -('11715','F8 Lightning Auspicious Red Livery','Paints','UNDEFINED','c8d663e3-c741-43e1-a7cd-2a0d53d3c7f9','','',NULL), -('11716','ADP Legs Olive','Armor','Legs','409def54-f7ff-468c-be29-2a7715091164','','',NULL), -('11717','Internal Tank','QuantumFuelTank','QuantumFuel','ab9e05fd-a53b-4adf-880b-ae9fa070a05c','','',NULL), -('11718','sp_int_gift_kiosk_stand_b','ShopDisplay','Default','8994d19f-56b7-4594-b941-4a8c605edcd2','','',NULL), -('11719','Bengal_BallisticGatling_Ventilation_S6','WeaponAttachment','Ventilation','68cde8c8-3b09-496c-b9c6-4153a18f4a7e','','',NULL), -('11720','GLSN_Shiv_Thruster_Main_Side','MainThruster','FixedThruster','1b3ed1f1-45a3-4b32-a152-4948de032db8','','',NULL), -('11721','WiDoW','Cargo','Cargo','4cb316cb-23f9-4c23-9303-b0b358d15180','','',NULL), -('11722','MISC_Starfarer_CargoGrid_Side_Alcove','CargoGrid','UNDEFINED','b59d47c7-0c5c-4f29-9292-f9c833826c5f','','',NULL), -('11723','Carnifex Armor Legs','Armor','Legs','06ee376e-daff-4cc8-8dac-87c7299c1f64','','',NULL), -('11724','QuadraCell MT','PowerPlant','Power','18d542ac-ee74-411e-ad3e-e2e0b980c103','','',NULL), -('11725','Radford Shirt Crusader Edition Blue Wide Pinstripe','Char_Clothing_Torso_0','UNDEFINED','b519786e-bab8-460b-b95f-b1e476b354d1','','',NULL), -('11726','Levin Undersuit Greyscale (Refurbished)','Armor','Undersuit','32786c0f-5be6-4110-b360-37cab7349806','','',NULL), -('11727','Door','Door','UNDEFINED','d96b5d2f-bf5e-4f44-84a0-b53140eedd91','','',NULL), -('11728','Seat','SeatAccess','UNDEFINED','df9c1a75-d3f3-4c56-baa5-87873be19817','','',NULL), -('11729','Radford Shirt Crusader Edition White Pinstripe','Char_Clothing_Torso_0','UNDEFINED','2a725eee-a719-467a-9073-71e78971a2d7','','',NULL), -('11730','TRGT. STATUS','Seat','UNDEFINED','08165143-6f44-4b6e-aaf0-4892e0ff8a11','','',NULL), -('11731','Radford Shirt Crusader Edition White Grid','Char_Clothing_Torso_0','UNDEFINED','6712fb50-049a-4f54-89c8-332a67197e3a','','',NULL), -('11732','Radford Shirt Crusader Edition White Wide Pinstripe','Char_Clothing_Torso_0','UNDEFINED','c65bd5d4-d629-4111-b21e-3ea7a6c6f9ce','','',NULL), -('11733','DRAK_Cutlass_Steel_Thruster_Maneuver_Front_Top','ManneuverThruster','JointThruster','d65163e3-c434-41f0-ae2f-ed5548c025a2','','',NULL), -('11734','TRGT. STATUS','Seat','UNDEFINED','d6cc3437-cbf5-47e6-9a2c-dfaba7e602a3','','',NULL), -('11735','PyroBurst Scattergun','Weapon','Gun','aa41e4d8-6b99-4f63-90d5-b0956e70c1d8','','',NULL), -('11736','Reclaimed Water','Drink','Bottle','7bc46fe2-756c-4093-b7b3-cb5e0a4ab9f5','','',NULL), -('11737','lt_lamp_desk_1_a','Light','UNDEFINED','a4fb9977-55ba-4467-8b72-4c33df96d28f','','',NULL), -('11738','TRGT. STATUS','Seat','UNDEFINED','02e461f4-6f2a-449a-bd34-b1dca7d92d18','','',NULL), -('11739','Veil','Shield','UNDEFINED','32e241cf-130e-4b00-8752-0da67e98a40f','','',NULL), -('11740','Internal Tank','FuelTank','Fuel','08747c97-b1e1-406f-a2bb-1db7583a6600','','',NULL), -('11741','Attrition-6 Repeater','Weapon','Gun','f02c1934-9ebb-413c-9f3e-cbcb262f25de','','',NULL), -('11742','Torrent III Module','MiningModifier','Gun','54f4471f-592d-49c1-a12f-fb24c4771ab2','','',NULL), -('11743','Stirling Exploration Suit Alkaline Edition','Armor','Undersuit','9beed295-b9e9-4293-b65a-331e919764e1','','',NULL), -('11744','Performance T-Shirt','Char_Clothing_Torso_0','UNDEFINED','5172964d-7d58-4339-841c-5a4eebfef9d8','','',NULL), -('11745','Door Control','Door','UNDEFINED','15b0f4df-5696-4eba-a236-36744b07e360','','',NULL), -('11746','MISC_Starfarer_Thruster_Mav_Joint','ManneuverThruster','JointThruster','740314dd-d000-4acb-8ca4-27a81a4bbd54','','',NULL), -('11747','shelf_01x005x00375_2ports','ShopDisplay','Default','39471b0d-74ed-47f9-a095-41f209dad19e','','',NULL), -('11748','MISC_Reliant_Thruster_Mav_Fixed_Vertical','ManneuverThruster','FixedThruster','168822e8-2075-4862-ab9a-c7a544d30803','','',NULL), -('11749','Kino Shoes','Char_Clothing_Feet','UNDEFINED','06a90691-c551-46fa-977b-f7831222884f','','',NULL), -('11750','Seat','Usable','UNDEFINED','bb6cd2a4-8a69-4861-8182-919e09c2488c','','',NULL), -('11751','KLWE_MassDriver_Barrel_S2','WeaponAttachment','Barrel','25335c83-3aab-4aa3-80dd-b1fe87180b29','','',NULL), -('11752','m_human_mannequin_truDef_pro_odyssey','ShopDisplay','UNDEFINED','3c69b05d-5828-43a3-9581-13fffeb75b43','','',NULL), -('11753','Pitman Mining Laser','Mining','Gun','5a704f96-c339-43e7-b918-7fc9957673ed','','',NULL), -('11754','Table_2_Seat_High_Lowtech_1_a','Usable','UNDEFINED','fb133951-8276-4580-a031-9ad980ed4096','','',NULL), -('11755','Collector_SCItem_SeatAccess_ATC','SeatAccess','UNDEFINED','877f8c03-2a3e-4aaf-bef1-e133daa950cb','','',NULL), -('11756','Nivala Shoes Ash','Char_Clothing_Feet','UNDEFINED','0b9fb0aa-2489-4c5c-90ec-615efdcb0e88','','',NULL), -('11757','Seat','Usable','UNDEFINED','88289098-f0ba-401e-87f6-4f2c0ac0cf0f','','',NULL), -('11758','600i Cold Forge Livery','Paints','UNDEFINED','2cf575b1-925b-42c7-9e0a-5fb888a069a6','','',NULL), -('11759','Carryable_2H_FL_Safe_1_b','Misc','UNDEFINED','7b9df71c-1ce4-4196-9efc-536f36b09b21','','',NULL), -('11760','Door Control','Door','UNDEFINED','b1f3b42e-660c-4ca1-9e41-adf92be3840c','','',NULL), -('11761','Internal Tank','QuantumFuelTank','QuantumFuel','3ecf1e1e-bde7-4185-a955-020673128d8e','','',NULL), -('11762','DRAK_Herald_Thruster_Aux','MainThruster','FixedThruster','7b0dbc57-1e54-4761-b8f8-7fee93a091dc','','',NULL), -('11763','Mivaldi Pants Blue','Char_Clothing_Legs','UNDEFINED','db40dfef-4eac-4ad2-af15-48a6bbabc888','','',NULL), -('11764','Nova Nightbreak Livery','Paints','UNDEFINED','ea5e4814-d6de-4fec-8444-1255fee713eb','','',NULL), -('11765','Fresh Food','Cargo','Cargo','7323eff2-9389-4b39-b349-6274d155da59','','',NULL), -('11766','Weapon_Rack_1_GMNI_Sniper_Common_001','Usable','UNDEFINED','a20fde15-1caa-4e18-9f3a-b475233d7b63','','',NULL), -('11767','AEGS_Retaliator_Thruster_Mav_Fixed_Lateral','ManneuverThruster','FixedThruster','d8f36606-82df-4602-8db8-51944be53eb5','','',NULL), -('11768','Door Control','Door','UNDEFINED','80d730ec-369b-4c38-b3b8-7124dbe5a111','','',NULL), -('11769','Seat','Usable','UNDEFINED','c2dd4168-be6b-4ea1-bfd6-4dde7ea9aa1a','','',NULL), -('11770','Winter-Star XL','Cooler','UNDEFINED','71df1f43-b44d-47e7-9d29-2a4e090aee07','','',NULL), -('11771','Flight Blade','FlightController','UNDEFINED','ce0c3841-823b-4ecd-bf72-e61389c3a0e3','','',NULL), -('11772','Personal Storage','Cargo','UNDEFINED','9749b221-ac93-43ec-8925-61f5bebdca1d','','',NULL), -('11773','Tolo Jacket Crusader Edition','Char_Clothing_Torso_1','UNDEFINED','5c845b5f-2368-4944-b11f-1bbaab6ec40d','','',NULL), -('11774','Vehicle_Screen_MFD_Holographic_MISC_Fortune_LL','Display','UNDEFINED','e80545c2-bf0d-4cfa-a79b-4aa7f5aba5bc','','',NULL), -('11775','Pite','Char_Head_Piercings','UNDEFINED','348b6c50-50c1-4ee8-ae01-a1da48174d54','','',NULL), -('11776','DockingTube_Fuel_Ports_DRAK_Cutlass','DockingCollar','UNDEFINED','7b319933-6244-4874-9d39-63eb342ceebc','','',NULL), -('11777','DRAK_Cutlass_Blue_PrisonerPods','Usable','UNDEFINED','be93fd54-32da-4a63-9dad-b60fe35faf1b','','',NULL), -('11778','HRST_LaserScatterGun_PowerArray_S2','WeaponAttachment','PowerArray','22df0629-c164-444a-bd5b-9413f5d3380e','','',NULL), -('11779','ANVL_Lightning_F8_Thruster_Mav_Joint_Grey','ManneuverThruster','JointThruster','2da08a4d-6d8c-4b21-a610-71de3f5c71b9','','',NULL), -('11780','KLWE_MassDriver_PowerArray_S3','WeaponAttachment','PowerArray','06391919-f026-4e93-9acd-31dc6d7b72a8','','',NULL), -('11781','Screen','SeatDashboard','UNDEFINED','b2e6f541-e23b-4c76-ae1d-ec444b1c4e4c','','',NULL), -('11782','TrueDef-Pro Legs','Armor','Legs','26d116dd-ae63-485f-9146-f4f4f5ae548d','','',NULL), -('11783','Mule Reburn Livery','Paints','UNDEFINED','99b7f9ef-953f-4802-aec5-48f91e107f10','','',NULL), -('11784','Tigo Gloves','Char_Clothing_Hands','UNDEFINED','3a5b0afb-1106-4e7b-8e36-aa666a9f1a1c','','',NULL), -('11785','Door Control','Door','UNDEFINED','8907caf6-3fe5-4d01-8414-3765b5463bd3','','',NULL), -('11786','Zelena Pants Midnight and Bisbee Boots','Char_Clothing_Legs','UNDEFINED','e71bbab3-950f-4ce6-b2f5-b720938e427f','','',NULL), -('11787','Internal Tank','QuantumFuelTank','QuantumFuel','b8790a9c-4cbf-4b63-8a25-4bcd9447d5d7','','',NULL), -('11788','Internal Tank','QuantumFuelTank','QuantumFuel','12588602-1b5a-4084-93fd-121045a43eee','','',NULL), -('11789','HLX99 Hyperprocessors','Cargo','Cargo','68f6217c-dc0f-4143-8433-c5923b947b55','','',NULL), -('11790','Hangar_FreightElevator_CargoGrid_Small','CargoGrid','UNDEFINED','004baa98-099f-4276-921a-d07ea4646c09','','',NULL), -('11791','Tussock Boots Hematite','Char_Clothing_Feet','UNDEFINED','4a378cc9-435f-4703-af86-ca15ceaebe6a','','',NULL), -('11792','Redfin Energy Modulators','Cargo','Cargo','99bde026-946a-4667-97c8-abe7b2cba1c7','','',NULL), -('11793','Cliffback T-Shirt Dark Red','Char_Clothing_Torso_0','UNDEFINED','00fd8adb-9306-44cf-b285-1f9b3f5e2a98','','',NULL), -('11794','PAB-1 Legs Twilight','Armor','Legs','11f3c184-5fe3-4a5e-b807-8daf35d9f609','','',NULL), -('11795','utensil_tray_1_medical_a','Misc','UNDEFINED','9a074346-ebfd-40fb-a123-03434e366db5','','',NULL), -('11796','CRUS_Starlifter_CargoGrid_Small_M2','CargoGrid','UNDEFINED','243fa30c-dd5e-4a72-9e99-fbf9145fe910','','',NULL), -('11797','Manned Turret','TurretBase','MannedTurret','ae0f5d20-d740-449c-920b-84ff32340321','','',NULL), -('11798','WeaponMount_Gun_S1_default_laser_repeating','WeaponMount','WeaponControl','3734c6b5-5f3c-4720-b5fa-f2b48b38e653','','',NULL), -('11799','CSV Primer Livery','Paints','UNDEFINED','0a84028a-a810-42ac-987e-b91445a43078','','',NULL), -('11800','AEGS_Sabre_Thruster_Mav_SideRR','ManneuverThruster','JointThruster','0474efc3-11fb-44c0-904c-5a3ec0c427b5','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('11801','Microid Battle Suit Arms Crucible ','Armor','Arms','1b50a564-2395-4c5d-b51a-db4692aebbed','','',NULL), -('11802','counter_display_mod_end_0038x01x01_01Port_HackingTools','ShopDisplay','UNDEFINED','36df471b-bb30-4adf-91af-0e4fe90f3ea8','','',NULL), -('11803','BANU_TachyonCannon_FiringMechanism_S1','WeaponAttachment','FiringMechanism','6cc8457a-d30f-442d-9755-087d82985de9','','',NULL), -('11804','Seat','Usable','UNDEFINED','9a6a10cc-2730-477f-9d6c-4ec768d92b02','','',NULL), -('11805','Door Control','Door','UNDEFINED','f43ef7e3-e009-4c1b-8b30-d3b6eb0fb0f3','','',NULL), -('11806','Railing_Straight_4m_Lowtech_Guardrail_D','Usable','UNDEFINED','83237163-2945-4ec7-a7cd-fa9d07dd21ac','','',NULL), -('11807','ARGO_MPUV_Thruster_Retro_Joint','ManneuverThruster','FixedThruster','48f5629c-66d8-4a01-9225-6518ca527121','','',NULL), -('11808','Carryable_2H_FL_Vlk_Pearl_Low_04','Misc','Harvestable','863ac535-a76d-4807-a181-678249ae6d7b','','',NULL), -('11809','Strata Helmet Hurston Edition','Armor','Helmet','5e578b7d-fc39-437e-a9ac-1bb8336f2ec4','','',NULL), -('11810','Riccite (Ore)','Cargo','Cargo','d7bebd12-e05a-4bec-aedb-799c57a96874','','',NULL), -('11811','ITG Hat','Char_Clothing_Hat','UNDEFINED','0743319c-2ee2-4db3-b3ff-ce9cc5757242','','',NULL), -('11812','Tarantula GT-870 Mark 1 Cannon','Weapon','Gun','8bebf292-a9a3-4dc8-a86c-ddfa3b9b79be','','',NULL), -('11813','AEGS_Sabre_Peregrine_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','5172b6a5-2b37-45af-ace5-b580bff1b7cd','','',NULL), -('11814','Hammerhead Ship Armor','Armor','Medium','3e75b2cd-1b99-46b2-91eb-2177a2024910','','',NULL), -('11815','Inquisitor Legs Outcrop','Armor','Legs','b2de6ee0-b010-4134-befc-c342767456cc','','',NULL), -('11816','Tungsten','Cargo','Cargo','edd35ba6-9297-4555-8b28-167f13338e7d','','',NULL), -('11817','Raw Silicon','Cargo','Cargo','0249352c-75fb-4a8a-8906-b241ef368a6a','','',NULL), -('11818','Door_ASD_OneWay_AutoClose','Door','UNDEFINED','8987b910-1aa4-4741-ac21-fcc80b899323','','',NULL), -('11819','SHIELDS','ShieldController','UNDEFINED','6046efc9-f61a-4c70-94b7-bb4b50c88b74','','',NULL), -('11820','Bed','Usable','UNDEFINED','cec46bef-7bfa-4bc2-a568-6a2b2d0954c9','','',NULL), -('11821','Kamar Jacket','Char_Clothing_Torso_1','UNDEFINED','7095ce23-e75d-4ddb-a738-9cc6f3c75e2a','','',NULL), -('11822','Table_Desk_1_Seat_CRUS_Star_Runner','Usable','UNDEFINED','f7995e61-b027-4d1e-b557-d60ebb8e0564','','',NULL), -('11823','Tumbril T-Shirt','Char_Clothing_Torso_0','UNDEFINED','7e7e8e3c-8a87-425a-9e51-19afe4893d22','','',NULL), -('11824','food_ration_pack_f','Misc','UNDEFINED','252f3284-c83e-4527-a450-c45de09602c9','','',NULL), -('11825','G-2 Helmet Cry-Astro Edition','Armor','Helmet','f4faf578-bbf9-40ee-adc4-70cc163813ae','','',NULL), -('11826','Mala','Cargo','Cargo','3b8ae922-3a49-481b-8c3b-a333980cb91f','','',NULL), -('11827','Helium','Cargo','Cargo','73c924fd-7f64-4c2b-b190-e1e631156137','','',NULL), -('11828','VendingMachine_coffee_1_c','Cargo','UNDEFINED','2b47efa7-a69d-45f3-8bf6-50da1e86377f','','',NULL), -('11829','Zip','Cargo','Cargo','60dc412a-bcfd-44e4-87f7-b1843d2e8ea3','','',NULL), -('11830','ARGO_MOTH_Thruster_VTOL','MainThruster','FixedThruster','cf0799ae-77ed-494f-b5db-3b76ee40f432','','',NULL), -('11831','Gadget_Cabinet_kegr_fire_extinguisher_display_02','Usable','UNDEFINED','99c2523d-cd31-4866-88b7-b45608f4fbca','','',NULL), -('11832','display_booth_stand_2_weapon_00555x0015x008','ShopDisplay','Default','602642b7-3dbf-4c60-9ce0-417edb73d48f','','',NULL), -('11833','Lycara','Cargo','Cargo','c5610e66-b90e-476d-ada1-f2ed7f429e29','','',NULL), -('11834','Strata Arms','Armor','Arms','80ebb28f-cf3f-4a06-82f4-981a2467a9eb','','',NULL), -('11835','Citadel Legs Dark Red','Armor','Legs','74214901-360c-46fa-9ff8-2d60d8260290','','',NULL), -('11836','TRGT. STATUS','Seat','UNDEFINED','9b5673db-661f-4a6f-98fd-e61e47772a92','','',NULL), -('11837','Beryl (Raw)','Cargo','Cargo','a1ed52ef-540c-4fd3-94a2-3c2a6a010208','','',NULL), -('11838','Door Control','Door','UNDEFINED','2f1b41ee-d168-4bf7-af0f-735a781dfae8','','',NULL), -('11839','MISC_Starlancer_OuterBtn_Exterior','Elevator','UNDEFINED','ad7a28b2-ded9-4541-a167-d0c657628af8','','',NULL), -('11840','Drake T-Shirt Red Logo','Char_Clothing_Torso_0','UNDEFINED','ad08cdd6-01e1-4a4b-a5d7-7368e6737b87','','',NULL), -('11841','lowtech_grimhex_airlock_lghtgrp','Lightgroup','AirlockPart','c5422a7d-ddd8-4037-9988-31f6fdc2e57b','','',NULL), -('11842','Markanda Undersuit (Refurbished)','Armor','Undersuit','036bd7d8-d487-4069-ba7c-873a26afc9a1','','',NULL), -('11843','Crusader Mercury Star Runner Nose Turret','Turret','BallTurret','920c89a5-30e2-403a-88bf-9e3d33a3f8f9','','',NULL), -('11844','ROC Module','MiningModifier','Gun','e17408e8-e1ad-4402-9cd9-3e05425a291a','','',NULL), -('11845','Bed','Usable','UNDEFINED','9e260408-594c-4d08-864d-22560cb07f3a','','',NULL), -('11846','Edgewear Pants','Char_Clothing_Legs','UNDEFINED','588ea4cf-7b02-4562-8679-e11753d5e0b1','','',NULL), -('11847','GME 240-15 Patient Slippers Honeycomb','Char_Clothing_Feet','UNDEFINED','a4c61f14-0d28-473a-a3b5-2aeeea391c08','','',NULL), -('11848','MISC_Reliant_CargoGrid_Tana','CargoGrid','UNDEFINED','ba5e8590-a090-4997-8e2b-2839d4d69faa','','',NULL), -('11849','Hercules Starlifter Meridian Livery','Paints','UNDEFINED','5553e9b0-0659-49fc-a4a7-9f95ae10243e','','',NULL), -('11850','Personal Care Product','Misc','UNDEFINED','80f7fdea-0e00-48ca-8ef7-3ff1f3dfd1ed','','',NULL), -('11851','Door Control','Door','UNDEFINED','0dc8538f-d698-4b23-8318-027f01e850d9','','',NULL), -('11852','m_teeth_vlk_adult_irradiated','Char_Accessory_Head','Vanduul','bfd6d16c-472b-4d86-8b98-5585e3617495','','',NULL), -('11853','ANVL_Door_Decal_Carrack_StarTurret','Decal','DoorPart','793db4da-e779-4079-b0c2-e43dcb6871f3','','',NULL), -('11854','M3A Cannon Defense Division','Weapon','Gun','871d4786-d443-493f-b2b9-d610b4108c6a','','',NULL), -('11855','ANVL_Door_Decal_Carrack_Garage','Decal','DoorPart','206fda87-7eff-4dbc-8fcf-d0370fb0d52f','','',NULL), -('11856','Normstar T-Shirt','Char_Clothing_Torso_0','UNDEFINED','7ad1e532-9af6-476d-a8c7-5048b92b3f88','','',NULL), -('11857','Weapon_Rack_1_VOLT_LMG_Uncommon_003','Usable','UNDEFINED','396d5599-3917-4dd8-9370-1d76ab454888','','',NULL), -('11858','Hermes Paragon Livery','Paints','UNDEFINED','c4ce78ee-f972-4b04-a73b-9d208e784490','','',NULL), -('11859','GATS_BallisticGatling_Ventilation_S2','WeaponAttachment','Ventilation','ac8c15b2-4e46-4523-8671-cee943031741','','',NULL), -('11860','MRAI_Guardian_Thruster_Main_Right_MX','MainThruster','JointThruster','463cb6d0-eb06-c364-09a9-e709795b6cab','','',NULL), -('11861','Aves Shrike Legs','Armor','Legs','3d3ad894-769a-44ce-b824-90454e9d51ad','','',NULL), -('11862','Green Curry Primavera','Food','Box','55507f33-6ecb-46af-9977-adf2ddc4da6d','','',NULL), -('11863','H_Dashboard_Projector_HUD_ARGO_MPUV','Display','UNDEFINED','174b7253-c50d-4120-bbe2-076ccae7f200','','',NULL), -('11864','H_Dashboard_Projector_HUD_VNCL_Blade','Display','UNDEFINED','0b170e4d-b7d1-43c7-b672-e1bac8524add','','',NULL), -('11865','KLWE_MassDriver_Ventilation_S1','WeaponAttachment','Ventilation','0736ce29-2427-4584-89bb-7abee8d42908','','',NULL), -('11866','weapon_underbarrel_light_narrow_Darkblue_01','WeaponAttachment','Light','6225f48e-d543-4d51-8359-d200eb3fc5da','','',NULL), -('11867','Hercules Starlifter Cerberus Livery','Paints','UNDEFINED','732e7568-b903-4777-9542-b6c4ee84efff','','',NULL), -('11868','Focus III Module','MiningModifier','Gun','91417d7d-a6ad-4ce2-9d57-1ae15a7486f9','','',NULL), -('11869','Odyssey II Helmet Tan','Armor','Helmet','13a3a6db-0a80-4084-8292-3224b875bd06','','',NULL), -('11870','Door Control','Door','UNDEFINED','0abbb451-bcf7-4e0e-8c3c-6a1bf5752751','','',NULL), -('11871','Seat','SeatAccess','UNDEFINED','2d679924-f0b4-4064-9901-80582bcab287','','',NULL), -('11872','Degnous Root','Cargo','Cargo','fddf6632-f9f6-475b-8731-c9b80c252d13','','',NULL), -('11873','Gold','Cargo','Cargo','f3a103cc-81a6-48e7-8028-d9b9215c5617','','',NULL), -('11874','Quartz \"Cobalt Camo\" Energy SMG','Weapon','Medium','1b833280-efb7-4a2e-a34d-d4431c097289','','',NULL), -('11875','Elevator Control','Door','UNDEFINED','02c04e4d-90c2-4b10-84ce-891a22e085c8','','',NULL), -('11876','FPS_DefaultRadar','FPS_Radar','UNDEFINED','ff08bbcf-9364-40d7-9bfa-e3271542a500','','',NULL), -('11877','Seat','SeatAccess','UNDEFINED','28f55ea9-c12a-4579-b98f-6b1877e24050','','',NULL), -('11878','Lancet MH2 Mining Laser','Mining','Gun','c2006c91-f8f7-4bda-ae38-e0ca5af5c737','','',NULL), -('11879','Door Control','Door','UNDEFINED','6a123d95-0a4c-4b0e-91d4-9b4e79713651','','',NULL), -('11880','facial_hair_027','Char_Head_Beard','UNDEFINED','bda4e041-2f54-4ec6-9bd8-6807e80ddfd6','','',NULL), -('11881','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','37ce7ec6-b9db-417b-be6d-b743597ec401','','',NULL), -('11882','CRUS_Starlifter_CargoGrid_Small','CargoGrid','UNDEFINED','efad5058-d7e8-48c9-8770-e60b04d64b55','','',NULL), -('11883','Chicken Pesto Omni Pack','Food','Tin','fed3908f-5c2f-4aa2-ba0b-2e7c9f830d98','','',NULL), -('11884','TE_weapon_box__behr_smg_ballistic_01','Misc','UNDEFINED','ddd381c7-58de-42a3-becd-e0460d50cdf8','','',NULL), -('11885','Carnifex Pants Windfall','Armor','Legs','a1cbff37-756a-49e6-8463-8f0d9e3c879a','','',NULL), -('11886','Internal Tank','FuelTank','Fuel','2ff9ff6c-78f3-4e04-be9c-882b9e4fbd57','','',NULL), -('11887','Hadanite','Cargo','Cargo','ab2530ea-cd41-455e-b6bc-1033d7ca6f19','','',NULL), -('11888','Radar_Display_ORIG_100','Display','UNDEFINED','9e343915-f29e-4346-aba0-2960bcb0f995','','',NULL), -('11889','Gauntlet Gloves','Char_Clothing_Hands','UNDEFINED','20eceede-2f6b-426b-93a6-1ddb71ff21ad','','',NULL), -('11890','MacFlex Legs Seagreen','Armor','Legs','6ccf55f7-b9b5-44c7-b05e-ed81c308b05d','','',NULL), -('11891','ht_booth_table_microtech_2_seater_a','Usable','UNDEFINED','13f5b5ba-7f8e-4387-b25d-96d62d744c3c','','',NULL), -('11892','Door Control','ControlPanel','DoorPart','0d329039-f0c1-4998-9dd5-3efda3c5ee1e','','',NULL), -('11893','countertop_display_rotating_8Ports_test','ShopDisplay','UNDEFINED','facf81eb-9704-4d36-8d6c-79001188a2b9','','',NULL), -('11894','RSI_Polaris_SCItem_SeatAccess_Turret_Top_Left','SeatAccess','UNDEFINED','f1e281db-632d-4664-987c-669af67351ac','','',NULL), -('11895','ARMR_MISC_Prospector','Armor','Medium','baa06b3f-cb95-4c14-9431-42793da9db22','','',NULL), -('11896','ORC-mkV Core Sienna','Armor','Torso','4ef3c42b-1993-4776-adbe-97a32785760e','','',NULL), -('11897','Gallant Rifle','Weapon','Medium','2d4a0321-92ce-4947-9be5-cac36f9f5150','','',NULL), -('11898','TrueDef-Pro Core Black/Aqua/Silver','Armor','Torso','4e100a6f-eb3a-4b0d-8662-bfb25a45b2bc','','',NULL), -('11899','Zeus Frontier Fighters Camo Livery','Paints','UNDEFINED','e66ef17b-0a71-4885-b0ac-fd6025ea0347','','',NULL), -('11900','Manned Turret','TurretBase','MannedTurret','e44d42ad-c74f-4ed4-b33f-1c9297d16552','','',NULL), -('11901','SCItemDisplayScreen_HoloVolume','Display','Default','510c0d8f-5222-49e8-af3f-b289c6452e4e','','',NULL), -('11902','Access','SeatAccess','UNDEFINED','4128d91f-9888-44c8-b080-94df4c6154a4','','',NULL), -('11903','Door Control','Door','UNDEFINED','e494bb6b-3bc2-4e86-98a1-55564f360105','','',NULL), -('11904','INTK_ORIG_X1','FuelIntake','Fuel','deae2e0f-3837-40a4-b16e-9cb2cbb4ceb4','','',NULL), -('11905','Debnam Gloves','Char_Clothing_Hands','UNDEFINED','05fee1e8-7a26-42a7-8462-f497fa9ddf7c','','',NULL), -('11906','Outback Legs Sleet','Armor','Legs','3de4d034-50f2-4030-977f-1357f424ac60','','',NULL), -('11907','PAB-1 Core Seagreen','Armor','Torso','914d2896-860d-425a-891c-30e338eb1723','','',NULL), -('11908','Stitcher Legs','Armor','Legs','750ab5dc-ebea-46ec-a880-8a9498ce7198','','',NULL), -('11909','ORC-mkV Legs Orange','Armor','Legs','9a1f56b5-5cf2-4755-94a3-3e1d9a8d0efe','','',NULL), -('11910','Lastaprene','Cargo','Cargo','9107ca52-d38e-4fc1-acfa-ab8af47905ad','','',NULL), -('11911','RSI_Salvation_Thruster_Retro_Bottom_Left','ManneuverThruster','Retro','b0b653e9-6ff3-4bd7-9898-f514e682724a','','',NULL), -('11912','BEHR_BallisticGatling_FiringMechanism_S7','WeaponAttachment','FiringMechanism','e13cb553-bf8f-4570-bf91-d8a3991e26c2','','',NULL), -('11913','Taos Balaclava and Goggles Arctic','Char_Clothing_Hat','UNDEFINED','d3a56045-9adf-42b2-8540-71c3622b3880','','',NULL), -('11914','Pite','Char_Head_Piercings','UNDEFINED','0e24c257-3382-48e5-b35a-3a7550674661','','',NULL), -('11915','M8A Cannon','Weapon','Gun','493338b9-a7c6-4598-ba32-dd61d5ffef8f','','',NULL), -('11916','MRX \"Torrent\"','Turret','PDCTurret','239a48af-d767-4a0f-a3da-8840901eac38','','',NULL), -('11917','Jericho X','Weapon','Rocket','06c3eecf-c6e5-4f63-91ab-158103f04e4a','','',NULL), -('11918','Locker_Suit_MRAI_Guardian','Usable','UNDEFINED','95d8ae91-3cdb-40b8-a6fa-171a453316cc','','',NULL), -('11919','Quantainium','Cargo','Cargo','b83976c6-9580-4179-a3b7-54ac2f8bea23','','',NULL), -('11920','GME 338-10 Medical Gown Honeycomb','Char_Clothing_Torso_1','UNDEFINED','6515e7ed-b1c5-4585-a744-9257bc37171c','','',NULL), -('11921','Salvation Vespid Livery','Paints','UNDEFINED','723d6c3c-0a53-4ee0-b7c3-cb2d510844ab','','',NULL), -('11922','TRGT. STATUS','Seat','UNDEFINED','781f33f2-6497-4496-9c96-aabbb571a40f','','',NULL), -('11923','customizer_pants','Char_Clothing_Legs','UNDEFINED','c7fe6acf-acd6-4162-94f4-ea8fb71216cd','','',NULL), -('11924','Seat','SeatAccess','UNDEFINED','0020cdfe-3fa4-4b2f-993b-f5f028c89997','','',NULL), -('11925','Weapon_Rack_Cz_Firerat_006','Usable','UNDEFINED','5b9a311a-45cb-4f0d-a6b5-17542f9b1e8b','','',NULL), -('11926','SLAM','Cargo','Cargo','aa308368-abe6-4fa7-8627-6f7b6c2f8842','','',NULL), -('11927','Gadget_Cabinet_kegr_fire_extinguisher_01_nogeo_med','Usable','UNDEFINED','073feded-7384-407f-a4b1-9167d6988869','','',NULL), -('11928','TCS-4 Undersuit','Armor','Undersuit','d4d18f9f-bd28-4b43-a199-9f89223aa3de','','',NULL), -('11929','ArmorStand_CLDA_hazmat_Blue','Misc','UNDEFINED','92db8b61-ae62-4183-8d9a-338aeae5a6f7','','',NULL), -('11930','SHIELDS','ShieldController','UNDEFINED','2691d357-e7fc-4d56-8456-74db236b7895','','',NULL), -('11931','INTK_ORIG_300i','FuelIntake','Fuel','ed230fc3-27d8-42f5-ad2e-7bc53b77e374','','',NULL), -('11932','Construction Materials','Cargo','Cargo','6f1ace49-44e2-4421-b821-95e0461198e2','','',NULL), -('11933','ToolSafe Vest Falstaff','Char_Clothing_Torso_1','UNDEFINED','cb46a3c5-c624-4dee-9a5b-8f0e07655e81','','',NULL), -('11934','Morozov-SH-S Helmet Scorched','Armor','Helmet','1964e516-205a-4477-9d4e-0bc2bda6fe2c','','',NULL), -('11935','Corsair Downburst Camo Livery','Paints','UNDEFINED','cc37bf36-0a11-4f0a-ae3d-4693429fd13d','','',NULL), -('11936','PowerBolt','PowerPlant','Power','4a4a2a9c-040f-4f36-befe-7101b230fa53','','',NULL), -('11937','FBL-8a Helmet Justified','Armor','Helmet','b37171e2-2d67-4324-99f3-66e6d165cbd5','','',NULL), -('11938','Canelo Pants Laurel','Char_Clothing_Legs','UNDEFINED','fb22581f-3d5a-4672-aea7-d50509fd4d35','','',NULL), -('11939','TRGT. STATUS','Seat','UNDEFINED','b18a62f7-5bab-417a-9e5d-9b918ea8bc33','','',NULL), -('11940','Clempt Pants Grey','Char_Clothing_Legs','UNDEFINED','b5ecae98-7212-4178-bd13-31291b375347','','',NULL), -('11941','hair_39_prop','Char_Hair_Prop','UNDEFINED','8b9b32df-b360-4344-8d11-240b22160241','','',NULL), -('11942','Scorpius Red Alert Livery','Paints','UNDEFINED','794db369-7918-4dc8-bf3c-a6a5d0e474ea','','',NULL), -('11943','DRAK_Herald_Thruster_Main_V2','MainThruster','FixedThruster','65526b17-8485-4036-a70c-f095f192888d','','',NULL), -('11944','RSI_Aurora_ES_Thruster_Mav_Joint_01','ManneuverThruster','JointThruster','8ce65a84-02ba-41f3-b5ad-2016e68c9b2e','','',NULL), -('11945','Sojourn','QuantumDrive','UNDEFINED','4e2d202e-4336-4afc-bada-fbb20450755f','','',NULL), -('11946','Door Control','ControlPanel','DoorPart','6470d894-b52b-4eea-9ffc-381ace6ae5bc','','',NULL), -('11947','Carbon','Cargo','Cargo','aaae8279-9d4f-463c-83fa-3a7dcf5b3773','','',NULL), -('11948','AEGS_Vanguard_Harbinger_Thruster_Main_01','MainThruster','FixedThruster','436e33e3-18a4-44f4-95f7-6d7cc3b9963f','','',NULL), -('11949','Molina Mold','Misc','UNDEFINED','dbdc6487-28d6-476f-8512-309b2d17e612','','',NULL), -('11950','DockingTube_Fuel_Ports_RSI_Scorpius','DockingCollar','UNDEFINED','3176b21f-0d42-4bb4-9074-6b91ec5a6c30','','',NULL), -('11951','Falston Jumpsuit','Char_Clothing_Torso_1','UNDEFINED','e3512eb5-cfae-476f-8096-35656ad7fdc5','','',NULL), -('11952','Concept Shirt Twilight','Char_Clothing_Torso_0','UNDEFINED','ff615419-6632-4e61-91b1-5043613252ad','','',NULL), -('11953','SoftLock_Terminal_Standard_Starfarer_Fuel_Pods_Ship_L2','Display','UNDEFINED','23a927b7-1d0e-4d13-8bfc-11dd273c1567','','',NULL), -('11954','TrueDef-Pro Legs','Armor','Legs','03f72f55-70e7-41a4-b005-1fc4dd6f9fa3','','',NULL), -('11955','Inquisitor Arms Seagreen','Armor','Arms','4a867717-1fe5-4c58-82ce-08ab51eabef1','','',NULL), -('11956','Seat','Usable','UNDEFINED','1978d0d0-fff8-4ae4-bb0a-2eeeac092eda','','',NULL), -('11957','Razorback Pants Blue','Char_Clothing_Legs','UNDEFINED','7a568db7-76bd-46f9-9125-e80e3e35ef76','','',NULL), -('11958','Balor HCH Helmet Grey','Armor','Helmet','51e87c01-182f-4276-bc8c-149c31846def','','',NULL), -('11959','Inquisitor Legs Raven','Armor','Legs','1376ec64-6a00-4104-8fa6-d09648b4c323','','',NULL), -('11960','IndVest Jacket Tan','Char_Clothing_Torso_1','UNDEFINED','9826d1cd-98f3-4dd4-acce-89da696b4b95','','',NULL), -('11961','Chiron Helmet Lifesaver','Armor','Helmet','4188aa1a-0039-4238-956b-75152d24ca77','','',NULL), -('11962','Sharud Wrap and Arm Bands Olive','Char_Clothing_Torso_1','UNDEFINED','5c306c34-845b-4c55-b449-2d939ef3fe9c','','',NULL), -('11963','Power_Chemline_Generator','PowerPlant','Power','dd4e3e6f-0b91-4ee6-9f2c-2168f5b2427d','','',NULL), -('11964','GRIN_MTC_CargoGrid','CargoGrid','UNDEFINED','78f06299-d317-43d0-9982-cf064d67db93','','',NULL), -('11965','Lynx Legs Sienna','Armor','Legs','81565c8e-9099-4400-941f-2f9fd38568a0','','',NULL), -('11966','RSI_Polaris_Turret_Lighting_OC','Room','UNDEFINED','8e57f83f-ab27-4d7a-9d95-b9263043bcd6','','',NULL), -('11967','Door Control','Door','UNDEFINED','b0689672-f786-4260-99a8-818cb48a6c95','','',NULL), -('11968','Gold (Ore)','Cargo','Cargo','34d42cf1-0bd4-4229-b4c5-a90bdf4b7eb3','','',NULL), -('11969','Internal Tank','QuantumFuelTank','QuantumFuel','2fa4a732-a252-4045-9178-b4dabac6fd99','','',NULL), -('11970','RN_Light_Basic','Weapon','UNDEFINED','960d49d4-ce99-4626-9066-a2d539d41e87','','',NULL), -('11971','Seat','SeatAccess','UNDEFINED','58ca24f5-6efc-430b-8652-17d87319e92d','','',NULL), -('11972','Inert Materials','Cargo','Cargo','bbc00a82-ccac-4cd5-a5c7-374bf5b0fff0','','',NULL), -('11973','ANVL_Hurricane_Thruster_Retro','ManneuverThruster','FixedThruster','14b339af-7ecf-4cbe-979d-7e18e77aa0fa','','',NULL), -('11974','Pips A20','Drink','Can','70da6ba9-4982-4eac-b56b-ce2155b29a77','','',NULL), -('11975','Door Control','Door','UNDEFINED','b3d129e9-d7c1-446a-b886-109473ea283c','','',NULL), -('11976','tumbler_conditions_test','Misc','UNDEFINED','fd34a43b-9d63-4c6d-af8d-d2b21a7140fb','','',NULL), -('11977','Door Control','Door','UNDEFINED','e858fced-b414-4ad4-8b68-e4a14a486a14','','',NULL), -('11978','Copper','Cargo','Small','9e6a15af-b35f-4387-9598-f1a020455a03','','',NULL), -('11979','ThermalFoam','Cargo','Cargo','d27db453-268e-42a4-990c-79e7372f4045','','',NULL), -('11980','table_bar_booth_2_seat_1_a','Usable','UNDEFINED','ad45434a-66d4-4da5-9c58-2f79937cc4c3','','',NULL), -('11981','AAT-34 Turret','Turret','MannedTurret','82965cc0-24f5-40cb-af5d-5e64e3af956c','','',NULL), -('11982','RSI_Bengal_Thruster_Main_Large','MainThruster','JointThruster','8423b75f-7a02-4d89-a9d5-99d29af3ba82','','',NULL), -('11983','Seat','SeatAccess','UNDEFINED','d5bbb6d8-1d07-4e03-9b2d-18ca57ab3abc','','',NULL), -('11984','Katla Mask Crimson','Char_Clothing_Hat','UNDEFINED','e6c279ca-4f3d-4f3e-a85f-4b761c1fe084','','',NULL), -('11985','Morozov-SH Core Terrene','Armor','Torso','e17c5b05-9113-4607-8eac-de48e3f71e9a','','',NULL), -('11986','H_Dashboard_Projector_HUD_ANVL_Hornet_F7CS','Display','UNDEFINED','ed77fd51-df21-4ca6-9d0c-42a0e722f278','','',NULL), -('11987','MC-Gray Hat','Char_Clothing_Hat','UNDEFINED','72a6cf25-e9e4-48e8-b20a-0c57ad47b3e4','','',NULL), -('11988','Book','Misc','UNDEFINED','0254c39f-7d7e-419e-9966-b2730a9ced0c','','',NULL), -('11989','Fuse','Misc','Fuse','8cf8dd1b-756e-496c-a1ae-e88ebbf999f7','','',NULL), -('11990','Origin White Knight','Gadget','UNDEFINED','79924811-0c84-462f-aa8e-5f655c5a04ab','','',NULL), -('11991','INTK_DRAK_Caterpillar','FuelIntake','Fuel','91f20573-1011-43f6-aea8-db3a38f38253','','',NULL), -('11992','Carryable_1H_CY_weight_dumbbell_1_2kg_c','Misc','UNDEFINED','07471b88-2a37-4f0b-8188-6a2b4ea377a7','','',NULL), -('11993','Covalex_Datapad_Darnell_4x3_Screen','Display','UNDEFINED','aa194f3d-7fde-4c67-a02f-f0ed7aae6d24','','',NULL), -('11994','Dashboard','SeatDashboard','UNDEFINED','d07c82f5-68fa-447d-ab3e-ac8b76bd9aff','','',NULL), -('11995','Manned Turret','TurretBase','MannedTurret','2d365d5e-46a6-43e3-8204-24052d19f5c3','','',NULL), -('11996','Deep-Space Undersuit Windfall','Armor','Undersuit','ec241dff-95b6-4006-aa12-18ef3dee852c','','',NULL), -('11997','display_guns_04x01x01_3Guns_9Mods_s01_s02_s03','ShopDisplay','UNDEFINED','360d1120-da83-404a-86d7-21ebd960778f','','',NULL), -('11998','Aslarite (Raw)','Cargo','Cargo','43555b27-4345-40f1-b859-94c904e894f8','','',NULL), -('11999','Fortuna Racing Helmet','Armor','Helmet','6e7052d5-3cdc-4678-8d84-e604529b4708','','',NULL), -('12000','Revenant Gatling','Weapon','Gun','df89e9ca-8a11-477c-8abd-f4837a277dbe','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('12001','DockingTube_Fuel_Ports_ANVL_Terrapin','DockingCollar','UNDEFINED','6bab2eec-355c-487f-82a7-eb36e9f2516b','','',NULL), -('12002','Elespo','Cargo','Cargo','23abef12-d20e-41a5-a24e-eeba10df0c50','','',NULL), -('12003','Falston Jumpsuit \"TABA Edition\"','Char_Clothing_Torso_1','UNDEFINED','907758f6-a76c-40c1-8643-d62ac30fe30f','','',NULL), -('12004','Personal Storage','Cargo','UNDEFINED','32eff2aa-a7e9-4a19-bddd-9c29ca3ab012','','',NULL), -('12005','Seat','SeatAccess','UNDEFINED','aa2bebe0-23af-4245-8c46-a9a27d8d5703','','',NULL), -('12006','MASTER_drug_carryable_1h','Cargo','UNDEFINED','e7b52283-4d02-4352-b7f8-0d024f06cc50','','',NULL), -('12007','Corundum','Cargo','Cargo','2771c9f2-e6f3-480a-8428-2113070f089c','','',NULL), -('12008','Hammerhead Stormbringer Livery','Paints','UNDEFINED','16420086-531e-4d00-a37a-3999bf4173fe','','',NULL), -('12009','Lynx Arms Black','Armor','Arms','fd7ca539-4462-43b4-b3b4-8f6246dc0362','','',NULL), -('12010','ThermalCore','Cooler','UNDEFINED','fd9f41c7-f60b-4ac8-95be-cb501fc5dd5d','','',NULL), -('12011','Door Control','ControlPanel','DoorPart','dd2a5a64-6654-4fe3-9d5e-232cf1c77dc2','','',NULL), -('12012','Seat','Usable','UNDEFINED','e45cc408-002b-47dd-b376-58989395d719','','',NULL), -('12013','Door Control','ControlPanel','DoorPart','f7a858f1-fe88-4b13-bd79-1f8f8249d412','','',NULL), -('12014','Weapon Rack','Door','UNDEFINED','338b3a12-f59c-484b-993d-dbb1309d0582','','',NULL), -('12015','Torite','Cargo','Cargo','f95349b7-4fbc-4816-81f1-6abd5760199a','','',NULL), -('12016','ORC-mkX Arms (XenoThreat)','Armor','Arms','62e2fc15-8391-4607-bbd0-37b133e4f601','','',NULL), -('12017','Counter_1m_basic','Usable','UNDEFINED','d0605af0-7061-4bb2-9fd4-b82b04162b58','','',NULL), -('12018','Door','Door','UNDEFINED','4895fbff-8dde-46df-b653-b0fe1c53b394','','',NULL), -('12019','Six-Sided Rotating Die Red','Misc','Utility','ebb4909c-c7a2-46c1-9c51-abe5ffa00f74','','',NULL), -('12020','Door','Door','UNDEFINED','1b2298ba-29d2-489a-927b-a88a3d5cdd30','','',NULL), -('12021','Sabre_Firebird_WingCap_Right','Misc','UNDEFINED','4e5e191b-6535-4c8f-bbfd-aec0304f464b','','',NULL), -('12022','Meteor Shimmer Livery','Paints','UNDEFINED','76097045-6bdc-437f-a9e2-ffffa9f47890','','',NULL), -('12023','Turret','Turret','MissileTurret','11248eb8-d9f7-49e7-bd03-3c9b75b92948','','',NULL), -('12024','DRAK_Cutlass_CargoGrid_Rear','CargoGrid','UNDEFINED','49824f72-5e46-4683-a1c0-2f4c5114ce9f','','',NULL), -('12025','Vulture Heartthrob Livery','Paints','UNDEFINED','aca07eeb-b79e-4707-9215-c56a9a588021','','',NULL), -('12026','INTK_ANVL_Lightning_F8','FuelIntake','Fuel','acd6d10b-9bdc-402a-a25d-f0ba1019c8db','','',NULL), -('12027','Seat','SeatAccess','UNDEFINED','015a276c-c2e3-40ca-9092-15bcf6f25ee6','','',NULL), -('12028','Carryable_1H_CY_weight_dumbbell_1_16kg_c','Misc','UNDEFINED','778d8793-0fa1-4c76-beee-473b2fe63e8d','','',NULL), -('12029','Protean Boots','Char_Clothing_Feet','UNDEFINED','746bee07-54dd-4cb8-9c15-d09deb9e37e2','','',NULL), -('12030','SLAM','Cargo','Cargo','14bb31e5-a952-4346-a287-4c71bb76087f','','',NULL), -('12031','Seat','SeatAccess','UNDEFINED','3eafff78-008e-4856-8b78-7f7f414d8660','','',NULL), -('12032','Blood_Decal_HandPrint','Decal','DoorPart','c2d4e63e-d2fa-4145-b3c0-2c508d56f90b','','',NULL), -('12033','Ling Hat','Char_Clothing_Hat','UNDEFINED','8d00de6b-2a79-405b-8945-8fabe611390c','','',NULL), -('12034','StorageCage_Damage_ZeroG_CustomLoadout','Cargo','UNDEFINED','67d13b0a-0edc-4943-ba86-ad2a4acd8b7e','','',NULL), -('12035','Door Control','Door','UNDEFINED','908f57e5-2c66-4fa0-9d26-619bd2535811','','',NULL), -('12036','SHIELDS','ShieldController','UNDEFINED','429e0e9b-44c4-4c50-91e4-99ae6601a88d','','',NULL), -('12037','MISC_Razor_Thruster_Main','MainThruster','FixedThruster','14e79be3-e93b-4c3a-9fba-2db8f9a35b40','','',NULL), -('12038','Neon','Cargo','Cargo','125390d6-989d-4454-a84c-49a668c4c77c','','',NULL), -('12039','Personal Storage','Cargo','UNDEFINED','b68f5190-0f78-455e-bd5b-006f9d12eb2f','','',NULL), -('12040','Silco Shirt Silvertusk','Char_Clothing_Torso_0','UNDEFINED','c8ebba20-4f87-43c1-b5ed-a11ea39649db','','',NULL), -('12041','Food_bowl_oatmeal_01_a','Food','Consumable','0fae9e0d-46f2-418c-934a-1e9fd31ed22b','','',NULL), -('12042','Docking Collar','DockingCollar','UNDEFINED','faf77766-5285-4458-ae88-fb302406c504','','',NULL), -('12043','Argos IX Torpedo','SpaceMine','UNDEFINED','53279429-8de5-472e-8dc0-e733452f2bdb','','',NULL), -('12044','Aves Core','Armor','Torso','8834d182-25d6-4804-b017-75cd1c87879a','','',NULL), -('12045','Seat','Usable','UNDEFINED','8cd34bd8-dc7e-40df-bca5-3b7b66a0d3c5','','',NULL), -('12046','Calico Core Desert','Armor','Torso','4efeb516-34fd-4df1-abda-f7af806ea9bf','','',NULL), -('12047','MISC_Freelancer_Base_SCItem_Dashboard_CoPilot','SeatDashboard','UNDEFINED','2cd8b466-d5c4-4e6c-a8a9-619b1ba24332','','',NULL), -('12048','Morozov-SH-S Helmet Crusader Edition','Armor','Helmet','2e97eb89-d976-48b5-acb2-455b69bba84b','','',NULL), -('12049','Book','Misc','UNDEFINED','5f9d3718-8168-4fa3-9781-85b4c8f6c7fd','','',NULL), -('12050','Ventra Gloves Violet','Char_Clothing_Hands','UNDEFINED','001a34eb-b3a0-4c39-807a-63e43dc467b0','','',NULL), -('12051','Door_NoRoomConnector_CSV_ComponentBay_Avionics','Door','UNDEFINED','59e45c00-cc3e-46e0-b092-97d7f36f5c86','','',NULL), -('12052','Highball Glass','Drink','UNDEFINED','5a83fd87-c7e4-4011-8b11-e45ecf86b227','','',NULL), -('12053','Door Control','ControlPanel','DoorPart','42ab4184-40bc-40eb-9f8e-93a97464ac54','','',NULL), -('12054','Red Heart Plushie','Misc','Personal','00e0682f-61b2-4aa4-ab79-b17c8e8dd9b0','','',NULL), -('12055','TrueDef-Pro Arms Yellow/Grey','Armor','Arms','28516ac1-7c77-4b3c-ba0d-8f60c23e5923','','',NULL), -('12056','mobyGlass Personal Computers','Cargo','Cargo','cad6ceef-b53c-48ed-847c-6ea3155e8b3d','','',NULL), -('12057','Pressurized Ice','Cargo','Cargo','12e50dde-2747-4d2e-b92b-e05f188ecf6d','','',NULL), -('12058','Seat','Usable','UNDEFINED','1f19dc0b-43fa-4400-9332-a896f17f63f4','','',NULL), -('12059','Door','Door','UNDEFINED','cc66995f-27b1-4839-9caf-8fb671e66c86','','',NULL), -('12060','INTK_ORIG_M50','FuelIntake','Fuel','4c506a3d-a7ac-4357-a704-4bdb73f61286','','',NULL), -('12061','Chokehold Gloves','Char_Clothing_Hands','UNDEFINED','e3b4803a-83cf-44f5-9db9-6af06a1cfa42','','',NULL), -('12062','ANVL_Hornet_F7CS_Mk2_Thruster_Mav_1','ManneuverThruster','JointThruster','9e8fefa3-4a7a-421d-bc28-2b72d14d98cd','','',NULL), -('12063','MOTH Tide Pool Livery','Paints','UNDEFINED','d6646b29-8d14-4e5d-ab42-75123ec2a398','','',NULL), -('12064','RSI_Bengal_SCItem_Seat_Pilot','Seat','UNDEFINED','24f2ab57-d32e-43af-b030-d98af10eff8b','','',NULL), -('12065','Door Control','ControlPanel','DoorPart','e1e0c595-43e7-4045-aa53-9fb0baa52bca','','',NULL), -('12066','Personal Storage','Cargo','UNDEFINED','ae10590e-7333-42ec-b8fa-9d4d761fbde9','','',NULL), -('12067','Landlite Boots Red','Char_Clothing_Feet','UNDEFINED','04566a34-467a-4622-8a23-71f0f38cdfc7','','',NULL), -('12068','PH - hdh_pants_02_01_03','Char_Clothing_Legs','UNDEFINED','bafd7a86-b7cf-4639-8614-58db692225f1','','',NULL), -('12069','Flight Blade','FlightController','UNDEFINED','12dacdc5-2b59-4c8c-a4a1-500b3b037168','','',NULL), -('12070','H_Dashboard_Projector_HUD_RSI_Scorpius','Display','UNDEFINED','e3eb68d4-3d3c-4233-9b4b-5d829140ebc6','','',NULL), -('12071','Ketchum Beanie Dark Red','Char_Clothing_Hat','UNDEFINED','c546f921-2a4c-4fd7-8e47-3f119a7f9bb8','','',NULL), -('12072','Ringaling','Food','Consumable','bca16fd2-37fd-42ba-8aa9-bf7b78a3bd0f','','',NULL), -('12073','Internal Tank','FuelTank','Fuel','02d1a6cd-284b-441d-b2b4-679659a803a1','','',NULL), -('12074','ColonialismAirlockExteriorStatusSign','StatusScreen','AirlockPart','303d3585-a49e-4c92-baea-d328a9f361da','','',NULL), -('12075','Faction Jacket White','Char_Clothing_Torso_1','UNDEFINED','d000b52d-ceb8-4e5d-acea-e610b7f36359','','',NULL), -('12076','ARMR_CNOU_Nomad','Armor','Medium','b170495e-4a4f-420e-b260-a59e65474757','','',NULL), -('12077','Bolon','QuantumDrive','UNDEFINED','74cc0d0b-1bf5-436c-a38c-1baf93962b89','','',NULL), -('12078','SHIELDS','ShieldController','UNDEFINED','90963c20-b759-4b6d-8c6f-c76ae16f92bd','','',NULL), -('12079','Axiom L-22 Repeater','Weapon','Gun','890880a7-afa7-41f9-bc1c-925d7958a436','','',NULL), -('12080','CR-60','ExternalFuelTank','UNDEFINED','6b44bba8-ab96-471d-93de-d57a4907487b','','',NULL), -('12081','BEHR_BallisticGatling_Barrel_S6','WeaponAttachment','Barrel','8e760f65-9e60-47b5-b760-2d006083d4c0','','',NULL), -('12082','ARGO_MOLE_SCItem_Dashboard','SeatDashboard','UNDEFINED','998fe3fd-296c-4fc1-acd0-d7c11f7b921c','','',NULL), -('12083','Vehicle_Screen_MFD_Holographic_Prowler_BL','Display','UNDEFINED','69edc5c8-36da-445a-87d0-f93e123e18ed','','',NULL), -('12084','harvestable_base_PrisonStash_02','Misc','UNDEFINED','bf4da654-923d-4d18-9ecb-179dacdbb340','','',NULL), -('12085','Titanium','Cargo','Cargo','e3046c8f-5c62-4883-86a7-fc9c5e535c58','','',NULL), -('12086','Door','Door','UNDEFINED','5b55f38a-aa05-4339-b838-1396c871600b','','',NULL), -('12087','Lynx Legs Tan','Armor','Legs','3e965216-cfab-4e04-867e-a911766bbc76','','',NULL), -('12088','Kino Shoes Dark Green','Char_Clothing_Feet','UNDEFINED','f372934a-f016-4803-8b72-b0db18c11379','','',NULL), -('12089','Seat','Usable','UNDEFINED','ab47230f-32cd-414d-be96-e1902660b261','','',NULL), -('12090','Baru Gloves Moss (Left Only)','Char_Clothing_Hands','UNDEFINED','1394ce60-dead-4fd1-9945-ebd7c621e47d','','',NULL), -('12091','display_expo_hall_weapon_stand_1_a','ShopDisplay','UNDEFINED','04840500-fb24-4e26-a445-d576211c4ea6','','',NULL), -('12092','Davin Work Gloves Aqua','Char_Clothing_Hands','UNDEFINED','1da13ad2-4f9c-464a-b2ea-54734316ebbe','','',NULL), -('12093','Scaleweave Undersuit Barrens','Armor','Undersuit','3ad9724e-67f2-4487-b293-8620a3ff6f5c','','',NULL), -('12094','ADP Legs Red','Armor','Legs','d8177e36-e202-470f-8465-8f57dbebd1d7','','',NULL), -('12095','Cordimon Jacket Red','Char_Clothing_Torso_1','UNDEFINED','00b6bb1c-664e-402f-a1c3-2f41b8e20a07','','',NULL), -('12096','Utensil_Plate_Boumbo','Misc','UNDEFINED','4fbf50e9-404f-4aa6-b1b4-dd1773981087','','',NULL), -('12097','Pico the Penguin Plushie','Misc','Personal','8d1a53c1-72d4-49d5-8485-11e2fbd56f2e','','',NULL), -('12098','display_components_pallet_250x125x025_b_power','ShopDisplay','UNDEFINED','8736381c-4dba-4e8e-b8f9-714aef3e59e1','','',NULL), -('12099','Paint_300_Dash_GlossRed','Misc','UNDEFINED','454c8027-3044-4f6f-8471-4f5c63974e35','','',NULL), -('12100','Food_bowl_puree_01_a','Food','Consumable','e4bcfd81-1359-4fb4-87f3-c84435015054','','',NULL), -('12101','Door Control','ControlPanel','DoorPart','cfb34adb-29ff-4e64-aa09-254264b40cda','','',NULL), -('12102','Seat','SeatAccess','UNDEFINED','eef00342-19c4-49d1-8cfe-01d9e008455f','','',NULL), -('12103','RSI_Aurora_GS_ES_Thruster_Main','MainThruster','FixedThruster','ae7b25b1-a45e-4fc8-a92c-76980355bf82','','',NULL), -('12104','Manned Turret','TurretBase','MannedTurret','25520edd-3f5c-40ce-84d5-2dca36bdb221','','',NULL), -('12105','Missile Rack','MissileLauncher','MissileRack','bfe3d552-c5a8-47f8-b877-d0d6aaf38bea','','',NULL), -('12106','MISC_Razor_LX_Thruster_Main','MainThruster','FixedThruster','6977970e-1f42-42b0-bdd2-a2b3dba1f109','','',NULL), -('12107','ARGO_RAFT_Thruster_Main','MainThruster','FixedThruster','c41d6f42-6a98-43a1-8748-80129f5a33ad','','',NULL), -('12108','Railing_Straight_3m_LT_Delta_b','Usable','UNDEFINED','752fa905-64ba-437a-9340-43ee76d2f2e5','','',NULL), -('12109','MacFlex \"Rucksack\" Backpack','Armor','Backpack','84982692-cf64-4157-a03d-678a2e297ddc','','',NULL), -('12110','Savrilium','Cargo','Cargo','61b9eda7-c250-4fb1-a714-248176ae5fd9','','',NULL), -('12111','XIAN_Scout_CML_Flare','WeaponDefensive','CountermeasureLauncher','11800c0b-fe74-4f88-bbb7-9241e8f9f1b7','','',NULL), -('12112','Palatino Core Necropolis','Armor','Torso','1bc01620-1781-4a5d-ad27-6251653c071d','','',NULL), -('12113','RS1 Odysey Spacesuits','Cargo','Cargo','efd19e59-b737-421a-894b-57ef24b7c3a9','','',NULL), -('12114','100 Series IceBreak Livery','Paints','UNDEFINED','4720718b-c902-4cbd-81cb-7e29aa686005','','',NULL), -('12115','Carryable_TBO_FL_8SCU_Commodity_ProcessedGoods_AceInterceptorHelmet','Cargo','Cargo','bd6de2d9-b3d3-4429-b342-5d5aa1f6ecb2','','',NULL), -('12116','SLAM','FPS_Consumable','Medical','ad8918b3-3af9-4c8d-9c1c-a00f13f7feb4','','',NULL), -('12117','DockingTube_Fuel_Ports_RSI_Constellation_Phoenix','DockingCollar','UNDEFINED','8aeee974-9e4a-44d4-978f-f22fc5d52114','','',NULL), -('12118','Performance T-Shirt','Char_Clothing_Torso_0','UNDEFINED','4bd0e1d1-57dc-4672-9ef3-838cef1ec26f','','',NULL), -('12119','Construction Rubble','Cargo','Cargo','c123dcbd-eb5c-489c-b184-634286679b4f','','',NULL), -('12120','Seat','SeatAccess','UNDEFINED','4ff778eb-a03c-449f-a7b1-6b111f7d35c4','','',NULL), -('12121','Carryable_2H_FL_box_ammo_1_a','Misc','UNDEFINED','40064c98-517d-47bf-9c30-64a914be1fde','','',NULL), -('12122','Chlorine','Cargo','Cargo','e502ee93-c4f0-4c1c-9d84-d2dcb717fe3a','','',NULL), -('12123','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','abb92386-cc6c-4e6f-84e3-4e5c069d0112','','',NULL), -('12124','Balor HCH Helmet Platinum','Armor','Helmet','2db7871c-23bd-495b-afd6-8dc75fafff07','','',NULL), -('12125','Uncut SLAM','Cargo','Cargo','daa88ddd-f014-4d5e-806e-21e23022dfd4','','',NULL), -('12126','Morozov-SH-I Core Pyrotechnic Horizon','Armor','Torso','2d102573-0864-407b-9694-e5364e90d4c4','','',NULL), -('12127','Seat','Usable','UNDEFINED','58ad2849-10c2-4cc6-be1c-a87c7ec65231','','',NULL), -('12128','Zenith Laser Sniper Rifle','Weapon','Medium','0c37582b-ab78-440d-911e-c39322bccf1f','','',NULL), -('12129','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','551a9752-4ea6-4e37-ba90-0be9550a3ff2','','',NULL), -('12130','CRUS_Spirit_C1_Exterior_Nose','Misc','UNDEFINED','00652c7e-67d2-45a9-b308-ae9307fdb329','','',NULL), -('12131','BEHR_LaserCannon_Barrel_S3','WeaponAttachment','Barrel','f03eec37-5cc3-4ae5-8bca-658942039d97','','',NULL), -('12132','Palatino Arms Necropolis','Armor','Arms','1b0b51c5-b6e4-4bd7-b4fe-d763909e429a','','',NULL), -('12133','Door Control','Door','UNDEFINED','a80fc81c-d242-497a-b059-7c6aa244ff82','','',NULL), -('12134','TRGT. STATUS','Seat','UNDEFINED','ff6f1454-b66b-487a-b73f-65baba09d11c','','',NULL), -('12135','Carryable_Mop','Misc','UNDEFINED','be3a7bac-af49-4c77-bf82-cad4ace94c90','','',NULL), -('12136','Door Control','ControlPanel','DoorPart','7e4479ba-eb04-4456-9161-8c24eab0e544','','',NULL), -('12137','Door Control','Door','UNDEFINED','48993eb1-4613-4f3f-b3c5-2560de32cd16','','',NULL), -('12138','MISC_Fury_MX_Thruster_FixedMav_Bottom','ManneuverThruster','FixedThruster','e9b84593-6086-443a-9e78-4c223b061a50','','',NULL), -('12139','DRAK_Caterpillar_Mattress_B','Seat','UNDEFINED','dd7265c2-140d-4062-a08c-54c05d7fbdab','','',NULL), -('12140','TMBL_Storm_Windshield','Misc','UNDEFINED','44767fcc-8afb-4eb2-9e8d-9e8226b9478e','','',NULL), -('12141','Odyssey II Helmet Alpha','Armor','Helmet','75bda9ac-9f0d-4e8d-a52b-4e5e639e815e','','',NULL), -('12142','ORIG_300i_Yoke','Misc','UNDEFINED','70df37e6-797c-459f-a844-ba7e99a63b7e','','',NULL), -('12143','nodraw_undersuit_helmet_01_01_01','Armor','Helmet','d62ea5ef-cb7c-4b29-a047-ea029474ddd1','','',NULL), -('12144','Door Control','ControlPanel','DoorPart','e91483d8-257d-4bf5-bf76-7c81fa64d430','','',NULL), -('12145','Quartz','Cargo','Cargo','3a160f92-022f-4514-b986-5b7e50306b9c','','',NULL), -('12146','ARMR_RSI_Apollo_Medivac','Armor','Medium','42014f8c-2b70-e411-4f1a-1c15cd36ce9f','','',NULL), -('12147','Wolf Nighttide Camo Livery','Paints','UNDEFINED','367cd862-1a03-426b-b297-d6d02615ca24','','',NULL), -('12148','Weapon_Rack_ANVL_Paladin_LargeWeapon','Door','UNDEFINED','06b3fab3-7434-44e9-bf34-8ef4bbcd9256','','',NULL), -('12149','ORC-mkX Legs Desert','Armor','Legs','21c17af8-5a87-4c56-ba1a-091926192b60','','',NULL), -('12150','NONE_LaserRepeater_Barrel_S1','WeaponAttachment','Barrel','b127e84c-5805-4404-a1c4-c975476964bd','','',NULL), -('12151','ReadyMeal (Chicken Patty and Noodles)','Food','Sachet','4ad1c5eb-53c7-4192-ad21-e3a394606b7d','','',NULL), -('12152','Door Control','ControlPanel','DoorPart','110c8c96-87a7-403e-92dd-6f3888c5cf55','','',NULL), -('12153','CF-117 Bulldog Repeater','Weapon','Gun','c9c2bb19-3298-448e-a117-043e082a1c74','','',NULL), -('12154','Ready-Up Helmet Dark Green','Char_Clothing_Hat','UNDEFINED','e8054da0-9609-4a6b-8541-af34aeff1cea','','',NULL), -('12155','ESPR_Prowler_Component_Housing_Small_Locked','Player','UNDEFINED','7a48e1e4-7396-469d-a464-5da3ae7d24f8','','',NULL), -('12156','SLAM','Cargo','Cargo','9ded6915-c77f-405c-b6db-bcc638275dee','','',NULL), -('12157','Hammerhead Fortuna Livery','Paints','UNDEFINED','53128752-7863-4a3c-858a-6ca6324b0544','','',NULL), -('12158','Door Control','Door','UNDEFINED','bbdd91af-df26-4d70-864e-6c2e8f175e6a','','',NULL), -('12159','Cutlass Black Plushie','Misc','Personal','d6028d77-ccdf-44c2-b2e8-1bbe640b4e6a','','',NULL), -('12160','srvl_combat_heavy_arms_03_01_01','Armor','Arms','428d72a7-1786-4e5f-86cb-6afd248f1352','','',NULL), -('12161','sc_nvy_bridgeofficer_captain_jacket_01_01_01','Char_Clothing_Torso_1','UNDEFINED','6fb71a1e-64f4-41ed-a3b2-bedf142a6f49','','',NULL), -('12162','DCP Armor Legs Hunter Camo','Armor','Legs','4ffb6e07-e7c6-4db5-8735-c35179a723d0','','',NULL), -('12163','AEGS_Door_Screen_Single_01','Decal','DoorPart','05895857-712a-43c7-b47d-3ef4016d576d','','',NULL), -('12164','ANVL_Terrapin_Thruster_Main','MainThruster','FixedThruster','8d59191e-cfbb-4d22-a206-ff0d93530cea','','',NULL), -('12165','Carryable_1H_CY_weight_dumbbell_1_10kg_b','Misc','UNDEFINED','908c42d1-1eb8-4fae-97a2-0d0291902c2f','','',NULL), -('12166','Lynx Core Sandstorm','Armor','Torso','aa446b0b-eb56-4413-b455-639617e7c330','','',NULL), -('12167','Spyglass','Radar','MidRangeRadar','458ad6a8-b422-412b-b2f4-10ee2a9f5f3b','','',NULL), -('12168','Door Control','Door','UNDEFINED','91cf6d51-e045-4a93-98b2-6719043b43c3','','',NULL), -('12169','Freelancer Storm Surge Livery','Paints','UNDEFINED','40790c91-63ff-4d99-8a1f-1873ca0d12c5','','',NULL), -('12170','Heart of the Woods','Cargo','Cargo','c1f47af6-f6bd-4640-8222-c63f0e67509b','','',NULL), -('12171','Bolide','PowerPlant','Power','22ca3ca2-1bdc-48a7-8689-a0f8259a5441','','',NULL), -('12172','MISC_Freelancer_Base_Toilet_Door','Door','UNDEFINED','1b62a304-a953-4a97-a0ba-489d9c6c72f4','','',NULL), -('12173','Suldrath','Shield','UNDEFINED','f8d44a06-9b5e-49c1-a578-8e45386c2539','','',NULL), -('12174','Libio Jacket Purple','Char_Clothing_Torso_1','UNDEFINED','9c5b4134-7205-4725-9d59-99b8a3db1f23','','',NULL), -('12175','Quartz','Cargo','Cargo','92e4fdd4-e6a4-4ad0-bbb9-8c912691112c','','',NULL), -('12176','MSD-221 Missile Rack','MissileLauncher','MissileRack','9f9eab9c-4038-492d-bdd0-053d60a50307','','',NULL), -('12177','Weapon_Rack_ANVL_Paladin_NormalWeapon','Door','UNDEFINED','5c7d2e12-d6d7-4db3-a865-3643cfd2da33','','',NULL), -('12178','ORIG_600_CargoGrid_Main_Small','CargoGrid','UNDEFINED','719ee5b2-29eb-401c-90d2-194a1c73cad1','','',NULL), -('12179','Freeze','Cargo','Cargo','7cb94d9d-e03c-4fc8-9245-92389b0b4ee5','','',NULL), -('12180','un_can_drink_2_d','Misc','UNDEFINED','3cbdd322-c643-4f5e-b6db-3bdfc98129e1','','',NULL), -('12181','Carryable_TBO_FL_1SCU_Commodity_Organic_Armillaria','Cargo','Cargo','53196136-1a49-40cd-b25e-96a4bd191c96','','',NULL), -('12182','AdrenaPen (Demexatrine)','FPS_Consumable','Medical','a6768bc4-5245-4df0-bd57-49fe5ec1994b','','',NULL), -('12183','Starlancer Hurston Livery','Paints','UNDEFINED','2ac4d3ad-c0a7-41a3-91a9-0b76077ef297','','',NULL), -('12184','Ardent Boots Purple','Char_Clothing_Feet','UNDEFINED','99549b34-5b60-4ae8-9623-96f66a6f8a24','','',NULL), -('12185','FBL-8a Arms (Modified)','Armor','Arms','82f49acc-8156-4e69-89aa-c84854ce2042','','',NULL), -('12186','Carryable_2H_CY_weight_barbell_bumperplate_1_15kg_b','Misc','UNDEFINED','610b1b6e-fc8e-49ac-aba1-252b44683ba0','','',NULL), -('12187','Morozov-SH Core Thule','Armor','Torso','348830d6-ba18-4efd-bb2d-73e126f66057','','',NULL), -('12188','Door Control','Door','UNDEFINED','c6bc3cfd-017b-48b6-8f3e-ba7284cadaac','','',NULL), -('12189','Chrome Dome Head Gear Minefield','Char_Clothing_Hat','UNDEFINED','f1407119-418f-44e3-8982-c49161126f40','','',NULL), -('12190','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','eb8f93b7-27a8-4326-a260-28b296b1e29e','','',NULL), -('12191','Gadget_Cabinet_kegr_fire_extinguisher_01_Nozzle_med_low','Usable','UNDEFINED','ab21866f-d55b-48ba-aafc-d695266b0872','','',NULL), -('12192','Walesko','FPS_Consumable','Hacking','f3f3f5b2-c8d2-43bd-ad68-6871ad3b2a6b','','',NULL), -('12193','MacFlex Core Green','Armor','Torso','07b00f98-f6f4-4a88-99b1-84d1b0240f09','','',NULL), -('12194','un_can_drink_2_c','Misc','UNDEFINED','20149390-35f7-481e-b6c6-86dfb37eeb0d','','',NULL), -('12195','Flight Blade','FlightController','UNDEFINED','d8f06766-b639-4e71-a539-406fdfe93961','','',NULL), -('12196','M9A Cannon','Weapon','Gun','a1ea51dd-1665-41cf-923a-d6a42a7130ce','','',NULL), -('12197','ORC-mkX Legs Autumn','Armor','Legs','1f9286a2-1181-4129-a2ac-450b63271082','','',NULL), -('12198','P6-LR Magazine (8 cap)','WeaponAttachment','Magazine','b038fea7-2e2f-4b47-b90d-4bb39bde3229','','',NULL), -('12199','Pyro RYT Multi-Tool','Weapon','Gadget','396ccb0d-c251-484d-998e-cc3616a37ee5','','',NULL), -('12200','Weapon_Rack_1_Volt_SMG_Uncommon_003','Usable','UNDEFINED','1a1865f7-8201-4cb7-a04a-2111cd0b06e5','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('12201','Odyssey II Helmet White','Armor','Helmet','0661d322-2761-4c0d-8aca-14490ec07975','','',NULL), -('12202','Door','Door','UNDEFINED','48ba32ab-a387-4467-8428-1dd39df0d492','','',NULL), -('12203','Zeta-Prolanide','Cargo','Cargo','e22b7b9d-36ef-49bf-bf4f-ca1933cc7c99','','',NULL), -('12204','ControlPanel_GenericSwitch','ControlPanel','DoorPart','1f910f79-cb2b-4a30-9d28-d4f45c419c9f','','',NULL), -('12205','Omnapoxy','Cargo','Cargo','20ac3e4b-16a8-4b27-a957-1e4650aecf77','','',NULL), -('12206','Door Control','Door','UNDEFINED','a4a8af64-7acf-4b15-b759-f955a30a7b87','','',NULL), -('12207','GATS_BallisticCannon_PowerArray_S3','WeaponAttachment','PowerArray','492010f1-32cb-4832-93b8-bbf1bd4849f4','','',NULL), -('12208','Overlord Arms Skimmer','Armor','Arms','78c74c51-eb2b-4280-a4d6-32ce1e35f573','','',NULL), -('12209','Helium','Cargo','Cargo','abca8125-a53e-4b0b-aaf2-098328720e61','','',NULL), -('12210','Seat','SeatAccess','UNDEFINED','1cb768a4-e7d0-413b-8aa1-e1eeeedc2936','','',NULL), -('12211','MSD-644 Missile Rack','MissileLauncher','MissileRack','c870f6a8-5db9-4999-909a-675aa511ba19','','',NULL), -('12212','ORC-mkV Arms Cry-Astro Edition','Armor','Arms','f9189dcf-9a10-46ea-ab92-8edec6336bc6','','',NULL), -('12213','MISC_Hull_C_FoldingStrut_1D_Outer','Cargo','UNDEFINED','5b8f1da6-946f-4cc8-b8aa-1989907f3f49','','',NULL), -('12214','Stalwart','Gadget','Gadget','14398612-495b-498b-90d1-e55a346be810','','',NULL), -('12215','Seat','Usable','UNDEFINED','20b73e18-edf8-4316-bc10-1be93a33c90b','','',NULL), -('12216','Seat','Usable','UNDEFINED','ee255016-989a-4b72-97a5-242e17544117','','',NULL), -('12217','bar_box_energy_calomeal_vanilla','ShopDisplay','Default','cbd72003-2e1b-4202-a358-52ea19bb83c9','','',NULL), -('12218','Markanda Undersuit Jasper (Refurbished)','Armor','Undersuit','c89da07f-a856-4113-8e5e-56db79306ad3','','',NULL), -('12219','MISC Reliant Ship Armor','Armor','Medium','4d6ecf54-e6aa-40c3-b26e-2fa460f0835a','','',NULL), -('12220','Surveyor-Lite','Radar','MidRangeRadar','87008b2d-438a-4091-8ae4-303be47190d8','','',NULL), -('12221','Avenger Skullcrusher Livery','Paints','UNDEFINED','16254b4c-b531-419e-93f3-e31a1ade4c8b','','',NULL), -('12222','TrueDef-Pro Core Black/Grey','Armor','Torso','56cd8ed6-8780-442a-a7a6-100c87dd0056','','',NULL), -('12223','GrimHex_Datapad_BennyBeyond_4x3_Screen','Display','UNDEFINED','8cbba12f-2614-46a5-844e-76b5be4b1cf1','','',NULL), -('12224','Paint_300_Dash_CarbonFiberYellow','Misc','UNDEFINED','a5dc4e65-25bd-4023-b02e-0491cf70928b','','',NULL), -('12225','Guardian Vector Livery','Paints','UNDEFINED','4f8c2158-24ab-4afe-9087-cae704370530','','',NULL), -('12226','TRGT. STATUS','Seat','UNDEFINED','2352a96d-30df-4918-9b73-27fbe4cbe978','','',NULL), -('12227','RSI_Zeus_Thruster_Main_Top_Left','MainThruster','UNDEFINED','618417c2-a40a-4c14-a960-5fd008a6d619','','',NULL), -('12228','Booth_Table','Usable','UNDEFINED','3d8f78d2-b13b-48a6-ac5c-c2f7a618cebd','','',NULL), -('12229','Pite','Char_Head_Piercings','UNDEFINED','73c62848-2585-4183-905a-64242cdf37d4','','',NULL), -('12230','VNCL_Scythe_Thruster_top_front','ManneuverThruster','FixedThruster','6e60a0d4-1838-4171-8934-e216a705a715','','',NULL), -('12231','Door Control','Door','UNDEFINED','ee70e8fa-1995-4e4c-a872-752f02730130','','',NULL), -('12232','Internal Tank','FuelTank','Fuel','45ff1a15-d526-6991-84ae-e74dd075509f','','',NULL), -('12233','AAT-34 Turret','Turret','MannedTurret','1fff897a-8515-49d0-821f-b8be5f410dc2','','',NULL), -('12234','Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','767efcd7-b179-4637-bf50-132c188841e5','','',NULL), -('12235','Pite','Char_Head_Piercings','UNDEFINED','336b6232-bd09-4c66-813f-4f07ce82a34e','','',NULL), -('12236','Toughlife Boots Aqua','Char_Clothing_Feet','UNDEFINED','9402e5e0-d045-4e31-b1a8-dcfab67bd7a5','','',NULL), -('12237','Keldur Hat and Oak Goggles','Char_Clothing_Hat','UNDEFINED','ceb11885-abb1-4d2a-83bb-760a3e42370c','','',NULL), -('12238','Seat','Usable','UNDEFINED','e86c9567-f304-4907-92a6-500ff8593839','','',NULL), -('12239','Manned Turret','TurretBase','MannedTurret','6d0aad2c-bdfe-47c5-afc5-db3c72c38c49','','',NULL), -('12240','box_plastic_4_005x005x005_a_commodity','Cargo','Cargo','b7f3b684-9304-4d83-babb-d9e85ab0bbf9','','',NULL), -('12241','CK13-GID Seed Blend','Cargo','Cargo','0f14aea2-e4bb-45cc-b616-5ce5994ace83','','',NULL), -('12242','IAE 2952 Hat Red','Char_Clothing_Hat','UNDEFINED','850439d1-2689-44d0-872f-86e06d437ff9','','',NULL), -('12243','Console','Usable','UNDEFINED','7656770d-bf2a-4231-97db-011582873176','','',NULL), -('12244','Mug','Drink','UNDEFINED','cb0d12d7-77c7-46a6-99e3-86f3dd31afe5','','',NULL), -('12245','Flight Blade','FlightController','UNDEFINED','d648e492-785a-4ed1-ab63-5bdf36c744c4','','',NULL), -('12246','ANVL_Pisces_Thruster_Mav_Joint_C8R','ManneuverThruster','JointThruster','6c1774dd-237d-43b7-88a6-183af317c6a3','','',NULL), -('12247','Mivaldi Pants Orange','Char_Clothing_Legs','UNDEFINED','0da5705b-b3c5-4041-b8f2-2533c58cf84f','','',NULL), -('12248','Internal Tank','FuelTank','Fuel','e9200dee-fb64-4d51-95b7-227ee4ba4c5b','','',NULL), -('12249','Paint_Idris_Military','Paints','UNDEFINED','176de3ed-8599-44a5-b846-fee7882cbf99','','',NULL), -('12250','stand_shop_large_b_QTDrive','ShopDisplay','UNDEFINED','709c6180-7675-4d1e-b63c-e714d12bb395','','',NULL), -('12251','MISC Ore Pod','Container','Cargo','ca23670c-f690-4027-af9a-a5d6dda74c79','','',NULL), -('12252','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','ac7791ff-1524-41fe-942f-96d2af52cc51','','',NULL), -('12253','Jaclium (Ore)','Cargo','Cargo','27b445e2-3f34-4796-8730-aadf6f019f6c','','',NULL), -('12254','Testudo Backpack Combustion','Armor','Backpack','d463ff3b-ada2-4fd3-8155-6e8c5ecc6bbc','','',NULL), -('12255','Drivetrain','WheeledController','UNDEFINED','f83db275-20b8-4b49-b6d4-272f68b66484','','',NULL), -('12256','Overlord Core Skimmer','Armor','Torso','8d73db5e-d483-414b-8964-92942f9bc946','','',NULL), -('12257','Construction Materials','Cargo','Cargo','18b8ec08-06d3-4e64-a11b-790f7945e2ba','','',NULL), -('12258','Bed_Bunk_Shutter_Bottom_AEGS','Door','UNDEFINED','012c96c2-ba4f-4784-9ca5-27fe08f4cd75','','',NULL), -('12259','CSP-68L Backpack','Armor','Backpack','d176699d-7032-4eeb-a351-3e27d567e4a7','','',NULL), -('12260','Parvat Jacket Mosaic Marble','Char_Clothing_Torso_1','UNDEFINED','de57616d-0fbd-47b2-a264-dcdfec6bb51a','','',NULL), -('12261','MISC_Fury_LX_Thruster_FixedMav_Right','ManneuverThruster','FixedThruster','c4d49fd5-596c-46a2-83f3-3a9eb4291019','','',NULL), -('12262','Internal Tank','QuantumFuelTank','QuantumFuel','a35ec17d-914e-4223-917f-0f42f7e482bf','','',NULL), -('12263','GRIN_ROC_Dashboard_Driver','SeatDashboard','UNDEFINED','a891b1e3-44d7-4c4d-b7ea-8e8c29743656','','',NULL), -('12264','Imperial Trio Kacho','Food','Box','cad183b5-e2ba-45d2-8ad7-d127b6c02e13','','',NULL), -('12265','Prota','Cargo','Cargo','739b9d47-b260-44d4-94fd-015e585f0e8e','','',NULL), -('12266','Seat','Usable','UNDEFINED','5547e66f-7ee8-49a5-b184-31714398ab89','','',NULL), -('12267','Year of the Rooster Envelope','Cargo','Cargo','eeb7f7a5-121e-4749-be63-24ea3d06daf9','','',NULL), -('12268','Azrael Helmet','Armor','Helmet','2cbf115c-6558-4048-be0d-5e5bc5f68bee','','',NULL), -('12269','Osoian Hides','Cargo','Cargo','dc775b58-1c1c-4b40-bd33-f6780ade305a','','',NULL), -('12270','Omnisky XVIII Cannon','Weapon','Gun','1901415b-cfbd-49fb-82f8-42eff2c11f01','','',NULL), -('12271','Seat','SeatAccess','UNDEFINED','f6030322-9620-4fbc-bfdc-bd2c7b336fec','','',NULL), -('12272','Ati Jacket Dark Red','Char_Clothing_Torso_1','UNDEFINED','af0a2fd5-cbf4-46bb-99a7-59b64b30c3c9','','',NULL), -('12273','Turret','TurretBase','MannedTurret','9c8965da-dfc3-4af0-98aa-eb429cfa87f1','','',NULL), -('12274','P6-LR \"Rime\" Sniper Rifle','Weapon','Medium','ee6a1e19-269b-42d6-9449-12e833316b2d','','',NULL), -('12275','Door Control','Door','UNDEFINED','3e0ba780-9faa-421a-87c5-9be1400b215f','','',NULL), -('12276','Warlord Throne','Usable','Cargo','5144e536-c942-406e-b328-423163650ce8','','',NULL), -('12277','f_human_mannequin_legacy_marine_light','ShopDisplay','UNDEFINED','955909ed-c4a5-4be9-a28c-0c9781c8446c','','',NULL), -('12278','Voidripper Sunbeam Helmet','Armor','Helmet','d7085b15-3e22-4815-b1d6-25ff520e8902','','',NULL), -('12279','Remote Turret','Turret','GunTurret','1418a786-f180-4c8a-9c5d-84c090c69b8e','','',NULL), -('12280','Cutter IceBreak Livery','Paints','UNDEFINED','23ab7122-cb35-4126-888f-f4a32ea744fc','','',NULL), -('12281','Seat','SeatAccess','UNDEFINED','eb69a39e-caf5-444e-a622-8e19e015570d','','',NULL), -('12282','Stirling Exploration Suit Olympian Edition','Armor','Undersuit','d9e66956-5621-4c5f-9528-885276e1d9f4','','',NULL), -('12283','Stirling Exploration Suit Transistor Edition','Armor','Undersuit','925506f1-1c34-498b-81c7-38d93fa939cc','','',NULL), -('12284','Mandible Helmet (Modified)','Armor','Helmet','cb5e7074-4397-4bd3-8803-02ef0265bd72','','',NULL), -('12285','bar_box_energy_calomeal_lunes','ShopDisplay','Default','5b1e9394-8f9d-44f8-ad5f-389defa559f1','','',NULL), -('12286','Door_ChipReader_Yormandi_Access','Door','UNDEFINED','48a356b5-573a-479c-ab50-fbb2e34c18e1','','',NULL), -('12287','BEHR_LaserCannon_FiringMechanism_S5','WeaponAttachment','FiringMechanism','8a53e3a5-6bf1-4bff-938d-6814aa6da332','','',NULL), -('12288','video_wall_display_1_015x005x005_a','Display','UNDEFINED','4b0f230b-ddaf-4b8c-92cd-921dd940671b','','',NULL), -('12289','H_Dashboard_Projector_HUD_RSI_Constellation','Display','UNDEFINED','2d311626-b124-4313-b2e1-8491b5924a34','','',NULL), -('12290','Torite (Ore)','Cargo','Cargo','b1ec3111-f51a-4b70-a70b-190d1dba89a8','','',NULL), -('12291','Door_LoadoutScanner_StormBreaker_DataFacility1','Door','UNDEFINED','c7e2d3a2-50ef-4556-bf17-098cfd287189','','',NULL), -('12292','Strata Core Amber','Armor','Torso','6227ba71-1b64-4cdc-997a-fca6ac7d1cbe','','',NULL), -('12293','Sunset Berries','Misc','Harvestable','7a751e90-5093-47de-be6b-4b4016d85226','','',NULL), -('12294','Apollo Shockwave Livery','Paints','UNDEFINED','4cd28a2d-1185-4422-90ba-f3aad5e70533','','',NULL), -('12295','Borase (Ore)','Cargo','Cargo','81382380-d17d-4d56-8e4a-c4fd91134b1e','','',NULL), -('12296','Aurora Mk I SXSW15 Commemorative Livery','Paints','UNDEFINED','836dc7ef-66a7-456e-a0ba-2c62c1a41821','','',NULL), -('12297','AEGS_Avenger_PrisonPod_3','Usable','UNDEFINED','c3727fe9-1457-44f0-971e-87dcc00e2863','','',NULL), -('12298','Cordimon Jacket \"Voyager\"','Char_Clothing_Torso_1','UNDEFINED','a8d54600-ab59-48a1-bfc7-745e721e7f2c','','',NULL), -('12299','Orison T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','b1b4921e-87bb-4716-afef-d60c9cbbfce4','','',NULL), -('12300','WowBlast Desperado Toy Pistol Orange','Weapon','Small','75be95dc-3679-458a-b41f-728b8422fdc4','','',NULL), -('12301','TMBL_Nova_Component_Cooler','Player','UNDEFINED','c12b0bf6-1edc-4ff2-8d4c-09098edc2893','','',NULL), -('12302','MISC_Prospector_Thruster_Main','MainThruster','FixedThruster','b41884ec-1934-4a87-9f9b-8bb2c03d60a0','','',NULL), -('12303','Novikov \"Ascension\" Helmet','Armor','Helmet','cdd246df-3680-438a-af7b-6133fba4ee37','','',NULL), -('12304','Remote Turret','Turret','GunTurret','a7174c39-5d6e-4176-80f2-719e14dda858','','',NULL), -('12305','fruit_tray_1_b','Misc','UNDEFINED','48581926-914c-4dab-abe8-1d94cff0838b','','',NULL), -('12306','Internal Tank','QuantumFuelTank','QuantumFuel','69bd0212-7362-49a4-b476-54af2be9e8b7','','',NULL), -('12307','PAB-1 Core Aqua','Armor','Torso','88894db8-945b-4027-a82c-66ab2beac4ac','','',NULL), -('12308','AEGS_Idris_MPUV_DockingTube','DockingCollar','UNDEFINED','75e98cf4-2057-4a36-bd8a-fcd22588db96','','',NULL), -('12309','Medical Supplies','Misc','UNDEFINED','d2678727-91e0-470f-b640-a12b4ad909c1','','',NULL), -('12310','DRAK_Caterpillar_SCItem_Seat_Engineering','Seat','UNDEFINED','4be1d91f-7766-416e-b214-fa0e7b3d88b1','','',NULL), -('12311','Quantainium (Raw)','Cargo','Cargo','f73f5312-7d24-402b-bb56-51bf4778525a','L','',NULL), -('12312','Tractor Beam','UtilityTurret','UNDEFINED','6ab1e8c7-a2ae-41f9-b046-578841110b59','','',NULL), -('12313','Zeus XenoThreat Purge Livery','Paints','UNDEFINED','67b55d61-4b48-441f-9c17-4f5429466e09','','',NULL), -('12314','IAE 2955 Hat Gray','Char_Clothing_Hat','UNDEFINED','33703021-ec76-4a91-bb45-c7c4f8da0998','','',NULL), -('12315','AEGS_Vanguard_Sentinel_Thruster_Main_02','MainThruster','FixedThruster','f1c75690-7674-4287-82e6-5643e8538689','','',NULL), -('12316','Mountaintop Jacket Neutral','Char_Clothing_Torso_1','UNDEFINED','7b5b3053-c65b-4e2f-82ca-94a1832b8547','','',NULL), -('12317','Venture Arms Aqua','Armor','Arms','8faa3232-2e11-4742-868d-1b1fbf3deb79','','',NULL), -('12318','Ponos Boots Desert','Char_Clothing_Feet','UNDEFINED','98114206-c54f-4157-90c9-7e1781fdc10d','','',NULL), -('12319','ANVL_Arrow_Dashboard_Pilot','SeatDashboard','UNDEFINED','df365fd8-29df-4471-8dab-020cc544d3f8','','',NULL), -('12320','Ventris Jumpsuit Crusader Edition','Char_Clothing_Torso_1','UNDEFINED','9db6446a-e4ad-40f6-8d75-c7da6678f668','','',NULL), -('12321','Argus Helmet Black/Silver','Armor','Helmet','5aa32656-a7a6-4464-8036-7067deb87466','','',NULL), -('12322','Tail Cap','TurretBase','MannedTurret','28440bb3-e39e-4d28-a0dd-94ac1331447b','','',NULL), -('12323','Piercings_pite_01','Char_Head_Piercings','UNDEFINED','a367c26d-67ea-432f-8f40-8fa189969b6d','','',NULL), -('12324','HexaPolyMesh Coating','Cargo','Cargo','c9e26835-15e4-461f-a824-f376190e31eb','','',NULL), -('12325','Tona Shoes Dark Green','Char_Clothing_Feet','UNDEFINED','eb1a00fd-7204-4da9-8a63-6104ad438532','','',NULL), -('12326','Defiance Core Desert','Armor','Torso','dc893f37-783a-4c3f-8416-c748043fc5cd','','',NULL), -('12327','RSI_Polaris_SeatAccess_TurretSeat_Left','SeatAccess','UNDEFINED','4dcf6db7-7bad-4a94-be48-677eec50b687','','',NULL), -('12328','Perseus Alliance Aid Camo Livery','Paints','UNDEFINED','49ecc52e-d1b3-4cb6-8e81-a7c319b90af5','','',NULL), -('12329','Cardona Jacket Iron','Char_Clothing_Torso_1','UNDEFINED','c78616f0-6bd7-48fc-ad17-dee9841635e2','','',NULL), -('12330','Morozov-CH Backpack Snowdrift','Armor','Backpack','9a5d5351-6336-4629-b068-850555c6d286','','',NULL), -('12331','Falston Jumpsuit \"ASD Technician\"','Char_Clothing_Torso_1','UNDEFINED','2549e4d5-f716-4bfa-80fa-dad0c84c366e','','',NULL), -('12332','Silnex','Cargo','Cargo','20e2f453-7d34-4918-b65c-287dc9a91692','','',NULL), -('12333','Avenger Splinter Livery','Paints','UNDEFINED','23a086bb-cb67-4fe4-914d-ac1a4e1e8cc7','','',NULL), -('12334','Internal Tank','QuantumFuelTank','QuantumFuel','60b5d2ed-c20f-48c5-a5ac-a6af82baf3b6','','',NULL), -('12335','Badami Helmet Graphite','Armor','Helmet','6cf5606f-6a40-4a9a-b9bc-8fc60bac0589','','',NULL), -('12336','Carryable_1H_CY_drug_painkillers_2_b','Misc','UNDEFINED','e0990bea-53e8-4bfe-80bf-25f99ede9e4c','','',NULL), -('12337','RSI_Bengal_Thruster_Main','MainThruster','JointThruster','a750d049-082e-4ad7-b6df-cd2ad21a6d8f','','',NULL), -('12338','game_checkers_1_a','Misc','UNDEFINED','90f03da4-11ce-4425-9ed7-de18d1a2cf24','','',NULL), -('12339','Seat','SeatAccess','UNDEFINED','51430e72-539c-4fd4-9fa3-436765334974','','',NULL), -('12340','Ravager-212 \"Red Alert\" Twin Shotgun','Weapon','Medium','ab479579-efda-45e3-b2f5-a08650708cf7','','',NULL), -('12341','Food_fruit_alien_01_a','Food','Plant','48add695-4de8-426c-978f-2c4fa04e5b9c','','',NULL), -('12342','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','378e4771-e01e-4b85-9a43-9b7b487252e7','','',NULL), -('12343','Citadel-SE Core Maroon','Armor','Torso','1783a4d9-666f-4b37-a329-b6cba798a703','','',NULL), -('12344','Seat','Usable','UNDEFINED','1a003805-bf1f-4e73-8519-058d987e0a00','','',NULL), -('12345','INTK_ORIG_315p','FuelIntake','Fuel','62749a19-3311-4e05-9a12-c2a6cadfe7c6','','',NULL), -('12346','RSI_Aurora_Mk2_Thruster_Retro_Left','ManneuverThruster','Retro','c29550de-3299-4437-892c-0569d8c93350','','',NULL), -('12347','99-GR/BL Pants','Char_Clothing_Legs','UNDEFINED','a1d627a1-0f84-4fe7-a04c-365080f7dc76','','',NULL), -('12348','DynaFlex','Cargo','Cargo','41f5018b-8cde-48bb-9c8b-3fe6888158a6','','',NULL), -('12349','AAT-34 Turret','Turret','MannedTurret','e2ff5d64-0d85-4008-812e-9663103a8157','','',NULL), -('12350','MISC_Freelancer_CargoGrid_Rear_DUR','CargoGrid','UNDEFINED','dd224f26-b227-42a8-b435-f0cadc0886ae','','',NULL), -('12351','Railing_Straight_4m_Lowtech_Open_Ext','Usable','UNDEFINED','805f40db-5ac2-492d-a642-7baeab78ff45','','',NULL), -('12352','Seat','Usable','UNDEFINED','cc8b6459-74bf-4802-bbc1-f3df9640355a','','',NULL), -('12353','ORC-mkV Legs Crusader Edition','Armor','Legs','4cf3f9b9-4de9-41e2-bf33-3db65123cb7f','','',NULL), -('12354','FR-66','Shield','UNDEFINED','0baaf20a-460e-4668-84f2-d09f9d31b492','','',NULL), -('12355','Door Control','Usable','UNDEFINED','c6caadd6-0638-4731-852d-cc807214eb9f','','',NULL), -('12356','ESPR_Prowler_Thruster_Mav_02','ManneuverThruster','UNDEFINED','ce7e851e-5436-4488-90d2-cace25c0eb53','','',NULL), -('12357','MacFlex Arms Dark Red','Armor','Arms','2d765889-7b81-462f-90b8-85dd627795a1','','',NULL), -('12358','M5A Cannon Defense Division','Weapon','Gun','c3cb8de9-dbd1-43c5-bc65-4dadc5f3ecee','','',NULL), -('12359','Manned Turret','TurretBase','MannedTurret','9c20804f-099a-4443-af23-ee1b1f7f524f','','',NULL), -('12360','Syulen Luminary Livery','Paints','UNDEFINED','df034c8f-f65f-48b6-9870-1fe4b4f9f12a','','',NULL), -('12361','Neon','Cargo','Cargo','6bce5cb4-16b6-43ed-9d95-cb523f4c20f6','','',NULL), -('12362','Cassidy Shirt Daylight','Char_Clothing_Torso_0','UNDEFINED','a6adc5eb-0e87-4b35-a917-cc8c75f9e7eb','','',NULL), -('12363','SureGrip S1 Tractor Beam','TractorBeam','UNDEFINED','34f8a503-41bc-4245-baea-e824c8a39411','','',NULL), -('12364','Seat','SeatAccess','UNDEFINED','dff94803-b9c2-4510-bae7-ae609cbcdd68','','',NULL), -('12365','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','738a5795-b87b-41c8-9d6e-d8d67a2afc7d','','',NULL), -('12366','PC2 Dual S3 Mount','Turret','NoseMounted','9352b228-86a5-43c7-9b8d-a04cd7f0470b','','',NULL), -('12367','Tripledown Pistol ','Weapon','Small','9f047e7d-1324-473c-b944-03e87976f25a','','',NULL), -('12368','Threshold Skullsnap Pants','Char_Clothing_Legs','UNDEFINED','8a656319-a8f6-4b38-8624-d02752aa66f4','','',NULL), -('12369','Door Control','ControlPanel','DoorPart','d09ae2d4-75e8-4447-9a0a-148eb1c90306','','',NULL), -('12370','m_human_mannequin_slaver_undersuit_01','ShopDisplay','UNDEFINED','3ca8498c-0079-4833-83a9-a0afc3767c3d','','',NULL), -('12371','Giotto Jacket','Char_Clothing_Torso_1','UNDEFINED','d5cf1bd9-d347-4954-95f1-290151197672','','',NULL), -('12372','Cheddar Ham Burrito','Food','Junk','2034cae6-00a2-48c8-8c4a-b7cbb1ecd1e1','','',NULL), -('12373','RSI_Perseus_Seat_Access_CoPilot','SeatAccess','UNDEFINED','1665f39b-f9e7-4a9b-979b-ed034abe4724','','',NULL), -('12374','mobyGlass Personal Computers','Cargo','Cargo','c7098c35-d01c-411a-a278-f8fc7dd31110','','',NULL), -('12375','Carryable_1H_CY_drug_inhaler_1_a_box_PlayerCannotUse','Misc','UNDEFINED','e9cd022f-47d4-47c1-9f54-e8319a1b7561','','',NULL), -('12376','TrueDef-Pro Legs White/Silver/Grey','Armor','Legs','1a0eb92b-dea2-4c07-b76e-76f772fc2f36','','',NULL), -('12377','DRAK_Cutlass_Blue_Thruster_Maneuver_Vertical_Positive','ManneuverThruster','JointThruster','4efa736b-9f2f-458d-acfa-d9def3daf36c','','',NULL), -('12378','Seat','SeatAccess','UNDEFINED','f3d16bad-cda3-4ee4-a1db-f47a32c1550b','','',NULL), -('12379','Fresh Food','Cargo','Cargo','d5f599b5-dfca-4121-a1c9-476948b8310b','','',NULL), -('12380','SureGrip TH2 Tractor Beam','Weapon','Gun','fc1bbd77-fdf8-4c13-bd37-8c28061cbe6b','','',NULL), -('12381','Hair Care Product','Misc','UNDEFINED','00ba6f48-5dab-4408-bb75-69c612891eca','','',NULL), -('12382','CRUS_Star_Runner_Thruster_Main_Extra','MainThruster','UNDEFINED','540734ce-4165-4335-b6c9-cf85b8077755','','',NULL), -('12383','Weapon_Rack_1_VOLT_Sniper_Uncommon_002','Usable','UNDEFINED','c7e451f1-cc41-4f7d-99ff-9df9bdbc0c17','','',NULL), -('12384','Kinolo Shoes','Char_Clothing_Feet','UNDEFINED','c2665234-c23e-4c30-976c-af29db9a4dbd','','',NULL), -('12385','PAB-1 Arms Crusader Edition','Armor','Arms','3fed2653-885b-4c77-ac54-84544e05de55','','',NULL), -('12386','Door Control','ControlPanel','DoorPart','1c738471-2351-4029-bd41-e9ccbc201737','','',NULL), -('12387','Access','SeatAccess','UNDEFINED','61b576a6-18c6-475f-8d1d-2703d91b390c','','',NULL), -('12388','TRGT. STATUS','Seat','UNDEFINED','e2e7d02a-9148-4004-a5b1-91eacc050d6e','','',NULL), -('12389','Dash Apron Ellroy\'s','Char_Clothing_Torso_1','UNDEFINED','27f97ec5-b7d8-4360-997b-dcae71e31042','','',NULL), -('12390','Uncut SLAM','Cargo','Cargo','5125b658-62ec-422b-a161-fbf544b9fbdd','','',NULL), -('12391','Flight Blade','FlightController','UNDEFINED','2364ee89-d2d3-4e6b-8b93-5b21129da9ea','','',NULL), -('12392','DRAK_Cutter_Winglets_Addon_Scout_Right','Misc','UNDEFINED','a7cfad43-3f7e-4f79-a429-73301e44b0c0','','',NULL), -('12393','ORIG_100i_Seat_Bed','Seat','UNDEFINED','c3ee2e3f-3dcf-4fdd-bf33-1a4fe6201eae','','',NULL), -('12394','Cutlass Destiny Livery','Paints','UNDEFINED','780e59d1-4dee-429f-aa71-64480cfcc204','','',NULL), -('12395','Ball','Char_Head_Piercings','UNDEFINED','b0f7961b-b607-4010-abb9-1f2b3bcadc30','','',NULL), -('12396','Stirling Exploration Helmet Chroma Edition','Armor','Helmet','c90aed91-bb4a-4c54-901a-224775e73499','','',NULL), -('12397','Sarrab Glasses','Char_Accessory_Eyes','UNDEFINED','70262488-00c4-4607-b735-7528736c799a','','',NULL), -('12398','Quantainium (Raw)','Cargo','Cargo','677c565c-27d8-4c10-a8e5-20992747acbe','','',NULL), -('12399','Prowler Wanderer Livery','Paints','UNDEFINED','ba1985ee-060c-4016-bed9-d68e54860bde','','',NULL), -('12400','SHIELDS','ShieldController','UNDEFINED','ac0949c8-38a5-40b8-85e1-7d29e42c3713','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('12401','Seat','SeatAccess','UNDEFINED','69199d60-373c-4d48-a690-2b9336c6ad40','','',NULL), -('12402','Seat','Usable','UNDEFINED','8d038637-e040-47fd-ba0e-549c855fef6c','','',NULL), -('12403','Tuvois Jacket Tan','Char_Clothing_Torso_1','UNDEFINED','ab153446-92cf-461d-9a0f-514961a6bdf6','','',NULL), -('12404','ParaMed \"AA Support\" Medical Device','Weapon','Small','68a8b5ff-8285-4a68-89ba-ab7132f36b16','','',NULL), -('12405','Flight Blade','FlightController','UNDEFINED','4c1ba38f-8fa2-4562-be52-9faccdad8c6a','','',NULL), -('12406','ARGO_CSV_Dashboard_Driver','SeatDashboard','UNDEFINED','ea0e03d7-1865-4131-862e-21e018221fdf','','',NULL), -('12407','Ponos Boots Red','Char_Clothing_Feet','UNDEFINED','b0e2153f-190c-4ae8-981e-2de0096cd6d4','','',NULL), -('12408','Pembroke Helmet Starchaser Edition','Armor','Helmet','b8b1992c-11ff-44b4-a381-11ca5a667c89','','',NULL), -('12409','heavyArmor_legs_skelExt_test','Armor','Legs','26772b0e-fb61-40d8-b68c-49c2ae040c7d','','',NULL), -('12410','expo_display_shirts_and_hats_aegis','ShopDisplay','Default','fb2809ec-ec82-47d6-98da-ba6f5ac819d9','','',NULL), -('12411','ControlPanel_LightSwitch_GLSN_Shiv','ControlPanel','DoorPart','ad95c862-15b5-4314-b64c-eb0535e9281a','','',NULL), -('12412','ESPR_BallisticCannon_Barrel_S6','WeaponAttachment','Barrel','534117ad-1901-4cf1-9614-db00d795319a','','',NULL), -('12413','G-2 Helmet Black','Armor','Helmet','5d4c2654-3e4b-4a13-8d1b-cd3efcd32c0e','','',NULL), -('12414','CBH-3 Helmet Purple','Armor','Helmet','7cc35dc1-d184-4d5b-a397-8d62fc351890','','',NULL), -('12415','Quartz \"Black Op\" Energy SMG','Weapon','Medium','b84b275c-2413-49fa-8664-b40b188e7369','','',NULL), -('12416','TRGT. STATUS','Seat','UNDEFINED','fc273b65-d10b-4c2b-8318-218201e89c0e','','',NULL), -('12417','ANVL_Asgard_Thruster_Mav_Joint','ManneuverThruster','FlexThruster','c3fb7601-2194-423d-919f-bfccfc812520','','',NULL), -('12418','RSI Default JetPack','Suit','ThrusterPack','562342f0-6f4f-4752-a598-1b606a8af8bf','','',NULL), -('12419','stand_shop_small_c_Shield','ShopDisplay','UNDEFINED','d8456251-44d7-4a41-8780-146007a8b191','','',NULL), -('12420','Bottle','Bottle','Default','fd2e19ec-67a1-44e8-ab2f-a771ecd53c8b','','',NULL), -('12421','Argon','Cargo','Cargo','1a8a0d30-d3cb-40f8-a664-85141be2273a','','',NULL), -('12422','Carryable_1H_CY_Utensil_Spoon','Misc','UNDEFINED','d8e62bcc-bd9b-491b-950f-17bba594077c','','',NULL), -('12423','Cryo-Star EX','Cooler','UNDEFINED','b3e803cc-f907-494d-8e35-51703eae4b6f','','',NULL), -('12424','Access','SeatAccess','UNDEFINED','eb2c8c02-4765-4e96-bf75-83e3b79c37a5','','',NULL), -('12425','ARGO_MPUV_1T_Thruster_Aux_Fixed_02','ManneuverThruster','FixedThruster','a51309af-6e3a-46a4-aaff-4bd2f3c38ac9','','',NULL), -('12426','Giotto Jacket Crusader Edition Dark Blue','Char_Clothing_Torso_1','UNDEFINED','2e59147f-00a1-47ff-beb0-ebb1de5fc8f0','','',NULL), -('12427','Shared_Piercing','Char_Head_Piercings','UNDEFINED','c45be9d2-ed6c-41a1-8578-72d0811ed9dc','','',NULL), -('12428','DoorProximitySensorItem_3x1x2','Sensor','DoorPart','6324115c-b0ce-4b66-bfcd-9245fc057656','','',NULL), -('12429','Door Control','Door','UNDEFINED','56360d30-f4ff-4344-9a58-97fe9ea5caaf','','',NULL), -('12430','Observer-Lite','Radar','MidRangeRadar','28c7f719-37c3-432e-ab94-59dab4c3a0f7','','',NULL), -('12431','GATS_BallisticGatling_Mounted_Barrel_S1','WeaponAttachment','Barrel','3d478cf8-b28f-4c19-99fc-3f270108ce01','','',NULL), -('12432','Seat','SeatAccess','UNDEFINED','189e8f16-6def-4558-9e55-27c0504e5e6b','','',NULL), -('12433','FBL-8a Legs (Modified)','Armor','Legs','b7ee874f-a7cf-4250-a190-64d59c771a3f','','',NULL), -('12434','Medivac Rescue Light','Weapon','Grenade','4fcb60a4-f56d-4c2d-88c3-3a43b16a3d55','','',NULL), -('12435','MSD-322 Missile Rack','GroundVehicleMissileLauncher','GroundVehicleMissileRack','fcc8cce4-bc63-4764-973b-e691853ac72d','','',NULL), -('12436','Cliffback T-Shirt Twilight','Char_Clothing_Torso_0','UNDEFINED','eb104969-1b37-4fed-8fab-c86581d8c506','','',NULL), -('12437','ORIG_135c_Thruster_Mav_Fixed_Bottom','ManneuverThruster','FixedThruster','bb5ddc08-3e73-45b4-b497-77423b440f00','','',NULL), -('12438','MISC_Fury_LX_Thruster_FixedMav_Bottom','ManneuverThruster','FixedThruster','e69dc024-36d6-4951-b24d-88cf85290461','','',NULL), -('12439','Sion \"Scorched\" Compensator2','WeaponAttachment','Barrel','10831736-4bdf-4465-b517-94281261d317','','',NULL), -('12440','Vanduul S3 Quad Missile Rack','MissileLauncher','MissileRack','41562bac-5811-46d6-8cb9-9d40f80e8ebe','','',NULL), -('12441','Ranta Dung','Cargo','Cargo','63c255ea-d453-4430-a01f-47e8a8b8380b','','',NULL), -('12442','Stalker V-G Missile','Missile','GroundVehicleMissile','1928b138-e521-4cec-8791-183f6c6c93ec','','',NULL), -('12443','Food_bowl_rice_01_b','Food','Consumable','81585355-6c26-47cc-ab07-0bdf55bc37f7','','',NULL), -('12444','ORIG_600i_Dashboard_Expl_Module_Left','SeatDashboard','UNDEFINED','bc34b4bd-e05f-4a3a-b4bc-9fea670d2be6','','',NULL), -('12445','rack_gun_size_3_01x00625x01125_1_a','Misc','UNDEFINED','f9a5454b-420c-47a6-9c23-caabf149fc47','','',NULL), -('12446','video_wall_display_2_08x075x03_a','Display','UNDEFINED','91913c26-2224-4fa9-981d-faddd2cd9b43','','',NULL), -('12447','Maintenance_Workzone_Below_Inspect','Usable','UNDEFINED','19a23f99-a14e-43ad-8312-129cf59f4ea4','','',NULL), -('12448','Navoi Boot and Pants Striker','Char_Clothing_Legs','UNDEFINED','6bdbfc8e-14b6-4ce2-aa7c-7b84e674be1f','','',NULL), -('12449','Seat','Usable','UNDEFINED','1b28bb8c-62bd-4ea6-9600-597675fc0c64','','',NULL), -('12450','ControlPanel_Screen_LiftControl_4x3','ControlPanel','DoorPart','17debeeb-4366-4592-9ab0-e78889096ab5','','',NULL), -('12451','TRGT. STATUS','Seat','UNDEFINED','448c25a7-0c55-45fb-ae3f-9a583465c6b3','','',NULL), -('12452','TurboDrive','PowerPlant','Power','5df9fe17-bda5-433d-a2cd-bff6b29eeac9','','',NULL), -('12453','Geist Armor Helmet Rogue','Armor','Helmet','dad9dec1-4e24-45c2-b8c9-fc286a8d688a','','',NULL), -('12454','SCItemDisplayScreen_ScreenSize_W64_H36_H74_Command','Display','Default','25dd06e6-638b-423b-80fb-e49bb84b13de','','',NULL), -('12455','MegaFlux','PowerPlant','Power','5fac1c59-a35b-468b-805c-cc273faa02bb','','',NULL), -('12456','Access','SeatAccess','UNDEFINED','e713f400-a240-4a89-8a0d-a6483a117c6c','','',NULL), -('12457','BEHR_BallisticRepeater_Barrel_S3','WeaponAttachment','Barrel','86ca9f40-5bcf-4f17-8834-2760ef15dd56','','',NULL), -('12458','Carryable_2H_FL_Safe_Locked','Misc','UNDEFINED','9b3035fc-a852-44dd-9d6a-67b104ac83ca','','',NULL), -('12459','Internal Tank','QuantumFuelTank','QuantumFuel','aa9db7c6-394d-4f83-bccf-e5ed8b4fc49c','','',NULL), -('12460','Personal Storage','Cargo','UNDEFINED','d89546ff-da34-41ca-a818-9ec78837d595','','',NULL), -('12461','DRAK_Cutlass_Red_CargoGrid_Left','CargoGrid','UNDEFINED','9e77a5d6-cbba-498c-af33-126b5cc1d706','','',NULL), -('12462','IAE 2954 T-Shirt Purple','Char_Clothing_Torso_0','UNDEFINED','437d5974-713c-4384-bafd-8b2149f727ea','','',NULL), -('12463','Altruciatoxin','Cargo','Cargo','bb2adc61-947d-49cb-93b8-97105f8603b5','','',NULL), -('12464','ANVL_Door_Decal_Carrack_Medical','Decal','DoorPart','86715c13-989c-4931-a836-4584491c10cc','','',NULL), -('12465','Door Control','Door','UNDEFINED','fed0023a-3ba9-4129-965a-d8d2a9f6b546','','',NULL), -('12466','Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','8bc0055e-e1bd-4c25-92a1-3446d9406ed8','','',NULL), -('12467','rack_wood_2_highend_b_rod_shoe_12Ports','ShopDisplay','Default','f508ece6-78ad-444f-832e-45945fe897e8','','',NULL), -('12468','Radar_Display_Gladius','Display','UNDEFINED','6671ef0a-b3dc-4196-b083-85cb56927dd8','','',NULL), -('12469','DRAK_Cutlass_Red_Thruster_Maneuver_Lateral','ManneuverThruster','JointThruster','a56a8649-ac8b-4cf9-b14d-8bc7b1f0f474','','',NULL), -('12470','Lindinium (Ore)','Cargo','Cargo','d17453e9-61e0-4e5b-9356-9ef1792f32c0','','',NULL), -('12471','K7 Pants Tan','Char_Clothing_Legs','UNDEFINED','dd8fc7fd-74d8-4492-9055-66bfcf3beb5b','','',NULL), -('12472','Door Control','DockingAnimator','UNDEFINED','614b41cb-1231-4bdd-8340-5ae86b576df9','','',NULL), -('12473','Gasping Weevil Eggs','Cargo','Cargo','ac7ee4dc-ea40-48a8-9f11-8b11c0af4565','','',NULL), -('12474','Door Control','Door','UNDEFINED','899bf015-ec3f-476a-ab2b-3d94ade31f7d','','',NULL), -('12475','Stark Compensator1','WeaponAttachment','Barrel','986d275f-f847-4b0a-86de-68ad47820ff8','','',NULL), -('12476','game_chess_1_bishop_a','Misc','UNDEFINED','8c127ff0-f924-42c4-89b5-f8cdba53e30e','','',NULL), -('12477','400i Fortuna Livery','Paints','UNDEFINED','bfdb7f10-0969-4235-8130-25a2a77540b4','','',NULL), -('12478','Radar_Display_ORIG_X1','Display','UNDEFINED','2dea8fbd-ce70-49c0-8671-a6ddcbe74fbe','','',NULL), -('12479','Seat','Usable','UNDEFINED','f5f4dfad-2feb-4b71-97e4-cb6d0311b8c0','','',NULL), -('12480','Seat','Usable','UNDEFINED','49c52043-d87e-4d7a-9a7c-3cdb127e751c','','',NULL), -('12481','Morozov-SH-I Helmet Pyrotechnic Terrene','Armor','Helmet','6841796c-86bc-42ac-b1d6-349d39a65007','','',NULL), -('12482','TrueDef-Pro Arms Yellow/Black','Armor','Arms','4d8cd56e-a5dd-46dc-baac-44a081b81a21','','',NULL), -('12483','KRIG_P72_Archimedes_WingTip_Left','AttachedPart','UNDEFINED','280421ce-bd97-4592-a98a-fcc1a4d34f14','','',NULL), -('12484','Gladius PHB Flight Blade','FlightController','UNDEFINED','b9b7b8f4-cb08-438f-82e5-56e39f4ec1f6','','',NULL), -('12485','Flight Blade','FlightController','UNDEFINED','6897d4f9-86f2-4789-841a-155ba2884df6','','',NULL), -('12486','Seat','SeatAccess','UNDEFINED','aa9c22a5-a09f-4175-b054-05409c47efd2','','',NULL), -('12487','Gen Liberty Ale (Bottle)','Drink','Bottle','9dcd4290-3acf-4588-bb0e-e78b0d5ee394','','',NULL), -('12488','Laranite','Cargo','Small','f7038211-9a4f-4741-a922-3917bd71773f','','',NULL), -('12489','Surveyor','Radar','MidRangeRadar','3260e018-64ca-42e9-b85a-8b80d24d5375','','',NULL), -('12490','ADP Legs Sienna','Armor','Legs','4636c4de-6f00-4197-a0d8-0fab36761e94','','',NULL), -('12491','Carryable_1H_SQ_DataPad_Fluff_StormBreaker_ResearchFacility_Relocation','Misc','UNDEFINED','4c9b4d41-f970-1722-d177-6e074d012ea7','','',NULL), -('12492','Door','Door','UNDEFINED','fa1c04c0-bdfd-400f-9ed8-680d9dc13a49','','',NULL), -('12493','MISC_Razor_LX_Thruster_Vertical_Bottom','ManneuverThruster','FixedThruster','0de3db8e-1112-47f7-934b-0f7268283511','','',NULL), -('12494','Detatrine','Cargo','Cargo','86d56bfc-c804-4db6-80bb-6ad48633bfc1','','',NULL), -('12495','Gadget_Cabinet_kegr_fire_extinguisher_01_low','Usable','UNDEFINED','f48594cf-d99a-4560-b7bd-fc5f3eb20c7d','','',NULL), -('12496','PlayerDeco_lt_couch_leather_2_straight_b','Usable','UNDEFINED','0ae4d7a2-52dd-4eff-82e4-64d32443b952','','',NULL), -('12497','Door Control','Door','UNDEFINED','170d40bf-0e2e-41d1-806d-8fc6a55f205b','','',NULL), -('12498','RSI_Zeus_ES_Thruster_Main_Bottom_Left','MainThruster','UNDEFINED','1b339652-7d02-46b9-b911-f91ed82cf550','','',NULL), -('12499','DRAK_Cutlass_Red_Thruster_Maneuver_Right','ManneuverThruster','JointThruster','e9d135b5-9a8e-44d0-bd17-8d9a72692909','','',NULL), -('12500','Internal Tank','QuantumFuelTank','QuantumFuel','bbb6a95d-5820-4a89-a1aa-2d03c14a6c07','','',NULL), -('12501','MISL_S09_CS_TALN_Argos_2','Missile','Torpedo','5bdd509f-93eb-4638-83a9-dfcaae0c91ad','','',NULL), -('12502','Food_plant_mushroom_01_heart_b','Food','Plant','6293d8f2-4421-454d-8e7e-9087705d44d0','','',NULL), -('12503','StorageCage_Damage','Cargo','UNDEFINED','affdb277-32e1-41bc-af32-6d8640028cba','','',NULL), -('12504','Diluthermex','Cargo','Small','85de5342-9928-42f8-a6d9-9eb6ef6c6c0d','','',NULL), -('12505','FSK-8 \"Mirage\" Combat Knife ','Weapon','Knife','4534b4a3-6427-490a-a557-9e7a8114c3e9','','',NULL), -('12506','glass_tumbler_2_a','Misc','UNDEFINED','a3fae4de-a6ba-4e96-9a46-e8c271f07c7d','','',NULL), -('12507','Carryable_1H_CY_bottle_liquor_pourable_1_a','Misc','UNDEFINED','1019b7b8-477c-49fb-85bb-39e33a7d55a0','','',NULL), -('12508','Ardent Boots Green','Char_Clothing_Feet','UNDEFINED','842d17bf-18be-4d47-b8ca-e92cf18507a4','','',NULL), -('12509','SHIELDS','ShieldController','UNDEFINED','2145f92d-695e-43e7-8ec7-2012f1473328','','',NULL), -('12510','ANVL_Door_Decal_Carrack_Drone','Decal','DoorPart','f69d4f05-357d-417d-a927-e37f67501a4e','','',NULL), -('12511','INTK_RSI_Aurora_LX','FuelIntake','Fuel','123054da-9075-41a0-a31b-53cf6669b230','','',NULL), -('12512','Internal Tank','QuantumFuelTank','QuantumFuel','ca7b121d-b8e5-4253-a45c-bddd75d9fb17','','',NULL), -('12513','ADP Core Tan','Armor','Torso','0aeaa1c2-31c0-46e3-9957-05c83ec48d14','','',NULL), -('12514','Arcus Gloves Red','Char_Clothing_Hands','UNDEFINED','0510b7db-8059-4cfa-9486-eba1542526ae','','',NULL), -('12515','AEGS_Reclaimer_Salvage_Arm','ToolArm','UNDEFINED','6e99cfb7-45cb-4221-aa7f-d24964fd0cef','','',NULL), -('12516','Oza','Cargo','Cargo','d412b132-5ea0-4ec9-96e3-5f11aa73cbb4','','',NULL), -('12517','Flight Blade','FlightController','UNDEFINED','ee9801dd-3528-4448-967b-3de16e4f7f9b','','',NULL), -('12518','CRUS_Star_Runner_Dashboard_Pilot','SeatDashboard','UNDEFINED','6b228efe-5de4-4792-8090-f2b899465627','','',NULL), -('12519','Zelena Pants Olive and Bisbee Boots','Char_Clothing_Legs','UNDEFINED','8d0ae6c2-f1ed-4d18-8f64-79fcf07a5fb6','','',NULL), -('12520','Cargo_Comm_125x3_Metal_a','Cargo','Cargo','be18b69f-3235-46f3-90fc-b10706c670d4','','',NULL), -('12521','Morozov-SH-I Legs Gideon','Armor','Legs','e98473de-9bf9-4092-b47f-21b19acd40c0','','',NULL), -('12522','Agricultural Supplies','Cargo','Small','ae596ace-fb95-43b4-8ad7-e299a771c033','','',NULL), -('12523','M9A Cannon','Weapon','Gun','cd34396d-3fa5-4afc-a164-e4f2a77147cd','','',NULL), -('12524','rack_wood_2_highend_a_rod_6Ports','ShopDisplay','Default','a79bd649-4dc1-4287-8aa9-21738e4a7815','','',NULL), -('12525','Ready-Up Helmet Black','Char_Clothing_Hat','UNDEFINED','5408cb4c-575b-4f10-8e99-ac7baf271b3f','','',NULL), -('12526','Medical Supplies','Cargo','Small','dc9ad624-c31f-4451-8046-7b6a1c871e3e','','',NULL), -('12527','Geist Backpack','Armor','Backpack','f3e516b1-1fed-4f98-86fd-970e84786ddf','','',NULL), -('12528','Silverton Jacket Pine','Char_Clothing_Torso_1','UNDEFINED','c38d5709-6956-49fb-8cce-d55e23b57ee5','','',NULL), -('12529','AEGS_Avenger_PrisonPod_1','Usable','UNDEFINED','077ad6ba-859e-4443-933a-640c24d2e419','','',NULL), -('12530','Internal Tank','QuantumFuelTank','QuantumFuel','2e35b4bd-165f-4641-b813-1c3965c8243e','','',NULL), -('12531','Col_A_Airlock_Tube_Door_Double_Ext','Door','AirlockPart','b035e7d0-27d9-43c4-a73d-f47e1fe3fc91','','',NULL), -('12532','Luminalia Gift','Cargo','Cargo','3faa7b66-88cd-4153-9cc3-560686b9ce28','','',NULL), -('12533','Radar_Display_RSI_Polaris_C','Display','UNDEFINED','c806daa0-04e6-488e-af98-9a25d6270451','','',NULL), -('12534','ORC-mkV Arms Dark Red','Armor','Arms','5b588435-e363-42ca-8bf5-951af4e8be72','','',NULL), -('12535','VariPuck S2 Gimbal Mount','UtilityTurret','GunTurret','6b756217-01c9-44cd-89be-1d5d6c87673b','','',NULL), -('12536','Cargo_Comm_125x3_Gas_Iodine_a','Cargo','Cargo','28192a9d-13b1-468c-8d78-ead7a9cc2d52','','',NULL), -('12537','Tracer Laser Pointer Orange ','WeaponAttachment','BottomAttachment','cdf4adaa-de1e-42cf-8b50-0fd3ad138a10','','',NULL), -('12538','Pite','Char_Head_Piercings','UNDEFINED','030268df-bb52-401a-b2d7-117b7006a95a','','',NULL), -('12539','Weapon_Rack_1_Volt_Rifle_Uncommon_001','Usable','UNDEFINED','46f47948-1802-42d2-b09d-6a9b86c74071','','',NULL), -('12540','Molina Mold Treatment','Cargo','Cargo','1a6cf9f3-18b7-4cf0-9e62-38ab19c127e9','','',NULL), -('12541','Arden-SL Core Red Alert','Armor','Torso','bc4711b5-5f10-4746-8863-0fd06b22d4f6','','',NULL), -('12542','ControlPanel_LightSwitch_RSI_Polaris_Turret','ControlPanel','DoorPart','45a68414-94e9-4229-adc4-735e22364fa1','','',NULL), -('12543','DRAK_Cutter_Roof','Misc','UNDEFINED','06ea8557-af31-4859-afb6-072893e337b9','','',NULL), -('12544','ADP-mk4 Arms Righteous','Armor','Arms','30f3d430-7097-4f1b-b47a-63e7fb342028','','',NULL), -('12545','Red QuikFlarePro','Weapon','Grenade','3e98c2a9-4edb-4501-ab3d-99c2c54d1d26','','',NULL), -('12546','Carryable_2H_FL_Safe_1_a_Advocacy_a','Misc','UNDEFINED','7f682009-2a92-4791-9d23-abd85e6bc4ec','','',NULL), -('12547','RSI_Polaris_SeatAccess_Turret_TopLeft','SeatAccess','UNDEFINED','d25355de-0343-4e08-b25d-2891646e8a02','','',NULL), -('12548','Aegis Retaliator Torpedo Rack','MissileLauncher','MissileRack','dd0b3606-b9bc-4afe-9bc0-dc15ca0ad3df','','',NULL), -('12549','Stileron','Cargo','Cargo','b0bcb9d5-01ec-434e-8b8a-98076bae3678','','',NULL), -('12550','Janalite','Cargo','Cargo','dcf09d52-2a84-49be-a42f-2d5c8c52ec8d','','',NULL), -('12551','MISC_Fury_Thruster_FixedMav_Top','ManneuverThruster','FixedThruster','b4ae27f2-8ff2-4ef7-b84f-31b514988bb1','','',NULL), -('12552','Ketchum Beanie Twilight','Char_Clothing_Hat','UNDEFINED','ee9048f4-0dd9-4945-ae5d-155d370683fe','','',NULL), -('12553','Personal Storage','Cargo','UNDEFINED','75dd7136-d69c-4705-9264-ff71234f516c','','',NULL), -('12554','Monde Legs Hemlock Camo','Armor','Legs','5c94a154-e25a-4a27-aea2-52868429f14e','','',NULL), -('12555','Assailant IV Missile','Missile','Missile','ce8ef95e-edd9-45d7-8c21-5e644a8ba75e','','',NULL), -('12556','Door Control','ControlPanel','DoorPart','a4574d1c-8b46-409f-b3ce-5317c15e0f56','','',NULL), -('12557','Bottle','Bottle','Default','20e89ba8-faee-4c99-842a-83ebebac0f2e','','',NULL), -('12558','REP-8 EMP Generator','EMP','UNDEFINED','5b592245-58a7-4ce9-9c96-3145d0424da8','','',NULL), -('12559','600i Flight Jacket','Char_Clothing_Torso_1','UNDEFINED','837ab689-2505-4329-bb5a-3a56ea3e24e6','','',NULL), -('12560','Personal Storage','Cargo','UNDEFINED','66348bb4-20d0-4c9c-9b1f-bbdaac133dae','','',NULL), -('12561','Edgewear Pants Black','Char_Clothing_Legs','UNDEFINED','37878ec2-d955-48f9-9e0e-00bde650392b','','',NULL), -('12562','R97 \"Righteous\" Shotgun','Weapon','Medium','97b5b51a-a161-4477-92df-1f35fefdb9c4','','',NULL), -('12563','Carryable_1H_CY_drug_medical_pills_1_a','Misc','UNDEFINED','b1ebf9d9-c95f-42d6-923c-0ecd7a03f221','','',NULL), -('12564','RSI_Apollo_Medivac_Thruster_Retro','ManneuverThruster','FixedThruster','434532e6-3aa7-8c7e-cb8a-c8401b87029c','','',NULL), -('12565','P8-SC \"Nightstalker\" SMG','Weapon','Medium','c28c3a87-80a5-4df0-9faf-f61dcdebb16e','','',NULL), -('12566','Door Control','ControlPanel','DoorPart','4ec68fb6-6c0b-4aab-9af1-3acae4f49821','','',NULL), -('12567','Carryable_1H_CY_glass_tumbler_1_a_prefilled','Misc','UNDEFINED','54938f3c-8ec2-48b6-a73d-d132b2c259bf','','',NULL), -('12568','Strata Helmet Shire','Armor','Helmet','9c8a751a-b2ad-4e81-a83e-79e48ef97c3c','','',NULL), -('12569','Horizon Helmet Olive','Armor','Helmet','e65434a1-c517-4b0c-8746-bc914c2a3c86','','',NULL), -('12570','Clean and Clear Work Apron','Char_Clothing_Torso_1','UNDEFINED','87466b3c-aef4-4761-845a-ae742c328385','','',NULL), -('12571','Builders of Tomorrow T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','6b17edf9-fff3-45bb-bf43-c41ecada9e53','','',NULL), -('12572','Door Control','ControlPanel','DoorPart','a89129ac-bf75-401d-a06e-98b6ea4a8c54','','',NULL), -('12573','Locker_Suit_DRAK_Cutter_Rambler','Usable','UNDEFINED','466fa608-6a53-4788-84fa-35ae9d1af657','','',NULL), -('12574','MISC_Starlancer_Thruster_Mav_Side','ManneuverThruster','FixedThruster','e2abd3a8-218a-4672-bb04-e389a1ba33bc','','',NULL), -('12575','Corbel Helmet Smolder','Armor','Helmet','fdaffa09-1693-4db2-a3b1-99d90fdfb384','','',NULL), -('12576','TRGT. STATUS','Seat','UNDEFINED','92294416-6daa-4d4b-a1ae-27f337b25d64','','',NULL), -('12577','Seat','SeatAccess','UNDEFINED','cda63d37-2e3f-4eb4-85bb-2aa6d9a49e4b','','',NULL), -('12578','MISC_Prospector_RADR_Display','Display','UNDEFINED','e6a0d71f-06f4-49d6-b8ac-9c06a85fd8bf','','',NULL), -('12579','Lynx Core Ferrum','Armor','Torso','7276eed8-e1be-453b-a2b0-e8aca32c7447','','',NULL), -('12580','Bed','Usable','UNDEFINED','23d8d17d-913c-4a96-b0d3-b352b1724ed7','','',NULL), -('12581','MISC_Freelancer_Thruster_DUR_Main_Right','MainThruster','FixedThruster','5eff23ca-cbe9-4794-a288-5627837a7d76','','',NULL), -('12582','SCItemDisplayScreen_Source','Display','Default','29a11578-05e7-4777-a500-e73c1de6f188','','',NULL), -('12583','Davin Work Gloves','Char_Clothing_Hands','UNDEFINED','4521f35f-eeba-4f82-98cc-662940b48af0','','',NULL), -('12584','Hardline Hard Hat Hazard','Char_Clothing_Hat','UNDEFINED','4f5ecfda-446b-414f-9a6a-53aebc7ecf73','','',NULL), -('12585','Chiron Backpack','Armor','Backpack','bba48b2a-0b61-4040-9dc8-0999137c6895','','',NULL), -('12586','Radar_Display_Eclipse','Display','UNDEFINED','09f0dfbf-b30e-4bf2-beec-315899a85448','','',NULL), -('12587','ESPR_Prowler_Component_Housing_Large','Player','UNDEFINED','e75feb06-3cdf-4941-9382-a02f329bfe51','','',NULL), -('12588','Vehicle_Screen_MFD_Holographic_Top','Display','UNDEFINED','b62d5d8b-e6c2-48c9-8a0e-d0e10b5f1f8b','','',NULL), -('12589','MXC Perdition Livery','Paints','UNDEFINED','335e3fa9-7ec2-4542-bf80-0967b8d5d55e','','',NULL), -('12590','Blood_Decal_Splatter1','Decal','DoorPart','792b024d-9d19-41e4-8416-b19ef45e6434','','',NULL), -('12591','Vanguard True Valor Livery','Paints','UNDEFINED','91f45c5e-0509-4e82-821c-f522a5a475e7','','',NULL), -('12592','Internal Tank','QuantumFuelTank','QuantumFuel','0ac266b3-49d6-4a7b-bdf4-b311479dbb50','','',NULL), -('12593','DuraWork Pants Ochre','Char_Clothing_Legs','UNDEFINED','c156f433-da5c-44cb-bcf7-c2c0eaa3df15','','',NULL), -('12594','Carrion Arms','Armor','Arms','87f789bf-f902-4a2a-b2ce-97652f06939d','','',NULL), -('12595','Waste','Cargo','Cargo','393ef7c3-d6e9-4a8e-aaa8-6045806d30e8','','',NULL), -('12596','Seat','Usable','UNDEFINED','1f9986d2-6389-4374-bec0-0ed2211a0577','','',NULL), -('12597','Carrion Arms Ashen','Armor','Arms','1261da0b-758e-42ee-898f-91e03fb390eb','','',NULL), -('12598','Carrion Arms Payback','Armor','Arms','cc20b9d1-ee85-4996-94ec-923fbe535ae1','','',NULL), -('12599','Saldynium (Ore)','Cargo','Cargo','4edd1ed2-463e-480c-a1b3-39f8c4527289','','',NULL), -('12600','Gladius Valiant Livery','Paints','UNDEFINED','047d54d4-e288-4649-a369-412775d9a641','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('12601','Bed','Usable','UNDEFINED','59bd9fad-8eae-4f27-9957-8516e2ee4cc6','','',NULL), -('12602','MSD-543 Missile Rack','MissileLauncher','MissileRack','e6ca8226-bbe0-4c9a-92c4-986d522e3154','','',NULL), -('12603','m_human_mannequin_odyssey_suit_18','ShopDisplay','UNDEFINED','0fd8f245-93cd-4b04-811a-f148f71cc41a','','',NULL), -('12604','Railing_Hologlobe_Idris_AEGS','Usable','UNDEFINED','e04a010a-d450-443a-ba4e-589b228acd06','','',NULL), -('12605','Seat','Usable','UNDEFINED','0e318d3b-4e6c-49a9-bc11-b27f4616b382','','',NULL), -('12606','RSI_Polaris_SCItem_SeatAccess_Turret_Top_Rear','SeatAccess','UNDEFINED','2de4939c-91ae-4ded-8ea3-947f53ce8529','','',NULL), -('12607','HRST_LaserRepeater_Barrel_S2','WeaponAttachment','Barrel','fd055ecf-d21d-4486-aab3-76a915942f7a','','',NULL), -('12608','PU_Head_Teeth','Char_Accessory_Head','UNDEFINED','4a0de194-4b4f-49b8-adb7-1087e9f38941','','',NULL), -('12609','AEGS_Idris_SCItem_Seat_Bridge_Rear_Right_Back','Seat','UNDEFINED','4fc8c539-7c73-467f-9b80-e41e929a31ce','','',NULL), -('12610','Seat','Usable','UNDEFINED','fc618db7-4499-4643-a3a3-ee88a36c8cac','','',NULL), -('12611','Luminalia Gift','Cargo','Cargo','ede927d8-e590-4e61-a4d5-0c0cbee1a03d','','',NULL), -('12612','SoftLock_Terminal_Standard_Starfarer_Fuel_Pods_Ship','Display','UNDEFINED','710cc740-d31b-453a-8121-15b5329c0490','','',NULL), -('12613','Red Wind Cargo Plushie','Misc','Flair_Wall_Picture','0f9f484f-ebe6-401a-a280-3a4dbe2b7279','','',NULL), -('12614','Morozov-CH Backpack Brushdrift','Armor','Backpack','06f1ddc0-91fb-4740-823f-975244f2b452','','',NULL), -('12615','Bulwark','Shield','UNDEFINED','624e6c75-afd8-4606-a10e-45d12cb3c882','','',NULL), -('12616','mobyGlass Personal Computers','Cargo','Cargo','6f8b3910-6e84-465e-8396-8c1d2d038353','','',NULL), -('12617','Seat','Usable','UNDEFINED','a8ec581a-135a-46ed-9486-1691c82b2c42','','',NULL), -('12618','Wayfare','QuantumDrive','UNDEFINED','f942fa3b-d450-4c4d-a797-49f1a4685d16','','',NULL), -('12619','Gilick Boots White / Teal','Char_Clothing_Feet','UNDEFINED','4ec61079-1f93-4b99-bb85-6841ef59af9e','','',NULL), -('12620','ESPR_LaserCannon_Ventilation_S4','WeaponAttachment','Ventilation','b715c859-aaec-47d6-b6e1-0db1147ef958','','',NULL), -('12621','Hydrocel','Cooler','UNDEFINED','a5107834-61e1-481d-b836-7ed6c08b14d5','','',NULL), -('12622','Seat','Usable','UNDEFINED','c615676d-110f-4f2b-b670-9a69879b608b','','',NULL), -('12623','m_human_mannequin_marine_medium','ShopDisplay','UNDEFINED','f3ae812a-1337-42b3-b095-227bcfd7512d','','',NULL), -('12624','Radar_Display_RSI_Perseus','Display','UNDEFINED','3774f745-7182-4760-b4fe-0806f5433e57','','',NULL), -('12625','Tau Plus (4x Telescopic)','WeaponAttachment','IronSight','845dc675-ab4c-4bd5-8b14-11e9c29f3399','','',NULL), -('12626','CargoBox_050x050x050_Tank_Water','Cargo','Cargo','083b1cf9-453c-40a9-b7b9-ca9e09223858','','',NULL), -('12627','Internal Tank','FuelTank','Fuel','5a16ce1f-f8f7-4eee-82cb-d6190493c5d4','','',NULL), -('12628','Seat','Usable','UNDEFINED','481ef6d2-7dbf-4176-9161-a48c854f9178','','',NULL), -('12629','LeMarque Pants','Char_Clothing_Legs','UNDEFINED','9d17991a-4f2b-4521-87a2-3b7d4e90bf94','','',NULL), -('12630','Manned Turret','TurretBase','MannedTurret','f78fca4a-1d2c-4532-87cf-6af1638005d5','','',NULL), -('12631','NONE_LaserRepeater_Ventilation_S3','WeaponAttachment','Ventilation','06bf9021-aae5-4ecc-b066-c83538bc20dd','','',NULL), -('12632','AEGS_Sabre_Peregrine_Thruster_Mav_Joint_03','ManneuverThruster','JointThruster','2c3eeb5a-a588-462e-8caa-1fdcf91c5f58','','',NULL), -('12633','food_ration_pack_a','Misc','UNDEFINED','67b7d492-eb3f-467f-8065-3e7a7b4919a9','','',NULL), -('12634','Door Control','Door','UNDEFINED','0a666de1-9bde-4dc6-b993-181054d005f4','','',NULL), -('12635','Seat','SeatAccess','UNDEFINED','907278e1-c4c8-415c-965b-a8e54ca65be7','','',NULL), -('12636','Stirling Exploration Backpack Transistor Edition','Armor','Backpack','819a69f2-412d-48f1-8232-3192fd765d80','','',NULL), -('12637','Manned Turret','TurretBase','MannedTurret','ba0bc75f-01ca-4da5-8a12-46eb54ac221a','','',NULL), -('12638','Flight Blade','FlightController','UNDEFINED','9c1395b5-a1c8-4365-ba1a-0d9246382384','','',NULL), -('12639','Door_NoRoomConnector_Breachable','Door','UNDEFINED','a954cf6c-e976-43ab-bcb0-f56497269d26','','',NULL), -('12640','Gadget_Cabinet_kegr_fire_extinguisher_display_01','Usable','UNDEFINED','03679be2-7af7-41d3-a807-4acb74e11f57','','',NULL), -('12641','Frontier Pants (Modified)','Char_Clothing_Legs','UNDEFINED','f1ab7f13-671a-47d2-8e74-28adf80cb0fa','','',NULL), -('12642','Drink_cup_coffee_1_a_stacked','Food','Consumable','e3f7b48a-398c-4e8a-acf7-87e095c1fe3c','','',NULL), -('12643','Arden-SL Arms Rime','Armor','Arms','72ea2303-ceb2-492a-bdcf-dede62bb626a','','',NULL), -('12644','Bed','Usable','UNDEFINED','ce4b8184-0948-4554-a275-42d1b7e42b67','','',NULL), -('12645','Weapon_Rack_3_Slot_RSI_Com_Armory','Usable','UNDEFINED','25248a20-6a74-4ea5-89fe-fa0ccb801eb1','','',NULL), -('12646','Hawk Hosanna Livery','Paints','UNDEFINED','c544ea5e-38c3-45e6-a049-859a3edce6a9','','',NULL), -('12647','ORIG_300i_Cargo_Cover_Rear','Door','UNDEFINED','b6244421-5a29-4c19-986c-474541300446','','',NULL), -('12648','Synergy+','Drink','Bottle','e07fa2c7-e2f2-4041-a898-d73f1f51eb06','','',NULL), -('12649','Seat','Usable','UNDEFINED','ea64ce86-08c3-47fa-8493-1560d36a8250','','',NULL), -('12650','Pulse \"Shubin\" Laser Pistol','Weapon','Small','101a4ebc-8611-4895-9731-0bb492d15a12','','',NULL), -('12651','Avenger De Biasio Livery','Paints','UNDEFINED','1257fef4-cbcf-408e-93bf-47f5634ddd18','','',NULL), -('12652','Ketchum Beanie Red','Char_Clothing_Hat','UNDEFINED','bef9a1d6-a8d9-4975-89af-899d833f52ed','','',NULL), -('12653','INTK_MRAI_Guardian','FuelIntake','Fuel','c26cfadd-a817-4571-b413-6da72ffb9755','','',NULL), -('12654','Seat','SeatAccess','UNDEFINED','ffeed16c-2217-4a62-8172-ab8c2dd0d10e','','',NULL), -('12655','Door Control','Door','UNDEFINED','8dd2d3b4-dc1d-4060-beac-c685d462a779','','',NULL), -('12656','Scorpius Tiburon Livery','Paints','UNDEFINED','01684bc9-391d-431e-9c48-b5c0270778ff','','',NULL), -('12657','ORIG_350r_Intake','FuelIntake','UNDEFINED','752ffc90-b625-4fbc-87a1-d1e36843e0e8','','',NULL), -('12658','Reclaimer 2949 Best In Show Livery','Paints','UNDEFINED','e256e698-54ad-455e-af5c-d2bda150ce6a','','',NULL), -('12659','Frontier 11 Classic Pine','Char_Clothing_Legs','UNDEFINED','b2b6d33d-38fd-4aad-b445-f91d9cf4a6d6','','',NULL), -('12660','Carryable_1H_CY_weight_dumbbell_1_14kg_b','Misc','UNDEFINED','e07022e6-7e67-41eb-8cb1-a8d306b4ff43','','',NULL), -('12661','Dashboard','SeatDashboard','UNDEFINED','9aaf6f5d-9808-4d25-a4f1-16003dc63b88','','',NULL), -('12662','Seat','Usable','UNDEFINED','5932bb7f-636a-4bc4-af21-6777f21d6f25','','',NULL), -('12663','Carinite','Cargo','Cargo','867be618-ce21-4984-8203-3d69beda535d','','',NULL), -('12664','MISC_Starfarer_Gemini_Thruster_Retro','ManneuverThruster','FixedThruster','97e71c75-8784-4916-9998-a5873716d9f8','','',NULL), -('12665','Agricium','Cargo','Cargo','6a86de83-c86b-43d7-841f-64e741aa1a54','','',NULL), -('12666','Door Control','ControlPanel','DoorPart','08a16539-122d-49a2-97f2-b365f644668f','','',NULL), -('12667','Carryable_TBO_FL_32SCU_Commodity_ProcessedGoods_HolidayLetter','Cargo','Cargo','8f09bc48-3840-45b2-bc7a-22779f0bd1e3','','',NULL), -('12668','Seat','SeatAccess','UNDEFINED','4b2ff594-90be-44ca-bec6-cb7dd63ce39b','','',NULL), -('12669','MISC_Starfarer_Gemini_Thruster_Mav_Fixed_03','ManneuverThruster','FixedThruster','f0b23d27-4958-4a51-8b22-a74824a31242','','',NULL), -('12670','Hardline Hard Hat White','Char_Clothing_Hat','UNDEFINED','8848b766-20d7-4637-926d-c1baaf40e56a','','',NULL), -('12671','Golem','SeatAccess','UNDEFINED','bd5990d0-d1c7-4382-82c3-14da3f5412e3','','',NULL), -('12672','Salvaged Skull 2 SCU Container','InventoryContainer','Cargo','5e8c3960-4f0f-496a-8a7a-8a308311d33b','','',NULL), -('12673','ADP Core Blue','Armor','Torso','49dd9b84-23cd-45de-abcf-63170b082b11','','',NULL), -('12674','ADP Arms Sienna','Armor','Arms','46cfe7f3-410c-4923-9461-3d0cd8b5a19b','','',NULL), -('12675','Internal Tank','FuelTank','Fuel','eb74f8f5-a8ad-4bd6-8927-12d63185b9c0','','',NULL), -('12676','Pyro RYT \"Mirage\" Multi-Tool ','Weapon','Gadget','81881090-96fb-4962-9528-e75e59451f28','','',NULL), -('12677','Lycara','Cargo','Cargo','7725a372-7510-4673-9fc3-6ea247103aa9','','',NULL), -('12678','Strata Backpack Hurston Black','Armor','Backpack','ccf4a001-4581-48f1-b084-ca4a922ccdf4','','',NULL), -('12679','Railing_Straight_2m_Lowtech_Open_B','Usable','UNDEFINED','ed1346ea-8fe4-4d45-88fe-fb596f4c9fa5','','',NULL), -('12680','Ivers Boots Blue','Char_Clothing_Feet','UNDEFINED','2348dc0a-1512-4aa0-a9aa-ff999c292ddd','','',NULL), -('12681','screen_4x3_kareah_datapad','Display','UNDEFINED','331768eb-043b-45ad-bda6-d843facdf691','','',NULL), -('12682','Zenith Laser Sniper Rifle Battery (22 Cap)','WeaponAttachment','Magazine','fa12a7a5-6fdd-4e7b-9237-1f2e131a43c4','','',NULL), -('12683','Defiance Legs Desert','Armor','Legs','c3aa9f68-1cbb-45d3-b78f-b0b0087c4c7d','','',NULL), -('12684','Stone Bug Shell','Misc','UNDEFINED','8b765ff3-4cea-403c-8dda-fab783eaf73b','','',NULL), -('12685','Door Control','Door','UNDEFINED','24c99ba1-5560-4af9-bd75-5ddd88cea382','','',NULL), -('12686','Internal Tank','QuantumFuelTank','QuantumFuel','cbd19bea-2b7a-40be-9896-14a65d2dcdea','','',NULL), -('12687','AEGS_Reclaimer_Thruster_Aux','MainThruster','FixedThruster','43522561-07b5-4aff-acda-37a61979dd3b','','',NULL), -('12688','RSI_Aurora_GS_MR_Thruster_Mav_Joint','ManneuverThruster','JointThruster','e5d93040-dcb1-4df6-867f-40a0e49e0d37','','',NULL), -('12689','ORC-mkV Arms Green','Armor','Arms','e1ea64d1-abf5-4088-aab1-b3e5eb1c8bbf','','',NULL), -('12690','Dashboard','SeatDashboard','UNDEFINED','9de2bb8b-118d-432f-a2b0-2f3ad16f71db','','',NULL), -('12691','MOLE Dolivine Livery','Paints','UNDEFINED','ac889ced-e5fc-4c51-8b77-55c39992c45b','','',NULL), -('12692','Seat','SeatAccess','UNDEFINED','35e64ab5-818a-4ec5-928e-c55b77b426b5','','',NULL), -('12693','E\'tam','Misc','Utility','905f6075-6c50-4353-9042-eba5a09bef3e','','',NULL), -('12694','TRGT. STATUS','Seat','UNDEFINED','7caed731-eaba-42cd-8011-933c2137c5e2','','',NULL), -('12695','Overlord Core Flashback','Armor','Torso','85fda174-cc17-431e-b731-27dc1502d326','','',NULL), -('12696','Table_Booth_1_4_Seat','Usable','UNDEFINED','480b3594-ff9b-41fc-9b29-c6c02086cfff','','',NULL), -('12697','INTK_DRAK_Cutlass_Steel','FuelIntake','Fuel','059b4279-a4b7-4941-a01a-40cff979e12a','','',NULL), -('12698','Bottle','Misc','UNDEFINED','27454e4e-350b-4756-a221-9a5e93f12d64','','',NULL), -('12699','Carinite (Pure)','Cargo','Cargo','a4260be4-d1f6-4be9-9dea-8b38e50f7a9f','','',NULL), -('12700','ATLS Keystone Livery','Paints','UNDEFINED','e3225b64-e4fb-4306-8b57-726528e8ef28','','',NULL), -('12701','RSI_Constellation_Taurus_CargoGrid_Main','CargoGrid','UNDEFINED','f2701031-8df7-49cb-8f74-ea88bdc536e8','','',NULL), -('12702','Lynx Core Red','Armor','Torso','f345cdb7-287a-44aa-a588-0331848ac656','','',NULL), -('12703','Door_Ship_Sensor_Proximity_1_25x3x4','Sensor','DoorPart','04a1cee4-1d32-4c37-9ad0-c0af5114a6d0','','',NULL), -('12704','RSI_Bengal_SCItem_Seat_Science','Seat','UNDEFINED','8b106967-7356-4bfc-b2ea-9a87d89bfcc7','','',NULL), -('12705','Hephaestanite (Raw)','Cargo','Cargo','e96bfcc9-4fa3-472e-8a69-bd4636e6efb0','','',NULL), -('12706','Personal Storage','Cargo','UNDEFINED','79e873dc-2573-4aeb-8167-133c803f1f1b','','',NULL), -('12707','RSI_Aurora_Mk2_Thruster_Main_Right','MainThruster','UNDEFINED','4815b0ec-c63f-4f37-8c86-16001776ece7','','',NULL), -('12708','MSD-212 Missile Rack ','MissileLauncher','MissileRack','85abd56d-7442-4ef1-bbe3-4d64d8540737','','',NULL), -('12709','Hurricane Waylay Camo Livery','Paints','UNDEFINED','4cc1bca7-ce20-4408-86c3-0de3b79469ea','','',NULL), -('12710','FBL-8a Arms Justified','Armor','Arms','bea49ef6-2415-4627-b1f1-dd48e167daa3','','',NULL), -('12711','Radar_Display_Screen_GREY','Display','UNDEFINED','3b4d3808-e19b-46ce-b180-2768a6194fc5','','',NULL), -('12712','Weapon_Rack_1_NONE_Special_Ballistic_AmmoOnly_001','Usable','UNDEFINED','117f4c1a-1017-4d0c-b0b4-9abc16f8c533','','',NULL), -('12713','H_Dashboard_Projector_HUD_MISC_Hull_C','Display','UNDEFINED','4b91f67d-130e-404a-aeb3-2f1e294d93ab','','',NULL), -('12714','Pulse GCD-Army Livery ','Paints','UNDEFINED','4856e1ee-9205-407f-8156-9ad61c055663','','',NULL), -('12715','Beacon Undersuit Green/Black','Armor','Undersuit','76ac8538-b925-47b7-8e2c-c3fd8df0c9fa','','',NULL), -('12716','Concept Shirt Green','Char_Clothing_Torso_0','UNDEFINED','ddb37221-84a0-4768-aa69-88ac1c40115d','','',NULL), -('12717','LeMarque Pants Dark Green','Char_Clothing_Legs','UNDEFINED','7f7b14af-fd4d-488a-bce5-2767771c2087','','',NULL), -('12718','Door Control','Door','UNDEFINED','cfb0cded-dfc6-4095-ab38-8b8902341307','','',NULL), -('12719','Internal Tank','QuantumFuelTank','QuantumFuel','d094ca35-0432-454e-b632-ae3dc0f93d77','','',NULL), -('12720','AImodule_Silent_ATC','AIModule','UNDEFINED','e651e34e-4be1-4d52-94c7-cf03e692d867','','',NULL), -('12721','Hull C Trailblazer Livery','Paints','UNDEFINED','72e521ea-238c-4b89-93b8-6946f3b5e8f6','','',NULL), -('12722','Venture Legs Dark Red','Armor','Legs','79a22a44-b37a-4e6a-baa9-8561a41a50c4','','',NULL), -('12723','AEGS_Idris_K_Turret_Backing','Misc','UNDEFINED','3f36c1ad-7c0d-468d-ad0e-bc4fbcebbdea','','',NULL), -('12724','Artimex Core Red Alert','Armor','Torso','e64ea21f-bb7d-465c-bd8e-ca16825c3fda','','',NULL), -('12725','Corbel Core Smolder','Armor','Torso','49b52040-a1f0-407f-a64b-0896274cfe82','','',NULL), -('12726','Door Control','Door','UNDEFINED','7624d1ee-d062-40f2-8932-b2836cc04a52','','',NULL), -('12727','AEGS_Javelin_Thruster_Mav_Joint_01_Invulnerable','ManneuverThruster','JointThruster','9ffd5bf7-1f03-4305-ba8b-334da45e129e','','',NULL), -('12728','Cordimon Jacket Twilight','Char_Clothing_Torso_1','UNDEFINED','065e022a-3223-4fb1-9496-1404d78008d5','','',NULL), -('12729','Door Control','Door','UNDEFINED','a010adb8-0df6-40c8-8ac5-cafd5de45070','','',NULL), -('12730','Weapon_Rack_1_KSAR_Shotgun_Ballistic_01_Common_001','Usable','UNDEFINED','290c6357-3173-4a7f-b0e9-d3d00fbd91c8','','',NULL), -('12731','DRAK_Caterpillar_CargoGrid_Module_Walkway','CargoGrid','UNDEFINED','28c084c3-442d-4b33-8a35-a213a56e9d76','','',NULL), -('12732','Ling Family Cargo Plushie','Misc','Flair_Wall_Picture','fafba6b0-cd78-4a6d-ba89-6fd9af6b70a4','','',NULL), -('12733','Door Control','ControlPanel','DoorPart','7a7c17c9-ea84-46bf-a10e-2470a0f74d26','','',NULL), -('12734','Aurora Mk I Hurston Livery','Paints','UNDEFINED','70f47a1a-49b0-4311-a883-e604d27e0230','','',NULL), -('12735','Carbon','Cargo','Cargo','28760563-352f-4248-ab8e-1b11b6b75c4f','','',NULL), -('12736','Stud','Char_Head_Piercings','UNDEFINED','896f9e3b-24ee-432d-8a94-16598e509dba','','',NULL), -('12737','Aztalan Arms','Armor','Arms','41aac635-0df3-41a0-8169-0db696b3659c','','',NULL), -('12738','Gamma Plus \"Lumen\" (3x Holographic)','WeaponAttachment','IronSight','b6f797fe-9c44-4eb1-b719-9271d7c69de8','','',NULL), -('12739','Raw Silicon','Cargo','Cargo','d3482cdd-526a-4faf-ae36-20ff618b5bc7','','',NULL), -('12740','Torpedo Burrito T-Shirt','Char_Clothing_Torso_0','UNDEFINED','7976b488-7caf-4bb3-8b97-73601177ef51','','',NULL), -('12741','Chamar Pants','Char_Clothing_Legs','UNDEFINED','9149b166-8777-4d0e-90ae-9f9d9d883994','','',NULL), -('12742','Carryable_1H_CY_garnish_cherry_1_a','Misc','UNDEFINED','092e3d4a-f546-4c64-9721-57ff00301d8c','','',NULL), -('12743','Titanium (Ore)','Cargo','Cargo','7353a0af-be77-499c-9241-824f4a74a9ce','','',NULL), -('12744','Radar_Display_VNCL_Stinger','Display','UNDEFINED','3563206d-81b0-42cf-b0c5-f179474d8cb3','','',NULL), -('12745','Vehicle_Screen_MFD_Holographic_MISC_Hull_C_M','Display','UNDEFINED','e16ffabe-3ea2-4cb3-a9b3-d63e457d391c','','',NULL), -('12746','ANVL_Pisces_Thruster_Main_Right_C8R','MainThruster','FixedThruster','e8176233-0641-42b0-8945-25ccdee4ffd2','','',NULL), -('12747','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','35e2b8cc-442d-4b71-b436-4240e716018d','','',NULL), -('12748','Tempest II-G Missile','Missile','GroundVehicleMissile','609ef22a-dfa4-4695-93ec-80019ce2242a','','',NULL), -('12749','Ship Ammunition','Cargo','Cargo','0ace073a-7aeb-4e13-977f-df5f40a84e31','','',NULL), -('12750','AAT-34 Turret','Turret','MannedTurret','d7345b0b-2640-48e5-b7d3-874ac3f0f961','','',NULL), -('12751','Spirit Crusader Livery','Paints','UNDEFINED','c99adf21-5198-4a90-b950-1221fe04975a','','',NULL), -('12752','GCD-Army Backpack','Armor','Backpack','d3814df9-6fca-4ecc-aad7-6cbe2e4d8066','','',NULL), -('12753','RSI_Constellation_Aquila_Thruster_Mav_Joint','ManneuverThruster','JointThruster','5ba6ffd4-2263-408b-966f-05c0a9ece08e','','',NULL), -('12754','SLAM','Cargo','Cargo','d15c550b-4608-4a0b-a0b2-6fc8ded7520b','','',NULL), -('12755','Redfin Energy Modulators','Cargo','Cargo','31230d21-e69d-4823-8cc0-ed7b6e708581','','',NULL), -('12756','Detara Jacket Silvertusk','Char_Clothing_Torso_1','UNDEFINED','d3142e65-41d8-4318-906b-b55fcf6d170e','','',NULL), -('12757','INTK_AEGS_Sabre_Peregrine','FuelIntake','Fuel','8c41985f-dd50-45df-b462-36a934ef2d44','','',NULL), -('12758','MASTER_screen_16x9_MiningKiosk','Display','UNDEFINED','8069e577-737b-4f18-9bef-2799ab78d67a','','',NULL), -('12759','Waldron Jacket Black','Char_Clothing_Torso_1','UNDEFINED','153c23bc-b453-4183-9139-f5dbd282dc22','','',NULL), -('12760','Manaslu Jacket','Char_Clothing_Torso_1','UNDEFINED','1219dabc-5ff1-4025-851e-752ad5f3478c','','',NULL), -('12761','Door Control','Door','UNDEFINED','c82dde7d-3702-479a-8ccf-f63c3ab7aaac','','',NULL), -('12762','TrueDef-Pro Arms Black/Silver/Green','Armor','Arms','eeb40c6b-f741-41e3-9ff9-7b21228f981f','','',NULL), -('12763','SCItemDisplayScreen_NewsScreen','Display','Default','fec969db-0b8a-4764-ac9a-07eba57903f3','','',NULL), -('12764','Door Control','Door','UNDEFINED','79d5557d-f124-481a-867c-f46c8016032a','','',NULL), -('12765','Anvil F7C-M Mk II Missile Rack','MissileLauncher','MissileRack','490389e3-4372-4d22-8a92-33fde65fac50','','',NULL), -('12766','BEHR_BallisticRepeater_PowerArray_S2','WeaponAttachment','PowerArray','742ec6a4-226e-4d3a-a9ab-ea92e6908e03','','',NULL), -('12767','stand_shop_medium_QTDrive','ShopDisplay','UNDEFINED','80b798f8-249f-4c45-b6a8-3f0e1d96d5f3','','',NULL), -('12768','CSP-68M Backpack','Armor','Backpack','f5fbd0ef-8f54-47a5-94ff-f7f9b4c323d3','','',NULL), -('12769','Strata Arms Pyrotechnic Edition','Armor','Arms','fb5abac9-35bc-4ee3-800e-f5ff709720dc','','',NULL), -('12770','Locker_Spacesuit_Lootable','Usable','UNDEFINED','e5f8b051-bf52-4ea9-adbe-03e562b92444','','',NULL), -('12771','DRAK_Corsair_Thruster_Retro_A','ManneuverThruster','UNDEFINED','4531f2eb-8e0e-4ffd-8fed-07d321e225bf','','',NULL), -('12772','bottle_drink_1_substitute_shop_4x5_a','ShopDisplay','Default','bae86268-1cef-4916-8097-89632a73bed5','','',NULL), -('12773','Pampero Boots Purple','Char_Clothing_Feet','UNDEFINED','061dd6f4-adf6-4ec0-b667-0278807063ec','','',NULL), -('12774','WeaponMount_Gun_S1_DRAK_Cutlass_Steel_Rear','WeaponMount','WeaponControl','e95f9256-e32c-4e7c-ae1c-4db28ca47ad9','','',NULL), -('12775','Stirling Exploration Helmet','Armor','Helmet','90a3923f-ba5d-403b-a0e5-c85290a22e1e','','',NULL), -('12776','Manned Turret','TurretBase','MannedTurret','2df72c31-934f-44c0-b80d-66dd6d48d9dc','','',NULL), -('12777','Utensil_Bowl','Misc','UNDEFINED','393307a6-0eae-43e9-a9f9-6e2b34c3544a','','',NULL), -('12778','Weapon_Rack_1_NONE_SMG_Common_001','Usable','UNDEFINED','b75e4aef-3ce0-4f01-bec7-d0837f00b80b','','',NULL), -('12779','Glas_Beer','Misc','UNDEFINED','c8a195bc-fad2-4992-b4df-94121a78a6b3','','',NULL), -('12780','PAB-1 Arms Yellow','Armor','Arms','19986a8a-ecfa-4f0c-ac68-47839a6e80a6','','',NULL), -('12781','RSI_Constellation_SCItem_Seat_Archimedes','Seat','UNDEFINED','ab1515e2-eb8f-4c92-b090-f0d84f240eed','','',NULL), -('12782','Enkel Shirt Sirocco','Char_Clothing_Torso_0','UNDEFINED','7df3a63a-a8cf-4a21-a725-c84f968ae64e','','',NULL), -('12783','Venture Legs Ascension','Armor','Legs','3e7ea8a4-9e62-454a-a528-fcae943d38ae','','',NULL), -('12784','RSI_Apollo_EmergencyLights_Left','AttachedPart','UNDEFINED','3054ed67-35b4-4979-9473-9e52b6f6a5a1','','',NULL), -('12785','MOLE Pyrotechnic Livery','Paints','UNDEFINED','9304dc22-42aa-4b80-b48c-4d343e7093fd','','',NULL), -('12786','Manned Turret','TurretBase','MannedTurret','3f3e91f6-cc1e-4616-9728-56459a122a6b','','',NULL), -('12787','Door','Door','UNDEFINED','201aff6c-168b-40a4-890e-0f4c1f75d2f5','','',NULL), -('12788','Fractus Gloves Yellow','Char_Clothing_Hands','UNDEFINED','15b3b18c-6370-4fa1-9a05-458b76f00f46','','',NULL), -('12789','Audio-Visual Equipment','Cargo','Cargo','601ef496-22d0-403f-9de3-d9a1869ac4dc','','',NULL), -('12790','Fortifier Helmet Maroon','Armor','Helmet','4d3306d3-f749-4422-80a4-06705556e963','','',NULL), -('12791','Retaliator Ship Armor','Armor','Medium','53fa65f0-1288-4ba7-81da-086230e37a28','','',NULL), -('12792','Door Control','Door','UNDEFINED','83c8350c-d54d-48cf-b392-d02a1cf380d4','','',NULL), -('12793','Razor Aspire Livery','Paints','UNDEFINED','f4e0ed80-2182-43ff-adaa-018a68eb86b6','','',NULL), -('12794','Seat','SeatAccess','UNDEFINED','dcfe2bf3-fa73-44f5-a9ad-2f1798bbef8f','','',NULL), -('12795','CRUS_Starlifter_Thruster_Mav_Front_M2','ManneuverThruster','JointThruster','587ba401-a257-45db-aff3-8dd5db683f29','','',NULL), -('12796','TRGT. STATUS','Seat','UNDEFINED','9764bc4d-d1bb-406e-ab6d-d589a0a1fbb6','','',NULL), -('12797','lt_tank_water_3_0125x0125x0125_a','Cargo','UNDEFINED','4b59eef2-44e6-4a5f-910a-08232b4c3f87','','',NULL), -('12798','display_components_pallet_250x125x025_a_cooler','ShopDisplay','UNDEFINED','96f77f59-397c-4d16-971f-a6f7c72d4e88','','',NULL), -('12799','Door','Door','UNDEFINED','1e7dc40c-986b-4213-8d40-b1a60a95f14e','','',NULL), -('12800','Carryable_1H_CY_utensil_shaker_1_bottom_a','Misc','UNDEFINED','6289ffe5-3d16-4a37-9965-abb813397e99','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('12801','KLWE_MassDriver_Barrel_S3','WeaponAttachment','Barrel','9771e843-52f7-45df-8911-152d0513a8ed','','',NULL), -('12802','Morozov-SH Legs Crusader Edition','Armor','Legs','f5213686-ee6e-4633-926a-b5fc4179f3b2','','',NULL), -('12803','Medical Bed','Usable','UNDEFINED','c0cf975e-0306-469d-ac64-11d27ebfee81','','',NULL), -('12804','Hurricane Stormbringer Livery','Paints','UNDEFINED','2dafe300-14ec-4a19-8379-f2a8c8033122','','',NULL), -('12805','Caterpillar Crusader Livery','Paints','UNDEFINED','5e8f217f-449e-46b1-8ede-b78bd3257b45','','',NULL), -('12806','ORC-mkV Legs Executive','Armor','Legs','5093dd01-c276-4fe0-a966-347443bab6c7','','',NULL), -('12807','PAB-1 Arms Purple','Armor','Arms','46f303ef-6d23-42ae-bcd2-f42867677216','','',NULL), -('12808','Nivala Shoes','Char_Clothing_Feet','UNDEFINED','6e812753-7ef7-4241-aea3-adbfae4390bf','','',NULL), -('12809','Avenger Olive Green Livery','Paints','UNDEFINED','b7956187-f53e-4710-bc65-ada2a2760e18','','',NULL), -('12810','Ponos Boots Tan','Char_Clothing_Feet','UNDEFINED','71a869a5-74ec-4fd8-85a6-e1a5813615fc','','',NULL), -('12811','Station_DockingTube_Default','DockingCollar','UNDEFINED','67d2c85d-3aac-49da-b07e-5d4bab6054f0','','',NULL), -('12812','Seat','Usable','UNDEFINED','62c2d461-cdd2-43a0-a25d-bc1a8ec87af9','','',NULL), -('12813','Gadget_Cabinet_kegr_fire_extinguisher_NG','Usable','UNDEFINED','c2a8a6dc-45be-42e1-bacf-45c035a4aedc','','',NULL), -('12814','Door Control','Door','UNDEFINED','36007c31-6c33-43aa-8a28-788386fb6403','','',NULL), -('12815','Lunes (Spiral Fruit)','Cargo','Cargo','5f2bd3e3-cd61-4411-9095-84da963b9b3d','','',NULL), -('12816','Nova','QuantumDrive','UNDEFINED','50a21fb7-c45d-408a-8aa3-4d12e1728811','','',NULL), -('12817','bottle_water_1_tray_b_1Port','ShopDisplay','Default','e9a228e6-2048-43a0-a6a4-4a3299971c70','','',NULL), -('12818','Strata Legs Hurston Black','Armor','Legs','8e6d5ab6-7135-4129-b302-30e355fa3589','','',NULL), -('12819','Seat','Usable','UNDEFINED','3dd2aecc-acc4-47e1-8aef-601d5ead007a','','',NULL), -('12820','Threshold Toxic Fog Pants','Char_Clothing_Legs','UNDEFINED','e1e1e991-ef23-4f2f-9034-bb0050be223a','','',NULL), -('12821','AEGS_Vanguard_Thruster_Main_01','MainThruster','FixedThruster','2f705928-ed1b-4090-b987-06956afec140','','',NULL), -('12822','Seat','SeatAccess','UNDEFINED','f455b66a-cdcd-48e2-abbb-2c7fa7e3bd5d','','',NULL), -('12823','Seat','Usable','UNDEFINED','c73f59a0-7b88-4bba-b8d0-73df591d4402','','',NULL), -('12824','Vehicle_Screen_MFD_Holographic_MISC_Fortune_ML','Display','UNDEFINED','3e329e32-6bb4-4e85-a1fb-a3638a1f5973','','',NULL), -('12825','AEGS_Vanguard_Hoplite_Thruster_Main_01','MainThruster','FixedThruster','ce6d387b-b3eb-41bc-a754-4a9a92e89ddb','','',NULL), -('12826','Door Control','ControlPanel','DoorPart','9d286ef5-2fd5-4f37-839e-ef678093308b','','',NULL), -('12827','Strode Pants Grime Blue','Char_Clothing_Legs','UNDEFINED','6e952499-cd15-4bcc-bf81-85f960a1055c','','',NULL), -('12828','KLWE_MassDriver_PowerArray_S2','WeaponAttachment','PowerArray','4cef2875-72fe-4f35-83f4-5fa023effb39','','',NULL), -('12829','Asgard 2955 Ship Showdown Poster','Misc','Utility','9ac8aa42-e352-4722-a3f8-23d235edc167','','',NULL), -('12830','ORIG_315p_Thruster_Main','MainThruster','FixedThruster','74987a1a-7c8f-4c02-aae8-655f1aec9458','','',NULL), -('12831','C1 Spirit 2954 Ship Showdown Poster','Misc','Utility','00d16520-df84-4d78-9549-9f2056a2d5b2','','',NULL), -('12832','Corsair 2953 Ship Showdown Poster','Misc','Utility','53cf3e26-8699-4d4d-b989-84d5590c5b30','','',NULL), -('12833','Intrepid Epoque Livery','Paints','UNDEFINED','ef030ea5-66b1-4cf0-a14d-bfcdcc966a6c','','',NULL), -('12834','Door','Door','UNDEFINED','3c2c9370-4ed7-4f54-9f60-a55fe378a3d3','','',NULL), -('12835','Constellation Nightbreak Livery','Paints','UNDEFINED','64876cf8-2ff4-4582-877e-01820f8fea17','','',NULL), -('12836','Morozov-SH Arms Thule','Armor','Arms','b8123f69-69af-48cf-acb5-e015f28467d4','','',NULL), -('12837','AEGS_Sabre_Firebird_Winglet_Left_Collector','Misc','UNDEFINED','47ac894f-6591-463b-870a-0a9fc9b1afbb','','',NULL), -('12838','Quantainium','Cargo','Cargo','a86bb1be-08dc-4ee2-995a-0d83f7e75c4a','','',NULL), -('12839','Internal Tank','QuantumFuelTank','QuantumFuel','41babbef-7581-49c4-a98f-3982e9887251','','',NULL), -('12840','Vehicle_Screen_Physical_Holo_Right','Display','UNDEFINED','7116e04a-c5ff-489a-8126-e7d0575c6d15','','',NULL), -('12841','heavyArmor_core_skelExt_test','Armor','Torso','2327979a-29ed-486e-a6e7-e971a2bd114a','','',NULL), -('12842','Ardent Boots Olive','Char_Clothing_Feet','UNDEFINED','cdb7c21d-bdda-40f5-942c-b1fb1234e8cb','','',NULL), -('12843','MASTER_ht_crate_1SCU','Cargo','UNDEFINED','4024026d-3919-4007-ae5d-edca53e54a03','','',NULL), -('12844','PAB-1 Legs Purple','Armor','Legs','b29cf453-505d-4b48-8944-d6deb6205037','','',NULL), -('12845','Fortune Sunspot Livery','Paints','UNDEFINED','9f767019-5ac2-4b26-9c03-9b4b73770f0f','','',NULL), -('12846','ARGO_MPUV_1T_Thruster_Aux_Fixed_03','ManneuverThruster','FixedThruster','09e60ecc-2b4e-4650-9e48-c61f59a7ed56','','',NULL), -('12847','Argus Helmet Black/Silver/Green','Armor','Helmet','d9423d1d-de54-4712-a8ec-418d95792184','','',NULL), -('12848','Potassium','Cargo','Cargo','1b905675-2e46-4f16-9d1e-871248a02eb4','','',NULL), -('12849','Remote Turret','Turret','GunTurret','15e36eee-4ea4-4e13-99e0-57fa58dd9765','','',NULL), -('12850','CNOU_Nomad_Thruster_Mav_Joint','ManneuverThruster','JointThruster','507ede92-d76f-43d5-86ba-173b2689f3e1','','',NULL), -('12851','TrueDef-Pro Core Black/Pink/Purple','Armor','Torso','7ba7671d-977d-4909-9a26-2448308291b6','','',NULL), -('12852','Seat','Usable','UNDEFINED','ab80f3bf-199b-41fb-9d64-143fc9786ab4','','',NULL), -('12853','Medical Bed','Usable','UNDEFINED','368b49db-90aa-42b7-bd7d-701cf61c0d10','','',NULL), -('12854','Torrent Module','MiningModifier','Gun','d1b1792f-21bc-456f-ae53-20f301920a55','','',NULL), -('12855','Decari Pod','Cargo','Cargo','4a53297d-6e42-43aa-a6a3-7c333d0fa17d','','',NULL), -('12856','Seat','Usable','UNDEFINED','37e21a8f-b3a1-4b0f-8c0c-9a684a0d5a9c','','',NULL), -('12857','Stratus Pants Purple','Char_Clothing_Legs','UNDEFINED','9901cce1-5d50-4a4f-8b14-d47816ac4fae','','',NULL), -('12858','Reliant Toshima Turret','Turret','GunTurret','0dee00c9-4547-4a98-ab0a-57911c631a3e','','',NULL), -('12859','Corundum','Cargo','Cargo','5b87dfc3-f5cc-4eab-90d2-5f13eb5e444b','','',NULL), -('12860','Cruiser Dog','Food','Junk','bbe3f611-07ba-4029-88b3-1b8bd300562b','','',NULL), -('12861','Book','Misc','UNDEFINED','4b8701fa-bcad-46b8-99f8-a84acb070681','','',NULL), -('12862','AEGS_Vanguard_Hoplite_Thruster_Main_02','MainThruster','FixedThruster','af63298e-f24b-424c-8163-9faa23830e63','','',NULL), -('12863','INTK_VNCL_Glaive','FuelIntake','Fuel','04a5f8df-8eee-4390-a9d2-16e7de1918f0','','',NULL), -('12864','ANVL_Hornet_F7CM_Mk2_Thruster_Retro_Left','ManneuverThruster','Retro','5ef0bfbd-9d71-4465-aad7-29262c382011','','',NULL), -('12865','Door Control','ControlPanel','DoorPart','77943466-ab96-4308-9c38-6992155b8771','','',NULL), -('12866','f_human_mannequin_legacy_outlaw_light','ShopDisplay','UNDEFINED','a01767ed-a364-4d59-81d4-643fc502e76b','','',NULL), -('12867','Mivaldi Pants Purple','Char_Clothing_Legs','UNDEFINED','765597cb-b501-42e9-b42b-a3598dce5433','','',NULL), -('12868','Hercules Starlifter Timberline Livery','Paints','UNDEFINED','80cf5c5f-067f-4608-96d2-fd9e5f66d2ad','','',NULL), -('12869','MISC_Starlancer_Thruster_Front_VTOL','ManneuverThruster','FixedThruster','673c8af2-21d2-4db6-893e-0ff58f2e7c02','','',NULL), -('12870','Seat','Usable','UNDEFINED','32327282-3e7a-4b56-93eb-e7f59acf6009','','',NULL), -('12871','Carryable_1H_CY_antagonist_1_a_PlayerCannotUse','Misc','UNDEFINED','2f38784a-9b82-4e78-a853-c1c78c9314ed','','',NULL), -('12872','Yormandi_Weapon','Weapon','Medium','71909a88-9e16-43cf-b3e2-995e9f4dabee','','',NULL), -('12873','DRAK_Herald_Thruster_Mav_Fixed_Top','ManneuverThruster','FixedThruster','cbd0ad81-9356-48e9-a097-27868d64fd2a','','',NULL), -('12874','Door Control','ControlPanel','DoorPart','9072623c-ccae-4a63-9b63-cbf73d7f4f0a','','',NULL), -('12875','Star Kitten Racing Helmet','Armor','Helmet','14cf6134-2f3d-4902-9894-1c0dfd530b37','','',NULL), -('12876','Snaggle Stick (Tikoro Bite)','Food','Bar','92ef1f8b-0fb4-49cc-9f7b-b9bd023c1e6b','','',NULL), -('12877','Morozov-SH-C Helmet Iceflow','Armor','Helmet','de174fff-a660-4290-ba49-63ee75d217c9','','',NULL), -('12878','Morozov-SH-C Helmet Brushdrift','Armor','Helmet','5661d6f0-43a3-43ad-8983-7c558b157fb4','','',NULL), -('12879','BANU_Defender_Thruster_Mav_Bottom','ManneuverThruster','JointThruster','f0aeb886-1cd0-487b-857c-5d28d0c0c698','','',NULL), -('12880','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','a3b2f085-073d-49b0-8c21-3c80a3bd4e49','','',NULL), -('12881','Livia Shirt','Char_Clothing_Torso_0','UNDEFINED','85e8ebae-1293-4e8e-b65a-63bb7a4840d1','','',NULL), -('12882','MacFlex Core','Armor','Torso','f4769b2b-0997-4c68-8b47-38cc93041a22','','',NULL), -('12883','Beacon','QuantumDrive','UNDEFINED','b5cbef86-f37f-4e05-8aff-e0f61afe166e','','',NULL), -('12884','Revenant Pod','Cargo','Cargo','aa59b457-ec0a-44f3-a9e6-9ab728d6dc26','','',NULL), -('12885','Seat','Usable','UNDEFINED','0d895565-713a-4350-9070-ea012f43647d','','',NULL), -('12886','DRAK_Cutlass_Thruster_Maneuver_Front_Bot','ManneuverThruster','JointThruster','5fa0d263-62ce-4d08-b19a-2c81b15a7c37','','',NULL), -('12887','GATS_BallisticCannon_Barrel_S1','WeaponAttachment','Barrel','5d42fb2a-f1dd-4e84-ad56-cb5259f35420','','',NULL), -('12888','Projector_HUD_Pilot_X1','Display','UNDEFINED','79f5633b-f524-4f06-ae9b-d6d142126d15','','',NULL), -('12889','DRAK_Cutlass_Thruster_Maneuver','ManneuverThruster','JointThruster','13eee13d-a9a1-4aad-9a33-ffc87f4912c6','','',NULL), -('12890','SureGrip S2 Tractor Beam','TractorBeam','UNDEFINED','8c16ee3d-78fb-4fef-a369-b3d42952ec33','','',NULL), -('12891','Elevator','Elevator','UNDEFINED','d09a4ab5-5070-4c55-9b77-6790007f0d06','','',NULL), -('12892','Yormandi Tongue','Misc','Harvestable','2845e7ee-2f52-471b-a0a7-05ca11908fe6','','',NULL), -('12893','HRST_LaserScatterGun_FiringMechanism_S2','WeaponAttachment','FiringMechanism','5ee2438a-3d18-4e23-a847-b8d848ce918a','','',NULL), -('12894','Seat','Usable','UNDEFINED','ed72c733-17fa-4440-a6ad-72c69ebac7d3','','',NULL), -('12895','pacheco_outfit_02','Char_Clothing_Torso_1','Female','13539d87-bb9a-480d-96bf-5a0617a25a75','','',NULL), -('12896','Bed','Usable','UNDEFINED','528e90fb-6d2a-463b-889d-81f5708448d2','','',NULL), -('12897','Utensil_Plate_MacAndCheese','Misc','UNDEFINED','f176ac56-8d93-4e48-a535-599ec94773e9','','',NULL), -('12898','Door_ChipReader_Vault_001','Door','UNDEFINED','610e1adf-a802-465d-9bb3-d789cb1993a3','','',NULL), -('12899','Remote Turret','Turret','PDCTurret','d1880dee-f961-4a03-9d7b-b25fb76fa2ae','','',NULL), -('12900','Flight Blade','FlightController','UNDEFINED','a1a74fb1-856b-4c6c-913a-816d17333b7d','','',NULL), -('12901','Col_A_Airlock_Single_Small_Ext','Door','AirlockPart','2abdd81a-04bd-41c5-9d0a-75c2f777d1c4','','',NULL), -('12902','Railing_Straight_2m_Lowtech_Open_A','Usable','UNDEFINED','1181baa8-7855-4838-a1aa-e5001f78acfa','','',NULL), -('12903','StarBurn','PowerPlant','Power','1fc13db3-38bd-40b4-aada-3d4d665d1679','','',NULL), -('12904','Cheese and Tomato Pizza (Slice)','Food','Consumable','50bf8193-f515-4364-a142-07d2adf9db3e','','',NULL), -('12905','stand_shop_small_Cooler','ShopDisplay','UNDEFINED','dfd8e51f-7985-49d9-bf66-6b23eb189f95','','',NULL), -('12906','bar_box_snagglestick_tikoro','ShopDisplay','Default','7dc13c3c-2e60-436f-a060-490faf911be5','','',NULL), -('12907','ORIG_350r_Thruster_Mav_Fixed_01_Top','ManneuverThruster','FixedThruster','cb968bf8-ad28-4ae5-93bc-979f847897ec','','',NULL), -('12908','AIModule_Unmanned_PU_PDC','AIModule','UNDEFINED','15881eca-d6f4-47fc-a5bb-633ca4bba06b','','',NULL), -('12909','MISC_Fury_Thruster_FixedMav_Bottom','ManneuverThruster','FixedThruster','347b5c12-71a3-4ee8-ab10-67e1cd617097','','',NULL), -('12910','AEGS_Vanguard_SCItem_Seat_Bed_Upper_Sentinel','Seat','UNDEFINED','9785a15a-9391-4fbb-a614-2ccf161e153e','','',NULL), -('12911','TRGT. STATUS','Seat','UNDEFINED','3920e7bc-d0d4-4520-92e6-7be113b0399b','','',NULL), -('12912','Fortifier Helmet Base','Armor','Helmet','726203eb-24e1-4430-bd80-20e7b86f8e41','','',NULL), -('12913','X1 2954 Auspicious Red Dragon Livery','Paints','UNDEFINED','59a459cf-9cbd-4c6f-8cb5-4b5013cf205f','','',NULL), -('12914','CargoBox_050x050x050_Plastic_Stacked_3','Cargo','Cargo','18e98963-bbad-4f73-8e54-14d732e0300f','','',NULL), -('12915','Flight Blade','FlightController','UNDEFINED','f48d2da6-6484-4f25-a29b-754464e83fb8','','',NULL), -('12916','BEHR_LaserCannon_Barrel_S9','WeaponAttachment','Barrel','4d33fb97-a26b-4332-b4a2-d7805d13b865','','',NULL), -('12917','ClipVest Work Harness Orange','Char_Clothing_Torso_1','UNDEFINED','4ffc6923-1ac6-4ee9-8a18-445ec049948f','','',NULL), -('12918','Door Control','Door','UNDEFINED','6fef2792-da2b-4023-8d09-ffe1dd4daebc','','',NULL), -('12919','Door_NoRoomConnector_CSV_ComponentBay_Lifesupport','Door','UNDEFINED','2138df39-e8a9-4df5-a1e6-3c31895817cf','','',NULL), -('12920','Vehicle_Screen_Physical_L21_R','Display','UNDEFINED','61d86cd1-0735-4d08-be22-5326e6ece4ae','','',NULL), -('12921','Manned Turret','TurretBase','MannedTurret','8694d2bf-a5d9-476f-9b1e-478a4d299daf','','',NULL), -('12922','GVSR Repeater','Weapon','Gun','537c6570-d7ec-45e7-9f71-5ac63a3893c6','','',NULL), -('12923','Seat','SeatAccess','UNDEFINED','7c334921-1347-44cd-a983-65fed6b86e48','','',NULL), -('12924','Deo Shirt Yellow','Char_Clothing_Torso_0','UNDEFINED','09475a75-d375-477c-bfc4-ad6423f0ad6f','','',NULL), -('12925','INTK_MISC_Starfarer_Gemini','FuelIntake','Fuel','9863ca50-0aa3-4fce-bae9-31ac32c908d9','','',NULL), -('12926','Campo Shoes Brick','Char_Clothing_Feet','UNDEFINED','baecfe80-30a7-4e69-8c60-84ce0dd20e20','','',NULL), -('12927','Exo-8 Helmet (Used)','Armor','Helmet','f8debb4d-3803-48b8-b225-74350be60751','','',NULL), -('12928','Irradiated Kopion Horn','Misc','Harvestable','43b02152-357d-4ec6-ac98-5191bcd2d238','','',NULL), -('12929','Door','Door','UNDEFINED','1c3f3404-32ab-4a06-9761-be6a75a30367','','',NULL), -('12930','Reign-3 Repeater','Weapon','Gun','aa7c924e-3f3b-4cea-a948-77753e2b387e','','',NULL), -('12931','WillsOp Long Look Radar','Module','UNDEFINED','02934e18-0210-4789-887c-1efcc8fc5008','','',NULL), -('12932','Carryable_1H_SQ_Datapad_Fluff_Orb_GenericGang_005','Misc','UNDEFINED','8c703def-f131-4797-a669-489d47b1b89b','','',NULL), -('12933','Attrition-5 Repeater','Weapon','Gun','2c9b3880-a108-4746-a6cd-7e2b04feee36','','',NULL), -('12934','Internal Tank','QuantumFuelTank','QuantumFuel','dc7d2f9d-19ec-4c74-a554-3c97b4432844','','',NULL), -('12935','Seat','Usable','UNDEFINED','1e6fb137-0e53-4ef8-b054-49a76d78f3f0','','',NULL), -('12936','Inert Materials','Cargo','Cargo','104ceb6e-4d78-428e-8a02-2620ce1e1ecd','','',NULL), -('12937','RSI_Zeus_ES_Thruster_Main_Bottom_Right','MainThruster','UNDEFINED','878210ac-4b9a-4fef-9495-38117d3afc49','','',NULL), -('12938','Tin','Food','Tin','ca6bdb21-f83d-4b8e-8c10-0c76e828cb7c','','',NULL), -('12939','PTV Cherry Livery','Paints','UNDEFINED','fec9a725-e161-4167-839c-a77beb0cadd4','','',NULL), -('12940','Defiant','PowerPlant','Power','ad59f651-83d0-42f3-839a-8f055243ba6b','','',NULL), -('12941','RSI_Aurora_ES_Thruster_Retro','MainThruster','FixedThruster','29100bb6-46e1-4146-84e1-d6036299a4b9','','',NULL), -('12942','Carryable_1H_CY_drug_painkillers_2_d','Misc','UNDEFINED','6f3d8751-830e-4741-902b-699659406044','','',NULL), -('12943','fusepanel_col_b','Cargo','UNDEFINED','238d0cf6-d8f0-4dce-a44c-ecbe8346f643','','',NULL), -('12944','ARMR_DRAK_Cutlass_Steel','Armor','Medium','87d98d4c-6422-4ebf-956f-fc451ef16001','','',NULL), -('12945','Ventra Gloves Grey','Char_Clothing_Hands','UNDEFINED','0a78e20c-f62d-424a-9f49-2445d5c1bb8f','','',NULL), -('12946','Agricium','Cargo','Cargo','e18c83d7-a53b-400e-909d-4696495454f5','','',NULL), -('12947','Dominance-1 Scattergun','Weapon','Gun','beabe016-3fb4-4e3f-b464-374076d91f04','','',NULL), -('12948','Seat','Usable','UNDEFINED','a7c3a50e-3e4d-45e9-8625-ca0afecb6cee','','',NULL), -('12949','P8-AR \"Blackguard\" Rifle','Weapon','Medium','3e59decb-1be4-4477-b3f5-36114f798cab','','',NULL), -('12950','Seat','Usable','UNDEFINED','37bd5537-ba6b-4de6-8f0c-e382c74c380f','','',NULL), -('12951','Door Control','Door','UNDEFINED','883e8f41-51f9-4453-9d4f-7b69b1371020','','',NULL), -('12952','ARMR_CRUS_Starlifter_M2','Armor','Medium','9742081b-4a7e-42e1-952e-0915241961ca','','',NULL), -('12953','Dashboard','SeatDashboard','UNDEFINED','cfae056c-8bcb-47ea-a176-b564ea42466b','','',NULL), -('12954','mobiGlas Sand Casing','MobiGlas','Personal','b486e559-275d-45f9-ad66-499bbe55ada7','','',NULL), -('12955','Seat','Usable','UNDEFINED','610dd205-a71a-408e-9e10-1a824df69c06','','',NULL), -('12956','TE_weapon_box__klwe_rifle_energy_01','Misc','UNDEFINED','0e58d5cc-5245-4383-a0c4-4683c865952d','','',NULL), -('12957','Door Control','Door','UNDEFINED','f8a3ec3e-6fcf-48c7-9734-7366a346192d','','',NULL), -('12958','Vulture 2953 Best in Show Livery','Paints','UNDEFINED','ddcb5aa0-f3f7-4a18-80a1-840e13ba5b1c','','',NULL), -('12959','DustUp Core Scorched','Armor','Torso','b8701dff-1f61-4cf3-954b-524bb66b4089','','',NULL), -('12960','GVSR Repeater','Weapon','Gun','2f68375a-3c66-4e02-9d1f-5d7f37c12725','','',NULL), -('12961','Pint Glass','Drink','UNDEFINED','9edc6ea5-fa76-4617-9a33-33b8ee756ba1','','',NULL), -('12962','Enkel Shirt','Char_Clothing_Torso_0','UNDEFINED','a98c29e0-4cc2-4023-91d0-4133f5583332','','',NULL), -('12963','Ponos Boots Seagreen','Char_Clothing_Feet','UNDEFINED','b5f12620-8f8f-44ad-9880-943be43b1a1a','','',NULL), -('12964','Shizhen Surgical Head Cover','Char_Clothing_Hat','UNDEFINED','02d7d9cb-80f2-45af-aa4d-e9bfdd00c560','','',NULL), -('12965','DockingTube_Fuel_Ports_ANVL_Pisces','DockingCollar','UNDEFINED','a60fba3b-1afb-485e-b9e5-80c7ef96b9ef','','',NULL), -('12966','Internal Tank','FuelTank','Fuel','29ce40e8-2088-478a-a492-23fe44ec6c6f','','',NULL), -('12967','Paint_Perseus_Green_Green_Black','Paints','UNDEFINED','d40f3949-cd6f-4f50-8add-6e1cea833294','','',NULL), -('12968','can_drink_3_energy_a','Drink','Can','c687f8af-79b2-4eee-ae05-2eea5aa99c82','','',NULL), -('12969','Standing_Harness_ESPR_Prowler_A','Usable','UNDEFINED','bd2b2e67-abc7-4763-9916-53215ee689b8','','',NULL), -('12970','Table_Booth_2_Seat_ARGO_RAFT','Usable','UNDEFINED','8bf8392e-8ace-43c1-a9e7-eeadad54aa56','','',NULL), -('12971','AEGS_Javelin_SCItem_Seat_CoPilot','Seat','UNDEFINED','001ed5c3-d606-4063-b75e-5285ad41de6d','','',NULL), -('12972','Carryable_1H_CY_fruit_alien_4_a','Food','Plant','24dad260-3901-4c18-b25d-116d2993bac3','','',NULL), -('12973','RSI_Hermes_LightCap_Center','AttachedPart','UNDEFINED','36879b18-d594-4b9c-9b47-2f5924fed8ca','','',NULL), -('12974','Davlos Shirt Mustard','Char_Clothing_Torso_0','UNDEFINED','836a167c-2da3-4742-b528-186e22f8132e','','',NULL), -('12975','J-5 Helmet Teal','Armor','Helmet','d780ced3-4826-40d5-b271-0eabff2dbd87','','',NULL), -('12976','AEGS_Retaliator_OC_Rear','Room','UNDEFINED','09e97923-f5be-4c80-b209-7a87dd359959','','',NULL), -('12977','Keldur Hat and Walnut Goggles','Char_Clothing_Hat','UNDEFINED','bee5c55c-143f-4dd6-be6f-6b56b3816b1a','','',NULL), -('12978','Manned Turret','TurretBase','MannedTurret','8c77456e-9704-4390-82b5-2b0f805e53d1','','',NULL), -('12979','Artisan Apron Whammer\'s','Char_Clothing_Torso_1','UNDEFINED','596c9311-b3b9-47ab-a3ca-fe13391eeeef','','',NULL), -('12980','Caterpillar Polar Livery','Paints','UNDEFINED','6217cead-b368-466e-9060-026d60409288','','',NULL), -('12981','Medical Supplies','Cargo','Cargo','32ff3328-7863-4a31-aa24-60b4f73646d9','','',NULL), -('12982','behr_ltp_01','FPS_Deployable','Small','bd0eb618-4df9-4af3-9b2e-77fd6f174297','','',NULL), -('12983','Dust Devil Armor Arms','Armor','Arms','dd9f47b0-64bf-4ad7-bbb9-358270296e74','','',NULL), -('12984','Weapon_Rack_1_BEHR_GLauncher_Common_001','Usable','UNDEFINED','7222597e-294b-4ac4-8714-4c65b8ef8969','','',NULL), -('12985','300 Series Golden Dawn Paint','Paints','UNDEFINED','368dc2a2-7b27-485a-8266-fa16efb392e7','','',NULL), -('12986','fruit_plant_1_b_5003','Misc','UNDEFINED','37710d39-17dc-4ae5-a78a-311c271b1cfc','','',NULL), -('12987','Seat','Usable','UNDEFINED','de5e6a1e-343e-4689-8abb-1411083ad485','','',NULL), -('12988','fruit_plant_1_b_4003','Misc','UNDEFINED','8ba9cf08-ddf7-446d-8c04-92f887bc45d2','','',NULL), -('12989','Nox Harmony Livery','Paints','UNDEFINED','a6368847-8335-46e2-bde8-428e6ea6dad5','','',NULL), -('12990','Tuvois Jacket Seagreen','Char_Clothing_Torso_1','UNDEFINED','79e349ea-5dcb-427d-81f6-7fd567d807a6','','',NULL), -('12991','fruit_plant_1_b_6003','Misc','UNDEFINED','2c6ea39d-5f1e-472f-b73c-92168a243a03','','',NULL), -('12992','Seat','SeatAccess','UNDEFINED','f963131e-e661-4bac-8c39-c1b780f6659e','','',NULL), -('12993','Starlancer ArcCorp Livery','Paints','UNDEFINED','d99e8f06-e91d-44e2-aed9-0005e1f19926','','',NULL), -('12994','Black Mountain Sujin Tea (Mild)','Drink','Can','d9e25f7b-baaa-4bf1-8622-e7223457e32f','','',NULL), -('12995','LH86 \"Takahashi Racing\" Pistol','Weapon','Small','c5b90a4e-d944-408d-afaa-48ec0cf571fb','','',NULL), -('12996','battaglia_pants_01','Char_Clothing_Legs','Female','88cc8eb7-903f-4a3d-a391-8eeb23261fab','','',NULL), -('12997','Door Control','ControlPanel','DoorPart','bb3d32cd-bd96-4735-826a-3eeb0821e28a','','',NULL), -('12998','IAE 2952 T-shirt Black','Char_Clothing_Torso_0','UNDEFINED','934b6be5-af09-41bc-a804-c0857200548e','','',NULL), -('12999','fruit_tray_1_e','Misc','UNDEFINED','b7279046-1aea-4a7b-8c18-8f17cfd379bd','','',NULL), -('13000','BEHR_BallisticGatling_Ventilation_S4','WeaponAttachment','Ventilation','2a6c769f-c625-458c-b4ab-f24cf03d32cf','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('13001','INTK_RSI_Zeus','FuelIntake','Fuel','fda2e93a-c040-45f4-b3e3-6b16de9e6f2f','','',NULL), -('13002','Molina Mold Treatment','Cargo','Cargo','e1307ad1-2dc6-4585-8b16-950bd15f7ea3','','',NULL), -('13003','TRGT. STATUS','Seat','UNDEFINED','ba138bcb-932b-4f56-a6e4-e6faea760387','','',NULL), -('13004','Armor_Crate_CZ_Firerat','Usable','UNDEFINED','6cb98946-01b8-477c-a017-989804b98d4b','','',NULL), -('13005','MISC_Hull_C_Walkway_Int','Room','UNDEFINED','27c491b8-d4b8-464a-a5b9-ab3451fb5747','','',NULL), -('13006','Cutter Ghoulish Green Livery','Paints','UNDEFINED','09c33654-2d48-4823-8540-d2e16ee0021f','','',NULL), -('13007','Aurora Mk I Electric Blue Livery','Paints','UNDEFINED','14528f27-4f48-4007-aa58-eebfad0890a0','','',NULL), -('13008','Morozov-SH-I Helmet Pyrotechnic Iceflow','Armor','Helmet','24c8ca71-b282-4147-9347-a984ad61ae16','','',NULL), -('13009','Oracle Helmet Rager','Armor','Helmet','d82a35f5-26ca-4a44-bb67-b845be8b7d46','','',NULL), -('13010','Door Control','ControlPanel','DoorPart','226ba7b4-3316-471f-952c-039ced1f921e','','',NULL), -('13011','Large Container','Container','UNDEFINED','da7795c6-6aa6-498d-a1a5-531b2a15e852','','',NULL), -('13012','Luminalia Gift','Cargo','Cargo','8fe756f1-5191-4e56-8bb6-0bced055efa7','','',NULL), -('13013','CNOU_Nomad_Dashboard_Pilot','SeatDashboard','UNDEFINED','250475b7-0d7e-4576-94b4-d3c7a0f46b85','','',NULL), -('13014','AEGS_Sabre_Firebird_Thruster_Mav_Joint_03','ManneuverThruster','JointThruster','76e60b6b-b82d-4388-b545-194c01702e5c','','',NULL), -('13015','AEGS_Hammerhead_Thruster_Main','MainThruster','FixedThruster','ae103cf6-d501-4b6a-bdaf-2b3d8bb27da8','','',NULL), -('13016','Citadel Legs Roughshod','Armor','Legs','921e82ea-0ae8-461d-9822-b26c64958c10','','',NULL), -('13017','RSI_Aurora_GS_LX_Thruster_Mav_Joint','ManneuverThruster','JointThruster','322d861f-e104-4127-8ecf-138c77dc56b0','','',NULL), -('13018','wall_display_cabinet_large_left_14x03x03_a','ShopDisplay','Default','6ee6ff4d-5285-4c33-8972-96734e3eb04a','','',NULL), -('13019','Battle of Vega II Vanduul Skull','Misc','Personal','524a8cec-e520-4798-9079-69e186ec0f99','','',NULL), -('13020','Golden Medmon','Misc','Harvestable','57d8986e-d354-4a22-bcf8-f38f80630974','','',NULL), -('13021','Shiv Nightmare Livery','Paints','UNDEFINED','059a058c-942f-4372-92e1-7ff69f3fa096','','',NULL), -('13022','Remote Turret','Turret','GunTurret','2822287e-651d-4c5c-897c-aab88e062252','','',NULL), -('13023','PT3 (3x Holographic)','WeaponAttachment','IronSight','cafb725f-9ccf-4ec3-959d-1a94ac0512b6','','',NULL), -('13024','Flight Blade','FlightController','UNDEFINED','bd3866cb-c7ec-41b0-aeec-20cd402a3673','','',NULL), -('13025','300 Series Obsidian Paint','Paints','UNDEFINED','1c767138-fa28-43c2-b28e-b789de849f38','','',NULL), -('13026','Morozov-SH Legs Aftershock','Armor','Legs','974e7ba4-3434-493f-9dff-43ca935fdaea','','',NULL), -('13027','Morozov-SH-C Helmet Spitfire','Armor','Helmet','0687b7c1-d343-4666-bc6a-bfdf36d36854','','',NULL), -('13028','TMBL_Nova_Component_Power','Player','UNDEFINED','027eb61b-4ff7-478e-a516-9c1d2e294463','','',NULL), -('13029','ATC_PanelScreen_Levski_2','Misc','UNDEFINED','515bcb8b-8b4f-4971-a7e1-009df4246295','','',NULL), -('13030','m_human_mannequin_slaver_light','ShopDisplay','UNDEFINED','5535a336-5895-4c37-94fd-ee8bbc766f21','','',NULL), -('13031','Ht_D_Airlock_Small_GreenZone','Usable','UNDEFINED','685ff44d-4ac3-4800-a4b8-74d6e0a63057','','',NULL), -('13032','Argus Helmet Aqua/Black','Armor','Helmet','6e252804-db64-4ea6-a0c9-9b82034100d5','','',NULL), -('13033','Door Control','ControlPanel','DoorPart','9a02851c-4eb6-491d-8fdb-cf4350bbcfd5','','',NULL), -('13034','VNCL_Scythe_Thruster_Retro_Fixed_Right','ManneuverThruster','FixedThruster','8ab734c3-a0d1-4897-9c8e-d91a60507abd','','',NULL), -('13035','Internal Tank','QuantumFuelTank','QuantumFuel','ae77a54e-4763-435c-a49f-4cdb8c807ed3','','',NULL), -('13036','ADP Core Yellow','Armor','Torso','f3213ddb-0cf8-41ea-bd56-30de1ff8fd6e','','',NULL), -('13037','Tripledown Pistol Magazine (12 Cap)','WeaponAttachment','Magazine','02f5904f-62ef-48e7-b63c-4ea3d4a7385f','','',NULL), -('13038','AEGS_Retaliator_SCItem_Seat_Bed_Lower_Right','Seat','UNDEFINED','fa843720-1548-4779-a00e-c28217172b30','','',NULL), -('13039','Storm Frost Line Livery','Paints','UNDEFINED','3241f47d-7df6-4141-8b71-3574bbb33b0b','','',NULL), -('13040','Paint_MPUV_Transport','Paints','UNDEFINED','d2adec5c-215d-4e71-9d77-7efa1c08c28a','','',NULL), -('13041','Tuvois Jacket White','Char_Clothing_Torso_1','UNDEFINED','54e26c28-c3d8-40df-9681-f69fd755875c','','',NULL), -('13042','Stims','Cargo','Cargo','6cee50cf-d841-40d2-808d-1901aeabcb83','','',NULL), -('13043','Door Control','Door','UNDEFINED','b121ed6c-7128-4161-994d-27f9ea2f4acf','','',NULL), -('13044','FBL-8a Helmet (Modified)','Armor','Helmet','842e4d6b-a00d-436e-b130-9356c92b1fe2','','',NULL), -('13045','Sadaryx','Cargo','Cargo','60b2ec83-8cd7-4b1e-adb6-ce2a417249ea','','',NULL), -('13046','RSI_Apollo_DockingTube','DockingCollar','UNDEFINED','4563405f-fd04-8088-f2d5-3adf01c9af91','','',NULL), -('13047','315p Ship Armor','Armor','Medium','3a0a0de4-43ef-408c-8f7a-d837c0817962','','',NULL), -('13048','Table_1_Seat_DRAK_Cutter_Rambler','Usable','UNDEFINED','fa833d48-9d5a-434b-8ddb-2e039c3e2841','','',NULL), -('13049','INTK_ANVL_Hornet_F7C','FuelIntake','Fuel','35d390ad-d905-4bce-9414-ddaffa9f580a','','',NULL), -('13050','Bannock Jumpsuit Cool Ash','Char_Clothing_Torso_1','UNDEFINED','c64b0fd2-94a7-4084-99d1-a5e1e192b109','','',NULL), -('13051','Odyssey II Helmet Blue','Armor','Helmet','9b8f5c96-4ad3-4469-b2e2-ec6a1d5a98b9','','',NULL), -('13052','Anvil Decoy Launcher','WeaponDefensive','CountermeasureLauncher','0df50086-8261-431b-822e-5549ff825e40','','',NULL), -('13053','Inquisitor Arms Ignitor','Armor','Arms','eaa35b8d-b3a4-4ebe-a416-bb650c7a8fe8','','',NULL), -('13054','CNOU_HoverQuad_Thruster_Main','MainThruster','FixedThruster','f0175cd8-e827-4863-a45d-4a88421cbf56','','',NULL), -('13055','Personal Care Product','Misc','UNDEFINED','998d7404-6a1c-45ff-8ecb-1eedbc89cd6b','','',NULL), -('13056','Door_Hangar_Sensor_Proximity_3x5x3','Sensor','DoorPart','15bfe122-9740-4981-a824-1fc84facd620','','',NULL), -('13057','Skellig Pants Blueband','Char_Clothing_Legs','UNDEFINED','4e87f809-96b3-4b9f-8e42-dc000b63b296','','',NULL), -('13058','Door Control','ControlPanel','DoorPart','d2ac9210-7f9e-46a4-b132-6eb495b3c481','','',NULL), -('13059','Amaris Shirt','Char_Clothing_Torso_0','UNDEFINED','226926dd-924e-4098-a127-325f26cd8710','','',NULL), -('13060','Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','fd229fec-7305-44ef-84dc-cef313acfc2f','','',NULL), -('13061','Strata Legs Pyrotechnic Edition','Armor','Legs','6a755192-2295-4e1f-a77a-c039f8be5e5a','','',NULL), -('13062','AEGS_Sabre_Thruster_Mav_BottomFL','ManneuverThruster','JointThruster','f64a1d8b-c6ff-4d02-a75a-266ce2974932','','',NULL), -('13063','f_human_mannequin_sandNomad_undersuit','ShopDisplay','UNDEFINED','af85622b-7c1d-4387-a1e7-7ee89fd41642','','',NULL), -('13064','Kareah_Hostility_ConsoleScreen_01','Display','UNDEFINED','3381ae83-16b8-4489-b7fc-e17681370d34','','',NULL), -('13065','Wolf Sylvan Camo Livery','Paints','UNDEFINED','84451f94-fc31-41c4-ba0f-77f671a6e99c','','',NULL), -('13066','Door Control','ControlPanel','DoorPart','0a3f8073-f248-484e-8820-8be91f99b2ee','','',NULL), -('13067','CNOU_Mustang_Thruster_Retro','ManneuverThruster','FixedThruster','0cca00a9-487c-4343-a07c-7f8d8128d45f','','',NULL), -('13068','Trenta','Shield','UNDEFINED','33c31f29-03e7-4a23-a26c-5d625d48c1bc','','',NULL), -('13069','Fawad','Radar','MidRangeRadar','dc56860d-0727-4c69-883c-0606f5307822','','',NULL), -('13070','Palatino Helmet Shadow Gild','Armor','Helmet','581c94cc-1502-4ccb-82cd-f36ec2a60f2c','','',NULL), -('13071','MSD-582 Missile Rack','MissileLauncher','MissileRack','3b57d123-4a6f-4549-88ca-641de8cc3537','','',NULL), -('13072','ForceFlex Undersuit Blue/Black/Tan','Armor','Undersuit','2f8eae42-b0f2-4a4a-8849-34c40a8db529','','',NULL), -('13073','C54 \"Justified\" SMG','Weapon','Medium','7ba300fa-c867-453e-bd54-53203b98c60a','','',NULL), -('13074','Tekaw Pants Ash','Char_Clothing_Legs','UNDEFINED','30c3740a-7d45-409d-a860-10936fd171ce','','',NULL), -('13075','LightGroupItem','Light','UNDEFINED','e612485a-8902-4615-89a5-3b826e4f7faf','','',NULL), -('13076','sc_marine_bdu_shirt_02_01_11','Char_Clothing_Torso_1','UNDEFINED','cb42c852-f5ee-4072-b71d-2c7f77c04dc6','','',NULL), -('13077','Carryable_1H_SQ_DataPad_Fluff_StormBreaker_DataFacility_Exec','Misc','UNDEFINED','4b96ca5f-c432-5ea3-2f57-e267798f79bd','','',NULL), -('13078','ORC-mkX Core Autumn','Armor','Torso','d45f021f-a65e-4b67-9ed7-eaa998fe7a1b','','',NULL), -('13079','Cargo_Slot_DRAK_Mule_1Slot','Usable','UNDEFINED','5cc5f216-a296-4131-911a-684f2704267f','','',NULL), -('13080','Edgewear Pants Dark Red','Char_Clothing_Legs','UNDEFINED','64c50a1a-0ded-471a-9cb1-e7f55dfad39a','','',NULL), -('13081','ANVL_Hornet_F7A_Mk2_Thruster_Mav_1','ManneuverThruster','JointThruster','74fd7d87-5f75-4f36-9852-a0b1bf83cdb7','','',NULL), -('13082','PAB-1 Legs Crusader Edition','Armor','Legs','c4c73b17-28b2-4f81-be63-0ee903f67926','','',NULL), -('13083','Storm Summit Livery','Paints','UNDEFINED','8de73e6a-c0ad-4cc9-931b-3f65c0d25da7','','',NULL), -('13084','Beryl (Raw)','Cargo','Cargo','06d0956e-2af1-4eec-a391-5b93101543de','','',NULL), -('13085','Pulse \"microTech\" Laser Pistol','Weapon','Small','185b2797-25e9-48be-9d43-0182162461b3','','',NULL), -('13086','GAMA_Syulen_RADR_Display','Display','UNDEFINED','73f0a36a-e3c3-4148-8152-057562e227a1','','',NULL), -('13087','Seat','SeatAccess','UNDEFINED','1986bdc5-7245-4f69-a6c4-a1198dd7ba23','','',NULL), -('13088','Counter_Orison_Pharmacy','Usable','UNDEFINED','dbd034fa-a4d9-4662-80dc-90ea4634aa5c','','',NULL), -('13089','Personal Storage','Cargo','UNDEFINED','96260777-3109-44bb-977c-0378fa1fa576','','',NULL), -('13090','darneely_outfit_01','Char_Clothing_Torso_1','Male','054f4501-c3e8-4de4-b145-7cc6abdd51c5','','',NULL), -('13091','ARMR_TMBL_Cyclone_AA','Armor','Light','4ddf57ba-8031-48e1-a52c-0463dfe56296','','',NULL), -('13092','DRAK_Dragonfly_CML_Chaff','WeaponDefensive','CountermeasureLauncher','c20b552a-8cac-4aaf-bf3a-549cfcd57620','','',NULL), -('13093','Access','SeatAccess','UNDEFINED','7bca490f-431f-4fae-9cc6-d8ad224df096','','',NULL), -('13094','ThermoWeave Gloves','Char_Clothing_Hands','UNDEFINED','a1fcf0eb-4770-4026-8daa-227891624656','','',NULL), -('13095','Fieldsbury Dark Bear Helmet','Armor','Helmet','97254d3c-2acd-4e8b-930f-feb02e06ad0a','','',NULL), -('13096','ANVL_Door_Decal_Carrack_Docking','Decal','DoorPart','8a5353e4-bd02-4724-bcc4-417acbb37a26','','',NULL), -('13097','Pyro RYT \"Quicksilver\" Multi-Tool','Weapon','Gadget','38fd0efd-1c7c-4f6f-80d3-acc0cf1841a3','','',NULL), -('13098','ADP-mk4 Helmet Woodland','Armor','Helmet','f99a1f5e-7bed-444f-82cc-570b85e0fbb7','','',NULL), -('13099','SW16BR1 “Buzzsaw” Repeater','Weapon','Gun','631884a6-7e06-4612-986c-1b3e556aecac','','',NULL), -('13100','Talisman R5 Ship Armor','Armor','Medium','dc42bf67-fd6d-4a11-8d69-99bd2ec3e231','','',NULL), -('13101','Weapon_Rack_1_NONE_Rifle_AmmoOnly_001','Usable','UNDEFINED','5f31b0f2-9471-4886-98fb-d40ce0194d6b','','',NULL), -('13102','Archibald Hurston Figurine','Misc','Flair_Wall_Picture','f32047cd-91ad-4a4d-a551-cfe9254990a7','','',NULL), -('13103','ARGO_MPUV_1T_Thruster_Main_Joint','MainThruster','JointThruster','bc9824ef-ac10-457a-a058-200284f80a9a','','',NULL), -('13104','NewDawn','PowerPlant','Power','397bd43e-fdbf-45b3-ba56-79647656f23e','','',NULL), -('13105','Seat','SeatAccess','UNDEFINED','b53d604b-023b-4787-9630-aa78356ca8c5','','',NULL), -('13106','MISC_Starlancer_Support_Seat','Seat','UNDEFINED','4d72f73d-0efe-4a08-a45a-b59cefe58e26','','',NULL), -('13107','Odyssey II Undersuit Sky/Black','Armor','Undersuit','f4456068-c5da-4732-aed0-299cdc8f7821','','',NULL), -('13108','Flight Blade','FlightController','UNDEFINED','e9186bee-0812-4576-8878-4766bb3a31c9','','',NULL), -('13109','DeconPen (Canoiodide)','FPS_Consumable','Medical','e2b95094-e441-4865-a2ec-e4db0b64064f','','',NULL), -('13110','sw_light_helmet','Armor','Helmet','12a6d7a2-c45b-4f30-b2fa-436d39e089b5','','',NULL), -('13111','Freelancer Big Benny\'s Livery','Paints','UNDEFINED','9096351d-6e60-41ed-ae0c-215913eeeffb','','',NULL), -('13112','300i Ship Armor','Armor','Medium','8fa4aa51-ff08-4728-ae08-64861ab3daf9','','',NULL), -('13113','Seat','Usable','UNDEFINED','d46850c7-2107-430a-ad0d-3898f9143474','','',NULL), -('13114','f_human_mannequin_slaver_undersuit_02','ShopDisplay','UNDEFINED','d10c6ed9-4f87-47ed-87dd-795822ba5e8f','','',NULL), -('13115','Seat','SeatAccess','UNDEFINED','5bbcb6b1-e44d-4234-ad58-cbbbf2ff5da1','','',NULL), -('13116','Gilick Boots White / Blue','Char_Clothing_Feet','UNDEFINED','5cf3de9e-7c7c-4dea-8b57-4152b85ece2b','','',NULL), -('13117','Deo Shirt White','Char_Clothing_Torso_0','UNDEFINED','5b1a2e56-77e0-45e1-8a96-22e7935f75d8','','',NULL), -('13118','Silnex','Cargo','Cargo','77cddc06-3396-4a62-9295-3a13332dad1f','','',NULL), -('13119','Remote Turret','Turret','TopTurret','6b47720a-31ab-4af2-a400-3f84ad112c4b','','',NULL), -('13120','Missile Rack','MissileLauncher','MissileRack','32b96015-6d28-433e-9457-62f95082b3ca','','',NULL), -('13121','C54 \"Starchaser\" SMG','Weapon','Medium','ae9a9156-49d1-419b-b346-f7d438f7a1b8','','',NULL), -('13122','Counter_Bar_1m_console_DEPRECATED','Usable','UNDEFINED','e872affa-6eb1-4d34-9ccc-7ba918f0adcb','','',NULL), -('13123','ESPR_BallisticCannon_PowerArray_S6','WeaponAttachment','PowerArray','1b332148-8030-480b-9a9b-a1f1dc74b47d','','',NULL), -('13124','TRGT. STATUS','Seat','UNDEFINED','d073394d-a7ae-4a70-9fd5-7eae9568eda8','','',NULL), -('13125','Odyssey II Helmet Alpha','Armor','Helmet','9cc202c0-245d-4a17-a954-f0fadd15a336','','',NULL), -('13126','Door Control','Door','UNDEFINED','f7507baf-2904-433c-8027-f7ce95df87ed','','',NULL), -('13127','Carryable_TBO_FL_16SCU_Commodity_Organic_Armillaria','Cargo','Cargo','45a3c87c-5075-46f2-8c84-67352f903e8d','','',NULL), -('13128','Bed','Usable','UNDEFINED','fc7bcf02-1e55-4cba-bd66-dd21ebeafc74','','',NULL), -('13129','lt_lamp_desk_3_a','Light','UNDEFINED','9afca3f3-98bc-4503-9dd7-25645b4fc994','','',NULL), -('13130','Citadel','Shield','UNDEFINED','a7dd60d3-10bf-473d-9de5-747071885573','','',NULL), -('13131','Grav Lev 1','ManneuverThruster','JointThruster','186f47d6-a44a-4e65-a94b-22864e60d134','','',NULL), -('13132','ATVS Repeater','Weapon','Gun','d60d2103-fdc4-446e-8a3b-0af114f2e23e','','',NULL), -('13133','ARGO_RAFT_CargoGrid_Main','CargoGrid','UNDEFINED','58601296-7ea8-401f-b973-0180f4b99ec7','','',NULL), -('13134','NN-14 Cannon','Weapon','Gun','596ced46-195e-4f60-826a-7cc5bb2e2f02','','',NULL), -('13135','Door Control','Door','UNDEFINED','3e1b4282-8b19-4103-9bb1-97e2fdf89c2c','','',NULL), -('13136','Janalite','Cargo','Cargo','b3ec731d-30f9-4a6b-9277-ece19bd3c1cb','','',NULL), -('13137','Carrack Expedition Livery','Paints','UNDEFINED','69cf58e0-4a96-431f-bd7a-f42837509a3e','','',NULL), -('13138','Yubarev \"Venom\" Pistol','Weapon','Small','19e3192c-60a3-44ba-816c-625dd6729379','','',NULL), -('13139','Door','Door','UNDEFINED','511c59c5-5853-4c97-9568-a24e5e97a3a7','','',NULL), -('13140','DockingTube_Fuel_Ports_CRUS_Starfighter','DockingCollar','UNDEFINED','7b68b8fe-5906-4b64-8043-9dd9b3a96e4f','','',NULL), -('13141','Idris-P T-Shirt','Char_Clothing_Torso_0','UNDEFINED','a77cc64a-216b-49d1-b894-be226647c051','','',NULL), -('13142','Bed','Usable','UNDEFINED','aa675527-ce5a-4bac-b945-cf3e5921ddb0','','',NULL), -('13143','facial_hair_039','Char_Head_Beard','UNDEFINED','ac8a4a26-8d4a-4f76-aec9-3a5fe8e8f6b2','','',NULL), -('13144','Concept Shirt','Char_Clothing_Torso_0','UNDEFINED','357e2610-d4ed-4eaa-88a7-57e40d4b9eec','','',NULL), -('13145','Bed','Usable','UNDEFINED','33b3d6d2-582f-4751-afc9-90a2b0ee0472','','',NULL), -('13146','BEHR_LaserCannon_PowerArray_S8','WeaponAttachment','PowerArray','0df46d87-1877-448d-b58f-67690aa31097','','',NULL), -('13147','Door','Door','UNDEFINED','6e4f199f-5a8a-4e3f-bb50-2a3244f7aae2','','',NULL), -('13148','Molina Ventilation Filters','Cargo','Cargo','bb9bcd36-e351-4206-9a59-fad9f1fc21ce','','',NULL), -('13149','Pips Q66','Drink','Can','7d9be085-8c43-4b42-b71d-1dc94ce408ff','','',NULL), -('13150','ORIG_300i_Fridge_Door','Player','UNDEFINED','6cef9a27-8af1-44cd-a325-417ee4e54691','','',NULL), -('13151','AEGS_Sabre_Peregrine_Winglet_Right','Misc','UNDEFINED','a0ec7804-1620-4db7-8521-f1f108e57c02','','',NULL), -('13152','un_bowl_empty_1_a_stacked','Food','Consumable','7e272e0e-ea87-4a29-b6f1-0e7abe9882ca','','',NULL), -('13153','display_box_plastic_4_weapon_opened_005x010x005_a_3Ports','ShopDisplay','UNDEFINED','63fad0ff-8346-4886-be30-83e2ec201324','','',NULL), -('13154','Diluthermex','Cargo','Small','3fa6a4f9-7e1d-43ef-855f-efa7f2090624','','',NULL), -('13155','IAE 2951 Hat Blue','Char_Clothing_Hat','UNDEFINED','f83214d0-3abf-4f1f-98ef-0e53ec30fcb3','','',NULL), -('13156','A03 \"Wildwood\" Sniper Rifle','Weapon','Medium','f4f425d2-34d8-4737-ad37-4c5fde1e52cf','','',NULL), -('13157','Weapon_Rack_1_NONE_Shotgun_AmmoOnly_001','Usable','UNDEFINED','f90966ab-cd20-464c-bb7f-9a408673816a','','',NULL), -('13158','Landlite Boots Dark Red','Char_Clothing_Feet','UNDEFINED','3e5e7ac1-f6bc-48c6-a7d8-20c739518e12','','',NULL), -('13159','Morningstar Helmet Dark Red','Armor','Helmet','5b987cf9-4c8a-4c54-9f12-6807ac054b97','','',NULL), -('13160','Access','SeatAccess','UNDEFINED','fd1bed66-4249-4b4c-bb45-d605c8e5f398','','',NULL), -('13161','TRGT. STATUS','Seat','UNDEFINED','e394eb09-ae29-4a3f-8ce9-cced828440a6','','',NULL), -('13162','Carrack Red Alert Livery','Paints','UNDEFINED','45e3b994-082e-4f2c-a515-0b4b60fdf376','','',NULL), -('13163','Meteor Skylark Livery','Paints','UNDEFINED','e2381617-cc1b-47af-8dda-248fa335abba','','',NULL), -('13164','Dolivine','Cargo','Cargo','88fea7bd-29e2-46ad-9226-516854f3f503','','',NULL), -('13165','Camion Jacket','Char_Clothing_Torso_1','UNDEFINED','3ba526a8-e8ea-4e04-bd4a-a4d7240be8a6','','',NULL), -('13166','Stoneskin Agra Undersuit','Armor','Undersuit','c1d164a3-1bf6-40d1-816e-86674c58407c','','',NULL), -('13167','Party Favors','Cargo','Cargo','29c5ad44-8e22-4408-ad50-87d0a61a399e','','',NULL), -('13168','Spirit Citizens for Prosperity Liberation Livery','Paints','UNDEFINED','feb0349b-4ce3-4ee1-8aa2-fc2649c5f7c1','','',NULL), -('13169','Manned Turret','TurretBase','MannedTurret','355df4a1-3461-4c83-87da-39102d6609b4','','',NULL), -('13170','Hornet Mk II Quicksand Livery','Paints','UNDEFINED','37036957-cca9-4984-8c48-d0a59e88441e','','',NULL), -('13171','Avenger IceBreak Livery','Paints','UNDEFINED','f6e13fd2-677f-4489-b9d6-cb54cc932f26','','',NULL), -('13172','CRUS_Starlifter_Ext_Door_Right_Lg_HACK','Container','UNDEFINED','0ed9e21b-799c-445e-85aa-ef5e7991a350','','',NULL), -('13173','Door Control','Door','UNDEFINED','1591d4fa-b970-4b7c-97a5-09af76b30663','','',NULL), -('13174','Fresnel \"Elysium\" Energy LMG','Weapon','Medium','60f46f40-e933-4a8e-a0c3-1c33b816903e','','',NULL), -('13175','Sootho Gloves','Char_Clothing_Hands','UNDEFINED','36a3827f-37cf-4938-8281-b25ba0197753','','',NULL), -('13176','Strata Arms Shubin Edition','Armor','Arms','a651994a-d819-44bb-91a5-fd5bb6278c35','','',NULL), -('13177','Bed','Usable','UNDEFINED','fdfb66b4-cfb0-4d95-9cb6-6c076031f00d','','',NULL), -('13178','Internal Tank','FuelTank','Fuel','fe76bbc8-b7bf-4ea0-88da-6b0d1f94bf0f','','',NULL), -('13179','Seat','SeatAccess','UNDEFINED','cfb07314-706b-4dd2-97fa-cc6efdba305b','','',NULL), -('13180','COOL_AEGS_S04_Javelin_SCItem','Cooler','UNDEFINED','1f5be5de-b5ea-42c7-879f-289c4bf64f19','','',NULL), -('13181','ARGO_ATLS_IKTI_ARGOS_Blanking_Plate_Large','Misc','UNDEFINED','7cb43dc5-2993-4796-ad9f-dbbfd068a301','','',NULL), -('13182','Ixonia Helmet Desert Camo','Armor','Helmet','6e01d995-1e0e-445d-b24d-bd0d4defb9f7','','',NULL), -('13183','Apollo Lifeline Livery','Paints','UNDEFINED','cb86f3e4-5d3e-40b3-85c2-4feb918c95d7','','',NULL), -('13184','Internal Tank','QuantumFuelTank','QuantumFuel','b28eb817-b791-4171-90a3-b2eecdb8ca3e','','',NULL), -('13185','CF-227 Badger Repeater','Weapon','Gun','dfe5aeb2-3b56-422b-ba88-f165e827facd','','',NULL), -('13186','Tempest II Missile','Missile','Missile','4317f2fc-4044-454e-8400-25c2e3c65136','','',NULL), -('13187','Glow','Misc','Harvestable','eefcd9ea-0506-49c8-9c61-0a707376fd0f','','',NULL), -('13188','ORC-mkX Helmet Woodland','Armor','Helmet','9976120c-f6cc-41b3-91b4-d9f14690ec4b','','',NULL), -('13189','Chiron Arms Samaritan','Armor','Arms','7e4cdd55-8d1d-4832-893f-18f2f29af70c','','',NULL), -('13190','Dopple','Cargo','Cargo','47df6faa-e0d4-4408-8cd7-ad31ea1a6c68','','',NULL), -('13191','Holographic Vanduul Skull','Misc','Personal','97865c53-9c9a-4251-a093-61db72a79b87','','',NULL), -('13192','AEGS_Idris_Upper_Camera_Mount','Turret','GunTurret','d6f2d4eb-cdff-4b85-9ad8-de0dd579aa99','','',NULL), -('13193','Ball','Char_Head_Piercings','UNDEFINED','3b17f569-9546-405e-9176-befd832b1233','','',NULL), -('13194','Food_fruit_jumpinglime_1_a','Food','Plant','af0e7ad7-794b-4f97-a4fa-cdbe5b379e3d','','',NULL), -('13195','PAB-1 Core Twilight','Armor','Torso','85b964bb-8c5f-4641-8fb1-526cf59dfb1c','','',NULL), -('13196','ORC-mkV Arms Sakura Sun Edition','Armor','Arms','4b47b36c-eff7-48c2-ab02-fc7536f3d2b7','','',NULL), -('13197','Door Control','Door','UNDEFINED','ef3d9d07-1150-431f-8065-f4cfe59c08e1','','',NULL), -('13198','Umbra','Shield','UNDEFINED','6bec0a0a-9214-448c-96ea-272fc9302a27','','',NULL), -('13199','Venture Legs Voyager','Armor','Legs','3f19b893-7330-44d1-b38b-9bb52889e5c4','','',NULL), -('13200','MXC Icefront Camo Livery','Paints','UNDEFINED','4fbe203a-4a66-487c-b6f2-76f30eb22a74','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('13201','ANVL_Paladin_Thruster_Vtol_Front_Right','ManneuverThruster','UNDEFINED','df1d8e15-45fa-4d0b-8258-808bd400f4c3','','',NULL), -('13202','Souvenirs','Cargo','Cargo','e29d60dc-b035-4e13-89c4-4b32b5c1dadc','','',NULL), -('13203','un_jar_glass_1_berries_d','Misc','UNDEFINED','54f4f037-bd6c-4303-9440-0f6ca1b462a0','','',NULL), -('13204','Screen','SeatDashboard','UNDEFINED','ee608f80-85d2-4da8-b917-5bdee290c768','','',NULL), -('13205','shelf_feet_02x01x04_02Ports','ShopDisplay','Default','86c59428-f7ed-4ce3-9cd1-1fb27f0ae828','','',NULL), -('13206','Aegis Gemini Missile Launcher','MissileLauncher','MissileRack','efb0a583-46d5-4227-b09b-2389686de9ed','','',NULL), -('13207','un_jar_glass_1_empty_a','Misc','UNDEFINED','b4c77272-fac5-4830-a83e-ff84399c846c','','',NULL), -('13208','Nomad IceBreak Livery','Paints','UNDEFINED','fce33fd2-aefe-426d-a963-a835f54e8faa','','',NULL), -('13209','PAB-1 Arms Grey','Armor','Arms','aa1cecfa-f9ce-459f-beb1-4459e381bb83','','',NULL), -('13210','H_Dashboard_Projector_HUD_XIAN_Scout','Display','UNDEFINED','948cf6cf-399c-4b65-8343-9c59ad61b51c','','',NULL), -('13211','Cup','Drink','UNDEFINED','b85485a3-6eb8-44e6-807b-047502d26ed8','','',NULL), -('13212','m_scale_vlk_adult_ice','Char_Accessory_Head','Vanduul','38345bcd-85d3-4587-a4b3-07941faef547','','',NULL), -('13213','Carryable_2H_CY_container_ore_1_tall_a','Misc','UNDEFINED','3774ad38-417b-47e0-9ede-037983021f02','','',NULL), -('13214','Flight Blade','FlightController','UNDEFINED','d38e6d10-c7ee-4189-87cc-315dd7ed9ccd','','',NULL), -('13215','TRGT. STATUS','Seat','UNDEFINED','97b77473-bb59-402a-b0bd-6cd6055433ef','','',NULL), -('13216','ANVL_Carrack_CargoGrid','CargoGrid','UNDEFINED','0a094419-df5f-48f8-a1ed-da513ba8c160','','',NULL), -('13217','Lanxi Jacket Gray','Char_Clothing_Torso_1','UNDEFINED','57bfcbd8-2855-4f1b-b46b-66bfdc0c73b7','','',NULL), -('13218','Carryable_1H_CY_glass_champagne_1_a','Misc','UNDEFINED','50323de3-58f5-4d78-ae8f-ad10c404511e','','',NULL), -('13219','RSI_Aurora_GS_Thruster_Mav_Joint','ManneuverThruster','JointThruster','8146f089-01aa-4f27-8782-63abb11779f3','','',NULL), -('13220','Lastaprene','Cargo','Cargo','f06d372b-5bfb-4575-90d8-9c55f0741bb8','','',NULL), -('13221','7CA \'Nargun\'','Shield','UNDEFINED','9bf5b169-b3cb-4c34-bbad-6faf1bfc2e29','','',NULL), -('13222','RSI_Zeus_Wing_Left','AttachedPart','UNDEFINED','5154625d-c960-47c2-b199-7bffd64621e2','','',NULL), -('13223','Finley the Stormwal Plushie','Misc','UNDEFINED','fdbe381a-957c-4e7f-b255-439f61821ae1','','',NULL), -('13224','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','12552886-9cd0-4ca2-8923-ca3a810c6d03','','',NULL), -('13225','AEGS_Retaliator_CargoGrid_Front_left','CargoGrid','UNDEFINED','1c72ac07-0f44-4f11-a755-a7284d9a934f','','',NULL), -('13226','Vanguard Timberline Livery','Paints','UNDEFINED','726f9f92-e050-4879-b3b8-15de487a256b','','',NULL), -('13227','Polaris Black Magic Livery','Paints','UNDEFINED','eccaab4a-2803-47bb-a85f-f66b4a4ada01','','',NULL), -('13228','Tuvois Jacket Olive','Char_Clothing_Torso_1','UNDEFINED','2836e624-23ad-4f76-a6fd-d3f25c5fd1ea','','',NULL), -('13229','Lunes (Spiral Fruit)','Misc','Harvestable','fc54178c-3a21-4d26-a70a-9baf54ededb1','','',NULL), -('13230','RSI_Aurora_GS_LX_Thruster_Main','MainThruster','FixedThruster','f7ac3fd0-2907-4f06-baed-39c287834d4a','','',NULL), -('13231','DRAK_Vulture_Thruster_VTOL','ManneuverThruster','FixedThruster','e4d8faaa-0949-433e-8faf-efaf56d39a61','','',NULL), -('13232','SHIELDS','ShieldController','UNDEFINED','9ea72333-157c-4d9c-b4f7-cc044c611608','','',NULL), -('13233','Manaslu Jacket Rust Society','Char_Clothing_Torso_1','UNDEFINED','bf6026f8-9795-4219-b38d-55299d02866e','','',NULL), -('13234','CRUS_Star_Runner_Scanner_Dish','Misc','UNDEFINED','53ce0d4c-fded-47f5-8fcd-bebe90a5e1d6','','',NULL), -('13235','Door_Ship_Sensor_Proximity_1x6x3','Sensor','DoorPart','c2954fe4-04bf-4b03-9797-5017dcf0da91','','',NULL), -('13236','G-2 Helmet Green','Armor','Helmet','3b2ad422-e01d-4f09-b69b-25e93bf987ad','','',NULL), -('13237','AEGS_Javelin_DockingTube','DockingCollar','UNDEFINED','cbca7a7a-5c01-4a39-bcfd-9f4712225f49','','',NULL), -('13238','MISC_Freelancer_Base_SCItem_Dashboard_Esc_Pod_Lower_Right','SeatDashboard','UNDEFINED','3215c011-78be-492e-8652-1326ae227918','','',NULL), -('13239','sc_nvy_deckcrew_uniform_01_01_01','Char_Clothing_Torso_2','UNDEFINED','cfa5330f-c0da-4986-b8f7-22258595f5e2','','',NULL), -('13240','Oracle Helmet Ferrum','Armor','Helmet','76e780fb-7029-48f3-8a4d-a241a1efb7c5','','',NULL), -('13241','Perseus Repute Livery','Paints','UNDEFINED','8bf8f763-3fd3-467f-a40b-378c26193014','','',NULL), -('13242','AEGS_Reclaimer_Thruster_Mav_Fixed_Top_Front','ManneuverThruster','FixedThruster','15a9478b-d2e3-485c-b1a0-e679b85ff3c1','','',NULL), -('13243','Libio Jacket Olive','Char_Clothing_Torso_1','UNDEFINED','b5fc6485-a787-476c-aa05-e784e75b32b4','','',NULL), -('13244','ANVL_Door_Decal_Carrack_Crew','Decal','DoorPart','372a7f98-ee11-4b51-a2bc-5c7a25dceba7','','',NULL), -('13245','Yakisoba Dog','Food','Junk','4fe49ee9-b1e9-4403-86c6-ada48b076142','','',NULL), -('13246','MacFlex Core Tan','Armor','Torso','0d8d0494-4de0-43f7-9603-c1f1cd0d647f','','',NULL), -('13247','Internal Tank','FuelTank','Fuel','c25ba2f9-f1a0-4332-9e7d-b9f74f66bee1','','',NULL), -('13248','Cassidy Shirt Stonewall','Char_Clothing_Torso_0','UNDEFINED','4934d321-650b-43e7-85b0-8472b24b93fe','','',NULL), -('13249','Wolf Frost Camo Livery','Paints','UNDEFINED','b9fab048-54ca-4a3a-8658-b2320dd1de30','','',NULL), -('13250','LumaCore','PowerPlant','Power','c7c3faeb-1d23-410d-9f75-8b36fd0d58ba','','',NULL), -('13251','Day One Shirt Aqua','Char_Clothing_Torso_0','UNDEFINED','e0fa9597-2384-446a-85a0-3f85f6171bf0','','',NULL), -('13252','Odyssey II Helmet Grey','Armor','Helmet','b1dad547-8423-4794-9071-f187929c5cee','','',NULL), -('13253','Freelancer Stock Missile Rack','MissileLauncher','MissileRack','20afa9f7-2e46-4ceb-a866-a4bdd1d0a64c','','',NULL), -('13254','Microid Battle Suit Arms','Armor','Arms','c9f0ef56-f2fc-4275-839f-ebe6c5911513','','',NULL), -('13255','Nyman Jacket Olive','Char_Clothing_Torso_1','UNDEFINED','fc085f89-a0ad-403e-a06f-8484a0af99bf','','',NULL), -('13256','Door','Door','UNDEFINED','6072f417-62b1-4263-b3fb-1653bf27410e','','',NULL), -('13257','Deadhead Helmet Brassy','Armor','Helmet','ed0836f0-3341-4d1e-bdbb-47b9c4ab540e','','',NULL), -('13258','ORC-mkX Legs Woodland','Armor','Legs','b42ecd28-d8e0-402e-aaf9-86c4a9d97169','','',NULL), -('13259','Remote Turret','Turret','Utility','484f25e0-be6f-4597-958d-9a61b436e1f9','','',NULL), -('13260','Seat','SeatAccess','UNDEFINED','752ed0c4-a970-47ac-a4aa-d36305ba95ef','','',NULL), -('13261','Methane','Cargo','Cargo','d06b29ac-fe5c-4a69-9af7-772ebd680a90','','',NULL), -('13262','SHIELDS','ShieldController','UNDEFINED','c8d5bab3-b479-464b-ad81-fd92020332c5','','',NULL), -('13263','Pitambu','Cargo','Cargo','e318e567-ccf6-488a-bce2-8550e8ef83c5','','',NULL), -('13264','Table_6_Seat_MISC_Hull_C','Usable','UNDEFINED','8bdec8df-073c-42f6-afb7-104928af65ce','','',NULL), -('13265','Gladiator Ship Armor','Armor','Medium','67de5f34-f9db-4615-aea0-b60921909c74','','',NULL), -('13266','OT8-RF \"Scorched\" (8x Telescopic)','WeaponAttachment','IronSight','70a1857b-69b1-4456-b29e-36c505f09eca','','',NULL), -('13267','Carrion Core Payback','Armor','Torso','fe8753f3-a051-4606-86e8-359cfb4600a1','','',NULL), -('13268','Carrion Core Ashen','Armor','Torso','073e45c6-c896-456d-9ae4-7c53d1501bbc','','',NULL), -('13269','Door Control','Door','UNDEFINED','13fa9486-e86f-4a8b-98da-fa2e3a557fe7','','',NULL), -('13270','Carrion Core','Armor','Torso','734262e2-f20a-4ca6-a34d-6e0f41962379','','',NULL), -('13271','TrueDef-Pro Core Black/Grey/Red','Armor','Torso','d16a5ad4-b30c-4abf-bd6d-be888658830a','','',NULL), -('13272','Spectre','QuantumDrive','UNDEFINED','1f6908a2-80b0-48c1-ad76-d93a6afcbfd7','','',NULL), -('13273','DockingTube_Fuel_Ports_RSI_Perseus','DockingCollar','UNDEFINED','c1c7c5c6-b9ef-490d-8bee-850084f4acd5','','',NULL), -('13274','Venture Legs Starcrossed','Armor','Legs','e0bcd754-53cb-4dae-a3a8-34fd5ce516f7','','',NULL), -('13275','Weapon_Rack_DRAK_Cutter_4_Slot','Usable','UNDEFINED','402b9c39-ade2-4f55-a2cb-d26cb16b0e63','','',NULL), -('13276','MRAI_Guardian_Dashboard_Btn','Misc','UNDEFINED','a2bab6cc-8b67-4723-b71c-23f41bc520c7','','',NULL), -('13277','Seat','Usable','UNDEFINED','ef912a29-8e89-4439-b7f7-39efdce13e52','','',NULL), -('13278','Human Food Bars','Cargo','Cargo','17c1cb45-9a33-449e-8790-bab68cc78ff8','','',NULL), -('13279','PAB-1 Legs (Modified)','Armor','Legs','61ab724d-269e-4056-8ccf-17f3f4bd567e','','',NULL), -('13280','Lynx Legs Imperial','Armor','Legs','38c739ba-9d2c-4dd2-a3c1-3bf47be0ffef','','',NULL), -('13281','Palatino Legs Deadlock','Armor','Legs','1195a275-41de-4b75-b141-929e17267af1','','',NULL), -('13282','Cargo_Comm_125x3_Vice_WiDoW','Cargo','Cargo','2f3bdecf-a173-4b03-8c61-9798a6a3eefd','','',NULL), -('13283','Midas Fish','Misc','UNDEFINED','b7f3f646-6f4b-4660-a3d9-1238a11869e6','','',NULL), -('13284','Syulen Chui?a Livery','Paints','UNDEFINED','c6708253-bef5-480b-ad18-90a25c8f5f08','','',NULL), -('13285','Seat','Usable','UNDEFINED','bcde6b98-c150-40e7-af98-f51adf7e2090','','',NULL), -('13286','Beryl','Cargo','Cargo','48e01b35-f5e2-4247-a1e8-13739a7095ea','','',NULL), -('13287','Carryable_cleaning_sponge_8_a','Misc','UNDEFINED','05d33216-7cfe-4891-975c-5aaf9c91184a','','',NULL), -('13288','Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','8897b1cd-87f9-4938-921b-8df8b28c4356','','',NULL), -('13289','MISC_Fortune_CargoGrid_Main','CargoGrid','UNDEFINED','2fa57a1f-f534-4358-b89d-a1df0620e556','','',NULL), -('13290','YellowJacket GT-210 Gatling','Weapon','Gun','55a38a5c-4b18-4905-81b4-698f4907122f','','',NULL), -('13291','Seat','Usable','UNDEFINED','96a8ad59-2ee8-46d5-a55c-59c15a4a7238','','',NULL), -('13292','Cargo_Comm_125x3_Gas_Astatine_a','Cargo','Cargo','49fe64f0-1945-4236-85ca-f513f0092cc3','','',NULL), -('13293','Origin White Bishop','Gadget','UNDEFINED','6a669db1-0329-46fc-a0b9-a9444efe8cd1','','',NULL), -('13294','Weapon_Rack_1_Volt_Shotgun_Uncommon_002','Usable','UNDEFINED','262538c1-b09a-4384-bd4a-7d3a4660140e','','',NULL), -('13295','G-2 Helmet Grey','Armor','Helmet','850d09ee-c2c0-4a78-b14c-db5db1f54d66','','',NULL), -('13296','Reliant Utility Mount Cap','Turret','GunTurret','74051a0e-e812-47ac-88eb-bf85c8f47038','','',NULL), -('13297','Adiva Jacket Sienna','Char_Clothing_Torso_1','UNDEFINED','ce4f5f12-448b-4b1c-a79a-077fccbd82b0','','',NULL), -('13298','Paint_300_Dash_GlossBlue','Misc','UNDEFINED','ed47d860-2537-4248-858b-78e02d9285a6','','',NULL), -('13299','Door Control','Door','UNDEFINED','9833fbc4-69c4-4e35-a724-1eadb06cc1f8','','',NULL), -('13300','DockingTube_Fuel_Ports_ORIG_300i','DockingCollar','UNDEFINED','683e3006-ee36-4c0b-9544-3ee075417ff1','','',NULL), -('13301','CBH-3 Helmet Twilight','Armor','Helmet','85941c34-18b3-4142-92a5-e574180ffa28','','',NULL), -('13302','DockingTube_Fuel_Ports_ORIG_100i','DockingCollar','UNDEFINED','8056d9d6-aa69-47b4-9357-c0188923f9da','','',NULL), -('13303','Oracle Helmet Tan','Armor','Helmet','01159d0d-5212-4587-964e-595be7a73469','','',NULL), -('13304','DockingTube_Fuel_Ports_ORIG_600i','DockingCollar','UNDEFINED','003f6c50-5208-4cfc-81ff-40ebb6dfe795','','',NULL), -('13305','Prospector Stormbringer Livery','Paints','UNDEFINED','70b6cd53-f564-4c86-a4d4-5103e89be7ab','','',NULL), -('13306','Libio Jacket Sienna','Char_Clothing_Torso_1','UNDEFINED','75b3b850-02ff-4646-9704-33f6b6b50c5c','','',NULL), -('13307','DockingTube_Fuel_Ports_ORIG_400i','DockingCollar','UNDEFINED','acd8b0e9-ef0f-4874-a3eb-f46818da04af','','',NULL), -('13308','Weapon_Rack_DRAK_Cutter_Rambler_9_Slot','Usable','UNDEFINED','e21857d7-f23b-44c5-9f2a-5d95934dae58','','',NULL), -('13309','Controller_Salvage_RSI_Salvation','SalvageController','UNDEFINED','774ee326-7264-49da-9ddc-b324360f739d','','',NULL), -('13310','Arden-SL Helmet (Modified)','Armor','Helmet','33e4f101-a485-4c39-b07c-b9fad15edfdc','','',NULL), -('13311','Door Control','Door','UNDEFINED','79022bde-0e30-46a0-adf3-3c6151850b3f','','',NULL), -('13312','TRGT. STATUS','Seat','UNDEFINED','38288bdc-2d0a-4148-8998-14af3e2a9dc5','','',NULL), -('13313','Orbgn_None_Consumable_Keycard','FPS_Consumable','Hacking','8fefb274-5168-4c09-be55-0afa3126fbe9','','',NULL), -('13314','Covalex Cargo Plushie','Misc','Flair_Wall_Picture','ffb4425f-0966-45dd-9828-5395cc757889','','',NULL), -('13315','ANVL_Terrapin_Locker_Right','Player','UNDEFINED','b1d38033-4fe5-41e3-9f7b-f67188296e0b','','',NULL), -('13316','AEGS_Idris_Thruster_Main_02','MainThruster','JointThruster','5d7eee0d-a832-49b3-b65a-772dfe0af9b3','','',NULL), -('13317','Nyman Jacket Sienna','Char_Clothing_Torso_1','UNDEFINED','89c498b0-7154-4f28-885c-28b3300892a5','','',NULL), -('13318','Arden-SL Legs Balefire','Armor','Legs','bfb2fd12-6dec-4555-889e-5a46cd4e08f0','','',NULL), -('13319','display_components_s2_modular_shield_2ports','ShopDisplay','UNDEFINED','08d97a3c-72a3-4ac5-88b8-52024b25fb6f','','',NULL), -('13320','Seat','Usable','UNDEFINED','9447512c-af6c-4dbe-a146-94c4b4cafc1c','','',NULL), -('13321','AEGS_Reclaimer_Dashboard_Pilot','SeatDashboard','UNDEFINED','aa6da457-35ee-4f2d-afd7-4b5dcb02f63b','','',NULL), -('13322','TRGT. STATUS','Seat','UNDEFINED','798959a6-c9c2-4f52-ac34-b1c139006d14','','',NULL), -('13323','CNOU_Mustang_Beta_Thruster_Mav_Fixed_01_Up','ManneuverThruster','FixedThruster','1e480af7-7c2b-45e7-8501-40b2ee51bd86','','',NULL), -('13324','MacFlex Arms','Armor','Arms','ba8131c0-5cff-489d-9930-51d3bdb13c23','','',NULL), -('13325','CitizenCon 2955 Trophy','Misc','Magazine','88f0530e-44de-4df5-a722-a615d1c3de9f','','',NULL), -('13326','CitizenCon 2954 Trophy','Misc','Magazine','f4adefef-7616-453e-a7a3-74eda64f80b1','','',NULL), -('13327','CitizenCon 2953 Trophy','Misc','Magazine','33a52ab8-c96f-4eac-9609-5cfa3b8d6f81','','',NULL), -('13328','VNCL_Scythe_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','bee7bd8c-0f1d-4a51-b638-2487498dcc57','','',NULL), -('13329','Weapon_Rack_1_Volt_Rifle_Legendary_001','Usable','UNDEFINED','12b48c64-cc0c-4e3e-bd6b-e3279ca66099','','',NULL), -('13330','Aztalan Tamarack Arms','Armor','Arms','a9a51183-d755-4c18-aa60-5b8bec5387b4','','',NULL), -('13331','CitizenCon 2951 Trophy','Misc','Magazine','ee7cb1c6-cc2b-4b31-ad8a-8e8c959ad3a9','','',NULL), -('13332','Door Control','Door','UNDEFINED','aba25aa7-abfe-45d2-af8d-4df2fb8173bc','','',NULL), -('13333','Caret Pants Army Green','Char_Clothing_Legs','UNDEFINED','058b7b1d-0c7f-4f9b-a890-008844e8ca81','','',NULL), -('13334','Soap','Misc','UNDEFINED','80557def-7b6a-42fd-b200-8d19f2b5092f','','',NULL), -('13335','Crusader Black Queen','Misc','UNDEFINED','1c460458-c9dc-4663-848e-7ef9525e6681','','',NULL), -('13336','GRIN_ROC_DS_Dashboard_Driver','SeatDashboard','UNDEFINED','fe15cbee-9f88-4c0b-a215-2c05b7f5f460','','',NULL), -('13337','Backlund','Radar','MidRangeRadar','5fd25232-339f-4a6b-beba-5e0ee1d83cc8','','',NULL), -('13338','XIAN_Nox_Thruster_Aux_Left','ManneuverThruster','JointThruster','82e86c9f-dc9b-48b7-8fa0-20fcf47fccf2','','',NULL), -('13339','backpack_nodraw','Armor','Backpack','f3fe3607-97d4-4453-86ff-f1f387935c80','','',NULL), -('13340','TRGT. STATUS','Seat','UNDEFINED','5819deff-d36e-4818-91fa-59e4284a4da6','','',NULL), -('13341','Carryable_1H_CY_weight_dumbbell_1_36kg_a','Misc','UNDEFINED','4c5ee9ec-2f08-4c49-bb7d-32ae2f93c62f','','',NULL), -('13342','Manned Turret','TurretBase','MannedTurret','3a9fd190-fb3f-42c6-aa87-0c7e7e42ec10','','',NULL), -('13343','Day One Shirt Olive','Char_Clothing_Torso_0','UNDEFINED','902b4e77-f0b6-4914-b3c6-8f5682d62218','','',NULL), -('13344','Door','Door','UNDEFINED','d2523e0b-bbe7-43ed-85ef-3d9bc84192c2','','',NULL), -('13345','orig_bedding_duvet_4_l','Seat','UNDEFINED','ec7016d9-adc8-4eb9-a23f-f770c10a0b55','','',NULL), -('13346','RSI_Constellation_Taurus_Thruster_Main','MainThruster','FixedThruster','b6e1a8ab-ef48-4984-8696-5051c3e7ab5b','','',NULL), -('13347','Titanium (Ore)','Cargo','Cargo','175de87c-dc05-4a9f-bb59-7ef89aae6b00','','',NULL), -('13348','Access','SeatAccess','UNDEFINED','594510ec-bf60-4097-bbc1-84d6fd6fcfb9','','',NULL), -('13349','CRUS_Starlifter_Door_Decal_Sealed_A','Decal','DoorPart','8b322866-4bbb-4542-aaba-25ad24a9a026','','',NULL), -('13350','Debnam Gloves Imperial','Char_Clothing_Hands','UNDEFINED','d218b2b0-a4ba-47c1-9ebc-9ff87032cb55','','',NULL), -('13351','TRGT. STATUS','Seat','UNDEFINED','e9c28aca-0f30-4f99-ab00-9cfa53c04dba','','',NULL), -('13352','VNCL_Gen2_PlasmaCannon_FiringMechanism_S4','WeaponAttachment','FiringMechanism','934ee15e-58e4-4c50-bffa-e185f4ac7e67','','',NULL), -('13353','Calico Helmet Arid','Armor','Helmet','f2797162-e73d-4441-ac1c-f9d9328cef4f','','',NULL), -('13354','hightech_delta_door_double_a_lghtgrp','Lightgroup','AirlockPart','ce7bf4c4-a986-420e-9d62-66f183ee3bc8','','',NULL), -('13355','Door Control','Door','UNDEFINED','b299f38d-0e05-49ca-ba2b-fde00c854dc0','','',NULL), -('13356','RSI_Perseus_SeatAccess_Turret_Bottom','SeatAccess','UNDEFINED','f9e00b42-3918-44c3-8b0d-de98f3d03e47','','',NULL), -('13357','DRAK_Corsair_Thruster_Retro_C','ManneuverThruster','UNDEFINED','77e82eb0-83c5-4d6a-bd84-1ab4de11120f','','',NULL), -('13358','Scorpius Deck the Hull Livery','Paints','UNDEFINED','d39e7b38-6c64-4c19-a58f-09c09c915058','','',NULL), -('13359','Terrapin Felicity Livery','Paints','UNDEFINED','4ada1c1b-ed19-106c-013a-5b487905caaf','','',NULL), -('13360','TrueDef-Pro Legs Black/White/Violet','Armor','Legs','510ece79-69ee-4fe2-905e-4b1a7fab4b21','','',NULL), -('13361','Mining Arm','ToolArm','UNDEFINED','d5c7bdc2-c1a2-4576-ae4e-42bd76d7f981','','',NULL), -('13362','m_human_mannequin_rsi_suit_08','ShopDisplay','UNDEFINED','9a6737ff-da61-4477-9ef1-abdf045417e9','','',NULL), -('13363','Internal Tank','FuelTank','Fuel','0f71ac68-f37e-40ef-b08b-113ed889845f','','',NULL), -('13364','Cutter Nightfall Livery','Paints','UNDEFINED','85d00148-67ab-4392-a702-a918fd0d6ab5','','',NULL), -('13365','Atavi Shirt Gainsboro','Char_Clothing_Torso_0','UNDEFINED','1e9e42a3-722f-4972-a8f0-62e064c7f0fe','','',NULL), -('13366','PAB-1 Arms Violet','Armor','Arms','2762c5fb-4246-4d07-9cf7-7339c89bc470','','',NULL), -('13367','Iodine','Cargo','Cargo','9011dd81-e4db-417c-9ead-8c220aeca45f','','',NULL), -('13368','Door Control','ControlPanel','DoorPart','5c604ac6-eadd-4223-83e3-7796ba3fd5d1','','',NULL), -('13369','Ponos Boots Sienna','Char_Clothing_Feet','UNDEFINED','fc28e016-acc5-4b50-b732-0e843fb132a6','','',NULL), -('13370','Artimex Helmet Wildwood','Armor','Helmet','72717f0f-ff1c-4194-bca5-9899f0d4502d','','',NULL), -('13371','Ixonia Gloves Green','Char_Clothing_Hands','UNDEFINED','2dc9b3be-a908-4c84-8301-854f97f70d0b','','',NULL), -('13372','Strata Core Hurston Edition','Armor','Torso','4e48da7b-31c9-46e4-a924-fb5391acc485','','',NULL), -('13373','Seat','Usable','UNDEFINED','ee0ddd6e-53fd-4b49-9d6b-d66cbb32b8cb','','',NULL), -('13374','CBH-3 Helmet Aqua','Armor','Helmet','70be6209-58ab-4e7f-927d-5d6f2755f168','','',NULL), -('13375','Molina Ventilation Filters','Cargo','Cargo','02784a2a-8a4b-49ad-94b3-7bff0dcc064e','','',NULL), -('13376','Beacon Undersuit Purple','Armor','Undersuit','e19d2456-7331-45bf-a669-fe0c5a9deb30','','',NULL), -('13377','Stirling Exploration Backpack ASD Edition','Armor','Backpack','1105ec5d-77b7-4ef5-911e-138d80f80994','','',NULL), -('13378','Geist Armor Arms','Armor','Arms','ff40b10e-b358-4e20-8036-780d9c11984e','','',NULL), -('13379','Seat','Usable','UNDEFINED','ab4233ab-1787-4703-9c49-e3855ccf036e','','',NULL), -('13380','bnu_shirt_01_01_01','Char_Clothing_Torso_0','UNDEFINED','8f5a3b7d-8bbb-461d-a9c6-5a4d23c1bb0b','','',NULL), -('13381','Door Control','ControlPanel','DoorPart','08293ce4-ca69-4b52-87df-6fe96ab6bab1','','',NULL), -('13382','Saldynium (Ore)','Cargo','Cargo','786f1e01-5169-4b27-a043-1fb1e53dfdd4','','',NULL), -('13383','Flight Blade','FlightController','UNDEFINED','4b14d8de-e925-4564-ac58-50c4266dcab6','','',NULL), -('13384','Diamond (Raw)','Cargo','Cargo','440ed36f-685e-47a6-9723-add996c40b18','','',NULL), -('13385','Flight Blade','FlightController','UNDEFINED','16678db6-0fcb-4ecd-a9a7-1fc63d54a61c','','',NULL), -('13386','Seat','SeatAccess','UNDEFINED','ea8c416c-dd79-403a-9bf7-77ae40bca749','','',NULL), -('13387','C8R Pisces PHB Flight Blade','FlightController','UNDEFINED','c61a88dc-bf68-4d01-961b-d6f923c5ff6d','','',NULL), -('13388','Morozov-SH-I Arms Gideon','Armor','Arms','c5942037-fd22-4886-bf38-1b411477c0e8','','',NULL), -('13389','Taftan Boots Spruce','Char_Clothing_Feet','UNDEFINED','8991458b-f4d4-45be-85c9-4a673fb4bcb2','','',NULL), -('13390','PLACEHOLDER','Char_Clothing_Legs','UNDEFINED','32975c11-4247-4c9c-8817-8c05a3aaf466','','',NULL), -('13391','Toughlife Boots','Char_Clothing_Feet','UNDEFINED','a30f85f8-cac5-489e-83a3-4c80ab5cb11b','','',NULL), -('13392','Hurricane Flashfire Livery','Paints','UNDEFINED','33784f73-4edb-4995-98f5-3fa780c2e441','','',NULL), -('13393','Testudo Helmet Combustion','Armor','Helmet','f2075bc7-d9b4-45e7-9765-dbfb9d5cbda3','','',NULL), -('13394','Seat','SeatAccess','UNDEFINED','63f143f2-ab7f-4654-8739-cd9dd7f1e942','','',NULL), -('13395','Seat','Usable','UNDEFINED','ff4a174e-524a-44ba-8c6f-5ec78e5b5cf7','','',NULL), -('13396','Carryable_1H_CY_glass_tumbler_gin_1_a','Misc','UNDEFINED','282d716f-6792-43fa-b64c-f842c264446d','','',NULL), -('13397','Seat','Usable','UNDEFINED','32033d1b-9dba-4a80-bcbc-a039f6505561','','',NULL), -('13398','AEGS_Hammerhead_Thruster_Main_LowPoly','MainThruster','FixedThruster','96d65724-ca76-47a9-87ef-b88112376f77','','',NULL), -('13399','Mixed Mining','Cargo','Cargo','843413b1-17e4-4d78-b9dc-a7773aa10319','','',NULL), -('13400','CK13-GID Seed Blend','Cargo','Cargo','d67b1288-fc47-47eb-a2f4-4cb01854f720','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('13401','ESPR_Prowler_Thruster_Retro_Utility','ManneuverThruster','UNDEFINED','92bedd20-a06e-4169-8fd7-0350bdbbf9cf','','',NULL), -('13402','Venture Undersuit Purple/Violet','Armor','Undersuit','0cbc87d5-b2d3-4928-9459-d9e01120c164','','',NULL), -('13403','Prim Shoes Twilight','Char_Clothing_Feet','UNDEFINED','6a6f3e8f-8c0d-49c0-8813-d44072cd573a','','',NULL), -('13404','Torrent Compensator3','WeaponAttachment','Barrel','ef61d89b-7471-4a26-a4f9-7b5f476b850c','','',NULL), -('13405','Lux Pants','Char_Clothing_Legs','UNDEFINED','d65a432e-7016-4eb2-8436-3f0b400b5cfe','','',NULL), -('13406','TRGT. STATUS','Seat','UNDEFINED','6080cb2b-ba2e-49dd-a4b5-39921bff7c7a','','',NULL), -('13407','Warden Backpack Epoque','Armor','Backpack','fb1b6f01-28cd-4185-b2cb-d8dd86c998d2','','',NULL), -('13408','Counter_Console_Shop_1_a','Usable','UNDEFINED','9231c5d4-45ae-4409-a186-27fba814df2a','','',NULL), -('13409','TRGT. STATUS','Seat','UNDEFINED','0723ed43-6395-440d-9aac-16cd58be1cb3','','',NULL), -('13410','Odyssey II Helmet Alpha','Armor','Helmet','d2f90c82-b7e6-4b17-9bee-be835148392d','','',NULL), -('13411','Harlowe Shirt Orange','Char_Clothing_Torso_0','UNDEFINED','9994d652-cdb1-4450-9d65-b9d273e6eee7','','',NULL), -('13412','Geist Armor Core ASD Edition','Armor','Torso','d42f4198-292d-44cf-8a9e-c8dfa8cb6954','','',NULL), -('13413','Falston Jumpsuit Orange','Char_Clothing_Torso_1','UNDEFINED','ddc11ef9-51ed-4835-982c-a74b4893c684','','',NULL), -('13414','Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','ea9b49a0-24b8-49be-a770-49b0d9993d8a','','',NULL), -('13415','Bottle','Misc','UNDEFINED','95836865-7169-455f-b58a-0b1d602a9ac4','','',NULL), -('13416','Taranite (Raw)','Cargo','Cargo','9154e4c8-2892-448b-8b54-474411ae8049','','',NULL), -('13417','Door Control','ControlPanel','DoorPart','9a252315-f6d2-4943-8c73-500b23e9d751','','',NULL), -('13418','Internal Tank','FuelTank','Fuel','2faba726-d486-4604-9f58-331a7c84a116','','',NULL), -('13419','Ace Interceptor Helmet','Armor','Helmet','c92273b0-2d7f-41b3-9fdd-af07e190a0f3','','',NULL), -('13420','Door Control','Door','UNDEFINED','a967b09d-51ea-4db8-bed4-290cbb5ab551','','',NULL), -('13421','Lynx Legs Black','Armor','Legs','51cc7a86-a0fc-4f4f-8c75-6e48c520ee0c','','',NULL), -('13422','Remote Turret','Turret','GunTurret','4819cdf3-9b11-49ea-aab3-b8c44c796157','','',NULL), -('13423','INTK_AEGS_Sabre','FuelIntake','Fuel','05d0837c-61bb-4a29-a103-d024eceafb87','','',NULL), -('13424','MacFlex Legs Violet','Armor','Legs','b55128e3-2096-4c70-8ce6-b702145acb13','','',NULL), -('13425','facial_hair_033','Char_Head_Beard','UNDEFINED','48d7037d-2aba-43bb-af1a-1192678ba08b','','',NULL), -('13426','box_plastic_4_weapon_0075x005x0025','Misc','UNDEFINED','e6cb49ba-0fdc-4608-88a5-a27d0436ea8a','','',NULL), -('13427','AEGS_Avenger_Thruster_Main','MainThruster','FixedThruster','40b9d976-2aa0-4140-a178-71443215b655','','',NULL), -('13428','DRAK_Herald_SCItem_Dashboard_Station','SeatDashboard','UNDEFINED','64a44448-e31e-4999-a1f2-1b19c64e62f2','','',NULL), -('13429','A03 \"Red Alert\" Sniper Rifle','Weapon','Medium','89a070b3-4abc-466e-915c-55a6bd2fd441','','',NULL), -('13430','Astatine','Cargo','Cargo','0ac89842-959f-4b16-9245-ddf80fa015c3','','',NULL), -('13431','Kopion Horn','Cargo','Cargo','749fc811-edd4-4528-84c4-941792645186','','',NULL), -('13432','Li-Tok Boots Blue','Char_Clothing_Feet','UNDEFINED','3ae6f0bd-eafd-4873-ad7a-66ec0bb6262f','','',NULL), -('13433','Door Control','Door','UNDEFINED','5e4ec5a9-6a5e-4e67-98f4-43b397345f99','','',NULL), -('13434','Novikov Backpack Halcyon','Armor','Backpack','26f34f18-206a-485e-bf5e-ddda6852a8c5','','',NULL), -('13435','Radar_Display_Scorpius','Display','UNDEFINED','b42caa92-64ec-4f66-859e-eeb76a3e347a','','',NULL), -('13436','NONE_LaserRepeater_FiringMechanism_S2','WeaponAttachment','FiringMechanism','68682fd8-dbf2-463d-883e-95575dd88331','','',NULL), -('13437','ORC-mkX Arms Righteous','Armor','Arms','3052d7b7-53b4-4843-bc47-37763751f2aa','','',NULL), -('13438','MISC_Starlancer_Seat_Access_Support_Left','SeatAccess','UNDEFINED','d382f03c-ad1f-4062-91a0-cfabb83c5b9e','','',NULL), -('13439','Personal Storage','Cargo','UNDEFINED','22e19b3d-2252-4b81-be6d-ffe21abe65d0','','',NULL), -('13440','Flight Blade','FlightController','UNDEFINED','01755e4b-1371-468b-9e02-773f29ebcc5e','','',NULL), -('13441','AEGS_Door_Decal_XO','Decal','DoorPart','d44379bf-c407-4ed1-9828-fdcf704d99a3','','',NULL), -('13442','Bottle','Misc','UNDEFINED','7f13d774-ddc5-463c-84c3-90dd775078c5','','',NULL), -('13443','Bottle','Misc','UNDEFINED','f99015af-289a-4999-b255-ce7216a767c6','','',NULL), -('13444','Antium Core','Armor','Torso','3c09b16a-0c8b-41df-84c9-e0a4a271c0fa','','',NULL), -('13445','Janalite','Cargo','Cargo','8d39bfb6-6dcb-436f-8d1a-b9afcbae7408','','',NULL), -('13446','MISC_Reliant_Sen_Seat_Station_Rear','Seat','UNDEFINED','f3d26fcd-8b75-4971-b612-da659bc46ad1','','',NULL), -('13447','RSI_Zeus_ES_Thruster_Retro_Left','ManneuverThruster','Retro','895f32e6-f8bc-4018-a8c3-81b591a2d663','','',NULL), -('13448','ARGO_RAFT_Thruster_VTOL','MainThruster','FixedThruster','55da1905-92d7-4d28-a78c-5f2a9a6694fe','','',NULL), -('13449','Ball','Char_Head_Piercings','UNDEFINED','4983673e-62ca-49ce-a6a1-a8c7b148c351','','',NULL), -('13450','ASAD_DistortionRepeater_PowerArray_S2','WeaponAttachment','PowerArray','1ca2ffb7-915a-43e4-ab8e-0d84a15a92ac','','',NULL), -('13451','Carryable_2H_FL_MissionItem_covalex_empty_a','Misc','UNDEFINED','15cb4fa4-befa-4be1-a959-63e5f8423745','','',NULL), -('13452','Bed','Usable','UNDEFINED','16b491d3-bc89-4cfb-bcfb-1c2cfbe0905f','','',NULL), -('13453','Radar_Display_ORIG_400','Display','UNDEFINED','b0f28cbb-54d7-4a58-b6f2-9dd8051cd5ae','','',NULL), -('13454','RSI_Constellation_Andromeda_Thruster_Retro','MainThruster','FixedThruster','8a2d7dd9-45d4-4c86-9626-5308abeb6da1','','',NULL), -('13455','Fortifier Helmet Dark Red','Armor','Helmet','d53bfc07-aabf-4e6f-b7fa-74d41b343db8','','',NULL), -('13456','Door_Bathroom_RSI_Constellation','Player','UNDEFINED','3665f95f-0e3d-433a-a1c7-b6e0a878ef7a','','',NULL), -('13457','Bengal_BallisticCannon_Barrel_S7','WeaponAttachment','Barrel','3989a72a-0104-4c8e-ba00-209740b078f4','','',NULL), -('13458','Defiance Core Sunchaser','Armor','Torso','8f0ae299-4a81-4f28-8d0c-fd03badec3f4','','',NULL), -('13459','Door Control','Door','UNDEFINED','2c5b697d-7a5d-4f6e-8cd6-f998288400fd','','',NULL), -('13460','Beradom','Cargo','Cargo','f73664ce-e225-4b39-bfd8-bf64ebda221e','','',NULL), -('13461','Anvil Hornet Ghost Center Cap','Module','UNDEFINED','83b6c014-63a2-4516-b2bd-36b762d208f4','','',NULL), -('13462','AEGS_Door_Decal_Avenger_Pod_5','Decal','DoorPart','4173e1c4-5632-4cdb-9f1d-1dffaa8cca86','','',NULL), -('13463','Personal Storage','Cargo','UNDEFINED','433a66bc-10d9-4c5a-9410-b88ab1ab4087','','',NULL), -('13464','DockingTube_Fuel_Ports_RSI_Constellation_Taurus','DockingCollar','UNDEFINED','2de23313-23f2-4be9-8197-dc11b61acb1c','','',NULL), -('13465','Overlord Legs Supernova','Armor','Legs','4fd216ed-b7b4-4c42-b6bf-ba12040a996a','','',NULL), -('13466','ComfortAir Plus','LifeSupportGenerator','UNDEFINED','c50917d3-f453-4ca6-b753-1c506a6710e0','','',NULL), -('13467','ORIG_890J_Hologlobe_RADR_Display','Display','UNDEFINED','7e1c9fa2-708c-4459-8c6f-c8ad303c1173','','',NULL), -('13468','Janalite','Misc','Harvestable','e954d75e-fb1e-487e-90a8-170f0284b502','','',NULL), -('13469','Lynx Arms Lichen','Armor','Arms','503a2df0-f032-431d-8d4a-3895d65c32af','','',NULL), -('13470','m_human_mannequin_odyssey_suit_12','ShopDisplay','UNDEFINED','461febdd-a6f8-44ba-8a96-70c6c18d6ced','','',NULL), -('13471','ANVL_Paladin_Thruster_Mav','ManneuverThruster','UNDEFINED','1f399686-d020-4ff6-b3d2-25c150bb8cab','','',NULL), -('13472','Seat','Usable','UNDEFINED','ccf1ebc0-3049-4220-a776-89ac849e9833','','',NULL), -('13473','MISC_Hull_C_Thruster_Main','MainThruster','FixedThruster','0ae22f89-ade5-4816-9ac9-9ca66dd3a978','','',NULL), -('13474','Palatino Backpack Moonfall','Armor','Backpack','b48bd712-6f2e-4e53-bc33-8dfcc34a86d1','','',NULL), -('13475','Large Container','Container','UNDEFINED','0fd8112f-3e81-432e-9c30-b47fe4fb860e','','',NULL), -('13476','DRAK_Clipper_Thruster_Mav_Top','ManneuverThruster','UNDEFINED','cf6cce3d-aa7c-4335-b2db-36a7bbab6548','','',NULL), -('13477','display_ship_components_03x01x01','ShopDisplay','UNDEFINED','0c5831ce-204d-4ad5-a9fd-9a49e25e41ff','','',NULL), -('13478','box_plastic_4_weapon_opened_005x010x00375_a_behr_smg','Misc','UNDEFINED','a42e626a-384f-4b3b-a3dc-3f1ce4cdd2a7','','',NULL), -('13479','Stirling Hazard Helmet','Armor','Helmet','4e897f93-9733-402c-ac76-a17a42547d00','','',NULL), -('13480','Geist Armor Arms Golden Blossom','Armor','Arms','4dc6c72f-5649-47d7-b686-8519d9207ac8','','',NULL), -('13481','AEGS_Sabre_Firebird_Winglet_Left','Misc','UNDEFINED','35b4375f-0a93-49ae-88b9-2542a8736b2e','','',NULL), -('13482','Bexalite','Cargo','Cargo','63ee7719-b158-463e-a646-caa172f99161','','',NULL), -('13483','Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','1bb506a2-ee97-458d-af6a-a074c50c2e7d','','',NULL), -('13484','Quantity','Misc','UNDEFINED','2a90938f-c73e-4bd5-bb4f-ae58e51a2ba2','','',NULL), -('13485','Elevator Control','Elevator','UNDEFINED','8f88eed1-67c1-4c82-a06a-6d66378cc4eb','','',NULL), -('13486','Berserker Helmet','Armor','Helmet','30a103e5-c48b-43d1-8b01-31a3cb153393','','',NULL), -('13487','SoftLock_Terminal_Standard_Starfarer_Fuel_Pods_Ship_R1','Display','UNDEFINED','67b6f26b-3a71-4092-92ce-a0d2057e9e0e','','',NULL), -('13488','Atzkav \"Igniter\" Sniper Rifle','Weapon','Medium','0563ba71-7903-46f7-ae55-87f108c56c46','','',NULL), -('13489','Samya Tank Rosewood','Char_Clothing_Torso_0','UNDEFINED','f2cb6838-00f4-49e3-83b1-ebf78429a54e','','',NULL), -('13490','Aluminum (Ore)','Cargo','Cargo','31f1a194-9a0f-4f01-808b-051c07857381','','',NULL), -('13491','Internal Tank','QuantumFuelTank','QuantumFuel','8043b341-f2dd-46bf-974b-409fe29f4530','','',NULL), -('13492','Heartseeker Poster','Misc','Utility','2e155e0b-5dbc-44b8-aa2c-cd61db721c64','','',NULL), -('13493','M4A Cannon','Weapon','Gun','2756f5f1-ef1e-454a-a171-9a5bd40e3a9d','','',NULL), -('13494','AEGS_Door_Decal_Hangar_03','Decal','DoorPart','3e072cd0-9bf8-4308-aeca-e3cab40b2a76','','',NULL), -('13495','AEGS_Vanguard_Harbinger_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','13452a35-5eec-46b9-a1f9-98eac7234a24','','',NULL), -('13496','stand_shop_small_b_Cooler','ShopDisplay','UNDEFINED','aeb36b00-0daf-4f0f-a36c-38cae803aa22','','',NULL), -('13497','Citadel Arms Base','Armor','Arms','94576f65-72e5-418a-ac46-56aea3e0d81d','','',NULL), -('13498','Projector_HUD_Aim','Display','UNDEFINED','e3523f55-320a-49ba-8e27-1bc48207e359','','',NULL), -('13499','Weapon_Rack_1_GMNI_LMG_Common_001','Usable','UNDEFINED','ab77f4d5-170f-445d-a2aa-d361c6f38202','','',NULL), -('13500','Drink_Bottle_schnapps_01_a','Drink','Bottle','99a969c2-33ec-478b-89b0-d5c795de37b3','','',NULL), -('13501','AEGS_Javelin_Thruster_Main_01','MainThruster','FixedThruster','c0ca41fe-c58e-4827-bb3e-b87b98c488b6','','',NULL), -('13502','Cargo_Comm_125x3_Vice_Altruciatoxin','Cargo','Cargo','ffaf8b0a-58e7-4897-8764-a589e1e3b1f6','','',NULL), -('13503','TRGT. STATUS','Seat','UNDEFINED','e5cfd162-8a8f-4032-9509-4613573b0699','','',NULL), -('13504','Radar_Display_ESPR_Talon','Display','UNDEFINED','0403e324-96f4-4c4e-ab6f-445dafe3f148','','',NULL), -('13505','Atzkav Sniper Rifle Battery (8 cap)','WeaponAttachment','Magazine','8177489f-ed83-44ac-afd4-2b32a80fa0a6','','',NULL), -('13506','Door Control','ControlPanel','DoorPart','ea7fe3cc-7a9f-4685-a9e5-b6f4a7f904a4','','',NULL), -('13507','Havoc Scattergun Sharkmouth Edition','Weapon','Gun','15596dea-2429-41fe-ac84-593bae703686','','',NULL), -('13508','Carryable_1H_SQ_Datapad_Fluff_Orb_NineTails','Misc','UNDEFINED','e99d4623-3d59-47b5-adde-856586fdde11','','',NULL), -('13509','BEHR_BallisticGatling_Barrel_S4','WeaponAttachment','Barrel','b7c26fcc-a70c-4a95-ae4c-578fb2614f20','','',NULL), -('13510','Carryable_1H_CY_garnish_citrus_peel_1_a','Misc','UNDEFINED','68c8fd43-f248-4f2e-9e9e-3fa9b5e8511b','','',NULL), -('13511','Leyland\'s Tortoise','Misc','UNDEFINED','bb3ab19f-d769-4388-b363-bbfdd0a0c631','','',NULL), -('13512','MASTER_Carryable_2H','Cargo','Cargo','a8954535-79f2-4152-8f7f-1dbb7c0e579f','','',NULL), -('13513','INTK_MRAI_Guardian_MX','FuelIntake','Fuel','4267fc53-26c8-fbdf-87d8-275557c1c29f','','',NULL), -('13514','ORC-mkX Helmet (XenoThreat)','Armor','Helmet','e14cec8b-8599-4b3a-90d7-3ccb0a15befc','','',NULL), -('13515','Crossfield','QuantumDrive','UNDEFINED','9e3a3bcb-d90a-46c5-912b-079fd15157cc','','',NULL), -('13516','Aphorite','Cargo','Cargo','f9fffca1-5e12-4073-9a2e-f2b623e9f6a9','','',NULL), -('13517','Door Control','ControlPanel','DoorPart','14cb79ef-6137-40c5-9146-9e4b988385d5','','',NULL), -('13518','Ship Showdown \'52 Mercury Coin','Misc','Utility','25d92d2a-4e0a-4a13-8e50-8f5f4b2c8f78','','',NULL), -('13519','300 Series Black & Royal Paint','Paints','UNDEFINED','d8cf6a6e-fbd8-4b12-beea-87be80825b05','','',NULL), -('13520','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','684fe0f4-713f-4eab-8a14-474412c20304','','',NULL), -('13521','Seat','SeatAccess','UNDEFINED','cc722767-a0c0-4cd8-aabd-5d30190bfdb1','','',NULL), -('13522','Overlord Legs Switchback','Armor','Legs','575062c4-e14c-4353-bd3b-e3721a65faca','','',NULL), -('13523','Pressurized Ice','Cargo','Cargo','e3b726e0-904d-4e1d-a099-b27086b5a4af','','',NULL), -('13524','Personal Care Product','Misc','UNDEFINED','37f6dae0-2e96-40fd-aff7-d0c477f8226e','','',NULL), -('13525','Bed','Seat','UNDEFINED','5041a360-beed-4ca4-862e-4ccf208c499f','','',NULL), -('13526','Sadaryx','Cargo','Cargo','21ff77df-951a-42a8-a9d9-d80c4f845f68','','',NULL), -('13527','ANVL_Hornet_F7CS_Mk2_Thruster_Retro_Right','ManneuverThruster','Retro','44412d03-2c1f-48f6-917e-f9a4329d21b8','','',NULL), -('13528','Elsen','Cooler','UNDEFINED','c0f30e06-78e9-4df9-846a-8ff0716111f5','','',NULL), -('13529','Zeus Plushie','Misc','UNDEFINED','55988155-c2b0-4306-a7bb-71be09a0f5f2','','',NULL), -('13530','Aril Arms Harvester','Armor','Arms','191b33b3-8c34-420c-8a84-518e5e3a9920','','',NULL), -('13531','Pike Liberty Ale (Bottle)','Drink','Bottle','0549a56d-7ce4-4e76-8bb0-4f2988fb5c34','','',NULL), -('13532','Booth_Table_6Spots_02','Usable','UNDEFINED','fad2b199-8874-4e71-9ce6-8480b977deeb','','',NULL), -('13533','Mercury Star Runner Meridian Livery','Paints','UNDEFINED','26932086-0a8f-4a38-b357-a254ca2e09c8','','',NULL), -('13534','Human Food Bars','Cargo','Cargo','549af229-76ae-4c1e-b6ca-639b9e8a925e','','',NULL), -('13535','Overlord Helmet Predator','Armor','Helmet','9b51517f-80f1-49f2-b5bc-6e35fd3f5ab7','','',NULL), -('13536','Medical Bed','Usable','UNDEFINED','7b892f32-472f-4d9b-87a9-d7ef16f7c3e5','','',NULL), -('13537','SCItemDisplayScreen_ATLS_ScreenCoverLeft','Display','Default','6154fcf8-4ee8-49a2-bfd5-605daff98535','','',NULL), -('13538','AEGS_Retaliator_Thruster_Mav_Joint_02','ManneuverThruster','JointThruster','10602ade-884e-485d-9a7d-60002dd6b4fc','','',NULL), -('13539','Door Control','Door','UNDEFINED','36511e70-fcf7-4d3b-8d21-6bc8f1cfe260','','',NULL), -('13540','ESPR_LaserCannon_PowerArray_S6','WeaponAttachment','PowerArray','ec2c660c-74d1-41f5-b169-c2b9bdd478e2','','',NULL), -('13541','Deadbolt III Cannon','Weapon','Gun','370e4728-924a-4791-9297-a71b25ff08e9','','',NULL), -('13542','Bed','SeatAccess','UNDEFINED','7ad433bb-3d07-4d24-a0f0-e3de36d3db15','','',NULL), -('13543','Prim Shoes','Char_Clothing_Feet','UNDEFINED','da86d47f-c381-49c4-bf14-677bab939c66','','',NULL), -('13544','Pink QuikFlare','Weapon','Gadget','ae38dde9-256e-4431-8dc7-a6f2ca1e26b5','','',NULL), -('13545','Odyssey Helmet Tan','Armor','Helmet','db8b2c09-e18d-4389-b585-22aec5177113','','',NULL), -('13546','Katla Mask','Char_Clothing_Hat','UNDEFINED','2f5fb647-7770-44f2-904b-c5bf101ea524','','',NULL), -('13547','sc_nvy_bdu_jumpsuit_02_01_17','Char_Clothing_Torso_1','UNDEFINED','b29b9a9e-578f-4bf5-b78b-c5382b1b6eff','','',NULL), -('13548','Fotia Seedpod','Cargo','Cargo','e2086ba8-bb43-411f-ad45-ac6ae05d026d','','',NULL), -('13549','Door Control','ControlPanel','DoorPart','acd539e5-6c07-4e90-9aa3-b7b7a8f53722','','',NULL), -('13550','ARGO_MPUV_Thruster_Aux_Fixed_02','ManneuverThruster','FixedThruster','09674457-822d-4912-92c6-63548a43b5d0','','',NULL), -('13551','UNE Gold Ingot (Pristine)','Misc','UNDEFINED','96e85b07-5573-4ed8-8832-0ba69737831c','','',NULL), -('13552','Gamma \"Black Op\" (1x Holographic) ','WeaponAttachment','IronSight','a81a2546-385a-409b-92bf-38749702b50f','','',NULL), -('13553','Door Control','Door','UNDEFINED','bca2a9e2-075b-4d2a-a767-b853b33d5a52','','',NULL), -('13554','CRUS_Intrepid_Thruster_Mav','ManneuverThruster','UNDEFINED','f88b8871-e54d-431c-95bc-dd1829b0832b','','',NULL), -('13555','Herald Ghoulish Green Livery','Paints','UNDEFINED','f25b0d64-9ea2-4a32-bb62-b9eacc24d6a7','','',NULL), -('13556','Glacis','Shield','UNDEFINED','d9870a05-1a66-4a9a-bec6-30eb67e3a3ce','','',NULL), -('13557','Razorback Pants Grey','Char_Clothing_Legs','UNDEFINED','53a6ae6f-5113-4325-920f-b3681bcd0ebc','','',NULL), -('13558','SHIELDS','ShieldController','UNDEFINED','b3127564-7d78-4443-b826-a69cdae6a085','','',NULL), -('13559','Freelancer IceBreak Livery','Paints','UNDEFINED','4257bfce-3cfc-4905-9ddb-e52ad4e17e13','','',NULL), -('13560','DRAK_Cutter_Thruster_Main','MainThruster','FixedThruster','7c5043a8-bb6f-4619-9b5e-fde41b662709','','',NULL), -('13561','Paint_300_SeatTrim_CarbonFiberYellow','Misc','UNDEFINED','49f44472-3ad7-4941-9d4e-34b5bd48ec3a','','',NULL), -('13562','Seat','SeatAccess','UNDEFINED','dcb55245-248e-469f-881e-d397c1a6f2d8','','',NULL), -('13563','Defiance Helmet Tactical','Armor','Helmet','ca3c32d9-9575-482a-914d-17f5200de89b','','',NULL), -('13564','MacFlex Legs Aqua','Armor','Legs','3a9fc5f6-69f2-4e92-a67e-5b52d1933df9','','',NULL), -('13565','display_box_plastic_4_weapon_opened_005x010x0025_rundown_a_3Ports','ShopDisplay','UNDEFINED','60fca5a2-697e-43a0-8764-0bd23b1f69b3','','',NULL), -('13566','Overlord Arms Stinger','Armor','Arms','ca318c30-5d91-468f-9956-1d14e741165d','','',NULL), -('13567','Impact II Mining Laser','Mining','Gun','ac0185ec-c252-4958-b4cb-b295e91fc809','','',NULL), -('13568','Aves Talon Arms','Armor','Arms','9d4b3c3b-0463-4bc6-99d6-da3adc84aa3d','','',NULL), -('13569','Corbel Arms Patina','Armor','Arms','cbae9bb8-472f-41f6-bdce-06fb5f01837e','','',NULL), -('13570','Seat','Usable','UNDEFINED','d69b6990-b3eb-4b7a-979d-668ce3a8fafc','','',NULL), -('13571','RSI_Hermes_Thruster_Mav_Bottom','ManneuverThruster','FixedThruster','383f3bec-2bfe-49ae-9865-50f2404f374a','','',NULL), -('13572','AEGS_Door_Decal_Deck_A','Decal','DoorPart','2cfe78ff-7c5f-419f-bdfb-fb43fe0537d3','','',NULL), -('13573','Self Destruct Unit','SelfDestruct','UNDEFINED','54046cfc-2891-4ba5-b7b3-a8e39da0dd95','','',NULL), -('13574','Avenger Stalker TSB Flight Blade','FlightController','UNDEFINED','885e8b70-2d19-4645-a11a-a1fb368be693','','',NULL), -('13575','CRUS_Starlifter_Thruster_VTOL_Side','MainThruster','FixedThruster','48c4f0d3-205b-480f-a2de-ebe0457392c1','','',NULL), -('13576','PT1 (1x Holographic)','WeaponAttachment','IronSight','4505b54f-0e2b-4dfa-8c15-3c9073561f93','','',NULL), -('13577','behr_ltp_01_primed_5m','FPS_Deployable','Small','f0cde98f-6564-4fcb-b4ce-bffba05cbb74','','',NULL), -('13578','Tempus Tank Sable','Char_Clothing_Torso_0','UNDEFINED','820d0921-5a7c-47f4-a618-9df459b383d3','','',NULL), -('13579','Bellito Shirt','Char_Clothing_Torso_0','UNDEFINED','8904bbde-09dc-4b12-8353-6e452983cf8c','','',NULL), -('13580','Booth_Table_3Spots_02','Usable','UNDEFINED','caaa51b7-e171-474f-86bc-9df4856e06a7','','',NULL), -('13581','Pembroke Helmet RSI Ivory Edition','Armor','Helmet','71657a75-3fb0-49ac-8cea-6ab010366dfb','','',NULL), -('13582','facial_hair_045','Char_Head_Beard','UNDEFINED','bf085ecf-e882-41ea-9944-4a1633dbbe0e','','',NULL), -('13583','Morozov-SH Core Snowdrift','Armor','Torso','2b8d69d2-1aa9-4198-96af-5065ef3bda88','','',NULL), -('13584','Door Control','ControlPanel','DoorPart','05588095-a920-4cf6-8037-a6fa2cdd4978','','',NULL), -('13585','Access','SeatAccess','UNDEFINED','85291389-34d3-450e-a571-52384ed6bfc2','','',NULL), -('13586','Bed','Usable','UNDEFINED','f54175fe-7925-45ac-b276-67d9cb1d1079','','',NULL), -('13587','Pyro RYT Multi-Tool','Weapon','Gadget','ac7cfbb6-0617-462f-bcc3-9fa2d5bfe082','','',NULL), -('13588','Ammonia','Cargo','Cargo','6fd049cb-0ba0-4e89-a92a-545a684702d9','','',NULL), -('13589','PU_MISSION_Outpost_PowerPlant_Initial','Cargo','Small','60e83be7-7c4b-4e3f-a98d-f20e4b8bb5f5','','',NULL), -('13590','Koal Pants','Char_Clothing_Legs','UNDEFINED','8656b5d0-0202-4bc6-846b-a0a55b2e5ea0','','',NULL), -('13591','Mountaintop Jacket Multitone','Char_Clothing_Torso_1','UNDEFINED','20fab9fa-f49d-4e6f-ad4b-57f7a0ca09db','','',NULL), -('13592','Food_box_noodle_02_closed_a','Food','Box','8cccbd40-6749-444c-a384-44bc89b0e994','','',NULL), -('13593','Molina Mold Treatment','Cargo','Cargo','e3b39bb9-6bc7-4a24-8198-839402f34236','','',NULL), -('13594','MSD-515 Missile Rack','MissileLauncher','MissileRack','42f9b948-8448-4247-a617-2a133ef50f6c','','',NULL), -('13595','Venture Arms \"Rust Society\"','Armor','Arms','8c87d9a4-97ef-4176-9f0e-0d241904ee35','','',NULL), -('13596','INTK_AEGS_Retaliator','FuelIntake','Fuel','92be310d-2863-43e8-8841-bbcd6be02740','','',NULL), -('13597','CK13-GID Seed Blend','Cargo','Cargo','6f3557ee-2049-4c7b-926c-aefbda1bb1be','','',NULL), -('13598','Argus Helmet Black/Grey/Red','Armor','Helmet','53df0d95-c8f1-416d-8647-33fabbf24a1a','','',NULL), -('13599','Seat','Usable','UNDEFINED','aa631353-788e-47c3-9f20-d6a26a5168d6','','',NULL), -('13600','Asgard Alliance Aid Green Livery','Paints','UNDEFINED','5b8d4cb7-b36e-41a9-845f-705aa75d814d','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('13601','AImodule_Collector','AIModule','UNDEFINED','ce757a73-3ffa-447c-a5d7-90a27b1e1722','','',NULL), -('13602','Tona Shoes Imperial','Char_Clothing_Feet','UNDEFINED','e0fdf553-9196-475a-882d-293f2fb3fea7','','',NULL), -('13603','Palatino Arms Deadlock','Armor','Arms','8a3ac00f-58ab-4638-9022-0e026d350361','','',NULL), -('13604','Ball','Char_Head_Piercings','UNDEFINED','3cc4ab88-9b09-4766-8fa7-cbbd2de2f782','','',NULL), -('13605','ATLS Tectonic Livery','Paints','UNDEFINED','a34c7c85-0315-4734-9c19-5b6d45ccf640','','',NULL), -('13606','DRAK_Dragonfly_Thruster_Retro','ManneuverThruster','FixedThruster','37ac3c65-df6e-4b46-9846-aa93d533ee79','','',NULL), -('13607','Misfit Jacket Veritas','Char_Clothing_Torso_1','UNDEFINED','b6c91d7a-28b5-4148-8384-2eca4f1d7d0e','','',NULL), -('13608','MRAI_Guardian_MX_Dashboard_Btn','Misc','UNDEFINED','c3eb7e97-39d5-466c-9060-e60498d9f970','','',NULL), -('13609','Door Control','Door','UNDEFINED','97082dff-456c-46f8-92a5-5cb4f4d4ccc7','','',NULL), -('13610','Radar_Display_Redeemer','Display','UNDEFINED','186271f8-985e-4715-bce6-f244ffe465c8','','',NULL), -('13611','VariPuck S4 Gimbal Mount','Turret','GunTurret','ea49d194-0c0b-43e1-82fb-d72f35c1af05','','',NULL), -('13612','CorticoPen Xtra','FPS_Consumable','Medical','8761daff-4729-424a-a783-ccbb8196dfe3','','',NULL), -('13613','fruit_basket_1_harvestables','ShopDisplay','Default','64be7891-9363-4f70-a19f-786eff7cfa4c','','',NULL), -('13614','Testudo Backpack Disrupt Camo','Armor','Backpack','4db99faa-eb48-4f97-a757-99cd29add137','','',NULL), -('13615','Seat','Usable','UNDEFINED','074794fd-aa33-42fe-8190-662ec0e51b3b','','',NULL), -('13616','Compboard','Cargo','Cargo','2f99ff1c-bfcb-4dcd-a611-0b576a59bfc8','','',NULL), -('13617','Krig_l21_wolf_Pilot_Dashboard','SeatDashboard','UNDEFINED','65e6dd5c-603a-448a-8f79-35fc261944b9','','',NULL), -('13618','H_Dashboard_Projector_HUD_BANU_Defender','Display','UNDEFINED','4235e818-d96a-4adf-ad1c-790bd0e27330','','',NULL), -('13619','Aegis Gladius - Noise Launcher','WeaponDefensive','CountermeasureLauncher','1bf04a1a-57cc-4e75-a294-864515c35bcd','','',NULL), -('13620','Centurion Sandstorm Camo Livery','Paints','UNDEFINED','d883e83e-ead4-49ac-a934-4e63db7d7cc7','','',NULL), -('13621','mobiGlas Azure Casing','MobiGlas','Personal','72430ad6-abf3-437f-b1f1-9249915eb6c2','','',NULL), -('13622','Skyhigh City T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','c2cf6c51-0fe1-4c00-ac6d-ca240739118e','','',NULL), -('13623','Seat','SeatAccess','UNDEFINED','171132a6-8ac9-429d-999c-fcae3597cdcf','','',NULL), -('13624','PlayerDeco_lt_couch_leather_3_straight_mmhc_a','Usable','UNDEFINED','889517d6-9895-4706-af5e-c58402fd80e6','','',NULL), -('13625','Datapad','Misc','UNDEFINED','6c00e2ca-24ba-473e-8e6b-8df2c434e147','','',NULL), -('13626','Seat','Usable','UNDEFINED','467eddbd-745f-4ef8-a5e0-b0874bff37c1','','',NULL), -('13627','ARMR_DRAK_Clipper','Armor','Medium','054fdde0-75fa-4053-ac95-e606819263ac','','',NULL), -('13628','MacFlex Arms Purple','Armor','Arms','8f8b52c5-a504-4ef5-a4fe-2c8f58ff37b5','','',NULL), -('13629','Arrowhead \"Voyager\" Sniper Rifle','Weapon','Medium','8b266e43-6a55-4fe5-b2d4-21e67d5d9795','','',NULL), -('13630','Door','Door','UNDEFINED','bf1e704f-9be5-4e7a-9c8d-13830e587318','','',NULL), -('13631','ClipVest Work Harness Violet','Char_Clothing_Torso_1','UNDEFINED','31ff398a-c97f-48ee-aed2-1db03327f805','','',NULL), -('13632','Flight Blade','FlightController','UNDEFINED','a87033a4-cd47-4958-bbf9-994d27f2a529','','',NULL), -('13633','Seat','SeatAccess','UNDEFINED','61ffdb88-bcd7-4a50-aebb-b95705a2f435','','',NULL), -('13634','RSI_Zeus_Wing_Bottom_Right','AttachedPart','UNDEFINED','43b6e209-9f2d-4d57-8c22-463c60febf0c','','',NULL), -('13635','RSI Polaris Torpedo Rack','MissileLauncher','MissileRack','6c32193d-15e0-486f-a833-1db0b1f93d05','','',NULL), -('13636','Constellation Andromeda Ship Armor','Armor','Medium','d2f24bb0-9825-455d-852a-302a3ee290a4','','',NULL), -('13637','Bottle','Misc','UNDEFINED','07f36567-ac56-4062-b7af-eb1153b0f5f3','','',NULL), -('13638','AIModule_Unmanned_PU_Advocacy','AIModule','UNDEFINED','c849fb55-92aa-4826-ae22-70d7aa9593e3','','',NULL), -('13639','Altruciatoxin','Misc','Utility','b9487ed1-c8ac-4db1-90ef-b0e7ff6f214a','','',NULL), -('13640','Davin Work Gloves \"Pathfinder\"','Char_Clothing_Hands','UNDEFINED','24578cff-1bec-4d44-9b15-42638ab6a552','','',NULL), -('13641','Exo-8 Helmet (Used)','Armor','Helmet','5f335fd3-4a74-42c8-ab3c-a38471bae134','','',NULL), -('13642','Freeze','Cargo','Cargo','7056553f-a996-47ab-92d6-6b58a9871386','','',NULL), -('13643','ORIG_M50_Thruster_Retro_AT','ManneuverThruster','JointThruster','4487ea22-21a8-4bf3-9fe6-c29f326da823','','',NULL), -('13644','AEGS_Javelin_SeatAccess_Rear_Left_Blocked','SeatAccess','UNDEFINED','0cbc24ce-ef07-44e6-8cd6-bd14872965d8','','',NULL), -('13645','AEGS_Reclaimer_Dashboard_CoPilot','SeatDashboard','UNDEFINED','a7b274d8-5ab8-4c51-b5d9-d2f9696b4170','','',NULL), -('13646','Tipper Hat Kel-To','Char_Clothing_Hat','UNDEFINED','450f8e9c-4d81-441f-8c54-807bb1086b94','','',NULL), -('13647','Stitcher Arms','Armor','Arms','a7d9d23d-be2f-4e84-af5a-6d1d34c295d0','','',NULL), -('13648','Watermelon (Slice)','Food','Plant','4382c1cb-16f9-4649-8b2d-f902e2590a15','','',NULL), -('13649','ORC-mkX Legs Arctic','Armor','Legs','1c3a0ff1-a58b-4903-b242-ff3a84d0eabc','','',NULL), -('13650','Samya Tank White','Char_Clothing_Torso_0','UNDEFINED','f20ec199-4b09-4d9a-8eec-7204fe8d952f','','',NULL), -('13651','R97 Shotgun','Weapon','Medium','4577e319-8762-4247-8050-882fabe0ea10','','',NULL), -('13652','Toothbrush','Misc','UNDEFINED','51f9d39a-10d1-49bf-a6d2-ab08617fdf7f','','',NULL), -('13653','PAB-1 Arms Cry-Astro Edition','Armor','Arms','ddfe7c2d-b6d7-4f30-a1aa-e10704a6470d','','',NULL), -('13654','Remote Turret','Turret','PDCTurret','e38a7612-ccba-4656-ba90-c0152bc036b7','','',NULL), -('13655','ARGO_MOTH_Dashboard_Addon_TurretBTN','AttachedPart','UNDEFINED','cdf40f6c-889a-4e26-a4a4-77f21afbece3','','',NULL), -('13656','VariPuck S3 Gimbal Mount','Turret','GunTurret','2616dd99-282a-493a-9f79-750a1ba6f329','','',NULL), -('13657','Venture Undersuit Green/Black','Armor','Undersuit','4b5d4290-437e-4646-9e36-4f0c548a7618','','',NULL), -('13658','WiDoW','Cargo','Small','576ece7e-0c17-4d1a-ac6b-374caaeaf3dc','','',NULL), -('13659','Atavi Shirt Multi-blue','Char_Clothing_Torso_0','UNDEFINED','b5265828-f7dd-4b43-86af-bd77d41c03cd','','',NULL), -('13660','Venture Core Ascension','Armor','Torso','5fcdda13-b65b-4d0f-bfac-a0418747608d','','',NULL), -('13661','ARMR_GRIN_MDC','Armor','Medium','fe391f6b-2f84-4fd4-8ddc-7be3ce581e74','','',NULL), -('13662','ADP-mk4 Legs Woodland','Armor','Legs','b400fde5-495b-47b1-a9d8-210b1d5cb4fd','','',NULL), -('13663','AcryliPlex Composite','Cargo','Cargo','3891ac68-1cdb-4181-8114-aa54ddce3649','','',NULL), -('13664','Door_ChipReader_DCD','Door','UNDEFINED','ba29a518-06f1-41da-8077-9dd49ab4267a','','',NULL), -('13665','300 Series White Lightning Paint','Paints','UNDEFINED','c44afd04-584f-43ae-b9c2-b3e2affe7fb5','','',NULL), -('13666','Raw Silicon','Cargo','Cargo','1fd362f2-85c1-4e67-8032-4a4024aa3886','','',NULL), -('13667','Internal Tank','FuelTank','Fuel','722eef25-4de6-4f2e-8ee1-84018e5023aa','','',NULL), -('13668','Khartu-al Ocellus Livery','Paints','UNDEFINED','83ec6f41-17a1-4a41-949d-f1530f0c9a66','','',NULL), -('13669','Carryable_2H_CU_CookingPot','Misc','UNDEFINED','8d4df48c-ceea-44e2-b753-99b5190be24b','','',NULL), -('13670','MOTH Rockwell Livery','Paints','UNDEFINED','816559a4-5b92-47e0-8d33-6d408c1c50e8','','',NULL), -('13671','bottle_water_1_tray_c_2Ports','ShopDisplay','Default','3dccf5ff-8709-4fab-8dda-71fb02e5d332','','',NULL), -('13672','Safe_Keypad','Cargo','UNDEFINED','e8c34dbd-b10f-4d7e-b9a7-e00d02ad1c2f','','',NULL), -('13673','Carryable_1H_kitchenware_spatula_a','Misc','UNDEFINED','3cdbb54d-d084-4829-82c3-60451590d780','','',NULL), -('13674','United Planets of Earth Mini-Flag','Flair_Cockpit','Flair_Static','9edbb4cd-ae1f-42e2-9884-072997d51378','','',NULL), -('13675','C8R Pisces Standard Flight Blade','FlightController','UNDEFINED','c8a18f9f-bdea-4bcf-b011-68e0959ee297','','',NULL), -('13676','ClipVest Work Harness Purple','Char_Clothing_Torso_1','UNDEFINED','0ab36ed3-9af8-4025-8344-c869e24f709a','','',NULL), -('13677','Seat','Usable','UNDEFINED','d33384e1-3d65-4c63-85ae-86880c0b38be','','',NULL), -('13678','drug_packet_1_a','Cargo','UNDEFINED','6e87b591-64e0-401a-80bf-a3f4570fccee','','',NULL), -('13679','MXOX_NeutronRepeater_FiringMechanism_S1','WeaponAttachment','FiringMechanism','69455dfa-4b6d-4130-b413-65bda418a93c','','',NULL), -('13680','Flight Blade','FlightController','UNDEFINED','6889e91f-2a6c-4576-8208-13f18441ed82','','',NULL), -('13681','Ventra Gloves Purple','Char_Clothing_Hands','UNDEFINED','7057fde4-8b64-4899-b762-e146ccfeae26','','',NULL), -('13682','MC-Green Hat','Char_Clothing_Hat','UNDEFINED','03be34c2-c181-417c-9b06-798ea768d157','','',NULL), -('13683','Door Control','DockingAnimator','UNDEFINED','63cd0c8c-de5c-4722-b0bc-407543aefa83','','',NULL), -('13684','RAFT Hurston Livery','Paints','UNDEFINED','7190c568-8bae-4419-9f47-91cb01413d55','','',NULL), -('13685','CNOU_Mustang_RADR_Display','Display','UNDEFINED','6d4eaa9a-6ce2-40b2-83b4-4af492163f6f','','',NULL), -('13686','Body','Char_Clothing_Legs','Medical','665fa1e6-39c8-4d65-91d9-42f16bda1868','','',NULL), -('13687','Testudo Backpack Turfwar','Armor','Backpack','5f7161bc-36a1-443e-aace-59ff91ab8a06','','',NULL), -('13688','ADP-mk4 Helmet (Modified)','Armor','Helmet','4ee19374-ae87-407a-996b-da376546f8c8','','',NULL), -('13689','Reliant Toshima Turret','Turret','GunTurret','1139b69c-c5b3-4f58-8ecb-64f1585e2bdb','','',NULL), -('13690','Starfarer Foundation Fest Livery','Paints','UNDEFINED','df3bc325-50e3-4d17-9257-81505cf47717','','',NULL), -('13691','CRUS_Starlifter_Ext_Door_Left_Lg_HACK','Container','UNDEFINED','1b777ea7-90b9-49ed-a83d-7516fcdc1729','','',NULL), -('13692','Salvaged Skull 8 SCU Container','InventoryContainer','Cargo','1c0e750c-6c3a-4215-ad5b-3712e8d2dd97','','',NULL), -('13693','Day One Shirt Imperial','Char_Clothing_Torso_0','UNDEFINED','486493c1-5519-4d05-a232-d450c08cd3e8','','',NULL), -('13694','P8-ARM Rifle Magazine (30 cap)','WeaponAttachment','Magazine','62c58bdb-c65c-4883-82c6-83e50c37d40d','','',NULL), -('13695','display_guns_04x01x01_s04_s05_2Ports','ShopDisplay','UNDEFINED','5e1fbc2d-c1f4-4666-8984-0044062923e7','','',NULL), -('13696','Beryl','Cargo','Cargo','26f67601-0949-4d5e-8991-805565a9b82a','','',NULL), -('13697','INTK_ANVL_Paladin','FuelIntake','Fuel','759ca8a4-b397-4cd6-81c0-dfd4a1ca1815','','',NULL), -('13698','Foundation Festival Beanie Black','Char_Clothing_Hat','UNDEFINED','06589c88-7a42-4241-90ed-7f659be507cd','','',NULL), -('13699','FirmWear SoundGuard Hard Hat','Char_Clothing_Hat','UNDEFINED','25550813-57a6-4c8a-bc7d-c04cec17312b','','',NULL), -('13700','SoftLock_Terminal_Standard_Starfarer_Fuel_Pods_Ship_R3','Display','UNDEFINED','4c97de4e-b77b-457b-9a92-32aa53f1fd8b','','',NULL), -('13701','AIModule_Unmanned_PU_UEE_GreenZone','AIModule','UNDEFINED','071075aa-09c5-46a0-a145-a6e6b7b8109f','','',NULL), -('13702','FirmWear SoundGuard Hard Hat','Char_Clothing_Hat','UNDEFINED','132b612b-9de9-4bc2-ba0c-1ab7e612f631','','',NULL), -('13703','Manned Turret','TurretBase','MannedTurret','ecef74fe-d964-40e2-b959-8a5e32530cda','','',NULL), -('13704','Vehicle_Screen_MFD_Holographic_MISC_Prospector_RR','Display','UNDEFINED','ec694bb2-caac-4e6a-9fe9-d53954803358','','',NULL), -('13705','ORC-mkX Legs Iceborn','Armor','Legs','f8a4bdca-fbec-4b71-b593-dc4472eda053','','',NULL), -('13706','CNOU_Mustang_Beta_Cover_Back','Container','Cargo','584ab2f9-7ae4-48ff-90e3-f5a95f8b63e9','','',NULL), -('13707','Iron (Ore)','Cargo','Cargo','f0a0814c-eb2a-409d-af8f-87adf9a6f40f','','',NULL), -('13708','display_ship_components_03x0075x0275_b_power','ShopDisplay','UNDEFINED','7fc2dcab-755c-46ec-9793-bd9c6b7f03ba','','',NULL), -('13709','ARGO_SRV_CargoGrid_Main','CargoGrid','UNDEFINED','53f60f2b-4d66-4926-811c-ab9068f1a562','','',NULL), -('13710','Remote Turret','Turret','PDCTurret','d6becd3d-c806-488c-b85b-81c8b13ae3c8','','',NULL), -('13711','FPS_DefaultRadar_Lens','FPS_Radar','UNDEFINED','a64be577-9f99-403d-bd9b-e4de74d55de6','','',NULL), -('13712','Venture Undersuit Black/Aqua','Armor','Undersuit','1fef4e23-fa91-4db2-ba9e-cb83ef6c9900','','',NULL), -('13713','Screen','SeatDashboard','UNDEFINED','878ae63f-4076-42ab-bab2-861ff7988045','','',NULL), -('13714','BEHR_JavelinBallisticCannon_FiringMechanism_S7','WeaponAttachment','FiringMechanism','34d3a44e-5e02-4b36-b9d2-0d8f6c0d1acc','','',NULL), -('13715','ANVL_Pisces_Thruster_Mav_Joint_Top_C8R','ManneuverThruster','JointThruster','5ad7928f-0e9f-4fa7-b7b1-5a4fd70794e5','','',NULL), -('13716','RSI_Salvation_CargoGrid','CargoGrid','UNDEFINED','2e677d53-4b0d-4cdd-8c28-57b269064c7c','','',NULL), -('13717','RAFT Polar Livery','Paints','UNDEFINED','79fbf83a-af86-4ace-a29d-1eb8cd91b81b','','',NULL), -('13718','Guardian Burnout Livery','Paints','UNDEFINED','d10aeef3-25f2-4242-860f-254f6ae56896','','',NULL), -('13719','Alban Shirt','Char_Clothing_Torso_0','UNDEFINED','8d327a65-fd5c-45b4-a55e-f6cd845ea013','','',NULL), -('13720','Stud','Char_Head_Piercings','UNDEFINED','b63c7cc3-ef25-4ba2-850a-339d183e96c6','','',NULL), -('13721','AEGS_Avenger_PrisonPod','Usable','UNDEFINED','5e918b65-7049-4a11-beaf-d903bd420194','','',NULL), -('13722','Antium Arms Midnight Sun','Armor','Arms','46400a70-d299-4fd9-8d7a-285538740bb4','','',NULL), -('13723','Weapon_Rack_ANVL_Ballista_2_Slots','Usable','UNDEFINED','8be5ded3-4e6b-4635-8c63-43a85088df93','','',NULL), -('13724','Station','SeatAccess','UNDEFINED','d29ab303-76fa-4ffc-b5bf-56f956fe35d6','','',NULL), -('13725','Theaters of War: Hathor Group Hat','Char_Clothing_Hat','UNDEFINED','14c0dbb6-b0a2-4d30-8124-6c66d8ad2774','','',NULL), -('13726','Wanderer Boots Redline','Char_Clothing_Feet','UNDEFINED','e6866305-a37e-4e63-b49f-56a29547e17b','','',NULL), -('13727','Venture Arms Imperial','Armor','Arms','1e5907b2-86f5-44c7-a3ac-0d728351ad4a','','',NULL), -('13728','Blizzard','Cooler','UNDEFINED','2c93a027-3b9a-4c8b-b5b0-b03676b35e2d','','',NULL), -('13729','ESPR_Prowler_Thruster_Retro','ManneuverThruster','UNDEFINED','5b80abbe-8f5e-4a6c-8f26-4b09c3f6d7d7','','',NULL), -('13730','TCS-4 Undersuit Autumn','Armor','Undersuit','5ec336b7-9a12-4ad1-91fd-4302c0b55128','','',NULL), -('13731','StorageCage_Time_ZeroG','Cargo','UNDEFINED','89d532ea-1e8f-479e-b5e6-7a34859cff77','','',NULL), -('13732','ESPR_BallisticCannon_Ventilation_S2','WeaponAttachment','Ventilation','9783dad7-ff59-4a41-8d7f-9ed580b514eb','','',NULL), -('13733','Internal Tank','QuantumFuelTank','QuantumFuel','892fcbee-525f-41df-8227-45ec354aa73e','','',NULL), -('13734','AEGS_Redeemer_SCItem_Support_Seat_Front','Seat','UNDEFINED','bcf434e4-2c6b-425a-8b0c-2725cb4902ab','','',NULL), -('13735','Size 3 Fixed Mount','Turret','GunTurret','306c70c8-b414-4cd1-a0d1-2668fcba78ad','','',NULL), -('13736','AEGS_Reclaimer_Scanning_Console_2','Seat','UNDEFINED','847e2f2a-9971-43cb-82b3-ddbc0526b287','','',NULL), -('13737','CRUS_Star_Runner_Thruster_Mav','ManneuverThruster','UNDEFINED','ca177b0e-fec6-49df-a3e8-24309fd95413','','',NULL), -('13738','AEGS_Door_Decal_Elevator','Decal','DoorPart','7c3aa7d0-524f-49e9-8146-7b320d988594','','',NULL), -('13739','ARMR_AEGS_Reclaimer','Armor','Medium','1578b810-9e39-4e6a-92ca-00d7f16d0afa','','',NULL), -('13740','Door Control','ControlPanel','DoorPart','40c0becf-95eb-4068-89e0-1b22e16da853','','',NULL), -('13741','Seat','SeatAccess','UNDEFINED','c6908874-210d-40be-b29b-62073686b2dc','','',NULL), -('13742','TrueDef-Pro Arms Black/Gold/Silver','Armor','Arms','85dacc31-d58e-4632-bc25-44d4e6ded89d','','',NULL), -('13743','Nox Thli Livery','Paints','UNDEFINED','e15fb93c-caae-4315-9b9b-981219daf856','','',NULL), -('13744','Genmod Seeds','Cargo','Cargo','daf17593-66b4-47c8-9199-91c2c6dbde6b','','',NULL), -('13745','Remote Turret','Turret','MissileTurret','267b331f-b2b6-4e66-b157-ba8649005ef3','','',NULL), -('13746','Custodian \"Midnight\" SMG','Weapon','Medium','00d29b14-baf9-496b-8f46-d9a139446e3d','','',NULL), -('13747','Foundation Pants Khaki','Char_Clothing_Legs','UNDEFINED','4d397ebd-29ac-4c32-84bc-d41ec06404f4','','',NULL), -('13748','SF7E Cannon','Weapon','Gun','96b0e0ca-afb7-4ae2-b5f5-164ebcb29406','','',NULL), -('13749','HLX99 Hyperprocessors','Cargo','Cargo','09a9e4d4-871f-41e1-8898-62e8ddd6e35a','','',NULL), -('13750','RSI Polaris Torpedo Rack','MissileLauncher','MissileRack','4455fed7-094e-4844-a97e-f2f890e2369f','','',NULL), -('13751','Titanium (Ore)','Cargo','Cargo','8340a329-173f-41ef-82d4-46ac9c92b6aa','','',NULL), -('13752','MPUV-1C Standard Flight Blade','FlightController','UNDEFINED','607ee9a7-71d0-4e2c-9efb-6f5fcf6dcb13','','',NULL), -('13753','Nova Pyrotechnica Venom Rocket','Missile','Rocket','d0562627-1838-4fe7-bea7-788d6b8c4055','','',NULL), -('13754','Copper (Ore)','Cargo','Cargo','0ce23783-8cbe-489f-984f-3a67ccbc9b74','','',NULL), -('13755','Zeus Citizens for Prosperity Garnet Livery','Paints','UNDEFINED','ac3cc8f1-c96f-4f1a-aedc-500f97a8c29a','','',NULL), -('13756','box_plastic_4_weapon_opened_015x01x0025_a_klwe_rifle_energy_01','Misc','UNDEFINED','410249e4-2ec2-47a7-8549-8c6645ba2536','','',NULL), -('13757','MedPen (Hemozal)','FPS_Consumable','MedPack','7d50411f-088c-4c99-b85a-a6eaf95504c3','','',NULL), -('13758','Snapback Boots','Char_Clothing_Feet','UNDEFINED','05e227f4-5937-4f1b-a099-fc5aea7c55cc','','',NULL), -('13759','Morozov-SH Core Brushdrift','Armor','Torso','314fbec7-eb9c-4ea3-942c-ffaeac60fbf0','','',NULL), -('13760','Door Control','ControlPanel','DoorPart','6bfbfbe2-881b-4bf0-bf3a-b3b0c9440d47','','',NULL), -('13761','DRAK_Corsair_Thruster_Mav_Bottom','ManneuverThruster','UNDEFINED','4a8b2945-f5bc-4749-9e59-ea93cc6f8a6a','','',NULL), -('13762','m_human_mannequin_rsi_suit_04','ShopDisplay','UNDEFINED','bd986d3c-48fa-4878-b3e2-9046023631e4','','',NULL), -('13763','Pulse \"ArcCorp\" Laser Pistol','Weapon','Small','0fb5aa5a-21e0-44fb-a41b-d01287b41dc5','','',NULL), -('13764','un_box_wrapped_2_a','Misc','UNDEFINED','e8b70eab-18c6-4bb7-93be-4b6e284b9473','','',NULL), -('13765','Vestal Water','Drink','Bottle','3d4210ba-aaa9-4154-b3a9-2b917d832257','','',NULL), -('13766','stand_shop_large_QTDrive','ShopDisplay','UNDEFINED','cb84b666-a372-4557-afdc-ee474489034d','','',NULL), -('13767','Seat','SeatAccess','UNDEFINED','171e8758-c97c-44db-9b66-a9b0d301900f','','',NULL), -('13768','Door Control','Door','UNDEFINED','4c83dbe8-4a89-44c5-8ab5-03ca86fc7331','','',NULL), -('13769','Li-Tok Boots Yellow','Char_Clothing_Feet','UNDEFINED','96599ebc-03e6-4cc0-b28d-cd74eea5f138','','',NULL), -('13770','LH86 \"Pathfinder\" Pistol','Weapon','Small','837d0d8b-9bc4-4abc-8f98-12dcb4d6f91f','','',NULL), -('13771','Railing_Straight_2m_Lowtech_Open','Usable','UNDEFINED','b230305c-d4d5-4809-916c-e187d66c2822','','',NULL), -('13772','Internal Tank','QuantumFuelTank','QuantumFuel','419273c6-0bb6-4645-a31b-77b7801f57c4','','',NULL), -('13773','Access','SeatAccess','UNDEFINED','4f778321-26a7-4c6a-a8d3-a7eab494e479','','',NULL), -('13774','Seat','Usable','UNDEFINED','46b1e387-72cb-376b-7370-3e73db245984','','',NULL), -('13775','Morozov-SH Core Crusader Edition','Armor','Torso','39d1263d-fa05-4260-831e-ae6b5333d0bc','','',NULL), -('13776','Door Control','Door','UNDEFINED','b81cf9d4-230d-4a56-9766-de151df14cca','','',NULL), -('13777','Tacit Suppressor2','WeaponAttachment','Barrel','dffa4527-2748-4f52-a7da-e57aae1c293c','','',NULL), -('13778','TruBarrier Hazard Suit Slate','Char_Clothing_Torso_1','UNDEFINED','718f8ba9-792c-40cd-a905-c689537c5203','','',NULL), -('13779','FBL-8a Legs Righteous','Armor','Legs','aaa16f7f-1a5a-435a-bc10-cfe19774f2c3','','',NULL), -('13780','First Contact Day ’54 Coin','Misc','Utility','ac05017b-7a70-414f-b40c-3c36e1ab45a4','','',NULL), -('13781','DRAK_Cutlass_Blue_Thruster_Maneuver_Bottom','ManneuverThruster','JointThruster','908231c9-ba6c-42a9-bcae-680a3fa08027','','',NULL), -('13782','Door Control','Door','UNDEFINED','b9f167fb-be0c-4840-90b8-2e3767d817e0','','',NULL), -('13783','DRAK_Cutlass_Red_CargoGrid_Right','CargoGrid','UNDEFINED','96b66dfc-7a66-4a65-ae06-48593b9ef454','','',NULL), -('13784','IFR-A77 Turret','TurretBase','MannedTurret','fc45854f-20f6-4da1-8105-dd269856f25e','','',NULL), -('13785','AAT-34 Turret','Turret','MannedTurret','02b31f62-421a-41ca-b756-c3c360ae368b','','',NULL), -('13786','Seat','Usable','UNDEFINED','73907167-44de-4abb-8694-5e257506681e','','',NULL), -('13787','Inquisitor Arms Orange','Armor','Arms','e3260eef-12a3-4214-9299-90e7c3c7bfeb','','',NULL), -('13788','Xa\'Pyen','Cargo','Cargo','5f4d6c95-fdcd-4ee7-adf6-ca799e020486','','',NULL), -('13789','Pyro RYT \"Harvester\" Multi-Tool','Weapon','Gadget','7b8a3cc5-7083-4293-97e7-c1b8a26daba5','','',NULL), -('13790','Airlock','DockingAnimator','UNDEFINED','7fe5ebcd-ba18-4f7d-a862-444f2dbe8262','','',NULL), -('13791','Avalos Scout Goggles','Char_Accessory_Eyes','UNDEFINED','a07f1766-b043-40a7-a6f1-232544bfdfd1','','',NULL), -('13792','CRUS_Starlifter_SCItem_Dashboard_Bomber','SeatDashboard','UNDEFINED','7aca195c-9002-44aa-85ae-d1a2c2358f7e','','',NULL), -('13793','SHIELDS','ShieldController','UNDEFINED','7734e765-3b78-46a7-b303-c9375ce8419d','','',NULL), -('13794','ANVL_Asgard_Thruster_Mav_Joint_Side','ManneuverThruster','FlexThruster','ddfac3b2-39b0-479f-aade-8decc3b7df52','','',NULL), -('13795','stand_shop_medium_b','ShopDisplay','UNDEFINED','d063a0e1-0ce0-4706-8d2b-0702797a65fb','','',NULL), -('13796','Weapon Rack','Usable','UNDEFINED','b09aa266-c5e2-401a-a903-fd2194402b30','','',NULL), -('13797','Inquisitor Legs Tan','Armor','Legs','01dda009-9587-4184-b682-f2a8cc199164','','',NULL), -('13798','RADR_StarMap','Display','UNDEFINED','be4a7d9f-288e-4f74-bc9f-e98fceaddc8c','','',NULL), -('13799','RSI_Aurora_GS_Cargo_Rack_3SCU','AttachedPart','UNDEFINED','9a0029ae-9ec8-45df-8541-496588ce1343','','',NULL), -('13800','Flash','QuantumDrive','UNDEFINED','64fb8d1b-50c0-4919-8048-fa813356bbc5','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('13801','Morningstar Helmet Olive','Armor','Helmet','4e2be512-e054-4453-a878-c139ddf0b8af','','',NULL), -('13802','Quartz \"Clawed Steel\" Energy SMG','Weapon','Medium','5319c0a9-ec91-44e5-9e44-1f1c3a1770b0','','',NULL), -('13803','Flight Blade','FlightController','UNDEFINED','071efc2b-ee65-49a2-aea2-ea9d699c0a6f','','',NULL), -('13804','Corbel Core Mire','Armor','Torso','b14463e1-adf4-4c1b-84c2-360216c97402','','',NULL), -('13805','Door Control','Door','UNDEFINED','d62c36da-96e9-49a2-ba0c-3872dd0a1d8c','','',NULL), -('13806','ASAD_DistortionRepeater_FiringMechanism_S2','WeaponAttachment','FiringMechanism','8e0a1b4f-5bca-4a81-8b2f-c6ae7dd2ef0b','','',NULL), -('13807','Vehicle_Screen_MFD_Holographic_ORIG_M50_R','Display','UNDEFINED','97420c0d-41b3-42a1-83d6-931ed8bb8009','','',NULL), -('13808','Door Control','ControlPanel','DoorPart','fe958a80-6ebd-44e6-80a8-9318e2a66e41','','',NULL), -('13809','vlk_spewgun_ballistic_01_juvi','Weapon','Medium','b063543f-5662-4d6b-ae64-6df4f2ce8a20','','',NULL), -('13810','TOAG_LaserRepeater_FiringMechanism_S3','WeaponAttachment','FiringMechanism','7b603122-7c41-4053-921f-5fbcfb263877','','',NULL), -('13811','Tyger (Project Purple) Shirt','Char_Clothing_Torso_0','UNDEFINED','66cfeb29-c1d6-410f-bbc2-a93e54ebef7a','','',NULL), -('13812','Hellion VII Missile','Missile','Missile','05f82726-6339-46e0-b8d4-c6b81a1db51c','','',NULL), -('13813','Carryable_1H_SQ_Datapad_Fluff_Orb_NineTails_001','Misc','UNDEFINED','407ba527-e8f3-4c38-b69a-d61888df320d','','',NULL), -('13814','StorageCage_Time_DeliveryMission','Cargo','UNDEFINED','414ee5a2-a966-4865-a37e-81463a0e6fd1','','',NULL), -('13815','Riccite (Ore)','Cargo','Cargo','4d561937-b515-4ec6-b2a8-61bcbe778621','','',NULL), -('13816','Colonialism_Outpost_RN_Life_Support','LifeSupportGenerator','UNDEFINED','0cd242b5-d2b4-4ad8-b386-2d13fc6c7669','','',NULL), -('13817','Ares Star Fighter Inferno Ember Livery','Paints','UNDEFINED','3a9ae057-0fb3-46b1-849b-9944a299157d','','',NULL), -('13818','ADP-mk4 Helmet Exec','Armor','Helmet','f7027963-d703-4fa6-8642-6abbba27605f','','',NULL), -('13819','Carryable_1H_CY_bottle_rum_pourable_1_a','Misc','UNDEFINED','2a0b28df-ab8d-40bd-9de6-3a6d68923382','','',NULL), -('13820','CDF F8C Certification Pass (Platinum)','Misc','Personal','713bc5fa-4092-47f6-b07d-88f34c9e57f9','','',NULL), -('13821','Door Control','Door','UNDEFINED','14253218-5929-418f-9130-29b4c76b715f','','',NULL), -('13822','ORIG_85X_Thruster_Retro','ManneuverThruster','FixedThruster','ad7fd4a1-35df-4b86-811f-5fb3c503ab01','','',NULL), -('13823','ASAD_DistortionRepeater_Ventilation_S3','WeaponAttachment','Ventilation','82a84a29-8815-4b4a-b201-02df84b24f8e','','',NULL), -('13824','facial_hair_047','Char_Head_Beard','UNDEFINED','0cbe2034-133e-43df-a057-22782b80f4e0','','',NULL), -('13825','The Hill Horror Reborn Helmet','Armor','Helmet','3c53bb3c-0777-443e-95b1-c5af4750e601','','',NULL), -('13826','Molina Ventilation Filters','Cargo','Cargo','8d297211-f4f8-43ed-a7a1-19c8ee8d1d19','','',NULL), -('13827','GATS_BallisticGatling_Barrel_S2','WeaponAttachment','Barrel','8eb90cbc-056b-47df-8150-3f2fadc06d00','','',NULL), -('13828','MSD-683 Missile Rack','MissileLauncher','MissileRack','f30b001c-5c77-4db4-a707-37df25e63aca','','',NULL), -('13829','Landlite Boots Olive','Char_Clothing_Feet','UNDEFINED','3ca8f756-39ef-40aa-abff-8857be851f86','','',NULL), -('13830','Seat','Usable','UNDEFINED','9bf63f84-1815-4afd-bd1b-5538812486e6','','',NULL), -('13831','Door','Door','UNDEFINED','0ad693c8-8923-4a58-83bc-d8ffe22242c7','','',NULL), -('13832','\'Arrow\' I Missile','Missile','Missile','082c2ffb-1c54-45e5-90bf-f411d9a06425','','',NULL), -('13833','Clean and Clear Work Apron','Char_Clothing_Torso_1','UNDEFINED','d68df611-c3c7-4aea-8e45-96f4f699dc2a','','',NULL), -('13834','Crusader Industries T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','78dd3b58-5a77-46d6-8921-24daff3bb718','','',NULL), -('13835','Cargo_Slot_Boat_1Slot','Usable','UNDEFINED','a5dd9364-6694-4b65-afe8-f087fe0f1575','','',NULL), -('13836','Torite','Cargo','Cargo','5cc9aa55-7c52-49ef-8f13-b58906184b7f','','',NULL), -('13837','ST-205 Missile Rack','MissileLauncher','MissileRack','13c22c4c-d46c-408b-b1af-589a11bd6033','','',NULL), -('13838','Khartu-al Stormbringer Livery','Paints','UNDEFINED','2fe73a45-3893-49ec-8488-9a165f157593','','',NULL), -('13839','Outback Core Sleet','Armor','Torso','46425925-affc-448c-b481-f08c75d5ab9c','','',NULL), -('13840','Golden Medmon','Cargo','Cargo','11e97874-fb5a-4197-afb1-2eafe9673c4d','','',NULL), -('13841','Remote Turret','Turret','GunTurret','cdc71682-8b66-4baa-b6da-b880b33d0f67','','',NULL), -('13842','Stinger Insularis Livery','Paints','UNDEFINED','34ca03ed-aaf7-405d-98b8-6cf03cd9165e','','',NULL), -('13843','bottle_alcohol_01_beer_smoltz_shop_4x4','ShopDisplay','Default','a4f97b3b-2f59-4dbd-a850-de5643ea5832','','',NULL), -('13844','Inquisitor Arms Tan','Armor','Arms','ca7c4320-be86-41e8-9c3c-fa6aec0e5129','','',NULL), -('13845','Tigerstrike T-19P','Weapon','NoseMounted','d018aa87-d395-4935-8660-af9bda648b03','','',NULL), -('13846','Venture Legs Tan','Armor','Legs','db98eb3f-c53d-48e2-a922-6f067e119754','','',NULL), -('13847','Beryl (Raw)','Cargo','Cargo','889b75f2-1fd8-4da0-905a-f7b421b5b601','','',NULL), -('13848','ESPR_LaserCannon_Barrel_S2','WeaponAttachment','Barrel','93b822ea-20a1-43a2-bd81-b09c080a006f','','',NULL), -('13849','Monde Arms HighSec','Armor','Arms','b3dc6024-5a0a-4e4b-9827-4a4ef84acb6c','','',NULL), -('13850','Spar-Tee Shirt','Char_Clothing_Torso_0','UNDEFINED','049ae28e-7548-4627-b3a2-527de5e5e654','','',NULL), -('13851','DockingTube_Fuel_Ports_MISC_Prospector','DockingCollar','UNDEFINED','8639066d-c61c-4445-9348-3fd4cb00950f','','',NULL), -('13852','Parallax Energy Assault Rifle','Weapon','Medium','b144a16c-bba4-427e-9f78-bd379f9509f8','','',NULL), -('13853','Scalpel \"Permafrost\" Sniper Rifle','Weapon','Medium','f7fd2dd3-67a2-4c24-b1e7-8c8a2c634cf3','','',NULL), -('13854','P8-SC \"Warhawk\" SMG','Weapon','Medium','0aedfb61-ae31-4eca-98ea-0fb0216513f0','','',NULL), -('13855','Marhsal Sleeveless Vest Copper','Char_Clothing_Torso_1','UNDEFINED','8e16bb42-430d-4d1c-bdc8-3295ceae8afe','','',NULL), -('13856','AEGS_Door_Screen_Single_02','Decal','DoorPart','d49dcd09-60c5-4e95-869c-9cc4892e9e0a','','',NULL), -('13857','Seat','SeatAccess','UNDEFINED','70826e7f-47ca-4dd1-a39e-00d5d1b121aa','','',NULL), -('13858','Fortune 2955 Auspicious Red Snake Livery','Paints','UNDEFINED','c1824f59-0810-4bc9-96b1-8b05ad5699b0','','',NULL), -('13859','TRGT. STATUS','Seat','UNDEFINED','139cbec1-97c1-48df-976b-7ae57bdb455e','','',NULL), -('13860','Railing_Straight_1m_LowTech_Util_Stairs_01x01_b','Usable','UNDEFINED','c5f232dc-21c1-4fe0-b893-f81f3a05fcc1','','',NULL), -('13861','part_pedestal_01x01x0125_01Port','ShopDisplay','Default','dc4d87ff-ac4b-4161-beed-f03debc897b1','','',NULL), -('13862','ARGO_MOLE_Thruster_Main','MainThruster','FixedThruster','4be1a511-cfa8-4deb-b802-84ee3a08460c','','',NULL), -('13863','Landlite Boots Yellow','Char_Clothing_Feet','UNDEFINED','f5aa7301-99a2-4f3a-b9e5-0920a741737a','','',NULL), -('13864','AAT-34 Turret','Turret','MannedTurret','39127a6d-7050-4664-99c7-9f47a2ea6982','','',NULL), -('13865','CNOU_Mustang_Thruster_Main','MainThruster','FixedThruster','2fa95b33-a972-45b3-b567-4f567b3cde66','','',NULL), -('13866','Controller_Salvage','SalvageController','UNDEFINED','b7cc5644-338f-4373-b6cb-320395344629','','',NULL), -('13867','Internal Tank','FuelTank','Fuel','9117e492-0fd5-490c-b07b-090a77de0565','','',NULL), -('13868','Terrapin Deck the Hull Livery','Paints','UNDEFINED','57579003-0269-4112-9a96-0b37a2514066','','',NULL), -('13869','RSI_Constellation_Taurus_Thruster_Turbine_Front','ManneuverThruster','JointThruster','be8e4983-0345-4f3c-9ec9-15fd9b86d8c0','','',NULL), -('13870','Morningstar Helmet Green','Armor','Helmet','06c21092-cc23-4e05-9193-a058908e2e3d','','',NULL), -('13871','Controller_Salvage_MISC_Fortune','SalvageController','UNDEFINED','eb314b77-43f2-4075-8947-a444be046726','','',NULL), -('13872','Oracle Helmet Draas','Armor','Helmet','ece98a67-cc49-4a28-882c-24959e1ffd50','','',NULL), -('13873','Tuvois Jacket Imperial','Char_Clothing_Torso_1','UNDEFINED','158b8ac2-551a-4dae-b13a-e5107c8c5425','','',NULL), -('13874','RSI_Zeus_Wing_Top_Right','AttachedPart','UNDEFINED','9a4360ad-2442-44ac-8ac5-18e458a4eda3','','',NULL), -('13875','Sootho Gloves Silvertusk','Char_Clothing_Hands','UNDEFINED','27b1ba89-4098-443e-b96b-4fa435489bfc','','',NULL), -('13876','Nivala Shoes Arctic','Char_Clothing_Feet','UNDEFINED','722e7191-5e99-4499-bae5-2ab817c8de17','','',NULL), -('13877','Chada Collar and Panniers Sandalwood','Char_Clothing_Torso_1','UNDEFINED','55865d5b-53cc-4335-9b49-aaac69519a28','','',NULL), -('13878','Quantainium','Cargo','Cargo','d20d7c4d-1156-4d75-8b06-7e49ec341400','','',NULL), -('13879','Uncut SLAM','Cargo','Cargo','fdbef4a2-40eb-412f-bc7c-ebb4ade7f6ad','','',NULL), -('13880','Allpa Pants Olive','Char_Clothing_Legs','UNDEFINED','3093b322-1de0-4125-ade3-71cb55c5b9ca','','',NULL), -('13881','Carryable_2H_SQ__tablet_8x11','Misc','Gadget','765422bb-cbd8-4e45-8b10-342715e8ded8','','',NULL), -('13882','display_components_s2_modular_cooler','ShopDisplay','UNDEFINED','e8d4f3d7-be96-46d2-bb77-c31d3d1b148b','','',NULL), -('13883','stand_shop_small_c_Cooler','ShopDisplay','UNDEFINED','ec75fe5a-5f21-4362-b131-b07f892976cf','','',NULL), -('13884','Horizon Helmet Yellow','Armor','Helmet','fa13c56c-3664-46e8-8ed9-af6e4bac3b67','','',NULL), -('13885','ESPR_LaserCannon_FiringMechanism_S5','WeaponAttachment','FiringMechanism','92343f59-c339-4ec1-adec-bbb0e8ec8fbc','','',NULL), -('13886','Hello Sunshine Luminalia Planter','Misc','Flair_Wall_Picture','22aa0825-a7ae-4b13-ae4a-12ad22d481da','','',NULL), -('13887','MISC_Razor_Dashboard_Pilot','SeatDashboard','UNDEFINED','bfda00bd-976c-48da-8b25-475dc54f0ef7','','',NULL), -('13888','Flight Blade','FlightController','UNDEFINED','c7de22ec-eeea-4d67-8732-8b852c252a19','','',NULL), -('13889','Bucket_Ice_1_rsi_b','Misc','UNDEFINED','26a5d900-1d91-4435-b9fb-4629fedc4316','','',NULL), -('13890','DockingTube_Fuel_Ports_MISC_Hull_A','DockingCollar','UNDEFINED','637c0b48-eadc-4cf4-a9d4-39410a5d0826','','',NULL), -('13891','Aril Helmet Black Cherry','Armor','Helmet','7799b79b-2753-4b6a-9965-c99cedff4924','','',NULL), -('13892','Overlord Helmet Tempered','Armor','Helmet','efc66ea6-787e-4f65-a496-8ad8c1f594b7','','',NULL), -('13893','Morozov-SH Arms Spite','Armor','Arms','cd5150eb-beff-45ec-a608-a4c881e37d93','','',NULL), -('13894','Manned Turret','TurretBase','MannedTurret','caf52861-3d27-4778-97d2-c5e5bf16b935','','',NULL), -('13895','MISC_Freelancer_Base_SCItem_Dashboard_Esc_Pod_Upper_Left','SeatDashboard','UNDEFINED','ff72aa00-5655-4238-9e0f-28d8a6b3a689','','',NULL), -('13896','ADP-mk4 Core Righteous','Armor','Torso','21c17eec-d684-4dbd-a6d5-694a136ff1f3','','',NULL), -('13897','AIModule_Unmanned_PU_HOS','AIModule','UNDEFINED','389b4e91-4d8d-4648-af77-9511a0061307','','',NULL), -('13898','Citadel-SE Arms Dark Green','Armor','Arms','8db3dd5f-0e44-41b7-b438-fd1268290699','','',NULL), -('13899','Seat','Usable','UNDEFINED','20725791-0f70-46a1-b506-260d2cf660d8','','',NULL), -('13900','Stor*All Big Box Model H2','Module','UNDEFINED','d2f911b6-d68c-439e-b862-3ccd736366ab','','',NULL), -('13901','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','fe84909b-c3e4-43b2-b526-6c7d702127c6','','',NULL), -('13902','RSI Noise Launcher','WeaponDefensive','CountermeasureLauncher','c77cbf67-ddc6-4818-a977-5d7609037db8','','',NULL), -('13903','Citadel Core Base','Armor','Torso','f37b03a9-c689-47a6-bc25-49358e0043d8','','',NULL), -('13904','TRGT. STATUS','Seat','UNDEFINED','2f41d0be-8a41-417d-b214-9d8d62c7773e','','',NULL), -('13905','FLTR Module','MiningModifier','Gun','fb3be543-707b-4582-a25b-c118325fc024','','',NULL), -('13906','Geoffrey Jacket ','Char_Clothing_Torso_1','UNDEFINED','da7b43f4-12b2-4bcb-b734-b85dd8cebcf1','','',NULL), -('13907','Mole Keystone Livery','Paints','UNDEFINED','8fe49ebc-317f-4f69-9437-6c6dcbfb0739','','',NULL), -('13908','m_human_mannequin_odyssey_suit_07','ShopDisplay','UNDEFINED','c0ff38f0-7bc8-40a7-b9cd-704726c2dd92','','',NULL), -('13909','Access','SeatAccess','UNDEFINED','1c9e0e39-459c-449c-92b5-55cafd5239b4','','',NULL), -('13910','Carryable_1H_CY_drug_painkillers_2_a','Misc','UNDEFINED','f8ab1923-2855-492a-985b-d9952ff4adb3','','',NULL), -('13911','Radar_Display_Pulse','Display','UNDEFINED','de3b40eb-1a17-4b0a-bf9b-858f3c505d73','','',NULL), -('13912','TRGT. STATUS','Seat','UNDEFINED','b332509e-cd55-4c83-a9b5-37885274c84c','','',NULL), -('13913','ESPR_Prowler_Thruster_Main','MainThruster','UNDEFINED','63930ad7-8f67-415c-914f-33879d62ba13','','',NULL), -('13914','f_human_mannequin_ship_jacker','ShopDisplay','UNDEFINED','bb0920e7-5b13-458b-a668-098fcd8e3d2d','','',NULL), -('13915','Varhey Boots Bayoux','Char_Clothing_Feet','UNDEFINED','437181f9-5838-4d9a-a27d-4d8cf9b6dbdb','','',NULL), -('13916','Morozov-SH Core Vesper','Armor','Torso','cf262564-a803-47bd-9114-939ddb9b77ce','','',NULL), -('13917','HMF-T12 \"Hammerfall\" Torpedo Launcher','MissileLauncher','MissileRack','bfba7023-a477-45e1-9595-60fbc6c17e83','','',NULL), -('13918','WEAPONS','WeaponController','UNDEFINED','445a0c90-8ecc-34a8-d51c-a7ca851ea4a1','','',NULL), -('13919','Kutty Jacket','Char_Clothing_Torso_1','UNDEFINED','b82224be-fb8c-40f2-afd4-02ddda33f1ee','','',NULL), -('13920','ORIG_125a_Thruster_Mav_Left','ManneuverThruster','FixedThruster','a7e7357c-826a-4641-94b1-d0ea8c2edd9d','','',NULL), -('13921','ORC-mkX Core Woodland','Armor','Torso','8b93bc9b-8881-410c-9ac2-9df2ee7aebb3','','',NULL), -('13922','AEGS_Vanguard_Hoplite_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','cf2dda71-2e14-439d-86b8-8eac8030a1f3','','',NULL), -('13923','DRAK_Caterpillar_SCItem_Seat_SupportRight','Seat','UNDEFINED','8d0f7703-20c5-4a34-84fa-fdda030e0514','','',NULL), -('13924','Medical Bed','Usable','UNDEFINED','878d2f1e-e094-4094-9eb4-51496566affa','','',NULL), -('13925','UMNT_ANVL_S5_Rotodome_Mk2','Module','UNDEFINED','afe85dfc-155c-40f0-87f5-8c26cc41fc37','','',NULL), -('13926','SHIELDS','ShieldController','UNDEFINED','20f3fed1-76fe-483a-a96b-44fa709836f6','','',NULL), -('13927','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','3e27d74f-c222-48e1-9109-625f45b86871','','',NULL), -('13928','300 Series Sterling Paint','Paints','UNDEFINED','65232a80-f570-4587-92dc-edd2e13b9794','','',NULL), -('13929','Door Control','Door','UNDEFINED','2bca7daa-5f45-4e60-b242-ab533cedbdd5','','',NULL), -('13930','Scrap Cable Bundle','Misc','Junk','22c9cf09-c8f7-498f-951f-531f3e8a5954','','',NULL), -('13931','Silco Shirt Vineland','Char_Clothing_Torso_0','UNDEFINED','b078541c-9f44-4b41-aa6a-488095df22f3','','',NULL), -('13932','REP-VS EMP Generator','EMP','UNDEFINED','19210f79-9618-42e0-9b88-6f59cad9fe2c','','',NULL), -('13933','AEGS_Redeemer_Storage_Decal_02','Decal','DoorPart','235615dc-d3b2-42f8-b0fa-6d22501011a2','','',NULL), -('13934','INTK_AEGS_Vanguard_Hoplite','FuelIntake','Fuel','b8f2ae5d-f538-43f5-931a-e49e5b843c34','','',NULL), -('13935','Door_Simple_Col_002','Door','UNDEFINED','5ba5c62e-181a-40bb-a1dd-8e482a68351b','','',NULL), -('13936','Boumbo Stew Omni Pack','Food','Tin','be311419-6274-480a-8f65-c608ff39a3f1','','',NULL), -('13937','ORIG_m50_Dashboard_Pilot','SeatDashboard','UNDEFINED','db4c8fd6-dec3-41db-9879-9307d7906710','','',NULL), -('13938','un_bowl_emptyl_1_a_Triggerfish','Food','Consumable','93272b4b-b71f-4f7e-96d2-2601044a3470','','',NULL), -('13939','ORIG_85X_Thruster_Mav_Fixed_02','ManneuverThruster','FixedThruster','c2d6daa0-7a41-460a-8a6f-127f3e09615d','','',NULL), -('13940','Navoi Boots and Pants Dust Storm','Char_Clothing_Legs','UNDEFINED','2da3cdae-eae8-4aa4-b378-440b745ca1e3','','',NULL), -('13941','KRON_LaserCannon_PowerArray_S3','WeaponAttachment','PowerArray','5a6a892f-14c8-4359-88a0-55d1070595f3','','',NULL), -('13942','Greenwater Shirt Iron','Char_Clothing_Torso_0','UNDEFINED','4b81eda7-ceba-45a5-ae78-361bddf2e05e','','',NULL), -('13943','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','11f59e7f-8b9f-4923-a600-1962c35e32b0','','',NULL), -('13944','Internal Tank','QuantumFuelTank','QuantumFuel','51ea4f6c-a3b2-4038-8938-0f1f1fe4e6e0','','',NULL), -('13945','Lt_A_AIrlock_Door_Double_3m_Ext','Door','AirlockPart','8941e3cc-44d8-4d37-93f7-b1638c6189d4','','',NULL), -('13946','Door Control','Door','UNDEFINED','35f830d1-eee0-41f4-a201-a63e5b43a8f9','','',NULL), -('13947','INTK_ANVL_Hornet_F7CS','FuelIntake','Fuel','d41ad984-11cd-4a93-aaa6-f0f7e896f3fa','','',NULL), -('13948','Carrion Legs Maniac','Armor','Legs','37a40d16-814f-4c49-8f7a-6389155e7d61','','',NULL), -('13949','RSI_Zeus_Wing_Left_Cargo','AttachedPart','UNDEFINED','38140c4a-ccf8-47d0-9368-e132c69a4443','','',NULL), -('13950','Bed','Seat','UNDEFINED','632155a9-90fc-41ca-ad1c-ae2f62004c70','','',NULL), -('13951','Taftan Boots Mahogany','Char_Clothing_Feet','UNDEFINED','539ec189-4a78-461a-a7c5-f947164c79e3','','',NULL), -('13952','Hermes Disco Livery','Paints','UNDEFINED','2d1a623d-4655-4695-9974-5e62b8d5a783','','',NULL), -('13953','INTK_DRAK_Vulture','FuelIntake','Fuel','eaa3e1f9-8c9d-40d9-9da0-3bac9b9dcbd9','','',NULL), -('13954','SHIELDS','ShieldController','UNDEFINED','b8b5bf4a-a281-416c-b3f2-5fb615452d6e','','',NULL), -('13955','Kino Shoes Violet','Char_Clothing_Feet','UNDEFINED','5a402f2d-aedf-4708-b927-f8841a85167e','','',NULL), -('13956','Hydrogen Fuel Tank','FuelTank','Fuel','be927651-d261-45b3-a5c1-3095209d837c','','',NULL), -('13957','Carryable_1H_CY_glass_tumbler_rum_1_a','Misc','UNDEFINED','92953753-ec1a-4edc-9939-83334729f288','','',NULL), -('13958','stand_shop_medium_b_Shield','ShopDisplay','UNDEFINED','ef12fb1a-f5af-4061-9b7b-ddbfead25376','','',NULL), -('13959','Invictus Patch Collection','Misc','Flair_Wall_Picture','b84ce874-f4e9-4921-9c75-2e4a5855b186','','',NULL), -('13960','Door Control','ControlPanel','DoorPart','7bb27446-399d-422f-bc21-584b15715095','','',NULL), -('13961','MISC_Hull_A_CargoGrid','CargoGrid','UNDEFINED','14978620-d1df-4aa4-92c6-9110a06a4823','','',NULL), -('13962','ADP Legs White','Armor','Legs','38354858-f9cb-45ed-8d60-fc930ef43060','','',NULL), -('13963','MOLE Talus Livery','Paints','UNDEFINED','a3400118-ee24-4761-b552-140816b969e2','','',NULL), -('13964','Morozov-SH Legs (Modified)','Armor','Legs','9963a40c-cc78-4121-b0f5-d7fd204be497','','',NULL), -('13965','DRAK_Caterpillar_Thruster_Main','MainThruster','FixedThruster','33c2c4b0-9859-4fca-8f9c-aeef8c356f05','','',NULL), -('13966','table_hat_display_3Ports','ShopDisplay','Default','c28111c4-4f8c-409d-9d87-48f20b37f718','','',NULL), -('13967','ForceFlex Undersuit Greys','Armor','Undersuit','06dea1be-0ae4-4133-8183-55f716b60dd7','','',NULL), -('13968','ANVL_Door_Decal_Carrack_Toilet','Decal','DoorPart','721d59ec-9d18-4312-9d36-87611ab58938','','',NULL), -('13969','DockingTube_Fuel_Ports_AEGS_Idris','DockingCollar','UNDEFINED','56583713-c7b6-4682-8918-c9c304c8e725','','',NULL), -('13970','Seat','SeatAccess','UNDEFINED','8999885d-881e-4465-ac2f-2f958ae9a24b','','',NULL), -('13971','Weapon Rack','Door','UNDEFINED','0fa32f29-e03c-478f-a1d1-ed64a601fabf','','',NULL), -('13972','Corsti Boots CFP','Char_Clothing_Feet','UNDEFINED','a9f31f63-c5d2-422e-b8d6-cc4ad5dec708','','',NULL), -('13973','Levin Undersuit Ochre (Refurbished)','Armor','Undersuit','85339dd1-0333-4d28-b7c5-0864995c26a8','','',NULL), -('13974','TRGT. STATUS','Seat','UNDEFINED','8a5b2b59-f34a-4f39-9acf-85b70fd1b85a','','',NULL), -('13975','Omarof (16x Telescopic)','WeaponAttachment','IronSight','aa2f5010-7252-47d8-84aa-b3be259149fa','','',NULL), -('13976','Pite','Char_Head_Piercings','UNDEFINED','11a4ad30-38eb-4cfe-966d-df2862d7e20a','','',NULL), -('13977','Radar_Display_STV','Display','UNDEFINED','5ed4b160-4965-4f55-b483-75842da83a53','','',NULL), -('13978','DRAK_Golem_Thruster_Front_VTOL','ManneuverThruster','Retro','b8b45be7-6329-4b56-93fd-6c5171d908e3','','',NULL), -('13979','Horizon Helmet Purple','Armor','Helmet','dc9bb6e8-ab89-4478-b67e-8ff7a4c0214c','','',NULL), -('13980','Attrition-3 Repeater','Weapon','Gun','c526f686-a3da-48fa-b9c3-d58fb8e31dc5','','',NULL), -('13981','TRGT. STATUS','Seat','UNDEFINED','d64bd8cf-ff0f-4af8-b40c-2efb347772df','','',NULL), -('13982','Kamar Jacket White and Turquoise','Char_Clothing_Torso_1','UNDEFINED','da7ee8bc-5cd0-4701-b628-ae4feb79af6c','','',NULL), -('13983','Door','Door','UNDEFINED','53cf62ad-f096-4bd1-8dc8-7314cc975c8c','','',NULL), -('13984','ColdSurge','Cooler','UNDEFINED','771caf70-effc-49c2-aaf4-c240065db14d','','',NULL), -('13985','Cargo_Comm_125x3_Waste_a','Cargo','Cargo','b7bfea5c-e56b-4c2c-9281-95df3f737bcb','','',NULL), -('13986','VNCL_Stinger_Thruster_Retro_Fixed_Right','ManneuverThruster','FixedThruster','ea7e2224-1a42-4c8e-9117-ed8c9d439c89','','',NULL), -('13987','Edgewear Pants Seagreen','Char_Clothing_Legs','UNDEFINED','9307703b-1b9d-4f4e-a830-9d02cab47019','','',NULL), -('13988','Stor*All 2 SCU Self-Storage Container','InventoryContainer','Cargo','d6f1b600-353d-42d7-a592-450172889f00','','',NULL), -('13989','Util_ASD_DoorPanelScreen_A','Misc','UNDEFINED','16331b48-e872-486a-b622-474b78744de1','','',NULL), -('13990','MSD-414 Missile Rack','MissileLauncher','MissileRack','e4bb4aae-8d61-451a-8407-ff48cf8593aa','','',NULL), -('13991','MRAI_Pulse_Thruster_Retro','ManneuverThruster','FixedThruster','62cb8262-005f-4a50-8391-af73726a023d','','',NULL), -('13992','ADP Core Grey','Armor','Torso','01785efd-b9d8-49fb-a634-3aab7b7cb115','','',NULL), -('13993','ARGO_RAFT_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','b51c9f4d-c619-45e9-acc2-b0ba7257ffe1','','',NULL), -('13994','Fortune Iceberg Livery','Paints','UNDEFINED','9f2ed793-1795-4a85-aa3d-a0c359b80aae','','',NULL), -('13995','Sakura Fun Green ORC-mkX Armor Bobblehead','Flair_Cockpit','Flair_Static','ee4b7f25-9353-4c5f-9df2-36a109ca9e92','','',NULL), -('13996','Hydrogen','Cargo','Small','4c9ab95b-cb2a-4145-aa22-12da28605aaf','','',NULL), -('13997','AEGS_Retaliator_Thruster_Retro_Right','ManneuverThruster','FixedThruster','e370cb8c-7afb-4f4f-acf6-33984fea61fc','','',NULL), -('13998','Argo Ore Pod','Container','Cargo','f4aebc6d-ab66-4b7a-93ce-69bdd928ca99','','',NULL), -('13999','Carryable_1H_SQ_maintenance_bolts_1_a','Misc','UNDEFINED','e42da50d-f0d8-4672-b366-c62ea1342308','','',NULL), -('14000','Col Head Cover Red','Char_Clothing_Hat','UNDEFINED','8a03b67e-99c7-46a9-9ccc-f4082c1c2cbb','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('14001','Door Control','ControlPanel','DoorPart','711be264-f51d-4075-85ac-94cdb40d2a10','','',NULL), -('14002','SHIELDS','ShieldController','UNDEFINED','33b61593-b4d7-4c13-ac74-474afcfdc7c1','','',NULL), -('14003','Carryable_1H_CY_garnish_citrus_wedge_1_a','Misc','UNDEFINED','5f0ea555-f981-444a-9df6-02c26421775a','','',NULL), -('14004','Ranta Dung','Cargo','Cargo','f3cae54c-f4ea-404a-93bc-03f56f9a494c','','',NULL), -('14005','Second Tevarin War White Dress Trousers','Char_Clothing_Legs','UNDEFINED','d7f7abba-918a-40a5-a308-2f49613ea071','','',NULL), -('14006','PAB-1 Legs White','Armor','Legs','3c33ac15-c543-4462-86ce-75a2e965bfd0','','',NULL), -('14007','ControlPanel_LightSwitch_DRAK_Golem','ControlPanel','DoorPart','5a584c01-6cba-4d6c-b96f-4eea4b87cd94','','',NULL), -('14008','Vehicle_Screen_Physical_L22','Display','UNDEFINED','cde1a1b4-a7f0-40ff-9358-2d2578e516a3','','',NULL), -('14009','Prowler Luminary Livery','Paints','UNDEFINED','e5215a48-7a6d-4dd2-9f38-38b20708ba40','','',NULL), -('14010','TRGT. STATUS','Seat','UNDEFINED','a1265322-5f27-42a3-b01a-d7be3bfd03d2','','',NULL), -('14011','CRUS_Starlifter_CargoGrid_Large','CargoGrid','UNDEFINED','8768879f-d52a-442e-9c2a-36cf1fc90ee2','','',NULL), -('14012','Carryable_1H_CY_drug_stomachmedicine_1_c','Misc','UNDEFINED','5393fc38-d05b-41e8-ad16-5f7a0987338d','','',NULL), -('14013','DRAK_Cutlass_Seat_CoPilot','Seat','UNDEFINED','7d9b1780-6a74-44c9-b14e-781b9a6b98a3','','',NULL), -('14014','Cal-O-Meal \"Lunes\" Protein Bar','Food','Bar','9c1053d6-08f0-4fc5-aa2e-115f03885188','','',NULL), -('14015','Railing_Straight_2m_Lowtech_Catwalk_A','Usable','UNDEFINED','76a582fd-71e3-4813-accf-7e700b0a2495','','',NULL), -('14016','JOKR_DistortionCannon_Ventilation_S3','WeaponAttachment','Ventilation','b04f098f-4c92-48f8-8091-c2ebec18ecc3','','',NULL), -('14017','Seat','Usable','UNDEFINED','953e633e-25bc-4e2a-a468-f35640ff707f','','',NULL), -('14018','ANVL_Carrack_Cart_Hologlobe_RADR_Display','Display','UNDEFINED','d351d1b2-952c-4be4-bd51-b5cf2622f45d','','',NULL), -('14019','S71 \"Bullseye\" Rifle','Weapon','Medium','113bff56-11fa-4951-8b32-8a5590f3c830','','',NULL), -('14020','Quartz (Raw)','Cargo','Cargo','ca89daa9-c5e5-453a-a6cd-17136105d8f7','','',NULL), -('14021','Weapon Rack','Door','UNDEFINED','f19367d6-fcf5-4f0d-8c3c-864ca436548f','','',NULL), -('14022','hanger_clamp_torso0_01Port','ShopDisplay','Default','b3965e0c-75db-4eda-b17e-2e9fa27dea78','','',NULL), -('14023','MISC_Freelancer_Base_SCItem_Seat_Esc_Pod_Upper_Right','Seat','UNDEFINED','771a6c7a-fc5e-4e05-b61b-9b1c536e2544','','',NULL), -('14024','Overlord Core Tempered','Armor','Torso','6ce89d22-3c83-49b6-b822-f5a4f24883b7','','',NULL), -('14025','Gilick Boots','Char_Clothing_Feet','UNDEFINED','83d81a3f-f19e-4e8c-b6ff-a823e6d60074','','',NULL), -('14026','Aloprat Skewer','Food','Consumable','94c2ca2d-8725-4261-bf45-2e700ce98074','','',NULL), -('14027','Door','Door','UNDEFINED','52f5b66c-86aa-4b27-914d-3168867331d8','','',NULL), -('14028','hydroponic_machine_1_incubator_rotary_025x01x0225_a','Misc','UNDEFINED','ab13b576-75e0-4669-996f-5727a1a45922','','',NULL), -('14029','Internal Tank','QuantumFuelTank','QuantumFuel','dee7a236-c770-4f35-a717-e2c285f9f4e8','','',NULL), -('14030','Mercury','Cargo','Cargo','ac846075-ea22-4d3b-800f-94b888ef0048','','',NULL), -('14031','Gold','Cargo','Cargo','d596a611-aaac-4338-a1c2-8717f27ac412','','',NULL), -('14032','Amioshi Plague','Misc','Harvestable','96e0eec0-d989-4093-9405-2a1577d689b4','','',NULL), -('14033','Door Control','Door','UNDEFINED','01defb5c-7a79-4ec2-98c4-f05eed7ca04a','','',NULL), -('14034','Face Melter T-Shirt','Char_Clothing_Torso_0','UNDEFINED','5621e3f1-e55f-48f6-bc5f-2641a4e88b24','','',NULL), -('14035','BEHR_LaserCannon_FiringMechanism_S4','WeaponAttachment','FiringMechanism','588c7aa5-068d-4205-8007-b183cf78da62','','',NULL), -('14036','Bed_DRAK_Cutlass_Black_Upper','Usable','UNDEFINED','6c437596-f2a6-4e34-8fa6-eacda5b9bedb','','',NULL), -('14037','box_plastic_4_weapon_opened_015x01x0025_a_behr_rifle_ballistic_01','Misc','UNDEFINED','5d008ef5-4e02-404c-b9ff-84c17221ccf9','','',NULL), -('14038','Seat','SeatAccess','UNDEFINED','9003cc75-e8a8-454b-a5ca-93e38fd1c01f','','',NULL), -('14039','Door Control','ControlPanel','DoorPart','e87cde1b-a0c5-4330-b770-79f5cec63a0c','','',NULL), -('14040','Seat_Jump_Vanguard_Hoplite','Usable','UNDEFINED','f307b09c-4680-4029-84a4-302afd74874a','','',NULL), -('14041','SNSR5','Radar','MidRangeRadar','7a1e134a-6322-4035-ae65-10af4b0bb545','','',NULL), -('14042','10-Series Greatsword Cannon','Weapon','Gun','02a7f68a-5bdd-4887-a256-20c985a65bda','','',NULL), -('14043','Alban Shirt Greenwood','Char_Clothing_Torso_0','UNDEFINED','3b1e0c85-d343-4d5e-ae5d-b0e18d77b353','','',NULL), -('14044','Retaliator Cargo Rear Module','Module','UNDEFINED','429ea43c-5157-4617-bc13-23ca093cc678','','',NULL), -('14045','TRGT. STATUS','Seat','UNDEFINED','ae932717-da73-49b9-91d3-7714247f4acd','','',NULL), -('14046','Faction Jacket Green','Char_Clothing_Torso_1','UNDEFINED','aa3b2e59-f126-4ffe-a6a2-c08ed10eb8fa','','',NULL), -('14047','un_jar_glass_1_berries_c','Misc','UNDEFINED','4cf94c8a-0359-4729-900c-28782f1b7081','','',NULL), -('14048','ROC Hazard Livery','Paints','UNDEFINED','e81508c5-6c3e-4914-9192-7835c3025a7e','','',NULL), -('14049','Door','Door','UNDEFINED','2af039dc-e8fc-4fa0-b1d2-398d99724414','','',NULL), -('14050','ANVL_Terrapin_Thruster_Mav_Fixed_Medic','ManneuverThruster','JointThruster','309ef880-a084-45ef-9676-ca67d771ab50','','',NULL), -('14051','facial_hair_048','Char_Head_Beard','UNDEFINED','725c1799-99fd-4560-b60e-747d058bf6f6','','',NULL), -('14052','Starfarer Gemini Ship Armor','Armor','Medium','1eacb2c9-30fb-410d-b9d3-9e9d42221c0f','','',NULL), -('14053','Combat Supplies','Cargo','Cargo','43f61a7c-0b9a-4c9e-89be-dfc55e5e1c57','','',NULL), -('14054','Internal Tank','QuantumFuelTank','QuantumFuel','fda8d88d-5738-479b-b427-f709d8782c60','','',NULL), -('14055','Door Control','ControlPanel','DoorPart','612510b8-ad0e-4264-9115-7829b91cf947','','',NULL), -('14056','AEGS_Javelin_CargoGrid','CargoGrid','UNDEFINED','faf3e5e4-d6f0-4684-86bf-b3da149ee571','','',NULL), -('14057','One Light Cap Teal','Char_Clothing_Hat','UNDEFINED','f009df9e-97c8-45cc-b0af-76ea257698f3','','',NULL), -('14058','Seat','Usable','UNDEFINED','154e7e97-c3ad-4489-9e7e-21b252b30137','','',NULL), -('14059','un_glass_tall_1_a','Misc','UNDEFINED','d4863eba-2f8e-4096-9782-c8698262e101','','',NULL), -('14060','AEGS_Reclaimer_Drone_Left_Dashboard','SeatDashboard','UNDEFINED','aba6bf0d-d60b-4b41-9b2c-7a4d1ecc299b','','',NULL), -('14061','Seat','SeatAccess','UNDEFINED','1a0988fc-6c33-4e95-b6e3-735111ed98ac','','',NULL), -('14062','ESPR_BallisticCannon_Barrel_S1','WeaponAttachment','Barrel','a7530548-4408-4a82-8a72-2ea85ffabf30','','',NULL), -('14063','Vanguard Fortuna Livery','Paints','UNDEFINED','f8b6355d-cae4-4b8c-bfdb-1176cbcde43c','','',NULL), -('14064','ESPR_LaserCannon_FiringMechanism_S3','WeaponAttachment','FiringMechanism','c02dc0cb-4952-412e-b478-b569bdc6f9fd','','',NULL), -('14065','vlk_spewgun_ballistic_irradiated_Juvi','Weapon','Medium','465acd8d-ed11-49dc-8b3f-6723ff1c312f','','',NULL), -('14066','Redeemer Nightbreak Livery','Paints','UNDEFINED','8e7968ec-5da5-4282-86cd-e16c8f26a73f','','',NULL), -('14067','P6-LR \"Blacklist\" Sniper Rifle','Weapon','Medium','0c53417e-eb43-40da-b6c2-edc045bd2e23','','',NULL), -('14068','Spirit Hazard Livery','Paints','UNDEFINED','37da7a2c-f663-4842-992b-c6c6fe9f5cd6','','',NULL), -('14069','RSI_Constellation_SCItem_Seat_CoPilot_Left','Seat','UNDEFINED','52d3e4e9-e970-4a21-b214-510e6b5b43ba','','',NULL), -('14070','Seat','SeatAccess','UNDEFINED','224e1d22-9dbf-4cbd-abb0-fa6633dbe87d','','',NULL), -('14071','Argus Helmet White/Silver/Grey','Armor','Helmet','1e05b29f-f430-4417-80c5-e053b595867a','','',NULL), -('14072','Col_AirlockDoorPanelScreen','Misc','UNDEFINED','775908ff-b4cf-4aa5-8fe3-09abbc3ddda6','','',NULL), -('14073','Vanguard Frostbite Camo Livery','Paints','UNDEFINED','422759f7-0db9-41bf-83ae-eb818565e26a','','',NULL), -('14074','CRUS_Spirit_Thruster_Mav','ManneuverThruster','UNDEFINED','567ee16c-c332-44c8-a804-8b36e5c2b61f','','',NULL), -('14075','Castra','Shield','UNDEFINED','e11f94ed-6a41-4960-b895-4a604ec98e97','','',NULL), -('14076','Dak Galbi Chicken Burrito','Food','Junk','b9867b9a-ad7c-4d02-b74c-88b9f0431d8b','','',NULL), -('14077','BEHR_LaserCannon_Ventilation_S9','WeaponAttachment','Ventilation','72369bb8-6400-4b59-ac54-bb01b96d69c7','','',NULL), -('14078','Zenith \"Darkwave\" Laser Sniper Rifle','Weapon','Medium','7e37741d-8090-48b3-ab84-b60fd138761d','','',NULL), -('14079','Cardona Jacket Carmine','Char_Clothing_Torso_1','UNDEFINED','5a8a85c8-aa4f-423d-bb89-4348ecfcf736','','',NULL), -('14080','Cutlass 2950 Best In Show Livery','Paints','UNDEFINED','9d513c06-4201-4d05-b2c0-d0bf1fa42bb5','','',NULL), -('14081','Door_ChipReader_CZ','Door','UNDEFINED','87751dcd-6e67-4a96-ab0e-1376ec3b0572','','',NULL), -('14082','ht_bench_table_microtech_1_single_a','Usable','UNDEFINED','5a6e803e-0b29-4cde-930c-7c682744f695','','',NULL), -('14083','un_box_plastic_5_berries_a','Misc','UNDEFINED','868d5315-9f72-4340-9cb5-517f7db42f3e','','',NULL), -('14084','SHIELDS','ShieldController','UNDEFINED','bb90a1c0-aacf-4faf-863d-bc9170a1c42b','','',NULL), -('14085','Door_NoRoomConnector_IP','Door','UNDEFINED','4a71b89d-4c5c-44d4-8372-0b66835abe82','','',NULL), -('14086','AEGS_Gladius_Thruster_Mav_Joint_02','ManneuverThruster','JointThruster','ae7c31e7-756d-4884-99b3-edd23e925c46','','',NULL), -('14087','VariPuck S1 Gimbal Mount','Turret','GunTurret','80ae6d83-7d8a-4357-b109-a0154418bae5','','',NULL), -('14088','Cadmium Allinide','Cargo','Cargo','5a2cb10e-9c0a-4b87-959c-556dea437480','','',NULL), -('14089','Openable','Cargo','UNDEFINED','69e3715f-17ff-4c85-8ad5-98cdd3df23b7','','',NULL), -('14090','vlk_spewgun_ballistic_irradiated_Apex','Weapon','Medium','07192449-3d76-47e2-b6c7-32126018ee48','','',NULL), -('14091','Sunset Berries','Cargo','Cargo','49572fb8-c079-4c61-a119-eff392f7e015','','',NULL), -('14092','TroMag Burst Generator','EMP','UNDEFINED','154a4629-e503-4bb6-bdaa-c1f8f13fc39c','','',NULL), -('14093','INTK_RSI_Polaris','FuelIntake','Fuel','b13b850c-f4f0-45bd-801d-a4d064a74cce','','',NULL), -('14094','VariPuck S4 Gimbal Mount','Turret','GunTurret','548377fc-ca9a-47ab-ac1c-f30371001463','','',NULL), -('14095','Weapon_Rack_1_KLWE_SMG_Common_001','Usable','UNDEFINED','58e9ea51-faa4-45c6-ab9f-876cf55aca5f','','',NULL), -('14096','Shoyu Lapsha','Food','Box','cd3138d2-674b-4663-bb06-73b3b710de55','','',NULL), -('14097','Internal Tank','FuelTank','Fuel','e2702a2f-433b-46a0-a149-8ba950d5e928','','',NULL), -('14098','DRAK_Golem_Thruster_Main_VTOL_Right','MainThruster','FixedThruster','7c2c7b2e-218f-4dde-bad5-d265ef11ef36','','',NULL), -('14099','Door Control','ControlPanel','DoorPart','1c4db9f8-7349-45ee-8582-30be2e6d2927','','',NULL), -('14100','XTR-L Module','MiningModifier','Gun','79a47fc7-4950-41a8-b58d-aa3a6b7f686e','','',NULL), -('14101','Flight Blade','FlightController','UNDEFINED','4738245a-d3c7-4143-bcf7-00c06a0a8fb0','','',NULL), -('14102','Weapon_Rack_Cz_008','Usable','UNDEFINED','bbd0a550-77d2-426b-a4c7-bd9ff768483c','','',NULL), -('14103','F1M-Fireshot','Suit','ThrusterPack','fd094fd8-eec0-4ca1-b40f-97497bc9baa7','','',NULL), -('14104','Artimex Arms (Modified)','Armor','Arms','7f5ecbb4-330d-4f1f-acf1-4ab436153916','','',NULL), -('14105','Stor*All 1/8 SCU Storage Box','Container','Box','c49c3aab-3499-4029-94d8-d305e542939a','','',NULL), -('14106','Novikov Exploration Suit (Modified)','Armor','Undersuit','1510e7e4-2384-4e6b-9f1f-55281361e769','','',NULL), -('14107','Idris_Pilot_Rm_Locker_R','Player','UNDEFINED','fa055d72-31ba-4438-827b-98580d92dd4b','','',NULL), -('14108','Internal Tank','QuantumFuelTank','QuantumFuel','6b609a73-bbc0-488b-b7ec-d30e2c27bd48','','',NULL), -('14109','Cloak','Shield','UNDEFINED','48e2b865-a936-4346-a621-582568ebd008','','',NULL), -('14110','Constellation Black Heron Livery','Paints','UNDEFINED','8952488a-a4bc-408f-9bed-d0d5eec8afe0','','',NULL), -('14111','Cordimon Jacket Olive','Char_Clothing_Torso_1','UNDEFINED','3ff0a0dd-b739-45e6-a9f6-28b1fa4ab1d8','','',NULL), -('14112','XNAA_SanTokYai_Thruster_Mav_02_Left','ManneuverThruster','FlexThruster','7857c357-17a6-4dac-ab5c-0122ff757701','','',NULL), -('14113','UI_EnvironmentScreen_Phoenix_ElevatorPanel_Top','StatusScreen','AirlockPart','7eb567aa-8dd4-470f-85a5-4c36a8172ff2','','',NULL), -('14114','DockingTube_Fuel_Ports_ANVL_Hawk','DockingCollar','UNDEFINED','01124d48-8cb8-4ba8-84ff-e05563db6ccf','','',NULL), -('14115','ADP-mk4 Core Woodland','Armor','Torso','8eabeef4-5d8d-4db4-a4df-9fa151062b42','','',NULL), -('14116','Hydrogen Fuel','Cargo','Cargo','0e0e2f20-ad71-47f6-a788-4f2e308c8caa','','',NULL), -('14117','AirlockInteriorStatusSign','StatusScreen','AirlockPart','fca95b21-99d5-4d50-be96-c10d9ddf7647','','',NULL), -('14118','Artimex Arms Canuto','Armor','Arms','df4210b0-584d-4fc1-ac59-64ca32d09dc3','','',NULL), -('14119','Gladius Timberline Livery','Paints','UNDEFINED','d07c7122-a671-45f5-a02c-d30de9d80eba','','',NULL), -('14120','Antium Legs Sand','Armor','Legs','da5e04ed-dfc4-4877-98ef-8c5c1776de79','','',NULL), -('14121','Burst','QuantumDrive','UNDEFINED','4a8d0265-7476-401a-a50f-5780cd212656','','',NULL), -('14122','ORIG_M50_Thruster_Retro','ManneuverThruster','JointThruster','22b42ccb-2ee1-4704-832e-690b92da4502','','',NULL), -('14123','Courser Jeans Rust','Char_Clothing_Legs','UNDEFINED','a610c3b8-3cf4-40cd-8237-8b9e34645ad8','','',NULL), -('14124','SuperDrive','PowerPlant','Power','202db33c-6b87-4210-9392-6d5368bc3436','','',NULL), -('14125','Salvo Esteban Frag Pistol','Weapon','Small','31c196fd-420b-4417-8aed-46fa9a118d60','','',NULL), -('14126','BANU_TachyonCannon_Barrel_S2','WeaponAttachment','Barrel','d10235c3-9889-4a1e-863d-bff6dad93354','','',NULL), -('14127','Seat','SeatAccess','UNDEFINED','3473fffb-1be3-43e1-96ad-2108656e5a3e','','',NULL), -('14128','Diluthermex','Cargo','Small','68d2a9a1-05e3-46cb-94da-3206874083ee','','',NULL), -('14129','AEGS_Door_Decal_Cargo','Decal','DoorPart','756b6655-f4aa-4f20-b423-7be0cd099469','','',NULL), -('14130','Boomtube Rocket','WeaponAttachment','Magazine','2f4ed822-21bb-4b47-8d9b-ef75114222f6','','',NULL), -('14131','MXOX_NeutronRepeater_Barrel_S2','WeaponAttachment','Barrel','cc96be3a-eafc-4548-b158-6be512189b22','','',NULL), -('14132','Projector_HUD_RefactorPrototype','Display','UNDEFINED','7a08039c-9883-4a7a-981d-36117dcb8ea4','','',NULL), -('14133','Ixonia Armor Desert Camo','Char_Clothing_Torso_1','Heavy','1e5f3996-290e-435b-bb63-ee8e327d74b1','','',NULL), -('14134','Flatcat Fail T-Shirt','Char_Clothing_Torso_0','UNDEFINED','45edd712-ed38-4998-9379-47a6983198b7','','',NULL), -('14135','Openable','Cargo','UNDEFINED','6fe59869-b4fc-453e-9723-bfb0481180b5','','',NULL), -('14136','Construction Pieces','Cargo','Cargo','4659383b-c4e6-4074-9faf-441d15396a67','','',NULL), -('14137','Anvil Ballista S05 Missile Rack','MissileLauncher','MissileRack','543dc2cf-e61b-4829-989a-e3c8ff0087eb','','',NULL), -('14138','Gadget_Cabinet_kegr_fire_extinguisher_01_med_low','Usable','UNDEFINED','354cc2e2-b234-43c1-ac05-b2951bf7ea99','','',NULL), -('14139','Venture Core Green','Armor','Torso','82fd792c-5636-446b-b26e-cf6743c244f4','','',NULL), -('14140','Defender Harmony Livery','Paints','UNDEFINED','a780540a-0371-4e5f-9924-54cfa13c349e','','',NULL), -('14141','ClipVest Work Harness Olive','Char_Clothing_Torso_1','UNDEFINED','6dc65fd5-1034-48ad-8bee-4c55ac4c9566','','',NULL), -('14142','Morozov-SH Arms (Modified)','Armor','Arms','406bf227-e61e-488e-a41e-f81e6b3279b5','','',NULL), -('14143','Arden-SL Arms Balefire','Armor','Arms','7d2041ad-3015-4235-a376-e49f431b8df5','','',NULL), -('14144','Geist Armor Core Snow Camo','Armor','Torso','a15e9077-c94b-4123-9179-1eeb20c1b10a','','',NULL), -('14145','Personal Storage','Cargo','UNDEFINED','87a5a3bc-9391-4092-8d43-f1732e74cbb2','','',NULL), -('14146','Calico Arms Tactical','Armor','Arms','307aa0ea-c51b-4f86-a223-f9f45c855f6f','','',NULL), -('14147','Finley the Stormwal Plushie','Misc','Personal','d2408531-0bf6-423d-a60f-62f4d69670a0','','',NULL), -('14148','RSI_Aurora_Mk2_Thruster_Fan_VTOL','ManneuverThruster','UNDEFINED','1c9b1216-af45-4e00-8747-51d6bfc0e4a7','','',NULL), -('14149','ORIG_400i_Thruster_Main_Sub_R','MainThruster','FixedThruster','dacf1388-2bf3-4571-a82f-6de4f0f6d127','','',NULL), -('14150','Aluminum (Ore)','Cargo','Cargo','91fb8526-2ab0-4258-8fe9-981bc5fdadad','','',NULL), -('14151','CBH-3 Helmet Yellow','Armor','Helmet','5341b8bb-ad4e-4f4a-9a33-d5dc03b77cea','','',NULL), -('14152','Table_Desk_1_Seat_CRUS_Starlifter','Usable','UNDEFINED','3afb2ba2-5450-435b-b26b-2272acdb46bc','','',NULL), -('14153','Pips Energy T17','Drink','Can','63b1731c-c74c-45c2-aaa4-5a90b76150d0','','',NULL), -('14154','Carryable_1H_CY_tool_manual_screwdriver_1_b','Misc','UNDEFINED','de332f91-f96e-4cf8-8ebc-ad9e2ce82bf7','','',NULL), -('14155','Carrack Miniature','Misc','UNDEFINED','96b1c67f-eca5-499d-887b-57893b8fdf03','','',NULL), -('14156','Tau Plus \"Scorched\" (4x Telescopic)','WeaponAttachment','IronSight','be792212-0662-4351-95cb-31b4d3fe9a0d','','',NULL), -('14157','LH86 \"Scorched\" Pistol','Weapon','Small','bff327cb-0cec-4fa9-bba2-88f237cf506e','','',NULL), -('14158','Vanquisher X-CS Torpedo','Missile','Torpedo','3e1b8bfb-07d1-49b8-8f6a-834f0be6f320','','',NULL), -('14159','Gallant \"Warhawk\" Rifle','Weapon','Medium','37a17020-c433-4775-acac-725ec28a4a74','','',NULL), -('14160','lt_light_electric_1_suspended_b','Light','UNDEFINED','7302239b-3c75-49e1-b3c0-8955da0753f5','','',NULL), -('14161','Heart of the Woods','Cargo','Cargo','5b8464f0-f480-4c4a-8d26-a43b217ac15c','','',NULL), -('14162','H_Dashboard_Projector_HUD_ARGO_Raft','Display','UNDEFINED','22b06d56-8534-4701-8285-445ccc646a54','','',NULL), -('14163','Morozov-SH Arms Redshift','Armor','Arms','0f4724c7-013d-434d-8f2e-b5e6602a2c28','','',NULL), -('14164','Yubarev \"Igniter\" Pistol','Weapon','Small','1874f421-36cc-4993-969a-b7c374b6f07a','','',NULL), -('14165','WowBlast Desperado Toy Pistol Teal','Weapon','Small','44d3347d-4d42-4571-8ca8-0e24afd88ca7','','',NULL), -('14166','Fresh Food','Cargo','Cargo','44c8700d-bd70-4473-b8ea-568a933e1581','','',NULL), -('14167','Morozov-SH Legs Iceflow','Armor','Legs','b6a80aac-9270-4e8c-a4c2-9ba0db0ea6db','','',NULL), -('14168','Zeus Mk II Frontier Livery','Paints','UNDEFINED','cb5bca92-7d32-40db-8f11-1fe9fdae9f6f','','',NULL), -('14169','Carnifex Armor Core','Armor','Torso','c324a5e5-eb85-478e-87a0-346566b2ef4a','','',NULL), -('14170','TRGT. STATUS','Seat','UNDEFINED','55de1a87-c6b9-4e0f-9358-e00f2c379074','','',NULL), -('14171','Corbel Helmet Crush','Armor','Helmet','a94304be-1967-428a-94d9-48f9f16bb808','','',NULL), -('14172','Creese Copperhead Jacket','Char_Clothing_Torso_1','UNDEFINED','653afd3e-df71-47a9-b5c4-027ca1f1f4c9','','',NULL), -('14173','Aril Backpack Hazard','Armor','Backpack','0e790ea4-8034-4eae-b1d9-a742e46bb27f','','',NULL), -('14174','Geist Armor Arms Rogue','Armor','Arms','3ef831f9-8efc-48f7-ac79-d4c304a345a6','','',NULL), -('14175','Dash Apron Whammer\'s','Char_Clothing_Torso_1','UNDEFINED','47e24901-dd6e-4a8b-a7b5-01888ac6e395','','',NULL), -('14176','Lynx Legs Aqua','Armor','Legs','07244e7f-81af-428e-a49e-ae1b9a940997','','',NULL), -('14177','HighTechAirlockInteriorStatusSign','StatusScreen','AirlockPart','094bdeda-9809-4202-be80-7e1b143e9eb2','','',NULL), -('14178','Venture Core Orange','Armor','Torso','3b68bc52-fd9a-4feb-a0d3-72d889bbf370','','',NULL), -('14179','Lynx Core Frostline','Armor','Torso','ee14c11f-ef77-40e6-87c8-15a4f4cb35ba','','',NULL), -('14180','can_drink_3_energy_c','Drink','Can','5d12fdb9-bbcc-4aaf-b513-46ec0f99c662','','',NULL), -('14181','INTK_MISC_Reliant_Tana','FuelIntake','Fuel','9b8c4a72-c812-47e5-97b9-56fa7b8283c6','','',NULL), -('14182','RF1 (1x Reflex)','WeaponAttachment','IronSight','46e37a2b-36d3-48d9-9a77-f51ef4689943','','',NULL), -('14183','Nomad Polar Camo Livery','Paints','UNDEFINED','e43bdee6-419e-4a23-8fe6-d0373829695f','','',NULL), -('14184','Davin Work Gloves Grey','Char_Clothing_Hands','UNDEFINED','e414eb17-bc8c-45f4-ac36-daf2ac606383','','',NULL), -('14185','INTK_XIAN_Scout','FuelIntake','Fuel','f7cefbcd-f19b-4d0c-8d04-172357b6218a','','',NULL), -('14186','Bed','Usable','UNDEFINED','1e58c467-9374-4e42-81e2-4e992edb185d','','',NULL), -('14187','Stellate','PowerPlant','Power','796642bf-92fa-48ee-92aa-bf9ba38487a6','','',NULL), -('14188','CRUS_Intrepid_Thruster_Retro','ManneuverThruster','UNDEFINED','7abdd08e-05ae-4579-a6cb-e22dc701d2c6','','',NULL), -('14189','Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','f1ac60a8-4fd5-45ea-9911-6e939f82ade0','','',NULL), -('14190','Large Artifact Fragment (Flawed)','Misc','UNDEFINED','197d85d6-f6e8-4e40-a7e3-e9668220af5f','','',NULL), -('14191','Toughlife Boots Yellow','Char_Clothing_Feet','UNDEFINED','629da527-2855-4870-a5b9-932006046fa7','','',NULL), -('14192','AAT-34 Turret','Turret','MannedTurret','df51685e-bc94-4da9-8e71-b7ffd99a4a54','','',NULL), -('14193','Jacopo Tophat','Char_Clothing_Hat','UNDEFINED','dfe02e04-d809-4961-898b-b30c87c07c74','','',NULL), -('14194','rack_wood_1_highend_a_rod_3Ports','ShopDisplay','Default','8fd77aca-2921-4391-af16-f2d390d93dee','','',NULL), -('14195','Vehicle_Screen_MFD_Holographic_Scout_L','Display','UNDEFINED','a6ab9e91-6fdf-43a3-b5cd-c103167181b0','','',NULL), -('14196','Big Benny\'s T-Shirt','Char_Clothing_Torso_0','UNDEFINED','7fda157c-fe3a-4b81-8747-35dbb072aa8e','','',NULL), -('14197','Carryable_2H_FL_MissionItem_covalex_RTT','Misc','UNDEFINED','ac61dcad-ce92-495b-893f-e53e0c1459df','','',NULL), -('14198','HoverQuad Copperhead Livery','Paints','UNDEFINED','a421dc6f-7906-4999-ae8f-b410013f9f45','','',NULL), -('14199','Internal Tank','QuantumFuelTank','QuantumFuel','ee591a77-fda0-4de7-9145-adf21f896900','','',NULL), -('14200','Tempest','Cooler','UNDEFINED','3a5723b0-17f6-4741-b421-43ed7cb7dd29','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('14201','Seat','SeatAccess','UNDEFINED','61ba932a-1694-4eae-a3bd-9c7fc6074085','','',NULL), -('14202','Origin Jumpworks 100i Ship Armor','Armor','Medium','a38043b8-4a63-462e-9f37-4b37c7d3ab21','','',NULL), -('14203','HRST_LaserRepeater_Ventilation_S1','WeaponAttachment','Ventilation','6c83f7b9-d504-435a-8931-c689c7a2f59e','','',NULL), -('14204','Vanduul Plushie','Misc','Flair_Wall_Picture','8378b1d3-a541-4d3e-8ed2-3ee4c7291e20','','',NULL), -('14205','Organics','Cargo','Cargo','ee7c755a-ebdc-4b91-b1be-592523bba783','','',NULL), -('14206','Palatino Helmet Metropolis','Armor','Helmet','5ce49f2a-62f5-4a76-b948-6acff599b41c','','',NULL), -('14207','Flight Blade','FlightController','UNDEFINED','cf17d2ab-cf32-45c6-80af-0affe6c2f0bc','','',NULL), -('14208','Toughlife Boots Twilight','Char_Clothing_Feet','UNDEFINED','cc4874e4-0f51-4f88-ba2e-ff31360bb918','','',NULL), -('14209','RSI_Polaris_Fake_Door_Cargo_Right','Misc','UNDEFINED','81f7a2c1-9af6-465d-b524-21b43616e841','','',NULL), -('14210','Weapon_Rack_Cz_010','Usable','UNDEFINED','9d61dee5-03aa-4cb7-a23c-0de5e88b5317','','',NULL), -('14211','Ardent Boots Twilight','Char_Clothing_Feet','UNDEFINED','c889ba3d-3119-469c-9c5d-072f470e8045','','',NULL), -('14212','Bioplastic','Cargo','Cargo','39fab6e1-8a33-4846-9b5c-d454136ef69e','','',NULL), -('14213','CryoPod','Misc','UNDEFINED','b1b0006e-d6e3-467c-af6a-0cdd78fcd902','','',NULL), -('14214','Esteril Lab Coat','Char_Clothing_Torso_1','UNDEFINED','5a55ae78-960a-498b-b1cc-91e179a4d8f9','','',NULL), -('14215','MISC_Razor_EX_Thruster_Vertical_Top','ManneuverThruster','FixedThruster','24095125-dce5-4df8-9262-4011fd8fa39a','','',NULL), -('14216','MacFlex Core Imperial','Armor','Torso','6263ea1c-4136-415e-9b65-642c27e953f9','','',NULL), -('14217','Sabre Raven Ship Armor','Armor','Medium','d72da45f-12c8-4ca1-98d3-03d46fdeae36','','',NULL), -('14218','GATS_BallisticGatling_FiringMechanism_S2','WeaponAttachment','FiringMechanism','85d5d735-373d-46eb-9ade-531221c20cef','','',NULL), -('14219','TMBL_Nova_Component_Shield','Player','UNDEFINED','14e75b56-137d-4522-910a-10e2d5595e24','','',NULL), -('14220','M2 Hercules Starlifter Plushie','Misc','Personal','5840dde8-7a06-488e-933d-a4c30f98eafa','','',NULL), -('14221','DustUp Arms Tactical','Armor','Arms','1bc2aa7b-d8c1-4158-8d3f-dcef1fed5305','','',NULL), -('14222','Reliant Invictus Blue and Gold Livery','Paints','UNDEFINED','105ad697-b26d-4084-80f8-0349bce79ea2','','',NULL), -('14223','Creese Toxic Fog Jacket','Char_Clothing_Torso_1','UNDEFINED','9a8be734-4e84-493c-ad4b-daf8ba3af1f4','','',NULL), -('14224','Comb','Misc','UNDEFINED','299d6201-664c-492e-b38e-8116122d9905','','',NULL), -('14225','Door Control','ControlPanel','DoorPart','20553187-158d-4cdb-9d25-1a1882385964','','',NULL), -('14226','DRAK_Golem_Thruster_Main_VTOL_Small','MainThruster','FixedThruster','905252d6-4930-49b3-aa9a-268287995a9a','','',NULL), -('14227','TRGT. STATUS','Seat','UNDEFINED','74bcd4c8-ff59-455d-ab93-e04d70e69f21','','',NULL), -('14228','Cobalt','Cargo','Cargo','d69cbc07-f342-4117-8025-0c9030372e86','','',NULL), -('14229','Aurora Mk I Exploration Livery','Paints','UNDEFINED','5439cdb0-89ae-4179-88a3-5d6726a32972','','',NULL), -('14230','Pembroke Backpack RSI Sunburst Edition','Armor','Backpack','c3cb1b86-2df0-42fa-b1d1-37d0b2f4a558','','',NULL), -('14231','AEGS_Reclaimer_Dashboard_TractorBeam_Right','SeatDashboard','UNDEFINED','c3ce741f-aa91-44d4-b874-edaa8890cfe0','','',NULL), -('14232','Radar_Display_MISC_Freelancer','Display','UNDEFINED','ad443ecf-0ec4-4615-b47c-2b4d1d3bdb63','','',NULL), -('14233','ORIG_300i_Thruster_Mav_Fixed_01_Top','ManneuverThruster','FixedThruster','854a2fe9-70dd-4200-8e18-b84b1f130984','','',NULL), -('14234','MRCK_S02_ORIG_100i_Dual_S02','MissileLauncher','MissileRack','74805174-0637-4ccf-b6a8-cd44290fd03c','','',NULL), -('14235','Aegis Vanguard Torpedo Rack','MissileLauncher','MissileRack','3a442a45-e593-4556-9aa4-3988d6fd1075','','',NULL), -('14236','Diamond','Cargo','Cargo','06c3bb83-dda1-4455-bc13-b18d7830c926','','',NULL), -('14237','Spirit microTech Livery','Paints','UNDEFINED','5234bbca-0e81-49ba-8db6-ef5dbb6f4561','','',NULL), -('14238','Corundum','Cargo','Cargo','d994d7a4-8e5f-4583-b480-c5b1c4b18f84','','',NULL), -('14239','Shipment','Misc','UNDEFINED','42d4e0a1-d37b-4046-a91b-4c10f6f55d28','','',NULL), -('14240','DockingTube_Fuel_Ports_MISC_Razor','DockingCollar','UNDEFINED','2a20db14-2cab-438a-97eb-7ea383a16329','','',NULL), -('14241','Constellation Crusader Livery','Paints','UNDEFINED','38b0f11a-186a-4051-966e-0293c4617acd','','',NULL), -('14242','CR-60','ExternalFuelTank','UNDEFINED','7c1f45d5-1e8f-4324-ae21-e25ce3b8ba25','','',NULL), -('14243','Lynx Core Seagreen','Armor','Torso','8f2ef086-d443-4714-a186-cf38f04a5da2','','',NULL), -('14244','Agni','QuantumDrive','UNDEFINED','069689b2-0abf-47e6-a584-e20819764711','','',NULL), -('14245','AEGS_Retaliator_CargoGrid_Front_Right','CargoGrid','UNDEFINED','f47fd2c2-b851-4987-b5e1-f093533b6446','','',NULL), -('14246','Aril Helmet Quicksilver','Armor','Helmet','619fe08f-92f0-405c-9ac0-3b986dd07cdd','','',NULL), -('14247','AEGS_Sabre_Firebird_Thruster_Main','MainThruster','FixedThruster','2b72ad40-673b-4f06-81d4-51ba48e7045e','','',NULL), -('14248','Remote Turret','Turret','GunTurret','ca065f95-2a0e-4c44-8ff3-6a5b54238e68','','',NULL), -('14249','Melty Dog','Food','Junk','859ee528-a8ea-4cd7-a8bb-ae69adbba264','','',NULL), -('14250','ControlPanel_LightSwitch_DRAK_Cutter_Bed','ControlPanel','DoorPart','c45c668d-2373-4018-ae8d-1fe7edddbb84','','',NULL), -('14251','Weapon_Rack_1_VOLT_Sniper_AmmoOnly_001','Usable','UNDEFINED','62626440-c812-4315-86be-a58a169890d4','','',NULL), -('14252','Amaris Shirt','Char_Clothing_Torso_0','UNDEFINED','b8c8189b-b897-415d-a8b5-cd5d631803a5','','',NULL), -('14253','CRUS_Starlifter_Thruster_Main','MainThruster','FixedThruster','3aa1fe46-9e16-4ea0-a9b9-31b1fa6c8841','','',NULL), -('14254','AEGS_Hammerhead_Front_DockingTube','DockingCollar','UNDEFINED','5d5a856e-325d-462a-aa1f-9b10e32ba413','','',NULL), -('14255','Venture Undersuit Black/Red','Armor','Undersuit','4e1f5081-91f2-4827-b883-be8de7b2cb36','','',NULL), -('14256','PAB-1 Core Crusader Edition','Armor','Torso','d51598e2-3af3-42b9-ac3c-f56e4d92a159','','',NULL), -('14257','LifeCure Medsticks','Cargo','Cargo','b88f3e8c-e900-4b32-9be0-66a5d32da938','','',NULL), -('14258','Locker_Suit_Left_AEGS','Usable','UNDEFINED','a5064899-2cf0-4524-ab94-e6f102418258','','',NULL), -('14259','Beacon Undersuit Dark Grey','Armor','Undersuit','0d5e3de2-21dc-4779-b55c-93d8ccee30ea','','',NULL), -('14260','sc_nvy_training_pants_01_01_01','Char_Clothing_Legs','UNDEFINED','3636aabc-18aa-4d8b-9068-9f9e2dbd32f8','','',NULL), -('14261','Carryable_1H_CY_tool_manual_socket_1_e','Misc','UNDEFINED','c9f3e078-b684-4f8b-96e8-a0b71013845b','','',NULL), -('14262','Kino Shoes Purple','Char_Clothing_Feet','UNDEFINED','92fca370-8578-4bcd-b13d-c063d0bf4afd','','',NULL), -('14263','Door Control','ControlPanel','DoorPart','2a22a0ba-acd0-4cc7-8574-bece5ebe2a34','','',NULL), -('14264','AImodule_ATC_GrimHex','AIModule','UNDEFINED','5b953a44-0ab7-44f4-b101-8ff2bb370c48','','',NULL), -('14265','CRUS_Starfighter_Thruster_Main_Right','MainThruster','FixedThruster','2c511eda-3b08-480c-a94f-0dcde7fe7fb1','','',NULL), -('14266','sc_nvy_deckcrew_helmet_01_01_01','Char_Clothing_Hat','UNDEFINED','866a7084-1b03-4470-acb1-7d19c4958fe2','','',NULL), -('14267','Door','Door','UNDEFINED','c29847ec-1e4d-42d5-bedb-22548798d786','','',NULL), -('14268','Door Control','DockingAnimator','UNDEFINED','f5c8d614-a29a-4bf0-9eb5-38ac1a456b4f','','',NULL), -('14269','Door Control','Door','UNDEFINED','acabe209-ba51-4775-99ee-efe02d333d3f','','',NULL), -('14270','Kino Shoes Olive','Char_Clothing_Feet','UNDEFINED','b4ec294c-94e3-47cb-a1a8-fa48a223b7a6','','',NULL), -('14271','Flight Blade','FlightController','UNDEFINED','4a4879ca-ddd2-4995-96c3-92cce1854c5d','','',NULL), -('14272','Seat','Usable','UNDEFINED','872a837f-7573-42f7-85f9-04acd2d8aaf3','','',NULL), -('14273','Vulture Ghoulish Green Livery','Paints','UNDEFINED','f541c6f3-3e97-4dd0-b919-6bb2c763f317','','',NULL), -('14274','Venture Core Tan','Armor','Torso','c1f94489-0e2e-40bf-9068-53041e6783a8','','',NULL), -('14275','AEGS_Reclaimer_Drone_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','f71ed755-4f87-4be6-beec-73a45642a60c','','',NULL), -('14276','Ponos Boots Dark Red','Char_Clothing_Feet','UNDEFINED','f50e99c9-0806-4fdc-b981-a640afe19bbe','','',NULL), -('14277','Ward','Shield','UNDEFINED','2a0bcc2c-769a-4689-a9bc-dde5516c6d1b','','',NULL), -('14278','Remote Turret','Turret','GunTurret','9cb8e69c-5250-4671-b683-748c40f869c7','','',NULL), -('14279','Monde Legs HighSec','Armor','Legs','86bda22d-5e22-4048-98b0-2655b1008ef0','','',NULL), -('14280','Venture Undersuit Voyager ','Armor','Undersuit','f2576922-49e6-4561-a403-5ffe3b78c7ed','','',NULL), -('14281','tool_manual_1_screwdriver_tinkerBench','Misc','UNDEFINED','01429b27-194c-4236-8286-6ff8a87557b0','','',NULL), -('14282','Door Control','Door','UNDEFINED','364b9d97-2d1b-4df5-81ad-db4e07415595','','',NULL), -('14283','Door Control','Door','UNDEFINED','32c05ac2-990f-4daa-b327-b2c4365f110a','','',NULL), -('14284','CBH-3 Helmet Sienna','Armor','Helmet','fdd6e566-eb08-4669-9994-2c33ed3f3a70','','',NULL), -('14285','Lynx Arms Firebrick','Armor','Arms','d7eed5fc-86c9-455b-a816-1db0a5e77c81','','',NULL), -('14286','Seat','SeatAccess','UNDEFINED','721224cc-9ff2-4bee-bc9d-86e9c3961d18','','',NULL), -('14287','Door Control','Door','UNDEFINED','a6b979b8-390b-498b-970a-dd01e7b014f6','','',NULL), -('14288','Piconalia Sweater Tannenbaum','Char_Clothing_Torso_0','UNDEFINED','691ef8f1-9a82-4073-80c2-9d319fe7a9ed','','',NULL), -('14289','Personal Storage','Cargo','UNDEFINED','4bbf621d-99ab-3736-1c68-36cb41d02caa','','',NULL), -('14290','ARGO_ATLS_IKTI_ARGOS_Backpack','Usable','UNDEFINED','41ca0b46-321d-47e3-a93c-e00b8c19c282','','',NULL), -('14291','Door','Door','UNDEFINED','6ece5482-0819-4d68-aece-fa7b9996e86f','','',NULL), -('14292','Mivaldi Pants Violet','Char_Clothing_Legs','UNDEFINED','f94e1082-a45e-432c-9dbe-24b096a91874','','',NULL), -('14293','Seat','Usable','UNDEFINED','de52b0dc-b4e1-484b-9292-75a4770a2eb9','','',NULL), -('14294','expo_display_shirts_and_hats_misc','ShopDisplay','Default','b0485d30-ed62-4fb8-98ff-d5e0ed7ef118','','',NULL), -('14295','AEGS_Javelin_Thruster_Retro','ManneuverThruster','FixedThruster','49a3affd-8a68-4cdb-990f-9a4ea1223a5c','','',NULL), -('14296','Shiv Meridian Livery','Paints','UNDEFINED','aa161ff1-1666-4ff5-ad70-6c3818ef508e','','',NULL), -('14297','Heart of the Woods','Misc','Harvestable','1ca5798b-0e46-426e-b50c-773422c30a81','','',NULL), -('14298','Seat','SeatAccess','UNDEFINED','5343b015-17df-4fd8-9812-1c5d13d77ee6','','',NULL), -('14299','Door Control','ControlPanel','DoorPart','ac074842-d0f8-4ad8-b8aa-63809fdf9ba1','','',NULL), -('14300','Combat Supplies','Cargo','Cargo','76dba151-f99e-4393-9340-c2ba1538ffb1','','',NULL), -('14301','Quantainium (Raw)','Cargo','Cargo','5914dfb3-4dff-42bc-84e1-ce74bd50cc5f','','',NULL), -('14302','Interstellar Transport Guild Cargo Plushie','Misc','Flair_Wall_Picture','44ebfd0d-038b-41af-a292-ef18302186f6','','',NULL), -('14303','ARGO_MPUV_1T_Thruster_Aux_Fixed_01','ManneuverThruster','FixedThruster','89228ed6-8ab0-49f6-b19c-879edc290f6a','','',NULL), -('14304','Cambio SRT','Weapon','Gadget','b8262c6e-ea03-441e-befd-8b4283d8e847','','',NULL), -('14305','Door Control','Door','UNDEFINED','9f0b69ba-b983-44f9-a006-5d4f316b4a63','','',NULL), -('14306','Scourge \"Quite Useful\" Railgun','Weapon','Large','26ae7732-1594-476a-a6e7-84f694deba34','','',NULL), -('14307','ANVL_Hawk_Dashboard_Pilot','SeatDashboard','UNDEFINED','217c024f-c59c-446a-9225-c5ea3255116a','','',NULL), -('14308','Nova Timberline Livery','Paints','UNDEFINED','2785322f-299a-432a-8bd7-93b8ca39a873','','',NULL), -('14309','Manned Turret','TurretBase','MannedTurret','1b4aed53-1098-407e-b152-72236b374906','','',NULL), -('14310','ARMR_ANVL_Centurion','Armor','Medium','a9ab7b2c-31cf-43cd-aac8-070990724592','','',NULL), -('14311','ATC_PanelScreen_Levski_3','Misc','UNDEFINED','bdcf12b5-d745-4c78-b9cf-6e3b954f4126','','',NULL), -('14312','Screen','Usable','UNDEFINED','4ecb3a33-9204-44ff-a691-6d2819539c26','','',NULL), -('14313','AD4B Ballistic Gatling','Weapon','Gun','e4afc8b4-da61-4efb-af7e-f003d9900d96','','',NULL), -('14314','AEGS_Door_Decal_Turret','Decal','DoorPart','28f25b38-d479-47da-9cba-8c448e6b9cc3','','',NULL), -('14315','Seat','SeatAccess','UNDEFINED','e1ff9eae-299e-4653-8acd-652f0b7b1a3e','','',NULL), -('14316','Bed','Usable','UNDEFINED','7ceeaaf0-b823-462c-b43f-50aa3b07eb78','','',NULL), -('14317','Relay_Maintenance_Wallpanel_Bottom','Usable','UNDEFINED','e85be7c5-7e22-4adc-a700-468802bb9652','','',NULL), -('14318','Singe Cannon (S1)','Weapon','Gun','e0c51f49-8910-4c99-92e5-ba7eca915bbb','','',NULL), -('14319','Seat','SeatAccess','UNDEFINED','5c406398-d5d6-4010-aadc-f0db06dc81fc','','',NULL), -('14320','VNCL_Gen2_PlasmaCannon_S4','Weapon','Gun','8ddb6868-1ae3-4cad-a736-12ad739ead2b','','',NULL), -('14321','AEGS_Sabre_Thruster_Mav_SideRL','ManneuverThruster','JointThruster','663e9e01-42d7-488a-a90f-8ac9f722a35d','','',NULL), -('14322','Adrift Shirt Green','Char_Clothing_Torso_0','UNDEFINED','b384d795-f260-4944-abb5-8d53052fd7b3','','',NULL), -('14323','Flair_Hologram_Selfie_Heart_1_a','Usable','UNDEFINED','e0e3ece8-a037-4773-8b6d-f03b84caf987','','',NULL), -('14324','Palatino Arms Metropolis','Armor','Arms','b12adbab-eba8-4c27-b44c-de4501b8394e','','',NULL), -('14325','VNCL_Blade_Thruster_Aux_Fixed_Side','ManneuverThruster','FixedThruster','7b8c79de-9ee9-4e33-a9ba-11f6525fd023','','',NULL), -('14326','BEHR_LaserCannon_FiringMechanism_S9','WeaponAttachment','FiringMechanism','20f8c638-109d-4856-8854-7805d53c626b','','',NULL), -('14327','\'WARLORD\' Cannon','Weapon','Gun','2b261d0c-d208-4ab4-9217-ded64b8cb7cf','','',NULL), -('14328','Vehicle_Screen_MFD_Holographic_STY_R','Display','UNDEFINED','5d076d73-2db7-4bec-953c-54f48e9e6dae','','',NULL), -('14329','Anvil Noise Launcher','WeaponDefensive','CountermeasureLauncher','d6390806-48aa-459e-ba57-4db097b60d34','','',NULL), -('14330','Flight Blade','FlightController','UNDEFINED','7eafe909-715e-4f46-b8c0-648050e04aa6','','',NULL), -('14331','FrostBite','Cooler','UNDEFINED','65c269cf-5094-4984-9dbf-d6675a4a785b','','',NULL), -('14332','GATS_BallisticGatling_PowerArray_S3','WeaponAttachment','PowerArray','e4f958c0-f276-4afe-989d-4b9f1fcf19ef','','',NULL), -('14333','DRAK_Cutlass_CargoGrid_Main','CargoGrid','UNDEFINED','90c5b4dd-b23c-4415-a2e6-c7275de67b05','','',NULL), -('14334','f_human_mannequin_slaver_medium_02','ShopDisplay','UNDEFINED','2b296def-5e78-4174-8e54-8197baa1a1a1','','',NULL), -('14335','Courser Jeans Smoke','Char_Clothing_Legs','UNDEFINED','8d67a382-7002-46a7-a2c6-fe31fd89c38b','','',NULL), -('14336','Door_LoadoutScanner_StormBreaker_ResearchFacility1','Door','UNDEFINED','4a6b3773-de1c-4b11-ba02-ba3d8cfdc911','','',NULL), -('14337','ORIG_890Jump_CargoGrid_Rear','CargoGrid','UNDEFINED','b13a027a-66e1-429c-a744-78278aeba9ae','','',NULL), -('14338','K7 Pants Black','Char_Clothing_Legs','UNDEFINED','5e1f9272-492c-45dd-a57c-b2aaa22676a7','','',NULL), -('14339','Internal Tank','FuelTank','Fuel','0265df93-6b95-4bce-ba46-1b2c6dab1f8c','','',NULL), -('14340','TRGT. STATUS','Seat','UNDEFINED','977a2f1b-7656-4b43-9b29-f75a4613b27d','','',NULL), -('14341','KRIG_P52_Merlin_Thruster_Main','MainThruster','FixedThruster','e2bde351-01bd-40d5-b0d4-7e6b2efcb168','','',NULL), -('14342','Weapon_Rack_CNOU_Nomad','Usable','UNDEFINED','590fb0ec-d760-4aef-8b2b-1b16784a77d4','','',NULL), -('14343','Strata Legs ArcCorp Edition','Armor','Legs','a2cd25f0-5377-4625-a06e-57774414c6b7','','',NULL), -('14344','Torrent Compensator1','WeaponAttachment','Barrel','c1cf140f-dcdc-41ec-9199-f7c8a5227b39','','',NULL), -('14345','Microid Battle Suit Legs Badland','Armor','Legs','caff87b5-1728-42bf-b9bb-5ae90297b8cd','','',NULL), -('14346','Hercules Starlifter Hurston Livery','Paints','UNDEFINED','882db93b-3807-4310-82d5-ea7342c9debd','','',NULL), -('14347','Stirling Exploration Suit Sediment Edition','Armor','Undersuit','dd0311d2-1eb4-4c7d-9cd1-be1d1377e04c','','',NULL), -('14348','Kopion Horn','Cargo','Cargo','f8ba6e0c-24ea-494a-9a1c-6030cb1c4f29','','',NULL), -('14349','Door_LoadoutScanner_StormBreaker','Door','UNDEFINED','caa37c19-f5fe-4864-8df8-ea8dfe810129','','',NULL), -('14350','AEGS_Door_Decal_Bridge_Armoury','Decal','DoorPart','6f1213ff-36fd-4a0a-8830-1e8013c08856','','',NULL), -('14351','CRUS_Spirit_C1_Exterior','Misc','UNDEFINED','f9ca5d18-0213-4225-b93f-a12c733646ba','','',NULL), -('14352','Special Operation Formula Combat Ration','Food','Sachet','d1963c45-f9de-4a10-b034-128daedeb351','','',NULL), -('14353','Col_A_Airlock_Rooftop_Door_Single_Ext','Door','AirlockPart','bc8b182d-1b1e-41b4-bb56-279ffbfe8e57','','',NULL), -('14354','Breakfast Dog','Food','Junk','1af97566-2ca7-4ac8-ad4f-f7ec6421f331','','',NULL), -('14355','MISC_Reliant_SCItem_Seat_CoPilot','Seat','UNDEFINED','be907bef-e023-459c-b5bd-de724e8c4425','','',NULL), -('14356','ADP Core Crusader Edition','Armor','Torso','720afa6e-075d-43a1-882c-1724d56c047e','','',NULL), -('14357','Seat','SeatAccess','UNDEFINED','6fac8116-5773-4cf9-a494-d420d666aeb2','','',NULL), -('14358','ADP Legs Aqua','Armor','Legs','657d2013-11e3-4703-b7e9-0cf841d77e2d','','',NULL), -('14359','Flight Blade','FlightController','UNDEFINED','305dac41-ee59-46b0-8d14-ad3684b56efe','','',NULL), -('14360','Venture Undersuit Lovestruck','Armor','Undersuit','dcb558ae-4d30-4c49-9714-9281150f62ce','','',NULL), -('14361','Door','Door','UNDEFINED','b0828db2-8c92-406a-988a-b40c562047f4','','',NULL), -('14362','Locker_Shallow_WallLeft_AEGS_NoWall','Misc','UNDEFINED','4a044d00-bd3a-4d7c-9206-a8f1f2e9d02a','','',NULL), -('14363','TRGT. STATUS','Seat','UNDEFINED','ee972b18-d67a-4bb3-9ea2-71efe8119b45','','',NULL), -('14364','Carryable_TBO_FL_4SCU_Commodity_ProcessedGoods_AceInterceptorHelmet','Cargo','Cargo','035ccf67-502f-4ff2-8916-95cb61a2eeac','','',NULL), -('14365','DRAK_Corsair_Thruster_Aux_B','MainThruster','UNDEFINED','d5df0221-0378-4003-b000-c2f061301a04','','',NULL), -('14366','Morningstar Helmet Rager','Armor','Helmet','359c3615-a454-46e5-8a7a-7029d03641c7','','',NULL), -('14367','Horizon Helmet Orange','Armor','Helmet','161f76fd-32e2-4ca9-b458-bef34e242948','','',NULL), -('14368','ORIG_400i_Thruster_Mav_VTOL','ManneuverThruster','FlexThruster','ee1f45e5-d24d-4b31-9b8f-eb80d4e19046','','',NULL), -('14369','Nomad Sandstone Livery','Paints','UNDEFINED','029cc3d4-522a-4c08-8d51-b60e30d60eb5','','',NULL), -('14370','MTC Moonstone Livery','Paints','UNDEFINED','047ae622-d622-4d72-9482-008ab7d9600d','','',NULL), -('14371','AEGS_Firebird_CML_Flare','WeaponDefensive','CountermeasureLauncher','b0988093-17aa-4768-a3a8-f82f6ed758b8','','',NULL), -('14372','Toughlife Boots Olive','Char_Clothing_Feet','UNDEFINED','1e53d473-30a7-417b-bbf6-f482be36395b','','',NULL), -('14373','Flight Blade','FlightController','UNDEFINED','d3b17f27-d877-4a72-9fb9-7ec7755c4de0','','',NULL), -('14374','Avenger Warlock Ship Armor','Armor','Medium','ccd27ec0-a00e-40bb-b1aa-c9a48eba2ccb','','',NULL), -('14375','TRGT. STATUS','Seat','UNDEFINED','5e246a30-db97-4ba0-91a8-702d4c35add0','','',NULL), -('14376','ORC-mkV Core Scorched','Armor','Torso','d90c510b-3f4e-485c-9be9-3a704bba197d','','',NULL), -('14377','DockingTube_Fuel_Ports_VNCL_Scythe','DockingCollar','UNDEFINED','aaa9e96e-d668-4a94-9b06-2db296114d5a','','',NULL), -('14378','MacFlex Core Aqua','Armor','Torso','de952d7b-4eb9-4a7f-be78-28ee4a97a949','','',NULL), -('14379','Omnisky XV Cannon','Weapon','Gun','c778d7c0-116a-4597-a32e-2bbf7f6b7c17','','',NULL), -('14380','RSI_Lynx_RADR_Display','Display','UNDEFINED','9e71e6c6-cf30-4d86-b849-39ff8ba943a7','','',NULL), -('14381','Ati Jacket White','Char_Clothing_Torso_1','UNDEFINED','ed98d39b-8a66-4b44-a202-f43c09722695','','',NULL), -('14382','SHIELDS','ShieldController','UNDEFINED','ef39cb46-092c-4254-8ea8-a733578c5c32','','',NULL), -('14383','Seat','Usable','UNDEFINED','76bb71a1-4538-4fa3-8a5f-d95be4c68773','','',NULL), -('14384','Galen Surgical Scrub Top Honeycomb','Char_Clothing_Torso_1','UNDEFINED','98593a28-e7bc-4ddc-8d9f-0350e73809fc','','',NULL), -('14385','chevron_arrow_1_a','Misc','UNDEFINED','487a6618-01cc-44c3-8403-1eb6ea19cc3c','','',NULL), -('14386','Franz Pants','Char_Clothing_Legs','UNDEFINED','73882e93-2dbf-423a-b498-719f8e194876','','',NULL), -('14387','Retaliator Unladen Front Module','Module','UNDEFINED','1d9f2186-2465-4b62-a5cb-f1bc8e3dd390','','',NULL), -('14388','Internal Tank','QuantumFuelTank','QuantumFuel','af6936c7-c722-4437-ac3c-c614e0306b34','','',NULL), -('14389','Stud','Char_Head_Piercings','UNDEFINED','3edcab7c-50e0-4da8-b7c3-23b2daa640a7','','',NULL), -('14390','Personal Storage','Cargo','UNDEFINED','9eb4b473-a014-4203-ac52-af7127c05f07','','',NULL), -('14391','RSI_Aurora_LX_Thruster_Mav_Joint_01','ManneuverThruster','JointThruster','56cd91cb-c4b8-418a-b508-d53dc49486a5','','',NULL), -('14392','Messhall_Utensil_Rack','Misc','UNDEFINED','be14b0e2-d180-4a76-9db7-e4420e9e4313','','',NULL), -('14393','AAT-34 Turret','Turret','MannedTurret','c5e8e0ff-32c2-4057-9251-3b984e73f131','','',NULL), -('14394','Quartz \"Deadfall\" Energy SMG','Weapon','Medium','e1f0bdd3-c8e4-4e8a-b722-ec112f16f712','','',NULL), -('14395','Remote Turret','Turret','GunTurret','2b66c594-b102-4941-b93b-6c7501bf53ae','','',NULL), -('14396','Impact II Mining Laser','Mining','Gun','5b3a2200-4b1d-4b08-9e67-88e3c62728ae','','',NULL), -('14397','Flight Blade','FlightController','UNDEFINED','b064faeb-7158-4602-8db1-3d9ea0f7f2d5','','',NULL), -('14398','ANVL_Carrack_Thruster_VTOL','ManneuverThruster','FixedThruster','c74fbf65-d72e-4e5f-bb8b-115c2296f650','','',NULL), -('14399','ARMR_RSI_Ursa','Armor','Medium','6fb0f4a2-e747-4e5d-bef7-7e481a587254','','',NULL), -('14400','mod_rack_food_2_Wide_2Ports','ShopDisplay','Default','72689e17-a0b1-4bc5-9951-ce1e2c8e6928','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('14401','Constellation Andromeda Ship Armor','Armor','Medium','c0520f30-2b1e-4641-a80b-faf1c66684fa','','',NULL), -('14402','Pingala Seeds','Cargo','Cargo','cd2bc98f-b36c-4617-8a46-7145b2bcc4d6','','',NULL), -('14403','DynaFlex','Cargo','Cargo','1ed5cb09-9137-46da-9b4e-89466ceccdc3','','',NULL), -('14404','colonialism_airlock_rooftop_small_default_lghtgrp','Lightgroup','AirlockPart','73950bab-5ca8-4b57-af7c-090d8a18fa2b','','',NULL), -('14405','sc_nvy_bdu_engineer_belt_03_01_01','Char_Clothing_Torso_2','UNDEFINED','dbb48f22-3053-4089-8efc-4544a182c1b2','','',NULL), -('14406','Seat','Usable','UNDEFINED','cbede51c-f6f0-43ae-9eb0-5e590974cd82','','',NULL), -('14407','Messhall_Drink_Machine','Misc','UNDEFINED','6052e8b0-e60d-4d0a-89e7-7553c9e33df2','','',NULL), -('14408','Courser Jeans Pitch','Char_Clothing_Legs','UNDEFINED','edb7d4b6-5461-4eb6-8ec9-1467ce8f0a84','','',NULL), -('14409','TRGT. STATUS','Seat','UNDEFINED','ed825bfe-9565-4267-8301-49d7e7d4e835','','',NULL), -('14410','Pepper','Misc','UNDEFINED','5920b866-e54f-4ff0-aee8-d8474a03770a','','',NULL), -('14411','Grav Lev 1','ManneuverThruster','JointThruster','f48abf2d-38c2-4fd4-bebf-14e8b51b993d','','',NULL), -('14412','CRUS_Starlifter_SCItem_Bomb_Console','Seat','UNDEFINED','2dec1737-80ae-4c4c-89d2-8179ae98c8ad','','',NULL), -('14413','Maintenance_Workzone_MiddleDown','Usable','UNDEFINED','b652c3b2-eed4-4c89-a19f-cc19b658cf7a','','',NULL), -('14414','TRGT. STATUS','Seat','UNDEFINED','1bea9aeb-fdec-4973-89b9-f08f0eee9a32','','',NULL), -('14415','Zip','Cargo','Cargo','88c06ce8-a3c8-4fc7-b2f4-be3a88bb21a0','','',NULL), -('14416','MXOX_NeutronRepeater_Barrel_S1','WeaponAttachment','Barrel','7572f62b-9035-47af-a636-ef841ba1656b','','',NULL), -('14417','Cordimon Jacket White','Char_Clothing_Torso_1','UNDEFINED','ce7e28fc-8a07-434f-8c9e-9a696c092417','','',NULL), -('14418','RSI_Perseus_Turret_Top_Lighting_OC','Room','UNDEFINED','3ae0efb5-7f2d-4f1b-86ee-8f149ccbabef','','',NULL), -('14419','Shutters','AIModule','UNDEFINED','234b5415-8345-436b-bd37-03635a742afe','','',NULL), -('14420','600i 2953 Best in Show Livery','Paints','UNDEFINED','16c0b543-198d-416b-af9f-cb084fe1408a','','',NULL), -('14421','Bed','Usable','UNDEFINED','dbd4db5f-fcf2-4380-a86b-2ba86e1322ad','','',NULL), -('14422','Venture Core Seagreen','Armor','Torso','16620f9e-65cf-4a25-bd5f-539788c3e28e','','',NULL), -('14423','MOTH Juniper Livery','Paints','UNDEFINED','e161ff99-0426-424c-b36d-e8fba658839a','','',NULL), -('14424','IAE 2953 Shirt White','Char_Clothing_Torso_0','UNDEFINED','13f24921-b9c2-4d3d-9231-86e97bd95c01','','',NULL), -('14425','AEGS_Retaliator_Thruster_Retro','ManneuverThruster','FixedThruster','684647ee-5cf9-465d-8bb8-658dd7786eff','','',NULL), -('14426','Venture Undersuit Olive/Black','Armor','Undersuit','6acc731b-7f9d-438e-9f3b-678e8b25f5e3','','',NULL), -('14427','Radar_Display_MISC_Hull_A','Display','UNDEFINED','19498451-e03e-4933-9328-3e21d153bdb5','','',NULL), -('14428','CBH-3 Helmet Orange','Armor','Helmet','54e02a42-5165-423e-b19d-6f964555f4c4','','',NULL), -('14429','TrueDef-Pro Core Black/White/Violet','Armor','Torso','999a3b12-ee02-49bc-9f78-d944fa9dbdc8','','',NULL), -('14430','Door Control','Door','UNDEFINED','66134018-11dd-45a5-897b-6ece5ccf43ee','','',NULL), -('14431','Seat','SeatAccess','UNDEFINED','8b0b7300-6fc6-40a3-9d56-c8a294f157f1','','',NULL), -('14432','Seat','Usable','UNDEFINED','4c7bbd9a-be9c-4ccf-bc15-c0e6d6d5abd0','','',NULL), -('14433','Vehicle_Screen_MFD_Holographic_MISC_Prospector_ML','Display','UNDEFINED','c075c0d9-6283-413c-abb0-7cc5d110a208','','',NULL), -('14434','AEGS_Reclaimer_Scanning_Console','Seat','UNDEFINED','7adf6e3c-97ad-4669-97ea-5127e69c033d','','',NULL), -('14435','INTK_MISC_Fury','FuelIntake','Fuel','51b09c51-df17-48e0-ba5e-8c36395ed4ad','','',NULL), -('14436','Riccite (Ore)','Cargo','Cargo','ae00bd5d-7231-4cc0-ba8e-98bee650ed63','','',NULL), -('14437','Lynx Legs Bloodstorm','Armor','Legs','b60c7b5c-bb32-4c39-854b-7c55de0d9657','','',NULL), -('14438','Mivaldi Pants Twilight','Char_Clothing_Legs','UNDEFINED','28235dfd-a4bf-4cbb-bc15-4fa98cca132e','','',NULL), -('14439','Hangar_FreightElevator_CargoGrid_Medium','CargoGrid','UNDEFINED','2469d28f-1775-4584-acda-3097ed11d0de','','',NULL), -('14440','Chokehold Gloves Grime Blue','Char_Clothing_Hands','UNDEFINED','e3c8d1cf-bfbf-4cfe-97c9-ae6bef0fa592','','',NULL), -('14441','Weapon_Rack_1_KLWE_Sniper_Common_001','Usable','UNDEFINED','d9622ae4-fc9f-4995-bfa9-27f64bcd6027','','',NULL), -('14442','Door Control','Door','UNDEFINED','5abee626-9c55-44c1-8523-a9e61209171c','','',NULL), -('14443','Tussock Boots Basalt','Char_Clothing_Feet','UNDEFINED','fa7b246c-c0b0-43c2-8cba-5592b9ad677d','','',NULL), -('14444','ClipVest Work Harness White','Char_Clothing_Torso_1','UNDEFINED','6afd91f0-8053-4bd7-9093-84dc16bdf9c4','','',NULL), -('14445','Argon','Cargo','Cargo','d89519e4-23f9-4e0d-9b4d-9a19688e2037','','',NULL), -('14446','Ati Jacket Purple','Char_Clothing_Torso_1','UNDEFINED','6d7c10f4-2b48-4aa8-8a0e-eb9685b12fb2','','',NULL), -('14447','DockingTube_Fuel_Ports_RSI_Zeus','DockingCollar','UNDEFINED','c258dbf0-7591-4330-a008-57e8370a5016','','',NULL), -('14448','Door','Door','UNDEFINED','54ce768b-9f87-411a-86d8-28342624c29e','','',NULL), -('14449','Coda \"Big Boss\" Pistol','Weapon','Small','32f77bdf-86e9-4eff-97cd-53f1c7c67da2','','',NULL), -('14450','Cliffback T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','a5989f0f-1607-4402-84eb-5babd0a20c4e','','',NULL), -('14451','Ardent Boots Dark Red','Char_Clothing_Feet','UNDEFINED','db82ac99-1e30-4567-abb4-36a57c2a9417','','',NULL), -('14452','Door Control','ControlPanel','DoorPart','941dbf24-218e-4a4b-9957-6a6d7728196c','','',NULL), -('14453','Bed','Seat','UNDEFINED','ca85a18f-f97a-4661-89f1-ae41186bdaac','','',NULL), -('14454','Ana Legs Wao','Armor','Legs','1031be2c-2a20-497c-9076-0f7bee416822','','',NULL), -('14455','Vulture Pyrite Livery','Paints','UNDEFINED','82d9d4a8-d9b1-4502-88bc-17efeb1182c2','','',NULL), -('14456','Bottle','Bottle','Default','8e05a8bc-9fe0-4bdb-8c21-e979a5f6f9d0','','',NULL), -('14457','Seat','Usable','UNDEFINED','ec3f5ab8-5921-4995-ad29-2d5c689bf603','','',NULL), -('14458','Carryable_1H_CY_tool_manual_socket_2_c','Misc','UNDEFINED','9ac063ab-260b-48e5-9cf8-9d2399affea8','','',NULL), -('14459','Seat','Usable','UNDEFINED','5e348a4d-7638-49cd-8d3c-26bab957b127','','',NULL), -('14460','Seat','SeatAccess','UNDEFINED','542b1ec1-96cc-4d68-b57d-4127c1d70fca','','',NULL), -('14461','ANVL_F7CR_Mk2_RightAntenna','Misc','UNDEFINED','36f5d982-066d-4b41-ae56-835863ba9b33','','',NULL), -('14462','DRAK_Caterpillar_CargoGrid_Module','CargoGrid','UNDEFINED','fff7646f-9007-4cb8-9b18-a2302afd6bee','','',NULL), -('14463','Constellation Stormbringer Livery','Paints','UNDEFINED','1caa8644-b4f1-43f0-a0f4-698008826361','','',NULL), -('14464','Invictus T-Shirt Beige','Char_Clothing_Torso_0','UNDEFINED','d8be4209-eb85-4d5d-8717-ee027051c8f4','','',NULL), -('14465','SalvageDisintegrationArea','SalvageFieldEmitter','UNDEFINED','2556fa22-5cab-4a54-b289-b5c4d6259c45','','',NULL), -('14466','RSI Constellation Top Missile Rack','MissileLauncher','MissileRack','3d6d90ab-b2d4-4bf5-b98a-c9890a8ca434','','',NULL), -('14467','GME 338-10 Medical Gown Primrose','Char_Clothing_Torso_1','UNDEFINED','07cdfeb5-cab1-49c1-9e86-754781bc437d','','',NULL), -('14468','Corbel Arms Smolder','Armor','Arms','f7bc48ae-f075-43d3-a4b9-ce6ab3dc7fac','','',NULL), -('14469','MISC_Razor_Thruster_Vertical_Bottom','ManneuverThruster','FixedThruster','4d71a1bf-4d43-4fec-b659-d6da5ec4c558','','',NULL), -('14470','spot_feet_noGeo_01Port','ShopDisplay','Default','b3d8792a-8d9e-4080-8973-44acd3f5d438','','',NULL), -('14471','ARMR_CNOU_HoverQuad','Armor','Medium','8a2eb89f-0d24-4474-abef-210e80a5ec76','','',NULL), -('14472','400i Deck the Hull Livery','Paints','UNDEFINED','077087a0-4316-4219-8345-495a306f407a','','',NULL), -('14473','Radar_Display_ORIG_600','Display','UNDEFINED','63919c81-5f06-4b89-a899-0513e27caa82','','',NULL), -('14474','Jaclium (Ore)','Misc','Harvestable','118652a7-cc27-44ea-b362-96fcfeef8774','','',NULL), -('14475','Prim Shoes (Modified)','Char_Clothing_Feet','UNDEFINED','938fdde8-45e6-479a-acc7-8c8c4694a2bf','','',NULL), -('14476','MISC_Hull_C_Thruster_Mav_Fixed_Quad','ManneuverThruster','JointThruster','1473b056-dc20-4c24-887a-01022510f9f8','','',NULL), -('14477','AEGS_Reclaimer_CargoGrid_Salvage_Rear_TEMP','CargoGrid','UNDEFINED','c30c7656-84d3-41c1-964c-539187f123ea','','',NULL), -('14478','Seat','SeatAccess','UNDEFINED','787650fe-7924-4416-839b-854d7e8a1617','','',NULL), -('14479','Edgeriders Shoes Cherry Crush','Char_Clothing_Feet','UNDEFINED','19679355-64de-4b20-bd16-8675df3fdcfc','','',NULL), -('14480','Ration pack','Misc','UNDEFINED','6d72fa33-c291-41d6-b7a5-3c69a4847f94','','',NULL), -('14481','Ration pack','Misc','UNDEFINED','56325247-c496-4d21-8b5e-f6190cdbb223','','',NULL), -('14482','Ration pack','Misc','UNDEFINED','5c247abb-acfd-4ebc-badf-b9c0446c36ea','','',NULL), -('14483','Treadmill_FrontEnter','Usable','UNDEFINED','f623fc3c-6da8-4826-8ac4-69ce6480ac19','','',NULL), -('14484','BANU_Defender_Thruster_Mav_Lateral','ManneuverThruster','JointThruster','eaaff022-721c-478b-a652-9e431ce78b7e','','',NULL), -('14485','Ration pack','Misc','UNDEFINED','7d68e0da-659c-4992-b415-95d0e8fdea99','','',NULL), -('14486','Riccite (Ore)','Cargo','Cargo','fad4e00a-1943-4038-bd76-10b49404d3e1','','',NULL), -('14487','Flight Blade','FlightController','UNDEFINED','e3224b38-9be9-4d01-b630-848c8f46418a','','',NULL), -('14488','orig_bedding_duvet_4_p','Seat','UNDEFINED','ac3a7f1f-3fed-4dc9-88a1-1647c0f865cf','','',NULL), -('14489','Seat','Usable','UNDEFINED','3a8c2195-3d7a-4fee-b54e-52c5627e40a0','','',NULL), -('14490','Overlord Arms Flashback','Armor','Arms','324bb490-b21c-415a-88cf-7106adf55a9d','','',NULL), -('14491','Door Control','Door','UNDEFINED','defd2ae0-7cde-491e-a3c1-b4d9507caea2','','',NULL), -('14492','Door_Ship_Sensor_Proximity_AEGS_Hammerhead_Turret_Offset_2','Sensor','DoorPart','4af0e032-da9a-46a6-8bf4-2c1f4d13da4f','','',NULL), -('14493','DRAK_Herald_Sata_Release_Button','Misc','UNDEFINED','3bcc54c3-9f72-42f1-a769-ffeeceaf8954','','',NULL), -('14494','Artimex Core','Armor','Torso','c488aefd-c738-4cae-a558-fe12cfa0bcb1','','',NULL), -('14495','RSI_Zeus_CL_Thruster_Main_Bottom_Right','MainThruster','UNDEFINED','58918703-296d-4c8d-b0c2-11a90d5c678a','','',NULL), -('14496','PAB-1 Core','Armor','Torso','d134f428-2f9e-47c4-8e69-2edbcd68cce4','','',NULL), -('14497','Agricium (Ore)','Cargo','Cargo','a5e8e1e0-e818-47cb-9ddc-c0952f6a0b4a','','',NULL), -('14498','Vagabond Jacket Red Menace','Char_Clothing_Torso_1','UNDEFINED','dbff29cc-0c0d-4c71-8938-faa550bb9fa3','','',NULL), -('14499','DRAK_Cutter_Winglets','Misc','UNDEFINED','d8e9f1ad-772e-4d7e-bd31-7bef4595d21d','','',NULL), -('14500','Ball','Char_Head_Piercings','UNDEFINED','f1c43e71-15ae-45d7-9dd3-80efda5f7265','','',NULL), -('14501','BEHR_BallisticGatling_FiringMechanism_S4','WeaponAttachment','FiringMechanism','4f98ccec-5f24-4ef8-b76a-dbf7eba9b687','','',NULL), -('14502','Oza','Cargo','Cargo','315ebd59-d763-4946-9dfd-22c85eb9d484','','',NULL), -('14503','MRAI_Pulse_Thruster_Main','MainThruster','FixedThruster','4c67ab7e-f21d-4e4b-8269-e6d5673d0be5','','',NULL), -('14504','SalvageFieldSupporter','SalvageFieldSupporter','UNDEFINED','224884e8-0a84-44fb-8144-222d8cf50b4c','','',NULL), -('14505','Pembroke Helmet RSI Sunburst Edition','Armor','Helmet','125e6c46-0d4e-4b1c-a521-faad7dc01f74','','',NULL), -('14506','ANVL_Terrapin_Locker_Left','Player','UNDEFINED','44d6d469-cd2a-4001-96ce-2238eb814c09','','',NULL), -('14507','Quantainium','Cargo','Cargo','f01bcb58-15df-4211-a49e-2634caf5f559','','',NULL), -('14508','Seat','Usable','UNDEFINED','12dd57fa-bb7c-4592-aa9d-5ab643275d85','','',NULL), -('14509','Fortune Windfall Livery','Paints','UNDEFINED','4a0332d5-3e09-4784-a630-d4e158e63aaa','','',NULL), -('14510','Weapon_Rack_1_Volt_Shotgun_AmmoOnly_001','Usable','UNDEFINED','ee8f2d49-4f26-42be-8fe2-b0c6829d002e','','',NULL), -('14511','C54 \"Luckbringer\" SMG','Weapon','Medium','4fff9153-6a0e-4fac-9598-5b29786ed910','','',NULL), -('14512','Tuvois Jacket Black','Char_Clothing_Torso_1','UNDEFINED','97ddc9d3-efcd-40ee-94bd-c676085c099c','','',NULL), -('14513','Venture Arms','Armor','Arms','28cea84c-30bb-4381-8d0f-d009d6cb51f8','','',NULL), -('14514','test_mug_carryable','Misc','UNDEFINED','14fc8c3d-4fdd-4e13-b2ed-c4758b075eb6','','',NULL), -('14515','MISC_Starfarer_SCItem_Seat_Sup_Left','Seat','UNDEFINED','a016e86d-3741-467d-9311-a04e6cc16046','','',NULL), -('14516','Citadel-SE Legs Dark Green','Armor','Legs','187b3606-649f-41e3-bab6-4903d7758a85','','',NULL), -('14517','Flight Blade','FlightController','UNDEFINED','354b5288-0dd5-4e6a-937d-92b004922b4a','','',NULL), -('14518','Door Control','ControlPanel','DoorPart','d600d1cf-f68b-4d63-9541-c3ee0d366176','','',NULL), -('14519','Flight Blade','FlightController','UNDEFINED','f182240c-31d5-4d7a-ab13-4f97f6758121','','',NULL), -('14520','Manned Turret','TurretBase','MannedTurret','63b53762-0561-4abc-9462-eeb0340a5c30','','',NULL), -('14521','G-2 Helmet Aqua','Armor','Helmet','930b0e7e-3989-48ee-a0e5-12d346932137','','',NULL), -('14522','Body','Char_Clothing_Hands','Medical','4dad9426-322f-46ab-bb7c-056a4f7bd1b5','','',NULL), -('14523','Adiva Jacket Dark Green','Char_Clothing_Torso_1','UNDEFINED','8910021e-a2f6-46c9-971f-436e14cc380b','','',NULL), -('14524','AEGS_Hammerhead_Thruster_Mav_Fixed','ManneuverThruster','FlexThruster','77c569fd-6b5b-4426-86fb-6d363f4c696d','','',NULL), -('14525','Waylite Shoes Chestnut','Char_Clothing_Feet','UNDEFINED','fd2d927c-1a9c-4181-b661-428382189203','','',NULL), -('14526','Libio Jacket Black','Char_Clothing_Torso_1','UNDEFINED','e7230532-d589-4c97-82d6-2b551262cf2d','','',NULL), -('14527','Irradiated Valakkar Egg','Misc','Harvestable','cb21d6fd-4599-4a65-bdba-da31d1470be6','','',NULL), -('14528','Iron','Cargo','Cargo','332096b9-1cbf-436d-b8b0-5ed422c23da9','','',NULL), -('14529','Strata Backpack Crusader Edition','Armor','Backpack','9c20742f-d7f6-4327-9179-f2f72a5cbf64','','',NULL), -('14530','Quantainium','Cargo','Cargo','0f4c2ea8-46a0-4d01-9f8c-3002455fb316','','',NULL), -('14531','KRON_LaserCannon_PowerArray_S1','WeaponAttachment','PowerArray','46481c5e-1b4c-46cc-9fc0-995092216993','','',NULL), -('14532','Gadget_Cabinet_kegr_fire_extinguisher_01_NoRN_low','Usable','UNDEFINED','058555c9-6995-4071-8083-214f5c8f29a4','','',NULL), -('14533','Seat','Usable','UNDEFINED','63c3fd14-6b8a-4a5e-98ee-b7a8cda9bd25','','',NULL), -('14534','Davin Work Gloves Violet','Char_Clothing_Hands','UNDEFINED','ca371bf3-e9cd-4469-bf69-bc9b297c859a','','',NULL), -('14535','Raw Silicon','Cargo','Cargo','b00fd37b-d7c7-47b7-b106-24c2f2a05217','','',NULL), -('14536','E\'tam','Cargo','Cargo','057f0a45-8221-4efa-89cd-a31a05cd0aee','','',NULL), -('14537','Savrilium (Ore)','Cargo','Cargo','e96ab334-82bc-4438-bf03-a21dd738719d','','',NULL), -('14538','Nyman Jacket Black','Char_Clothing_Torso_1','UNDEFINED','c0fe4313-db92-49c4-96d9-ffd10937ce4c','','',NULL), -('14539','Devereaux Pants','Char_Clothing_Legs','UNDEFINED','f0a14e29-c9a5-4b47-b682-1e2dc204b2bf','','',NULL), -('14540','Lycara','Cargo','Cargo','ddd399c0-8c26-444c-b26c-3f0b87a0e87f','','',NULL), -('14541','Paint_C8X_Pisces_Expedition','Paints','UNDEFINED','ddd27ee6-4477-49d0-89de-47fc6037e895','','',NULL), -('14542','MISC_Prospector_Thruster_Retro_Right','ManneuverThruster','FixedThruster','f141f6ee-41f0-4252-8301-fc9f8178187c','','',NULL), -('14543','Stileron','Cargo','Cargo','98418bcd-eb87-435a-91f8-0df8fedf8e05','','',NULL), -('14544','Torreto Pants Blue','Char_Clothing_Legs','UNDEFINED','3ede508c-8658-43f0-b6c7-d30411d5262e','','',NULL), -('14545','Station','SeatAccess','UNDEFINED','4ebd85b0-f18d-43a5-ba0c-2ee2f94cab65','','',NULL), -('14546','AAT-34 Turret','Turret','MannedTurret','ba736372-b933-4dbd-8e27-d383b257efde','','',NULL), -('14547','ADP Legs Tan','Armor','Legs','79cc1609-86aa-428b-8763-64defc51302f','','',NULL), -('14548','CRUS_Spirit_Door_Decal_JumpDrive','Decal','DoorPart','31aa3082-a6d0-4a90-a13c-d983c06b4aae','','',NULL), -('14549','DRAK_Dragonfly_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','b4a5add7-fe34-45cc-bcf1-68113a3563b1','','',NULL), -('14550','ORIG_135c_Thruster_Mav_Fixed_Top','ManneuverThruster','FixedThruster','9b38c918-cb1c-49d2-97b6-81654c3d4d9d','','',NULL), -('14551','Remote Turret','Turret','GunTurret','f3fe653e-6d2c-4c00-8dc5-85200d8e7895','','',NULL), -('14552','CNOU_HoverQuad_CML_Flare','WeaponDefensive','CountermeasureLauncher','518b01bc-319a-4c0d-a68d-bbaf43bbd8ec','','',NULL), -('14553','Manned Turret','TurretBase','MannedTurret','a6d6d6a3-18a6-4e07-94c5-f81990f4a935','','',NULL), -('14554','Diamond Laminate','Cargo','Cargo','d0b22330-8b4b-4cf5-b241-b55b1687d03f','','',NULL), -('14555','Access','SeatAccess','UNDEFINED','c288c3f5-e2b4-4696-8bd9-8965c81672a2','','',NULL), -('14556','RSI_Zeus_Thruster_Main_Bottom_Right','MainThruster','UNDEFINED','8fa3fab6-c7c2-4960-a3e4-2e54410cd86e','','',NULL), -('14557','Deri Gloves','Char_Clothing_Hands','UNDEFINED','e10688f1-e657-4583-a08d-4679f88a17c5','','',NULL), -('14558','CRUS_Spirit_C1_Blanking_Plate','Misc','UNDEFINED','d006cc11-ca1a-4663-a40e-25f757cc2aaa','','',NULL), -('14559','Strata Helmet Piston','Armor','Helmet','86323e60-13a2-40c9-a3bc-3c164ffc1e99','','',NULL), -('14560','Door Control','Door','UNDEFINED','2f18bbc7-682a-47a5-bcd9-1d7d52fea0c8','','',NULL), -('14561','Gadget_Cabinet_kegr_fire_extinguisher_01_Nozzle_med_high','Usable','UNDEFINED','9ac2de63-8466-4ef0-8035-b5798f2d50b7','','',NULL), -('14562','Zelena Pants Ebony and Bisbee Boots','Char_Clothing_Legs','UNDEFINED','ec51baf4-d2c1-4f56-8780-573fdecefec6','','',NULL), -('14563','AEGS_Reclaimer_Seat_TractorBeam_Right','Seat','UNDEFINED','0bf0bb0d-4744-4933-af07-f7cfaba6cdd9','','',NULL), -('14564','Food_plant_mushroom_01_heart_a','Food','Plant','537322aa-0b04-402c-b1f1-f3d4d8f60cc0','','',NULL), -('14565','hooks_torso1_02x01x04_01Port_tall','ShopDisplay','Default','52fa456a-987a-43c9-8c90-9330fd3f32e9','','',NULL), -('14566','Escalate Stabilizer3','WeaponAttachment','Barrel','5da14fc0-f1df-4f42-a510-1b6d1a54d8ad','','',NULL), -('14567','ROC Quicksilver Livery','Paints','UNDEFINED','7074f267-9451-410b-a309-ee2e92b8a4eb','','',NULL), -('14568','AEGS_Idris_Thruster_Retro','ManneuverThruster','JointThruster','8033f95f-9a6a-4832-9ad2-0c9fb2351007','','',NULL), -('14569','Copper','Cargo','Cargo','7bf3875f-38a1-42c2-934a-3820329c9659','','',NULL), -('14570','Parway Gloves','Char_Clothing_Hands','UNDEFINED','31e87ff5-9256-41c7-91ff-d0471b93b2fa','','',NULL), -('14571','Cliffback T-Shirt Green','Char_Clothing_Torso_0','UNDEFINED','b2b1c158-9c3b-4d29-82c0-61a0a27f5bd9','','',NULL), -('14572','Ardent Boots Seagreen','Char_Clothing_Feet','UNDEFINED','7d181def-1a79-4689-ad6e-e26ba97608ef','','',NULL), -('14573','ARGO_MPUV_Thruster_Aux_Top','ManneuverThruster','JointThruster','56186c73-8d0e-4e9b-b123-ba4c3a1e0767','','',NULL), -('14574','Waste','Cargo','Cargo','30e8b84c-3390-4075-8f23-3ab743f6225c','','',NULL), -('14575','Internal Tank','FuelTank','Fuel','f9f255b7-c3fa-42d1-a26f-9137435f5ef3','','',NULL), -('14576','ARMR_GRIN_ROC_DS','Armor','Medium','fc1a54f3-6dce-4ddb-912d-cb513377c28c','','',NULL), -('14577','100 Series Deck the Hull Livery','Paints','UNDEFINED','de1dd8f9-511e-4547-83f3-806a1336fa0d','','',NULL), -('14578','Bed','Usable','UNDEFINED','ba68cd67-dcbf-41cf-adea-72d0352e6c44','','',NULL), -('14579','bottle_water_1_tray_c_1Port','ShopDisplay','Default','5bd4ddd7-8be6-4440-ac5c-c48c302448e0','','',NULL), -('14580','Plastic Cup','Drink','UNDEFINED','c66209cc-9fca-455e-88fa-062c273d3714','','',NULL), -('14581','Sion \"Tweaker\" Compensator1','WeaponAttachment','Barrel','ff8fbeaa-66d6-4ed0-8d9a-3a9394e6df79','','',NULL), -('14582','IAE 2951 Hat Blue','Char_Clothing_Hat','UNDEFINED','1e8c8486-7a7e-433a-9c44-81e10f611370','','',NULL), -('14583','Internal Tank','QuantumFuelTank','QuantumFuel','4e1bbf84-48c7-4222-a517-7539a9eeeafb','','',NULL), -('14584','m_human_mannequin_clothing_TandS_Civ02','ShopDisplay','UNDEFINED','c0561b93-c9fd-46a8-b2cd-b0ea77544162','','',NULL), -('14585','CRUZ Lux','Drink','Bottle','72b91153-5a3e-4d71-af5c-f6c57ea2891a','','',NULL), -('14586','Door Control','ControlPanel','DoorPart','8bb40a31-e756-4f4c-a768-0fcefebc5ac3','','',NULL), -('14587','Ventra Gloves Orange','Char_Clothing_Hands','UNDEFINED','bd1c4014-649f-49c9-846e-a4500e914d34','','',NULL), -('14588','Door Control','ControlPanel','DoorPart','7f1466e1-ea72-45b7-90c7-14f0d9afabfd','','',NULL), -('14589','H_Dashboard_Projector_HUD_CRUS_Starfighter','Display','UNDEFINED','4c8ddfe7-3bc8-42da-99d4-4f15bb120c79','','',NULL), -('14590','Weapon_Rack_1_GMNI_Rifle_Legendary_001','Usable','UNDEFINED','37573717-5993-4c77-a8ae-777f0bcfebfb','','',NULL), -('14591','Morningstar Helmet Icefall','Armor','Helmet','73754ce9-d505-4510-9a7e-e7be4c1943bc','','',NULL), -('14592','mobiGlas Sapphire Casing','MobiGlas','Personal','867fd121-be33-4f1d-a95e-b51c9889d27f','','',NULL), -('14593','Parvat Jacket Swirling Ash','Char_Clothing_Torso_1','UNDEFINED','44becf27-6e0a-48dd-b339-70764b668d9f','','',NULL), -('14594','Flight Blade','FlightController','UNDEFINED','49f1f795-1482-40b8-bf0f-8d64b3aca1e9','','',NULL), -('14595','MISC_Starfarer_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','d378e202-a0d3-4e09-b486-98504955784a','','',NULL), -('14596','Liberator Ultra','Weapon','Rocket','de76d4a8-c71c-4368-8b57-1474b4a4a3a6','','',NULL), -('14597','Asgard Valhalla Livery','Paints','UNDEFINED','50caf105-9039-473d-9f7a-e23710405a98','','',NULL), -('14598','Calamity XII-IR Torpedo','Missile','Torpedo','6f012007-659b-4746-917f-e6effa713804','','',NULL), -('14599','Wallpanel_1H_Fuses','Misc','UNDEFINED','7ea1697a-609a-4d95-b3be-f17813ded111','','',NULL), -('14600','Horizon Helmet','Armor','Helmet','4ccfcbd2-c0a8-408e-82f0-8e58a35817d9','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('14601','Bed','Usable','UNDEFINED','3630df8d-561d-4a9b-9eb1-f1928afe639e','','',NULL), -('14602','Torite (Ore)','Cargo','Cargo','d432e266-62f7-448b-91d0-4f3a523efd2d','','',NULL), -('14603','Cerrado Boots Bronze','Char_Clothing_Feet','UNDEFINED','2a208940-f250-4b5f-b352-1ed9463a9ab5','','',NULL), -('14604','Quantainium','Cargo','Cargo','62cb51fb-b94c-49c9-84a4-4c3673b29d1c','','',NULL), -('14605','Overlord Helmet Riptide','Armor','Helmet','7b6e72c6-3207-4775-9e6e-a020f8aeb495','','',NULL), -('14606','SHIELDS','ShieldController','UNDEFINED','0f80e238-ed80-47ab-8af5-6f253d409658','','',NULL), -('14607','DRAK_Cutter_Thruster_Addon_Rambler_Left','Misc','UNDEFINED','ef64224f-1af3-4d5e-89d6-e3f3247cd077','','',NULL), -('14608','Seat','Usable','UNDEFINED','6dfe3a92-9b94-49fe-83ad-903064911a2f','','',NULL), -('14609','TRGT. STATUS','Seat','UNDEFINED','22712725-9ffb-4fbe-84dd-282bdf23cbb4','','',NULL), -('14610','Organics','Cargo','Cargo','d4b2cf40-0d58-4664-bdcb-30f74dd8805a','','',NULL), -('14611','Beradom','Cargo','Cargo','b0c44547-ebb1-4f0f-8bb1-72c02697b07a','','',NULL), -('14612','KRIG_P72_Archimedes_Dashboard_Pilot','SeatDashboard','UNDEFINED','4c8c452c-ed3e-474c-9324-fa7777f2a484','','',NULL), -('14613','Radar_Display_CRUS_Starlifter','Display','UNDEFINED','d6f81e46-f873-46bc-8d69-1b34cc85370f','','',NULL), -('14614','display_wall_end_centermass_3port_IP_dir_left','ShopDisplay','Default','ad75c920-8255-48cb-b196-db85f5f86862','','',NULL), -('14615','INTK_ANVL_Hornet_F7CM_Mk2','FuelIntake','Fuel','9800a996-d783-493f-aa2f-dde9d227881e','','',NULL), -('14616','Seat','SeatAccess','UNDEFINED','a1b54539-d1e3-45de-b68a-9224a653593d','','',NULL), -('14617','Myuda Knife','Weapon','Knife','a7317ea4-108f-4d54-85b5-5ef9cc3659d8','','',NULL), -('14618','Sharud Wrap and Arm Bands Redwood','Char_Clothing_Torso_1','UNDEFINED','95fe20d7-6baa-429d-a1fd-538444be1f0a','','',NULL), -('14619','LOOT_game_chess_1_a','Misc','UNDEFINED','ea7b1e8d-6703-43f3-913c-0bb504884487','','',NULL), -('14620','XNAA_SanTokYai_CML_Chaff','WeaponDefensive','CountermeasureLauncher','232989e2-5767-479e-b0de-42e57e4dcc71','','',NULL), -('14621','AEGS_Retaliator_Module','Module','UNDEFINED','39816995-4f2b-425b-bba8-cc8a04c2cf3e','','',NULL), -('14622','Deadbolt IV Cannon','Weapon','Gun','45a6750e-f453-4444-8a4d-67023187ac3f','','',NULL), -('14623','TS-35 Basara (3.5x Telescopic)','WeaponAttachment','IronSight','a157dbe5-2ae5-4206-a975-55af6ecd39a6','','',NULL), -('14624','RSI Polaris Torpedo Rack','MissileLauncher','MissileRack','5d54b47d-6d47-4e09-b2b5-575c856ba7a1','','',NULL), -('14625','facial_hair_026','Char_Head_Beard','UNDEFINED','4e1f14bc-3db8-483b-ab97-c948d8e984b8','','',NULL), -('14626','Door Control','Door','UNDEFINED','cb9e56eb-1945-4b14-a730-33a7e8da3e71','','',NULL), -('14627','Agricium (Ore)','Cargo','Cargo','41d7dbd7-c2b7-4b36-9787-f6b7a4c92be2','','',NULL), -('14628','CK13-GID Seed Blend','Cargo','Cargo','2ad898f7-75eb-4a9c-b596-62453b3ba56a','','',NULL), -('14629','Dashboard','SeatDashboard','UNDEFINED','38793c27-26c5-4463-91b6-3828fe19f2f1','','',NULL), -('14630','Drivetrain','WheeledController','UNDEFINED','b99e2e5a-1402-48ce-921f-a88c142dd304','','',NULL), -('14631','INTK_ANVL_Hornet_F7CR_Mk2','FuelIntake','Fuel','5e887c5d-4b2b-4b6c-a7c6-e0c695a80668','','',NULL), -('14632','INTK_ANVL_Hornet_F7CS_Mk2','FuelIntake','Fuel','a657dc7b-44b7-4877-b719-37b8cf382456','','',NULL), -('14633','RSI_Polaris_Seat_Access_CoPilot','SeatAccess','UNDEFINED','fb02a652-1249-4cb9-b407-24111246d065','','',NULL), -('14634','MacFlex Legs Dark Green','Armor','Legs','02c66dca-b18d-4c2f-b6f2-125283a255c9','','',NULL), -('14635','Brocius Waist Apron Stonewall','Char_Clothing_Torso_1','UNDEFINED','ecce4867-8598-46c6-9de9-5180a8127dcf','','',NULL), -('14636','Razorback Pants','Char_Clothing_Legs','UNDEFINED','983bef68-e1cf-407c-af9e-f3913c870282','','',NULL), -('14637','RSI_Aurora_Mk2_Module_CargoGrid_RightLeft','CargoGrid','UNDEFINED','7504e234-bb37-4800-b24c-6dc02b3fe8ec','','',NULL), -('14638','box_plastic_4_weapon_opened_015x01x0025_a','Misc','UNDEFINED','92a8c47e-e8a8-485d-8a47-f93cb5a1fcbb','','',NULL), -('14639','ANVL_Lightning_F8_Thruster_Mav_Joint_DarkBlue','ManneuverThruster','JointThruster','3b19b75a-70ba-4b6c-a1b4-65d6dd87d96c','','',NULL), -('14640','ORC-mkV Core Tan','Armor','Torso','f9a7f34d-547f-47d9-9b68-cf56d6bcbfc1','','',NULL), -('14641','RSI_Perseus_Thruster_Retro_Front_Bottom_Right','ManneuverThruster','Retro','71cfa6e0-1cbf-416e-b8ea-cdcd4b6e6733','','',NULL), -('14642','Field Recon Suit Arms','Armor','Arms','7057209c-1430-44c1-a5c5-02b433701058','','',NULL), -('14643','Carryable_1H_CY_glass_tumbler_cognac_1_a','Misc','UNDEFINED','5179a404-2cba-497d-b4b8-b036ee78a3ae','','',NULL), -('14644','MISC_Starlancer_Thruster_Main_Aux','MainThruster','FixedThruster','285830e4-e70d-4a22-8612-db41842d1e6a','','',NULL), -('14645','mobyGlass Personal Computers','Cargo','Cargo','993d4afb-110c-40f4-a94d-5ce9fb92397f','','',NULL), -('14646','Testudo Legs Deathblow','Armor','Legs','a3da9c06-e722-428e-bca6-b853979d18a4','','',NULL), -('14647','RSI Apollo Medivac S02 Missile Rack','MissileLauncher','MissileRack','4b02aa83-07c1-4028-dfe8-e86d024ee09f','','',NULL), -('14648','Seat','SeatAccess','UNDEFINED','5e2863dc-e750-451c-abf6-cf4eda398113','','',NULL), -('14649','rack_lt_1_b','Misc','UNDEFINED','4c47549a-8e17-46e8-aae5-c7d78f897337','','',NULL), -('14650','Aegis Sabre Firebird 12xS3 Missile Rack','MissileLauncher','MissileRack','7c1f3841-1c73-445f-bf4e-ba2c628ceac8','','',NULL), -('14651','Lillo Pants Seagreen','Char_Clothing_Legs','UNDEFINED','c8ba470c-0bc4-4cd8-a9bc-01409ea52e64','','',NULL), -('14652','Dashboard','SeatDashboard','UNDEFINED','83c4340e-2c34-4b8c-a7a9-cbf2c52788bf','','',NULL), -('14653','Body','Char_Clothing_Torso_0','Medical','b9ca9252-a868-4442-9674-2d8d5cf27d46','','',NULL), -('14654','Inquisitor Legs Twilight','Armor','Legs','1ba906e1-5150-4bce-8f03-0fe08dd1afab','','',NULL), -('14655','MISC_Freelancer_SCItem_Seat_Bed_Upper_Right','Seat','UNDEFINED','07869e59-8514-4e74-882d-c7fc1446b732','','',NULL), -('14656','Fortifier Helmet Brimstone','Armor','Helmet','3657fc5f-0a96-4a39-bc56-0010ac4882b1','','',NULL), -('14657','Frontier 11 Classic Horizon','Char_Clothing_Legs','UNDEFINED','ac482ff8-7ade-4fd9-9f08-46decffef303','','',NULL), -('14658','Spirit Deck the Hull Livery','Paints','UNDEFINED','59933d5e-bc5e-4ad1-ae7e-ee9c9f23f0a2','','',NULL), -('14659','SHIELDS','ShieldController','UNDEFINED','64d5207d-2f70-4686-94ec-6fcb979a96a6','','',NULL), -('14660','Inert Materials','Cargo','Cargo','2c32b965-07a5-4062-9f0c-5600d72fc696','','',NULL), -('14661','Datapad','Misc','Gadget','7f6bfdb1-692e-4784-92b5-c336c5d0a682','','',NULL), -('14662','Seat','SeatAccess','UNDEFINED','c76831a2-7eb6-479b-9749-e5b38df7a09d','','',NULL), -('14663','Bed','Usable','UNDEFINED','a66886fe-1560-497b-9cd4-b285786580b6','','',NULL), -('14664','Blue Bilva','Cargo','Cargo','1d2e479e-65d9-465c-a5a6-94995343ba38','','',NULL), -('14665','Artimex Arms Chairman\'s Club','Armor','Arms','b81baf63-09bd-445b-9f4f-6ba781ee818f','','',NULL), -('14666','Lynx Arms Tan','Armor','Arms','e8441c9a-20a4-4661-b566-f46190ad4d3e','','',NULL), -('14667','m_human_mannequin_base_armor_Collector_SBJung','ShopDisplay','UNDEFINED','b077b4e1-4d6f-4d4b-ab24-3926155fcc74','','',NULL), -('14668','Carryable_1H_SQ_maintenance_nuts_1_a','Misc','UNDEFINED','299c7ed9-bea6-493a-b10c-ab1f81b43143','','',NULL), -('14669','Glaive Ship Armor','Armor','Medium','4ebbcffb-604f-41c2-9384-e017badf72e6','','',NULL), -('14670','ORIG_100i_RADR_Display','Display','UNDEFINED','8ceff1aa-edbd-42f0-a8c4-3142bd0abab8','','',NULL), -('14671','Seat','Usable','UNDEFINED','4611f73f-6ade-4cab-b940-7151943e111d','','',NULL), -('14672','Esperia Stinger Missile Rack','MissileLauncher','MissileRack','4bbb99be-faa8-460f-91d4-296aeb389f15','','',NULL), -('14673','Pisces TSB Flight Blade','FlightController','UNDEFINED','5811b9fa-abc3-4b4c-b32b-d11d14dae8e8','','',NULL), -('14674','Tumbler Glass','Drink','UNDEFINED','430571e7-7b36-4251-90c5-a124c93ac4cd','','',NULL), -('14675','DRAK_Clipper_Thruster_Main_Aux_Right','MainThruster','UNDEFINED','b7c9ac35-2ae5-4ab3-a260-4fccd320826b','','',NULL), -('14676','Tin','Cargo','Cargo','bbeada81-2aff-4f2a-8650-ae6cdcf9aa13','','',NULL), -('14677','Elevator','Elevator','UNDEFINED','5258bf09-3c5f-40f7-ad34-58317a355db4','','',NULL), -('14678','Venture Core Red','Armor','Torso','ef6034a1-3a34-4dce-8d35-dee93e2d5ba8','','',NULL), -('14679','Arden-SL Core Archangel','Armor','Torso','c21c18bd-be60-4b8f-9772-98bbb5b1b657','','',NULL), -('14680','Tolo Jacket Teal Stripe','Char_Clothing_Torso_1','UNDEFINED','6ecd22f4-8d70-46ea-86a7-cb73b8bc7bb1','','',NULL), -('14681','Hoffdor (Bottle)','Drink','Bottle','d42581a0-1549-43da-9980-401df3da42e1','','',NULL), -('14682','Door','Door','UNDEFINED','4995638b-6308-00f0-9041-37a8f68a6487','','',NULL), -('14683','Seat','Usable','UNDEFINED','db6b1cba-53e4-4b92-b8be-822c1bb3b04e','','',NULL), -('14684','Storm Darkside Livery','Paints','UNDEFINED','3ffde285-d545-4e28-9fe9-b624e128be4f','','',NULL), -('14685','Karna Rifle Battery (35 cap)','WeaponAttachment','Magazine','91cfb7dc-660b-4505-b86a-6028c9a3f54d','','',NULL), -('14686','ESPR_Talon_Thruster_Retro_L','ManneuverThruster','FixedThruster','5e5fbe91-4327-4e88-bf0d-0cfcd2fd7ae4','','',NULL), -('14687','Keldur Hat and Hickory Goggles','Char_Clothing_Hat','UNDEFINED','4de337c6-e252-4d46-a9ad-39f1562439db','','',NULL), -('14688','Clash Arms','Armor','Arms','3e1fd871-e0c0-4edd-8821-6c29be20cc0b','','',NULL), -('14689','Aurora Mk I ES Ship Armor','Armor','Medium','de5e41a9-7dcb-4aae-afed-3be538e7e04e','','',NULL), -('14690','Col_A_Door_Cell_Lock_b','Door','UNDEFINED','ea5d6f94-3880-48dd-8933-b9ba62b826a4','','',NULL), -('14691','Internal Tank','FuelTank','Fuel','f4294a2e-dc5b-4afb-afc3-2f94e9183fd6','','',NULL), -('14692','RSI_Zeus_ES_Thruster_Main_Top_Right','MainThruster','UNDEFINED','3f6f4e5a-a7b6-4378-925f-81668df4787c','','',NULL), -('14693','Anvil Arrow Turret','Turret','BallTurret','62022f65-a2a2-46c8-af79-e40760f0f254','','',NULL), -('14694','Weapon_Rack_1_KSAR_Rifle_Energy_01_AmmoOnly_001','Usable','UNDEFINED','68082d5f-ddb1-4a35-bb3f-920a984ef391','','',NULL), -('14695','RSI_Constellation_Phoenix_SCItem_Seat_CoPilot_Right','Seat','UNDEFINED','85874e43-db2b-4110-8cbc-449d40c5be2d','','',NULL), -('14696','Radar_Display_Carrack','Display','UNDEFINED','3c417520-b18f-4221-a8c8-0e24ddb4e8d3','','',NULL), -('14697','Weapon_Rack_RSI_Zeus_9_Slot_B','Usable','UNDEFINED','60cc83e7-6b34-4047-ad72-d9f6bfa8eb6a','','',NULL), -('14698','Booth_Table_8_CircularBar','Usable','UNDEFINED','96da30ee-54fc-43d6-a09b-a25069df2885','','',NULL), -('14699','Gadget_Cabinet_kegr_fire_extinguisher_01_high','Usable','UNDEFINED','177dc676-4b00-4163-9306-7e78b5fde4f1','','',NULL), -('14700','Mercury','Cargo','Cargo','e59e5bf0-003f-4174-a57e-ee0c3d029c57','','',NULL), -('14701','Door Control','ControlPanel','DoorPart','7e78dbe7-27ed-4ce8-88a7-acfcc1312c8d','','',NULL), -('14702','Mixed Mining','Cargo','Cargo','8709c536-ae65-4ecb-a8ff-6a8adb7caa86','','',NULL), -('14703','Wanderer Boots Base','Char_Clothing_Feet','UNDEFINED','568737c3-6dfc-4500-bac7-b7e7588a905d','','',NULL), -('14704','Comb','Misc','UNDEFINED','9841bc8c-85cc-4b2b-96e0-2b8caace14bb','','',NULL), -('14705','MISC_Freelancer_Base_SCItem_Dashboard_Esc_Pod_Lower_Left','SeatDashboard','UNDEFINED','03dac031-f0c1-4878-b364-d6dbb36ea429','','',NULL), -('14706','INTK_XIAN_Nox','FuelIntake','Fuel','21540683-7124-463b-9976-5a61803bb0e3','','',NULL), -('14707','m_human_mannequin_clothing_base','ShopDisplay','UNDEFINED','8fa0ae63-afd3-4379-b508-834ee05f855b','','',NULL), -('14708','Seat','Usable','UNDEFINED','9ef02f79-c533-4e75-b1c6-2fb794e74a7e','','',NULL), -('14709','RSI_Apollo_OC_Left_Tier_2','Room','UNDEFINED','4cb7a44e-a6f6-754f-9af0-a3326b9abb92','','',NULL), -('14710','Seat','Usable','UNDEFINED','9e0056c8-6f7a-43c1-a21d-de4d7ca9ca50','','',NULL), -('14711','sc_nvy_gunner_helmet_01_01_01','Armor','Helmet','1b6d983c-7f3c-4ede-8cf1-75ffaa4744d2','','',NULL), -('14712','Weapon_Rack_2_Slots_MRAI_Guardian','Usable','UNDEFINED','e36a1770-428c-4854-98e3-b2a0a626214c','','',NULL), -('14713','Manned Turret','TurretBase','MannedTurret','d9daa864-cb25-47f7-a8e1-af32d5acc6b2','','',NULL), -('14714','Ht_D_Airlock_Door_Int','Door','AirlockPart','f681c425-72d7-4a3f-8bb0-493c3805504c','','',NULL), -('14715','display_ship_components_02x0075x0275_a_s1_qdrive','ShopDisplay','UNDEFINED','856a4bb7-0ad6-4613-b00d-4f122a37f58c','','',NULL), -('14716','Ambit Coverall','Char_Clothing_Torso_1','UNDEFINED','cc931f5b-f087-45a4-8cb1-931a79e881cd','','',NULL), -('14717','QDRV_AEGS_S04_Javelin_SCItem','QuantumDrive','UNDEFINED','d8c217a9-531a-4b02-90bc-3cb48f169149','','',NULL), -('14718','Door Control','ControlPanel','DoorPart','15b764f4-7eda-45f6-aff6-00f08494cd42','','',NULL), -('14719','ANVL_Hornet_F7CR_Mk2_Thruster_Retro_Left','ManneuverThruster','Retro','165c5297-3642-43d5-b1c0-84eb6b3340b8','','',NULL), -('14720','ADO-5 Laser Mine','Grenade','Small','94831bea-4116-4010-a699-e55d9a426aa8','','',NULL), -('14721','Gladiator Ship Armor','Armor','Medium','bd7f1a94-4d30-49dc-9239-b398f9d840eb','','',NULL), -('14722','INTK_ORIG_400i','FuelIntake','Fuel','538fe3f4-7826-4d6b-9c95-3687edf3e06c','','',NULL), -('14723','Ati Jacket Orange','Char_Clothing_Torso_1','UNDEFINED','226656e9-0732-4b9b-8f00-423e0ba2c9be','','',NULL), -('14724','Raw Ouratite','Cargo','Cargo','c22ff291-0b40-48dc-9a25-9667b3177148','','',NULL), -('14725','Door','Door','UNDEFINED','c4c4ab1a-88c4-4825-b1c4-65dc635f295c','','',NULL), -('14726','Taberna Jacket Tactical','Char_Clothing_Torso_1','UNDEFINED','a2c1969c-c12f-4e62-8c8f-4ca3ec9c79dc','','',NULL), -('14727','Door Control','ControlPanel','DoorPart','b3b5070b-8f6d-42c6-9475-104c03f0b292','','',NULL), -('14728','Seat','Usable','UNDEFINED','c37e50e5-d2c3-4750-bf41-00b71786db04','','',NULL), -('14729','RSI_Zeus_Ground_Refueling_Port','Door','UNDEFINED','eaa2472e-8fa5-489e-92a1-e17f3721c832','','',NULL), -('14730','ADP Arms Crusader Edition','Armor','Arms','80ee3b95-5665-4548-9e2d-d2067895c0ac','','',NULL), -('14731','Gold (Ore)','Cargo','Cargo','3a940e57-1a7b-4240-aaf9-ea7be833f3a5','','',NULL), -('14732','Seat','Usable','UNDEFINED','93ece5d1-4941-433f-a803-92616241604f','','',NULL), -('14733','Aurora Mk II Shimmerscale Livery','Paints','UNDEFINED','f33ee44b-7309-4587-a4ce-31fa89156370','','',NULL), -('14734','Soap','Misc','UNDEFINED','8035316b-8048-4644-9a52-1445c6199c5f','','',NULL), -('14735','Odyssey II Helmet Seagreen','Armor','Helmet','d40342c9-3a45-4efb-87a7-52931287b1c2','','',NULL), -('14736','Inquisitor Arms Icefall','Armor','Arms','b8a27e7e-6bbb-4dd9-9e5d-36958012fc0b','','',NULL), -('14737','Inquisitor Arms Rager','Armor','Arms','bdd9ac06-1c2b-43d6-8601-aff88d2d752e','','',NULL), -('14738','PPB-116 \"Pepperbox\"','Turret','PDCTurret','128ad66c-09a2-43e3-9080-18a018490e96','','',NULL), -('14739','AEGS_Idris_CargoGrid_CargoRoom_Front','CargoGrid','UNDEFINED','dbe4efea-08ca-4ae7-acaa-cd8264e67d5b','','',NULL), -('14740','sc_nvy_deckcrew_uniform_01_01_04','Char_Clothing_Torso_2','UNDEFINED','7a2a6e4c-4d16-4ab6-a88a-0f6a1246f07c','','',NULL), -('14741','weapon_underbarrel_light_wide','WeaponAttachment','Light','02ab1342-8e78-46fc-b31f-3adfc3897578','','',NULL), -('14742','Aril Arms Red Alert','Armor','Arms','1bdafd51-7e72-4122-a05b-a0d0de47f345','','',NULL), -('14743','MISC_Freelancer_Base_SCItem_Seat_Esc_Pod_Upper_Left','Seat','UNDEFINED','1ada6241-785a-4142-b109-e00c829dc1b4','','',NULL), -('14744','Glow','Cargo','Cargo','da63eebd-5d22-4aa4-861a-c6fcaa321eb0','','',NULL), -('14745','Caret Pants Navy Blue','Char_Clothing_Legs','UNDEFINED','9e7dc8ce-7b74-42f3-b0ed-b279a3013a54','','',NULL), -('14746','RSI_Zeus_CL_Thruster_Main_Top_Right','MainThruster','UNDEFINED','6e5488a2-5820-46fa-bfdc-ae1daa08ffa6','','',NULL), -('14747','ARMR_DRAK_Corsair','Armor','Medium','424bb421-6ab6-404e-8049-22fd7dd94993','','',NULL), -('14748','Salvaged Skull 4 SCU Container','InventoryContainer','Cargo','0d4d304f-caf1-40d5-9c2d-74ad8af14cd0','','',NULL), -('14749','CryoPod','Misc','UNDEFINED','a6ee7365-ea4c-420e-b91a-51958a8dc013','','',NULL), -('14750','Harlowe Shirt White','Char_Clothing_Torso_0','UNDEFINED','37a17a4f-6b04-4713-bd72-7b045960d298','','',NULL), -('14751','crate_016x008x008_open_c','Misc','UNDEFINED','78e93b23-e2da-4185-87ab-8fa939a45bc7','','',NULL), -('14752','Stims','Cargo','Cargo','2698bf75-0974-44cb-b4da-ebdbe95233a8','','',NULL), -('14753','Freeze','Cargo','Cargo','a0dd0808-9695-4d2c-85ac-fd41b531bac0','','',NULL), -('14754','Quantum Fuel Tank','QuantumFuelTank','QuantumFuel','d6953919-e3c1-4b28-b1ce-9d9b77947ce4','','',NULL), -('14755','Test_OutpostMission_DataPad_KeyCode_4x3_Screen','Display','UNDEFINED','1f24ed1b-51c9-4f6b-9c02-15662e398f3c','','',NULL), -('14756','DustUp Helmet Desert','Armor','Helmet','4fd61c96-a486-4c6d-99dd-96a0722b0f37','','',NULL), -('14757','Beacon Undersuit','Armor','Undersuit','dfbdc811-8ab1-45ea-83e3-2a71cd6df407','','',NULL), -('14758','Remote Turret','Turret','MissileTurret','14555c7c-c84b-4cb7-80d9-a228cea01d01','','',NULL), -('14759','m_human_mannequin_rsi_suit_03','ShopDisplay','UNDEFINED','98e038ec-25ea-4deb-8f93-c1f84d6675a1','','',NULL), -('14760','MacFlex Legs Twilight','Armor','Legs','1034cccc-0a01-41aa-b0b5-76725a48e04a','','',NULL), -('14761','Cascade','QuantumDrive','UNDEFINED','da31a82e-30ac-4924-90ad-dc88bc39e7a5','','',NULL), -('14762','Karna \"Valor\" Rifle','Weapon','Medium','fe86ec24-82bd-44d8-b1cc-8a0a23021a26','','',NULL), -('14763','F55 \"Valor\" LMG','Weapon','Medium','de320097-2e06-40ee-a2cb-7ac0287f9d23','','',NULL), -('14764','Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','d9c47036-dce2-47b3-bbd6-15d9e5da897b','','',NULL), -('14765','APX Fire Extinguisher','Weapon','Gadget','1b6a6b76-f3fc-402c-a24a-204f2eeae6f7','','',NULL), -('14766','RSI_Bengal_SCItem_Seat_Security','Seat','UNDEFINED','c1b803bb-555f-4031-ac47-74be285d71b3','','',NULL), -('14767','CargoBox_050x050x050_Plastic_StartTop','Cargo','Cargo','d9de9311-27f3-476b-8bb0-f14b6d805b21','','',NULL), -('14768','Internal Tank','QuantumFuelTank','QuantumFuel','bdd3c4fc-1599-4a25-aaa0-0ee08c98d78a','','',NULL), -('14769','Toughlife Boots Violet','Char_Clothing_Feet','UNDEFINED','759b9c5e-1f30-436e-b91a-d86a8feaf1db','','',NULL), -('14770','Door Control','Door','UNDEFINED','8c46cd8a-9598-41ef-bef6-33e2feafa4c6','','',NULL), -('14771','Coda \"Nighthawk\" Pistol','Weapon','Small','62995c11-4743-40fd-976a-fd3acaf330db','','',NULL), -('14772','Torite','Cargo','Cargo','92cd33a2-4e91-4aaf-a8b3-d341471dce69','','',NULL), -('14773','m_human_mannequin_explorer_undersuit','ShopDisplay','UNDEFINED','c668a373-6509-44a6-94c9-d6b4a0c38160','','',NULL), -('14774','Aves Talon Core','Armor','Torso','dc21809a-2889-4aae-a53d-c54205b8791a','','',NULL), -('14775','Reliant Missile Launcher Cap','MissileLauncher','MissileRack','bcfed3ab-5f55-4690-8638-07e3b883d5e4','','',NULL), -('14776','Sabine Undersuit Daybreaker','Armor','Undersuit','119012bb-c04a-4a86-a89b-58d4a1a6bfd0','','',NULL), -('14777','INTK_ESPR_Talon','FuelIntake','Fuel','6e774708-90d8-4b33-9e11-ec12baa8d25a','','',NULL), -('14778','ARMOR','Shield','UNDEFINED','324e5ee4-12b4-4f41-bccc-b3b001398a74','','',NULL), -('14779','Turret','Turret','BallTurret','09453868-8ba8-44ca-afeb-ca526424a8e1','','',NULL), -('14780','Locker_Suit_ANVL_Terrapin','Usable','UNDEFINED','1bfa6830-f5e4-4b89-8217-dfa2f1c651f1','','',NULL), -('14781','Clempt Pants Red','Char_Clothing_Legs','UNDEFINED','4eb20a49-c6d2-4845-8b53-49d023145afe','','',NULL), -('14782','MISC_Starlancer_TAC_Thruster_Retro','ManneuverThruster','FixedThruster','95b0b1f6-97ad-44b1-b26b-b2d65b5446c4','','',NULL), -('14783','Hammerhead 2949 Best In Show Livery','Paints','UNDEFINED','1392b5a5-23f3-4613-8686-97d8f56af4fa','','',NULL), -('14784','Harlowe Shirt Imperial','Char_Clothing_Torso_0','UNDEFINED','896c85e1-7754-43bb-ac69-219eb2b4489a','','',NULL), -('14785','BEHR_LaserCannon_PowerArray_S4','WeaponAttachment','PowerArray','e0cbd450-99de-4f5b-ae84-5215035dde1e','','',NULL), -('14786','Inquisitor Arms Dark Red','Armor','Arms','41259023-b551-433b-bd83-8143c928a6eb','','',NULL), -('14787','Centurion','PowerPlant','Power','5db93be6-1fa1-450f-b539-fedf8690cab2','','',NULL), -('14788','Rabat Hat Blue','Char_Clothing_Hat','UNDEFINED','cbe5fb56-a16e-4353-8fad-d607ebc740af','','',NULL), -('14789','can_drink_1_pips_100_1_a','Cargo','UNDEFINED','a9536a07-5b77-4bb6-bf2d-fb3aff182c3e','','',NULL), -('14790','NN-15 Cannon','Weapon','Gun','231fd67b-49a6-40e9-8eef-20268cfc0b2c','','',NULL), -('14791','PAB-1 Core Green','Armor','Torso','6f3a2cdc-4230-4fc4-b4a1-f26317cf63d4','','',NULL), -('14792','Weapon Rack','Usable','UNDEFINED','f39883dd-b6c8-4219-9053-650f3dc81c51','','',NULL), -('14793','Millrun Waders Silvertusk','Char_Clothing_Legs','UNDEFINED','91418164-8ee1-4af1-9d4b-c0e5dea2a689','','',NULL), -('14794','TrueDef-Pro Core Black/Gold/Silver','Armor','Torso','edf582be-07dc-4b2e-b1fa-5cae7f025854','','',NULL), -('14795','ANVL_Lightning_F8_Thruster_Retro_LightBlue','ManneuverThruster','FixedThruster','acb0df68-9a03-4077-a368-dcc469867298','','',NULL), -('14796','AEGS_Javelin_Docking_Bay_Airlock_Invulnerable','Misc','UNDEFINED','7bc3d180-af29-4753-b734-c5682fa9dd0f','','',NULL), -('14797','CRUS_Star_Runner_Component_Quantum','Player','UNDEFINED','8d9cdfc4-5e05-4eab-a063-4f60a1017052','','',NULL), -('14798','San\'tok.yai Xua\'cha Livery','Paints','UNDEFINED','6138951f-5e23-43ba-ab57-30b42d6f38ac','','',NULL), -('14799','AEGS_Vanguard_SCItem_Engineer_Console','Seat','UNDEFINED','87e22160-f0b8-4be2-85b6-992263aa6e4b','','',NULL), -('14800','Agricultural Supplies','Cargo','Cargo','9c0a567e-0c44-48c1-80a6-87fd28ece6c6','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('14801','Arden-CL Backpack Archangel','Armor','Backpack','8bd4e563-afab-4c59-87f6-7f17ed723b27','','',NULL), -('14802','display_expo_hall_weapon_rack_1_curved_a_27Ports','ShopDisplay','UNDEFINED','7ebb9ec7-cd89-4204-8964-9444dc138bf5','','',NULL), -('14803','Weapon Rack','Usable','UNDEFINED','0903ac1a-33b3-45f8-82b0-00b7072f8ad6','','',NULL), -('14804','AEGS_Redeemer_Thruster_Retro','ManneuverThruster','FixedThruster','6b0ebf4b-53fe-460d-8805-620b2804c586','','',NULL), -('14805','MRAI_Guardian_Mohawk','Misc','UNDEFINED','4afada5b-8efa-4e43-905c-c8f036a5484a','','',NULL), -('14806','LeMarque Pants Twilight','Char_Clothing_Legs','UNDEFINED','df93b950-031f-4b7d-9710-ae0276b376d3','','',NULL), -('14807','display_16x9_1_0064x0036_a','Display','UNDEFINED','939b1ce3-0cb9-462b-8898-d3cabbd2f2b2','','',NULL), -('14808','VariPuck S3 Gimbal Mount','Turret','GunTurret','18654a6e-44a0-439b-b90a-2f1c1b01ae00','','',NULL), -('14809','MISC_Starlancer_Seat_Access_Turret_Right','SeatAccess','UNDEFINED','ade7baa6-cfa9-45c7-a8c4-694d11aaf807','','',NULL), -('14810','Internal Tank','FuelTank','Fuel','8411fd36-af4d-491c-9f7e-7902de3bbaca','','',NULL), -('14811','Balor HCH Helmet Green','Armor','Helmet','78177158-4b2e-4d90-b1ff-b2173529697d','','',NULL), -('14812','Picoball','Misc','UNDEFINED','2c6e2098-af0e-41a7-b166-34422ff6c60b','','',NULL), -('14813','Gale Head Cover Green','Char_Clothing_Hat','UNDEFINED','c34e38fa-7339-4353-9ca9-ed6d21b75d84','','',NULL), -('14814','PAB-1 Core Orange','Armor','Torso','60ad3ebc-07cb-4b1a-b8a0-fdbc7fcc4e47','','',NULL), -('14815','Chada Collar and Panniers Olive','Char_Clothing_Torso_1','UNDEFINED','6464cb5f-7e3d-4d1c-a1cb-aba8fd957f8f','','',NULL), -('14816','Carryable_1H_SQ_drug_concealed_1_b','Misc','Utility','21ab9a46-0ff8-426b-8959-238abdbf54f7','','',NULL), -('14817','Carrack T-Shirt','Char_Clothing_Torso_0','UNDEFINED','3d08d773-96c0-4d27-aae8-06f0b598d22c','','',NULL), -('14818','Door Control','ControlPanel','DoorPart','392de0bd-e3aa-4fd9-8432-d3b4475747fe','','',NULL), -('14819','orig_bedding_duvet_4_a','Seat','UNDEFINED','fc38515d-b2b8-48c5-8e2c-531b7968bb7c','','',NULL), -('14820','RSI_Apollo_Thruster_Retro','ManneuverThruster','FixedThruster','450925d8-680c-0d96-c5e2-ff1903bbec96','','',NULL), -('14821','Adroit Gloves Indigo','Char_Clothing_Hands','UNDEFINED','e7bd263e-83c5-4440-a231-d070a47eb6d7','','',NULL), -('14822','Cirrus','PowerPlant','Power','aff1d3cf-2e01-48a1-8ce3-47fbdbeceb16','','',NULL), -('14823','GP-33 MOD Grenade Launcher Magazine (6 cap)','WeaponAttachment','Magazine','aff2521e-2e7a-40d5-98a1-9a6a379a2f01','','',NULL), -('14824','DRAK_Cutter_Winglets_Addon_Scout_Left','Misc','UNDEFINED','d40c8401-648d-4957-8ea7-f37515e3bba2','','',NULL), -('14825','Remote Turret','Turret','GunTurret','6d43d6f8-33b1-4a7b-b32d-02299e1ae714','','',NULL), -('14826','AEGS_Vanguard_Thruster_Mav_Joint','ManneuverThruster','JointThruster','61c284b4-ed81-4bb7-abee-786ff41057be','','',NULL), -('14827','Steel','Cargo','Cargo','2136e414-ab8e-4e1b-8dc5-fc5e0bb3bc69','','',NULL), -('14828','VNCL_Glaive_Thruster_Main_Fixed','MainThruster','FixedThruster','a2fb60b8-1ce4-429c-a3ce-ae1f17c0a470','','',NULL), -('14829','Nox Wanderer Livery','Paints','UNDEFINED','fb9a5aca-0989-4933-a740-a20362b2ff8d','','',NULL), -('14830','Utensil_Plate_Chips','Misc','UNDEFINED','d843fb52-fb1d-4f0a-abef-e87e21143c36','','',NULL), -('14831','Revenant Pod','Cargo','Cargo','e897a917-c0e7-4447-94f9-87ee2816f993','','',NULL), -('14832','Artisan Apron Ellroy\'s','Char_Clothing_Torso_1','UNDEFINED','f7ca4b6c-4cd0-4ba4-977d-b46ba6d752ae','','',NULL), -('14833','ARGO_MPUV_1T_Thruster_Aux_Front_Top','ManneuverThruster','FixedThruster','7fd9f6f8-6090-4418-bc6c-e316ee4891ed','','',NULL), -('14834','LeMarque Pants Yellow','Char_Clothing_Legs','UNDEFINED','97f26dc9-49a4-4b73-85b1-b8aaff88ffea','','',NULL), -('14835','Turret','Turret','MissileTurret','8fafec28-467a-4672-a455-5b68997e9d86','','',NULL), -('14836','Tungsten','Cargo','Cargo','eea18ec1-da42-42c5-9341-2501eb166e2a','','',NULL), -('14837','display_components_pedestal_01Port_s01','ShopDisplay','UNDEFINED','c04fc939-2739-4b5e-9d31-215f2ec5f022','','',NULL), -('14838','Venture Legs Green','Armor','Legs','7c72f1fb-e277-4d7c-9430-145937268ab2','','',NULL), -('14839','DRAK_Cutlass_Blue_Thruster_Maneuver','ManneuverThruster','JointThruster','6f9f978d-258a-4213-bbd4-c0fad570ee36','','',NULL), -('14840','H_Dashboard_Projector_HUD_AEGS_Gladius_PU','Display','UNDEFINED','780b960b-3a5e-48f0-a3b3-aa7e1ee09727','','',NULL), -('14841','Door Control','ControlPanel','DoorPart','13e192b5-ff48-4fed-b584-ba68fb292eb5','','',NULL), -('14842','Glow','Cargo','Cargo','2abe218c-2bf4-4123-90e7-e03c8c03860f','','',NULL), -('14843','DRAK_Vulture_Thruster_Main','MainThruster','FixedThruster','0558ebab-3cec-403d-bcf4-b0a91c1346d2','','',NULL), -('14844','BEHR_BallisticGatling_Ventilation_S7','WeaponAttachment','Ventilation','9c845c8e-b1c7-40a7-ba3b-d1a5f916fdd6','','',NULL), -('14845','Ball','Char_Head_Piercings','UNDEFINED','c3155380-2169-4454-96da-5cbe78a30c7e','','',NULL), -('14846','Snaggle Stick (New Austin Bold)','Food','Bar','c3b7ea0f-3ee0-4a07-a168-67377e09b62b','','',NULL), -('14847','Cargo_Comm_125x3_Consumer_Goods_RMC','Cargo','Cargo','b4cd4ef9-231e-40ec-91f1-4a5f4d5b2a97','','',NULL), -('14848','Diluthermex','Cargo','Cargo','1611aa0d-91a7-48db-ad2e-91d8888f6052','','',NULL), -('14849','FSK-8 Combat Knife','Weapon','Knife','9c86b8cf-28de-49fc-aded-5b1a5bff2d42','','',NULL), -('14850','Door Control','Door','UNDEFINED','6e6bedb3-01d6-41cd-a77a-514434ddbbad','','',NULL), -('14851','Door Control','Door','UNDEFINED','4adc986e-098e-4328-bfd7-816fa76e8138','','',NULL), -('14852','Luminalia Cookie Jar','Misc','UNDEFINED','4ef0c7da-3e70-4611-a571-b87cdf91cc9f','','',NULL), -('14853','Railing_Straight_1m_LowTech_Util_Stairs_01x01_c','Usable','UNDEFINED','b2add79f-1e8d-4046-9103-883528da8119','','',NULL), -('14854','MISC_Starfarer_Base_SCItem_Dashboard_Captain','SeatDashboard','UNDEFINED','f9004d7d-fb9c-4632-a7f7-45afa0ec9587','','',NULL), -('14855','Defiance Arms Sunchaser','Armor','Arms','6c21c416-a769-4d01-b235-2889d29126e3','','',NULL), -('14856','Aegis Retaliator Torpedo Rack','MissileLauncher','MissileRack','a1148caf-247d-4415-a402-0d4bee0bbc1e','','',NULL), -('14857','DRAK_Cutlass_Steel_Thruster_Maneuver_Vertical_Negative','ManneuverThruster','JointThruster','5331f132-2f79-493a-9843-695552d45d61','','',NULL), -('14858','DRAK_Cutlass_Thruster_Maneuver_Rear_Bot','ManneuverThruster','JointThruster','2aee5bc2-9a21-41a4-82e1-13bb49f3d7bc','','',NULL), -('14859','Taussig Surgical Pants','Char_Clothing_Legs','UNDEFINED','bd400419-0774-4be2-8a0e-5c8d1035bf35','','',NULL), -('14860','hooks_torso1_02x01x04_02Ports','ShopDisplay','Default','73fc780a-fd56-4c45-8e60-c7311392023f','','',NULL), -('14861','Torreto Pants Dark Purple','Char_Clothing_Legs','UNDEFINED','d96be049-c272-448c-bc81-72e19b84deb6','','',NULL), -('14862','Mustang Gamma Livery','Paints','UNDEFINED','598d7093-9bfe-44aa-b461-3d84e5ad3ba3','','',NULL), -('14863','PSX Pistol Case','Misc','UNDEFINED','d123104f-fc07-4a54-9111-8c7e6fe65cb2','','',NULL), -('14864','100i 2954 Auspicious Red Dragon Livery','Paints','UNDEFINED','eac45929-9c11-496b-9f50-3401de9fba16','','',NULL), -('14865','Landlite Boots Imperial','Char_Clothing_Feet','UNDEFINED','ddc159b3-85b0-4a05-bc8f-6c7658666316','','',NULL), -('14866','Ketchum Beanie Green','Char_Clothing_Hat','UNDEFINED','53e54022-e45c-48bd-9161-55881219a4c7','','',NULL), -('14867','Container','Container','Box','2cd87e93-a8bf-436a-8caf-9471ca74d690','','',NULL), -('14868','Escalate Stabilizer2','WeaponAttachment','Barrel','9691ce72-fcb8-4e1c-a99f-09bde8bf3ca0','','',NULL), -('14869','Morningstar Helmet Tan','Armor','Helmet','321bbb6e-7742-43e5-8b8d-7d467fe5cd6f','','',NULL), -('14870','Hello Sunshine Happy Planter','Misc','UNDEFINED','017de65e-d996-44c1-92b7-738c3d05169b','','',NULL), -('14871','MISC_Reliant_CargoGrid_Kore','CargoGrid','UNDEFINED','c789d9b8-5958-46b4-b8c4-2db9522033f9','','',NULL), -('14872','Monde Core Crimson Camo','Armor','Torso','ae2616c4-766f-4cf0-ac88-fc392c7a85cc','','',NULL), -('14873','RSI_Com_Brig_3StateTray_Left','Misc','UNDEFINED','7f896209-e61b-43c3-80d6-a505d0a621dd','','',NULL), -('14874','TrueDef-Pro Core Yellow/Grey','Armor','Torso','87e8b78b-91e0-40d3-9f42-b406df1e7fbb','','',NULL), -('14875','Internal Tank','FuelTank','Fuel','5d80732c-64ab-4c02-97c2-7ea0d5235346','','',NULL), -('14876','BroadSpec-Max','Radar','MidRangeRadar','441e0d9d-f432-4e7a-825f-6c4c5e10d9da','','',NULL), -('14877','Fresnel \"Rockfall\" Energy LMG','Weapon','Medium','065dbfdb-63dc-4a30-9f50-80e540eb5696','','',NULL), -('14878','Observer','Radar','MidRangeRadar','bf787055-6969-4215-a507-2a3b1dc00eac','','',NULL), -('14879','facial_hair_004','Char_Head_Beard','UNDEFINED','a55229ce-89bb-405c-a225-e507e7de07ef','','',NULL), -('14880','Door Control','Door','UNDEFINED','5da78745-a6d9-4ccf-8984-739f8cfff30c','','',NULL), -('14881','Seat','SeatAccess','UNDEFINED','14ca21a9-b06c-481d-b939-1c8a4b67d47b','','',NULL), -('14882','Purifier Mask AA Support','Char_Clothing_Hat','UNDEFINED','43dbabdd-caa4-40db-9436-cddb97db9f80','','',NULL), -('14883','Quantainium (Raw)','Cargo','Cargo','c7be2489-8ba5-41ce-b676-794aebd01fe2','','',NULL), -('14884','mobiGlas Original Casing','MobiGlas','Personal','c60a72a6-e313-41b6-92c3-c2fa25e70f5f','','',NULL), -('14885','Fridan','Cooler','UNDEFINED','97bf2cfe-efb8-469b-9d43-6e4a88130417','','',NULL), -('14886','Venture Helmet Dark Green','Armor','Helmet','b83ce333-31f9-4b1d-a0de-563c66d7d19b','','',NULL), -('14887','Stims','Cargo','Cargo','545af540-d0a5-45bc-9c11-6e6ac4155560','','',NULL), -('14888','Aril Legs Harvester','Armor','Legs','368801d1-f112-4813-ab17-3855939cfded','','',NULL), -('14889','MASTER_PowerPlant','PowerPlant','Power','aade86ef-5f9d-4325-b21a-f62bb56f3b3f','','',NULL), -('14890','Internal Tank','FuelTank','Fuel','c8f350df-369b-41b4-b9ba-09946cea57a1','','',NULL), -('14891','Riccite','Cargo','Cargo','85d63181-e5b9-4825-be2f-8f63b264cc03','','',NULL), -('14892','CRUS_Starlifter_Door_Decal_AuxCrew','Decal','DoorPart','d340e102-46d1-4740-9fc1-a79ffd37c6eb','','',NULL), -('14893','ESPR_Prowler_Thruster_Retro_02','ManneuverThruster','UNDEFINED','2fb8ee1b-8aa0-48c1-aad2-5c269df94a54','','',NULL), -('14894','Screen','Display','UNDEFINED','5dbdb405-ef98-4c55-9401-a1f4c24657dd','','',NULL), -('14895','Lumin V SMG','Weapon','Medium','75809555-848a-4f4d-81a0-db4457edba2d','','',NULL), -('14896','UrbEx Boots Dark Blue','Char_Clothing_Feet','UNDEFINED','b509215c-58f2-4754-b86e-9da5431f321e','','',NULL), -('14897','TRGT. STATUS','Seat','UNDEFINED','f509363b-7dfb-478b-bba1-26ce11053a92','','',NULL), -('14898','m_human_mannequin_base_armor_STORMTEST1','ShopDisplay','UNDEFINED','4a27b118-e26e-4510-8e42-3c21b24f348e','','',NULL), -('14899','ThermoWeave Hood ASD Edition','Char_Clothing_Hat','UNDEFINED','2a6597be-f456-4751-830b-2284e14c9f77','','',NULL), -('14900','ST-205 Missile Rack','MissileLauncher','MissileRack','15529567-7df0-46f7-ae2a-5f8da5f0c377','','',NULL), -('14901','FBL-8u Undersuit Imperial Red','Armor','Undersuit','2650dcb6-59b9-4275-ba92-7524d4ddbd33','','',NULL), -('14902','Anvil Gladiator - Noise Launcher','WeaponDefensive','CountermeasureLauncher','3acd0ac9-0248-4191-ab99-ad736e2d977c','','',NULL), -('14903','HexaPolyMesh Coating','Cargo','Cargo','6ec2b1fa-b085-471c-8126-e73d50a9b0a0','','',NULL), -('14904','TRGT. STATUS','Seat','UNDEFINED','050b35f9-a41c-48f2-98c7-4ec18313138e','','',NULL), -('14905','Hair Care Product','Misc','UNDEFINED','8aef84be-ef39-403d-8d4e-b189010e7fc0','','',NULL), -('14906','vanduul_drone_teeth_01','Char_Accessory_Head','Vanduul','c6fa94c5-d8a0-44f3-ac59-2c419698df30','','',NULL), -('14907','WiDoW','Cargo','Cargo','c6cbc500-da0e-46d3-822b-e1d1af45da75','','',NULL), -('14908','ANVL_Door_Decal_Valkyrie_Pilot_Door','Decal','DoorPart','1821a619-5561-48e6-8867-8d8e8ed3f821','','',NULL), -('14909','Seat','SeatAccess','UNDEFINED','1d1b8b51-6acc-4c22-9631-9ab9e964a11d','','',NULL), -('14910','Defiance Legs Tactical','Armor','Legs','9010ca86-09f5-43de-9016-5aafc4cbb481','','',NULL), -('14911','Bioplastic','Cargo','Cargo','65a1e21f-d7e2-4284-b45c-0a7c3f2bdb73','','',NULL), -('14912','AEGS_Idris_SCItem_Seat_Bridge_Rear_Left_Back_Blocked','Seat','UNDEFINED','69dd993b-b0c5-4f3b-ac99-6ac5d79e97a5','','',NULL), -('14913','Covalex_Datapad_Server_4x3_Screen','Display','UNDEFINED','a8f686c1-93ab-4872-ab94-e89d226b6972','','',NULL), -('14914','DuraWork Pants Falstaff','Char_Clothing_Legs','UNDEFINED','ba2b5df0-a13d-453f-97c7-ad1a95c34c3f','','',NULL), -('14915','Weapon_Rack_Cz_Firerat_007','Usable','UNDEFINED','58cff30c-f452-4e54-b149-cd06987d36ba','','',NULL), -('14916','Citadel Core (Modified)','Armor','Torso','72333c0c-277e-4483-b6b7-a2bdcf7e8e6f','','',NULL), -('14917','RCMBNT-PWL-3','InventoryContainer','Cargo','5eac0c3e-ff6c-46f3-8067-898ad9fd5929','','',NULL), -('14918','test_aimodule_unmannedturret_vanduul','AIModule','UNDEFINED','d22a76e7-909c-4a40-8928-c6dfa36f63ed','','',NULL), -('14919','Xanthule Helmet','Armor','Helmet','13a62c08-7324-47ac-be0d-885b6ef8a07d','','',NULL), -('14920','Whamburger','Food','Junk','cffa8202-6e3b-4354-86e7-8d73eefeb582','','',NULL), -('14921','Deo Shirt Imperial','Char_Clothing_Torso_0','UNDEFINED','9468dc21-fabf-49bc-ad74-7cd117005652','','',NULL), -('14922','TRGT. STATUS','Seat','UNDEFINED','d450c9f9-3fb6-4942-9fbc-fb682940f2ad','','',NULL), -('14923','RSI_Apollo_OC_Right_Tier_3','Room','UNDEFINED','4aadae23-4390-e421-e741-0479629d1296','','',NULL), -('14924','Arden-SL Arms Coramor Edition \"Kismet\"','Armor','Arms','6d779fff-3f1b-4744-9456-85ffdafd95bc','','',NULL), -('14925','KRIG_P72_Archimedes_Thruster_Retro_02','ManneuverThruster','FixedThruster','24e9bbcb-08a6-4d7c-971c-a9550460b75c','','',NULL), -('14926','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','5e0544cb-44c1-4686-8a84-c69104f4853b','','',NULL), -('14927','Morozov-SH Arms Iceflow','Armor','Arms','0c1a1d6a-23e0-4eed-95e9-5270c8fd9282','','',NULL), -('14928','SalvageFillerStation_AEGS_Reclaimer','SalvageFillerStation','UNDEFINED','08df09b5-9d89-4be3-91cf-fcceb88783c3','','',NULL), -('14929','Diamond (Raw)','Cargo','Cargo','8f599320-e019-49da-8b48-4ff768fbe16a','','',NULL), -('14930','ATLS Foreman Livery','Paints','UNDEFINED','f7dd0357-5c98-4734-b924-88c27768cfd1','','',NULL), -('14931','Borase','Cargo','Cargo','95c0b5ed-d62b-49e6-ba9c-36d3a8cda435','','',NULL), -('14932','Door','Door','UNDEFINED','78df3f84-08a3-44a3-a96a-151c472054d2','','',NULL), -('14933','AEGS_Avenger_Warlock_Thruster_Retro','ManneuverThruster','JointThruster','68fb7238-5f64-4a2a-a942-437f9b00d068','','',NULL), -('14934','Door Control','ControlPanel','DoorPart','6c0dfb2c-742c-41d6-9704-71e6e3f17046','','',NULL), -('14935','Mercury','Cargo','Cargo','441a7b93-fb8e-4a17-b8ec-f52a21838e4d','','',NULL), -('14936','Karna \"Valor\" Rifle','Weapon','Medium','5862ed63-e812-4a3e-963a-15b71124fed8','','',NULL), -('14937','Scrap','Cargo','Cargo','ef3a5a2f-aefb-42ac-9feb-57cee23e9ac7','','',NULL), -('14938','Breakneck S4 Gatling','Weapon','Gun','353a4aae-1fb1-470c-a38c-2ca32e61bb12','','',NULL), -('14939','Seat_Bench_4_ORIG_890Jump_Mastersuite','Usable','UNDEFINED','e6a29e4f-ea88-4c1b-9543-9525788e2aa4','','',NULL), -('14940','Constellation White Heron Livery','Paints','UNDEFINED','87f0516e-a734-4c6c-aad3-55cb8b902630','','',NULL), -('14941','SoftLock_Terminal_Standard_Starfarer_Fuel_Pods_Ship_L1','Display','UNDEFINED','d44b2d59-1104-455d-b836-fd85c6cfdf3c','','',NULL), -('14942','Ready-Up Helmet Grey','Char_Clothing_Hat','UNDEFINED','a9ab5ae8-d363-4a6c-8895-36855a1e8681','','',NULL), -('14943','PPC Burrito','Food','Junk','f3b88160-c5ac-495c-a2e6-2f20d32f0324','','',NULL), -('14944','Glow','Cargo','Cargo','1d5f68e5-5f7d-4f7c-8223-220fbf83c0c2','','',NULL), -('14945','Door Control','Door','UNDEFINED','5058dd6c-a13b-43a2-bba1-27bbb7b1eb06','','',NULL), -('14946','Seat','Usable','UNDEFINED','872bece6-cb6c-4a41-820d-9f4b80cbc687','','',NULL), -('14947','Clempt Pants','Char_Clothing_Legs','UNDEFINED','1f579567-cf2c-458a-9048-c4fefe61fe57','','',NULL), -('14948','CRUS_Starlifter_Door_Decal_Turret','Decal','DoorPart','112574dd-4243-49a0-a5ae-57b21f1bac80','','',NULL), -('14949','Pyro RYT \"QV\" Multi-Tool','Weapon','Gadget','953243bc-1a08-43d5-a074-e6d072e2e04c','','',NULL), -('14950','Ignite II Missile','Missile','Missile','d358cf84-9c78-4929-a2ad-b9caade81962','','',NULL), -('14951','Bed','Usable','UNDEFINED','0649f838-c6bc-40e4-be38-247ec7de4def','','',NULL), -('14952','Day One Shirt Grey','Char_Clothing_Torso_0','UNDEFINED','a2e23cd7-636d-4568-af9a-95fe072486c9','','',NULL), -('14953','CNOU_Mustang_Dashboard','SeatDashboard','UNDEFINED','fc15b6f0-d85a-4162-8c21-acb79977f6e7','','',NULL), -('14954','Remote Turret','Turret','BottomTurret','29dc5b05-e164-429c-a162-71299198bab9','','',NULL), -('14955','Veil Flash Hider2','WeaponAttachment','Barrel','156f6405-7fdc-40e4-a783-703e807d9f88','','',NULL), -('14956','VariPuck S3 Gimbal Mount','Turret','GunTurret','acd1c5dc-ecc1-417d-9a4d-02c6e93998cd','','',NULL), -('14957','Hull A Horizon Livery','Paints','UNDEFINED','34d445c9-be28-40af-9b62-70bc99dbafcb','','',NULL), -('14958','Internal Tank','QuantumFuelTank','QuantumFuel','779ef01c-de46-490b-b4cf-2dddab0156ee','','',NULL), -('14959','display_ship_components_03x01x01_shields_s1','ShopDisplay','UNDEFINED','02bf3f11-e314-4b5b-b8a5-304f4118d801','','',NULL), -('14960','Door Control','Door','UNDEFINED','f1c6f6ec-49f9-4ae2-ac6a-b7267e59d5c0','','',NULL), -('14961','Microid Battle Suit Core Badland','Armor','Torso','bee05359-c97d-475c-9806-6a739d6fb95a','','',NULL), -('14962','Prota','Misc','UNDEFINED','1065fbcc-b306-4ec4-8acc-9bcc451f839a','','',NULL), -('14963','MISC_Starfarer_Gemini_Thruster_Mav_Joint_Bottom','ManneuverThruster','JointThruster','a84d4fcd-71de-44c7-87b1-c2a86b171ced','','',NULL), -('14964','AEGS_Javelin_Thruster_Mav_Main_01_Aux_Top','ManneuverThruster','FixedThruster','844c66e5-5068-4030-a60d-560b03e590ec','','',NULL), -('14965','display_components_s2_modular_qdrive','ShopDisplay','UNDEFINED','6d5525df-c2f4-461f-a015-e77406f23142','','',NULL), -('14966','Geist Armor Arms ASD Edition','Armor','Arms','67e7b5a3-eea2-4a72-b362-e5b9dc70e722','','',NULL), -('14967','Inquisitor Legs (Modified)','Armor','Legs','5bfd0bd4-8aca-48dd-9b37-72817435cb29','','',NULL), -('14968','Personal Care Product','Misc','UNDEFINED','0eec5c2c-a089-4909-b208-69d5d691c84f','','',NULL), -('14969','ThermalFoam','Cargo','Cargo','44cf366a-406a-48cd-be4f-196109f4adab','','',NULL), -('14970','Dashboard','SeatDashboard','UNDEFINED','f473b7d5-d78e-4bdd-bd86-5dea8e1655c4','','',NULL), -('14971','Carryable_1H_CY_can_test_1_b','Drink','Can','b9625551-30b8-49e9-b7f4-4dc52dbac3e1','','',NULL), -('14972','Snapback Boots','Char_Clothing_Feet','UNDEFINED','a47cf94c-a0dd-4799-85eb-4aabe11b2523','','',NULL), -('14973','Loscha Work Vest Saddle','Char_Clothing_Torso_1','UNDEFINED','0e55f9a0-dfc6-4586-9d81-960056420ffd','','',NULL), -('14974','Vigilance','Radar','MidRangeRadar','d395fb78-542f-4cb2-afa4-8e787ec15635','','',NULL), -('14975','ArcticStorm','Cooler','UNDEFINED','d98450a2-605a-47b6-a8cd-f43df14ddf0e','','',NULL), -('14976','ANVL_F7CR_Mk2_NoseCap','Misc','UNDEFINED','cfaaf5e5-a35b-4ff1-826f-57841c70f834','','',NULL), -('14977','Personal Storage','Cargo','UNDEFINED','512c60ba-6960-49f4-a9a1-98ac5219617e','','',NULL), -('14978','Worthy Journey T-Shirt Black','Char_Clothing_Torso_0','UNDEFINED','c5df0679-9088-4265-a724-68fee184979f','','',NULL), -('14979','Geist Armor Legs ASD Edition','Armor','Legs','9f19f5f7-cae2-4700-ab1f-5ba645f93fe8','','',NULL), -('14980','BEHR_JavelinBallisticCannon_PowerArray_S7','WeaponAttachment','PowerArray','ccb31270-96cc-40df-9e6d-77893acb48cf','','',NULL), -('14981','DRAK_Caterpillar_SCItem_Dashboard_Support','SeatDashboard','UNDEFINED','e6a1ca47-c42c-4d25-a2cc-498e6ca48d1c','','',NULL), -('14982','ARGO_MOLE_Dashboard_Pilot','SeatDashboard','UNDEFINED','54ed812f-e738-4844-8359-2f709599db52','','',NULL), -('14983','EE16 (16x Telescopic)','WeaponAttachment','IronSight','77521326-082c-44f9-a5b2-09dfb87f3f14','','',NULL), -('14984','Ponos Boots Blue','Char_Clothing_Feet','UNDEFINED','494e01b3-f990-4c73-b0fa-b7cb98d7dea1','','',NULL), -('14985','Manned Turret','TurretBase','MannedTurret','4b087b44-64cf-4916-8f3a-94c0a37c72e9','','',NULL), -('14986','AcryliPlex Composite','Cargo','Small','4e72901b-3932-4af8-ab04-7061f92dc1c0','','',NULL), -('14987','Molina Ventilation Filters','Cargo','Cargo','b0ada17a-16e9-438f-8eb7-71ff17647e9b','','',NULL), -('14988','Intrepid-OS','Suit','ThrusterPack','9dfcfc93-f4f0-48c6-9f74-a0d528b14500','','',NULL), -('14989','Guardian Shadow Gild Livery','Paints','UNDEFINED','7c00f248-7599-4b22-b341-2c8721ff7712','','',NULL), -('14990','Citadel Core Roughshod','Armor','Torso','a31defa6-6c83-4605-a743-61b683df64cf','','',NULL), -('14991','vanduul_pilot_legs_01_01_01','Armor','Legs','0f9a5657-da0a-43f1-ba8f-678cf44b957e','','',NULL), -('14992','Zeus MK II Starscape Livery','Paints','UNDEFINED','2d8be48b-0cb7-4402-b7b6-20b46dc187f5','','',NULL), -('14993','Medical Bed','Usable','UNDEFINED','b53e4969-f9d6-4e6e-b8ea-e1d9b3b72f83','','',NULL), -('14994','Seat','SeatAccess','UNDEFINED','c2ba7431-0b3f-44a8-bd0b-bb7828d4eb76','','',NULL), -('14995','Door Control','Door','UNDEFINED','6a362941-36c6-46f8-a3fc-8c69b7c37caa','','',NULL), -('14996','Geist Armor Arms Whiteout','Armor','Arms','310d5039-73e1-4843-aeaf-60194d767e03','','',NULL), -('14997','Scythe Ship Armor','Armor','Medium','90a27196-aa22-4151-bba1-e96865579726','','',NULL), -('14998','AEGS_Retaliator_Turret_Lights','Room','UNDEFINED','91b54bcd-8da4-445f-8854-aa6b2a94ede7','','',NULL), -('14999','GSX-RF','ExternalFuelTank','UNDEFINED','a9994d83-2685-4542-bf08-5b9b2005e85a','','',NULL), -('15000','Theaters of War: Supreme Glasses','Char_Accessory_Eyes','UNDEFINED','6cedf8cd-51e3-4be2-9daf-8a30612329eb','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('15001','Sabre_Firebird_WingCap_Right_Collector','Misc','UNDEFINED','9455eaee-b3a8-41f5-8a7b-c3723bce6c70','','',NULL), -('15002','Standing_Harness_ESPR_Prowler_B','Usable','UNDEFINED','54c75a3a-13a0-4df6-ba3c-a65c12eecff9','','',NULL), -('15003','INTK_AEGS_Sabre_Raven','FuelIntake','Fuel','5ea491dc-0b6d-4ca9-b7f9-03bbb2bade6b','','',NULL), -('15004','Dolivine','Cargo','Small','33377146-d4a7-4e68-8deb-41728b3ceb46','','',NULL), -('15005','f_human_mannequin_slaver_medium','ShopDisplay','UNDEFINED','5189a299-ec0e-40c3-8cd7-68a4d4ea0c6b','','',NULL), -('15006','Gallant \"Nightstalker\" Rifle','Weapon','Medium','8c46f63f-5434-4273-a2f3-7500d03d6948','','',NULL), -('15007','MISC_Freelancer_MAX_Thruster_Retro','ManneuverThruster','FixedThruster','28ae6d3d-a474-487e-94bc-cbda0b3feecb','','',NULL), -('15008','ESPR_Prowler_Thruster_Aux','ManneuverThruster','UNDEFINED','034e5297-a440-4ad0-904e-298eaebfde57','','',NULL), -('15009','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','acfe4d61-1e8b-4de7-b836-c9fd9c6c7e78','','',NULL), -('15010','RAFT Lovestruck Livery','Paints','UNDEFINED','afb8a520-7bd4-42ee-9f5e-a20611825291','','',NULL), -('15011','TRGT. STATUS','Seat','UNDEFINED','450e7f4f-a466-3aba-f1ab-d8f416964589','','',NULL), -('15012','Scaleweave Undersuit','Armor','Undersuit','33f8f933-b6d8-4434-bcca-04314012d5a6','','',NULL), -('15013','Mala','Misc','Harvestable','1bb9c577-1561-4904-aafa-4d106810383e','','',NULL), -('15014','Stims','Cargo','Cargo','f3a264be-05db-4b4e-a6b1-964530895e4c','','',NULL), -('15015','Mercury','Cooler','UNDEFINED','335e94ef-d8e9-4ac3-8966-655881c1ea14','','',NULL), -('15016','INTK_ARGO_RAFT','FuelIntake','Fuel','4b265289-9216-4b39-8c64-760fb20f2f11','','',NULL), -('15017','DRAK_Cutlass_Steel_Thruster_Maneuver_Top','ManneuverThruster','JointThruster','5daf1571-8551-432e-b827-66dae75646c5','','',NULL), -('15018','RSI_Bengal_Thruster_Retro_Top_Left','ManneuverThruster','JointThruster','24424ae0-0eb2-4ef2-99a1-c0c0d063a12e','','',NULL), -('15019','JOKR_DistortionCannon_Barrel_S2','WeaponAttachment','Barrel','318457f6-8e03-4fd8-af22-2eff4a63f501','','',NULL), -('15020','MSD-543 Missile Rack','MissileLauncher','MissileRack','fbebb6d6-0ef9-4661-9ce7-2e3746e83d19','','',NULL), -('15021','Access','SeatAccess','UNDEFINED','9ebb1fc7-d694-47fd-962a-8511e9a255ed','','',NULL), -('15022','Gasping Weevil Eggs','Cargo','Cargo','665e1748-57ee-4603-ba42-ea41aae459f9','','',NULL), -('15023','Tuvic Outerwear Jacket Crimson','Char_Clothing_Torso_1','UNDEFINED','b6e9a9eb-25e8-4256-a1ad-7a07e9eb89db','','',NULL), -('15024','Weapon_Rack_Cz_002','Usable','UNDEFINED','4e601ad8-a97f-4534-ba9b-31b4f03c4d21','','',NULL), -('15025','Paint_Vanguard_Hoplite','Paints','UNDEFINED','c868378c-2c93-4fda-bb11-8374b23ccb8b','','',NULL), -('15026','RSI_Zeus_Cargo_CargoGrid_Main','CargoGrid','UNDEFINED','63134ef8-6b8e-440d-b908-1867c1ff99d2','','',NULL), -('15027','Ventra Gloves Seagreen','Char_Clothing_Hands','UNDEFINED','cc5026ba-dd1b-4538-a8de-0b1ce21ff09a','','',NULL), -('15028','Flight Blade','FlightController','UNDEFINED','73a61bfd-79da-473a-a580-4a201e32fa1c','','',NULL), -('15029','Ready-Up Helmet Orange','Char_Clothing_Hat','UNDEFINED','2223e9c7-3b6b-4865-80c6-3cf52d5c6027','','',NULL), -('15030','Table_2_Seat_High_Lowtech_1_a_1Seat','Usable','UNDEFINED','aaa51e34-b568-434c-a674-f1a180612df9','','',NULL), -('15031','Mala','Cargo','Cargo','b49e4412-cc20-4355-afd4-96f4d077e1af','','',NULL), -('15032','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','6bbad7aa-f9ac-415e-8ff3-9f206166c04a','','',NULL), -('15033','Weapon_Rack_RSI_Zeus_3_Slot','Usable','UNDEFINED','4a13ce18-6f7a-4fea-8799-b53e377aae0a','','',NULL), -('15034','Walesko','FPS_Consumable','Hacking','5a2f8d9f-e1f8-4048-8eb5-8f479ca31fc2','','',NULL), -('15035','Access','SeatAccess','UNDEFINED','48b008b0-59d9-47e8-b94e-341016470744','','',NULL), -('15036','mobiGlas Lemon Casing','MobiGlas','Personal','eef7d68b-f083-467b-b89b-25ede526fb5f','','',NULL), -('15037','AEGS_Sabre_Raven_Thruster_Retro_Left','ManneuverThruster','FixedThruster','dfe6d395-69b9-4c1a-9b48-db2a5b208312','','',NULL), -('15038','Railing_Straight_8m_LT_Delta_a','Usable','UNDEFINED','6406d31e-0aee-4320-8f14-78a05018ec6f','','',NULL), -('15039','Door Control','ControlPanel','DoorPart','138936a5-9413-45b9-a2c2-114dece54d78','','',NULL), -('15040','Vehicle_Screen_MFD_Holographic_MISC_Starfarer','Display','UNDEFINED','bfd98792-1115-4f15-864e-7a428aa0bc14','','',NULL), -('15041','Bottle','Bottle','Default','a66631e0-28f0-4b86-9108-444c3bc8201e','','',NULL), -('15042','Paint_Reclaimer_NineTails','Paints','UNDEFINED','c2449090-f4ce-493e-83de-db8c6ca71ca8','','',NULL), -('15043','Havoc Scattergun','Weapon','Gun','2ef5eb91-95ec-442c-a856-79a39f84d365','','',NULL), -('15044','Constellation Andromeda Ship Armor','Armor','Medium','19f2a8ef-9817-4a52-888c-efbf77e155d9','','',NULL), -('15045','Door Control','ControlPanel','DoorPart','5d424c68-2742-41b4-b3a4-4e6cefe6b3a7','','',NULL), -('15046','counter_display_mod_end_b_0038x01x01_01Port_HackingTools','ShopDisplay','UNDEFINED','411a3ce5-c7a2-4cd4-840c-d7a5890d01e9','','',NULL), -('15047','Flight Blade','FlightController','UNDEFINED','14e4deb5-3ef7-485f-b8bb-00abb4eba9a0','','',NULL), -('15048','INTK_CRUS_Star_Runner','FuelIntake','Fuel','530549bf-d7c6-486b-8cfe-f0a3157bb7ca','','',NULL), -('15049','VariPuck S2 Gimbal Mount','Turret','GunTurret','c5cb44d6-deba-450a-81c6-828edb59b10d','','',NULL), -('15050','Flight Blade','FlightController','UNDEFINED','70260d5d-b70d-42c1-bd79-b8ac969d790a','','',NULL), -('15051','Suckerpunch Cannon','Weapon','Gun','d195eb47-24b8-45c0-a4d0-1771d60dc1a8','','',NULL), -('15052','Remote Turret','Turret','GunTurret','a3208e7f-9871-4aa7-a496-f088b743e76d','','',NULL), -('15053','Pioneer I Missile','Missile','Missile','1fcc8a40-af4a-4446-8a7a-354d9244b5d1','','',NULL), -('15054','Carafi Packet','Food','Sachet','2a5c0893-9cef-487c-ad6c-06608307d669','','',NULL), -('15055','Atlasium','Cargo','Cargo','17a049e0-a826-4501-83c7-5585af5d0080','','',NULL), -('15056','Rockridge Boots Daylight','Char_Clothing_Feet','UNDEFINED','07c26ced-8c59-4d45-9583-177572bc5a13','','',NULL), -('15057','AEGS_Retaliator_Thruster_Mav_Fixed_Rear_Top','ManneuverThruster','FixedThruster','b2d939c3-965d-4181-8451-5fa9d83b06bf','','',NULL), -('15058','RADR_RSI_S04_Polaris','Radar','MidRangeRadar','a39d0aa5-f1af-49fb-aad0-0c1cde0f133f','','',NULL), -('15059','MISSILES','MissileController','UNDEFINED','97dc0b1a-e282-47d1-98c9-1f01e4332162','','',NULL), -('15060','ORIG_100i_Winglet_Left','Misc','UNDEFINED','d5de464f-243c-4403-bc3c-47b16c7aaade','','',NULL), -('15061','H_Dashboard_Projector_HUD_AEGS_Hammerhead','Display','UNDEFINED','b490a6e1-4c9e-4904-aac4-10e4838c86ec','','',NULL), -('15062','Door Control','ControlPanel','DoorPart','e94e3e37-1e8c-4c49-beef-1f8c101754ff','','',NULL), -('15063','Seat','Usable','UNDEFINED','b81ff5eb-2999-4a7e-8730-7a770d74c709','','',NULL), -('15064','Custodian \"Scorched\" SMG','Weapon','Medium','dd24b515-3d1c-4adf-9b34-781c089169cc','','',NULL), -('15065','SHIELDS','ShieldController','UNDEFINED','2c591044-ab1c-4e10-8cd8-e0a42117f123','','',NULL), -('15066','Carryable_1H_CY_bar_chocolate_1_a','Misc','UNDEFINED','e5e398df-271a-493e-bd99-bb27468270a3','','',NULL), -('15067','nvy_flightsuit_01_01_01','Armor','Undersuit','6f61ec92-3459-40f5-900a-ea758d92c3f8','','',NULL), -('15068','Door Control','Door','UNDEFINED','a169a826-609d-4671-b9ff-d52519086f21','','',NULL), -('15069','Ursa Skullcrusher Livery','Paints','UNDEFINED','87e6dac9-8efa-4f1f-8078-3dcf2754e0b8','','',NULL), -('15070','Mount_Gimbal_Mining_MPUV','UtilityTurret','GunTurret','6a9f2832-d96e-4929-bdd3-d83ba1d90003','','',NULL), -('15071','Corundum','Cargo','Small','0cbe992e-013a-48ba-b219-0c10c0478ff9','','',NULL), -('15072','fruit_plant_1_b_1001','Misc','UNDEFINED','121ac2f6-a40d-4405-91d6-69db9200c03f','','',NULL), -('15073','Cargo_Comm_125x3_Scrap_a','Cargo','Cargo','3d9b2ab7-3e41-4a2d-8427-c17f764ec9cc','','',NULL), -('15074','fruit_plant_1_b_3001','Misc','UNDEFINED','8edd15c9-c255-4a27-8bc0-83cf4e74de29','','',NULL), -('15075','fruit_plant_1_b_2001','Misc','UNDEFINED','03503bf9-d507-40a1-9e4d-3a711b470da3','','',NULL), -('15076','Ma\'s Ready to Eat Beef Home Stew','Food','Tin','431c2732-1e3e-45c0-9d1b-9e59f7a8948e','','',NULL), -('15077','fruit_plant_1_b_5001','Misc','UNDEFINED','f6e9c66a-28c8-4bbb-8a63-eb8f6aaaab77','','',NULL), -('15078','fruit_plant_1_b_4001','Misc','UNDEFINED','ec7eaf03-db06-41ea-96a9-a0c493b75bf1','','',NULL), -('15079','Stud','Char_Head_Piercings','UNDEFINED','89106679-bb54-44af-8228-bf1a3b0bc24f','','',NULL), -('15080','fruit_plant_1_b_6001','Misc','UNDEFINED','4efe6fc6-bdf3-4272-9b7b-8adcabcfeee2','','',NULL), -('15081','Door Control','Door','UNDEFINED','d379ab1f-07ad-4af6-a544-e725a653bd11','','',NULL), -('15082','Aurora Mk I UEE Distinguished Service Livery','Paints','UNDEFINED','5b57d31b-a123-4094-a2ef-935d7285b99d','','',NULL), -('15083','RSI_Polaris_Torpedo_Tube_Inner_Geo_R','AttachedPart','UNDEFINED','5cfae8cc-192a-4084-8706-01176ba5c671','','',NULL), -('15084','PAB-1 Core Purple','Armor','Torso','c5dbb105-ac5c-42b1-b8d4-22b6099ac5cf','','',NULL), -('15085','AEGS_Door_Decal_WC_F','Decal','DoorPart','0e3fb96f-408b-4c0f-9e80-0d5bf91740af','','',NULL), -('15086','Aztalan Legs','Armor','Legs','fd0cdccb-eb52-4c8e-a872-ebdaea337d5a','','',NULL), -('15087','Seat','Usable','UNDEFINED','5fdb65c8-3d67-404a-9e88-e6708695a649','','',NULL), -('15088','Saldynium (Ore)','Misc','Harvestable','ee704f52-8794-434d-bcd7-47fec365ffbd','','',NULL), -('15089','XNAA_SanTokYai_CML_Flare','WeaponDefensive','CountermeasureLauncher','ab895108-dc71-4056-9eb2-660ddf30d32e','','',NULL), -('15090','TRGT. STATUS','Seat','UNDEFINED','b7110da3-8fcb-4973-850c-d472ee3c6507','','',NULL), -('15091','RSI_Perseus_Thruster_Mav','ManneuverThruster','UNDEFINED','01025f1e-84fc-4c60-834c-6144e78dd77f','','',NULL), -('15092','tool_flashlight_1_handle_a','Misc','UNDEFINED','935f40ea-0f40-46b1-b078-00519a8a4500','','',NULL), -('15093','Lynx Arms Twilight','Armor','Arms','f7edd487-2a8e-4a24-bb0e-cfd013827c7a','','',NULL), -('15094','Wanderer Boots Nomad','Char_Clothing_Feet','UNDEFINED','14e008ab-b58b-4149-9892-d7c909ae331f','','',NULL), -('15095','Door Control','ControlPanel','DoorPart','f59ede99-67e3-4009-a0b4-fce90e6f0152','','',NULL), -('15096','PAB-1 Core Sienna','Armor','Torso','8081e519-0575-4510-81e3-ecf96ccb7f02','','',NULL), -('15097','Frontier 05 Pants Harvest','Char_Clothing_Legs','UNDEFINED','bb1acaec-70a1-487c-905a-e6ac5de1a680','','',NULL), -('15098','Anvil Noise Launcher','WeaponDefensive','CountermeasureLauncher','b98f31ac-b050-4e5e-9719-8b8d2a832dcd','','',NULL), -('15099','Vanduul S3 Quad Missile Rack','MissileLauncher','MissileRack','c5660ffe-d8db-4452-ba69-4b519599c445','','',NULL), -('15100','Antium Core Jet','Armor','Torso','7ffc92db-5f68-40a2-9709-227a7e00a9aa','','',NULL), -('15101','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','aaec78bb-8928-4191-8b3e-ba2d880e6829','','',NULL), -('15102','Devastator \"Desert Shadow\" Shotgun','Weapon','Medium','76a46ad5-0232-417a-94c2-5fdbba94385f','','',NULL), -('15103','Reliant Tana Missile Launcher','MissileLauncher','MissileRack','bbeee736-bb2c-4e23-abd5-ca0a6bc1938a','','',NULL), -('15104','Lanxi Jacket Gray','Char_Clothing_Torso_1','UNDEFINED','152fdaec-10af-4b47-b29e-a5014b3cc2eb','','',NULL), -('15105','Iron','Cargo','Cargo','68ddc1b2-689d-47ea-bf31-82e70c7c6835','C','',NULL), -('15106','Guardian','Shield','UNDEFINED','f8cd46b2-2db9-4252-adf0-c44ad36bdf7c','','',NULL), -('15107','Decryption Key','FPS_Consumable','Hacking','730df6fb-1f22-4786-b71a-d9a7cadce8a7','','',NULL), -('15108','FPS_Device_Test_MiningBase','Gadget','Gadget','ff681f56-4f99-422f-a494-7e414e0be83a','','',NULL), -('15109','Blood_Decal_Splat1','Decal','DoorPart','bcbfb679-1f6f-4a5b-910f-fb11e58d3357','','',NULL), -('15110','Skin_Space_Kitty','Paints','Personal','89c75092-6671-4a12-887f-a007ee4e8b9f','','',NULL), -('15111','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','c25dc2d2-b65b-4924-9100-806ee17c01af','','',NULL), -('15112','Tona Shoes Dark Red','Char_Clothing_Feet','UNDEFINED','7e6e6071-12c0-4846-a245-471029c57ee4','','',NULL), -('15113','ADP-mk4 Arms Red Alert','Armor','Arms','672c4f4f-3155-4549-bd63-b7e9aec01414','','',NULL), -('15114','MISC_Freelancer_SCItem_Seat_Bed_Lower_Left','Seat','UNDEFINED','849b4376-acc1-4730-84e8-c0f04ee0018a','','',NULL), -('15115','Bed','Usable','UNDEFINED','796b7cb9-0926-4d3a-9301-9fff3e114f5a','','',NULL), -('15116','Quartz','Cargo','Small','91b33006-bc9c-45eb-8cb6-b4de57940a5c','','',NULL), -('15117','Methane','Cargo','Cargo','a62d343f-f83e-46f4-9985-476e6b743a2c','','',NULL), -('15118','Cargo_Comm_125x3_Vice_Maze','Cargo','Cargo','747943ef-3977-472d-acff-39b55cc1b922','','',NULL), -('15119','WiDoW','Cargo','Small','5cc168c4-ff0b-4887-b308-122a0d780a3e','','',NULL), -('15120','Pink Heart Lamp','Misc','Flair_Wall_Picture','fc690cef-5292-4bb1-a918-4f6bfe12fef0','','',NULL), -('15121','ORIG_315p_Dashboard_Pilot','SeatDashboard','UNDEFINED','a20405e4-2649-4ab9-a4c1-9d01a6b73595','','',NULL), -('15122','Devastator \"Voyager\" Shotgun','Weapon','Medium','dad885fd-d3e7-442f-b511-a11bfde19a2f','','',NULL), -('15123','AEGS_Idris_CargoGrid_CargoRoom_Back','CargoGrid','UNDEFINED','9621a24b-aea7-4416-87ba-947711d0327f','','',NULL), -('15124','MISC Prospector - Noise Launcher','WeaponDefensive','CountermeasureLauncher','1e59f1e7-13da-4e99-bf75-252389786c82','','',NULL), -('15125','Door Control','Door','UNDEFINED','2c715fa6-b701-47b9-a1c5-3b59d18275e0','','',NULL), -('15126','Silnex','Cargo','Cargo','d9ba45d2-ed21-4372-bb1d-5f9a83023ede','','',NULL), -('15127','AEGS_Retaliator_OC_Rear_Base','Room','UNDEFINED','fe618466-492e-4c68-bd9d-e517a02434ec','','',NULL), -('15128','CRUS_Star_Runner_Component_Power_Plant','Player','UNDEFINED','9c09a66e-58eb-420c-b4e8-0b589c51417a','','',NULL), -('15129','G-2 Helmet Yellow','Armor','Helmet','a0916eed-a3b0-4e6f-9c32-f1b95fb6bbfb','','',NULL), -('15130','Luminalia Cookie Jar','Misc','UNDEFINED','d14abc21-4ce8-49b2-aecc-a5d0efa0d4cb','','',NULL), -('15131','SHIELDS','ShieldController','UNDEFINED','44e208bd-86e8-4e1d-acde-8427d76f112f','','',NULL), -('15132','MISC_Fortune_Thruster_Retro_Rear','ManneuverThruster','FixedThruster','83331f15-0887-414e-9897-8bc8ae00f87a','','',NULL), -('15133','Ranta Dung','Cargo','Cargo','82024242-f2fa-4188-985c-14c95fbe2b35','','',NULL), -('15134','ThermoWeave Pants','Char_Clothing_Legs','UNDEFINED','d5e0392e-7ba1-40a8-83a5-89ab191ed44d','','',NULL), -('15135','Station','SeatAccess','UNDEFINED','4d234604-abc6-4aae-8746-4bebe6e539d0','','',NULL), -('15136','tool_tester_1_a_MOVED','Misc','UNDEFINED','02cba254-9ea2-4a8b-ab36-0b5bfdbc3f95','','',NULL), -('15137','Scorpius Antares TSB Flight Blade','FlightController','UNDEFINED','d8550cab-e57f-4cfa-990b-2fece7649724','','',NULL), -('15138','Shoyu Lapsha','Food','Box','8d89dfbc-f723-4713-bd26-d572d0e8d424','','',NULL), -('15139','Construction Pieces','Cargo','Cargo','f9b6731b-cb83-4402-9c25-2294fde1fae5','','',NULL), -('15140','ESPR_Prowler_Thruster_Mav_01','ManneuverThruster','UNDEFINED','093ac7ec-e3cf-41bf-a8ca-3bbab7725428','','',NULL), -('15141','Carryable_1H_CY_chocolate_bar_1_a','Misc','UNDEFINED','7214ee4a-10c2-4aae-bf28-69f983ec70f3','','',NULL), -('15142','Day One Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','943a4ab4-1388-4dda-ace9-04d20c4c2bc7','','',NULL), -('15143','Odyssey II Helmet Black','Armor','Helmet','5c33e677-8c1a-4f54-bff0-e8d154a7cf65','','',NULL), -('15144','Seat','SeatAccess','UNDEFINED','4fbcc15d-3240-41e4-9a54-7d1cd98efc06','','',NULL), -('15145','Grin_Rear_Module_MDC','AttachedPart','UNDEFINED','eed44897-540e-44b4-b555-2c33c37bd2be','','',NULL), -('15146','A03 \"HighSec\" Sniper Rifle','Weapon','Medium','db7a707e-e6fb-4d8a-9766-ca0d125d2e4f','','',NULL), -('15147','Microid Battle Suit Arms Nomad','Armor','Arms','b866df57-4965-46ef-8265-7eab380068ad','','',NULL), -('15148','Carryable_1H_CY_drug_painkillers_1_d','Misc','UNDEFINED','f4c44553-3d31-4975-8cbf-b415b22273a9','','',NULL), -('15149','Weapon_Rack_1_BEHR_LMG_AmmoOnly_001','Usable','UNDEFINED','a1462345-374e-48e4-9577-78d9487156d0','','',NULL), -('15150','Markanda Undersuit Deadwood (Refurbished)','Armor','Undersuit','5f2aedcb-486c-4e60-8dcb-976816c736f2','','',NULL), -('15151','Carryable_TBO_FL_24SCU_Commodity_ProcessedGoods_HolidayLetter','Cargo','Cargo','08f5e2f4-b7b5-4da5-bee3-8519085a6d91','','',NULL), -('15152','Seat','SeatAccess','UNDEFINED','a0e71d93-c384-4476-9ec5-18c15287083d','','',NULL), -('15153','Cumulus Jacket Purple','Char_Clothing_Torso_1','UNDEFINED','7fd39c72-66f2-47de-a959-d167d6ccebda','','',NULL), -('15154','Karna \"Alpine Sunset\" Rifle','Weapon','Medium','96337f4f-4743-4b41-808e-6b0b8a9bf486','','',NULL), -('15155','Crusader White King','Misc','UNDEFINED','f7c88505-5865-4198-945e-6850e7cc1b16','','',NULL), -('15156','Venture Helmet Voyager','Armor','Helmet','760e495b-cfa3-40fc-87a5-abdb088fcb44','','',NULL), -('15157','H_Dashboard_Projector_HUD_KRIG_P52','Display','UNDEFINED','a7897dda-be75-4f44-87a1-aedd5079d03f','','',NULL), -('15158','dmc_gloves_01_01_02','Char_Clothing_Hands','UNDEFINED','4c95ea2a-5590-4257-8f10-69196f049b16','','',NULL), -('15159','Lynx Moonrise Livery','Paints','UNDEFINED','c3493d36-4f1e-45cb-b7dd-2a19ce114d10','','',NULL), -('15160','Freeze','Cargo','Cargo','e5dd7535-29d7-415e-a1f0-a8de1fd6ad0b','','',NULL), -('15161','ControlPanel_Screen_NOACCESS','ControlPanel','DoorPart','0665f02e-80c1-4f48-9ee7-2db851274d85','','',NULL), -('15162','600i 2954 Auspicious Red Dog Livery','Paints','UNDEFINED','fe66c2d6-3139-4f6e-94bd-05a25accec2e','','',NULL), -('15163','Pingala Seeds','Cargo','Cargo','7b8b1cac-5c2f-4acf-b137-ca0d2072a3f5','','',NULL), -('15164','Odyssey II Helmet Alpha','Armor','Helmet','57e8714c-7357-4365-9110-e43a31233e69','','',NULL), -('15165','Bengal_BallisticCannon_PowerArray_S8','WeaponAttachment','PowerArray','06732dbd-e347-4eb9-aca8-13db45debb14','','',NULL), -('15166','Aegis Dynamics Hat','Char_Clothing_Hat','UNDEFINED','48a09919-29f8-4bbb-83c1-25662fc90686','','',NULL), -('15167','Stone Bug Shell','Misc','Harvestable','63cd8bfe-1b58-45aa-9e92-93271ecdbdee','','',NULL), -('15168','VNCL_Scythe_Thruster_side_right','ManneuverThruster','FixedThruster','cec6873e-4829-414a-87ba-c2c902583373','','',NULL), -('15169','ORC-mkV Core Grey','Armor','Torso','bcd929fd-09e7-4c5d-bf4c-4d4469e9cd93','','',NULL), -('15170','TrueDef-Pro Core White/Silver/Grey','Armor','Torso','1af13570-3256-4baf-bb4d-f8de7785054c','','',NULL), -('15171','Flight Blade','FlightController','UNDEFINED','df7be894-9e93-4743-a468-d253ae426423','','',NULL), -('15172','Arrow PHB Flight Blade','FlightController','UNDEFINED','a4384f78-a3aa-4e5a-a4e8-83f238595e04','','',NULL), -('15173','Gold (Ore)','Cargo','Cargo','ff358c7c-8161-41d4-a1a2-17aef6060ff6','','',NULL), -('15174','VNCL_Scythe_Thruster_Retro','ManneuverThruster','FixedThruster','3aff8029-dd1d-4f91-81e6-bc97aacaa172','','',NULL), -('15175','Seat','SeatAccess','UNDEFINED','27bc8914-f353-425f-b608-9da819315ccf','','',NULL), -('15176','Seat','Usable','UNDEFINED','0235afdf-eb41-4da4-8ce8-5309edaf04e4','','',NULL), -('15177','Detara Jacket Calypso','Char_Clothing_Torso_1','UNDEFINED','ff1a4779-423d-4438-955f-bb51c851d8c7','','',NULL), -('15178','Carryable_1H_CY_tool_manual_pliers_1_a','Misc','UNDEFINED','c8f4524d-be03-4160-b017-04ac7ff654f4','','',NULL), -('15179','KRIG_l21_Wolf_Thruster_Mav_Pipe_Left','ManneuverThruster','UNDEFINED','03c55b07-8013-4c8d-8053-70ed821291d6','','',NULL), -('15180','Odyssey II Helmet Imperial','Armor','Helmet','2ecd1ffb-3015-44b1-9b65-708ef829ddcc','','',NULL), -('15181','Internal Tank','FuelTank','Fuel','7fbe6944-8ea2-4212-b5e3-f783fec9223c','','',NULL), -('15182','ORC-mkX Arms Woodland','Armor','Arms','e38bac8b-2e1f-4b41-9b1b-ccc16ed9b17d','','',NULL), -('15183','Thrust','Cargo','Cargo','3d3d7c6c-97eb-4c2b-8f3c-5b21e5d71450','','',NULL), -('15184','Colonialism_Outpost_RN_Liquid_Tank_Unit','FuelTank','UNDEFINED','0805d974-22df-4e73-b087-b23e13c3a8ce','','',NULL), -('15185','ESPR_BallisticCannon_PowerArray_S4','WeaponAttachment','PowerArray','55549ef4-eee3-4eda-bbe6-6add36cf77b2','','',NULL), -('15186','Seat','SeatAccess','UNDEFINED','8b1198ee-8025-4c8c-b6f1-d9a9bf22768e','','',NULL), -('15187','Colossus','QuantumDrive','UNDEFINED','e61d58d6-3ffd-4d7b-ad19-64ae9d27efb1','','',NULL), -('15188','CNOU_Mustang_Gamma_Thruster_Main','MainThruster','FixedThruster','19c8ca9f-9f24-442a-b556-85c9e91258d6','','',NULL), -('15189','Collector_SCItem_Seat_ATC','Seat','UNDEFINED','7847cf55-ee59-4d75-aacf-0a5c3d9c005e','','',NULL), -('15190','Yormandi Eye','Misc','Harvestable','124da32f-de8f-45f6-a2f1-81fd47752b2d','','',NULL), -('15191','Weapon_Rack_1_KLWE_Rifle_Common_001','Usable','UNDEFINED','1ba178c3-0a24-4625-92d6-301043aac082','','',NULL), -('15192','DRAK_Cutlass_Blue_Thruster_Maneuver_Lateral','ManneuverThruster','JointThruster','f631ae50-1ecc-4df9-8f44-3e8e918fd2f1','','',NULL), -('15193','AEGS_Retaliator_Esc_Pod_Decal_02','Decal','DoorPart','d240d77d-23f4-4a0c-a9d7-83b2d837a044','','',NULL), -('15194','Medical Supplies','Cargo','Cargo','a6d9a776-78bb-41e9-905c-c8fd27b38f71','','',NULL), -('15195','AirlockDoorDefaultTemplate_Ext','Door','AirlockPart','cde2e32c-ce54-4a68-adad-b15295229e73','','',NULL), -('15196','Aztalan Tamarack Core','Armor','Torso','5b3d19d0-23ef-4678-943b-225a0eeb76f1','','',NULL), -('15197','Covalex Hat','Char_Clothing_Hat','UNDEFINED','82ab3c96-dfcc-4d53-8589-8a489a96cced','','',NULL), -('15198','Laranite (Raw)','Cargo','Cargo','5373e161-8c2b-4449-8ddb-96af7047e559','','',NULL), -('15199','Aster Gloves Twilight','Char_Clothing_Hands','UNDEFINED','80ba253b-3064-4167-b156-c89feaba4ca9','','',NULL), -('15200','Venture Legs Olive','Armor','Legs','08aea7b0-b442-457d-8cbc-7f876e7eb5cb','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('15201','RSI_Polaris_Dashboard_TurretSeat_Right','SeatDashboard','UNDEFINED','295857d7-f95c-43ab-8baf-75718a0db19a','','',NULL), -('15202','Idris Marauder Livery','Paints','UNDEFINED','2b812e19-1eeb-475a-b560-2d319ea20a52','','',NULL), -('15203','Seat','SeatAccess','UNDEFINED','986421d2-e097-4152-879a-06ed3e41a78d','','',NULL), -('15204','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','5b2b03f1-de32-4532-a7a7-8163f6681ab0','','',NULL), -('15205','Concept Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','6e2d0ddb-6969-41e3-83ef-07f49d4f044e','','',NULL), -('15206','Fury Racing Livery','Paints','UNDEFINED','9d53c591-a7f5-4b77-8380-a3bac9b52872','','',NULL), -('15207','Inquisitor Arms Imperial','Armor','Arms','3a25bba9-f70f-429a-b1ba-e42c5c60836c','','',NULL), -('15208','Mercury Star Runner 2951 Best in Show Livery','Paints','UNDEFINED','e4b52fb2-c14c-4763-95d5-42ea8d1911d8','','',NULL), -('15209','Body','Char_Clothing_Legs','Medical','dacb111c-352e-4e84-96c4-57ffd5c80f1a','','',NULL), -('15210','P8-AR \"CitizenCon 2954\" Rifle','Weapon','Medium','6c9788d1-5ddb-4e41-99db-8fcc45996a93','','',NULL), -('15211','Vanduul Decoy Launcher','WeaponDefensive','CountermeasureLauncher','37140cc3-29d1-4a50-ba89-49016f1ccd03','','',NULL), -('15212','CRUS_Starlifter_Door_Decal_PowerPlant_B','Decal','DoorPart','a74825f6-7088-4750-8b46-4cedc96b256d','','',NULL), -('15213','MSD-212 Missile Rack ','MissileLauncher','MissileRack','47ad6fae-f0fb-419c-a990-7cac2504d20b','','',NULL), -('15214','FieldLite Flashlight Blue','WeaponAttachment','BottomAttachment','30c2a2e9-fba9-40b5-830c-0f9ad43b18ad','','',NULL), -('15215','ARGO_ATLS_GEO_Headlights','Light','UNDEFINED','a116f5c9-f391-4281-8fac-c4515ba3db5a','','',NULL), -('15216','OMNI-AFS-Sapphire Helmet Alpine','Armor','Helmet','1e30cb91-ac22-49cf-89e2-15e5dab351a3','','',NULL), -('15217','Seat_Jump_MISC_Reliant_Toilet','Usable','UNDEFINED','4a0a6ab0-77b1-4f55-9751-f3b56f8d9667','','',NULL), -('15218','Debnam Gloves Green','Char_Clothing_Hands','UNDEFINED','e1ed489d-ece8-4b2f-b44f-37654fbc2ca7','','',NULL), -('15219','Aril Backpack Black Cherry','Armor','Backpack','eb317ed0-685b-451f-91df-50df5598f0cd','','',NULL), -('15220','Landlite Boots Grey','Char_Clothing_Feet','UNDEFINED','246c0e79-d08d-4895-a7aa-5cb97fad80f4','','',NULL), -('15221','Argos IX Torpedo','Missile','Torpedo','c01675d6-ad02-4c2d-b4a8-53b4a0b145dd','','',NULL), -('15222','FieldLite Flashlight','WeaponAttachment','BottomAttachment','60fab7a8-617c-4962-8391-69221ed761d6','','',NULL), -('15223','Lynx Legs Grey','Armor','Legs','de9ad7fc-5171-416c-b3a3-8f3c1702e93c','','',NULL), -('15224','Utensil_Spoon','Misc','UNDEFINED','1a990472-3278-40da-be23-fb4ad15e591b','','',NULL), -('15225','tool_manual_1_knife_a','Misc','UNDEFINED','dcf35c97-7ac4-446c-b91a-2f63d14c50fc','','',NULL), -('15226','Taos Balaclava and Goggles Ash','Char_Clothing_Hat','UNDEFINED','53d7644e-809f-48d3-b1b4-c9da49e28c9b','','',NULL), -('15227','Fortitude','PowerPlant','Power','a1108d40-080d-4087-b5e2-5030336ee180','','',NULL), -('15228','Bedrock Boots','Char_Clothing_Feet','UNDEFINED','9b0b4f88-dbdc-4559-90cb-8158535bb5fb','','',NULL), -('15229','Cordimon Jacket Seagreen','Char_Clothing_Torso_1','UNDEFINED','78ca8397-b4ab-41c2-85af-ddf40360b0c9','','',NULL), -('15230','MASTER_screen_16x9_5_0064x0036_a','Display','UNDEFINED','9151b191-58a1-41c7-b6ad-244f23cefb97','','',NULL), -('15231','Door Control','ControlPanel','DoorPart','d402b9ad-9bd7-4604-974d-1f4203516cb9','','',NULL), -('15232','Pico the Penguin Party Animal Green Plushie','Misc','Personal','62a52a44-d40f-4c77-ac98-fb62e9612e79','','',NULL), -('15233','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','4fcd837d-bc99-4eb2-95a0-9a622a0d87f7','','',NULL), -('15234','Pico the Penguin Party Animal Orange Plushie','Misc','Personal','4702f97f-6c1d-4ed3-97b2-d546878b2f9d','','',NULL), -('15235','Carryable_1H_SQ_Datapad_Fluff_Orb_GenericGang_001','Misc','UNDEFINED','6131c5f8-cb2c-48ce-985e-ad4ab3af06eb','','',NULL), -('15236','Pico the Penguin Party Animal Purple Plushie','Misc','Personal','233876b6-c5b4-456d-a89b-740109770c35','','',NULL), -('15237','Weapon Rack','Usable','UNDEFINED','dfa8c647-e21c-44fc-9980-d50c5eae4f1e','','',NULL), -('15238','Morozov-CH-I Backpack Gideon','Armor','Backpack','f41b841e-d49d-43af-b806-f0d9f5b7f731','','',NULL), -('15239','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','b0abcd30-66d9-46dc-9291-606a1f535384','','',NULL), -('15240','Table_1_Seat_CRUS_Intrepid','Usable','UNDEFINED','7aa0ef5f-40f5-4e31-9250-de888b544459','','',NULL), -('15241','Weapon_Rack_AEGS_4slots','Usable','UNDEFINED','3a62f6cf-3cc6-4a4c-a8b1-d1def7662603','','',NULL), -('15242','TRGT. STATUS','Seat','UNDEFINED','2224702e-8c6a-49aa-a7ee-14f7329be8e3','','',NULL), -('15243','Atzkav Sniper Rifle','Weapon','Medium','7623e7fa-3be9-4e9d-891c-597482c448b5','','',NULL), -('15244','ADP Arms Purple','Armor','Arms','a7b17816-d8ba-4795-8c59-64413227ce29','','',NULL), -('15245','Inquisitor Core Dark Red','Armor','Torso','677297d2-5f25-4e6c-afc0-f75f5f9244f7','','',NULL), -('15246','INTK_MISC_Hull_A','FuelIntake','Fuel','4a67e798-e441-446e-9d7b-9e0bdb6c1bf0','','',NULL), -('15247','Ventra Gloves Tan','Char_Clothing_Hands','UNDEFINED','a27edb06-852d-42d9-badd-0a903579b824','','',NULL), -('15248','Seat','SeatAccess','UNDEFINED','045d17e2-ef80-4f6e-bbe5-0a448874066f','','',NULL), -('15249','Gadget_Cabinet_kegr_fire_extinguisher_01_NoRN_med','Usable','UNDEFINED','6b896e2b-8ab3-4fcb-80b2-e3ee9025f660','','',NULL), -('15250','facial_hair_016','Char_Head_Beard','UNDEFINED','34d313db-db6f-45b0-82d9-25ae51fa7df0','','',NULL), -('15251','Seat','SeatAccess','UNDEFINED','e74c5113-2c7a-46d8-b2cf-d768c8cd2ecf','','',NULL), -('15252','Lindinium (Ore)','Cargo','Cargo','88f8b244-907d-4d98-a101-05ad06f33619','','',NULL), -('15253','parr_outfit_01','Char_Clothing_Torso_1','Male','52eacc5a-b800-40a3-917d-7e8fc9ca09df','','',NULL), -('15254','ThermoWeave Pants ASD Edition','Char_Clothing_Legs','UNDEFINED','175ab9c1-b42e-466c-b1df-97655b37c49d','','',NULL), -('15255','Main Powerplant','PowerPlant','Power','87bcad59-966f-4280-b651-1f9a8d92bc32','','',NULL), -('15256','Argos IX Torpedo','SpaceMine','UNDEFINED','6d1abfcd-cde1-4c67-b746-3ca4f7f3e774','','',NULL), -('15257','Good Gift Gloves','Char_Clothing_Hands','UNDEFINED','d0a4e9f2-b2f4-496d-8f81-3ac4b3e4d5d6','','',NULL), -('15258','mobiGlas Steel Casing','MobiGlas','Personal','58588b34-014a-4ec3-a1b9-3265e14c0b56','','',NULL), -('15259','Weapon_Rack_RSI_Apollo_9_Slot','Usable','UNDEFINED','4e6f6085-488a-575e-7588-d0ed460a68a7','','',NULL), -('15260','Lynx Legs Embark','Armor','Legs','b75d74b1-312f-4d47-aec6-f9f767cf64a5','','',NULL), -('15261','Door Control','Door','UNDEFINED','a9fe519f-7380-4cc4-bcb4-44e8bfbf5c9c','','',NULL), -('15262','Pitambu','Cargo','Cargo','cb99beb7-c38e-4ae3-a54d-6dbb785073fc','','',NULL), -('15263','RS1 Odysey Spacesuits','Cargo','Cargo','dcb1eadd-c5dd-45d7-aa78-95a341913179','','',NULL), -('15264','Seat','Usable','UNDEFINED','596f1a18-5310-44be-a941-2af756573e71','','',NULL), -('15265','StorageCage_Quantum_ZeroG','Cargo','UNDEFINED','33c99a76-d785-46cf-b062-dce892173a91','','',NULL), -('15266','ANVL_Hornet_F7A_Thruster_Mav_1','ManneuverThruster','JointThruster','a29f1ca0-5d53-4d2f-bccc-633903805115','','',NULL), -('15267','ClipVest Work Harness Seagreen','Char_Clothing_Torso_1','UNDEFINED','40540ac4-3c6d-40c1-8ae2-c464f45b0c6f','','',NULL), -('15268','Ranta Dung','Cargo','Cargo','71a8e4a1-31ea-409a-b967-6a6b02c4f269','','',NULL), -('15269','Hornet Mk II Tigerveil Livery','Paints','UNDEFINED','ee9d65a6-a05e-4af9-a679-180cf0315599','','',NULL), -('15270','CNOU_Nomad_Thruster_Main_Right','MainThruster','FixedThruster','ddb7bfc6-9ff2-45f4-bd4b-ba5ccb714d27','','',NULL), -('15271','Col_A_Airlock_Single_Small','Usable','UNDEFINED','175988aa-02b6-4866-8710-0cd76bfc275c','','',NULL), -('15272','INTK_CNOU_Nomad','FuelIntake','Fuel','d71ef07f-a94a-45ef-a63d-de307ad4b03e','','',NULL), -('15273','display_box_plastic_4_weapon_opened_005x010x005_rundown_a_3Ports','ShopDisplay','UNDEFINED','ae13d592-cdc0-4422-9c22-e101c05b744e','','',NULL), -('15274','INTK_ANVL_Gladiator','FuelIntake','Fuel','9dcba84b-cce0-4cfe-a782-70b9a1670e65','','',NULL), -('15275','Retaliator Backlash Livery','Paints','UNDEFINED','95c59f5f-6d09-46ea-89d4-f6b52f3079ec','','',NULL), -('15276','Prim Shoes Black','Char_Clothing_Feet','UNDEFINED','2236ff93-0390-48ac-9a4b-7e88f719c924','','',NULL), -('15277','Door','Door','UNDEFINED','834c4b02-9994-494b-afe4-d1e8712d1c46','','',NULL), -('15278','Archibald Jacket Autumn','Char_Clothing_Torso_1','UNDEFINED','b79e1385-7ecc-4916-a748-d2fe5052c3fe','','',NULL), -('15279','ORC-mkV Arms Orange','Armor','Arms','3f16bfca-14b1-48a4-bd39-1f50db97b599','','',NULL), -('15280','Cutlass Black Ship Armor','Armor','Medium','7c750d0c-62bc-49ef-ac56-4db3d0cf00fb','','',NULL), -('15281','IVDrip','Misc','UNDEFINED','d79442c2-1cad-45dd-8e54-60589cac7dbe','','',NULL), -('15282','RSI_Aurora_Mk2_Thruster_Mav','ManneuverThruster','UNDEFINED','7cfbc888-28b5-41dd-aee3-020a7d8da748','','',NULL), -('15283','RSI Default JetPack','Suit','ThrusterPack','711b363f-5e67-46be-b90d-e4f742c7debf','','',NULL), -('15284','RSI_Aurora_GS_Thruster_VTOL','ManneuverThruster','UNDEFINED','e4a67796-4682-4f42-bac4-dbfdaba23d86','','',NULL), -('15285','Vulture Outcast Livery (Modified)','Paints','UNDEFINED','2fbfdba3-54dc-4c7a-945e-f88eb254127f','','',NULL), -('15286','behr_timed_explosive_01','FPS_Deployable','Small','72a18256-f55c-4de7-b38b-5e69fde066c8','','',NULL), -('15287','m_teeth_vlk_apex_irradiated','Char_Accessory_Head','Vanduul','b91b1271-6211-4d5d-8b43-6d090e946e63','','',NULL), -('15288','Door Control','Door','UNDEFINED','dd0581ab-495c-4f25-ba0b-c28ec0b0ee14','','',NULL), -('15289','Radar_Display_Storm','Display','UNDEFINED','c6e67a52-84e3-4eb3-818d-342f7f22b57f','','',NULL), -('15290','Parallax \"Sanguine\" Energy Assault Rifle','Weapon','Medium','75ca08ba-6edc-46ed-a13c-56d788e258f9','','',NULL), -('15291','Defiance Legs (Modified)','Armor','Legs','f52ae812-8273-4ebc-a571-093fcf70da8c','','',NULL), -('15292','Door Control','ControlPanel','DoorPart','636414f6-1fd1-494b-98fd-1c3c55efc6e8','','',NULL), -('15293','Door Control','ControlPanel','DoorPart','4ca8a1ce-c102-42bb-89df-2b928d2f014c','','',NULL), -('15294','OxyPen','FPS_Consumable','OxygenCap','54143614-a946-4964-9587-fb4d0ce7aed1','','',NULL), -('15295','Seat','SeatAccess','UNDEFINED','d9298478-419c-4b55-ad72-23c1c21bed7f','','',NULL), -('15296','Paint_MPUV_Default','Paints','UNDEFINED','4a30c4e2-1681-4a93-a404-0ef6e06bc38e','','',NULL), -('15297','Bed_Bunk_Shutter_Top_AEGS','Door','UNDEFINED','0e2a1abb-3302-4f32-96f0-8f2018800f42','','',NULL), -('15298','MSD-322 Missile Rack','MissileLauncher','MissileRack','d7816c09-3cd3-4669-ad42-d6562894cbc6','','',NULL), -('15299','ANVL_Door_Decal_Carrack_Mess','Decal','DoorPart','160b32e6-5df2-49b0-bd00-c6e44a41fa00','','',NULL), -('15300','Food_Grub_Seanut_2_Plain','Food','Consumable','b55d0915-f8a3-4ee6-9ed0-b8d0fe67d105','','',NULL), -('15301','DockingTube_Fuel_Ports_CRUS_Spirit','DockingCollar','UNDEFINED','454e2773-3950-4779-963a-46a49169856d','','',NULL), -('15302','DockingTube_Fuel_Ports_RSI_Mantis','DockingCollar','UNDEFINED','bf39b743-ec3d-436b-9f23-81bcb296ca46','','',NULL), -('15303','PLACEHOLDER','Char_Clothing_Torso_1','UNDEFINED','f7e93671-9285-42e4-ae1d-79895b6ef306','','',NULL), -('15304','Cutter Light Beam Livery','Paints','UNDEFINED','474189e9-1970-4ee4-b74f-7588a0425e2a','','',NULL), -('15305','TRGT. STATUS','Seat','UNDEFINED','2ff6a0f0-5119-4e4f-8d92-2b65d9029bab','','',NULL), -('15306','RSI_Zeus_Wing_Right','AttachedPart','UNDEFINED','df0e1de8-80a4-42fe-9ac3-06825ec33669','','',NULL), -('15307','Debnam Gloves Violet','Char_Clothing_Hands','UNDEFINED','9c6305c4-cff5-4b65-b4ff-2c699c481e25','','',NULL), -('15308','Starlancer Deadlock Camo Livery','Paints','UNDEFINED','696675a8-5642-4e6f-b05b-129bfac6dcce','','',NULL), -('15309','Tau Plus LL (4x Telescopic)','WeaponAttachment','IronSight','98dc4abb-8518-479e-a56d-f15d98e037df','','',NULL), -('15310','Fortifier Helmet White','Armor','Helmet','a490f534-4324-4fd9-8cc2-cab32a70fb71','','',NULL), -('15311','Carryable_1H_CY_mug_coffee_1_b','Drink','UNDEFINED','fa8519ce-ac3a-46f2-936c-3dd1385a5940','','',NULL), -('15312','Rieger-C3 Module','MiningModifier','Gun','2ceb0de9-105b-434e-a152-8af1fd1660d0','','',NULL), -('15313','ORIG_X1_ShieldFluff','Misc','UNDEFINED','afc8b7a6-60e7-4993-a9f1-8b053c08e540','','',NULL), -('15314','350r Ship Armor','Armor','Medium','fb124b63-1280-4117-8639-a40012694996','','',NULL), -('15315','ARGO_CSV_FM_Dashboard_Driver','SeatDashboard','UNDEFINED','90b5d576-c521-40dc-8ead-e29bdb39a0cf','','',NULL), -('15316','CRUS_Spirit_Door_Decal_Battery','Decal','DoorPart','07d04beb-1983-497b-804b-bc2b613281a1','','',NULL), -('15317','behr_prx_kinetic_01','Weapon','Weapon','15c3e0ee-ddc6-4b84-9aba-5e1eb3798942','','',NULL), -('15318','Good Enough Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','22ee1aa7-4e3c-4f25-8c76-1b1c3e7ddae1','','',NULL), -('15319','ForceFlex Undersuit Black/Red','Armor','Undersuit','46930f35-6727-4aab-b484-ceab59c923e2','','',NULL), -('15320','ORIG_300_RADR_Display','Display','UNDEFINED','823f9fa4-36e0-4f62-9977-47bbd7ad1f5d','','',NULL), -('15321','Manned Turret','TurretBase','MannedTurret','3614ff8a-d24d-4d56-84db-8efac6b6c70f','','',NULL), -('15322','CSP-68L Backpack Night Camo','Armor','Backpack','2ad12fcf-6fdb-4ead-9559-ee7d2d5cacaa','','',NULL), -('15323','Cyclone Invictus Blue and Gold Livery','Paints','UNDEFINED','925dc1e1-7b94-4799-b0c0-a050a30d1376','','',NULL), -('15324','Seat','SeatAccess','UNDEFINED','887530ee-99f1-495e-ae5d-03aee1a47683','','',NULL), -('15325','AEGS_Reclaimer_Drone_Right_Dashboard','SeatDashboard','UNDEFINED','838b72e5-3905-4471-92e7-15412a94ba37','','',NULL), -('15326','Seat','Usable','UNDEFINED','21f6bb9e-00fd-49c2-87f0-ea85371705ef','','',NULL), -('15327','AEGS_Idris_Thruster_Main_Fixed_01','MainThruster','JointThruster','a2cdb461-b5eb-4e04-a7ab-25bf24613f2f','','',NULL), -('15328','Aurora Mk I Foundation Fest Livery','Paints','UNDEFINED','22c362b5-fb99-4754-a44b-dbf883328a7f','','',NULL), -('15329','Screen','Display','UNDEFINED','58c4613e-a772-4147-a5dc-5ece1556e0c9','','',NULL), -('15330','Hornet F7A Ship Armor','Armor','Medium','6617db69-c01d-4db5-8f16-9e2a9262c43d','','',NULL), -('15331','Stratus Jacket Green','Char_Clothing_Torso_1','UNDEFINED','53b5ba64-da21-4edc-b73c-ed3095a45699','','',NULL), -('15332','Tekaw Pants Arctic','Char_Clothing_Legs','UNDEFINED','b9c61e6d-a393-4bf7-a290-a1b46ed9a998','','',NULL), -('15333','Hornet F7CR Ship Armor','Armor','Medium','307b79fa-383d-44c9-9f7a-78ed8a93115d','','',NULL), -('15334','Anvil Void Ship Armor','Armor','Medium','9339fe50-9d27-4c62-a3cd-e4e9fb11e596','','',NULL), -('15335','Door','Door','UNDEFINED','8db97f17-ef0a-427a-8bec-83e6e25441f1','','',NULL), -('15336','Aril Core Harvester','Armor','Torso','9a55a9ae-f48c-4233-88ce-eb057acce8d9','','',NULL), -('15337','Edgewear Pants Aqua','Char_Clothing_Legs','UNDEFINED','0b770ab5-ba03-4a1e-a77d-778703a9967f','','',NULL), -('15338','INTK_VNCL_Scythe','FuelIntake','Fuel','90da94fb-e54a-4cfb-b60b-d24ff1d52fdc','','',NULL), -('15339','Internal Tank','QuantumFuelTank','QuantumFuel','e29a09db-5528-4923-95be-81e7099daba4','','',NULL), -('15340','CNOU_Nomad_Thruster_Main_Left','MainThruster','FixedThruster','3a11a9d4-3c83-4acb-85cd-da024def032a','','',NULL), -('15341','Carryable_1H_CY_takeaway_package_1_closed_a','Misc','UNDEFINED','ba9c9e16-982e-4f3b-9536-5e8ec312452b','','',NULL), -('15342','Keystone Jacket Red','Char_Clothing_Torso_1','UNDEFINED','d457e8da-3fbf-4bb3-8c6e-b9643bad279a','','',NULL), -('15343','DockingTube_Fuel_Ports_ANVL_paladin','DockingCollar','UNDEFINED','92c27d1e-2a01-4dcd-9232-277c5566d991','','',NULL), -('15344','Raw Silicon','Cargo','Cargo','5b0d3ab2-7f86-440b-afff-e369eaaea08d','','',NULL), -('15345','Turret','Turret','BallTurret','3a94bd3d-20a1-44ff-9ec6-c93197109f19','','',NULL), -('15346','ADP Arms Aqua','Armor','Arms','3b9444ff-3e2d-4e46-a351-a81574a01b5f','','',NULL), -('15347','Flight Blade','FlightController','UNDEFINED','da9a2d6c-8ffc-4f77-a00b-8e1c16e18d90','','',NULL), -('15348','ARMR_RSI_Lynx','Armor','Medium','2fa21273-743b-48d2-ad67-7c064d97f05c','','',NULL), -('15349','Idris Sharktooth Livery','Paints','UNDEFINED','145d7b4a-033e-4267-9fb9-129737d6d09d','','',NULL), -('15350','FBL-8a Legs Imperial Red','Armor','Legs','824428be-669c-43e0-a91d-3ac080afaff9','','',NULL), -('15351','utensil_tray_1_food_a_with_loadout_chowlinefood_Dirty','Misc','UNDEFINED','a7f0d547-6f89-4964-841d-ff1c73d4e0e1','','',NULL), -('15352','Table_2_Seat_High_Hightech_1_a','Usable','UNDEFINED','c26e26b1-84d1-448c-9314-72dba7e71cd3','','',NULL), -('15353','Seat','SeatAccess','UNDEFINED','d642cd30-2d62-4bdd-b5c0-1ace6dff14dd','','',NULL), -('15354','Dashboard','SeatDashboard','UNDEFINED','4c67f096-b85c-4095-9837-c7d108d162af','','',NULL), -('15355','m_teeth_vlk_apex','Char_Accessory_Head','Vanduul','7b8ac7c2-8924-4746-994a-a5a46d9acf34','','',NULL), -('15356','Flight Blade','FlightController','UNDEFINED','0ba8bdec-156e-4f5d-96d3-2805d52f43fb','','',NULL), -('15357','Talon Wanderer Livery','Paints','UNDEFINED','0a735517-a6ac-4a9a-98cb-2f5b71f12cc4','','',NULL), -('15358','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','e33364ec-ebb5-41ea-85c1-35aa5b07e8ee','','',NULL), -('15359','Heart of the Woods','Cargo','Cargo','53d0a376-09f1-4b19-b8b0-fd0b271be21d','','',NULL), -('15360','MISC_Hull_C_FoldingStrut_1A_Outer','Cargo','UNDEFINED','f5a97a63-7cc5-4159-9cda-40683df5d9d1','','',NULL), -('15361','Marksman I-G Missile','Missile','GroundVehicleMissile','5af848a3-a8e4-487e-8e40-58dc012d97ad','','',NULL), -('15362','Threshold Pants','Char_Clothing_Legs','UNDEFINED','dd6b36aa-729d-4a5c-b89c-74e2d1b677ab','','',NULL), -('15363','ARGO_MPUV_Body','Misc','UNDEFINED','995cb836-1f8c-434e-b8d2-9e272b7ceb01','','',NULL), -('15364','Internal Tank','FuelTank','Fuel','36d35e28-4ed8-4d54-a602-81ad084249c4','','',NULL), -('15365','RSI_Constellation_Base_BayWall_Left','Container','UNDEFINED','3159cc1e-b097-4d41-b9f3-20762bb50034','','',NULL), -('15366','display_components_noGeo_01Port_s01','ShopDisplay','UNDEFINED','1029c3ee-cea6-4ffd-9a50-415aacf3cf6f','','',NULL), -('15367','Pembroke Exploration Suit Starchaser Edition','Armor','Undersuit','dd23f409-5885-48e7-b8ac-4beb5de4064f','','',NULL), -('15368','INTK_AEGS_Sabre_Firebird','FuelIntake','Fuel','7c85f891-8025-4f32-a3da-6b8e5c947653','','',NULL), -('15369','AIModule_Unmanned_PU_UEE_GreenZone_Large_Turret','AIModule','UNDEFINED','404e42fe-f58f-485b-b3f3-e265e28a882d','','',NULL), -('15370','Bar_station_3spots','Usable','UNDEFINED','48c35010-f4c7-45ee-8f35-1830f4f7eea9','','',NULL), -('15371','Clempt Pants','Char_Clothing_Legs','UNDEFINED','1e0609a7-d2be-4d13-b772-3de50283adc9','','',NULL), -('15372','ANVL_Pisces_Thruster_Main_Right_C8X','MainThruster','FixedThruster','74ed8831-202d-4aa4-b388-d62faf7858b9','','',NULL), -('15373','Deo Shirt Purple','Char_Clothing_Torso_0','UNDEFINED','bba4b420-5e5e-48a4-a53d-450ebe0caca0','','',NULL), -('15374','Campo Shoes Viridian','Char_Clothing_Feet','UNDEFINED','29beec77-1546-4334-833b-8f828dde21ee','','',NULL), -('15375','DustUp Core Tactical','Armor','Torso','d2a646ec-e3ad-4b97-9903-0f0510dbf840','','',NULL), -('15376','DRAK_Caterpillar_Thruster_Retro','ManneuverThruster','FixedThruster','b9bb6def-e4f8-4e3b-afbf-84d936a68e71','','',NULL), -('15377','Seat','SeatAccess','UNDEFINED','5e6508c2-d130-42f1-9463-892b01d33e67','','',NULL), -('15378','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','e8669a6c-dada-45d3-98c9-d3d466f99849','','',NULL), -('15379','ANVL_Door_Decal_Carrack_PortTurret','Decal','DoorPart','388013bb-54ae-4322-8ac6-7680cb1dbcd4','','',NULL), -('15380','Stool','Seat','UNDEFINED','c098cdde-2d2f-41fe-9d28-c22dbcfa696b','','',NULL), -('15381','Flight Blade','FlightController','UNDEFINED','2b3b2ac7-07f6-4261-a4f5-4e7093f3bffe','','',NULL), -('15382','Laranite','Cargo','Cargo','a88ae2b1-5ec4-4fe2-af5e-fc2ac4b1bc43','','',NULL), -('15383','Weapon_Rack_1_BEHR_Sniper_AmmoOnly_001','Usable','UNDEFINED','52a39b2a-e2cf-48d9-903f-be78c90c7ab7','','',NULL), -('15384','Weapon_Rack_DRAK_Mule_1Slot','Usable','UNDEFINED','a27d2cd9-f123-4e20-98f8-0cf9e6aa9fba','','',NULL), -('15385','lt_crate_dry_2_0125x0125x0125_a','Cargo','UNDEFINED','0f13f875-b785-4cdc-9a0a-9f7a4d24812a','','',NULL), -('15386','Debnam Gloves Grey','Char_Clothing_Hands','UNDEFINED','5513c5e9-b4e8-47d8-831f-97f35b7d7c2b','','',NULL), -('15387','Workzone_Floor_Mechanic','Usable','UNDEFINED','406feb7f-e655-4fb2-9ba1-59ee3148849b','','',NULL), -('15388','MISC_Starfarer_Gemini_SCItem_Seat_CoPilot','Seat','UNDEFINED','08f4e776-003e-4fc1-9dec-f89219e8f147','','',NULL), -('15389','Xanthule Tahn Suit','Armor','Undersuit','8166a3fb-d7af-496b-bba3-08db32bbc6ef','','',NULL), -('15390','LifeCure Medsticks','Cargo','Cargo','167443f4-7211-4e0d-8184-5d7b4b756da0','','',NULL), -('15391','Lotus','PowerPlant','Power','313907ec-6ce1-473e-8505-3d3e3209075e','','',NULL), -('15392','Pite','Char_Head_Piercings','UNDEFINED','1a9b59f4-80a2-4343-af62-0efa7cb26ec0','','',NULL), -('15393','Door Control','ControlPanel','DoorPart','320bd8ac-f96d-4acc-84f9-572f242c7e59','','',NULL), -('15394','Carryable_TBO_FL_24SCU_Commodity_ProcessedGoods_ProcyonCanister_Damage','Cargo','Cargo','50bf80df-2de3-46a2-a629-87874134cd4f','','',NULL), -('15395','Lillo Pants Esteril','Char_Clothing_Legs','UNDEFINED','207b99e1-2ec1-4bb6-bb49-70a9480f1208','','',NULL), -('15396','Door Control','Door','UNDEFINED','946517e3-21a8-46fa-85de-f63532c3d893','','',NULL), -('15397','TrueDef-Pro Arms White/Silver/Grey','Armor','Arms','6dcb0e0f-1c37-4fe5-b38a-39dcc07ca6ed','','',NULL), -('15398','Venture Legs Dark Green','Armor','Legs','d579625b-9d8f-4201-bf35-cb352087db88','','',NULL), -('15399','ESPR_LaserCannon_Barrel_S3','WeaponAttachment','Barrel','54fc7663-64ca-4fd3-98ce-86bfb266b274','','',NULL), -('15400','Ribbon Fish ','Misc','UNDEFINED','7ffe1597-36dc-459d-8e9b-b9cf7cf1dea1','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('15401','Morozov-SH Helmet Red Alert','Armor','Helmet','585a0ef1-0be5-4852-b0f4-d49beb7a4f75','','',NULL), -('15402','P8-SC \"Red Alert\" SMG','Weapon','Medium','7a81b598-ce83-44e0-88f9-482e528c3747','','',NULL), -('15403','Seat','Usable','UNDEFINED','39425a81-2231-4e85-a1f3-b7cc4552197c','','',NULL), -('15404','Weapon_Rack_1_LBCO_Sniper_Common_001','Usable','UNDEFINED','afb29b51-7108-46e6-b3c9-0fc0d3421e69','','',NULL), -('15405','rod_cargo_rail_2_a_02x01x02_06Ports','ShopDisplay','Default','9b9e3b77-abca-4c93-8bf2-91805b1b3fa4','','',NULL), -('15406','G-2 Helmet Purple','Armor','Helmet','f86c916f-751d-4c69-9926-0066621acb1b','','',NULL), -('15407','Prospector Keystone Livery','Paints','UNDEFINED','1df42a5b-00ef-47e0-9c5a-12876483d8f2','','',NULL), -('15408','Venture Core Envy','Armor','Torso','c2eda8c0-d84d-48eb-941d-3b36a7b6b995','','',NULL), -('15409','AEGS_Idris_SCItem_Seat_Captain_Blocked','Seat','UNDEFINED','4e420a3b-3f04-4163-bea5-f6969d706110','','',NULL), -('15410','AEGS_Idris_SCItem_Seat_Comms','Seat','UNDEFINED','9fa0f417-9cf2-489e-94ff-9688b0d7d5bd','','',NULL), -('15411','Seat','SeatAccess','UNDEFINED','29f19b90-b8a2-4ddb-b45a-bf3c440452aa','','',NULL), -('15412','JOKR_DistortionCannon_FiringMechanism_S2','WeaponAttachment','FiringMechanism','9b89f35a-b643-4f36-a182-27d058646f8b','','',NULL), -('15413','ORIG_890J_Seat_BattleBridge_Middle','Seat','UNDEFINED','f03fff8a-d990-4ab0-a906-3f4bde5137a5','','',NULL), -('15414','Fresh Garden Smoothie','Drink','Bottle','55b325fb-b42c-4ada-a986-cbd2d3697cf8','','',NULL), -('15415','FBL-8a Legs (Modified)','Armor','Legs','ceaa6278-769c-407f-b678-b470d757dbde','','',NULL), -('15416','AEGS_Sabre_Raven_Thruster_Retro_Right','ManneuverThruster','FixedThruster','359c6886-aaca-4208-9396-e59b34f10c7a','','',NULL), -('15417','Internal Tank','FuelTank','Fuel','2e86aa19-bc23-4918-9822-2fa8d3a43a26','','',NULL), -('15418','Talon Luminary Livery','Paints','UNDEFINED','a4297f14-1746-4050-b93d-50fd87eb5819','','',NULL), -('15419','Trace Pants','Char_Clothing_Legs','UNDEFINED','1bc4abfc-9c0d-4132-8c0a-90dfe2ab8c13','','',NULL), -('15420','Turkey Sandwich','Food','Junk','4b02f40a-c9e0-4fa7-86d3-a512c9549d4a','','',NULL), -('15421','Foundation Festival Beanie Teal','Char_Clothing_Hat','UNDEFINED','83b60822-7428-4913-99b8-0d177c8d42fb','','',NULL), -('15422','Tin','Cargo','Cargo','7cfe21b7-a691-42a0-ac3e-4c77e8b16c59','','',NULL), -('15423','DRAK_Caterpillar_CargoGrid_Nose','CargoGrid','UNDEFINED','3dd24ff5-0b82-4312-9eff-acc259d2aa3a','','',NULL), -('15424','UEE_GurneyStraps','Misc','UNDEFINED','3108b6cd-d579-443e-b760-698bf77addf5','','',NULL), -('15425','DuraJet','PowerPlant','Power','63a0ae66-9852-456e-90a0-1c83e3653efd','','',NULL), -('15426','Door Control','ControlPanel','DoorPart','d32558e0-7049-4f07-8e41-c0e21381ec99','','',NULL), -('15427','Hull C Empyrean Livery','Paints','UNDEFINED','27efa48a-bb53-4afb-a7e8-919213fcbeb7','','',NULL), -('15428','Railing_Straight_1m_Colonial_Wall','Usable','UNDEFINED','a5f50c6e-ff14-43bd-836a-65cf901852e5','','',NULL), -('15429','Door','Door','UNDEFINED','aa80ea4f-e312-41ad-931d-203aabb56304','','',NULL), -('15430','Chiron Backpack Lifesaver','Armor','Backpack','ac1cddc4-b4c9-4240-acf9-c2bb7c1d831a','','',NULL), -('15431','Titanium','Cargo','Cargo','164d0932-04b8-48a3-8d04-58bba59e35ce','','',NULL), -('15432','Piecemeal Armor Core Olive','Armor','Torso','f1e557da-9df9-486e-9d4a-190fb5f3d91d','','',NULL), -('15433','ARGO_MPUV_Lights_Leg_Right','Room','UNDEFINED','e9451017-f070-4cd8-9ae4-d9edccdd51a4','','',NULL), -('15434','ARMR_CRUS_Spirit','Armor','Medium','f31ff3fe-f1e8-414f-beab-b0a1f7f60f11','','',NULL), -('15435','Coloma Coat Ice and Iron','Char_Clothing_Torso_1','UNDEFINED','150f637f-362d-4f3d-b69a-4e8d7d730ff9','','',NULL), -('15436','Carryable_1H_CY_tool_manual_ratchet_1_a','Misc','UNDEFINED','a7baa544-68eb-483b-b6a4-5c14caa32809','','',NULL), -('15437','AEGS_Javelin_Thruster_Mav_Joint_02','ManneuverThruster','JointThruster','0d745130-9aa6-4cb7-bf13-ca4c32ed7ef2','','',NULL), -('15438','Door Control','Door','UNDEFINED','04e8ae1d-7ba7-4b24-9a36-2127507b39a6','','',NULL), -('15439','sc_nvy_deckcrew_gloves_01_01_01','Char_Clothing_Hands','UNDEFINED','d26e6216-d911-41b9-b798-2f8e8af3b4fb','','',NULL), -('15440','Access','SeatAccess','UNDEFINED','55568d9a-4ae5-44b2-a4e1-515f52619498','','',NULL), -('15441','SHIELDS','ShieldController','UNDEFINED','23904279-3b05-4f2e-9506-5694e317acf1','','',NULL), -('15442','ht_light_flood_1_tripod_a','Light','UNDEFINED','e10a9e35-b63e-4031-9aee-20458648bade','','',NULL), -('15443','PAB-1 Core Grey','Armor','Torso','86762ab1-359e-4afb-bc9e-e37cacc4ba6c','','',NULL), -('15444','Weapon_Rack_RSI_Constellation_2_Slots','Usable','UNDEFINED','4509c86a-0ab3-43e5-98bd-e77663140de2','','',NULL), -('15445','Ball','Char_Head_Piercings','UNDEFINED','677967f7-e339-4cf7-b131-677eabb71764','','',NULL), -('15446','Door Control','ControlPanel','DoorPart','0d1aa643-8562-463a-902e-ac955d921fce','','',NULL), -('15447','Seat','Usable','UNDEFINED','cc04799a-9d6d-4055-818d-0edcb25016ba','','',NULL), -('15448','Francis the Stormwal Plushie','Misc','Personal','71f7aea3-4386-4ce6-b20d-9dbe92dea47d','','',NULL), -('15449','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','5a5fad04-0ae6-418f-bbe5-0167319190bc','','',NULL), -('15450','Teddy Bear','Misc','UNDEFINED','dff98a43-2fe4-4ed1-b504-68a7d6dad996','','',NULL), -('15451','Tuvois Jacket Dark Red','Char_Clothing_Torso_1','UNDEFINED','6e7e0bfc-78bc-49a6-9bb9-93c328efe74c','','',NULL), -('15452','Venture Arms Grey','Armor','Arms','6fafbcd2-f376-470b-b2ec-fea3a8aaf1e9','','',NULL), -('15453','ORIG_M50_Thruster_Mav_Joint_Bottom','ManneuverThruster','FixedThruster','fd88eae1-968c-4b89-a941-72dff40cf869','','',NULL), -('15454','Stor*All Big Box Model H','Module','UNDEFINED','8661bcd6-9247-4376-8509-11af3d24a44c','','',NULL), -('15455','Seat','SeatAccess','UNDEFINED','6344839b-e9e5-4bca-a758-897e2789ad34','','',NULL), -('15456','PAB-1 Arms Dark Green','Armor','Arms','9cecfdb3-c7e8-4b19-a2b6-fdd3d0f8eba9','','',NULL), -('15457','Weapon Rack','Usable','UNDEFINED','7854228c-cbf2-4d29-94f6-6cc78bcc8146','','',NULL), -('15458','RSI_Hermes_Nacelles','AttachedPart','UNDEFINED','52444f74-ce33-4dbb-9417-8810af2d8f86','','',NULL), -('15459','Utility Grav-Cart','Cargo','Cargo','e5d86fb3-7d97-48f7-b54c-ff46888adb34','','',NULL), -('15460','Carbon','Cargo','Cargo','155e7734-7a5d-407e-b577-46ba2729421c','','',NULL), -('15461','Government Cartography Agency Medal (Damaged)','Misc','Trophy','a1588375-d111-4c9f-8074-cbff70d5ab77','','',NULL), -('15462','Door','Door','UNDEFINED','b3d4b487-2caa-484e-ac69-c8ad20a4e4d9','','',NULL), -('15463','MISC_Hull_C_CargoGrid_Outer','CargoGrid','UNDEFINED','8ef22d40-2797-47b4-8e96-59e3f2bacf56','','',NULL), -('15464','AEGS_Idris_SCItem_SeatAccess_ATC','SeatAccess','UNDEFINED','999f7ecc-72ef-4388-a839-abce190cad64','','',NULL), -('15465','ClipVest Work Harness Dark Red','Char_Clothing_Torso_1','UNDEFINED','d5895ee4-e793-44ff-9866-93cf34863c95','','',NULL), -('15466','MISC_Starfarer_Gemini_Thruster_Mav_Joint','ManneuverThruster','JointThruster','974d2c36-2924-4cf0-8da0-cfc0451e7655','','',NULL), -('15467','AEGS_Sabre_Thruster_Retro_R','ManneuverThruster','FixedThruster','c23f1f4b-1da5-41d1-9ab5-5e5217870434','','',NULL), -('15468','fruit_basket_1_shop_1x6_a','ShopDisplay','Default','07e2db62-093d-4887-8a85-f6a37ecb9eb1','','',NULL), -('15469','Seat','Usable','UNDEFINED','7b092faf-28be-426e-8529-0707663fdceb','','',NULL), -('15470','Internal Tank','QuantumFuelTank','QuantumFuel','27970db8-35ca-4e40-8d5e-3be1c1bb9db7','','',NULL), -('15471','Bed_Mattress_RSI_Polaris_Cell','Seat','UNDEFINED','43e94985-f059-4d26-9b9d-b5010091f720','','',NULL), -('15472','Weapon_Rack_2_Slots_ARGO_Rifles','Usable','UNDEFINED','4ccbef66-0023-41f6-bd69-a9365440552c','','',NULL), -('15473','ARMR_AEGS_Eclipse','Armor','Light','c31a291a-5194-4eb0-a2cb-61a73c9af5a4','','',NULL), -('15474','M2C \"Swarm\"','Turret','PDCTurret','a113eb5a-2759-4a55-ac48-7170c7d17f50','','',NULL), -('15475','GME 338-10 Medical Gown','Char_Clothing_Torso_1','UNDEFINED','7a8b13af-7de4-4569-ab59-ddaf36e695a9','','',NULL), -('15476','Get Up Coffee (Milk)','Drink','Can','a2c7594f-41dc-4174-8add-8d4eba648a56','','',NULL), -('15477','Weapon_Rack_ANVL_Paladin_1_Slot_Special','Usable','UNDEFINED','37af384c-6db5-4673-8b5a-498c28d1e74e','','',NULL), -('15478','VNCL_Gen2_PlasmaCannon_Ventilation_S4','WeaponAttachment','Ventilation','b255d03d-58e9-49e3-b3db-1d135d3fef69','','',NULL), -('15479','MacFlex Core White','Armor','Torso','0f4fba9d-f217-47c0-9e01-fe40a0d8aecb','','',NULL), -('15480','Origin Racing Flight Suit','Armor','Undersuit','5bb52c29-a872-4d12-8564-72482ca88f7c','','',NULL), -('15481','TRGT. STATUS','Seat','UNDEFINED','f48de064-1385-412a-aec0-af3ae3bf8f1a','','',NULL), -('15482','Mirai Racing Flight Suit\n','Armor','Undersuit','a8493a6e-25b6-4b4a-aa72-c2a8d7195d3b','','',NULL), -('15483','Seat','Usable','UNDEFINED','b65aa411-790a-414e-8983-6ac61bd76bdb','','',NULL), -('15484','Devastator \"Boneyard\" Shotgun','Weapon','Medium','5accfcef-7e4b-4ccf-a92e-782b40ea8a05','','',NULL), -('15485','Star Kitten Racing Flight Suit','Armor','Undersuit','95b17843-9a67-470d-b6c2-4bfab8c70ba2','','',NULL), -('15486','Radar_Display_Sabre','Display','UNDEFINED','f5ecb610-30b8-4674-b38c-c4506aeafad2','','',NULL), -('15487','Murray Cup Racing Flight Suit','Armor','Undersuit','6ca53003-56c2-41a7-8531-a20ebf31b167','','',NULL), -('15488','Mantis Polar Camo Livery','Paints','UNDEFINED','4d4d7c54-33eb-4b12-892c-19ad66db61bb','','',NULL), -('15489','game_checker_piece_single_b','Gadget','UNDEFINED','074a1085-a0fc-4b8b-a8e0-281ce7abdca8','','',NULL), -('15490','Bexalite','Cargo','Cargo','a0b3219f-f788-41e0-b134-64f1e0015d94','','',NULL), -('15491','Door Control','Door','UNDEFINED','b2a6409c-406c-4515-a587-5e851567a76b','','',NULL), -('15492','Venture Core Pathfinder','Armor','Torso','626d5776-9583-4f0a-8fcd-81c3da685ff3','','',NULL), -('15493','Paint_Vanguard_Harbinger','Paints','UNDEFINED','17b74e05-00fa-4a59-8836-8b6e90d7669a','','',NULL), -('15494','FUNT','FPS_Consumable','Hacking','dd788dd5-a2da-494d-a7de-b60a768f06e2','','',NULL), -('15495','\'WRATH\' Cannon','Weapon','Gun','2148a144-a9a2-457c-8bb5-e96f0492a0bc','','',NULL), -('15496','Carryable_1H_CY_weight_dumbbell_1_12kg_c','Misc','UNDEFINED','ff4d3305-59ae-4537-adc4-7f254f80eab1','','',NULL), -('15497','P8-AR \"Dominion Camo\" Rifle','Weapon','Medium','b90d31fd-cefd-4731-a03a-eba1994d57db','','',NULL), -('15498','Boomtube \"Ruby\" Rocket Launcher','Weapon','Large','f644aa8e-7025-4411-be18-154a40d59993','','',NULL), -('15499','ANVL_Door_Decal_Carrack_Cartography','Decal','DoorPart','679311da-8d35-41ee-8c87-8c7f326e2552','','',NULL), -('15500','ANVL_Asgard_Thruster_Retro','ManneuverThruster','FixedThruster','63e70139-91ee-488e-a4e9-5a3f1bf760f6','','',NULL), -('15501','Oracle Helmet Seagreen','Armor','Helmet','f56c6272-4ee5-4720-92fa-256183a2a5da','','',NULL), -('15502','table_bar_2_seat_1_high_a','Usable','UNDEFINED','478910c7-84ed-46f4-8d1b-559c4819af6c','','',NULL), -('15503','AAT-34 Turret','Turret','MannedTurret','5588cd6a-b122-49e1-9cfb-02b1bee571cc','','',NULL), -('15504','INTK_ORIG_325a','FuelIntake','Fuel','6925e9cb-0c7e-4263-a459-b30e2ea74e37','','',NULL), -('15505','ORC-mkV Arms Tan','Armor','Arms','2c41954e-6707-4cde-b894-42c4f3103bbd','','',NULL), -('15506','K7 Pants Grey','Char_Clothing_Legs','UNDEFINED','d76fb7cd-cff4-4735-9667-d9dfa10e95db','','',NULL), -('15507','IndVest Jacket Dark Red','Char_Clothing_Torso_1','UNDEFINED','990ac0fc-0da6-468d-9ede-2773179cc78e','','',NULL), -('15508','SecureScreen','Shield','UNDEFINED','2fefe4af-48ca-4044-bb89-11cbdab74bbb','','',NULL), -('15509','AEGS_Sabre_Peregrine_Thruster_Retro_Left','ManneuverThruster','FixedThruster','1d038239-9dfc-46be-b094-5c5cac8bebf7','','',NULL), -('15510','RSI_Meteor_Thruster_Retro_Right','ManneuverThruster','JointThruster','b17448bd-0a86-44d1-9fe8-445dd3c88d8e','','',NULL), -('15511','Kaswal Jacket Pine','Char_Clothing_Torso_1','UNDEFINED','a4dbc3a2-4294-4c90-b496-87ca955837f9','','',NULL), -('15512','HRST_LaserScatterGun_Ventilation_S1','WeaponAttachment','Ventilation','1a2f0d27-21f1-4214-b37d-00a2f8344e52','','',NULL), -('15513','Door Control','ControlPanel','DoorPart','862df3b0-d5d2-4cdc-84b9-22353eb0e5f2','','',NULL), -('15514','Quartz','Cargo','Cargo','c00b5099-21bc-45b5-afdd-6710b37d2a91','','',NULL), -('15515','Internal Tank','FuelTank','Fuel','cbef97f4-7e9a-44e6-9d92-19bd5b143a6f','','',NULL), -('15516','Deo Shirt Black','Char_Clothing_Torso_0','UNDEFINED','e27da687-b025-4b82-97d5-58ce5c6e3181','','',NULL), -('15517','Morningstar Helmet Roughshod','Armor','Helmet','6ad56155-8312-4b3d-b564-f6b1bd2b8b68','','',NULL), -('15518','Self Destruct Unit','SelfDestruct','UNDEFINED','e5512d65-5462-4270-8095-212efe3fcf99','','',NULL), -('15519','\"Quantainium\" Water Bottle','Drink','Bottle','771bca1a-c986-4111-af71-ef2b27376fce','','',NULL), -('15520','Carbide Jacket Bramble','Char_Clothing_Torso_1','UNDEFINED','0c55ab6d-33c6-46bf-8539-cfa512f96be0','','',NULL), -('15521','Carryable_1H_CY_drug_stomachmedicine_2_d','Misc','UNDEFINED','8ba49c76-c0c9-4e62-8bed-4c48864921a5','','',NULL), -('15522','ESPR_LaserCannon_Ventilation_S3','WeaponAttachment','Ventilation','9622a76d-b284-48f5-bf96-aad10b03039b','','',NULL), -('15523','Lynx Arms Sienna','Armor','Arms','7d72580c-23a2-4258-9bd5-4275da1f08c8','','',NULL), -('15524','Misfit Jacket Striker','Char_Clothing_Torso_1','UNDEFINED','42197fc4-d1d3-4edb-9974-d3a0dba0a653','','',NULL), -('15525','Arbor MHV Mining Laser','Mining','Gun','0982203d-579f-4c3c-8b7a-c5f1c4a7ddd6','','',NULL), -('15526','Manned Turret','TurretBase','MannedTurret','29ebfe0f-5a24-49a4-ab9e-c25434ed3d8b','','',NULL), -('15527','Holdstrong','Shield','UNDEFINED','84f07b24-342d-4956-8928-25832eb4e999','','',NULL), -('15528','Galen Surgical Scrub Pants Honeycomb','Char_Clothing_Legs','UNDEFINED','836cdbe4-601b-42ad-ad38-dd841ca07a07','','',NULL), -('15529','Golem','SeatAccess','UNDEFINED','8c5f88da-465a-4e58-b44b-e001b527edef','','',NULL), -('15530','Ship Ammunition','Cargo','Cargo','99ec48bd-98d7-45b7-ad03-cf9f82b675a6','','',NULL), -('15531','Concept Shirt Orange','Char_Clothing_Torso_0','UNDEFINED','395d0b37-7379-409a-a8d9-16b40ad8518d','','',NULL), -('15532','DRAK_Cutlass_Red_Thruster_Main','MainThruster','FixedThruster','9e75b331-c4c4-451f-a814-468009b4258c','','',NULL), -('15533','Strata Backpack Shire','Armor','Backpack','9aa83b58-32de-45f2-b273-7d5e21e7a174','','',NULL), -('15534','Internal Tank','FuelTank','Fuel','153eb49d-7172-4b58-89c4-c9df40117d53','','',NULL), -('15535','can_drink_3_guc_shop_1x5_a','ShopDisplay','Default','ae641797-9c44-4430-997c-6f5d6d2a777b','','',NULL), -('15536','Redeemer Standard Flight Blade','FlightController','UNDEFINED','f272692c-304d-4f84-945f-3c9755a814ee','','',NULL), -('15537','OT8-RF (8x Telescopic)','WeaponAttachment','IronSight','278fafef-c4e3-44d5-9b85-a225f6e97cb2','','',NULL), -('15538','CNOU_Mustang_Delta_Thruster_Mav_Fixed_01_Down','ManneuverThruster','FixedThruster','fd621100-0b18-4a09-a1e9-7efffc5a6992','','',NULL), -('15539','ANVL_Pisces_Thruster_Retro_Left','ManneuverThruster','JointThruster','bbf2b1a9-03a5-4ba7-a5db-fdd6d1ba2856','','',NULL), -('15540','TrueDef-Pro Legs Yellow/Black','Armor','Legs','0055d718-49f0-4225-90cd-81ba57875c00','','',NULL), -('15541','Wolf Iceflash Livery','Paints','UNDEFINED','a84e7c2d-ced5-4ea0-bbb4-0acf81b0d096','','',NULL), -('15542','ADP-mk4 Core Red Alert','Armor','Torso','2dd42197-7d07-490d-be2a-36b10247c2bc','','',NULL), -('15543','DockingTube_Fuel_Ports_ANVL_Gladiator','DockingCollar','UNDEFINED','35c68944-7429-4f09-b37a-407a914e0c3f','','',NULL), -('15544','Gladius Ship Armor','Armor','Medium','a1bde463-b3ce-4959-9bc2-6ef0f6fb1494','','',NULL), -('15545','Stileron','Cargo','Cargo','4db05191-a6cd-4477-a5a9-0c7df9e4fe9f','','',NULL), -('15546','vlk_spewgun_ballistic_irradiated_Adult','Weapon','Medium','8c9216cd-f11f-4520-b47f-cabb1075dcda','','',NULL), -('15547','WEAPONS','WeaponController','UNDEFINED','7f72f468-3e23-40b9-a5ee-d607d36437f2','','',NULL), -('15548','TRGT. STATUS','Seat','UNDEFINED','7bbf53e2-b7fb-4252-b440-3d677afbbaff','','',NULL), -('15549','XIAN_Nox_Thruster_Aux_Right','ManneuverThruster','JointThruster','8648258c-48df-45a0-8a9b-c2acb2194c53','','',NULL), -('15550','MISC_Razor_LX_Thruster_Retro','ManneuverThruster','FixedThruster','c45dbf8f-087d-455b-bdaf-dac9bf7debcf','','',NULL), -('15551','Morningstar Helmet Grey','Armor','Helmet','87a6a734-412c-4c9a-9cbd-b285247180d8','','',NULL), -('15552','AAT-34 Turret','Turret','MannedTurret','5425e9af-1f73-4ec6-a777-c4500ca0a6a1','','',NULL), -('15553','Glacosite','Cargo','Cargo','38a7c125-27ec-40c8-9bad-7e3621ebb63a','','',NULL), -('15554','game_chess_1_rook_a','Misc','UNDEFINED','6e373790-dcf6-4af0-9b80-a18ef3953d25','','',NULL), -('15555','Scrap','Cargo','Cargo','57abc536-22e9-4613-a666-9ecbc5601d98','','',NULL), -('15556','ARMR_DRAK_Vulture','Armor','Medium','1f62e80e-00f3-4bd9-bb6b-52255c44a11a','','',NULL), -('15557','Pingala Seeds','Cargo','Cargo','83b9a312-59a5-43a0-b8bf-df5a7d774e08','','',NULL), -('15558','TRGT. STATUS','Seat','UNDEFINED','4d10317a-83e6-4fa8-a3d9-259bc3db85db','','',NULL), -('15559','Chiron Helmet AA Support','Armor','Helmet','8f9b7c96-7274-4e7e-b5a6-d19fa6521c84','','',NULL), -('15560','Dopple','Cargo','Cargo','6d50716d-0d9b-4ce9-8260-e4bffac19d4d','','',NULL), -('15561','Pork Katsu Sandwich','Food','Junk','68734d4c-9716-4aa7-9d68-81a7f0cfa27f','','',NULL), -('15562','PAB-1 Arms Executive','Armor','Arms','c46728a2-3922-4e08-9e12-b3536b83c368','','',NULL), -('15563','MaxLift AA Support Tractor Beam','Weapon','Gadget','548225a8-d4d4-4e4a-818f-781f34c67dab','','',NULL), -('15564','Door Control','Door','UNDEFINED','702c6e21-7aa3-457f-946c-3b7cfde6c9bd','','',NULL), -('15565','MISC_Hull_C_FoldingStrut_1C_Outer','Cargo','UNDEFINED','8a130b67-2ea5-4ab9-b764-8a77c559d9fc','','',NULL), -('15566','sw_heavy_radiation_helmet','Armor','Helmet','d891770c-81d7-4e3e-9fc5-8bba3d2b429b','','',NULL), -('15567','Door Control','Usable','UNDEFINED','d19246d9-13cd-49d3-8f9e-f69846ae104d','','',NULL), -('15568','f_human_mannequin_slaver_undersuit_01','ShopDisplay','UNDEFINED','33f62501-c628-4c81-b94f-50e4641a946d','','',NULL), -('15569','Carryable_1H_CY_weight_dumbbell_1_28kg_a','Misc','UNDEFINED','fca67540-a23a-426a-b71e-a9193693f37d','','',NULL), -('15570','Aluminum (Ore)','Cargo','Cargo','4e30af98-a6bd-4113-b405-3a2f865f4855','','',NULL), -('15571','Locker_Suit_RSI_Apollo','Usable','UNDEFINED','4029d536-0659-6fcc-7451-8cdd29f7c990','','',NULL), -('15572','Turret','TurretBase','MannedTurret','8bb0e200-c486-44df-b944-84bf2fc755d3','','',NULL), -('15573','Sarilus','Cargo','Cargo','272fbab3-c6db-495d-9642-15667ca937f3','','',NULL), -('15574','f_human_mannequin_truDef_pro_light','ShopDisplay','UNDEFINED','ee73b39d-1340-4e0e-80c3-e6d8725658ff','','',NULL), -('15575','Manned Turret','TurretBase','MannedTurret','6b804c16-ed74-4096-8571-860de6c00be6','','',NULL), -('15576','Testudo Legs','Armor','Legs','9b57d452-10ab-4473-9235-19da966ebadb','','',NULL), -('15577','Morningstar Helmet Earthwork','Armor','Helmet','52a0a4b4-61c4-43a2-a423-342312070ac0','','',NULL), -('15578','Seat','Usable','UNDEFINED','286d64a0-8177-4723-92a4-3029ae380ba0','','',NULL), -('15579','Carryable_1H_SQ_heatpack_1_a','Misc','UNDEFINED','80022c82-39cf-49df-9e00-548f44cec9c7','','',NULL), -('15580','SLAM','Cargo','Cargo','4eb208b5-5284-4a71-bcb0-2a42193f3a21','','',NULL), -('15581','Turret','Container','Cargo','9ec50960-3cea-4dd1-b2cb-bbeb33a65ca5','','',NULL), -('15582','Internal Tank','QuantumFuelTank','QuantumFuel','a388d73a-8101-4410-bd16-46e5278ae771','','',NULL), -('15583','Carryable_1H_CY_bottle_bar_13_champagne_a','Misc','UNDEFINED','5af00e9f-22dc-48f7-99e5-bd0ceb948b75','','',NULL), -('15584','Cutter Dying Star Livery (Modified)','Paints','UNDEFINED','18810c78-7aa2-46bb-8309-d799fdb8ab8e','','',NULL), -('15585','Strata Core Crusader Edition','Armor','Torso','43911da1-4f8b-4ef4-a2e0-a1c1b8b2d1f5','','',NULL), -('15586','Carryable_1H_SQ_Datapad_Fluff_Orb_HathorGroup_005','Misc','UNDEFINED','7866ff5f-0d61-4c92-9a98-621652cfcc09','','',NULL), -('15587','Hammerhead Ship Armor','Armor','Medium','439741e2-2d5a-4d54-8a5c-92056a6cd281','','',NULL), -('15588','VNCL_Stinger_Thruster_Main_Fixed','MainThruster','FixedThruster','a685d3dd-c270-4e90-aaff-8e3b87aef43f','','',NULL), -('15589','Markanda Undersuit Pyrotechnic','Armor','Undersuit','2ebe092b-e1e6-40f0-8697-cb6b68cc4d28','','',NULL), -('15590','Omarof (16x Telescopic)','WeaponAttachment','IronSight','713a8022-1cf8-4c21-a216-d536df291e99','','',NULL), -('15591','Origin Jumpworks Hat','Char_Clothing_Hat','UNDEFINED','06cb7683-3ce9-4500-846a-4cfd1526ea72','','',NULL), -('15592','Seat','Usable','UNDEFINED','966933fd-b444-4e1d-ba6d-dcf17ad39e9a','','',NULL), -('15593','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','57fea868-2d6e-4c92-90a8-21dc261e9103','','',NULL), -('15594','UEE_Gurney','Misc','UNDEFINED','b823860d-b456-4d18-932a-f00cb0b3b8cc','','',NULL), -('15595','Seat','SeatAccess','UNDEFINED','1f43140f-2394-4df9-96a2-1b163d13fe16','','',NULL), -('15596','Weapon Rack','Usable','UNDEFINED','4cb747de-0146-41fc-b736-81f62e048633','','',NULL), -('15597','Concept Shirt Grey','Char_Clothing_Torso_0','UNDEFINED','11449a60-8066-4059-9932-50323bbcc897','','',NULL), -('15598','Spirit Hurston Livery','Paints','UNDEFINED','676c63b5-bbee-4fe0-8cbb-96b4f58ffda4','','',NULL), -('15599','Seat','SeatAccess','UNDEFINED','5b2a7757-fbfe-49e5-9d8a-c70d31c6c113','','',NULL), -('15600','Flight Blade','FlightController','UNDEFINED','b8f6e23e-8a06-47e4-81c9-3f22c34b99e9','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('15601','Weapon_Rack_ORIG_300i_2_Slots','Usable','UNDEFINED','a0d9d219-a054-44ca-be18-a167a7c1c56d','','',NULL), -('15602','ORC-mkV Arms Crusader Edition','Armor','Arms','444728ec-27d8-449c-aa81-8aba0d2db4b4','','',NULL), -('15603','Glow','Cargo','Cargo','85a33fb2-0eb2-4dd9-8e9b-f2333d38dedf','','',NULL), -('15604','Remote Turret','Turret','GunTurret','d3e70cd0-1052-4d46-b910-efd8f6f3795c','','',NULL), -('15605','ADP Arms Executive','Armor','Arms','497606c0-7367-47df-8d12-d4a921bac524','','',NULL), -('15606','Remote Turret','Turret','GunTurret','7297cbd1-1fc2-484c-89cb-756e1ea6b9d7','','',NULL), -('15607','Door_Relay_DCD','Door','UNDEFINED','b39584a5-961f-45ea-86ab-08484c794429','','',NULL), -('15608','INTK_MISC_Freelancer_MAX','FuelIntake','Fuel','9c4daa8d-e952-4c7f-8643-db763b48caa4','','',NULL), -('15609','Ranta Dung','Misc','Harvestable','4ecdaee3-2886-4b77-90fa-372cbe88fb84','','',NULL), -('15610','Strode Pants','Char_Clothing_Legs','UNDEFINED','6b2b1b2f-1037-4d0d-9195-a058320b6794','','',NULL), -('15611','WiDoW','Cargo','Cargo','4061667e-d30e-4415-b073-ffebd3e5fa16','','',NULL), -('15612','Recycled Material Composite','Cargo','Cargo','2ffdc682-679f-4ea6-9880-4ed105c053b4','','',NULL), -('15613','CNOU_Mustang_Cargo_Rack','Container','Cargo','3ddc7e07-ae82-4b32-85c2-f09868177522','','',NULL), -('15614','tool_manual_1_hammer_a','Misc','UNDEFINED','496d856e-2bdc-4717-b91a-fa4c265ed113','','',NULL), -('15615','Hercules Starlifter microTech Livery','Paints','UNDEFINED','4a4ee4c5-9999-4c87-b222-609075df6c0d','','',NULL), -('15616','XNAA_SanTokYai_RADR_Display','Display','UNDEFINED','2c55a210-03a3-4dc6-b570-3a34e91caef9','','',NULL), -('15617','Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','5fbeae19-690b-45f6-b090-4cafe7ce80d7','','',NULL), -('15618','un_jar_glass_2_berries_a','Misc','UNDEFINED','85168ce9-2696-428e-a0b0-687220fc3912','','',NULL), -('15619','OneMeal Nutrition Bar (Spicy Salmon)','Food','Bar','64bf56d9-4f9b-4510-820a-7807ce3c5ff8','','',NULL), -('15620','KRIG_P72_Archimedes_Thruster_Mav_Fixed_01_Bottom','ManneuverThruster','FixedThruster','ad28d881-86c1-459f-9c4b-92b48d70682d','','',NULL), -('15621','Toughlife Boots Imperial','Char_Clothing_Feet','UNDEFINED','a60cc9db-66fa-4d40-86ca-f3fc2715e9d7','','',NULL), -('15622','PH - eld_shirt_03_01_9tails01','Char_Clothing_Torso_0','UNDEFINED','0f7eb996-9da0-46d0-a957-90b3ad67e7ca','','',NULL), -('15623','Mount_Gimbal_Mining','UtilityTurret','GunTurret','24122aa8-495b-4b2f-9d81-9b7a87e51c8d','','',NULL), -('15624','Door Control','Door','UNDEFINED','9e45b4b6-54c4-4cf4-a55e-f25c919559e7','','',NULL), -('15625','Scorpius Standard Flight Blade','FlightController','UNDEFINED','cdec504b-22e9-4193-9e90-764204cd23c9','','',NULL), -('15626','RSI_Apollo_Scanner','AttachedPart','UNDEFINED','46f2a702-3724-10cc-e49d-3732941dde9b','','',NULL), -('15627','BEHR_BallisticRepeater_Ventilation_S3','WeaponAttachment','Ventilation','97e19cf8-a554-4a1c-b3e1-73d66a593f6a','','',NULL), -('15628','MXOX_NeutronRepeater_Ventilation_S1','WeaponAttachment','Ventilation','16aa0c4c-cca0-4b62-a7c1-3cf2ff08e9af','','',NULL), -('15629','Souvenirs','Cargo','Cargo','ee2506d7-b53a-41b1-9515-c1cc73a81900','','',NULL), -('15630','Cambio SRT Canister','WeaponAttachment','Magazine','891a1422-3980-4756-84b2-04dd07ad7177','','',NULL), -('15631','Aluminum','Cargo','Cargo','f57b7497-e9ed-4c10-b39a-13644a525b3d','','',NULL), -('15632','Aril Helmet Red Alert','Armor','Helmet','afeb13e2-0ce9-420a-9885-efb4be455fad','','',NULL), -('15633','Weapon_Rack_BANU_Defender_2_Slots','Usable','UNDEFINED','9f3ad9cc-95f2-4737-92f3-386830b8d0b2','','',NULL), -('15634','RSI_Apollo_Medivac_Thruster_Mav_Top','ManneuverThruster','FixedThruster','877cca71-237d-4402-ad3f-09228dfa2f5e','','',NULL), -('15635','Door_DRAK_Clipper_Fuelport_Ground','Door','UNDEFINED','fb5862c4-137b-4830-a01b-a69808d49012','','',NULL), -('15636','PAB-1 Core Tan','Armor','Torso','f83e18d1-981a-47ac-b875-1feac8361a8c','','',NULL), -('15637','TRGT. STATUS','Seat','UNDEFINED','23402e26-90a4-4e7e-a59f-191ef906ad9a','','',NULL), -('15638','Altruciatoxin','Cargo','Cargo','dd54bb5c-bee2-46c2-8028-c961675af228','','',NULL), -('15639','Door','Door','UNDEFINED','cad70e95-321a-4388-aa81-372a032b46c9','','',NULL), -('15640','TRGT. STATUS','Seat','UNDEFINED','64d6da4b-dece-4d19-87d5-28d6d3a76cb3','','',NULL), -('15641','Antium Core Sand','Armor','Torso','565d53c3-7152-4562-b8eb-437ce7018cc2','','',NULL), -('15642','Table_Bench_7_AEGS_Hammerhead','Usable','UNDEFINED','3ca8eb1f-159a-4ad2-ac97-593bb1895d91','','',NULL), -('15643','Carryable_1H_CY_universal_utensil_b','Weapon','Knife','1f57c647-e25e-4c92-a60c-256147311766','','',NULL), -('15644','PAB-1 Legs Covalex Edition','Armor','Legs','c45d28e4-17fa-47a0-8c4c-7cb948e32935','','',NULL), -('15645','Diamond','Cargo','Cargo','1a3e83f0-5f13-4f11-a4ba-9836ac975553','','',NULL), -('15646','MRCK_S01_TMBL_Storm_AA_Custom','MissileLauncher','MissileRack','d83798e4-f4d5-4191-843f-f85b1b5e1d80','','',NULL), -('15647','VK-00','QuantumDrive','UNDEFINED','995c2de5-f7e6-4646-83e3-4627ba5a5865','','',NULL), -('15648','Starlancer microTech Livery','Paints','UNDEFINED','4a7849e0-60c5-4be1-a8e1-573a8859075c','','',NULL), -('15649','Venture Arms Tan','Armor','Arms','86a53f79-8bd7-4d12-8c79-ee08ec1e1e74','','',NULL), -('15650','Door Control','ControlPanel','DoorPart','4662a693-3318-4e3b-8419-ac8d847a5189','','',NULL), -('15651','Colonialism_Outpost_RN_Cooler','Sensor','UNDEFINED','f49582fb-7451-4720-bf3d-23bad4483e9e','','',NULL), -('15652','SHIELDS','ShieldController','UNDEFINED','15151ac8-5a66-4f35-9087-a83f360d9b2e','','',NULL), -('15653','Arden-SL Core (Modified)','Armor','Torso','47cdfc70-4b6d-472a-9808-d0dbe34e0280','','',NULL), -('15654','Tona Shoes Sienna','Char_Clothing_Feet','UNDEFINED','9bcb9887-69f5-4c03-bdf9-db9b043a7d15','','',NULL), -('15655','DRAK_Cutter_Thruster_Addon_Rambler_Right','Misc','UNDEFINED','8ca401a6-fddf-4b0a-b238-674d4a00860f','','',NULL), -('15656','ht_d_int_door_double_a_lghtgrp','Lightgroup','DoorPart','235e0097-4cb0-414e-97f6-717f00abc73f','','',NULL), -('15657','Green Vitality Smoothie','Drink','Bottle','d597d3f2-9343-4b80-a0b3-07530f65d852','','',NULL), -('15658','GLSN_Shiv_Thruster_Maneuver_Rear_Bot','ManneuverThruster','JointThruster','b6e509ca-a62f-4a00-b700-098927770e11','','',NULL), -('15659','CBH-3 Helmet Green','Armor','Helmet','f94242b2-ff4d-4330-ad9f-4fbb95b6efb6','','',NULL), -('15660','Weapon_Rack_DRAK_Cutlass_Steel_1Slot','Usable','UNDEFINED','1ab980d9-87db-4a70-917e-454127a90740','','',NULL), -('15661','Door Control','Door','UNDEFINED','4411b1e3-e4cd-4a74-90a9-b6f49874b66a','','',NULL), -('15662','Weapon Rack','Usable','UNDEFINED','1a2ebef1-c060-4b9c-9381-c487bf585e6b','','',NULL), -('15663','Seat','Usable','UNDEFINED','d56d28c4-b570-462c-9735-b5aeaccf64b7','','',NULL), -('15664','Vehicle_Screen_MFD_Holographic_MRAI_Guardian_R','Display','UNDEFINED','9e5160b9-3419-4fb5-a9f4-b899f603eadf','','',NULL), -('15665','Oracle Helmet Dark Green','Armor','Helmet','519f7ed4-ecc4-44ec-a365-9aed460f6d6f','','',NULL), -('15666','Prim Shoes Orange','Char_Clothing_Feet','UNDEFINED','af9c7aec-c85c-45db-b86b-44a694a8e92a','','',NULL), -('15667','counter_display_mod_center_a_01x01x01_multiTool','ShopDisplay','UNDEFINED','b7d68c84-dc66-47c3-a94f-4bbf812a6a10','','',NULL), -('15668','Redfin Energy Modulators','Cargo','Cargo','f24eea43-3cb6-4396-8049-74200dd4ae95','','',NULL), -('15669','Bottle','Bottle','Default','a8975d1b-a823-4096-991d-b8f2ee394943','','',NULL), -('15670','Internal Tank','QuantumFuelTank','QuantumFuel','f30b0a78-1ff2-4868-85ac-596902ac70ee','','',NULL), -('15671','Spirit Headhunters Reaper Livery','Paints','UNDEFINED','659ff3a1-c637-45d7-b045-6b3de88444a3','','',NULL), -('15672','IFR-A77 Turret','TurretBase','MannedTurret','0d58d803-4df1-4bb7-afd6-e5f9429778d6','','',NULL), -('15673','Cadmium Allinide','Cargo','Cargo','9db01abb-ff85-43a1-9fc3-f1d7e64ef6a8','','',NULL), -('15674','ORIG_890_Jump_Thruster_Main_TR','MainThruster','FixedThruster','edda580d-bce8-40cd-a462-fdff0eb85a32','','',NULL), -('15675','MISC_Hull_C_FoldingStrut_2D','Cargo','UNDEFINED','43df2790-e6e3-4c3a-9d80-c0183e21ea71','','',NULL), -('15676','RSI_Aurora_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','f054396b-df5d-4518-876a-c1812f77dc63','','',NULL), -('15677','Seat','Usable','UNDEFINED','c34adfd9-2ae9-4f39-b548-b04bf6e83ebe','','',NULL), -('15678','890 Jump Meridian Livery','Paints','UNDEFINED','511ff0e3-8983-4862-b971-38283d0e1909','','',NULL), -('15679','ANVL_Lightning_F8_Thruster_Main_DarkBlue','MainThruster','FixedThruster','66351438-a2cc-403c-828f-9c69ecbbdf56','','',NULL), -('15680','Testudo Helmet Clanguard','Armor','Helmet','e5e93d7e-28e6-487b-8920-38734a27d071','','',NULL), -('15681','Internal Tank','FuelTank','Fuel','6915cfdf-6cbc-44e5-acb4-7c5384203fdd','','',NULL), -('15682','Perseus Hieron Livery','Paints','UNDEFINED','69cf3cf0-b37c-407a-aa55-1fd991248418','','',NULL), -('15683','MISC_Fortune_Thruster_Main_Rear_Left','MainThruster','FixedThruster','b2d3d514-a4a5-4d0a-8f7b-cad603dcc9fb','','',NULL), -('15684','Sootho Gloves Calypso','Char_Clothing_Hands','UNDEFINED','6431cb6e-d3aa-4d8f-a4ac-570441d9b2c8','','',NULL), -('15685','AEGS_Door_Decal_Avenger_Pod_1','Decal','DoorPart','3686bf2d-5c6c-420d-91a6-296257998537','','',NULL), -('15686','Door Control','Usable','UNDEFINED','bc35c162-32b1-43cb-bfe9-b60c2eb07645','','',NULL), -('15687','un_jar_glass_2_berries_b','Misc','UNDEFINED','3f1d44e3-5d61-48cf-a8b5-bdc94df172dc','','',NULL), -('15688','Hammerhead TSB Flight Blade','FlightController','UNDEFINED','356013cd-1a32-4947-8ee4-4d123549ad6d','','',NULL), -('15689','Pressurized Ice','Cargo','Cargo','cfef1221-4c45-476a-b2f4-2e388279df58','','',NULL), -('15690','Seat','Usable','UNDEFINED','998db4da-3524-4506-a8a6-8d5c09996b65','','',NULL), -('15691','Castillo Jacket Ocean','Char_Clothing_Torso_1','UNDEFINED','27d687db-101b-489d-839d-7d5199fb4753','','',NULL), -('15692','DRAK_Cutter_CargoGrid_4Stack','CargoGrid','UNDEFINED','17e09668-67f5-4eb9-8346-101497f6a3ab','','',NULL), -('15693','IndVest Jacket Red','Char_Clothing_Torso_1','UNDEFINED','380a4850-9487-4c88-bf55-1d8bf7f69c05','','',NULL), -('15694','Basketball','Misc','UNDEFINED','bd6ae263-9641-4359-8cc3-56d65a232786','','',NULL), -('15695','Ammo Box','Cargo','UNDEFINED','f9412e41-67cb-4e94-aa01-5e0fd7f85088','','',NULL), -('15696','Stud','Char_Head_Piercings','UNDEFINED','d3da7fc8-edaf-4f61-bf92-41c61f3585e6','','',NULL), -('15697','TOAG_LaserGatling_Ventilation_S2','WeaponAttachment','Ventilation','f304062f-21d5-454c-ad08-5d79c3c77b4b','','',NULL), -('15698','Defiance Arms Charcoal','Armor','Arms','cec5aa12-cfe1-4ee9-b039-050f573b8786','','',NULL), -('15699','Seat','SeatAccess','UNDEFINED','e3f6bf74-522b-4478-9c44-3c41b9a058c9','','',NULL), -('15700','Inquisitor Legs Scorched','Armor','Legs','2f67ac96-ab81-461a-b54d-fcd159137477','','',NULL), -('15701','Li-Tok Boots Sienna','Char_Clothing_Feet','UNDEFINED','16bcf93e-f1ec-4aaa-bc21-ef6d0ae1b61e','','',NULL), -('15702','Argus Helmet Silver/Gold/Grey','Armor','Helmet','5d5ce445-0acb-45ca-adb5-4ec764fb33bc','','',NULL), -('15703','Novikov Backpack Patina','Armor','Backpack','278f244d-4dff-411e-bf23-c795135a6852','','',NULL), -('15704','Seat','Usable','UNDEFINED','1b8318e2-ebe5-4376-8f81-a19028e55457','','',NULL), -('15705','Arclight \"Herrero\" Pistol','Weapon','Small','bb87b6e9-427b-4698-9a7e-fdb84c30a3fe','','',NULL), -('15706','Hyper Vanguard Force T-Shirt','Char_Clothing_Torso_0','UNDEFINED','acb69739-1688-498b-a4fb-41e3ae669a7a','','',NULL), -('15707','Door','Door','UNDEFINED','798662db-c00f-4164-b1ed-17542943e8ef','','',NULL), -('15708','Covalex Container Model','Misc','Flair_Wall_Picture','6ff54e91-8117-42f2-b9ba-56055c3c2d40','','',NULL), -('15709','Flight Blade','FlightController','UNDEFINED','dacfe83f-f930-472b-a652-15228e916d78','','',NULL), -('15710','Titanium','Cargo','Cargo','c8a67f71-1dc4-43d8-ba94-087b0f1172e2','','',NULL), -('15711','Tona Shoes Grey','Char_Clothing_Feet','UNDEFINED','0ee382b2-0b3f-4c99-974a-93a8a82eebf6','','',NULL), -('15712','Nyman Jacket Seagreen','Char_Clothing_Torso_1','UNDEFINED','65cd71c1-30da-4eed-8509-aa9af53fa775','','',NULL), -('15713','[PH] Noodles v2','Food','Tin','cd57373f-489e-4d28-a48c-1be2a2010922','','',NULL), -('15714','Defiance Core Hailstorm','Armor','Torso','609da45d-dff8-49e6-b740-11258df220ba','','',NULL), -('15715','Venture Core Black','Armor','Torso','0d8f306f-dffd-401c-a85b-acec2efb313c','','',NULL), -('15716','Escalate Stabilizer1','WeaponAttachment','Barrel','4834c09b-1e6b-486f-a05e-68859be4e229','','',NULL), -('15717','Door Control','Door','UNDEFINED','d31cacee-4b7b-4516-b0b4-980389a687e3','','',NULL), -('15718','un_medical_box_1_bandage_a','Misc','UNDEFINED','72b673c9-bbde-46a4-8957-28f48318f99f','','',NULL), -('15719','Vehicle_Screen_MFD_Holographic_Nox_L','Display','UNDEFINED','85cfb788-5ac7-44f4-b92b-5e08154c939c','','',NULL), -('15720','Oracle Helmet Twilight','Armor','Helmet','2534602c-060c-4739-8ee9-1f8c14ba6a54','','',NULL), -('15721','Exodus','JumpDrive','UNDEFINED','59346c37-671d-4aae-9eff-d38e13caa9c0','','',NULL), -('15722','Carryable_1H_SQ_DataPad_Fluff_StormBreaker_DataFacility_Safe02','Misc','UNDEFINED','3f856590-b4db-48dc-967f-7563ad1de5b0','','',NULL), -('15723','STV Finish Line Livery','Paints','UNDEFINED','66033ed4-504c-4824-bf45-be6cfc5ac40e','','',NULL), -('15724','MSD-313 Missile Rack','BombLauncher','BombRack','549964bb-a674-41ba-86d5-55a6d3c25931','','',NULL), -('15725','Ketchum Beanie Violet','Char_Clothing_Hat','UNDEFINED','3eb44d12-1489-4838-9a3f-a1b255b0d501','','',NULL), -('15726','ClipVest Work Harness Aqua','Char_Clothing_Torso_1','UNDEFINED','d668309a-c4a1-4047-879d-768e86c1b2ad','','',NULL), -('15727','Lindinium','Cargo','Cargo','64548da1-f9ad-4ff9-a81d-1662662607e7','','',NULL), -('15728','Seat','Usable','UNDEFINED','15cd22fa-c11c-49c9-aa9a-f514835426d1','','',NULL), -('15729','P4-AR \"Boneyard\" Rifle','Weapon','Medium','251ad133-22e6-4ee1-9df0-4c503fb043f9','','',NULL), -('15730','customizer_shirt','Char_Clothing_Torso_0','UNDEFINED','8ba1cd70-a18e-4f3a-b6d4-117239b9bc7d','','',NULL), -('15731','F8C Lightning 2954 Best in Show Livery','Paints','UNDEFINED','820ba605-9ec8-4ba7-8586-d0a3d61ee2c7','','',NULL), -('15732','Cobalt','Cargo','Cargo','9f8e9561-7f78-4cc6-9ac3-204528f06be2','','',NULL), -('15733','PC2 Dual S4 Mount','Turret','GunTurret','7cb20c3d-497c-4762-996e-e581acee3d4e','','',NULL), -('15734','Gadget_Cabinet_kegr_fire_extinguisher_01_NoRN_Lowtech_med_high','Usable','UNDEFINED','858fe410-ac7a-47dc-866f-3a38357fb40b','','',NULL), -('15735','Plastic Cup','Misc','UNDEFINED','e74c54a8-b925-4f71-916c-145d45eb2c59','','',NULL), -('15736','Turret','WeaponMount','WeaponControl','6dcd3145-0fe4-4082-bf11-970d78d793b5','','',NULL), -('15737','Oracle Helmet Green','Armor','Helmet','d3c1b1cf-47e9-4389-8bc2-382e5a88ce37','','',NULL), -('15738','ORIG_890_Jump_Thruster_Mav_BML','ManneuverThruster','FixedThruster','8dddd6ce-0667-4de5-b8f3-00f88de501d1','','',NULL), -('15739','DRAK_Cutlass_Steel_Thruster_Maneuver_Vertical_Positive','ManneuverThruster','JointThruster','69d22c8f-6913-447f-b339-a847800c4420','','',NULL), -('15740','Irradiated Valakkar Fang (Adult)','Misc','Harvestable','04075f35-2e63-4e35-a09a-5521a21909b4','C','',NULL), -('15741','Ace Interceptor Flight Suit','Armor','Undersuit','b190d5a9-90da-4ceb-a262-cb789dd17d4f','','',NULL), -('15742','Seat','SeatAccess','UNDEFINED','e1b2cb7c-8663-4652-b60d-668b65cde363','','',NULL), -('15743','SalvageInternalStorage_DRAK_Vulture','SalvageInternalStorage','UNDEFINED','0d226a98-1a05-4e49-bde5-11fff0f8f88f','','',NULL), -('15744','Slayer Cannon','Weapon','Gun','189b0ce2-d934-4208-9970-ac633dbd67d3','','',NULL), -('15745','Overlord Arms Dust Storm','Armor','Arms','e8e5a4e7-f350-479d-8d06-03d3a8d0481f','','',NULL), -('15746','BEHR_BallisticRepeater_PowerArray_S3','WeaponAttachment','PowerArray','95d58b14-28f5-4069-a93b-c4c416386377','','',NULL), -('15747','RSI_Perseus_Thruster_Main_Bottom_Right','MainThruster','UNDEFINED','09bbb9b4-d087-4204-a165-b02ffbec04c4','','',NULL), -('15748','Bed','SeatAccess','UNDEFINED','7bea0afe-f852-4d4f-a934-98b5c6af23f9','','',NULL), -('15749','HoverQuad Lightspeed Livery','Paints','UNDEFINED','7795a2b5-9fc8-4712-a23b-d6bb27a640a9','','',NULL), -('15750','Lycara','Cargo','Cargo','d6e14883-b09b-4014-91e6-09dc8afad1e2','','',NULL), -('15751','ARMR_ANVL_Carrack','Armor','Medium','df022e28-9394-45f5-aa23-a38dd92391f5','','',NULL), -('15752','Nitrogen','Cargo','Cargo','ab30e42d-ea50-4e6f-9bb8-f8246d22d52b','','',NULL), -('15753','SolarFlare','PowerPlant','Power','bec88ea5-1dc1-4c87-836c-e9b9026369be','','',NULL), -('15754','KLWE_MassDriver_Barrel_S1','WeaponAttachment','Barrel','f1af3301-9a3c-4f9b-9a12-a1046b5dc944','','',NULL), -('15755','Seat','SeatAccess','UNDEFINED','9ecff7cf-1496-4904-87f6-34182f326d64','','',NULL), -('15756','PAB-1 Arms Blue','Armor','Arms','61e84df8-0cfe-4be7-8eb1-2faa25996714','','',NULL), -('15757','Paint_300_SeatTrim_GlossRed','Misc','UNDEFINED','e60baf7f-31b1-48fa-8d8a-50668298a623','','',NULL), -('15758','Door Control','Door','UNDEFINED','e484b6e4-0ef5-443f-aa49-9605d5cca0c7','','',NULL), -('15759','box_plastic_2_005x005x005_a','Cargo','UNDEFINED','957a6869-8a01-4d08-a266-1b3e4a731814','','',NULL), -('15760','CRUS_Intrepid_Pilot_Dashboard','SeatDashboard','UNDEFINED','eabfbd62-6236-4de4-924c-81530e349b39','','',NULL), -('15761','Door Control','Door','UNDEFINED','666f2bc3-5130-4b64-887c-9cf5659492c9','','',NULL), -('15762','MISC_Prospector_RADR_StarMap','Display','UNDEFINED','d0ea0f6a-6764-4b61-ab3b-86ba3942d076','','',NULL), -('15763','Recycled Material Composite','Cargo','Cargo','e9a18ff1-16a1-4545-a7aa-088c56c022b2','','',NULL), -('15764','Animus Missile Launcher','Weapon','Large','3666c8ac-d552-4006-8c47-7e8f773b11a4','','',NULL), -('15765','CBH-3 Helmet Imperial','Armor','Helmet','d960452f-a083-40ed-8e68-2150f13ede31','','',NULL), -('15766','Remote Turret','Turret','TopTurret','43d95e9f-143c-c8c5-073e-2e4bb6a98cae','','',NULL), -('15767','Manned Turret','TurretBase','MannedTurret','632fdd8d-cad8-4e92-bf9d-ee4fcf832bfd','','',NULL), -('15768','RSI_Apollo_Docking_Floor','Door','UNDEFINED','42ff2349-76d0-b4f6-59be-d1aef3d24f9f','','',NULL), -('15769','H_Dashboard_Projector_HUD_ANVL_Carrack_CommandStation','Display','UNDEFINED','3cc9ac7f-b9da-471f-87dc-b63a717a4f47','','',NULL), -('15770','Montara Gloves','Char_Clothing_Hands','UNDEFINED','8a180042-12e3-47f3-9220-69ad5ec072cd','','',NULL), -('15771','SHIELDS','ShieldController','UNDEFINED','e6fb1d36-dcee-4872-b5b8-6e3750e29d4d','','',NULL), -('15772','Seat','Usable','UNDEFINED','07793e41-7559-4497-a57b-9b71422fa63e','','',NULL), -('15773','Manned Turret','TurretBase','MannedTurret','9a243180-01a8-4467-88a7-158c34852137','','',NULL), -('15774','AEGS_Gladius_Thruster_Mav_Joint_01','ManneuverThruster','JointThruster','0082c17c-4b9b-4458-bc13-bd64f0e87584','','',NULL), -('15775','Potassium','Cargo','Cargo','4329908c-259c-4052-a860-ae68f685f305','','',NULL), -('15776','ESPR_Talon_Thruster_Main_BR','MainThruster','FixedThruster','db461c3c-20c8-424b-99e7-b707cf60d931','','',NULL), -('15777','Carryable_1H_CY_drug_medical_pills_1_a_AIOnly','Misc','UNDEFINED','be47e1c5-b67c-4ad3-8f62-7ba86963c4e8','','',NULL), -('15778','Seat','SeatAccess','UNDEFINED','7080f4fe-cda5-43bb-9f83-8aa42d8e8d22','','',NULL), -('15779','Pepperoni Pizza (Slice)','Food','Consumable','ce717667-3d35-4af6-8863-008bc23df42d','','',NULL), -('15780','Paint_300_SeatTrim_CarbonFiber','Misc','UNDEFINED','00756eb7-cc89-494d-8330-537bfcb87c84','','',NULL), -('15781','Compboard','Cargo','Cargo','9bfd6c92-851e-4f3d-97fb-526b23d5b45e','','',NULL), -('15782','Fotia Seedpod','Misc','Harvestable','18dd9c97-e5eb-42fd-9266-1bb4255c532c','','',NULL), -('15783','Door','Door','UNDEFINED','9e4c968f-c64c-43a0-96ce-7cc37b2cce34','','',NULL), -('15784','ORIG_890_Jump_Thruster_Mav_MSL','ManneuverThruster','FixedThruster','230ebeea-596a-4009-9658-de3c847d1736','','',NULL), -('15785','game_chess_1_pawn_b','Misc','UNDEFINED','51aa0404-51ac-4cf6-a8b5-04b61bc580d6','','',NULL), -('15786','Apollo Alliance Aid Red Livery','Paints','UNDEFINED','35d1e4cc-b244-47bf-9b40-f73441cfaa63','','',NULL), -('15787','Table_Booth_4_Seat_rdwn_b','Usable','UNDEFINED','90a56883-189f-4f61-a219-86315fc5853b','','',NULL), -('15788','Savrilium (Ore)','Cargo','Cargo','4ed0b502-4054-4d56-837b-ed0a38b450f1','','',NULL), -('15789','TRGT. STATUS','Seat','UNDEFINED','a4de3e11-828d-4d12-a5ea-54ac56d97c7b','','',NULL), -('15790','Door','Door','UNDEFINED','dcd83d01-af89-4067-8bca-9f740576c85e','','',NULL), -('15791','Idris_Pilot_Rm_Locker_L','Player','UNDEFINED','e9171e8b-7cb3-4eec-b681-c70f24c4f8cd','','',NULL), -('15792','AEGS_Sabre_Thruster_Mav_BottomFR','ManneuverThruster','JointThruster','c0c83f45-1476-4de4-963d-d6d636b6f224','','',NULL), -('15793','Atlasium','Cargo','Cargo','6e105c27-28c4-415a-8e57-b8bc48581179','','',NULL), -('15794','Calister Pants Tosca','Char_Clothing_Legs','UNDEFINED','a3b0ef25-c188-49f4-9a70-30efad2b0818','','',NULL), -('15795','Lynx Nebula Livery','Paints','UNDEFINED','574031b7-06d5-4ff3-97f5-2185e9df0f48','','',NULL), -('15796','Bexalite (Raw)','Cargo','Cargo','a0ce715e-18c8-43d6-9ebf-eb618496e245','','',NULL), -('15797','Carrack 2950 Best In Show Livery','Paints','UNDEFINED','1366f2ed-f5be-43ed-b5b2-11369508ca2a','','',NULL), -('15798','Idris Sea Serpent Livery','Paints','UNDEFINED','ae1ee008-a458-477a-85a6-6500df1f293c','','',NULL), -('15799','Ornate Drinking Gourd','Drink','UNDEFINED','2258b64b-471e-480c-92d4-5420d532392c','','',NULL), -('15800','INTK_ESPR_Prowler','FuelIntake','Fuel','26869d68-f8f1-4232-aaf8-0d0ae264d90b','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('15801','Tumbril Storm Turret','Turret','TopTurret','e1e59a86-ec92-4c20-a33c-e5a2834af2c4','','',NULL), -('15802','Flight Blade','FlightController','UNDEFINED','ecf0648d-a917-4acb-824b-b43dab5ea18e','','',NULL), -('15803','RSI_Zeus_Thruster_Main_Top_Right','MainThruster','UNDEFINED','cbdfbd9f-4320-4113-b44b-f61be518ae6e','','',NULL), -('15804','TRGT. STATUS','Seat','UNDEFINED','f3e98f85-ae23-4931-880c-a11f35de20e8','','',NULL), -('15805','Bed','Usable','UNDEFINED','73462172-0640-47d6-9412-bab99201b484','','',NULL), -('15806','ESPR_BallisticCannon_Ventilation_S5','WeaponAttachment','Ventilation','6594c807-395c-4930-9aa5-9bbc912e7946','','',NULL), -('15807','Custodian \"Big Boss\" SMG','Weapon','Medium','856c9b52-3336-498c-a2e0-70353ac565bc','','',NULL), -('15808','Vortex','PowerPlant','Power','75d69d04-429b-47e1-b439-4d8e9e4e6bce','','',NULL), -('15809','Gallant Rifle','Weapon','Medium','8bc41f99-ad80-4050-99ff-958c0b54c973','','',NULL), -('15810','Seat','Usable','UNDEFINED','689bc57d-b99a-4160-be49-bb242d70db7b','','',NULL), -('15811','Antium Legs Storm','Armor','Legs','23dba495-9b54-4a33-be6a-365ff8eebb14','','',NULL), -('15812','Venture Undersuit Ascension','Armor','Undersuit','90aead43-ba23-46f0-be7c-554407479f48','','',NULL), -('15813','Book','Misc','UNDEFINED','7e34d968-1261-444f-b71f-d875349c1805','','',NULL), -('15814','Tarantula GT-870 Mark 2 Cannon','Weapon','Gun','972c562f-bc9b-441c-a2fb-785293e54eda','','',NULL), -('15815','fruit_plant_2_a_6003','Misc','UNDEFINED','425da55f-93ab-4c68-bca8-73fd3d4bc91e','','',NULL), -('15816','Book','Misc','UNDEFINED','2173a44f-5a91-493e-bb15-9a319c6ff490','','',NULL), -('15817','Book','Misc','UNDEFINED','437efd9c-0ff6-40ce-b710-29f5abb045b5','','',NULL), -('15818','fruit_plant_2_a_4003','Misc','UNDEFINED','4da42dee-9fa1-4ee4-adfa-2b96875e8f78','','',NULL), -('15819','Book','Misc','UNDEFINED','54cf1405-6c00-4a59-8342-4780e110a397','','',NULL), -('15820','fruit_plant_2_a_5003','Misc','UNDEFINED','c2edd484-87ef-4207-a13e-584401959840','','',NULL), -('15821','fruit_plant_2_a_2003','Misc','UNDEFINED','0e935a67-077b-4df8-91a9-52bb0bb356c1','','',NULL), -('15822','HRST_LaserRepeater_PowerArray_S3','WeaponAttachment','PowerArray','84c58f49-9b32-4d58-a1fe-d25a23ffcb48','','',NULL), -('15823','fruit_plant_2_a_3003','Misc','UNDEFINED','f1213ff0-4743-488b-97fb-7032a38b21de','','',NULL), -('15824','m_human_mannequin_base_armor','ShopDisplay','UNDEFINED','2f62265d-f7ca-4319-ac99-b9d2c8a088ea','','',NULL), -('15825','MISC_Starlancer_Copilot_Seat_TAC','Seat','UNDEFINED','957e8c8f-935b-4782-9c18-bc1ca5ee6630','','',NULL), -('15826','RSI_Zeus_CL_Thruster_Mav','ManneuverThruster','UNDEFINED','c50ce2e9-ae27-46eb-9c55-df1a2063c3a1','','',NULL), -('15827','MISC_Starlancer_Thruster_VTOL_Small','ManneuverThruster','FixedThruster','e1d5236a-ee21-4d12-be87-a49ef0e10066','','',NULL), -('15828','Door Control','ControlPanel','DoorPart','22df0f68-3201-417b-b490-06524e44bb3b','','',NULL), -('15829','CRUS_Spirit_Pilot_Dashboard','SeatDashboard','UNDEFINED','130982fe-80b6-4031-8d50-863f02643fa1','','',NULL), -('15830','ADP-mk4 Core Exec','Armor','Torso','f686308f-c08d-49bb-a6db-ebf76ab9d610','','',NULL), -('15831','ANVL_Ballista_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','714fad99-a784-4124-b06b-be2d4883356c','','',NULL), -('15832','Weapon Rack','Door','UNDEFINED','dbdb51f7-a4f3-4562-8956-052fa6befe72','','',NULL), -('15833','Microid Battle Suit Core Lowland','Armor','Torso','08617bd1-cf10-4716-9057-4f6fdd162396','','',NULL), -('15834','Door Control','Door','UNDEFINED','5e075aa0-2087-4fff-a107-7e43e11aa6aa','','',NULL), -('15835','m_human_mannequin_rsi_suit_09','ShopDisplay','UNDEFINED','add85708-78f6-4af5-bc92-a22a17429636','','',NULL), -('15836','Door Control','Door','UNDEFINED','c91ea705-4eaa-4f57-b807-784efcfc6007','','',NULL), -('15837','Artimex Arms Starchaser','Armor','Arms','6f0c55f8-fe90-4a32-b2c5-33c4fd722f91','','',NULL), -('15838','Mantis GT-220 Gatling','Weapon','Gun','b837397c-47b6-45e7-b409-db290a068b47','','',NULL), -('15839','Dashboard','SeatDashboard','UNDEFINED','6a9e01da-d88d-4c1f-bd01-8ead26fafaa6','','',NULL), -('15840','Door Control','Door','UNDEFINED','81bec30e-c4ac-47e9-a1b5-b2301b1a1dd8','','',NULL), -('15841','Body','Char_Clothing_Torso_0','Medical','e8222b04-5f65-4dbe-85a5-f34cad72abb2','','',NULL), -('15842','Door Control','ControlPanel','DoorPart','12a37fb4-21ce-41ca-92d0-15feb9fd7a0b','','',NULL), -('15843','Morozov-SH Arms Red Alert','Armor','Arms','b170978e-5df2-42df-ac14-e3ae40b81159','','',NULL), -('15844','Artimex Helmet Lodestone','Armor','Helmet','e05f523f-2879-46a1-9d8e-5f236d18d46d','','',NULL), -('15845','RSI_Apollo_Medivac_Thruster_VTOL','ManneuverThruster','FixedThruster','9ef2fca6-4e6b-4907-acaf-cec1f4271033','','',NULL), -('15846','Tuvois Jacket Twilight','Char_Clothing_Torso_1','UNDEFINED','cb8c777f-1393-485c-8e41-a516cfcd6ed8','','',NULL), -('15847','CBH-3 Helmet Base','Armor','Helmet','3d06b920-80a4-4db2-b5be-51268afb09b5','','',NULL), -('15848','Zip','Cargo','Cargo','04e75b1c-3524-4671-8b53-5768c8321152','','',NULL), -('15849','Geist Armor Arms Forest','Armor','Arms','b14102dd-6b92-40b7-85e9-3aec7c6011fa','','',NULL), -('15850','Keldur Hat and Indigo Goggles','Char_Clothing_Hat','UNDEFINED','e4ee9492-dbf7-432a-9de5-bd4dcbe0279b','','',NULL), -('15851','Seat','SeatAccess','UNDEFINED','1008ca55-07ba-4e23-8917-c18e8a42b4f5','','',NULL), -('15852','Internal Tank','QuantumFuelTank','QuantumFuel','452cc498-a39d-487c-d08e-2a277a7e4c97','','',NULL), -('15853','Seat','Usable','UNDEFINED','28cc8173-b29e-4f0c-a95d-3d3168bf1b14','','',NULL), -('15854','RSI_Perseus_Thruster_Retro','ManneuverThruster','Retro','5cc70ff5-46e8-4875-a6d6-eed4ce12fbcb','','',NULL), -('15855','Medical Bed','Usable','UNDEFINED','76519970-e758-4d90-a05f-879ae61ee128','','',NULL), -('15856','Mustang Beta Ship Armor','Armor','Medium','92bfd039-7c72-45eb-9d09-b1a2d500f481','','',NULL), -('15857','Anvil Decoy Launcher','WeaponDefensive','CountermeasureLauncher','05230f31-baae-48c6-ad02-5ca9c7b83071','','',NULL), -('15858','Cutter Foundation Fest Livery','Paints','UNDEFINED','9ef064d1-40a9-4f88-b1a9-e6161c5ea4f8','','',NULL), -('15859','Adiva Jacket Twilight','Char_Clothing_Torso_1','UNDEFINED','0e9adeb1-78b2-42a2-b26e-a821f8b20b55','','',NULL), -('15860','P4-AR \"Blacklist\" Rifle','Weapon','Medium','9aded579-9c99-4c61-8f70-d0f5c1b177c8','','',NULL), -('15861','Oracle Helmet Imperial','Armor','Helmet','144aac81-8453-4acb-89ea-3d9b5df06fba','','',NULL), -('15862','Nox Ocellus Livery','Paints','UNDEFINED','bd2c0372-f696-402d-bda3-cea77a73005b','','',NULL), -('15863','Libio Jacket Twilight','Char_Clothing_Torso_1','UNDEFINED','95ab2312-05c5-405e-9d13-0bf473015afd','','',NULL), -('15864','Flight Blade','FlightController','UNDEFINED','3ae35076-1ee3-4aa7-9147-73249a2f0e95','','',NULL), -('15865','Ultra-Flow','Cooler','UNDEFINED','5ffb1abc-c4ed-4413-b882-ccd848ca09a2','','',NULL), -('15866','Carryable_2H_FL_box_openable_1_a','Misc','UNDEFINED','114187fd-e39a-4a07-897a-51da0fcfebbb','','',NULL), -('15867','ORIG_890Jump_CargoGrid_Hangar','CargoGrid','UNDEFINED','63916830-0b18-478e-8975-af718db7a1ac','','',NULL), -('15868','weapon_underbarrel_light_wide_blue_01','WeaponAttachment','Light','df978ce2-2718-4be5-b29c-38bf73ed9746','','',NULL), -('15869','ARMR_ANVL_Ballista','Armor','Medium','4735a555-aab0-465b-88b9-73a639253b2d','','',NULL), -('15870','INTK_RSI_Apollo','FuelIntake','Fuel','46e964ab-37b2-a7e1-39de-32019444718e','','',NULL), -('15871','KRON_LaserCannon_FiringMechanism_S1','WeaponAttachment','FiringMechanism','18908398-4f9d-44c6-90f4-243a3e636fe9','','',NULL), -('15872','ORC-mkV Core Desert','Armor','Torso','6b8a0f0e-a370-4aa7-a5ab-e8b70fc7e450','','',NULL), -('15873','Seat','Usable','UNDEFINED','10a94343-92dc-47f4-9714-0a9eb0a22b31','','',NULL), -('15874','BRRA_LaserCannon_AP_AutomatedTurret','Weapon','Gun','b820e149-7b41-45b4-ac7d-8dfb75383f25','','',NULL), -('15875','Ati Jacket Black','Char_Clothing_Torso_1','UNDEFINED','0ac0979f-710f-4cd6-a11a-5eb2c867b204','','',NULL), -('15876','INTK_VNCL_Blade','FuelIntake','Fuel','10bd15eb-6d8f-4dc6-a68b-6996d787fb2d','','',NULL), -('15877','Nyman Jacket Twilight','Char_Clothing_Torso_1','UNDEFINED','15b94cf3-80f5-45e2-a34e-f3b9d75f9ec0','','',NULL), -('15878','Drivetrain','WheeledController','UNDEFINED','e61210d9-cc3a-47d6-8346-717d8af8383b','','',NULL), -('15879','Processed Goods','Cargo','Cargo','d11d1cc4-e42b-4632-ab61-b72583b34e1f','','',NULL), -('15880','ORIG_125a_Thruster_Main_Left','MainThruster','FixedThruster','e279c1ec-a9da-4e32-9530-085878996c34','','',NULL), -('15881','Walesko','FPS_Consumable','Hacking','61940830-d583-4584-9e15-e2e01a746a5a','','',NULL), -('15882','Quartz','Cargo','Cargo','43a33d46-7c6e-4324-9a99-ccce709339ab','','',NULL), -('15883','Winter-Star EX','Cooler','UNDEFINED','5800c752-938f-4b6a-b39b-7f770c6fa060','','',NULL), -('15884','Stud','Char_Head_Piercings','UNDEFINED','a1f09fc9-546c-4e48-9178-20d4aaae8193','','',NULL), -('15885','INTK_DRAK_Cutlass_Blue','FuelIntake','Fuel','2178d506-ee13-45bc-a86d-516d37675869','','',NULL), -('15886','Bengal_BallisticCannon_Ventilation_S8','WeaponAttachment','Ventilation','6324de5d-9a51-43fe-a6c9-48075e02d676','','',NULL), -('15887','Colonialism_Outpost_RN_Resource_Relay','Relay','UNDEFINED','094f6c05-394b-4299-a699-7b050981ba32','','',NULL), -('15888','Synergy','Drink','Bottle','8ad674de-d858-4a6e-aba7-1399e39fc76c','','',NULL), -('15889','Prowler Elysian Livery','Paints','UNDEFINED','f171609e-962c-482f-93b4-1752b36c39fb','','',NULL), -('15890','Adrift Shirt White','Char_Clothing_Torso_0','UNDEFINED','d7bf624e-6c62-4a31-ab14-aba9254bfc55','','',NULL), -('15891','Nomad Deck the Hull Livery','Paints','UNDEFINED','592a7168-6b35-4cc5-b0bf-e2a75ff0f50a','','',NULL), -('15892','Origin Jumpworks Noise Launcher','WeaponDefensive','CountermeasureLauncher','399b7d33-52b6-485f-83af-ae53010ebeac','','',NULL), -('15893','Spirit Stalwart Livery','Paints','UNDEFINED','8fe508e0-470a-4e92-b257-394ee7f125e4','','',NULL), -('15894','Lynx Core Purple','Armor','Torso','32fe4759-e37e-4644-b5fe-79629cc7a65f','','',NULL), -('15895','Seat','SeatAccess','UNDEFINED','0d8c727b-a71c-4105-b02a-2da77c3ececc','','',NULL), -('15896','weapon_underbarrel_light_wide_gold_01','WeaponAttachment','Light','44fe968c-9e0b-4612-a166-6a2aae013cc6','','',NULL), -('15897','DCP Armor Legs Jungle Camo','Armor','Legs','551e9712-2692-403f-a4fe-0a441d8f7be1','','',NULL), -('15898','Internal Tank','FuelTank','Fuel','8a492116-41e4-49d3-90da-450da8d3bd27','','',NULL), -('15899','GPI_Relay_1slot','Relay','UNDEFINED','7f69f367-3287-4e63-923a-122c18b8e032','','',NULL), -('15900','Carryable_TBO_FL_16SCU_Commodity_ProcessedGoods_EvidenceBox','Cargo','Cargo','3dc7fd9b-89dd-4e3a-b8c3-f39487b25dd1','','',NULL), -('15901','Pulverizer \"Hemlock Camo\" LMG','Weapon','Medium','34ed9a54-3c88-429f-93a4-e5cdf7d99bc1','','',NULL), -('15902','SightRight Goggles Yellow','Char_Accessory_Eyes','UNDEFINED','8431c4ac-6d13-47bb-8e4d-24cf15ed72e5','','',NULL), -('15903','Door Control','ControlPanel','DoorPart','e63c82b1-c460-49b3-ab67-bf102f5d98ca','','',NULL), -('15904','Debnam Gloves Tan','Char_Clothing_Hands','UNDEFINED','dd14f975-4b73-4551-80d5-f1aa32babcd0','','',NULL), -('15905','Carryable_1H_CY_tool_manual_socket_1_f','Misc','UNDEFINED','dac35cc4-5227-4926-81ab-52db34c5009e','','',NULL), -('15906','XIAN_Scout_Thruster_Aux_Joint','ManneuverThruster','FlexThruster','38a98af8-c27a-45fd-b93b-8674305406ee','','',NULL), -('15907','ANVL_Hornet_F7C_Thruster_Retro','ManneuverThruster','JointThruster','72032cf5-a26f-49d5-a301-e5bf5d1e7dde','','',NULL), -('15908','Door Control','Door','UNDEFINED','9500239d-7876-4b05-9158-e8b9868c75fd','','',NULL), -('15909','Gold','Cargo','Cargo','ac6d063d-958c-4559-90bd-a3c5f70dfa02','','',NULL), -('15910','Cordimon Jacket Dark Green','Char_Clothing_Torso_1','UNDEFINED','702a74b9-330f-414c-8ef0-f1dd42fcc114','','',NULL), -('15911','TRGT. STATUS','Seat','UNDEFINED','b67e4271-abb6-4fd7-836f-a7d43e0d242b','','',NULL), -('15912','CRUS_Star_Runner_Locker_Hab','Player','UNDEFINED','81ef020d-a5cc-4440-8f11-70448f61c7fc','','',NULL), -('15913','Falston Jumpsuit \"Hurston Edition\"','Char_Clothing_Torso_1','UNDEFINED','f887d87e-b904-4dc6-8f41-524ea2b9b8c6','','',NULL), -('15914','CSV Jolt Livery','Paints','UNDEFINED','c3969c1b-7a69-4f7f-b3d9-969e95e9af45','','',NULL), -('15915','Shutters','AIModule','UNDEFINED','dd8fac90-605e-4668-96c5-7e8172476b88','','',NULL), -('15916','Shiv Gideon Livery','Paints','UNDEFINED','8da73345-f6bc-486a-96a4-8baf43042339','','',NULL), -('15917','Remote Turret','Turret','BottomTurret','708d66c1-fe86-4064-8e5d-808e46519ac2','','',NULL), -('15918','Door Control','ControlPanel','DoorPart','195935a6-5972-4a07-9a0e-4aa10ad18343','','',NULL), -('15919','PTV Rifle Green Livery','Paints','UNDEFINED','c684aeb1-5f07-4221-b737-69e886754368','','',NULL), -('15920','Morozov-SH-I Arms Lifeforce','Armor','Arms','0705fa6f-58ac-482a-818e-379557ac17e9','','',NULL), -('15921','Drink_bottle_rum_01_a','Drink','Bottle','8f91c673-4be3-414c-83da-e7a892ecffb0','','',NULL), -('15922','Revenant Pod','Misc','Harvestable','c236e322-5c63-4d82-88ff-0317371c36c6','','',NULL), -('15923','RSI_Scorpius_Thruster_Retro_Right','ManneuverThruster','JointThruster','3bea9cf4-7acf-42e1-b495-2eee9a8132c1','','',NULL), -('15924','Kino Shoes Dark Red','Char_Clothing_Feet','UNDEFINED','a84ad620-a9ed-431c-9029-b6292e911d90','','',NULL), -('15925','Door Control','Door','UNDEFINED','04074f82-9d55-42e2-9082-2c3b436069aa','','',NULL), -('15926','SHIELDS','ShieldController','UNDEFINED','93deb753-f698-49ef-8299-d6f8698235e2','','',NULL), -('15927','tool_power_1_case_a','Misc','UNDEFINED','f4ead43c-bb5c-4a33-817f-8f58fc4bed2a','','',NULL), -('15928','Seat','Usable','UNDEFINED','58eacb5b-f2ca-43e5-b722-7a0e4f8d1814','','',NULL), -('15929','Internal Tank','QuantumFuelTank','QuantumFuel','ed0f1942-801b-48a7-a25f-34b50b7d2cf4','','',NULL), -('15930','Weapon_Rack_4_Slots_MRAI_Guardian_MX_Ext','Usable','UNDEFINED','487835cf-a178-1e36-bf73-86312da19dbe','','',NULL), -('15931','Blood_Decal_Gore1','Decal','DoorPart','ad80bc69-cc07-4fae-9999-663c8c95da44','','',NULL), -('15932','Dust Devil Arms Epoque','Armor','Arms','1aa44faa-2a58-4b64-a1ba-5d63c1495a92','','',NULL), -('15933','Pulse \"Crusader\" Laser Pistol','Weapon','Small','f7dde345-0bf3-4313-8105-d2d164f1eacf','','',NULL), -('15934','Table_Booth_2_Seat_RSI_Apollo','Usable','UNDEFINED','4cbaf075-d4df-9d18-29ad-19a96108a4a6','','',NULL), -('15935','Radar_Display_MISC_Hull_C','Display','UNDEFINED','ad77717a-02d8-4a4d-afd4-29596cfdd17f','','',NULL), -('15936','ORC-mkV Core Blue','Armor','Torso','7a84d329-ec99-420b-8a40-3d6521e5602e','','',NULL), -('15937','Vehicle_Screen_MFD_Holographic_Glaive_TR','Display','UNDEFINED','771a2dae-c344-4c87-a128-e23f003e6df9','','',NULL), -('15938','Fresnel \"Molten\" Energy LMG','Weapon','Medium','dc6043c9-6080-4e03-b95b-6ab79c736215','','',NULL), -('15939','facial_hair_006','Char_Head_Beard','UNDEFINED','ffb50f1a-cf01-4275-8216-71df949a2a9c','','',NULL), -('15940','Internal Tank','FuelTank','Fuel','55e1a0d5-3a92-4c69-b992-ffa1b933bab7','','',NULL), -('15941','Torreto Pants Emerald ','Char_Clothing_Legs','UNDEFINED','8f01818c-80d8-4e2b-95dd-0916b48ace6c','','',NULL), -('15942','GSX-HP','ExternalFuelTank','UNDEFINED','a0db0a51-dc2f-4c33-be3a-5949aac4a384','','',NULL), -('15943','Falston Jumpsuit \"ASD Edition\"','Char_Clothing_Torso_1','UNDEFINED','baaf7f61-0c81-4328-acce-fc54143e2114','','',NULL), -('15944','Door_Default_Keypad_Prelude','Door','UNDEFINED','7e6076a8-84db-426c-8fa7-1414e9473d73','','',NULL), -('15945','Edgewear Pants Yellow','Char_Clothing_Legs','UNDEFINED','11b2f120-6abc-416b-94ab-17a742cd7d9e','','',NULL), -('15946','Mivaldi Pants Tan','Char_Clothing_Legs','UNDEFINED','18109941-ef7c-425e-ab7c-df32ab75486a','','',NULL), -('15947','Horizon Helmet Dark Green','Armor','Helmet','7b23197c-5629-4b5d-b915-1aed33e4625c','','',NULL), -('15948','RSI_Constellation_Phoenix_Thruster_Retro','MainThruster','FixedThruster','72da4e67-36f8-4f52-af9f-760e0e930534','','',NULL), -('15949','Pite','Char_Head_Piercings','UNDEFINED','5f8c8889-acd3-462d-97c6-d6996e528a10','','',NULL), -('15950','Flight Blade','FlightController','UNDEFINED','051ac3c8-1504-46d9-be13-200f43f467cb','','',NULL), -('15951','Mug','Drink','UNDEFINED','13f8566b-57c5-438e-882b-f5c24cf63ed8','','',NULL), -('15952','Dashboard','SeatDashboard','UNDEFINED','83e91699-4e11-4c64-bc42-966bcc8183aa','','',NULL), -('15953','ThermoWeave Coat','Char_Clothing_Torso_1','UNDEFINED','8487a67a-d47c-42bb-aa53-2f85c7f1d7f1','','',NULL), -('15954','MISC_Reliant_Thruster_Main','MainThruster','FixedThruster','b0139c2f-202f-4efa-89ae-7a45aaa7bff2','','',NULL), -('15955','DockingTube_Fuel_Ports_RSI_Aurora_ES','DockingCollar','UNDEFINED','9ce14623-6aa3-4115-8bbe-2840641149bf','','',NULL), -('15956','TCS-4 Undersuit Crusader Edition','Armor','Undersuit','883d13c8-cd3c-4ada-9851-a2ec83d39bcd','','',NULL), -('15957','Salvation Chimaera Livery','Paints','UNDEFINED','a5838d19-acc4-4aa6-8fd4-08fd056ae55c','','',NULL), -('15958','Door Control','Door','UNDEFINED','8bce26e2-f80b-4c9b-ab95-b2e5a6900880','','',NULL), -('15959','Lynx Arms Yellow','Armor','Arms','bc64ccce-a776-463e-bf6c-ebf17a9e17d9','','',NULL), -('15960','WeaponMount_Gun_S1_MISC_Starlancer_TAC_Right','WeaponMount','WeaponControl','3dbad7f0-ee82-436d-81e7-9f17e6df8f03','','',NULL), -('15961','Access','SeatAccess','UNDEFINED','7466a353-9464-4158-a91c-40d932b9ffa2','','',NULL), -('15962','Chiron Backpack Samaritan','Armor','Backpack','c4153a6c-f7e2-436b-84fa-ebf29e5aa33f','','',NULL), -('15963','GAMA_Syulen_CargoGrid_Main','CargoGrid','UNDEFINED','94fc5f4a-241b-4100-a685-949848c60f1a','','',NULL), -('15964','Gamma Plus LL (3x Holographic)','WeaponAttachment','IronSight','009b533f-e818-4dc8-a81c-fafd40bb21ba','','',NULL), -('15965','Gadget_Cabinet_kegr_fire_extinguisher_01_nogeo_high','Usable','UNDEFINED','b367c9c7-9a55-4ef2-9468-3092c775c34d','','',NULL), -('15966','Piecemeal Armor Core Grey','Armor','Torso','b0788341-72c3-4440-9e98-93373c0a6daa','','',NULL), -('15967','Door Control','DockingAnimator','UNDEFINED','5f234061-3d8c-4232-98ab-216d4a24ec28','','',NULL), -('15968','Carryable_1H_CY_bottle_whiskey_pourable_1_a','Misc','UNDEFINED','eaea3a80-87a9-4223-849a-0127bb71e8bb','','',NULL), -('15969','ht_bench_table_microtech_1_double_a','Usable','UNDEFINED','67cd1fd1-b142-4697-910c-cbc603d8fd13','','',NULL), -('15970','Seat','Usable','UNDEFINED','bf05f8c2-47ab-4324-a83b-314371c2332e','','',NULL), -('15971','Seat','SeatAccess','UNDEFINED','caf3b41a-028c-4792-a49b-827eaa814e9c','','',NULL), -('15972','Arrow Metallic Grey Livery','Paints','UNDEFINED','03a0e9cb-2d8d-4915-98a5-a15755c70f8b','','',NULL), -('15973','AEGS_Javelin_SCItem_Seat_Bridge_Left','Seat','UNDEFINED','db429995-3b07-45f6-976b-a281220a2d5e','','',NULL), -('15974','Greenwater Shirt Walnut','Char_Clothing_Torso_0','UNDEFINED','b1f48740-6129-4b33-b079-557d217d1d78','','',NULL), -('15975','PC2 Dual S4 Mount','Turret','GunTurret','97158d79-3c49-4138-8c7f-4124bb2e734f','','',NULL), -('15976','ControlPanel_LightSwitch_Krig_Wolf','ControlPanel','DoorPart','1d4d73b2-6c3e-4a7b-83e4-ef19264c3160','','',NULL), -('15977','Rockridge Boots Finch','Char_Clothing_Feet','UNDEFINED','fde433e4-d3b1-40fc-aa31-f294229ca5cc','','',NULL), -('15978','Elevator Control','Door','UNDEFINED','6b4ed104-3902-4d80-b0e8-e95b6e8956ff','','',NULL), -('15979','ARMR_CRUS_Starlifter_A2','Armor','Medium','399d52af-8841-45d8-bac6-aa53ac87c843','','',NULL), -('15980','Stims','Cargo','Cargo','d53e7d62-eea3-4a4c-b713-06bf632e56fa','','',NULL), -('15981','Lumin V SMG Battery (45 cap)','WeaponAttachment','Magazine','1d1e4e17-9258-4ee8-8461-fc866b6d332f','','',NULL), -('15982','GCD-Army Helmet','Armor','Helmet','872dc920-9598-42e4-82fd-31e33f07b676','','',NULL), -('15983','Geist Armor Core Golden Blossom','Armor','Torso','18d46736-fdf6-4337-a057-5dfe2800895d','','',NULL), -('15984','Astatine','Cargo','Small','e4fcf4ad-e52d-4370-9eb2-d4be3c338df2','','',NULL), -('15985','Pulverizer \"Bloody\" LMG','Weapon','Medium','32b9b103-fed2-492d-ab8c-ad0c45296039','','',NULL), -('15986','GATS_BallisticCannon_PowerArray_S2','WeaponAttachment','PowerArray','2c1502e1-138c-443c-85d2-2ad0a326ba28','','',NULL), -('15987','Aegis Hammerhead - Noise Launcher','WeaponDefensive','CountermeasureLauncher','6f1c5848-c01f-43fa-9b2a-00252fbd4d73','','',NULL), -('15988','Slickdry Waders Valencia','Char_Clothing_Legs','UNDEFINED','d2342185-bf81-4576-ae2b-626462471561','','',NULL), -('15989','FBL-8a Helmet (Modified)','Armor','Helmet','615b6668-69f5-4bb1-91e5-a142349ef390','','',NULL), -('15990','Forel Module','MiningModifier','Gun','6c072263-8f32-4ca1-b64b-37d820b0786f','','',NULL), -('15991','Freelancer microTech Livery','Paints','UNDEFINED','7e77dee4-b0fc-4a88-b834-f17ebfd07b53','','',NULL), -('15992','Personal Storage','Cargo','UNDEFINED','277adfd0-9467-4801-b360-0eacb5c396ab','','',NULL), -('15993','Carrack Kepler Livery','Paints','UNDEFINED','735b8e89-0887-458b-ac0d-84362b895927','','',NULL), -('15994','Abrade Scraper Module','SalvageModifier','UNDEFINED','98e0e5ac-3a76-4f3f-be2f-7fabf65a8826','','',NULL), -('15995','mobyGlass Personal Computers','Cargo','Cargo','7beea776-e8ec-4bef-89b0-6aefb934c357','','',NULL), -('15996','Paint_Ballista_Base','Paints','UNDEFINED','29d590d8-cc80-4ed3-8ebb-728676c63ff8','','',NULL), -('15997','Cutter XenoThreat Purge Livery','Paints','UNDEFINED','f08141e7-163f-400a-9958-4153b3f5d395','','',NULL), -('15998','Stirling Exploration Suit Sandstorm Edition','Armor','Undersuit','6235c5cd-097b-420a-bc9e-0c8b924720f0','','',NULL), -('15999','RSI_Polaris_Thruster_Retro_Rear_Outer','ManneuverThruster','FixedThruster','a86da959-eadd-4841-a31b-798a9ab21381','','',NULL), -('16000','INTK_ARGO_MPUV_Transport','FuelIntake','Fuel','1f451f7a-2169-40da-86a9-297fe1da0de2','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('16001','Kino Shoes Aqua','Char_Clothing_Feet','UNDEFINED','d1c6f376-4e59-4568-8a29-b5c1f8e666e9','','',NULL), -('16002','AIModule_Probe_Comms','AIModule','UNDEFINED','793bbf42-6e14-4bbf-9c40-405a22090002','','',NULL), -('16003','Titanium (Ore)','Cargo','Cargo','6c4c8180-7aff-4559-a000-c80e53c417f8','','',NULL), -('16004','ADP Legs Woodland','Armor','Legs','67985f0c-9d48-44f6-ab8c-ea9ba38b211a','','',NULL), -('16005','Hornet Mk II Blacksmith Livery','Paints','UNDEFINED','d5008b87-9740-427e-b82d-6d90de225181','','',NULL), -('16006','Seat','SeatAccess','UNDEFINED','48fd2e74-cabb-46cd-a404-9b68ee23c41d','','',NULL), -('16007','Manned Turret','TurretBase','MannedTurret','b5001feb-f0b9-4857-843f-92a0da73f525','','',NULL), -('16008','VNCL_Stinger_Thruster_Aux_Fixed_01_Top','ManneuverThruster','FixedThruster','c1088c5b-5cba-4ff2-ab87-1a7ea957ca2c','','',NULL), -('16009','Manned Turret','TurretBase','MannedTurret','7de3c63f-a8ef-4d7b-8022-97e189d33449','','',NULL), -('16010','Mountaintop Jacket Vivid','Char_Clothing_Torso_1','UNDEFINED','c4805592-13bf-4bb0-aecb-d197708f3d49','','',NULL), -('16011','UI_Flash_Screen','StatusScreen','AirlockPart','9e43f8ff-a242-4bc0-9ff1-c0db24521184','','',NULL), -('16012','Davin Work Gloves','Char_Clothing_Hands','UNDEFINED','e2f1546d-04e1-4c5b-ad36-f995cf9df2f1','','',NULL), -('16013','MISC_Starlancer_Drone_Seat','Seat','UNDEFINED','2375f001-b3eb-44b0-8757-1014833645a6','','',NULL), -('16014','Seat','SeatAccess','UNDEFINED','ccc75fab-1725-4050-8a96-4ba38bda1692','','',NULL), -('16015','RSI_Salvation_Thruster_Main_Large_Top_Right','MainThruster','FixedThruster','cbdd129b-731d-41f7-b486-cb9dc8c370f5','','',NULL), -('16016','Weapon_Rack_AEGS_3slots','Usable','UNDEFINED','1daecb88-af2d-4b33-8107-5104396962da','','',NULL), -('16017','Strata Backpack Shubin Edition','Armor','Backpack','96337cf5-d1b3-4b86-a086-09342d91f917','','',NULL), -('16018','SCItemDisplayScreen','Display','Default','89508444-db7a-4f25-9abe-af3cfaa0893f','','',NULL), -('16019','Door','AttachedPart','UNDEFINED','ebaeeea5-87e3-4fca-b7f2-cce5a00c83fb','','',NULL), -('16020','MSD-111 Missile Rack','MissileLauncher','MissileRack','142e6235-9f9d-4e5a-b0c9-0a2338f70901','','',NULL), -('16021','Mivaldi Pants Grey','Char_Clothing_Legs','UNDEFINED','fc5a3d45-543e-4ece-9b45-88ff1422ce08','','',NULL), -('16022','Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','60f7674e-cb5d-4a31-a424-16cac3a6b5c1','','',NULL), -('16023','Door','Door','UNDEFINED','f6df19c9-3ea6-4a43-a935-c411741b7555','','',NULL), -('16024','Toughlife Boots Dark Green','Char_Clothing_Feet','UNDEFINED','6ff5cf07-4976-4bb8-8125-d3f1b6d69efc','','',NULL), -('16025','Door Control','Door','UNDEFINED','6351795e-a255-4fa7-b438-cc9fe70c6cd9','','',NULL), -('16026','MISC_Fortune_Thruster_Retro','ManneuverThruster','FixedThruster','4dfc0928-160b-4d45-9eb3-9b99c15fb859','','',NULL), -('16027','Seat','Usable','UNDEFINED','d8717f65-9639-41bd-a1c5-ff4eb52b5f98','','',NULL), -('16028','Carryable_TBO_FL_4SCU_Commodity_ProcessedGoods_OrganHarvesting','Cargo','Cargo','76f25f9b-9ff6-40c1-8712-7adb3b0a3f28','','',NULL), -('16029','Exodus-10 Laser Beam','Weapon','Gun','9fd3b3be-5653-413f-ba8f-0959a0adda89','','',NULL), -('16030','test_station_power_plant','PowerPlant','Power','86f3b48e-d6af-4da5-845d-73c3446a36ee','','',NULL), -('16031','BEHR_BallisticRepeater_Ventilation_S1','WeaponAttachment','Ventilation','92d32493-a96f-4e95-a30b-d026fa37021f','','',NULL), -('16032','FarSight \"Landslide\" (8x Telescopic)','WeaponAttachment','IronSight','32eba44b-1373-4843-b797-d19f4d28b539','','',NULL), -('16033','MXOX_NeutronRepeater_Ventilation_S3','WeaponAttachment','Ventilation','f053a264-c6c8-4383-8140-d8dc980583ea','','',NULL), -('16034','Guardian Blackout Livery','Paints','UNDEFINED','40eac58a-df5e-4af9-815e-9c4a6acf0d39','','',NULL), -('16035','Prota','Cargo','Cargo','edc6aea7-285d-4526-a18d-d8bbabb45265','','',NULL), -('16036','lt_tank_gas_1_0125x0125x0125_a','Cargo','UNDEFINED','adac07db-10e5-4037-8d68-809e79eef592','','',NULL), -('16037','ANVL_Paladin_Thruster_Retro','ManneuverThruster','UNDEFINED','b8b984b5-4d0c-43c0-96b2-8ecf2daec230','','',NULL), -('16038','Carryable_1H_CY_subi_dain_sasu_s01_pl01','Misc','UNDEFINED','6ba6ad9e-c01f-46f2-bb66-eaa26e4c2859','','',NULL), -('16039','AEGS_Reclaimer_Remote_Turret_Console','Seat','UNDEFINED','bb776ecb-7a55-4951-a0d8-4f90ac38e0cb','','',NULL), -('16040','G-2 Helmet Woodland','Armor','Helmet','81471107-53e9-4978-9490-b242d5474f36','','',NULL), -('16041','Oza','Cargo','Cargo','047b4989-d570-43fa-ad08-fc8296834e95','','',NULL), -('16042','6MA \'Kozane\'','Shield','UNDEFINED','39424912-de99-46d1-87a6-0f59696ca60b','','',NULL), -('16043','RSI_Aurora_CL_Thruster_Main','MainThruster','FixedThruster','ba33c2bb-e9aa-487a-8816-3b0174879418','','',NULL), -('16044','Testudo Legs Nightveil','Armor','Legs','11bfd42b-929a-4e45-88d7-11aab92e6176','','',NULL), -('16045','Controller_CapacitorAssignment','CapacitorAssignmentController','UNDEFINED','0219b443-6f28-4aa2-bcc3-cfbff843729d','','',NULL), -('16046','ORIG_M50_Thruster_Main','MainThruster','FixedThruster','aa68a399-e75d-4e7e-a1dc-6b5d7a047d61','','',NULL), -('16047','Arden-SL Arms Crusader Edition','Armor','Arms','c12f1528-3c4e-4552-a8a2-2e4c42ffe594','','',NULL), -('16048','Seat','Usable','UNDEFINED','fff19031-a8da-407e-9759-80b8cb93b17b','','',NULL), -('16049','sc_nvy_deckcrew_nogoggles_helmet_01_01_11','Char_Clothing_Hat','UNDEFINED','ab7f1ce4-32d5-4426-b384-b8ec8328426b','','',NULL), -('16050','MISC_Razor_CML_Flare','WeaponDefensive','CountermeasureLauncher','28c543ea-8a76-4453-a762-37b4b29ab2c9','','',NULL), -('16051','counter_kitchen_1_straight_01x01x01_a','Misc','UNDEFINED','19795bb5-8327-4f06-8a81-f00f00be6ef3','','',NULL), -('16052','Geist Armor Helmet Desert','Armor','Helmet','1d79c531-1c44-40c8-872d-aa686b3b943c','','',NULL), -('16053','MISC_Starfarer_Gemini_Thruster_Retro_Derelict','ManneuverThruster','FixedThruster','9682c1f1-3dba-40a0-bc7a-a9f0417af9b3','','',NULL), -('16054','RSI Default JetPack','Suit','ThrusterPack','0950406a-1361-4814-a9af-d695e46f8cea','','',NULL), -('16055','Railing_Straight_6m_LT_Delta_b','Usable','UNDEFINED','0177fc05-4d1c-401e-8f9a-b2b48bf7e8a9','','',NULL), -('16056','Perseus Incite Livery','Paints','UNDEFINED','44aacee2-1c5d-40bd-bf73-b11c95e047b9','','',NULL), -('16057','Monde Core Delta Camo','Armor','Torso','4b24e755-9cdf-45d4-86af-dcf52b081347','','',NULL), -('16058','ORIG_890_Jump_Thruster_Mav_Fixed_2','ManneuverThruster','FixedThruster','67b305a0-1422-46cf-a709-692594e3cbac','','',NULL), -('16059','Door','Door','UNDEFINED','192228e6-2ead-4a85-b9e4-45ff20a90cfd','','',NULL), -('16060','RSI_Bengal_SCItem_Seat_Generic','Seat','UNDEFINED','f72b9bfb-4e00-42e2-8cef-dae6945ddc76','','',NULL), -('16061','Plasma Fuel Cell','Cargo','Cargo','db3f2a2e-f599-4bea-95e8-fb16b3de44d1','','',NULL), -('16062','Osoian Hides','Cargo','Cargo','062ce0e9-b39a-4266-b7d7-4e9682d88525','','',NULL), -('16063','Plasma Battery','Cargo','Cargo','6df61bd2-2485-4c3a-a4cc-23e095d6339e','','',NULL), -('16064','Quartz (Raw)','Cargo','Cargo','ed4d01fe-f49b-47d1-a3b5-96d3d020b455','','',NULL), -('16065','TrueDef-Pro Legs Black/Silver/Yellow','Armor','Legs','0c8ccdef-4636-4519-b1c8-906766274fff','','',NULL), -('16066','Seat','SeatAccess','UNDEFINED','7207f5af-dc6a-4b5c-ae43-9461d723b8f0','','',NULL), -('16067','Red Renew Smoothie','Drink','Bottle','3bf4cc6c-0170-4246-b278-9ee0005acd72','','',NULL), -('16068','Francis the Stormwal Plushie','Misc','UNDEFINED','25bfc3b1-0a9f-432d-bf20-5509b476739b','','',NULL), -('16069','m_human_mannequin_base_armor_Collector_AaM','ShopDisplay','UNDEFINED','bbf8c9dc-5fc4-498c-9907-4576251a5658','','',NULL), -('16070','Seat','Usable','UNDEFINED','38242533-3051-4f83-bea6-61b03c59f409','','',NULL), -('16071','RSI_Apollo_EmergencyLights_Center','AttachedPart','UNDEFINED','7bd31d46-ad2e-40f9-890f-161d8f638673','','',NULL), -('16072','RipTops Shoes','Char_Clothing_Feet','UNDEFINED','52c9cd37-feb3-4ec8-a6d5-254399d07dcf','','',NULL), -('16073','Apollo Delphi Livery','Paints','UNDEFINED','69960efa-0a33-4066-b038-85fafa550d95','','',NULL), -('16074','Softshell Jacket','Char_Clothing_Torso_1','UNDEFINED','1e10eeee-49a8-45de-89c9-384919239d7b','','',NULL), -('16075','AEGS_Javelin_SeatAccess_Rear_Right','SeatAccess','UNDEFINED','166c0572-05f3-4c7d-b382-d4783ae3dc72','','',NULL), -('16076','Inquisitor Core Earthwork','Armor','Torso','b29853e7-3aa1-4de8-9429-d690f79fb646','','',NULL), -('16077','Door Control','Door','UNDEFINED','efa9374e-90ff-4f52-af4a-387529625ef3','','',NULL), -('16078','MPUV-1T Firebrand Livery','Paints','UNDEFINED','a359ca16-a3c7-4722-932a-4aeda069a514','','',NULL), -('16079','Vehicle_Screen_MFD_Holographic_Glaive_BL','Display','UNDEFINED','35c4b720-5639-4d81-a112-f0ac166608ea','','',NULL), -('16080','Arbor MH1 Mining Laser','Mining','Gun','7a5a7439-15c6-4fae-ba64-788bb905af22','','',NULL), -('16081','SHIELDS','ShieldController','UNDEFINED','ecf272ee-c782-4e50-ae85-d6b978181b32','','',NULL), -('16082','Pambada Knife','Weapon','Knife','1ead23f2-70df-4a7b-8c67-39d6d10ff7f5','','',NULL), -('16083','PH - hdh_boots_01_01_13','Char_Clothing_Feet','UNDEFINED','d806c681-70ef-49b7-b7b9-80d1c0802617','','',NULL), -('16084','Door Control','ControlPanel','DoorPart','7811bb5b-840b-4e25-a66a-8cc5cba8b2d7','','',NULL), -('16085','ORIG_85X_SCItem_Seat_Copilot','Seat','UNDEFINED','78ddb053-e53e-4c3c-b911-5e2cbb36d8bb','','',NULL), -('16086','Idris_Crew_Qtrs_Locker_r','Player','UNDEFINED','024cda95-837a-428d-8e6d-962e285c3142','','',NULL), -('16087','VariPuck S5 Gimbal Mount','Turret','GunTurret','67f0248b-c133-47f9-9806-a255d96195c5','','',NULL), -('16088','Ready-Up Helmet Violet','Char_Clothing_Hat','UNDEFINED','8412c6ca-5c1e-4c4d-b7e5-c416dc7a73c8','','',NULL), -('16089','DockingTube_Fuel_Ports_AEGS_Sentinel','DockingCollar','UNDEFINED','d2ad99a0-b111-4d01-a9dc-37215e7853ce','','',NULL), -('16090','IAE 2954 Hat Purple','Char_Clothing_Hat','UNDEFINED','ccb2ffc8-0229-4f7e-a5fb-3f515c8df8d0','','',NULL), -('16091','Aril Legs Red Alert','Armor','Legs','1025ad17-19a1-4e8f-b571-50c785f6dbb1','','',NULL), -('16092','Marshal Sleeveless Vest','Char_Clothing_Torso_1','UNDEFINED','968334d4-0dc5-44d0-89df-63b73579dfb1','','',NULL), -('16093','Carryable_TBO_FL_24SCU_Commodity_ProcessedGoods_Thrust','Cargo','Cargo','f3903682-b394-4466-9953-687b75556f46','','',NULL), -('16094','ANVL_Hornet_F7_Mk2_Thruster_Retro_Left','ManneuverThruster','Retro','92d5bcd1-f769-4090-bbc6-594b2b979754','','',NULL), -('16095','Tundra','Cooler','UNDEFINED','30ffee03-ee0a-47c5-9b4c-b24203c148d7','','',NULL), -('16096','JOKR_DistortionCannon_FiringMechanism_S1','WeaponAttachment','FiringMechanism','08ee6c17-ad99-43f4-ba80-4089f40601ca','','',NULL), -('16097','Weapon_Rack_1_VOLT_LMG_Uncommon_002','Usable','UNDEFINED','75408c94-25a8-4fb1-959a-1b16ae42da8a','','',NULL), -('16098','Barrel_Attachment','WeaponAttachment','Barrel','38dc4dac-d7c2-4c1e-b142-07f987d77fb0','','',NULL), -('16099','AImodule_ATC_NewBabbage','AIModule','UNDEFINED','b233a0e8-1f50-44d0-983f-d95bb090c5fe','','',NULL), -('16100','DoorProximitySensor_3x5x3','Sensor','DoorPart','66951cf0-e39c-4ef4-878b-c613fbee0aab','','',NULL), -('16101','Molina Ventilation Filters','Cargo','Cargo','13e5bd40-c16d-4194-9b36-4cbb6b010ee6','','',NULL), -('16102','Odyssey II Helmet Sienna','Armor','Helmet','44db8931-8c55-4206-b9f5-8d02686a8215','','',NULL), -('16103','TRGT. STATUS','Seat','UNDEFINED','36dad667-cd8c-42da-b59f-99ea3f874a62','','',NULL), -('16104','Drivetrain','WheeledController','UNDEFINED','accb5e60-f834-4ea3-8a56-93746749bd62','','',NULL), -('16105','Cargo_Slot_Generic_1Slot','Usable','UNDEFINED','574f69c7-a9ab-4a9c-abf7-ea144e78ad0d','','',NULL), -('16106','San\'tok.yai Yilen Livery','Paints','UNDEFINED','172c6e96-db0d-43f1-83c2-8f0c795a56d4','','',NULL), -('16107','H_Dashboard_Projector_HUD_AEGS_Reclaimer','Display','UNDEFINED','eaa2e7c8-74b7-400f-a4f0-d54f7917a28e','','',NULL), -('16108','Loscha Work Vest','Char_Clothing_Torso_1','UNDEFINED','45ef5db5-b81e-4a46-94b9-bca1c005545a','','',NULL), -('16109','GEO Resource Pod','Container','Cargo','d867b41f-23ad-44dc-b0ea-686d287b1f9a','','',NULL), -('16110','Clash Legs','Armor','Legs','63d3e62b-d7ce-4309-ac5a-a3577247e9bd','','',NULL), -('16111','Morozov-SH Legs Thule','Armor','Legs','91639417-38c9-44fb-8571-9cb15f2676ff','','',NULL), -('16112','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','05855de8-4996-43f5-954c-5262821828b7','','',NULL), -('16113','facial_hair_024','Char_Head_Beard','UNDEFINED','92b25f3c-740d-47ec-aae6-f2f20b2ecf68','','',NULL), -('16114','Origin Black Queen','Gadget','UNDEFINED','cd0139eb-beac-4cf8-835f-d58a58cdc8da','','',NULL), -('16115','Mercury','Cargo','Cargo','5e8e8597-d10d-488d-b676-e9d38c0369bf','','',NULL), -('16116','RSI_Aurora_Mk2_Thruster_Main_Left','MainThruster','UNDEFINED','31250b18-bb62-4756-b98c-9b4bc748fd8f','','',NULL), -('16117','ORIG_135c_Winglet_Right','Misc','UNDEFINED','4406a9b7-9513-43f3-acc5-0d91d06ad386','','',NULL), -('16118','Rabum Hat','Char_Clothing_Hat','UNDEFINED','090f37ac-fbfd-4ba4-a55d-83a204f7c0db','','',NULL), -('16119','Ares Star Fighter Aspire Livery','Paints','UNDEFINED','147a6e09-5939-4461-aa37-60f55a82fd92','','',NULL), -('16120','ORIG_400i_Thruster_Mav_Side_R','ManneuverThruster','FlexThruster','bb11fd9c-369c-4d50-96f0-8f368273d7a1','','',NULL), -('16121','Seat','SeatAccess','UNDEFINED','99997916-bb1f-4068-87ad-4b20ea2bf2e2','','',NULL), -('16122','MASTER_tank_carryable_2h','Cargo','UNDEFINED','48ba865b-4e83-45ca-b08c-32bb7a42350f','','',NULL), -('16123','ARMR_MISC_Hull_A','Armor','Medium','c9a721a3-c8b1-4e35-902b-86ef7e9421c7','','',NULL), -('16124','Sturgis Jacket Original','Char_Clothing_Torso_1','UNDEFINED','c7ac5259-82b4-4bb4-b376-1f5566a7c078','','',NULL), -('16125','Tritium','Cargo','Cargo','16be9e82-d5c9-4a7b-a512-13334c627b2f','','',NULL), -('16126','Pingala Seeds','Cargo','Cargo','de90a7b4-47b8-4f70-83c1-b51ba2e52a27','','',NULL), -('16127','Gale Head Cover Purple','Char_Clothing_Hat','UNDEFINED','4fde13d8-5baa-4383-b981-896138238e54','','',NULL), -('16128','Bengal_BallisticCannon_PowerArray_S7','WeaponAttachment','PowerArray','02ae318b-de85-4ac1-bf81-266ea7f251d4','','',NULL), -('16129','TrueDef-Pro Core Black/Silver/Green','Armor','Torso','a7e0b9c6-dabe-4052-bc51-241c057a9427','','',NULL), -('16130','Door Control','Door','UNDEFINED','119d1b48-fc08-4280-bf29-4c09260ea10b','','',NULL), -('16131','fruit_plant_MASTER','Misc','UNDEFINED','69a16ba2-831c-448e-87c9-b2b0501240ff','','',NULL), -('16132','Internal Tank','FuelTank','Fuel','984336f9-3528-4421-9773-e572bc7603f2','','',NULL), -('16133','DoorProximitySensor_2x1x1_3_Directional_Proximity','Sensor','DoorPart','edb59bb4-bc9f-4f45-add1-d7f6e11457ea','','',NULL), -('16134','TRGT. STATUS','Seat','UNDEFINED','bab04778-167f-4ecf-84e6-e61cc8fb6e3f','','',NULL), -('16135','Seat','Usable','UNDEFINED','ed2079f3-fc24-4de3-97fa-e0da417a7c89','','',NULL), -('16136','Venture Arms Purple','Armor','Arms','9ba6da17-8e06-4471-9ae0-b0155ba50f74','','',NULL), -('16137','Idris_Hangar_Locker_r','Player','UNDEFINED','486107ba-7f11-4e35-8605-f67b4e45a6f2','','',NULL), -('16138','DRAK_Cutlass_Red_Thruster_Maneuver_Rear_Top','ManneuverThruster','JointThruster','f35796b6-bb2f-4e37-b387-276b1758264c','','',NULL), -('16139','Door Control','ControlPanel','DoorPart','44d8eb70-5562-ba59-92e3-fdb65e6e11b6','','',NULL), -('16140','Debnam Gloves Red','Char_Clothing_Hands','UNDEFINED','b60125c7-ce19-4f38-92d3-e39300642510','','',NULL), -('16141','Seat','Usable','UNDEFINED','786bd4a9-ce31-43c4-955e-3ccfafefa32e','','',NULL), -('16142','PAB-1 Core Dark Green','Armor','Torso','81074500-7427-4f31-b109-2d78405b64da','','',NULL), -('16143','Karna \"Ascension\" Rifle','Weapon','Medium','ddda1704-45d6-4db8-8e66-4cbb588dfdbe','','',NULL), -('16144','Vanduul S4 Quad Missile Rack','MissileLauncher','MissileRack','f924f436-3c09-48ac-8fe0-7a3d6425ab3a','','',NULL), -('16145','Cyclone Timberline Livery','Paints','UNDEFINED','3620c8f4-13ce-41a6-9045-95b53c80e639','','',NULL), -('16146','Tuvic Outerwear Jacket Mil-Green','Char_Clothing_Torso_1','UNDEFINED','ba384045-842a-4a6f-9029-26b73c712d9f','','',NULL), -('16147','Defiance Core Scorched','Armor','Torso','cfeabbfd-7a4b-4bdf-a24d-7cb752be03d8','','',NULL), -('16148','Ventra Gloves White','Char_Clothing_Hands','UNDEFINED','0df281eb-15d8-48b8-861f-1c5e6e9f2f23','','',NULL), -('16149','sc_nvy_pilot_light_helmet_01_01_01','Armor','Helmet','b9a7f42c-f73b-4f9e-bef0-0edb8a4e1c61','','',NULL), -('16150','Seat','SeatAccess','UNDEFINED','44b3c3e4-6e82-4fc7-a8d5-306500963820','','',NULL), -('16151','CorticoPen (Sterogen)','FPS_Consumable','Medical','354ec8a6-32eb-4747-8e75-03d2703edfd6','','',NULL), -('16152','Citadel Arms Base','Armor','Arms','0609e473-5cf1-4637-8cbd-ad4f2aab0860','','',NULL), -('16153','Cargo_Slot_Prowler_Utility_3Slot','Usable','UNDEFINED','c5766868-d15c-4a65-bf04-a961ee4dd4e7','','',NULL), -('16154','Prowler Polar Camo Livery','Paints','UNDEFINED','bc001bf6-fecb-4b0b-8d93-96c594b3025d','','',NULL), -('16155','Door Control','ControlPanel','DoorPart','fd602626-ab3e-4fef-8fdc-3632fb752492','','',NULL), -('16156','Carryable_1H_CY_drug_painkillers_2_c','Misc','UNDEFINED','11b68a37-6bd9-445f-982b-0d7ad04cb1ce','','',NULL), -('16157','mobiGlas Woodland Casing','MobiGlas','Personal','b24283c2-abe5-45f8-82fa-6b6ec281eb8c','','',NULL), -('16158','Parvat Jacket Autumn Amber','Char_Clothing_Torso_1','UNDEFINED','aa80fd9b-8209-4eb7-a84e-f328db6dff54','','',NULL), -('16159','Snowfall','Cooler','UNDEFINED','f0429b13-6f0d-4ffb-9160-6ae0df03b5cb','','',NULL), -('16160','counter_display_mod_center_a_01x01x01_05Ports','ShopDisplay','UNDEFINED','e9f8eca4-4de7-4ef8-afb0-af289f862325','','',NULL), -('16161','BEHR_BallisticRepeater_FiringMechanism_S3','WeaponAttachment','FiringMechanism','97c3b5cd-4056-4ffe-97f7-05178b45c7fa','','',NULL), -('16162','stand_shop_large_b','ShopDisplay','UNDEFINED','234e95f8-4aa7-4bdb-b7cf-6c16ebaf1156','','',NULL), -('16163','ADP-mk4 Core Justified','Armor','Torso','35f74a89-b98b-4683-bd15-72c0d98be5d8','','',NULL), -('16164','Weapon_Rack_ANVL_Paladin_2_Slot','Usable','UNDEFINED','5b87488e-55fd-4fd2-b703-982ab89e68e4','','',NULL), -('16165','300 Series Twotone Paint','Paints','UNDEFINED','283a9ecd-a0b7-47a5-9c08-3c90065e8edf','','',NULL), -('16166','WorkLife Pants Tan','Char_Clothing_Legs','UNDEFINED','33e97c30-96f4-4572-bfde-68958c24c3c7','','',NULL), -('16167','MacFlex Arms Green','Armor','Arms','0df7af45-cf29-4cb7-8749-b9b2d1ec07bd','','',NULL), -('16168','Arrow TSB Flight Blade','FlightController','UNDEFINED','8969b443-ec80-42a1-8b53-42961fd342e9','','',NULL), -('16169','Door Control','Door','UNDEFINED','a6473369-a6e3-4f11-a348-0b5808ff3cb4','','',NULL), -('16170','Omnisky VI Cannon','Weapon','Gun','1893e596-acaf-49bc-b367-e43e99c2925f','','',NULL), -('16171','Ventris Jumpsuit Crusader Edition Light Blue / Grey','Char_Clothing_Torso_1','UNDEFINED','9a078c94-8132-4403-96d6-b6b3a03fc309','','',NULL), -('16172','IFR-810 Missile Rack','MissileLauncher','MissileRack','d5a0f8c8-a60b-43ac-8d2a-e71ce1ad47fa','','',NULL), -('16173','Caret Pants Charcoal','Char_Clothing_Legs','UNDEFINED','1ad936cf-cb78-4e94-acd0-80d1c098aa6c','','',NULL), -('16174','Ati Jacket Aqua','Char_Clothing_Torso_1','UNDEFINED','3518081c-9a6d-4549-8aad-9455fa433f6f','','',NULL), -('16175','FBL-8a Core Desert Digital','Armor','Torso','e33e7860-2683-4aca-8fc8-269526986fae','','',NULL), -('16176','ORC-mkX Legs (XenoThreat v2)','Armor','Legs','7fde8c0e-cf97-4f01-8926-bf4915d9ae48','','',NULL), -('16177','Hornet Frostbite Camo Livery','Paints','UNDEFINED','5113545b-0df3-4c3f-89f8-a151fb024764','','',NULL), -('16178','Relay','Relay','UNDEFINED','47caf4c8-108e-4cee-8ed6-c0a29618b8c5','','',NULL), -('16179','Inquisitor Arms Brimstone','Armor','Arms','e22eaa6a-cbf9-4af4-8763-6b1da8a31cf7','','',NULL), -('16180','PAB-1 Legs Orange','Armor','Legs','acb79b6d-ad70-40c7-918b-5ec9da00284a','','',NULL), -('16181','Citadel Core Brimstone','Armor','Torso','ffb96ae3-59f3-420e-acbc-fb255e9c43b7','','',NULL), -('16182','Codi the Coramor Bear','Flair_Cockpit','Flair_Static','9ea281be-4a92-47c0-acc3-c128e1f742aa','','',NULL), -('16183','Echo','QuantumDrive','UNDEFINED','85e4dfef-4a24-48ae-8e3f-0998fa1745ab','','',NULL), -('16184','Orbital_Sentry_SCItem_SeatAccess','SeatAccess','UNDEFINED','b32424d8-f91a-4d59-8954-546e38f44a13','','',NULL), -('16185','stand_shop_small_c_PowerPlant','ShopDisplay','UNDEFINED','25a04bcf-d708-407f-8e9b-c0c2e657d86d','','',NULL), -('16186','ORIG_m50_RADR_Display','Display','UNDEFINED','2de11283-bd46-46d3-b09d-cf5c2d67244d','','',NULL), -('16187','Counter_Shop_DumpersDepot','Usable','UNDEFINED','097aa30a-9071-4229-be82-aaad9f836491','','',NULL), -('16188','glass_tumbler_1_a','Misc','UNDEFINED','159c6358-f4bf-4bb7-af93-ae2059fdfc45','','',NULL), -('16189','SHIELDS','ShieldController','UNDEFINED','0ce70826-9857-4a90-afa1-14cdedc99c71','','',NULL), -('16190','Carrack Purple Haze Livery','Paints','UNDEFINED','4fb82e81-e03a-410a-9dd5-750b12fdc589','','',NULL), -('16191','Polar','Cooler','UNDEFINED','9afd1cd3-ce6b-4b0a-abdd-cd7d479ec360','','',NULL), -('16192','CNOU_Nomad_Component_Power','Door','UNDEFINED','84747f3b-23ad-4701-b30b-bfbc457df786','','',NULL), -('16193','ORC-mkV Legs Desert','Armor','Legs','2d1af572-a455-444f-83c6-3ea3b8e729f2','','',NULL), -('16194','INTK_ORIG_600i','FuelIntake','Fuel','9fc9fd57-3f6c-4c16-8e1f-cc60daab659f','','',NULL), -('16195','Gadget_Cabinet_kegr_fire_extinguisher_01_NoRN_ground','Usable','UNDEFINED','672e5dd8-ecae-448e-bb61-16666ad0a135','','',NULL), -('16196','Brush','Misc','UNDEFINED','7ca2ee1b-8c92-48e3-85a9-b4a4221e981a','','',NULL), -('16197','Door','Door','UNDEFINED','e4da2709-0295-489c-898f-8424091b4a2f','','',NULL), -('16198','Paladin Helmet Black/Gold/Red','Armor','Helmet','406ad266-472e-4d66-9c88-f744a347b7aa','','',NULL), -('16199','GPI_Door_1slot','Relay','UNDEFINED','e2e68560-3400-49e7-bbc4-fa64bed71797','','',NULL), -('16200','Seat','Usable','UNDEFINED','222c003b-82d6-4652-9a91-b1caf3bbc2ea','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('16201','Test_OutpostMission_DataPad_KeyCode_4x3_Screen_0','Display','UNDEFINED','99eccce2-d2c0-43f8-a95d-b3d8e247079e','','',NULL), -('16202','Falston Jumpsuit \"ITG Edition\"','Char_Clothing_Torso_1','UNDEFINED','2ec8cf8a-3e20-4b4b-9168-be5e8cfdae05','','',NULL), -('16203','m_human_mannequin_base_armor_Collector_GG_Xanthule','ShopDisplay','UNDEFINED','863554c3-76a3-43be-900b-6f19d60a5c12','','',NULL), -('16204','HRST_LaserScatterGun_FiringMechanism_S3','WeaponAttachment','FiringMechanism','d3edf817-cfe5-45bb-8c9c-4c7c02389970','','',NULL), -('16205','Hangar_FreightElevator_CargoGrid_Large','CargoGrid','UNDEFINED','4ec7d758-58e1-499b-ae1d-2515127a63d6','','',NULL), -('16206','RSI_Salvation_Thruster_Main_Small_Bottom_Right','MainThruster','FixedThruster','5c735096-ed8b-4ff4-9241-a06c34ea7577','','',NULL), -('16207','box_plastic_1_005x005x005_a','Cargo','UNDEFINED','9ca93fc9-d983-4b89-86f1-19133283e3f4','','',NULL), -('16208','CK13-GID Seed Blend','Cargo','Cargo','da0359df-66a8-4dba-a811-b13ff616cab5','','',NULL), -('16209','JDRV_RSI_S04_Bengal_SCItem','JumpDrive','UNDEFINED','22127258-3fee-46f7-9ce6-97adb41a504f','','',NULL), -('16210','Bed','Usable','UNDEFINED','f598580f-17c8-4cc6-92c2-da28293df3cb','','',NULL), -('16211','Audio-Visual Equipment','Cargo','Cargo','531183c0-0859-4c47-832f-82796185ee3b','','',NULL), -('16212','Manned Turret','TurretBase','MannedTurret','7cb7dafc-d9c8-40de-8dc6-8b85bc0c48a5','','',NULL), -('16213','Seat','Usable','UNDEFINED','03aab3ec-03ac-4677-8f39-a70869229a97','','',NULL), -('16214','AEGS_Avenger_PrisonPod_2','Usable','UNDEFINED','cf90eb69-fedf-4c08-a358-bc3008a88f91','','',NULL), -('16215','MISC_Starlancer_Thruster_Main_Side','MainThruster','FixedThruster','5da86b22-a188-4a94-8d4f-bd4e07e78bdf','','',NULL), -('16216','Bed','Usable','UNDEFINED','f10552f3-eaaa-455a-b51a-0cae0c9f397e','','',NULL), -('16217','Salvo Saeed Frag Pistol','Weapon','Small','7c15996f-cbe1-4328-91d3-d540e267df0c','','',NULL), -('16218','AEGS_Door_Decal_Bridge','Decal','DoorPart','9179e103-90dd-43af-a151-3023b97cb4f5','','',NULL), -('16219','TRGT. STATUS','Seat','UNDEFINED','ec5ab4f8-3b78-42c1-8a3f-4dca9c9d732b','','',NULL), -('16220','H_Dashboard_Projector_HUD_MRAI_Guardian','Display','UNDEFINED','a3244b1a-42ac-42e7-a935-3510b5818262','','',NULL), -('16221','Seat','Usable','UNDEFINED','616d234c-02b2-46fe-8523-a60b38bf414d','','',NULL), -('16222','Door','Door','UNDEFINED','e9733966-8d7a-4df1-bbc1-f4e3635398e2','','',NULL), -('16223','MISC Reliant - Noise Launcher','WeaponDefensive','CountermeasureLauncher','bc3d4482-49d1-4767-af8e-948a8b50f881','','',NULL), -('16224','Tempo Jacket Frost','Char_Clothing_Torso_1','UNDEFINED','9b7fb756-93c9-4626-bebd-31f0005dd370','','',NULL), -('16225','RSI_Salvation_Thruster_Mav_Joint_Top','ManneuverThruster','JointThruster','8cf0cf70-7f15-4f6d-8dc5-349aaee3d4b9','','',NULL), -('16226','DRAK_Cutlass_Blue_Thruster_Maneuver_Front_Bot','ManneuverThruster','JointThruster','0240384a-8c27-41c3-9b99-1968b990bf3c','','',NULL), -('16227','DRAK_Dragonfly_CML_Flare','WeaponDefensive','CountermeasureLauncher','a20b7fe6-3692-4dff-bf99-4450ab46a651','','',NULL), -('16228','H_Dashboard_Projector_HUD_RSI_Meteor','Display','UNDEFINED','bdf0ac0d-be31-4d01-a0e0-870cc0eec6b7','','',NULL), -('16229','Manned Turret','TurretBase','MannedTurret','86f38013-a16c-4dc8-bfcc-e850b8b8b4c8','','',NULL), -('16230','Thrust','Cargo','Cargo','05ba7bff-b67e-4bb1-9c64-0d3827388275','','',NULL), -('16231','RSI_Salvation_Thruster_Mav_Joint_Bottom','ManneuverThruster','JointThruster','4f0b9407-5971-4715-9b9f-6691ba394f35','','',NULL), -('16232','ADP Arms Platinum','Armor','Arms','18f7c6d8-c003-4ada-b272-4526017f08ac','','',NULL), -('16233','Arrowhead \"Boneyard\" Sniper Rifle','Weapon','Medium','4d8016a5-fee2-4dc1-a63a-4bb0d2dcd619','','',NULL), -('16234','Morozov-SH Legs Spitfire','Armor','Legs','7b83f247-9716-4932-9fcd-0365f05dc923','','',NULL), -('16235','Door Control','Door','UNDEFINED','28e7a504-efe3-4d66-bc99-b3ab2d530a9a','','',NULL), -('16236','Diamond (Raw)','Cargo','Cargo','4508dd30-4810-4ee0-933d-71f9b30e20a3','','',NULL), -('16237','Ares Star Fighter Celestial Blue Livery','Paints','UNDEFINED','d8ceef63-559d-4011-9a31-0993e2095d64','','',NULL), -('16238','ORIG_400i_CargoGrid','CargoGrid','UNDEFINED','d41c05ce-923a-4179-b412-a048375751c1','','',NULL), -('16239','ORC-mkX Core Desert','Armor','Torso','eeee907e-c697-49f3-9308-e916a7209975','','',NULL), -('16240','Parasite Replica Helmet','Armor','Helmet','afae5b5c-2b3c-48e2-90eb-e9ad2447656a','','',NULL), -('16241','volume_jacket_01','Armor','Undersuit','e8f13431-7767-471a-860e-0b8828ec54f9','','',NULL), -('16242','RSI_Constellation_Fake_Archimedes','Container','UNDEFINED','53ac323d-a972-4b3b-b9a2-c7d0eec4eeb3','','',NULL), -('16243','Kino Shoes Blue','Char_Clothing_Feet','UNDEFINED','bd59d65a-35af-45fc-b4f5-70af925537ec','','',NULL), -('16244','Sarilus','Cargo','Cargo','a9414e01-4f3a-4b7e-bbc4-9fae96e27b39','','',NULL), -('16245','Seat','SeatAccess','UNDEFINED','7ebdd86a-6882-40a9-8ee1-266eb4832a87','','',NULL), -('16246','DRAK_Caterpillar_Thruster_Mav_Fixed_Bottom','ManneuverThruster','FixedThruster','91ed96f9-e307-4655-abe1-a3eb3d38165c','','',NULL), -('16247','Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','7285495d-e1f3-44f0-9947-5d7f4d1203b4','','',NULL), -('16248','Eclipse T-Shirt','Char_Clothing_Torso_0','UNDEFINED','418ddc06-7081-4236-9c6f-dbe157db2fa3','','',NULL), -('16249','RSI_Polaris_SeatAccess_Torpedo_Console','SeatAccess','UNDEFINED','e9c3197d-df66-44e4-a2f9-a05a709dbf9a','','',NULL), -('16250','FSK-8 Combat Knife','Weapon','Knife','04e84f78-fc3d-4d7e-a678-25e463bfde4f','','',NULL), -('16251','Door Control','Door','UNDEFINED','97376618-5d6a-4d50-b7c8-78459b8cc811','','',NULL), -('16252','Remote Turret','Turret','GunTurret','92042a64-7ca7-4f1c-bcfd-653a66ecb3c6','','',NULL), -('16253','Seat','SeatAccess','UNDEFINED','1dcd9133-4e7a-4d4d-856a-6fa6485fcedf','','',NULL), -('16254','Arrow Lovestruck Livery','Paints','UNDEFINED','54acd11a-d968-4a09-a367-22cbfd91e5ba','','',NULL), -('16255','RSI Default JetPack','Suit','ThrusterPack','b5944453-9904-4cb9-8e38-9b6ba3a8aaad','','',NULL), -('16256','Mivaldi Pants','Char_Clothing_Legs','UNDEFINED','129dc3f2-f047-4eb9-a2bd-d556c70bed49','','',NULL), -('16257','P-52 Merlin Deck the Hull Livery','Paints','UNDEFINED','272eb5f9-dc9d-42ee-ba47-f166d34fdf36','','',NULL), -('16258','Door Control','ControlPanel','DoorPart','bf23030e-f6f1-4c15-80d0-3cb6f19d31ac','','',NULL), -('16259','Palatino Backpack Daystar','Armor','Backpack','e0ea0ccd-736b-47ef-a57e-6bca61e8e1e1','','',NULL), -('16260','BEHR_LaserCannon_Ventilation_S6','WeaponAttachment','Ventilation','a0a5f0c0-5821-48cb-aa7d-2da131bb036a','','',NULL), -('16261','Venture Core Voyager','Armor','Torso','7b90e368-1c39-4d9e-b50e-047af9d338d6','','',NULL), -('16262','Cardona Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','8b8d7a88-96b4-49fd-b135-5532c72f8ee0','','',NULL), -('16263','Corsair Plushie','Misc','Personal','e326628e-c328-4d4f-aa18-e345a0733d5e','','',NULL), -('16264','Weapon Rack','Usable','UNDEFINED','46ac5908-a49c-88df-cd03-ce11d16970b7','','',NULL), -('16265','counter_components_center_a_01x01x01','ShopDisplay','UNDEFINED','5101d9f2-9ef5-492a-8189-6f026c1f9884','','',NULL), -('16266','SHIELDS','ShieldController','UNDEFINED','5a906730-1e70-4c66-863a-9583eed743b7','','',NULL), -('16267','BEHR_BallisticRepeater_Ventilation_S2','WeaponAttachment','Ventilation','ff2f2625-29ee-407c-aa28-1bb9550f6df2','','',NULL), -('16268','FarSight \"Thunderstrike\" (8x Telescopic)','WeaponAttachment','IronSight','4df44fd1-acd3-4bb4-bc56-eee0cccc4834','','',NULL), -('16269','Door Control','Door','UNDEFINED','c5b04d55-737c-44e9-8782-0a7a9ba46d4b','','',NULL), -('16270','Seat','SeatAccess','UNDEFINED','494be5fa-8bd6-4bba-a921-a97114d5ccce','','',NULL), -('16271','Caterpillar Hurston Livery','Paints','UNDEFINED','242d261c-f9c9-46b3-a202-01c33c9d16e6','','',NULL), -('16272','MacFlex Core Purple','Armor','Torso','f5315c17-f676-43ec-ad86-e46240d1a5c6','','',NULL), -('16273','Oracle Helmet Bloodstorm','Armor','Helmet','aaef023e-9f0a-48c3-a8b7-cc8c02e124a9','','',NULL), -('16274','AEGS_Idris_SCItem_Seat_CoPilot_Crashed','Seat','UNDEFINED','6cccd03f-06f2-4c15-9941-31a314812480','','',NULL), -('16275','MISC_Freelancer_Base_SCItem_Seat_Esc_Pod_Lower_Right','Seat','UNDEFINED','9d9d4d27-dcb5-4b30-8783-0c6816e432c4','','',NULL), -('16276','DockingTube_Fuel_Ports_RSI_Meteor','DockingCollar','UNDEFINED','dc9ed453-6c69-44b1-a0a1-d9e8b63a7653','','',NULL), -('16277','RSI_Aurora_GS_LX_Thruster_Retro','MainThruster','FixedThruster','601a8fce-c831-4c19-b4e9-6672341a6a7c','','',NULL), -('16278','Weapon_Rack_1_NONE_Special_Ballistic_Uncommon_003','Usable','UNDEFINED','f362e560-fd5d-43c1-bc09-cb2badcec84c','','',NULL), -('16279','Vehicle_Screen_MFD','Display','UNDEFINED','c08cedfa-fafc-4ea6-9737-59faeb4b1510','','',NULL), -('16280','Expo_shelf_hat_02x01x01_03Ports','ShopDisplay','Default','a3e0d739-cb65-43bb-9d62-dd96ad22f2c1','','',NULL), -('16281','ANVL_Paladin_Thruster_Flaps','AttachedPart','UNDEFINED','3e2994d0-cabb-4b68-9988-03dcbeebb59d','','',NULL), -('16282','Human Food Bars','Cargo','Cargo','76651abc-35d8-420d-96bd-4ae246972cf4','','',NULL), -('16283','ORIG_600i_TV','Door','UNDEFINED','6edc92e9-fe85-4f19-bb9f-d14d74eedb5f','','',NULL), -('16284','Carrack Stormbringer Livery','Paints','UNDEFINED','6f6735fd-a1fb-41d1-a98d-8e26f51f53ab','','',NULL), -('16285','Radar_Display_ORIG_300','Display','UNDEFINED','ff638271-f0ac-46a8-a9cd-3389958978e6','','',NULL), -('16286','Door Control','Door','UNDEFINED','f2a75012-e661-443d-be25-c9a667043c40','','',NULL), -('16287','Table_Bench_6_MISC_Starfarer_Gemini','Usable','UNDEFINED','3cad4f2d-26de-4fc9-a4a9-71d672c44f88','','',NULL), -('16288','Paint_Idris_Ninetails','Paints','UNDEFINED','a73b93c6-892c-424e-9832-77919acd5446','','',NULL), -('16289','Jaclium (Ore)','Cargo','Cargo','51e840e4-6b02-42bd-be46-af9a23a1ed4e','','',NULL), -('16290','Bed_Mattress_DRAK_Cutter','Seat','UNDEFINED','b949c2cd-61d5-4f49-9184-58f909cf5be1','','',NULL), -('16291','Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','2811ce36-139a-4d81-a38d-6867f159e8e7','','',NULL), -('16292','INTK_ORIG_100i','FuelIntake','Fuel','ebf3f2f8-f685-4af2-aeb6-bd09e2285ec6','','',NULL), -('16293','MedGel','Cargo','Cargo','691a128d-a756-4944-ad87-57522e5aeb10','','',NULL), -('16294','DRAK_Herald_Thruster_Mav_Fixed_Bottom','ManneuverThruster','FixedThruster','65ecdb8e-c0c0-469b-938d-0e5203ae2c1f','','',NULL), -('16295','Gadget_Cabinet_kegr_fire_extinguisher_01_hightech_med_high','Usable','UNDEFINED','a5716e97-560d-4f8a-b776-e213985ac253','','',NULL), -('16296','Toughlife Boots Black','Char_Clothing_Feet','UNDEFINED','72f0bcb6-ff7f-4f77-a6ba-b6a817d1729f','','',NULL), -('16297','AEGS_Vanguard_Thruster_Main_02','MainThruster','FixedThruster','6359df14-70d4-4dc8-af91-0207b0e0ba28','','',NULL), -('16298','Wrecker Arms Payback','Armor','Arms','7af65cb5-ac70-496d-9995-3af1ebaddae1','','',NULL), -('16299','Construction Salvage','Cargo','Cargo','36eb3010-23f9-4029-9cb9-52d55b57734d','','',NULL), -('16300','Cliffback T-Shirt Tan','Char_Clothing_Torso_0','UNDEFINED','d4b19973-810d-4453-ae07-877d7c7ca672','','',NULL), -('16301','Ardent Boots Dark Green','Char_Clothing_Feet','UNDEFINED','d5a7ee44-dc9d-46ec-8744-95fc20adf9f1','','',NULL), -('16302','Siren','QuantumDrive','UNDEFINED','95a43815-970e-4a70-87df-0658c32495d8','','',NULL), -('16303','RCMBNT-XTL-3','InventoryContainer','Cargo','1b4efba7-c395-4c46-b2e5-ebeae4961f24','','',NULL), -('16304','FSK-8 \"Bloodline\" Combat Knife ','Weapon','Knife','9b3ca883-cb09-4124-88af-8e767ca18249','','',NULL), -('16305','Audio-Visual Equipment','Cargo','Cargo','14cafc40-4ee4-41c6-bda8-c9e26edca389','','',NULL), -('16306','TRGT. STATUS','Seat','UNDEFINED','dceb7d31-a847-4903-981a-645ad1ceebf2','','',NULL), -('16307','Tuvic Outerwear Jacket Ash','Char_Clothing_Torso_1','UNDEFINED','7e8d18e6-9636-48f5-b492-796702a213d7','','',NULL), -('16308','Haruspec Goggles (Modified)','Char_Accessory_Eyes','UNDEFINED','a5875f59-acb5-40ed-9d1d-2dcd26c1c55d','','',NULL), -('16309','Sarilus','Cargo','Cargo','ba271a13-765b-4f9e-b646-db2678a79d13','','',NULL), -('16310','Lawson Mining Laser','Mining','Gun','40bd6a85-5695-409c-9d6c-ae1babde416a','','',NULL), -('16311','Cliffback T-Shirt Violet','Char_Clothing_Torso_0','UNDEFINED','50d7c496-4ef4-4e85-bef8-61d095288b1f','','',NULL), -('16312','Weapon_Rack_4_Slot_GLSN_Shiv','Usable','UNDEFINED','140fe1e1-3d4d-4506-8a2f-987518bdd0b9','','',NULL), -('16313','Waste','Cargo','Small','4069cad8-66c2-47c2-94f5-5864e3f7b297','','',NULL), -('16314','SHIELDS','ShieldController','UNDEFINED','fdd6cc02-1265-4b82-b8aa-1734b4e468d2','','',NULL), -('16315','Gadget_Cabinet_kegr_fire_extinguisher_01_NoRN_med_low','Usable','UNDEFINED','b52cc850-669c-4f74-8986-3180c673a10b','','',NULL), -('16316','Ready-Up Helmet','Char_Clothing_Hat','UNDEFINED','e72aea96-9bdf-4275-b838-2d75bbba7f65','','',NULL), -('16317','Reliant Cernan Camera Package','Turret','GunTurret','0de812e9-3003-4d7d-858c-51d16cfdb0de','','',NULL), -('16318','Weapon Rack','Usable','UNDEFINED','e2f6cd61-1dbb-4fab-ae3d-a1ce702c7961','','',NULL), -('16319','fruit_plant_1_a_3002','Misc','UNDEFINED','f26530ae-b470-4543-88fb-1f9763abefc5','','',NULL), -('16320','fruit_plant_1_a_2002','Misc','UNDEFINED','85d65ed7-f1c2-4e47-8876-fbf8cf2cdf0b','','',NULL), -('16321','fruit_plant_1_a_5002','Misc','UNDEFINED','66d7b50b-0645-46c8-93ce-54c9500329cd','','',NULL), -('16322','fruit_plant_1_a_4002','Misc','UNDEFINED','69974ab5-c529-43fe-8f9b-d228b57f66a2','','',NULL), -('16323','mobiGlas Aqua Casing','MobiGlas','Personal','584deb26-84e0-4892-b65d-bce6b2cd4d63','','',NULL), -('16324','AEGS_Sabre_Thruster_Mav_Joint_01','ManneuverThruster','JointThruster','4e53111a-5df5-486d-bb98-b1dd7e20fdde','','',NULL), -('16325','fruit_plant_1_a_6002','Misc','UNDEFINED','a0dffc5f-0f6a-4745-8bc1-5d100aafc010','','',NULL), -('16326','Dragonfly Yellowjacket Livery','Paints','UNDEFINED','fdc2ae04-54e4-49ab-b5a5-656bf4be1488','','',NULL), -('16327','MOTH Lovestruck Livery','Paints','UNDEFINED','662b2d7e-7939-43b5-b3b4-6c2cf59daa24','','',NULL), -('16328','Carrion Helmet Payback','Armor','Helmet','a721b478-2936-4af7-b1ed-f8204532b42c','','',NULL), -('16329','Predator Scattergun','Weapon','Gun','fac5a97f-64bf-450e-a2f2-90e4da5ccf73','','',NULL), -('16330','Partillium','Cargo','Cargo','8cbc82ee-6bd0-44d0-9ec7-3669e56a3968','','',NULL), -('16331','Personal Storage','Cargo','UNDEFINED','d7b428b7-a19c-41bd-8487-6411eaa37d36','','',NULL), -('16332','Pembroke Backpack RSI Graphite Edition','Armor','Backpack','c1b15afb-991e-41d5-86ef-2f4772fa06ca','','',NULL), -('16333','Hephaestanite','Cargo','Cargo','ead829dd-2f46-427d-b780-b49f8d193a0b','','',NULL), -('16334','Seat','SeatAccess','UNDEFINED','1c57f2b2-8599-4b4d-8515-3d518ca6e188','','',NULL), -('16335','Ventris Jumpsuit Crusader Edition Light Blue / Dark Teal','Char_Clothing_Torso_1','UNDEFINED','4db4d2e8-d958-49a2-92c3-b1a349417645','','',NULL), -('16336','Saldynium (Ore)','Cargo','Cargo','9609b278-bf7b-4399-ac41-fd2a6148a592','','',NULL), -('16337','m_human_mannequin_sandNomad','ShopDisplay','UNDEFINED','a86c5325-528f-49a8-a4cb-a59a1a320bad','','',NULL), -('16338','MPUV 2951 Best in Show Livery','Paints','UNDEFINED','2f742cd0-bd05-44f4-a512-256cb9239260','','',NULL), -('16339','LeMarque Pants Dark Red','Char_Clothing_Legs','UNDEFINED','95dcff43-fbf6-4ea2-a55f-7f904273285f','','',NULL), -('16340','YellowJacket GT-210 Gatling','Weapon','Gun','3993c8bb-f5d7-46c1-be5b-b5eb50e1bec6','','',NULL), -('16341','Bed','Usable','UNDEFINED','943c9bd3-b22d-4032-9e68-d433bc61aa0c','','',NULL), -('16342','tool_crowbar_2_a','Misc','UNDEFINED','e6336d7f-5810-4fac-a17c-b2992f7d3b49','','',NULL), -('16343','DRAK_Corsair_Thruster_Mav_Up','ManneuverThruster','UNDEFINED','10737349-12d3-4fb0-ad6e-0c60238c6de0','','',NULL), -('16344','IndVest Jacket Sienna','Char_Clothing_Torso_1','UNDEFINED','5319c853-3cbe-4447-986f-6b5133862f68','','',NULL), -('16345','Nitrogen','Cargo','Cargo','e0514667-75fc-4f4d-95bd-dc0305671e03','','',NULL), -('16346','Seat','SeatAccess','UNDEFINED','f4016c71-b71a-4be1-a83b-2d996decda02','','',NULL), -('16347','ViseLock S1 Tractor Beam','TractorBeam','UNDEFINED','f70cbd61-2d36-4862-b259-7cc94917b2e7','','',NULL), -('16348','De Leon Shoes Black','Char_Clothing_Feet','UNDEFINED','cfcbf96e-8634-40ab-b6b1-beea1b4bce90','','',NULL), -('16349','Table_Bench_6_MISC_Starfarer','Usable','UNDEFINED','a2a369a3-399c-4dd6-b920-1eb2b643defa','','',NULL), -('16350','ESPR_LaserCannon_Barrel_S1','WeaponAttachment','Barrel','0730a450-e731-49de-9b17-ae44da130d55','','',NULL), -('16351','Pembroke Backpack','Armor','Backpack','f48257c7-d224-4d32-8279-6368e3c2a09b','','',NULL), -('16352','MissileRack_Small_Ignite_FSKI','Usable','UNDEFINED','7c6fab6a-0678-4db2-957a-6775c471cadc','','',NULL), -('16353','H_Dashboard_Projector_HUD_DRAK_Cutter','Display','UNDEFINED','6924ecab-9a6b-4829-8478-99d7735300e0','','',NULL), -('16354','AEGS_Retaliator_OC_Rear_Cargo','Room','UNDEFINED','e4d7c029-8cf4-4f47-91a4-f6a571c1883b','','',NULL), -('16355','ANVL_Pisces_Thruster_Retro_Right_C8X','ManneuverThruster','JointThruster','c0188c6b-6720-4cc3-8389-9ae1879c69ff','','',NULL), -('16356','Concept Shirt','Char_Clothing_Torso_1','UNDEFINED','c862e168-a597-4485-8db0-3ec9dc384205','','',NULL), -('16357','APX Fire Extinguisher','Weapon','Gadget','55a31baf-3a80-427c-8fdd-6e33de1e2b9a','','',NULL), -('16358','Black Mountain Sujin Tea (Rich)','Drink','Can','b294db83-221c-4165-ab88-71d29dde50f9','','',NULL), -('16359','AEGS_Retaliator_SCItem_Seat_Bed_Upper_Left','Seat','UNDEFINED','773f700e-c952-4615-bd6c-f085f9b66fc9','','',NULL), -('16360','Cadmium Allinide','Cargo','Cargo','1f6d1039-9e37-408d-b630-2f0c80b5ac4b','','',NULL), -('16361','Sunset Berries','Misc','UNDEFINED','d01d7265-1dc9-4faf-b0d8-34cbaa6a413a','','',NULL), -('16362','Radar_Display_MISC_Starlancer','Display','UNDEFINED','5d303ee2-163e-4a74-bcee-a421deefbd9b','','',NULL), -('16363','StorageCage_Quantum_ZeroG_Empty','Cargo','UNDEFINED','04adeed8-84db-4782-a9ee-30e99d34ffc7','','',NULL), -('16364','DockingTube_Fuel_Ports_CRUS_Intrepid','DockingCollar','UNDEFINED','60dfbb92-7aff-4474-828d-ee44caa70548','','',NULL), -('16365','Remote Turret','Turret','GunTurret','b7398c76-42e3-4701-80a9-4db3955ccc5a','','',NULL), -('16366','Flight Blade','FlightController','UNDEFINED','e2b39a6f-479d-4ea2-9d58-36b3d6e8d89a','','',NULL), -('16367','Cobalt','Cargo','Cargo','d6012426-e28e-4cd9-b88c-b30a3c9ad29d','','',NULL), -('16368','RCMBNT-RGL-3','InventoryContainer','Cargo','4f192f87-ca4a-40e2-9985-1c5bc78da461','','',NULL), -('16369','AEGS_Hammerhead_LandingGearSystem','LandingSystem','UNDEFINED','4f670593-aaf2-47fc-be26-7759fcaf09e9','','',NULL), -('16370','Deadbolt V Cannon','Weapon','Gun','76775574-fcf2-493d-859e-337f1267a7ef','','',NULL), -('16371','ARGO_MPUV_1T_CargoGrid_Main','CargoGrid','UNDEFINED','dd9e8af0-3a0a-4e3f-8b02-9726a245ef23','','',NULL), -('16372','Seat','Usable','UNDEFINED','ba4e73c8-407e-4fe1-8cc8-1506d1738e3d','','',NULL), -('16373','Door Control','ControlPanel','DoorPart','9d96d42d-1f85-475f-8352-529236a12942','','',NULL), -('16374','AEGS_Door_Decal_Airlock_04','Decal','DoorPart','0da70847-da1c-43d9-99fc-87bf2821160e','','',NULL), -('16375','Shiv Spectre Livery','Paints','UNDEFINED','eb3fa2a0-c03d-43ed-95a3-24b9b77db490','','',NULL), -('16376','Geist Backpack ASD Edition','Armor','Backpack','1f5ae92e-620d-4234-82cd-89aa90f0eacc','','',NULL), -('16377','KRIG_l21_Wolf_Thruster_Retro','ManneuverThruster','UNDEFINED','fc2b0ef7-481e-4b77-b35f-1f2416b03154','','',NULL), -('16378','Carryable_1H_SQ_heatpack_1_b','Misc','UNDEFINED','9a8bd49d-f8f4-45bc-8deb-0dfc0a387c17','','',NULL), -('16379','ESPR_BallisticCannon_FiringMechanism_S2','WeaponAttachment','FiringMechanism','c8382ddd-c590-49df-b3b6-ce04090374d3','','',NULL), -('16380','KRIG_L21_Wolf_Wingtip_Interior','AttachedPart','UNDEFINED','d32c880b-35b8-4089-9138-be690b2f2db4','','',NULL), -('16381','HLX99 Hyperprocessors','Cargo','Cargo','5269ebb1-52b0-49b0-9e31-5ac0a5af68a5','','',NULL), -('16382','Pips A20','Drink','Can','fbda7061-afd3-4c29-a311-b86ab4f89c2f','','',NULL), -('16383','BR-2 \"Blacklist\" Shotgun','Weapon','Medium','e879aa01-f136-4724-b399-1877699f4584','','',NULL), -('16384','Door Control','Door','UNDEFINED','14bd7ef8-9088-40ad-a561-6f8db225e8be','','',NULL), -('16385','Zogo Knife','Weapon','Knife','d7deee4a-2835-4d44-bfd5-132a0a46181f','','',NULL), -('16386','AIModule_Unmanned_PU_SecurityNetwork','AIModule','UNDEFINED','78f4c819-cf87-4b2f-970c-431ca36b8772','','',NULL), -('16387','BATT_AMRS_S00_FortCell','Battery','UNDEFINED','a5f451a5-08e0-4e07-b0a2-e3cebbbedf33','','',NULL), -('16388','MISSILES','MissileController','UNDEFINED','bf974a5c-3c43-4b37-b511-3463db2e612f','','',NULL), -('16389','Zeus Mk II Solstice Livery','Paints','UNDEFINED','adc38a8e-1972-4632-97ec-c9eb067490f1','','',NULL), -('16390','ORC-mkV Core Dark Green','Armor','Torso','665e7556-3173-48b7-a3ff-48430cff16db','','',NULL), -('16391','UNE Unification War Medal (Worn)','Misc','Trophy','d783b246-49e2-4101-a189-22677a3a933b','','',NULL), -('16392','UNE Gold Ingot (Flawed)','Misc','UNDEFINED','901efa69-b9c9-4136-90eb-f90f2f807687','','',NULL), -('16393','Seat','Usable','UNDEFINED','c1955d69-173e-4c8d-aee3-5f2aecf455aa','','',NULL), -('16394','Radar_Display_ORIG_m50','Display','UNDEFINED','256eaa8a-8b4c-45ba-a07c-0a371b547029','','',NULL), -('16395','Shizhen Surgical Gown','Char_Clothing_Torso_1','UNDEFINED','b5358d0d-3022-491f-8540-5e631363befc','','',NULL), -('16396','universal_necksock_01_nonDeform','Char_Flair','UNDEFINED','d1378ab3-f25a-47c8-8cb7-c84af6971ef5','','',NULL), -('16397','YellowJacket GT-210 Gatling','Weapon','Gun','b0d737a7-3cce-4507-92fd-42548260dc15','','',NULL), -('16398','Flight Blade','FlightController','UNDEFINED','45a0d43f-8bcf-4f38-82c9-31d0e5222442','','',NULL), -('16399','un_plate_empty_1_a','Food','Consumable','12aaf6ee-6c93-435e-bf66-f9f16276cabf','','',NULL), -('16400','Scorpius Avalanche Livery','Paints','UNDEFINED','0c42f5a4-11f0-44f2-8381-0213dc9ae592','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('16401','Aurora Mk II Caspian Livery','Paints','UNDEFINED','bf3e3083-5179-4d57-b065-bd0546b044c1','','',NULL), -('16402','Bello T-Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','1795ef21-9985-4543-8fa8-8be93eba261f','','',NULL), -('16403','Custodian SMG','Weapon','Medium','00335844-8889-4c40-b4c5-e4d8496838cf','','',NULL), -('16404','SHIELDS','ShieldController','UNDEFINED','5a68f46d-9f77-42ef-a3d2-730ada86e1c3','','',NULL), -('16405','LowTechAirlockInteriorStatusSign','StatusScreen','AirlockPart','3bbf5954-9164-476c-8a58-344543029032','','',NULL), -('16406','DRAK_Cutlass_Steel_Thruster_Retro','MainThruster','FixedThruster','b195b0a2-38df-496a-9b37-6014c8ec2cb8','','',NULL), -('16407','Vehicle_Screen_MFD_Holo_600i_T','Display','UNDEFINED','f94a5cc6-c329-4eb0-858a-2f77d4ba60d5','','',NULL), -('16408','TRGT. STATUS','Seat','UNDEFINED','8ca15a4b-c098-4c7a-b97c-e9b8ea33a87b','','',NULL), -('16409','Overlord Core Supernova','Armor','Torso','28bfe788-0d3d-41f5-a749-d35bf7f7fa0d','','',NULL), -('16410','AEGS_Retaliator_Esc_Pod_Decal_06','Decal','DoorPart','94d574b0-59ff-43cc-ac6d-eb66709ab381','','',NULL), -('16411','GP-33 MOD \"Thunderclap\" Grenade Launcher','Weapon','Medium','5d8e354f-5f52-467a-9546-9c5a981f4257','','',NULL), -('16412','AAT-34 Turret','Turret','MannedTurret','65ad9e48-a49b-4fe4-8a20-f1b4d810e8ee','','',NULL), -('16413','m_teeth_vlk_juvenile','Char_Accessory_Head','Vanduul','60f3a0af-623a-4881-b4e6-4943fc46a22b','','',NULL), -('16414','Seat','SeatAccess','UNDEFINED','0ea8a2ad-587c-44cc-8e19-c386760e661f','','',NULL), -('16415','VCK-1 \"Carver\" Blade','Weapon','Knife','b368883e-722d-4f11-a139-681612067aeb','','',NULL), -('16416','Morozov-SH-S Helmet Smokescreen','Armor','Helmet','8eeb97e8-7f36-4d69-83c2-e2ae7325c95b','','',NULL), -('16417','Souvenirs','Cargo','Cargo','3b030f6e-d75c-464a-ab8b-0231a75b86b4','','',NULL), -('16418','Remote Turret','Turret','GunTurret','25aed8f9-b86f-4529-92a2-320f0abd9a1c','','',NULL), -('16419','Door Control','Door','UNDEFINED','917d79d1-a2e5-4118-ba5e-51d412f3d62d','','',NULL), -('16420','Khartu-al Polar Livery','Paints','UNDEFINED','4193d2d2-8f46-4c09-8c57-1a00f43d23c1','','',NULL), -('16421','Bed','Usable','UNDEFINED','64b107ae-b817-4783-818d-93031210f569','','',NULL), -('16422','Strata Legs Amber','Armor','Legs','e7df3807-737a-4f09-984c-e68fb3e0a1b9','','',NULL), -('16423','Clempt Pants Yellow','Char_Clothing_Legs','UNDEFINED','215c53bf-c22b-41df-a0e1-dcd4444b0b99','','',NULL), -('16424','P4-AR \"Nightstalker\" Rifle','Weapon','Medium','fecebcf2-8706-4f22-94fa-4abd24a70bc4','','',NULL), -('16425','Foundation Pants Black','Char_Clothing_Legs','UNDEFINED','1413865b-d376-4724-8d54-16b8fce508b2','','',NULL), -('16426','LeMarque Pants Sienna','Char_Clothing_Legs','UNDEFINED','2d57b196-4c74-4f04-a7a4-186e437d677a','','',NULL), -('16427','Door Control','Door','UNDEFINED','1c899352-aefe-4a56-8e2f-ed591280c44e','','',NULL), -('16428','Six-Sided Rotating Die White','Misc','Utility','f1ec1339-c95f-4423-bc02-eda5005fc272','','',NULL), -('16429','Irradiated Valakkar Fang (Apex)','Misc','Harvestable','f8cb1253-585f-40fe-8359-6b5de284c47e','E','',NULL), -('16430','MPUV-1C Flight Jacket','Char_Clothing_Torso_1','UNDEFINED','b7ede6b4-7379-4fb5-9680-ba8c7441ca66','','',NULL), -('16431','PAB-1 Core Imperial','Armor','Torso','9f14eb92-c6fb-4b79-92ab-306a0a309503','','',NULL), -('16432','ORC-mkX Helmet Woodland','Armor','Helmet','ffba2a67-69ee-4a3b-9ca9-600b1983cc84','','',NULL), -('16433','PAB-1 Arms','Armor','Arms','1208181e-d6ff-4407-a9e6-c2e91bfcfa2e','','',NULL), -('16434','RSI_Aurora_Mk2_Thruster_Retro','ManneuverThruster','Retro','39b448ea-62f2-4778-8b6c-b04d66314895','','',NULL), -('16435','MASTER_screen_16x9_1_004x00255_aShipItems','Display','UNDEFINED','b2b102d5-81d8-4f81-be66-44e12b552f02','','',NULL), -('16436','Elespo','Cargo','Cargo','cf7e47e4-20a2-41d1-a007-1e1a1cc262f1','','',NULL), -('16437','Radar_Display_GAMA_Syulen','Display','UNDEFINED','a8703895-e0ad-45e3-9267-32f3d43a4a9f','','',NULL), -('16438','AIModule_Automated_PU_CIV','AIModule','UNDEFINED','4d62f403-7b6e-4ff7-a69c-3edf6916e684','','',NULL), -('16439','sc_marine_bdu_gloves_01_01_01','Char_Clothing_Hands','UNDEFINED','12c2f5f9-755d-4ae4-88a8-cb974dd9149a','','',NULL), -('16440','IonSurge','PowerPlant','Power','4f9781e1-cd4d-4f39-b9ad-306ba1704439','','',NULL), -('16441','Seat','SeatAccess','UNDEFINED','b91d23b1-9f2f-4629-8b24-a722137a5ba8','','',NULL), -('16442','Flight Blade','FlightController','UNDEFINED','03fcb05e-e223-412f-8118-c15556285622','','',NULL), -('16443','ARMR_RSI_Mantis','Armor','Medium','f9badbb2-4152-46fb-91c6-942842b0f036','','',NULL), -('16444','Armor_Crate_CZ_Firerat_003','Usable','UNDEFINED','f97b491c-229d-48e0-b519-11b3457e708a','','',NULL), -('16445','Morozov-SH-I Legs Pyrotechnic Horizon','Armor','Legs','c4af385a-14af-477d-b6a4-4b2f34da3624','','',NULL), -('16446','Paint_Perseus_Blue_Blue_Black','Paints','UNDEFINED','340807f0-99b0-466d-9783-8112a00b4a8e','','',NULL), -('16447','Syulen Purple Haze Livery','Paints','UNDEFINED','ad311d60-9923-4d97-b336-1f325153f73b','','',NULL), -('16448','Venture Undersuit \"Rust Society\"','Armor','Undersuit','cd99e671-9d3f-41eb-90a7-f565bb1b7b51','','',NULL), -('16449','UrbEx Boots Grey','Char_Clothing_Feet','UNDEFINED','d69c8927-4518-4848-9727-21d3303429c8','','',NULL), -('16450','Seat','Usable','UNDEFINED','0d330577-6ef7-40ab-975d-4478f5cbd975','','',NULL), -('16451','Door_NoRoomConnector_Retaliator_Ground_FuelPort','Door','UNDEFINED','aee0e1bf-615c-4188-b047-9cad98f290b1','','',NULL), -('16452','Locker_Armor_NoMannequin','Usable','UNDEFINED','8c898dc8-4d30-4bb8-b8b2-e1cdaa15d11a','','',NULL), -('16453','Scorpius Shock Force Livery','Paints','UNDEFINED','2d7b9652-e70e-4e58-b945-db996cd332a5','','',NULL), -('16454','SHIELDS','ShieldController','UNDEFINED','77fdef44-a441-4964-b25c-a4203658ae87','','',NULL), -('16455','Venture Legs Executive','Armor','Legs','18c94ad0-9ab5-4b8b-889a-c45ab1720a41','','',NULL), -('16456','Beradom','Cargo','Cargo','8b71b394-94d4-46e7-9923-cf3f3a684898','','',NULL), -('16457','MacFlex Arms Orange','Armor','Arms','6cb0bf05-3da6-4911-86df-1360da3e4999','','',NULL), -('16458','Archibald Jacket Cinder','Char_Clothing_Torso_1','UNDEFINED','d95171d9-52c2-4969-b30e-a36581e8d27f','','',NULL), -('16459','ORIG_890_Jump_Thruster_Mav_BRR','ManneuverThruster','FixedThruster','6da56afc-56f9-4b86-949a-1f8007335862','','',NULL), -('16460','Manned Turret','UtilityTurret','MannedTurret','66de5163-42ce-44fa-83b0-2b97ef64d7a4','','',NULL), -('16461','AEGS_Vanguard_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','1e83f415-7400-4cc3-a90a-619d766e1abd','','',NULL), -('16462','Ixonia Pants Swamp Camo','Char_Clothing_Legs','Medium','97b8f1c0-9932-4a89-8bff-a017e5f8a9a5','','',NULL), -('16463','Door','Door','UNDEFINED','0f497bcc-57e7-40c4-9e47-71980c6a9553','','',NULL), -('16464','DockingTube_Fuel_Ports_MISC_Freelancer_DUR','DockingCollar','UNDEFINED','036f7775-e91a-459d-a469-6477869d06e0','','',NULL), -('16465','Aegis Hammerhead - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','99064742-4961-4ff9-b3cc-a3bb36504359','','',NULL), -('16466','DockingTube_Fuel_Ports_ESPR_Prowler_Utility','DockingCollar','UNDEFINED','9aeedf9f-22c4-4754-8fb9-3591551194fc','','',NULL), -('16467','Door_ChipReader_Vault_003','Door','UNDEFINED','653e606e-0790-4ab5-b96f-a410e3c43203','','',NULL), -('16468','Venture Undersuit Crimson','Armor','Undersuit','dde27a5c-a4d4-4480-b995-208b1d9d0f19','','',NULL), -('16469','RSI T-Shirt','Char_Clothing_Torso_0','UNDEFINED','2a43efee-2b7a-4b2a-b46a-98d8ce3616bb','','',NULL), -('16470','Caterpillar IceBreak Livery','Paints','UNDEFINED','9fd565a3-c338-4645-a211-aece919d92e1','','',NULL), -('16471','Typhoon IX-G Torpedo','Missile','GroundVehicleMissile','61c18fe9-bd26-4a92-a764-823746fb98c1','','',NULL), -('16472','AEGS_Idris_SCItem_Seat_ATC','Seat','UNDEFINED','5bc04ccd-dd96-453a-927f-13f2e4294c15','','',NULL), -('16473','Aegis Gladius - Noise Launcher','WeaponDefensive','CountermeasureLauncher','98b48f87-bd84-47fd-a1fd-582df790baa9','','',NULL), -('16474','Hercules Starlifter Fortuna Livery','Paints','UNDEFINED','0153f16e-f8a9-48fe-b855-0d6e4692b026','','',NULL), -('16475','Horizon Helmet Red','Armor','Helmet','87495ffc-edf1-4c59-a071-daae21e9c3df','','',NULL), -('16476','Eco-Flow','Cooler','UNDEFINED','b2279e37-c5fb-49ab-b008-b32f3c528706','','',NULL), -('16477','ANVL_Valkyrie_Thruster_Mav_Joint_Side','ManneuverThruster','FlexThruster','1e7f200c-5f41-4da1-b15c-4151f290e5cf','','',NULL), -('16478','Apex Glasses','Char_Accessory_Eyes','UNDEFINED','ff0582a1-5a7d-40b4-b7bc-b1e9ead8f83f','','',NULL), -('16479','Davlos Shirt Chestnut','Char_Clothing_Torso_0','UNDEFINED','88a78346-b2b5-4ef4-a908-a710d6164ca8','','',NULL), -('16480','Argo MPUV Ship Armor','Armor','Medium','283968a4-8a1c-44e0-8783-4a2e3bc72d26','','',NULL), -('16481','RSI_Constellation_SCItem_Seat_Access_CoPilot_Left','SeatAccess','UNDEFINED','3fe130f2-40cc-4f18-9dba-553bf9f2e688','','',NULL), -('16482','UNE Unification War Medal (Pristine)','Misc','Utility','747b7b5f-3fd2-42e3-acb3-7806149ce1d3','','',NULL), -('16483','Internal Tank','QuantumFuelTank','QuantumFuel','7b2f6c4f-f1f3-4cea-aa21-39d04c86746a','','',NULL), -('16484','Controller_Salvage_ARGO_MOTH_Right','SalvageController','UNDEFINED','8e922d42-1013-4cbf-841a-df057908df2b','','',NULL), -('16485','Kopion Horn','Cargo','Cargo','0a890e4e-775a-45c3-93ee-184623c9caef','','',NULL), -('16486','ARMR_MISC_Fury','Armor','Medium','0b08ffbf-7c5a-410b-911c-98715c92e978','','',NULL), -('16487','Paint_Hurricane_Default','Paints','UNDEFINED','c852a060-f966-4599-9b42-043658233dd9','','',NULL), -('16488','Seat_Jump_CNOU_Mustang_Beta_Toilet','Usable','UNDEFINED','e7bd8a11-e0b0-42ec-80d7-30b2f5b036ad','','',NULL), -('16489','Stratus Jacket Maroon','Char_Clothing_Torso_1','UNDEFINED','324425a0-c8a9-44d3-adb6-9e15373f2279','','',NULL), -('16490','ANVL_Pisces_Thruster_Main_Left_C8X','MainThruster','FixedThruster','38db43e2-77c3-4808-b63d-cd57de408733','','',NULL), -('16491','Adiva Jacket White','Char_Clothing_Torso_1','UNDEFINED','4a72f7c9-745d-4b22-b233-2b11bc22bb5d','','',NULL), -('16492','INTK_DRAK_Herald','FuelIntake','Fuel','6ccf04dc-fc1f-4d3f-81bc-98eff68a12c5','','',NULL), -('16493','Aluminum (Ore)','Cargo','Cargo','aa09716b-4952-469f-ae41-1034099862cc','','',NULL), -('16494','Counter_MedicineTray','Misc','UNDEFINED','d157cc2b-19c4-4106-9954-8399c5e824be','','',NULL), -('16495','can_drink_3_flood_shop_1x5_a','ShopDisplay','Default','3c2699b1-f3a5-4540-886c-e7d01864fa1d','','',NULL), -('16496','CleaningSpot','Usable','UNDEFINED','7fe21625-828a-4d28-8930-0d4891601e20','','',NULL), -('16497','ESPR_Talon_Thruster_Main_BL','MainThruster','FixedThruster','715fb0ee-20cc-48e0-8434-2b0289bb6be4','','',NULL), -('16498','INTK_AEGS_Eclipse','FuelIntake','Fuel','63e2a6de-90cc-45ba-8325-e621cbe5cd82','','',NULL), -('16499','Artimex Core (Modified)','Armor','Torso','87cbf984-fd76-40cf-9921-1ee92945de3d','','',NULL), -('16500','Gold','Cargo','Cargo','b34cab53-a1e0-48fb-81c0-d14d1bbb276b','','',NULL), -('16501','Seat','SeatAccess','UNDEFINED','494068f0-0307-4d7c-a61d-9d8c4c83fa78','','',NULL), -('16502','Antium Arms Maroon','Armor','Arms','572a21b6-4c39-4311-89af-93bbfefbef6a','','',NULL), -('16503','Personal Care Product','Misc','UNDEFINED','5d22251f-9049-40b8-9a8b-05438daadf91','','',NULL), -('16504','Door Control','Door','UNDEFINED','d2497c30-4729-4e8c-b334-ed74218af967','','',NULL), -('16505','AEGS_Avenger_PrisonPod_6','Usable','UNDEFINED','73b85e9d-49a4-4ef7-9c2c-a8cab70f6511','','',NULL), -('16506','Year of the Rat Coin','Misc','Utility','3b5696fd-4078-4d8f-a190-71c59976a16b','','',NULL), -('16507','Cumulus Pants Gray','Char_Clothing_Legs','UNDEFINED','900c3839-b99a-4c30-8c54-934d262b3464','','',NULL), -('16508','Outback Helmet','Armor','Helmet','bb4499aa-23a9-4d2f-9d34-5236fe1e9b2a','','',NULL), -('16509','ClipVest Work Harness Yellow','Char_Clothing_Torso_1','UNDEFINED','65756f59-b8bc-4081-893e-7ad517fcd304','','',NULL), -('16510','Ati Jacket Sienna','Char_Clothing_Torso_1','UNDEFINED','5b1a6eed-7a7c-485c-93e2-20ced47560f6','','',NULL), -('16511','Bed','Usable','UNDEFINED','4489675a-3f53-4fc9-8337-8819be325cb5','','',NULL), -('16512','AEGS_Sabre_Firebird_Thruster_Mav_Joint_02','ManneuverThruster','JointThruster','1392da27-1611-41f1-9f48-a17faa8aaacb','','',NULL), -('16513','Dymantium','Cargo','Cargo','939e0539-df2f-4247-b635-d6f14750a89e','','',NULL), -('16514','Cargo_Comm_125x3_Gas_Chlorine_a','Cargo','Cargo','cdc2c2d6-20b8-40a8-880e-ad93aa794ebe','','',NULL), -('16515','Carryable_1H_CY_utensil_spork_reusable','Misc','UNDEFINED','5ad8de14-a038-4e44-99e4-71ecd9e6c4f4','','',NULL), -('16516','Screen','SeatDashboard','UNDEFINED','3c400f25-aa36-43fb-92ea-e53b67c4dc59','','',NULL), -('16517','Skellig Pants Dark','Char_Clothing_Legs','UNDEFINED','d4a3cf7a-2f76-4283-afe7-200224eb9387','','',NULL), -('16518','Internal Tank','FuelTank','Fuel','51de8d1a-b168-4d2d-8caf-bc00e06d736b','','',NULL), -('16519','Quartz \"Jungle Camo\" Energy SMG','Weapon','Medium','698e8cec-2e45-406d-86b1-b9855440d48d','','',NULL), -('16520','ORC-mkV Arms','Armor','Arms','f1183bfe-f860-465f-94bb-9c6d463e0de4','','',NULL), -('16521','Door','Door','UNDEFINED','7834542a-9359-477d-906a-6853657cc06d','','',NULL), -('16522','Dashboard','SeatDashboard','UNDEFINED','b0513ccc-dc0f-4d74-99a8-56dca679f530','','',NULL), -('16523','Paint_Sabre_Procyon','Paints','UNDEFINED','69f2f2c7-87e5-4ecf-b8ce-28161e0e409b','','',NULL), -('16524','Elevator Control','Elevator','UNDEFINED','a9e6cb1b-26a0-461a-b98c-ee3da5410a9d','','',NULL), -('16525','DockingTube_Fuel_Ports_ORIG_125a','DockingCollar','UNDEFINED','ee166dff-3f95-4683-8c3f-d65db9b9b71e','','',NULL), -('16526','Seat','SeatAccess','UNDEFINED','fe41af52-4616-4e56-97e1-72d30f8d0528','','',NULL), -('16527','CNOU_Nomad_Component_Cooler','Player','UNDEFINED','45ca503e-1374-41c8-95d5-f1d070a4db8b','','',NULL), -('16528','Door Control','Door','UNDEFINED','7b199594-e104-4921-896b-b6cfa911bdad','','',NULL), -('16529','Sink','Cargo','UNDEFINED','8c0d292c-fdc7-4795-9492-5d0cef7df573','','',NULL), -('16530','Gadget_Cabinet_kegr_fire_extinguisher_01','Usable','UNDEFINED','2e0e9eb4-d30c-4374-97c7-d9be34d366a2','','',NULL), -('16531','Defiance Helmet Hailstorm','Armor','Helmet','fb61c814-8033-469a-899e-63bd585b1336','','',NULL), -('16532','Carnifex Armor Core Shutdown','Armor','Torso','2ad2d953-a523-4143-bc73-7d1aabef235e','','',NULL), -('16533','SecureHyde','Shield','UNDEFINED','334e6cb2-5e77-4bc8-bd92-d756848f050b','','',NULL), -('16534','TRGT. STATUS','Seat','UNDEFINED','d9ff1aa4-d1d5-48a1-9926-fa7dbe3be72d','','',NULL), -('16535','SHIELDS','ShieldController','UNDEFINED','10b7677a-139f-423d-91f0-87fedbe0d2ce','','',NULL), -('16536','Seat','SeatAccess','UNDEFINED','e0dd2360-867d-4e73-aa59-e40872710309','','',NULL), -('16537','DRAK_Cutter_Thruster_Main_Scout_Right','MainThruster','FixedThruster','99b6dff5-9c5d-4034-a3cb-99024a4de50f','','',NULL), -('16538','Parasite Special Edition Poster','Misc','Utility','82327138-d315-4ef1-aebd-579acd1c3663','','',NULL), -('16539','orig_bedding_duvet_3_n','Seat','UNDEFINED','dc9f4f9a-7ba2-4ced-ad76-5a26f6f104f4','','',NULL), -('16540','Seat','Usable','UNDEFINED','9ffb0594-606c-4f26-94aa-e0e6aa37ca91','','',NULL), -('16541','ORIG_M50_Thruster_Mav_Fixed_Up','ManneuverThruster','FixedThruster','be496162-7c8a-461f-832e-b2a7f899ae83','','',NULL), -('16542','Remote Turret','Turret','GunTurret','ad2195a0-52ca-4d18-b9d0-5295f9a9fb79','','',NULL), -('16543','Ares Star Fighter Golden Blossom Livery','Paints','UNDEFINED','9b7f1456-9aed-411a-b6b3-77ec7f1b0a3b','','',NULL), -('16544','Kragen','Cooler','UNDEFINED','3c5a56d9-ff6e-426c-a0dd-6fe0d64037f7','','',NULL), -('16545','Palatino Arms Sunstone','Armor','Arms','024e0420-6902-40f7-8f1a-0c13e92064a3','','',NULL), -('16546','AEGS_Redeemer_Wardrobe_Decal_02','Decal','DoorPart','a30843b0-c276-413b-8bdd-b4e91ef0b1ff','','',NULL), -('16547','Stileron','Cargo','Cargo','0bd22ea3-dbc6-4b85-a5a5-2bff771ea5b6','','',NULL), -('16548','display_ship_components_02x0075x0275_a_s0_shields','ShopDisplay','UNDEFINED','59e75020-4f7a-47b4-bd5c-99036dd36069','','',NULL), -('16549','Bolt','QuantumDrive','UNDEFINED','d6dac840-51e4-4872-b731-2072f3bcfda9','','',NULL), -('16550','Drink_bottle_vodka_01_a','Drink','Bottle','b36d6748-9809-4cb6-bf03-6b827a4b0eaf','','',NULL), -('16551','Carrack Polar Livery','Paints','UNDEFINED','eb0068f4-f2da-47eb-af63-d9d99700b5c4','','',NULL), -('16552','Durango','PowerPlant','Power','090ad136-ea1a-4381-a21b-fdfbc85ed273','','',NULL), -('16553','Door Control','Door','UNDEFINED','c4dd6469-eaaa-4e7e-a796-77bdc168c55f','','',NULL), -('16554','CBH-3 Helmet Greycat Edition','Armor','Helmet','d7380828-0d08-437c-bc26-d0faeb4a50c0','','',NULL), -('16555','IndVest Jacket Yellow','Char_Clothing_Torso_1','UNDEFINED','76ddb6e5-8ba3-4c4d-acc4-bfb7fa1495b7','','',NULL), -('16556','Artimex Legs','Armor','Legs','de6425e3-468e-499b-a0ba-f3e39b5ccee9','','',NULL), -('16557','Aither','QuantumDrive','UNDEFINED','fcfa0140-7d88-452f-aac4-668cd65c4053','','',NULL), -('16558','Weapon_Rack_1_VOLT_Sniper_Common_001','Usable','UNDEFINED','7c34a0d3-6a72-4355-988f-a8a29e0e06be','','',NULL), -('16559','COMP_WLOP_S00_Adze','Misc','UNDEFINED','a6b4604a-358b-4ee7-8c0f-f3f43427154d','','',NULL), -('16560','Prowler Ocellus Livery','Paints','UNDEFINED','fd8fa88f-6f7f-4c83-b8e1-c42aaff42627','','',NULL), -('16561','BEHR_BallisticGatling_FiringMechanism_S5','WeaponAttachment','FiringMechanism','0b496168-435a-4d78-a1e2-3028c3339416','','',NULL), -('16562','Prota','Cargo','Cargo','6c8b6ac2-4475-45b9-b6c6-ca5b92c86b1d','','',NULL), -('16563','game_checker_piece_1','Gadget','UNDEFINED','cd8d3375-6df7-4207-a800-84e4a5933045','','',NULL), -('16564','Starlancer Sapphire Livery','Paints','UNDEFINED','0ce7ec60-142f-441f-adc0-7dec20cf4491','','',NULL), -('16565','AEGS_Sabre_Thruster_Mav_Down','ManneuverThruster','JointThruster','4497731f-b634-4200-894a-58c2da42e8ac','','',NULL), -('16566','display_box_plastic_4_weapon_opened_005x010x0025_rundown_a_4Ports','ShopDisplay','UNDEFINED','258df31c-8635-4c8e-aaf4-c2b4d396e107','','',NULL), -('16567','MASTER_bag_carryable_1h','Cargo','UNDEFINED','43fd141c-7069-40fc-9b5e-4985d3b00a2e','','',NULL), -('16568','Seat','SeatAccess','UNDEFINED','e6e85836-bda4-480e-8d25-557f6dfdad29','','',NULL), -('16569','Radar_Display_MISC_Prospector','Display','UNDEFINED','665834d9-f9a9-4c28-860c-63fa6dc93be9','','',NULL), -('16570','AAT-34 Turret','Turret','MannedTurret','bf1899b2-2ba6-4602-9d1e-3e83b133f689','','',NULL), -('16571','MSD-313 Missile Rack','BombLauncher','BombRack','8352da44-4b63-4a4b-8397-734dfb11698b','','',NULL), -('16572','Venture Arms Seagreen','Armor','Arms','ed141092-ee19-4544-9235-e5316e6b59b6','','',NULL), -('16573','MISC_Fury_LX_Thruster_FixedMav_Left','ManneuverThruster','FixedThruster','5f0b969d-19cb-4914-a509-55876eb738f5','','',NULL), -('16574','Carryable_2H_CY_furniture_pillow_1_e','Misc','UNDEFINED','2c4e5b96-047a-4aec-bc75-48bd9f62f43c','','',NULL), -('16575','ORIG_400i_Seat_Bridge_Right','Seat','UNDEFINED','545664bb-de91-4efe-91fa-0c8e49292b39','','',NULL), -('16576','UI_EnvironmentScreen_Phoenix_AttractAnim_Small','StatusScreen','AirlockPart','51bb5385-61ca-4d60-9c86-2f96ec184bb5','','',NULL), -('16577','Tona Shoes Blue','Char_Clothing_Feet','UNDEFINED','46c50b0b-9afe-4d93-81c4-ab839d81abdc','','',NULL), -('16578','Bengal_BallisticCannon_Barrel_S8','WeaponAttachment','Barrel','3592665f-ba6f-494e-8364-483210ab42d1','','',NULL), -('16579','Railing_Straight_2m_LowTech_Util_Stairs_02x01_c','Usable','UNDEFINED','fa68ff52-c600-4cc6-b617-58f9a55a3eb7','','',NULL), -('16580','UNE Unification War Medal (Damaged)','Misc','Trophy','d6f8b191-d343-4b66-b611-8aa7802c7b42','','',NULL), -('16581','Turret','TurretBase','MannedTurret','707e6c73-bfd0-4d62-b89c-57c5257c58b6','','',NULL), -('16582','Mustang Alpha Ship Armor','Armor','Medium','02b8dd1c-3b4d-4d2a-b931-df3a79818a7c','','',NULL), -('16583','Sabre Landslide Livery','Paints','UNDEFINED','ff5452f3-731f-481e-94aa-e095f6b148ea','','',NULL), -('16584','ORC-mkV Core Crusader Edition','Armor','Torso','dd4d7cd3-38fc-4338-b9cb-30d0b926e968','','',NULL), -('16585','ARGO_ATLS_IKTI_Shield','Misc','UNDEFINED','a7ca3a05-5a19-41a8-82fb-b4223b223e2f','','',NULL), -('16586','Green QuikFlarePro','Weapon','Grenade','d1672c73-892b-41f5-ae26-4486b780c971','','',NULL), -('16587','CRUS_Starfighter_Thruster_Mav','ManneuverThruster','JointThruster','c79c8dea-e580-4f8a-9a22-a469d6d831f7','','',NULL), -('16588','Rabat Hat Blue','Char_Clothing_Hat','UNDEFINED','e66e49a8-1ee7-4207-927a-59a59d07c12b','','',NULL), -('16589','Seat','Usable','UNDEFINED','a9a17160-31d2-4c6d-8a18-a3b020d6e778','','',NULL), -('16590','Souvenirs','Cargo','Cargo','be2d37b9-46ae-465a-9320-d55e432ff224','','',NULL), -('16591','Gallant \"Desert Shadow\" Rifle','Weapon','Medium','4f481fd2-8f6e-4c2b-ac19-0d45d79f63db','','',NULL), -('16592','ORIG_125a_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','54e71aba-f7d5-4b00-b1a6-9c3f97ebce07','','',NULL), -('16593','ORC-mkX Helmet Righteous','Armor','Helmet','e9c0e96c-6f0c-4841-ab5d-6dcc498993e1','','',NULL), -('16594','Book','Misc','UNDEFINED','56f5d8f9-327c-4f3a-bf0c-f125132195ff','','',NULL), -('16595','Door','Door','UNDEFINED','3de96637-bec3-4106-ad19-0e2ddaadb902','','',NULL), -('16596','DockingTube_Fuel_Ports_DRAK_Corsair','DockingCollar','UNDEFINED','f2a3b1b2-158a-46ec-afa3-c008751fe0f1','','',NULL), -('16597','BR-2 Shotgun Magazine (12 cap)','WeaponAttachment','Magazine','8ff2bb56-65e6-43b6-8516-c172efbe14bc','','',NULL), -('16598','PH - hdh_boots_01_01_18','Char_Clothing_Feet','UNDEFINED','dca5f034-30ea-4108-9326-a9a4a28e0688','','',NULL), -('16599','Stud','Char_Head_Piercings','UNDEFINED','7e4eb95f-77d9-47a1-9a2a-391cade5930d','','',NULL), -('16600','Food_box_noodle_01_super_a','Food','Box','8088c929-4ce1-4097-8654-9b2755fef071','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('16601','SLAM','Cargo','Cargo','fbd58f35-559d-48bc-9358-d9a83a7b9618','','',NULL), -('16602','Cargo_Comm_125x3_Vice_Slam','Cargo','Cargo','84b6a2d8-91c1-45cd-9148-51a26f90c50f','','',NULL), -('16603','Flight Blade','FlightController','UNDEFINED','8162d38f-cb96-4657-acb9-7b5e7c26760d','','',NULL), -('16604','Door Control','ControlPanel','DoorPart','18701442-0afd-4be8-9860-62b0306356cb','','',NULL), -('16605','Falston Jumpsuit \"Covalex Edition\"','Char_Clothing_Torso_1','UNDEFINED','4d034751-c286-493e-a184-b6b4c24f633b','','',NULL), -('16606','300 Series Electric Blue Paint','Paints','UNDEFINED','a60033cc-3f1a-4543-8a3c-8a3760965007','','',NULL), -('16607','SCItemDisplayScreen_ScreenSize_W86_H49_H99','Display','Default','c23b98da-1546-4633-bd90-5f29ce105356','','',NULL), -('16608','Emod Stabilizer3','WeaponAttachment','Barrel','dc7a1310-5e36-445c-90a9-4acf61194d0c','','',NULL), -('16609','MPUV-1P TSB Flight Blade','FlightController','UNDEFINED','3701c987-4726-4a83-a72a-70a1e7c7f9e7','','',NULL), -('16610','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','7b642cfb-ab8a-4ccb-a4a2-41f9ce6c5e66','','',NULL), -('16611','Carryable_TBO_FL_8SCU_Commodity_Organic','Cargo','Cargo','392d7361-4620-4d61-99f7-dfb58408fd7f','','',NULL), -('16612','Myondo Knife','Weapon','Knife','dbba9ded-9920-4956-ac17-547f1f4226ca','','',NULL), -('16613','Venture Undersuit Orange','Armor','Undersuit','57717878-5dda-4d27-a8ad-ef852b73dc2e','','',NULL), -('16614','game_checker_piece_single_a','Gadget','UNDEFINED','08526473-c47f-4f95-bd39-507dcbf274f6','','',NULL), -('16615','ORIG_125a_Winglet_Right','Misc','UNDEFINED','6fcde86b-d9d2-49f9-a3d1-8c50204fe2f6','','',NULL), -('16616','ControlPanel_Screen_LightControl_16x9','ControlPanel','DoorPart','f08c9e78-ed49-4c24-a2e1-ecd581932d44','','',NULL), -('16617','CF-227 Badger Repeater','Weapon','Gun','5453a817-dfd4-4143-aa11-840ca428540c','','',NULL), -('16618','A23 Helmet Woodland','Armor','Helmet','9a26bc89-a35b-4317-adfd-ec4a285d7e72','','',NULL), -('16619','Internal Tank','QuantumFuelTank','QuantumFuel','fbdebc3e-4799-43ae-b776-6d6a2d4d3e4b','','',NULL), -('16620','Libio Jacket Tan','Char_Clothing_Torso_1','UNDEFINED','52dd2b59-058f-4f56-864c-5df4ae18587e','','',NULL), -('16621','Seat','Usable','UNDEFINED','9ab8958b-3429-4b9c-bfbb-886e176fbc21','','',NULL), -('16622','A03 \"Scorched\" Sniper Rifle','Weapon','Medium','7ce6eb8b-ede9-451a-83c9-52ec18f9a173','','',NULL), -('16623','Caudillo Helmet (Modified)','Armor','Helmet','390f8e69-7d13-42f3-987d-13182ae07953','','',NULL), -('16624','Gallant \"Midnight\" Rifle','Weapon','Medium','09fd07d6-01f6-45a1-a7d3-bd4d35a076b8','','',NULL), -('16625','Seat','SeatAccess','UNDEFINED','c6fa58f2-8f3f-444f-afc3-3d3df8ba033c','','',NULL), -('16626','rod_torso1_03x01x04_10Ports','ShopDisplay','Default','63c8cde5-2129-444a-85b2-dcae608f2eea','','',NULL), -('16627','MSD-481 Missile Rack','MissileLauncher','MissileRack','6df9676c-5609-4d9c-a79b-0608f4b59e21','','',NULL), -('16628','RSI_Zeus_Thruster_VTOL_CL','ManneuverThruster','UNDEFINED','af6449e1-51c7-4657-90a6-3a1d3d507ff0','','',NULL), -('16629','CK13-GID Seed Blend','Cargo','Small','d0bd43ef-f448-47ec-a373-98d251bd687f','','',NULL), -('16630','Universal_stubble','Char_Head_Stubble','UNDEFINED','f2c511d6-ff1d-4275-a8c2-ae60fb259186','','',NULL), -('16631','Ma\'s Ready to Eat Noodle Red','Food','Tin','e55e76ba-947b-4b9f-92d9-11e3c068e116','','',NULL), -('16632','Door Control','ControlPanel','DoorPart','1478735f-4941-4a1c-914a-60401e2884a9','','',NULL), -('16633','m_human_mannequin_utility_heavy','ShopDisplay','UNDEFINED','4673ecad-1fc3-4267-abf3-a60af6dcbb68','','',NULL), -('16634','Hercules Starlifter Flight Jacket','Char_Clothing_Torso_1','UNDEFINED','f60a05d0-609f-4446-8a49-310bc6a777a6','','',NULL), -('16635','Pembroke Helmet RSI Edition (Modified)','Armor','Helmet','45df29fe-8932-40f1-843e-c0e2ce8371ae','','',NULL), -('16636','DRAK_Cutter_Winglets_Scout_Right','Misc','UNDEFINED','7992e929-97ad-4f10-ad00-65eeaad73826','','',NULL), -('16637','Ham and Cheese Sandwich','Food','Junk','a9bca1fe-2662-495b-b524-5f80b262c60b','','',NULL), -('16638','Counter_Bar_2m_DEPRECATED','Usable','UNDEFINED','9f5858d1-c088-4191-9036-fd85800d9b75','','',NULL), -('16639','Nyman Jacket Tan','Char_Clothing_Torso_1','UNDEFINED','d3a17668-90c2-481a-9bf2-28b2a3966319','','',NULL), -('16640','MISC_Freelancer_Base_SCItem_Seat_Passenger_Left','Seat','UNDEFINED','5a84677f-090b-4b10-ad24-d0d8e7a4a6e2','','',NULL), -('16641','Personal Storage','Cargo','UNDEFINED','f58600be-bdc0-4e04-888b-daff8dc6c7ab','','',NULL), -('16642','Station','SeatAccess','UNDEFINED','0d4b6a00-868c-4efa-8564-8c45a9878c0a','','',NULL), -('16643','AEGS_Reclaimer_Locker_Double','Player','UNDEFINED','78b8ce0f-50fe-4e9a-ac7f-e2dd1c4dd5cd','','',NULL), -('16644','MacFlex Core Dark Red','Armor','Torso','e4a7d4e9-5f64-4b82-a926-580139d56968','','',NULL), -('16645','TRGT. STATUS','Seat','UNDEFINED','f23e6207-7841-40a2-9833-55f25ddfddb4','','',NULL), -('16646','Drink_bottle_gin_01_a','Drink','Bottle','aa5276ed-d95a-4887-9bef-acb10f68511f','','',NULL), -('16647','Pico the Penguin Party Animal Orange Plushie','Misc','Personal','9297b3fd-b529-4930-ba38-9a74b39455c3','','',NULL), -('16648','ANVL_Hurricane_Dashboard_Pilot','SeatDashboard','UNDEFINED','d0e64fa7-60fd-44de-b7e4-b9e74971bf06','','',NULL), -('16649','Sol-III Flight Suit Bombardier','Armor','Undersuit','38f40af3-5e26-4a76-82fb-f7ffbc38fd7f','','',NULL), -('16650','ThermalFoam','Cargo','Cargo','0409ccc7-821b-4d6e-bd45-37f1252e23a5','','',NULL), -('16651','Flight Blade','FlightController','UNDEFINED','74050567-b5d2-4a86-9850-45ab2cf456a9','','',NULL), -('16652','Boomtube \"Mean Green\" Rocket Launcher','Weapon','Large','90dad4d1-76a8-4acf-9ef3-c843e396ed36','','',NULL), -('16653','Souvenirs','Cargo','Cargo','9aa4aaaa-78b5-454f-b99d-c3277125e41f','','',NULL), -('16654','Door Control','Door','UNDEFINED','6c925ad3-cfda-4bad-9ed7-aa00f4ff72a4','','',NULL), -('16655','Tempo Jacket Golden Brown','Char_Clothing_Torso_1','UNDEFINED','fb5f7ed4-46ec-47ef-90d3-ca5a8bf336be','','',NULL), -('16656','DockingTube_Fuel_Ports_MISC_Fury','DockingCollar','UNDEFINED','e94255c4-4036-4805-82d7-a5dd836e8bf8','','',NULL), -('16657','Torite','Cargo','Cargo','815f2969-41a9-43a8-ad50-d515d222b8a4','','',NULL), -('16658','Suckerpunch-L Cannon','Weapon','Gun','70a98c94-9252-4fd3-a673-5a584339e273','','',NULL), -('16659','Union Pants Teal','Char_Clothing_Legs','UNDEFINED','0ffbe6c7-c098-49bc-9f4a-ed0ff78f3e61','','',NULL), -('16660','CNOU_Mustang_Delta_Thruster_Aux','MainThruster','FixedThruster','1abb8db9-f4d9-4b26-9cd2-c27fa62e7e48','','',NULL), -('16661','Aranda Shirt Crusader Edition Purple/Ivory','Char_Clothing_Torso_0','UNDEFINED','13069c8c-dad2-436a-a46f-a0f4d56bb564','','',NULL), -('16662','MISC_Prospector_Thruster_Retro_02','ManneuverThruster','FixedThruster','8c684741-c414-43ba-baa8-912aec870ad3','','',NULL), -('16663','RN_Resource_Relay','Weapon','UNDEFINED','68c39589-6887-42b9-a6ab-86ea316fa202','','',NULL), -('16664','DRAK_Vulture_CargoGrid_Main','CargoGrid','UNDEFINED','31d18ccc-9970-4414-a30c-d80b0013d0c5','','',NULL), -('16665','Neoni Jami Helmet','Armor','Helmet','02729161-d872-4b37-baa9-830a40b48fcf','','',NULL), -('16666','Grassland Quasi Grazer Egg','Misc','Harvestable','c685ec4c-a44b-4283-a713-4c8c1485a60f','','',NULL), -('16667','Internal Tank','QuantumFuelTank','QuantumFuel','d99c21a3-b1c9-4bb2-85aa-333d947d1906','','',NULL), -('16668','Door Control','Door','UNDEFINED','efd8c1ed-6112-4c5f-a2dc-8ccd947cf102','','',NULL), -('16669','Monde Core Hiro','Armor','Torso','992f3418-4a1b-42f8-b56c-d90bfc576472','','',NULL), -('16670','BANU_TachyonCannon_Barrel_S1','WeaponAttachment','Barrel','04b22419-d6f5-4664-8154-cf9fa70f69ea','','',NULL), -('16671','Door Control','Door','UNDEFINED','a4c3405c-b77f-4316-8fc5-cfeef096e1ab','','',NULL), -('16672','Door Control','Door','UNDEFINED','b8241227-dc8c-4b31-a50a-d81f9331671a','','',NULL), -('16673','K7 Pants Orange','Char_Clothing_Legs','UNDEFINED','63101831-4900-4a61-9f90-9fea0679f138','','',NULL), -('16674','Strata Core ArcCorp Edition','Armor','Torso','289af7c0-5fdf-44de-9af4-375fff44e1f4','','',NULL), -('16675','TrueDef-Pro Legs Gold/Grey/Black','Armor','Legs','d7a7cb0a-c39c-41a9-bb8e-fbbb555b1cf8','','',NULL), -('16676','Door Control','Door','UNDEFINED','168d781e-e894-4c2a-aa30-b6443ad24d82','','',NULL), -('16677','MRCK_S02_TMBL_Storm_AA_Custom','MissileLauncher','MissileRack','12ddeb1a-8c7e-4cf6-abae-c8e1dba62b26','','',NULL), -('16678','Door Control','ControlPanel','DoorPart','5dc87377-45b5-461a-808a-fcab5f1de771','','',NULL), -('16679','Table_Conference_8_1_Distribution_a','Usable','UNDEFINED','f62d1f0d-f175-459e-a2ea-37502035d02a','','',NULL), -('16680','MISC_Starlancer_Seat_Access_Support_Right','SeatAccess','UNDEFINED','c5b72683-279f-4435-8e22-1cd9431bc251','','',NULL), -('16681','Self Destruct Unit','SelfDestruct','UNDEFINED','88bd4909-630f-4b80-9b47-6e2224d8dc67','','',NULL), -('16682','Adiva Jacket Orange','Char_Clothing_Torso_1','UNDEFINED','ff67d4da-c106-4447-ba3e-3b0725e1b698','','',NULL), -('16683','Palatino Helmet Mark I','Armor','Helmet','bd63d750-e7ba-4670-8948-1d89fbe633bb','','',NULL), -('16684','Carryable_1H_SQ_DataPad_Fluff_StormBreaker_DataFacility_Weapons','Misc','UNDEFINED','415aa0fd-6e6e-0adf-ea23-6f863f32ef97','','',NULL), -('16685','SHIELDS','ShieldController','UNDEFINED','4325fde4-0888-4921-a80c-add166789880','','',NULL), -('16686','Invictus Launch Week Coin','Misc','Utility','7f6a1b89-8c13-452c-85c9-13aed12db06f','','',NULL), -('16687','Door Control','ControlPanel','DoorPart','45d7245a-c9ba-454c-8500-900f494e907f','','',NULL), -('16688','LH86 \"Nightstalker\" Pistol','Weapon','Small','0ca6f4ee-4f0a-4a28-9546-43b94990d188','','',NULL), -('16689','Carryable_2H_FL_Safe_1_c','Misc','UNDEFINED','f263349b-ed6e-40d2-8f84-9704e00222d3','','',NULL), -('16690','Fractus Gloves Maroon','Char_Clothing_Hands','UNDEFINED','413c4a13-81fe-4a47-bc02-86909a9ecbe4','','',NULL), -('16691','stand_shop_medium_b_QTDrive','ShopDisplay','UNDEFINED','dd9aa963-45d6-453e-b941-290fa018b948','','',NULL), -('16692','Mug','Drink','UNDEFINED','6c4ad033-6688-4651-8ddf-f549e3905661','','',NULL), -('16693','ADP Legs Seagreen','Armor','Legs','f77d51be-57d7-4761-bb56-4d0c7bfe8107','','',NULL), -('16694','CBH-3 Helmet Blue','Armor','Helmet','17aae62d-5415-4bae-9d06-b991860dd156','','',NULL), -('16695','KRIG_l21_Wolf_Thruster_Mav_Capsule_Top','ManneuverThruster','UNDEFINED','dd2f037b-39d1-4961-bf13-e716e4ad7996','','',NULL), -('16696','Basketball','Misc','UNDEFINED','0594f25a-24df-43f5-98e6-bddce00717b5','','',NULL), -('16697','Ridgewalker Boots Dark Blue','Char_Clothing_Feet','UNDEFINED','32213912-dd36-4edd-8f07-ee57a2fc5deb','','',NULL), -('16698','Remote Turret','Turret','GunTurret','528ce55d-bb26-48a3-a95c-764574568598','','',NULL), -('16699','HG-3 Jaeger (3x Holographic)','WeaponAttachment','IronSight','f6254ea2-d108-430d-8a9e-eb0135bfd521','','',NULL), -('16700','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','a6e53126-ae86-4d81-ba35-a3d1ac3b4ae2','','',NULL), -('16701','Bed_Mattress_Nomad_CNOU','Seat','UNDEFINED','c7a15954-4efe-4604-b6cb-6430961de8bb','','',NULL), -('16702','Edgewear Pants Olive','Char_Clothing_Legs','UNDEFINED','45fb823f-f82b-4d3a-92a8-05226435d4d0','','',NULL), -('16703','INTK_DRAK_Corsair','FuelIntake','Fuel','65e6c051-5b41-48bb-97c2-5f6686e629c9','','',NULL), -('16704','Invictus Hat Dark Green','Char_Clothing_Hat','UNDEFINED','c65f469b-cdf3-4537-b863-7a36b17bd5fe','','',NULL), -('16705','Lindinium','Cargo','Cargo','3afb4905-8c64-4e90-b426-0aa66aa4ae0e','','',NULL), -('16706','HRST_LaserScatterGun_PowerArray_S3','WeaponAttachment','PowerArray','72981786-7fe8-4b78-9676-f61a2d74cd89','','',NULL), -('16707','Venture Undersuit Executive','Armor','Undersuit','a138c00b-8c51-403c-b6f8-dbe7839f6e4b','','',NULL), -('16708','Cargo_Comm_125x3_Mineral_Laranite_a','Cargo','Cargo','377ac075-a1a9-4973-ba23-f72fa2665375','','',NULL), -('16709','Ketchup','Misc','UNDEFINED','70380ee7-e0b5-45f1-a0b8-90b20fe6ccb0','','',NULL), -('16710','Maelstrom','PowerPlant','Power','662e4a88-d893-46fd-9fcc-e33e4b783fae','','',NULL), -('16711','Defender Wanderer Livery','Paints','UNDEFINED','1c7867ff-d27d-46c4-a9d4-4c7adc86b8f5','','',NULL), -('16712','Toughlife Boots Grey','Char_Clothing_Feet','UNDEFINED','758633f1-9c0e-4031-99e3-fb91cc5bb743','','',NULL), -('16713','Tungsten (Ore)','Cargo','Cargo','ffa2e6fe-87cb-40a0-ba34-3954e54a865d','','',NULL), -('16714','Hercules Starlifter Sylvan Livery','Paints','UNDEFINED','c665ffbe-8dac-4eda-8be2-c0ebcb8e151d','','',NULL), -('16715','Morozov-SH Arms','Armor','Arms','d995442f-ff27-4c84-a412-3b0a4bd6e491','','',NULL), -('16716','Tussock Boots Gravel','Char_Clothing_Feet','UNDEFINED','520d2c1f-18a1-4f7c-b9bb-befc9ada004f','','',NULL), -('16717','Sawtooth \"Sunspike\" Combat Knife','Weapon','Knife','ceef3147-5315-4ba2-ae03-7b6b840af2ba','','',NULL), -('16718','SW16BR3 “Shredder” Repeater','Weapon','Gun','bbfbb4b5-c26e-4bee-9d41-9679e102e860','','',NULL), -('16719','AImodule_ATC_LevskiATC01','AIModule','UNDEFINED','549f0056-9555-4aae-bee7-932c9afe42a6','','',NULL), -('16720','Zeus Exploration Suit','Armor','Undersuit','342876db-5549-48b9-8071-081ca258bf52','','',NULL), -('16721','Cliffback T-Shirt Sienna','Char_Clothing_Torso_0','UNDEFINED','9f1437b2-f9cf-44c4-a171-e8dad0412053','','',NULL), -('16722','Ardent Boots Aqua','Char_Clothing_Feet','UNDEFINED','bdbd5f67-2345-4c9e-a334-8bb49c45d37e','','',NULL), -('16723','Odyssey II Helmet Red','Armor','Helmet','c63eada9-f1d9-4217-800a-5f93df5fad6f','','',NULL), -('16724','Gadget_Cabinet_kegr_fire_extinguisher_01_NoRN_med_high','Usable','UNDEFINED','ffcab784-1d3e-4948-bf37-1fe36f7e32d3','','',NULL), -('16725','RCMBNT-XTL-2','InventoryContainer','Cargo','4d0b2ad9-d49f-4877-896d-84fcb78ddc38','','',NULL), -('16726','Balboa Shirt','Char_Clothing_Torso_0','UNDEFINED','4f13fa60-7837-46ec-ae16-6862e2676bda','','',NULL), -('16727','UDF Hat','Char_Clothing_Hat','UNDEFINED','6de4f3d6-00c4-4b3b-bc63-b53f482d138e','','',NULL), -('16728','ORIG_125a_Thruster_Main_Right','MainThruster','FixedThruster','4d37f3e0-7fbd-4ee6-a6e1-57b00b17efc6','','',NULL), -('16729','Seat','SeatAccess','UNDEFINED','01008933-2ecb-4dac-a9a2-e2b67d72a1e9','','',NULL), -('16730','RSI_Aurora_LX_Thruster_Main','MainThruster','FixedThruster','e49f311e-aa48-434c-af4e-4c882a8c31af','','',NULL), -('16731','Bed','Usable','UNDEFINED','c466d9f6-edc2-4ea1-adf8-f43d0e10e57e','','',NULL), -('16732','Ma\'s Ready to Eat Vegetable Soup','Food','Tin','43e66339-c3bc-42c4-935c-a856e1c97dc0','','',NULL), -('16733','Morozov-SH-C Helmet Spite','Armor','Helmet','6fd82ec0-f120-4b94-aa18-5ff81001259f','','',NULL), -('16734','TRGT. STATUS','Seat','UNDEFINED','7f1b6642-ddcf-40a7-a78a-570f76fda806','','',NULL), -('16735','Klein-S1 Mining Laser','Mining','Gun','e6b284b9-456a-4444-b5fc-7c33bf5a6945','','',NULL), -('16736','MISC_Fury_Thruster_Main','MainThruster','JointThruster','00003571-11df-4b9d-a30d-1392d2a4bde7','','',NULL), -('16737','Door Control','ControlPanel','DoorPart','1c42bd9a-5902-4fec-b439-63ba81a94f64','','',NULL), -('16738','RSI_Apollo_Thruster_Mav','ManneuverThruster','FixedThruster','4cdc642a-aa2d-be4d-25b5-752c35aea293','','',NULL), -('16739','RSI_Aurora_GS_ES_Thruster_Retro_Right','MainThruster','FixedThruster','93d9672c-0484-479f-8f35-7ac627ef148a','','',NULL), -('16740','PAB-1 Legs Blue','Armor','Legs','cd2815a5-bc11-4327-8c8c-ad7a1db289e7','','',NULL), -('16741','Arrow Tan and Green Livery','Paints','UNDEFINED','feb36504-08ad-48a5-94b1-ef67b264b0b2','','',NULL), -('16742','Cliffback T-Shirt Orange','Char_Clothing_Torso_0','UNDEFINED','a51139f3-4547-4ba8-adfe-e6dbbbdd85fa','','',NULL), -('16743','Molina Ventilation Filters','Cargo','Cargo','2b111c84-5828-481a-9d50-0acebcc3b4b7','','',NULL), -('16744','Remote Turret','Turret','GunTurret','19677aee-ec86-4852-9faa-204680484f43','','',NULL), -('16745','GasCanister','Usable','UNDEFINED','c443fadc-7f54-41f9-80af-0e28eb5ef7d3','','',NULL), -('16746','Uncut SLAM','Cargo','Cargo','c3888bc5-2e65-4416-8f0e-13e4ac118d0c','','',NULL), -('16747','Carryable_2H_FL_Container_Anim_grin_multitool_1_a','Misc','UNDEFINED','2b7043b5-c4c9-47ea-af7f-a3fa468c0f0c','','',NULL), -('16748','ORIG_135c_CargoGrid','CargoGrid','UNDEFINED','57ca31b4-99ab-4639-ac90-b2926cf1d719','','',NULL), -('16749','Vanguard Clawed Steel Livery','Paints','UNDEFINED','9568282c-af1c-4b74-a6ed-e1b638c9f67b','','',NULL), -('16750','Internal Tank','QuantumFuelTank','QuantumFuel','5cb18d3b-072b-40e3-95f7-d9b85eef55b8','','',NULL), -('16751','Morozov-SH Helmet Spitfire','Armor','Helmet','da45f9e2-bf39-4fca-8a24-35fe88dfe102','','',NULL), -('16752','Morozov-SH Helmet Aftershock','Armor','Helmet','821a307e-63e9-4021-8d55-52ec35c9e592','','',NULL), -('16753','Door Control','Door','UNDEFINED','b7643272-dbf8-4b5c-8ff6-3276af1d997b','','',NULL), -('16754','FL-11 Cannon','Weapon','Gun','3d562dad-88f9-43aa-8ed5-616bf6634ff9','','',NULL), -('16755','Door','Door','UNDEFINED','659ac989-5185-45c2-a466-1cc46060413a','','',NULL), -('16756','ESPR_Talon_Thruster_Mav_Top','ManneuverThruster','JointThruster','e5cad152-32ea-469c-90f9-b6b38d62518a','','',NULL), -('16757','Railing_Straight_4m_Lowtech_Guardrail_E','Usable','UNDEFINED','d10a59f9-c153-42a1-8177-7b11a1db4bff','','',NULL), -('16758','Internal Tank','QuantumFuelTank','QuantumFuel','bd456886-c560-4deb-8449-c4c722e613b6','','',NULL), -('16759','Door Control','ControlPanel','DoorPart','95a0585c-9def-49c4-b30e-036815facd33','','',NULL), -('16760','MISC_Starlancer_InnerBtn','Elevator','UNDEFINED','d6a82656-b3f5-49d8-8b2e-b0b3d66f2b55','','',NULL), -('16761','MISC_Freelancer_Thruster_Main','MainThruster','FixedThruster','db6cf741-c92d-423e-b521-e7ae7fe32bac','','',NULL), -('16762','f_human_mannequin_slaver_heavy','ShopDisplay','UNDEFINED','6ea2184f-6d02-45a6-9a50-cdaeef879fa6','','',NULL), -('16763','Overlord Core Switchback','Armor','Torso','a65ebe67-f726-4901-ac90-6d1e914102d3','','',NULL), -('16764','Carryable_1H_SQ_Datapad_Fluff_ContestedZone','Misc','UNDEFINED','c6bb395c-3bd9-4823-a2ce-7b09a0ee1da6','','',NULL), -('16765','Pitambu','Misc','UNDEFINED','4bc6b9ed-eac8-4c70-88d8-58743fed5bda','','',NULL), -('16766','RSI_Constellation_Aquila_Thruster_Main','MainThruster','FixedThruster','cdde51ef-d7f4-46a8-9c90-00b260f26cab','','',NULL), -('16767','ANVL_Paladin_Thruster_Mav_Top','ManneuverThruster','UNDEFINED','28e9185a-216c-4cb8-a003-ec8a4aa0b519','','',NULL), -('16768','ExerciseSpot_Floor_DEPRECATED','Usable','UNDEFINED','72af5f6c-4e31-42e3-a941-74e2945c252b','','',NULL), -('16769','Seat','Usable','UNDEFINED','c2e4c119-663c-4a84-8f20-d371696e6ba9','','',NULL), -('16770','Door_Ship_Sensor_Proximity_Occupied','Sensor','DoorPart','66407f4e-5cbb-4947-8909-4942f99a5e2f','','',NULL), -('16771','Maze','Cargo','Cargo','0d4e46ac-f795-4216-948f-345ab7b30209','','',NULL), -('16772','Door','Door','UNDEFINED','595a6306-b4e8-4433-b71d-3d9cae233990','','',NULL), -('16773','Magstrand EMP Generator','EMP','UNDEFINED','3d521e8c-4249-4987-b544-d32634ab0d2a','','',NULL), -('16774','Carryable_TBO_FL_4SCU_Commodity_Organic','Cargo','Cargo','0cade6a6-2bca-4403-b67e-aedb1e5e804f','','',NULL), -('16775','Door Control','Door','UNDEFINED','d5a1bb80-61ce-4585-9fa2-5c2bbb5b3043','','',NULL), -('16776','RSI_Polaris_Dashboard_Captain','SeatDashboard','UNDEFINED','e4dfb88e-d6f8-4b7b-8c00-bd703e044ebd','','',NULL), -('16777','INTK_GAMA_Syulen','FuelIntake','Fuel','e9b1b3d3-819a-40c6-ac34-bac01bb97541','','',NULL), -('16778','Manned Turret','TurretBase','MannedTurret','67f4791c-2164-4415-9a1b-1a37ac497f59','','',NULL), -('16779','Stoic Suppressor1','WeaponAttachment','Barrel','003db92d-65ad-496e-baa8-e061ab6f1392','','',NULL), -('16780','DRAK_Cutlass_Steel_Thruster_Maneuver_Outer_Bot','ManneuverThruster','JointThruster','3697f16c-19f4-40b7-958f-23097b73762a','','',NULL), -('16781','Grappler Gloves Smoke','Char_Clothing_Hands','UNDEFINED','9e7b253c-f2c4-4923-9cec-246a97fe6dbc','','',NULL), -('16782','tool_power_1_drill_a','Misc','UNDEFINED','98792dc0-9275-429d-aac5-0d5165307b26','','',NULL), -('16783','Drink_bottle_radegast_01_b','Drink','Bottle','fee111ae-5f36-4e38-8199-7ac7552ce254','','',NULL), -('16784','Kama','QuantumDrive','UNDEFINED','e2599be8-160c-4d20-87d0-3c080109842d','','',NULL), -('16785','Personal Storage','Cargo','UNDEFINED','f6205e74-b3d9-4933-bc9f-4ede10222de5','','',NULL), -('16786','BR-2 Shotgun Magazine (12 cap)','WeaponAttachment','Magazine','85172716-2759-4dba-9c99-a9c64dd06143','','',NULL), -('16787','SHIELDS','ShieldController','UNDEFINED','e8e14773-8908-4ba6-9bf6-4c7637557a26','','',NULL), -('16788','Spartan Polar Camo Livery','Paints','UNDEFINED','b0460b71-b294-47ff-b8d7-c5381c60ef2a','','',NULL), -('16789','Luminalia \' 55 Coin','Misc','Utility','437fe245-16e7-471d-bbc4-0eb6e0b2483f','','',NULL), -('16790','Redeemer TSB Flight Blade','FlightController','UNDEFINED','aa13256a-403c-49ef-8f4e-3f3c112c5969','','',NULL), -('16791','f_human_mannequin_slaver_heavy_02','ShopDisplay','UNDEFINED','5499d77f-63dd-479f-969d-1ce6b7f06c06','','',NULL), -('16792','ANVL_Door_Decal_Carrack_Gravity','Decal','DoorPart','3bc00983-7c62-4830-8858-36cc7050545c','','',NULL), -('16793','ADP Legs Twilight','Armor','Legs','b3ee21ef-a873-464d-a171-61f29cc40239','','',NULL), -('16794','Gladius Dunlevy Model','Misc','Flair_Wall_Picture','818e49c0-70d5-402d-9c6d-dde6ecfad9ed','','',NULL), -('16795','ARMR_ANVL_Asgard','Armor','Medium','b1666cb9-386b-444e-a22f-061958078379','','',NULL), -('16796','Neon','Cargo','Cargo','e6ac1113-e3ff-401f-bc1f-4e54c556bfda','','',NULL), -('16797','XIAN_Nox_CML_Flare','WeaponDefensive','CountermeasureLauncher','f6378346-1c36-465b-af12-0a0bd7313f79','','',NULL), -('16798','Carryable_2H_FL_crate_weapon_3_01x005x00375_a','Misc','UNDEFINED','faad403f-e30e-43a1-8a1e-3fd3073a5f79','','',NULL), -('16799','Tekaw Pants Crimson','Char_Clothing_Legs','UNDEFINED','0a4ab374-648d-4ebc-87eb-43c4a7ed3173','','',NULL), -('16800','Copper','Cargo','Cargo','a9295414-da05-4c2a-be93-1dae8b178ab9','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('16801','Edgewear Pants Grey','Char_Clothing_Legs','UNDEFINED','c563262d-6c34-481e-bf39-0e82a76930bc','','',NULL), -('16802','Seat','Usable','UNDEFINED','2c5ceb0b-ceed-4319-80a7-b7b0ca3423bb','','',NULL), -('16803','Thrust','Cargo','Cargo','ca66e3e8-e37a-4e55-b19b-a6d5c412a0ee','','',NULL), -('16804','Strata Helmet Calico','Armor','Helmet','14e936e1-938c-46d6-8552-4958b43e33d2','','',NULL), -('16805','Door Control','Door','UNDEFINED','03636749-c12d-48b7-be78-fb02161a1cca','','',NULL), -('16806','Datapad','Misc','Gadget','8dad3e63-4ce9-498c-a3f7-6fe78f9dbae3','','',NULL), -('16807','Herald Polar Livery','Paints','UNDEFINED','1d6e2dc1-b85c-4558-8949-29d13d05ce35','','',NULL), -('16808','Carryable_1H_CY_bottle_tequila_pourable_1_a','Misc','UNDEFINED','0a4cdc10-39a5-4fee-adcc-c2b5dc0a73a7','','',NULL), -('16809','Pyro RYT \"Hurston\" Multi-Tool','Weapon','Gadget','ed9ecf85-2dbe-4859-99ae-49b5a108562c','','',NULL), -('16810','Custodian SMG Magazine (60 cap)','WeaponAttachment','Magazine','31b73bfe-da55-4cb0-a19d-1c6543ca1fb9','','',NULL), -('16811','SCItemDisplayScreen_ATLS_Jump','Display','Default','aa330a39-8080-4fef-8514-b58394b2c44a','','',NULL), -('16812','Raw Ouratite','Cargo','Cargo','e98a8d9e-9ba2-495a-a3af-4a6b52f6f05f','','',NULL), -('16813','Venture Helmet Grey','Armor','Helmet','90361b62-f3ae-4a7d-9b57-ae2fd8addf8f','','',NULL), -('16814','Hardline Hard Hat White/Blue','Char_Clothing_Hat','UNDEFINED','0ca3b8d8-71a9-4b25-b67a-25732558fd59','','',NULL), -('16815','Pyro RYT Multi-Tool','Weapon','Gadget','995ece66-0103-4e5c-bcc1-826827cd6c29','','',NULL), -('16816','ADP Core Imperial','Armor','Torso','f35fa325-9bb1-4895-bfd6-cf3f36a3141b','','',NULL), -('16817','Door Control','Door','UNDEFINED','bd1e8aa3-91a5-48c7-bc17-51b32e8a8d5d','','',NULL), -('16818','Sootho Gloves Mandalay','Char_Clothing_Hands','UNDEFINED','d2d58fb0-47ce-4f80-948d-675f1168f298','','',NULL), -('16819','Fieldsbury Dark Bear Helmet Orange','Armor','Helmet','762b1a5c-55c5-4976-8633-c438aa4d811a','','',NULL), -('16820','Maze','Cargo','Cargo','d8419c32-46c6-4e29-a9ba-c21486db48ba','','',NULL), -('16821','Seat','SeatAccess','UNDEFINED','12275826-f755-456c-99f6-15645e7b74c6','','',NULL), -('16822','AImodule_Pyro','AIModule','UNDEFINED','e9dd3ae4-85a3-4b58-ac82-a2d0f90efe38','','',NULL), -('16823','AEGS_Sabre_Firebird_Winglet_Right_Collector','Misc','UNDEFINED','d4d86568-7ebb-4eb9-bc0b-24fc92b81bc3','','',NULL), -('16824','Door Control','ControlPanel','DoorPart','c4cb0695-caad-448e-a8e4-0600677174f7','','',NULL), -('16825','Constellation Polar Livery','Paints','UNDEFINED','cbe3918f-5f51-4e79-8ead-0a8bdc98f0ec','','',NULL), -('16826','RSI_Polaris_Thruster_Mav_Joint','ManneuverThruster','UNDEFINED','69c7156b-cd94-452c-8060-e825a3bd0717','','',NULL), -('16827','Deadhead Helmet','Armor','Helmet','6ef9afd3-708c-464a-a142-b8a548a6b4bb','','',NULL), -('16828','Armor_Crate_CZ_Firerat_009','Usable','UNDEFINED','c3bd5115-0343-4a98-bb18-0b8d93383408','','',NULL), -('16829','Bengal_BallisticGatling_PowerArray_S6','WeaponAttachment','PowerArray','d0f8adfb-acb4-4704-b6d0-a587ed3cce40','','',NULL), -('16830','Caudillo Helmet Ghost White','Armor','Helmet','71184ff8-6341-4f42-8dd0-64998b538bb5','','',NULL), -('16831','IFR-MS7 Turret','TurretBase','MannedTurret','731fcdd3-6a77-4880-b10d-4c7bf639c241','','',NULL), -('16832','Palisade','Shield','UNDEFINED','15ebdff2-2724-4fb3-abbf-db20e150da77','','',NULL), -('16833','Aves Shrike Arms','Armor','Arms','6cba6778-4e76-4bbb-9135-ca5a787e7228','','',NULL), -('16834','Weapon_Rack','Usable','UNDEFINED','bb95a8c1-feb5-4068-95cb-8a2aa2ff77db','','',NULL), -('16835','Odyssey II Undersuit Green/Black','Armor','Undersuit','52348e37-33bc-46c0-8278-d5708ca7459b','','',NULL), -('16836','Radar_Display_Zeus','Display','UNDEFINED','6bfbdff7-08b5-49c8-93e9-dd58e8d5ae8f','','',NULL), -('16837','GATS_BallisticCannon_FiringMechanism_S2','WeaponAttachment','FiringMechanism','4a9f9853-49b5-4b00-96e7-86ae9291b6c8','','',NULL), -('16838','recorder_audio_1_a','Misc','UNDEFINED','fe2b6ef9-10b9-4776-bc4c-7f93ea7e8d56','','',NULL), -('16839','ReadyMeal (Bean and Rice Burrito)','Food','Sachet','293c4ba5-e344-4b69-b63b-2fd79eb94084','','',NULL), -('16840','AcryliPlex Composite','Cargo','Cargo','c7d0f71a-580c-4a5c-a3df-03a76481ba29','','',NULL), -('16841','m_human_mannequin_base_armor_STORMTEST','ShopDisplay','UNDEFINED','c4f083e5-0874-406e-b9dd-45ffaa267057','','',NULL), -('16842','APAR_BallisticScatterGun_S6','Weapon','Gun','4e925f84-6751-45e7-ad6c-b48e8ad9da85','','',NULL), -('16843','Door Control','Door','UNDEFINED','96780aaa-6f9e-4889-a039-5598cd9f7273','','',NULL), -('16844','Deo Shirt Dark Green','Char_Clothing_Torso_0','UNDEFINED','9928de35-4e7d-4210-985f-0daf4f55e152','','',NULL), -('16845','DRAK_Cutter_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','d80f6a0d-5c60-40d6-b4e8-9d9c60b47292','','',NULL), -('16846','MISC_Fortune_Thruster_Main_Rear','MainThruster','FixedThruster','18277b13-0111-4a78-82b9-297e70f94b16','','',NULL), -('16847','MISC Freelancer MIS Missile Launcher','MissileLauncher','MissileRack','f909146e-daf1-4a04-ba5b-3c0c291644db','','',NULL), -('16848','ANVL_Door_Decal_Carrack_Hangar','Decal','DoorPart','9f5e2ce2-8493-4891-849d-17c9e9ac07be','','',NULL), -('16849','Flight Blade','FlightController','UNDEFINED','d3955065-d539-4318-81f1-58426a4669ba','','',NULL), -('16850','Canelo Pants Twilight','Char_Clothing_Legs','UNDEFINED','6a7f3a81-fe02-4ba7-b7be-67ae0630a285','','',NULL), -('16851','Merlin Ship Armor','Armor','Medium','b932c185-f4f5-417b-9673-3c0d841f99a9','','',NULL), -('16852','Clempt Pants White','Char_Clothing_Legs','UNDEFINED','5d253a8c-6e90-4db4-972e-31947678d5b6','','',NULL), -('16853','Util_A_Airlock_Door_Int','Door','AirlockPart','0facfa7b-ca3c-46fb-90b8-ca63146c22ea','','',NULL), -('16854','Access','SeatAccess','UNDEFINED','d3f4204c-ae2b-4579-9575-ec5d749eadc3','','',NULL), -('16855','Lynx Legs Dark Red','Armor','Legs','04ae0ab4-1398-4d3f-ba84-fc69ab50f255','','',NULL), -('16856','MacFlex Legs Imperial','Armor','Legs','7fb1eec3-1111-42de-bf6f-671e36ddf518','','',NULL), -('16857','Inquisitor Arms Base','Armor','Arms','3b977c63-9a6b-45b8-ad94-98568f7aff79','','',NULL), -('16858','Razorback Pants Seagreen','Char_Clothing_Legs','UNDEFINED','8f684f3a-c270-42c0-9ffe-eae8e3253659','','',NULL), -('16859','Balor HCH Helmet White','Armor','Helmet','046ced2a-fe82-46f9-b5cf-c3d0942ab4a5','','',NULL), -('16860','un_portable_light_1_b','Misc','UNDEFINED','d1274941-e522-422b-aa83-1c6c642fe8d3','','',NULL), -('16861','Cargo_Comm_125x3_Consumer_Goods_a','Cargo','Cargo','bf975db0-9dcf-49d3-9d7a-7c3e6bd4a42a','','',NULL), -('16862','300 Series Amber Wave Paint','Paints','UNDEFINED','07da3333-dc01-440f-9b4e-2e837d080fb1','','',NULL), -('16863','NONE_LaserRepeater_FiringMechanism_S1','WeaponAttachment','FiringMechanism','43ec8f75-3a3f-413b-972c-eb5a5700cb2f','','',NULL), -('16864','Get Up Coffee (Cinnamon)','Drink','Can','e28ffc3b-f67c-4564-8653-7d388161527c','','',NULL), -('16865','Door Control','Door','UNDEFINED','c907cb8e-32d9-4849-963a-b6aba330964f','','',NULL), -('16866','fruit_plant_2_b_6002','Misc','UNDEFINED','fcf4b8af-448f-4530-a2b9-f422f5a89bc6','','',NULL), -('16867','fruit_plant_2_b_4002','Misc','UNDEFINED','5aab077e-b675-44e9-be1c-364624b6fc27','','',NULL), -('16868','fruit_plant_2_b_5002','Misc','UNDEFINED','9ebf1a56-a2e2-452a-b856-8617052028fd','','',NULL), -('16869','fruit_plant_2_b_2002','Misc','UNDEFINED','ff736461-52f8-4165-821f-088cc2a6a482','','',NULL), -('16870','fruit_plant_2_b_3002','Misc','UNDEFINED','e47fe0e8-45eb-4934-bdcd-97412f3a19c7','','',NULL), -('16871','Inquisitor Legs Dark Red','Armor','Legs','04bd1d94-9240-4c63-91d9-8f9c76bbfd57','','',NULL), -('16872','Door Control','Door','UNDEFINED','40580087-54df-458d-9d71-c33526e705e1','','',NULL), -('16873','ORIG_600i_Dashboard_Pilot','SeatDashboard','UNDEFINED','1c4abb5d-0f1c-4cc1-9988-4e1a81ec1ad0','','',NULL), -('16874','ANVL_Hornet_F7_Mk2_Thruster_Retro','ManneuverThruster','Retro','e250a62c-5f98-4154-840a-b9fac07cba4a','','',NULL), -('16875','Testudo Legs Nightveil','Armor','Legs','40cada46-9444-4324-b51a-36974b6f6d19','','',NULL), -('16876','resource_relay_3_slot_standing_freestanding_col','Relay','UNDEFINED','6739ab91-dc05-4c5f-a0ca-0a6def102485','','',NULL), -('16877','display_components_pallet_250x125x025_c','ShopDisplay','UNDEFINED','61cf4e3d-5a35-419c-9c8d-56c087064dc6','','',NULL), -('16878','Bed','Usable','UNDEFINED','c14df607-d45d-4520-b7f8-e05c8cf92586','','',NULL), -('16879','DRAK_Golem_OX_Thruster_Main_VTOL','MainThruster','FixedThruster','fa2f29e5-a2e3-463f-92b0-74acd00db88d','','',NULL), -('16880','Door Control','Door','UNDEFINED','27e188f4-13f6-4dfd-9c06-9c139cc6c39c','','',NULL), -('16881','Scalpel Sniper Rifle','Weapon','Medium','bab1362b-0860-4a52-ad5b-dfb63d12f651','','',NULL), -('16882','Torite (Ore)','Cargo','Cargo','6e131729-df94-4fd4-a33d-90622865225d','','',NULL), -('16883','Restored Pants Brown','Char_Clothing_Legs','UNDEFINED','1495dd9c-14e1-41cc-a5a9-c8377fb1e873','','',NULL), -('16884','Overlord Legs Tempered','Armor','Legs','91d5aeee-6f58-403d-809d-05f1226c00b5','','',NULL), -('16885','Seat','Usable','UNDEFINED','244f2b75-f88c-400d-8e3e-3b7059d16940','','',NULL), -('16886','GP-XP Industrial Battery','Battery','Cargo','9a3b2954-2c3b-4953-8cbe-6a2229d97ac9','','',NULL), -('16887','ADP-mk4 Arms Big Boss','Armor','Arms','b272fd03-33c5-43ba-aec7-d2296f1be1a2','','',NULL), -('16888','Sabre Ship Armor','Armor','Medium','2e7bf45e-522d-49bd-a4f6-0e95558db200','','',NULL), -('16889','ANVL_Hurricane_Thruster_Mav_Bottom','ManneuverThruster','JointThruster','76a41212-e285-4fb0-b225-0edb87847d48','','',NULL), -('16890','Door','Door','UNDEFINED','73d7ce37-f41d-4031-80eb-406676f53b29','','',NULL), -('16891','Door Control','DockingAnimator','UNDEFINED','38d4cbee-a2b3-40cb-88ac-fed31565d355','','',NULL), -('16892','KRIG_l22_AlphaWolf_Thruster_Main_Wing','MainThruster','UNDEFINED','9580b519-b663-44d8-b68c-105e4fac0140','','',NULL), -('16893','AEGS_Javelin_SCItem_Seat_Bridge_Right_Tactical','Seat','UNDEFINED','eb99d64e-d0c2-455a-a9c7-771e32c0ca74','','',NULL), -('16894','IAE 2954 Hat Purple','Char_Clothing_Hat','UNDEFINED','29a75b64-4a86-423c-98e8-feccd35e6809','','',NULL), -('16895','A03 Sniper Rifle','Weapon','Medium','6b1fb5e8-f9ec-49bc-befb-c81b7c08c5ea','','',NULL), -('16896','ARMR_ANVL_FC7R','Armor','Medium','23b24ec8-28e1-43cc-aaf3-d5ba15089558','','',NULL), -('16897','ParaMed \"Cyanosis\" Medical Device','Weapon','Small','980fb84e-e76e-4f67-8b40-0e29e89fe7af','','',NULL), -('16898','Shared_Piercing_Unified','Char_Head_Piercings','UNDEFINED','19ed02b3-8bb4-446f-9842-3d061d839138','','',NULL), -('16899','Ranta Dung','Misc','UNDEFINED','21b87e9e-892e-4de3-99f2-ecd1db7e688c','','',NULL), -('16900','Argus Helmet Black/White/Violet','Armor','Helmet','cc01c925-9323-4150-aa7b-0538511b499b','','',NULL), -('16901','Col_A_Airlock_Tube_Door_Double_Int','Door','AirlockPart','c9b12cfa-7eb2-479b-a6a3-c3281d5e3c01','','',NULL), -('16902','Karna \"Rager\" Rifle','Weapon','Medium','afee958a-8da3-48a3-aac7-14047d9de20e','','',NULL), -('16903','fruit_basket_1_shop_1x5_a','ShopDisplay','Default','cad651bf-0dd8-4019-aedd-5e7e08da46f4','','',NULL), -('16904','Door Control','Door','UNDEFINED','d94dac13-8a1e-4b0f-acda-3d69467de886','','',NULL), -('16905','ARMR_RSI_Hermes','Armor','Medium','485cbdb5-5ce5-23f3-186b-ed7bdf724aad','','',NULL), -('16906','Thunderbolt III-G Missile','Missile','GroundVehicleMissile','074f4cd7-67f3-4c33-83d9-45050205cfe0','','',NULL), -('16907','CitizenCon 2948 Trophy','Misc','UNDEFINED','f4e436a5-2418-4cff-b172-1dbdfe4537ed','','',NULL), -('16908','MASTER_tool_1_handed','Misc','UNDEFINED','791b848e-7bd6-4251-adf9-935b2d83c15d','','',NULL), -('16909','Shelve_Invisible_4x4','ShopDisplay','UNDEFINED','0f16a750-c80f-464c-8db4-13fb13d95b3e','','',NULL), -('16910','Bed','Usable','UNDEFINED','a373eb63-eef5-4049-98c6-76906b7dcb3a','','',NULL), -('16911','Door_NoRoomConnector_Polaris_CapsLocker_Temp','Door','UNDEFINED','62b34199-bc5c-4766-8299-05e0e35d6809','','',NULL), -('16912','Partillium','Cargo','Cargo','825081a5-0511-44f3-8219-3e9c363c2ef1','','',NULL), -('16913','Strata Helmet Heatwave','Armor','Helmet','e78b6f08-3f9c-4a0c-89ad-a7f2e1fa73bd','','',NULL), -('16914','Crusader Industries T-Shirt','Char_Clothing_Torso_0','UNDEFINED','bc6b38f1-dd14-49a5-b56b-a8abba329ebb','','',NULL), -('16915','Railing_Straight_4m_LowTech_Util_Stairs_04x01_a','Usable','UNDEFINED','6c53851c-5f2c-4e4d-9a26-b6b921de1dff','','',NULL), -('16916','Door Control','ControlPanel','DoorPart','49d1cf7f-c3ea-4ef3-82c2-2536b3b0021e','','',NULL), -('16917','srvl_combat_heavy_helmet_03_01_01','Armor','Helmet','eb7bb071-b7c9-43da-afe8-45ee30e71a85','','',NULL), -('16918','Sureshot Mask Red Menace','Char_Clothing_Hat','UNDEFINED','f610d546-f7f8-4153-b416-bf9e9b4e622c','','',NULL), -('16919','Seat','Usable','UNDEFINED','784d2fb1-5eeb-40eb-8c59-6719e1929472','','',NULL), -('16920','AAT-34 Turret','Turret','MannedTurret','2f9732c5-7244-4b2c-8a02-fa7c785af4a2','','',NULL), -('16921','trolley_creeper_1_a','Misc','UNDEFINED','ba282e16-f565-4019-928f-9255198ac4a9','','',NULL), -('16922','Seat','SeatAccess','UNDEFINED','2a36f9df-3d15-4808-af4f-fd4a38321d6d','','',NULL), -('16923','2954 Red Festival Poster','Misc','Utility','ec202f06-5dc2-4369-a591-99740c8db287','','',NULL), -('16924','Marhsal Sleeveless Vest Steel Blue','Char_Clothing_Torso_1','UNDEFINED','1ecf001d-2746-4868-a7fa-74163c2f2fab','','',NULL), -('16925','Remote Turret','Turret','GunTurret','451d05f6-d3de-4c5c-96ed-a466634dba22','','',NULL), -('16926','Harlowe Shirt Yellow','Char_Clothing_Torso_0','UNDEFINED','7aedcc5b-bc1f-48ef-8031-4dca8e2fc9fc','','',NULL), -('16927','expo_display_shirts_and_hats_origin','ShopDisplay','Default','d0c41a77-528c-4cbb-80b0-156e0a383d18','','',NULL), -('16928','Ball','Char_Head_Piercings','UNDEFINED','40c6d078-cebb-42a6-93d5-5fbf70a221c7','','',NULL), -('16929','Elevator Control','Elevator','UNDEFINED','ea08b529-6dba-4893-baca-b2412482a31e','','',NULL), -('16930','fruit_plant_1_b_3002','Misc','UNDEFINED','ad92dcf4-8778-4111-9080-57b46c3207c7','','',NULL), -('16931','fruit_plant_1_b_2002','Misc','UNDEFINED','e71fc82e-ff86-418d-9cac-3218fc7df789','','',NULL), -('16932','fruit_plant_1_b_5002','Misc','UNDEFINED','2270337b-f1a2-4795-9cce-744a6d40d394','','',NULL), -('16933','Seat','Usable','UNDEFINED','e0674f42-7ee5-4b76-b35e-2a56a2699ed8','','',NULL), -('16934','fruit_plant_1_b_4002','Misc','UNDEFINED','c6412a16-3288-4d53-9491-825d26f32060','','',NULL), -('16935','fruit_plant_1_b_6002','Misc','UNDEFINED','2358ccd3-ba81-41db-a971-b3e116cba3f9','','',NULL), -('16936','Grappler Gloves Veritas','Char_Clothing_Hands','UNDEFINED','691717bf-8019-4d69-8bf7-092f3d92439b','','',NULL), -('16937','fruit_tray_1_f','Misc','UNDEFINED','4d1bdaee-8dc3-420a-8b6e-cc02621bf0ae','','',NULL), -('16938','RSI_Aurora_GS_Thruster_Retro','MainThruster','FixedThruster','fd485a30-75c4-49b0-80fa-f263accbe7fd','','',NULL), -('16939','AEGS_Door_Decal_CmptRm_01','Decal','DoorPart','837569a4-07a3-498e-9839-357c87d9dce6','','',NULL), -('16940','AEGS_Door_Decal_WallPanel_02','Decal','DoorPart','b8bbab14-b55b-4fbf-b539-3fbf812d3132','','',NULL), -('16941','Diamond (Raw)','Cargo','Cargo','ee9b6807-6ef2-4aa0-8d68-ec36bd992079','','',NULL), -('16942','Fortune Reserve Livery','Paints','UNDEFINED','00b42b0d-194b-4972-a43b-f1d40df02ac4','','',NULL), -('16943','TRGT. STATUS','Seat','UNDEFINED','a7076b1b-f46d-4938-b32b-bd4affec06f0','','',NULL), -('16944','Exotherm','Cooler','UNDEFINED','45c6aee2-f38c-4d59-88a8-8cbbc395e938','','',NULL), -('16945','Door','Door','UNDEFINED','360c7cb1-6bbd-4eed-b7d9-7f51898f10c8','','',NULL), -('16946','ARGO_MOTH_Thruster_Main','MainThruster','FixedThruster','78ed4890-c8bc-447e-af43-9e53ba4583c0','','',NULL), -('16947','Lynx Arms Red','Armor','Arms','f1194db3-4bf8-402f-9565-54b7ae8f401b','','',NULL), -('16948','Astley Pants Black','Char_Clothing_Legs','UNDEFINED','7b64fb12-e2f5-4adb-a449-76a57c8434bf','','',NULL), -('16949','Remote Turret','Turret','GunTurret','5efcacd4-3968-4ac7-b088-7859aad041e5','','',NULL), -('16950','Prim Shoes Grey','Char_Clothing_Feet','UNDEFINED','045a9c14-ad28-454d-ac98-843a983f9ec4','','',NULL), -('16951','Door Control','DockingAnimator','UNDEFINED','66f89838-ade1-476e-a580-c38692d37ead','','',NULL), -('16952','Hephaestanite','Cargo','Cargo','815496c4-bd34-4425-8b7e-d2bbccc30d33','','',NULL), -('16953','Hydrogen','Cargo','Cargo','1b0c1f0d-36b5-4f0d-8ff1-05cadb6e997a','','',NULL), -('16954','lowtech_kareah_airlock_lghtgrp','Lightgroup','AirlockPart','850b65f8-c909-4567-b27a-1b2ff1174a37','','',NULL), -('16955','ESPR_BallisticCannon_FiringMechanism_S3','WeaponAttachment','FiringMechanism','05f81f1b-28d1-4681-8eed-c9f20a1998ec','','',NULL), -('16956','display_expo_hall_armour_rack_1_curved_a','ShopDisplay','UNDEFINED','6fa4b21e-2991-4461-b5ed-663a434fc5d2','','',NULL), -('16957','screen_4x3_grimhex_datapad','Display','UNDEFINED','f75f91c9-0f34-4ac2-9ebc-16b9ec643214','','',NULL), -('16958','AEGS_Javelin_Thruster_Main_02_Invulnerable','MainThruster','FixedThruster','a1f8f151-57cf-4e5b-9eaa-65b37238394f','','',NULL), -('16959','Strata Backpack microTech Edition','Armor','Backpack','8e3b50aa-62bb-442f-8088-2ed1e5a64bfe','','',NULL), -('16960','Personal Storage','Cargo','UNDEFINED','9a81964f-0dd8-47d5-a3d2-1109f262b4d5','','',NULL), -('16961','Util_A_Bulkhead_Airlock_Door_Double_Ext','Door','AirlockPart','cc735a8a-7974-468a-985b-68fae06ebb07','','',NULL), -('16962','Archibald Jacket Canvas','Char_Clothing_Torso_1','UNDEFINED','9b34de55-b285-4910-93ca-9941c3e24fb6','','',NULL), -('16963','Carryable_TBO_FL_16SCU_Commodity_ProcessedGoods_ElectronicsEquipment','Cargo','Cargo','e52e3efa-5454-447e-847f-cff34f51c7bf','','',NULL), -('16964','Aril Legs Red Alert','Armor','Legs','d3e092fb-5676-4191-9389-380a2817a271','','',NULL), -('16965','Recycled Material Composite','Cargo','Cargo','2e50dde5-30d4-4faa-af8f-8e5aa8004b96','','',NULL), -('16966','Pisces XenoThreat Purge Livery','Paints','UNDEFINED','0864216f-671a-412c-942a-a46efacec59f','','',NULL), -('16967','Aluminum (Ore)','Cargo','Cargo','3b7b9a64-ecfb-4407-a9db-a4470b27c1ea','','',NULL), -('16968','AEGS_Retaliator_Thruster_Mav_Fixed_Top','ManneuverThruster','FixedThruster','d39e8595-ac0e-4ba5-a2cc-62aae8c6312c','','',NULL), -('16969','CryoPod (Vanduul)','Cargo','Cargo','e72cbc1d-c35c-4f4e-b78c-8a3719f7dc83','','',NULL), -('16970','Weapon_Rack_1_KSAR_Shotgun_Ballistic_01_AmmoOnly_001','Usable','UNDEFINED','c0b311cb-92d9-4322-af67-89d3a605ac96','','',NULL), -('16971','Balor HCH Helmet Blue','Armor','Helmet','2f0875e4-bb6c-4a07-90a3-7a5f49a7f043','','',NULL), -('16972','Door','Door','UNDEFINED','cff78396-c9b6-43ba-b311-bdc855ab2a08','','',NULL), -('16973','Millrun Waders','Char_Clothing_Legs','UNDEFINED','bc81da15-4ec7-4afc-b6fc-23f423e1a69d','','',NULL), -('16974','KRON_LaserCannon_Barrel_S1','WeaponAttachment','Barrel','aca75369-d3d4-439e-a34e-a2ab6936e637','','',NULL), -('16975','Door Control','Door','UNDEFINED','f7eb07ae-601a-49cf-bf3d-cf888b7cdd6a','','',NULL), -('16976','Seat','SeatAccess','UNDEFINED','8bf95748-ac0e-4b48-99cb-448fd26e5dd6','','',NULL), -('16977','Lillo Pants Grey','Char_Clothing_Legs','UNDEFINED','1dea02f9-7a4a-4c55-a899-22a6b2461b9b','','',NULL), -('16978','Landlite Boots \"Voyager\"','Char_Clothing_Feet','UNDEFINED','11db3201-915b-42ef-817c-05be2b986fe9','','',NULL), -('16979','bag_satchel_1_a','Cargo','UNDEFINED','4cb2be19-7c67-474d-ab66-d13746fbcea6','','',NULL), -('16980','ARMR_CRUS_Intrepid','Armor','Medium','bdad64f5-91b4-40c1-9896-f67db2407964','','',NULL), -('16981','Door Control','ControlPanel','DoorPart','8adc9dd2-5537-455f-ab8e-eb058f85c686','','',NULL), -('16982','GATS_BallisticGatling_Barrel_S3','WeaponAttachment','Barrel','3d2c189e-46a7-4e02-940a-08dd874c0e1f','','',NULL), -('16983','Inquisitor Legs Violet','Armor','Legs','e0ad7d35-7d48-462a-b56d-b7d4547f7606','','',NULL), -('16984','IAE 2951 T-Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','d01bb888-e787-463a-8d9c-68fcaae49826','','',NULL), -('16985','Coloma Coat Blue and Brick','Char_Clothing_Torso_1','UNDEFINED','1481eb65-dca8-4bbc-acbb-64d00d14d9c9','','',NULL), -('16986','Arden-CL Backpack Chairman\'s Club','Armor','Backpack','fdee87a2-f94a-45eb-9080-78ceaefea156','','',NULL), -('16987','Li-Tok Boots Grey','Char_Clothing_Feet','UNDEFINED','91279c13-8b7c-4882-8cbc-5c9ec62f8ef1','','',NULL), -('16988','Fury Leatherback Livery','Paints','UNDEFINED','2dd2a39e-3a1b-4a00-82d2-4d772adad587','','',NULL), -('16989','MISC_Freelancer_MAX_Derelict_SCItem_Seat_Esc_Pod_Upper_Left','Seat','UNDEFINED','66588d19-20d5-4cc5-a2a7-dc2994c804c2','','',NULL), -('16990','ASAD_DistortionRepeater_Ventilation_S2','WeaponAttachment','Ventilation','a007f0bf-ab4b-43dc-9fc7-aae884a32c9c','','',NULL), -('16991','MISC_Hull_C_FoldingStrut_1B','Cargo','UNDEFINED','162006b2-6f42-4d1b-a061-2161fa14e8ab','','',NULL), -('16992','Weapon_Ship_Cz_006','Usable','UNDEFINED','28eaefac-57d8-4269-8727-1c5d1812be18','','',NULL), -('16993','Laska Shoes','Char_Clothing_Feet','UNDEFINED','8f9511b4-bd32-48a1-bc14-a289e60fcba5','','',NULL), -('16994','Manned Turret','UtilityTurret','MannedTurret','cfaa79d8-1d96-4227-974c-f843c8be83ac','','',NULL), -('16995','AEGS_Avenger_Titan_Thruster_Mav_Joint','ManneuverThruster','JointThruster','1b7a5399-497f-49cf-851a-d5ef413ebe1a','','',NULL), -('16996','Beryl','Cargo','Cargo','8ed30c8a-1a74-4c13-934f-e8cac69f53a2','','',NULL), -('16997','IAE 2953 Shirt Purple','Char_Clothing_Torso_0','UNDEFINED','45823952-1cad-458f-a8a3-02cb83ad548d','','',NULL), -('16998','GLSN_Shiv_Thruster_Main_Side_Right','MainThruster','FixedThruster','b778d864-8f78-4ed5-9f07-b2d70aecdc0f','','',NULL), -('16999','Combat Supplies','Cargo','Cargo','545703e9-64b8-44b4-b7f7-824f80a905c6','','',NULL), -('17000','Shoyu Lapsha','Food','Box','7e83e333-5b7b-4021-bddb-ab5f99d6f9ae','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('17001','Beryl (Raw)','Cargo','Cargo','667c36c2-3097-437a-8494-947e91a57d66','','',NULL), -('17002','Seat','Usable','UNDEFINED','7fb8e10e-3a5c-48d0-b72d-98f9d6e4ebe3','','',NULL), -('17003','Counter_Console_Cafe_2m_a','Usable','UNDEFINED','a774e525-a542-4882-925e-00d0ce7136b8','','',NULL), -('17004','Iron','Cargo','Cargo','0f08fc1d-bfeb-4781-aa22-59aa7e6ad26b','','',NULL), -('17005','Door Control','Door','UNDEFINED','e5dea1ac-9ce9-4421-a927-64f521990c59','','',NULL), -('17006','ANVL_Lightning_F8_Thruster_Retro_White','ManneuverThruster','FixedThruster','ef5edb04-6fca-4469-9535-220c5c0e326e','','',NULL), -('17007','Tona Shoes Violet','Char_Clothing_Feet','UNDEFINED','66bbbc9a-0e7c-4682-9df7-051b56b2a725','','',NULL), -('17008','Door Control','Door','UNDEFINED','b4e74195-cf3b-4316-a042-bb21a91abf94','','',NULL), -('17009','Door Control','ControlPanel','DoorPart','8681f07a-adfc-4a4f-bfb0-d3ed5b110177','','',NULL), -('17010','Ball','Char_Head_Piercings','UNDEFINED','366ac121-0242-4a6e-885c-9ece91726ddb','','',NULL), -('17011','DRAK_Cutter_Thruster_Main_Scout','MainThruster','FixedThruster','1ac43791-be4c-4341-8415-74480a472873','','',NULL), -('17012','Dash Apron Kel-To','Char_Clothing_Torso_1','UNDEFINED','0ead741c-7525-4afd-a9c1-fc736a9ff062','','',NULL), -('17013','box_plastic_4_weapon_005x010x00375_b','Misc','UNDEFINED','cd10a277-1a36-46ba-923a-c6713223d85f','','',NULL), -('17014','Inquisitor Core','Armor','Torso','986906da-1cd1-4a0b-b237-6d246a4b1687','','',NULL), -('17015','Revenant Tree Pollen','Cargo','Small','97dd9f08-cfbd-4cf8-b838-007dade0c2c2','','',NULL), -('17016','Seat','SeatAccess','UNDEFINED','7c399af3-40c6-44b1-b6b4-fd66911331ed','','',NULL), -('17017','RSI_Bengal_Thruster_Retro_Main_Left','ManneuverThruster','JointThruster','23122b86-2f4e-4f50-90bf-cc6f79bf0187','','',NULL), -('17018','CRUS_Star_Runner_Component_Cooler','Player','UNDEFINED','3cc70fcf-ab36-4301-ba4c-68758c3d1202','','',NULL), -('17019','Messhall_Microwave','Misc','UNDEFINED','7067cdc8-52cd-4acd-a44e-edd8b1ed0814','','',NULL), -('17020','ORIG_300i_Intake','FuelIntake','UNDEFINED','5d8d75ac-e67d-4af7-915f-e6311a644835','','',NULL), -('17021','OxyTorch Cutter Attachment','WeaponAttachment','Utility','81d120b2-d7a4-413a-8f9e-a1ebbb8ae1e2','','',NULL), -('17022','RotationSimple_Aurora_Fan','AttachedPart','UNDEFINED','109159e3-098b-4797-8012-655edbd5ff10','','',NULL), -('17023','Seat','SeatAccess','UNDEFINED','41a70aa5-64d6-3d90-4e0d-10db0b5bd19e','','',NULL), -('17024','ToolSafe Vest Horizon','Char_Clothing_Torso_1','UNDEFINED','d0f0d92b-8964-46f7-8c94-efd8d9cd6614','','',NULL), -('17025','Flight Blade','FlightController','UNDEFINED','ecde7f12-5941-487b-b037-aa15f134d776','','',NULL), -('17026','LuxCore','PowerPlant','Power','78e0c040-6668-4b43-a29c-4c47051bba8d','','',NULL), -('17027','ANVL_Valkyrie_Thruster_Retro','ManneuverThruster','FixedThruster','3b467f8a-a61c-4a55-97e8-aa26ed1060e2','','',NULL), -('17028','Seat','SeatAccess','UNDEFINED','7bca4f46-6977-4149-b955-ffdb4e682c7f','','',NULL), -('17029','Tilapia Verde Burrito','Food','Junk','0f7ea96f-c501-4a35-b3e5-2066c3de469b','','',NULL), -('17030','Borase','Cargo','Cargo','16da1f95-596a-4c7e-8bd5-a9c790ce08e3','','',NULL), -('17031','AEGS_Redeemer_Storage_Decal_04','Decal','DoorPart','a2ac6b40-63df-45ff-943d-498b7cdaf94d','','',NULL), -('17032','Ranta Dung','Cargo','Cargo','22568282-4d5c-48ae-855b-7e0e56147ab0','','',NULL), -('17033','Flight Blade','FlightController','UNDEFINED','acddd069-f13b-49e9-81c3-ef5084070eee','','',NULL), -('17034','DRAK_Cutlass_Thruster_Maneuver_Front_Top','ManneuverThruster','JointThruster','0d31372d-ad77-474d-9387-04c5893702f5','','',NULL), -('17035','ARMR_DRAK_Mule','Armor','Medium','d27e8f63-1304-4b45-aa36-592940c1f265','','',NULL), -('17036','Palatino Helmet','Armor','Helmet','138ffa9b-26b2-4b6f-b831-425948234fb2','','',NULL), -('17037','Yubarev \"Deadeye\" Pistol','Weapon','Small','2ee12457-8ec8-4984-a06b-bafa8d11ae5a','','',NULL), -('17038','Argo Astronautics Hat','Char_Clothing_Hat','UNDEFINED','8515df3e-3f3a-4765-b858-935bab92ba7c','','',NULL), -('17039','ControlPanel_LightSwitch_Grin_MTC','ControlPanel','DoorPart','d4251d95-f0ee-450d-a638-8ea43a22a29b','','',NULL), -('17040','SNS-R5x','Radar','MidRangeRadar','55a63f5c-3406-48ef-97fb-b3ced8858069','','',NULL), -('17041','ESPR_LaserCannon_PowerArray_S5','WeaponAttachment','PowerArray','d6403262-e404-4ca0-bc65-233d0e3b8bf6','','',NULL), -('17042','XNAA_SanTokYai_Dashboard_Pilot','SeatDashboard','UNDEFINED','44e55f5e-02fe-4758-9f82-e44767ab5102','','',NULL), -('17043','Venture Helmet \"Rust Society\"','Armor','Helmet','54c91753-0a6e-420f-bfd7-d7e6b5f3ff8b','','',NULL), -('17044','Aztalan Galena Legs','Armor','Legs','1b4d0522-5ac9-4e56-9d42-e229712ce88d','','',NULL), -('17045','AEGS_Hammerhead_Thruster_Mav_Fixed_Right','ManneuverThruster','FlexThruster','cc741815-d17f-4579-8f78-715216a3ab00','','',NULL), -('17046','Overlord Helmet Skimmer','Armor','Helmet','a4c8b0ca-4988-40d4-b3c2-51deccf44d66','','',NULL), -('17047','Door Control','ControlPanel','DoorPart','3fe6c530-42ed-4295-861e-4d30f141dfb1','','',NULL), -('17048','Avenger Warlock Standard Flight Blade','FlightController','UNDEFINED','8a2675e7-839a-462d-845b-009f3527a7d5','','',NULL), -('17049','WEAPONS','WeaponController','UNDEFINED','db243441-69d5-4a8a-85e3-4be82e107e22','','',NULL), -('17050','Corsair Commando Livery','Paints','UNDEFINED','bf60050d-f3c6-40ac-9b51-cc4fbc2fc19d','','',NULL), -('17051','Avalos Scout Goggles (Modified)','Char_Accessory_Eyes','UNDEFINED','bd96a519-2d44-43de-927a-3007eee9d8a2','','',NULL), -('17052','Artimex Core Hurston Dynamics Executive Security','Armor','Torso','445ab204-d97a-4745-9cf5-8006f2da7005','','',NULL), -('17053','Col_A_Airlock_Tube_Door_Double_Ext_NoNav','Door','AirlockPart','25620ca6-ae76-44f2-991c-cffa93250476','','',NULL), -('17054','Seat','Usable','UNDEFINED','e01d68df-dc23-4ee1-8579-bddea1441cd2','','',NULL), -('17055','MacFlex Legs','Armor','Legs','161db7cd-3351-43af-9961-972ec7e0ef39','','',NULL), -('17056','TrueDef-Pro Legs Black/Grey/Red','Armor','Legs','616f9de6-f29e-4de9-b827-1614a6fc0ff4','','',NULL), -('17057','TRGT. STATUS','Seat','UNDEFINED','b0ef21ce-4be2-4d09-9f94-fd4fb3052879','','',NULL), -('17058','Cubby Blast T-Shirt','Char_Clothing_Torso_0','UNDEFINED','6305f242-6f39-4688-b4dc-66171dd66ff1','','',NULL), -('17059','TrueDef-Pro Arms Black/Silver/Blue','Armor','Arms','a0d8fe7e-a4b8-4c3f-a64f-c3e348b1ddf4','','',NULL), -('17060','Thrust','Cargo','Cargo','0f579f38-3d39-45b0-b924-44ac7eed1070','','',NULL), -('17061','clothing_undersuit_no_oxygen','Armor','Undersuit','8b23e3b4-8176-4e20-b355-7b40e6745c6e','','',NULL), -('17062','Palatino Arms','Armor','Arms','018cf498-5ff0-4382-9549-372dc92c6a9c','','',NULL), -('17063','AEGS_Redeemer_Wardrobe_Decal_04','Decal','DoorPart','4d37336e-49af-4d84-8775-b8687945f399','','',NULL), -('17064','Radix','PowerPlant','Power','834e0103-cf00-4cbc-9884-a429096e2399','','',NULL), -('17065','GSX-RF','ExternalFuelTank','UNDEFINED','9fdf862e-140a-4684-862d-1957a99f587d','','',NULL), -('17066','Fotia Seedpod','Misc','UNDEFINED','335c9f90-f3b1-4af4-aaff-439cd4f776a1','','',NULL), -('17067','Radar_Display_Hornet_F7CM_Mk2_P','Display','UNDEFINED','7a00983d-7316-4331-97ec-1bbf6965db85','','',NULL), -('17068','Cordimon Jacket Black','Char_Clothing_Torso_1','UNDEFINED','aa614324-b210-44c6-8945-ad05b51e76c5','','',NULL), -('17069','game_chess_1_king_b','Misc','UNDEFINED','f8b0d8c9-a6a9-4a82-b132-4d5a198390d2','','',NULL), -('17070','Hammerhead Ship Armor','Armor','Medium','d421eef3-020a-45a6-b997-f9d3c91a742b','','',NULL), -('17071','ORIG_85X_Thruster_Main','MainThruster','FixedThruster','cab053d5-37a6-42ac-8a0b-9778c4bf6b8a','','',NULL), -('17072','Seat','Usable','UNDEFINED','0f9fee62-3d06-4fc2-a03f-514e7ac7294e','','',NULL), -('17073','ORC-mkX Helmet Desert','Armor','Helmet','bfe3e855-20f2-4712-b949-26904f03b16d','','',NULL), -('17074','PAB-1 Core Desert','Armor','Torso','fd24fbf9-d204-4230-952e-4e7b89154c91','','',NULL), -('17075','Thrasher T-Shirt','Char_Clothing_Torso_0','UNDEFINED','ee484573-758e-4dae-a069-17565ee46371','','',NULL), -('17076','Amioshi Plague','Cargo','Cargo','56b8e65f-b858-48d2-9915-c7d1a6e5d8b3','','',NULL), -('17077','Stirling Exploration Helmet Sediment Edition','Armor','Helmet','c29241e7-68bd-4e87-a5fa-7d93c3af5515','','',NULL), -('17078','CK13-GID Seed Blend','Cargo','Cargo','3ca4a2c8-044f-4fe1-a948-34dcc2d24102','','',NULL), -('17079','2949 Intergalactic Aerospace Expo Hat','Char_Clothing_Hat','UNDEFINED','e4c28233-e258-49e3-b115-53186c055f0b','','',NULL), -('17080','Door Control','Door','UNDEFINED','f4f4ab09-e668-4be8-8f37-d9065c25ea63','','',NULL), -('17081','Gladiator Ship Armor','Armor','Medium','8e0b1c26-c3c0-445b-9e15-7c1b8cb5cde5','','',NULL), -('17082','Door','Door','UNDEFINED','8655084e-15cb-4970-8916-fd9667c5f101','','',NULL), -('17083','Palatino Arms Mark I','Armor','Arms','e0d886f5-a721-4f1d-ae5a-ac8d14d2415c','','',NULL), -('17084','WeaponMount_Gun_S1_default_gatling_ballistic','WeaponMount','WeaponControl','defd7718-92b8-4679-a770-328ef2e4cf16','','',NULL), -('17085','AImodule_ATC_SystemATC01','AIModule','UNDEFINED','04aabd56-2c53-4235-92b5-11be52507687','','',NULL), -('17086','Dashboard','SeatDashboard','UNDEFINED','7e40d89d-c68c-463e-9e8e-93e3a0ce5389','','',NULL), -('17087','H_Dashboard_Projector_HUD_ORIG_890Jump','Display','UNDEFINED','083b0a84-46bb-4b06-ba3d-f62ba46c5576','','',NULL), -('17088','display_ship_components_03x01x01_coolers_s1','ShopDisplay','UNDEFINED','8bfa9ba0-ee22-426f-bdbc-3f5ae857d446','','',NULL), -('17089','TRGT. STATUS','Seat','UNDEFINED','384436df-0ea7-4add-9856-e82a218277af','','',NULL), -('17090','Railing_Straight_2m_LowTech_Util_Stairs_02x01_a','Usable','UNDEFINED','41f017f7-d293-4a68-9a9e-f9561bda06dd','','',NULL), -('17091','AEGS_Javelin_SCItem_Seat_Security','Seat','UNDEFINED','f792e762-0c17-44f6-9e6c-bbb1a1fc8390','','',NULL), -('17092','AEGS_Reclaimer_Salvage_Turret_Lighting','Room','UNDEFINED','48091c8d-7b76-44dd-a788-edd08d1e013a','','',NULL), -('17093','Manned Turret','TurretBase','MannedTurret','6ea38104-2229-4937-9f5f-d29f3b32b4b4','','',NULL), -('17094','m_human_mannequin_odyssey_suit_04','ShopDisplay','UNDEFINED','becc0700-1bc9-442d-9b49-a19ce1191a96','','',NULL), -('17095','Testudo Core','Armor','Torso','edaf0b70-e1a4-48ff-b827-37e9324014bd','','',NULL), -('17096','Stratus Pants Yellow','Char_Clothing_Legs','UNDEFINED','8a31caa9-41b9-482c-bfd3-3f89876b12a9','','',NULL), -('17097','ClipVest Work Harness Black','Char_Clothing_Torso_1','UNDEFINED','8ff1a659-4967-4387-a125-39ba1f784aad','','',NULL), -('17098','Cargo_Comm_125x3_Food_a','Cargo','Cargo','11975683-8011-4bc7-9bc5-68a5a6765909','','',NULL), -('17099','Lindinium (Ore)','Cargo','Cargo','060cfa4c-9571-467b-80ea-cabff141e2a2','','',NULL), -('17100','Door','Door','UNDEFINED','804d6104-a675-4043-8cd7-67ff82000664','','',NULL), -('17101','Hydrogen Fuel','Cargo','Cargo','c6bb96e4-fda8-4b39-9079-f0a1e403bc81','','',NULL), -('17102','FS-9 Magazine (75 cap)','WeaponAttachment','Magazine','b5f37920-ba9a-4a07-85e9-4d09f8e2f5ad','','',NULL), -('17103','Carryable_1H_SQ_datapad_rugged_1_a_DC_Lobby_ServerRoom_Keypad','Misc','UNDEFINED','cc535f4f-8b3b-4e40-af58-241222a411f3','','',NULL), -('17104','Door Control','ControlPanel','DoorPart','951bf2ae-6a74-454c-86ef-adc712f9b34e','','',NULL), -('17105','Table_Booth_4_Seat_ARGO_Mole','Usable','UNDEFINED','c60cfee3-c6a1-42da-b23f-03d49922c8e1','','',NULL), -('17106','Mustang Nose Scoop','Turret','BallTurret','058d4903-33ee-4473-a13b-1c7848f78b7a','','',NULL), -('17107','Ignite II-G Missile','Missile','GroundVehicleMissile','7e12039d-f782-4d14-ac78-6a83ce8a0bf1','','',NULL), -('17108','ADP-mk4 Core Big Boss','Armor','Torso','f1fb1b85-8e33-4762-8a89-bdfa1395c470','','',NULL), -('17109','Grav Lev 1','ManneuverThruster','JointThruster','b8debb10-f7b3-4183-a938-1092935566c7','','',NULL), -('17110','Eclipse','PowerPlant','Power','277e2f9c-d899-442d-a999-23368b3bdb6c','','',NULL), -('17111','Morozov-SH-C Helmet Vesper','Armor','Helmet','666028be-06d7-4f16-a900-5e324f00a254','','',NULL), -('17112','Stud','Char_Head_Piercings','UNDEFINED','a87f7bfb-10d2-427f-b8c9-c86fdbd635ba','','',NULL), -('17113','Shutters','AIModule','UNDEFINED','e2dd5dba-5a99-40b8-a9b5-4bdaee748d71','','',NULL), -('17114','Stileron','Cargo','Cargo','ea932524-fa77-4f00-ae03-70d7f357fe15','','',NULL), -('17115','Dashboard','SeatDashboard','UNDEFINED','54065c34-f151-4544-8d22-869a3f321a1a','','',NULL), -('17116','ADP-mk4 Helmet Woodland','Armor','Helmet','80fd0b3b-2ceb-4288-8867-ca30ffb7c4bd','','',NULL), -('17117','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','d195e8b0-4859-4207-b253-d0956cd79560','','',NULL), -('17118','Leonids Cannon','Weapon','Gun','2f92d27a-f04f-47f9-aeb5-96ad4fad15ea','','',NULL), -('17119','Ketchum Beanie Tan','Char_Clothing_Hat','UNDEFINED','ec992f2a-4316-4a4d-93cb-45e1e37d594c','','',NULL), -('17120','Molina Mold Samples','Cargo','Cargo','f7ffb7f6-a91f-46d1-8b96-4d33cf60dee4','','',NULL), -('17121','SCItemDisplayScreen_ATLS_Battery','Display','Default','437f093f-305c-4d8a-92f1-210583303565','','',NULL), -('17122','Prophet','Radar','MidRangeRadar','fb4c8baa-4d8e-4a2e-8102-675d3bd72640','','',NULL), -('17123','Radford Shirt Blue Wide Pinstripe','Char_Clothing_Torso_0','UNDEFINED','ca35b3f2-5f25-4334-b7c4-f2c69efbf94f','','',NULL), -('17124','Hello Sunshine Surprised Planter','Misc','UNDEFINED','f2774a6d-14b6-4dd9-8d4f-e8446fa8a456','','',NULL), -('17125','Stirling Exploration Suit ASD Edition','Armor','Undersuit','c1e712aa-80dc-4567-8a46-04483d5b309b','','',NULL), -('17126','ORC-mkV Core Yellow','Armor','Torso','0860d4f1-efa4-4ec9-93e4-557337d644ba','','',NULL), -('17127','TrueDef-Pro Core Gold/Grey/Black','Armor','Torso','2e4c100a-66ab-40ec-8c60-7d9db7cac3c1','','',NULL), -('17128','Radford Shirt White Pinstripe','Char_Clothing_Torso_0','UNDEFINED','def88141-6d05-4a0c-b0f9-edcec0f64a08','','',NULL), -('17129','Radford Shirt White Grid','Char_Clothing_Torso_0','UNDEFINED','f11bfe23-249c-450b-a5e8-3363b1f6be53','','',NULL), -('17130','facial_hair_005','Char_Head_Beard','UNDEFINED','3545b83d-46c3-45d1-965a-3cfc15136ea3','','',NULL), -('17131','Radford Shirt White Wide Pinstripe','Char_Clothing_Torso_0','UNDEFINED','216ccbac-2460-472f-af63-801afa270f19','','',NULL), -('17132','Edgewear Pants Imperial','Char_Clothing_Legs','UNDEFINED','634939f4-75a3-4c6d-aa53-351923296355','','',NULL), -('17133','Landlite Boots Twilight','Char_Clothing_Feet','UNDEFINED','fa154e8e-44b1-402a-9000-56e6c0a119a9','','',NULL), -('17134','M9A Cannon','Weapon','Gun','aa0f8505-7284-46ee-af10-12356f3e7576','','',NULL), -('17135','Bed','Seat','UNDEFINED','7c1e66e7-bb7f-435f-882b-509b5f63dce5','','',NULL), -('17136','Door Control','ControlPanel','DoorPart','2140e842-f4e0-4832-a1de-5d31c90ba2c0','','',NULL), -('17137','Morningstar Helmet Sienna','Armor','Helmet','303d5646-8614-4d39-991c-78db6984632b','','',NULL), -('17138','ORC-mkV Legs Dark Red','Armor','Legs','283f255c-75b7-4258-bdc0-ffd5f34d40c1','','',NULL), -('17139','WiDoW','Cargo','Cargo','afbf869b-da74-4f0b-b029-c1fe95c9ebbe','','',NULL), -('17140','MASTER_Carryable_PowerPlant','Cargo','Small','417fd566-e526-4a45-99dd-16d6bbd1f2a4','','',NULL), -('17141','Monde Helmet Crimson Camo','Armor','Helmet','532de455-b2c5-460e-b1a2-216641b9bc32','','',NULL), -('17142','Ship Showdown \'52 Mercury Coin','Misc','Utility','48e4bd90-2526-4a7e-a97f-7f7eaaa4ac2a','','',NULL), -('17143','Monde Helmet Delta Camo','Armor','Helmet','8f605d77-af20-4576-bfb9-bd97ca6ae5c5','','',NULL), -('17144','Monde Helmet Hemlock Camo','Armor','Helmet','6c740727-7f6a-44d4-81d0-e7a1717382f3','','',NULL), -('17145','Pulse \"Piconalia\" Laser Pistol','Weapon','Small','779a3412-7278-4ba7-9074-94cb7f541edc','','',NULL), -('17146','Monde Helmet Daimyo','Armor','Helmet','a97f17aa-dc11-4415-aea5-7de6f530d296','','',NULL), -('17147','Monde Helmet Keystone','Armor','Helmet','7c8c4b7c-0497-408a-9bad-009d7ee8d2c0','','',NULL), -('17148','Monde Helmet HighSec','Armor','Helmet','1ee43c13-990f-4a3f-b4ed-d5727af01cac','','',NULL), -('17149','Monde Helmet','Armor','Helmet','f8b0fa46-02ef-45fb-ab05-d8e1e7306e0a','','',NULL), -('17150','ClipVest Work Harness Tan','Char_Clothing_Torso_1','UNDEFINED','59e36878-6702-4024-9c06-d9f050c13c0b','','',NULL), -('17151','Tuna with Vegetables Omni Pack','Food','Sachet','b6e16af7-7c01-4f5c-b66c-5eeafe7e07fd','','',NULL), -('17152','DoorProximitySensor_0_5x0_5x0_5_Reclaimer','Sensor','DoorPart','16ec2948-c7f0-4913-849c-d318db7d57d9','','',NULL), -('17153','Ati Jacket Green','Char_Clothing_Torso_1','UNDEFINED','f298edad-644e-4b3f-b5f0-752d4a5ca11c','','',NULL), -('17154','KRIG_L21_Wolf_Thruster_Pipe','AttachedPart','UNDEFINED','78d51f7e-8bad-459c-bb47-1df7b9b228ef','','',NULL), -('17155','Monde Helmet Hiro','Armor','Helmet','212751b6-643d-451d-a598-2d17e83bd1b0','','',NULL), -('17156','ADP Arms Woodland','Armor','Arms','8fd1742f-d8d6-46bb-a2a6-bf07dd7a5bd6','','',NULL), -('17157','Inquisitor Core Twilight','Armor','Torso','4fe62ba3-74f7-4235-a22b-13269fce951a','','',NULL), -('17158','ORC-mkV Legs Sakura Sun Edition','Armor','Legs','2aaa174c-0af8-45bb-a26b-0587ddd60923','','',NULL), -('17159','Geist Armor Legs Desert','Armor','Legs','e097e020-392e-428e-830e-1a4495092697','','',NULL), -('17160','ADP-mk4 Helmet Woodland','Armor','Helmet','6eaf3b97-522e-4230-a813-f5c5ffbb9f27','','',NULL), -('17161','Bed_AEGS_Retaliator_Captain','Usable','UNDEFINED','3bc0730b-ed83-41e1-9cb2-efc4161d7c00','','',NULL), -('17162','Flight Blade','FlightController','UNDEFINED','5a8d386d-c139-4f59-a60c-49bb6f897a03','','',NULL), -('17163','Shipment','Misc','UNDEFINED','7afa8a33-44d4-41c5-914e-45a56475d98b','','',NULL), -('17164','Medical Bed','Usable','UNDEFINED','f5a969ca-f628-470c-bd92-b30693d1c273','','',NULL), -('17165','Internal Tank','FuelTank','Fuel','b2a06ccf-6e96-431e-97bc-950ce9d1a0fd','','',NULL), -('17166','Seat','SeatAccess','UNDEFINED','cf86f2c5-1d1e-465b-98d1-17775316052a','','',NULL), -('17167','ORC-mkX Helmet Justified','Armor','Helmet','c0dc8da1-c569-4291-891f-60fd0e6a7f40','','',NULL), -('17168','Pyro RYT Multi-Tool','Weapon','Gadget','dc0b1117-8590-43c7-9c68-7644ed8c89aa','','',NULL), -('17169','Door Control','Door','UNDEFINED','76b6fe4b-3c85-41da-ae4e-907f3dc7cd9b','','',NULL), -('17170','Remote Turret','Turret','GunTurret','c57cff4a-f5ec-403c-b2b4-201f60b2a59d','','',NULL), -('17171','Door_Ship_Sensor_Proximity_1x3x2','Sensor','DoorPart','cc4e2ed8-514c-4acc-a704-eda9305a3e06','','',NULL), -('17172','ARGO_MPUV_Lights_Leg_Left','Room','UNDEFINED','e9e355e7-09ba-421f-932f-93bf338d353d','','',NULL), -('17173','Remote Turret','Turret','GunTurret','38a67e89-6e94-4f7c-ba01-6f3c0ff3ea94','','',NULL), -('17174','RSI_Salvation_Thruster_Mav_Joint','ManneuverThruster','JointThruster','312410f7-43db-4dd6-a7d9-02f0490a4b07','','',NULL), -('17175','Stinger Mamba Livery','Paints','UNDEFINED','df34221a-190e-45f2-a8c6-ead7c0a2f146','','',NULL), -('17176','Vegan Delight Omni Pack','Food','Tin','a368e31b-5fea-4ce3-ba88-37b72157787a','','',NULL), -('17177','TRGT. STATUS','Seat','UNDEFINED','3ccfa99b-1947-484d-8162-fd963e96bc11','','',NULL), -('17178','BoreMax','Gadget','Gadget','06be9c06-120f-46d8-8179-e95ccd1f137a','','',NULL), -('17179','Renegade Vest Racing','Char_Clothing_Torso_1','UNDEFINED','8c9c0667-4820-4966-8eeb-a797ab7952fc','','',NULL), -('17180','Singe Cannon (S2)','Weapon','Gun','40b94722-48be-406a-9843-5c77772e4ab4','','',NULL), -('17181','ADP-mk4 Arms (Modified)','Armor','Arms','26296f0c-c8e6-42e9-a748-e63ccadf8c49','','',NULL), -('17182','Pyro RYT Multi-Tool','Weapon','Gadget','6ca733b3-bc20-4c78-bf03-3a348e458786','','',NULL), -('17183','un_cigar_single_1_a','Misc','UNDEFINED','b68efcdc-5c50-47ef-9040-a3689f4c7571','','',NULL), -('17184','Door Control','Door','UNDEFINED','11bf8a46-a14c-47c0-9f8c-786b5221efd9','','',NULL), -('17185','Geist Armor Core Epoque','Armor','Torso','2fdee81c-45ac-45d9-89d8-f427882b6386','','',NULL), -('17186','MRAI_Guardian_Thruster_Mav_Top','ManneuverThruster','FixedThruster','5dc05fe4-21ed-4406-a523-37809b323805','','',NULL), -('17187','TRGT. STATUS','Seat','UNDEFINED','8afb9e60-a7e0-45d1-8c8c-5868e67cfc3e','','',NULL), -('17188','Paint_300_Dash_GlossYellow','Misc','UNDEFINED','cdf9a0fb-1385-41e4-b376-9c199e35e420','','',NULL), -('17189','Seat','SeatAccess','UNDEFINED','cf40d400-47e6-4092-a531-76b1a85b381c','','',NULL), -('17190','Fresnel \"Yormandi\" Energy LMG','Weapon','Medium','1e860b7b-cfcc-4b94-9e87-f4052a5f68f6','','',NULL), -('17191','ORIG_890J_Seat_BattleBridge_Left','Seat','UNDEFINED','0211326c-3e75-4f8e-899a-4ada33ce9465','','',NULL), -('17192','Thrust','Misc','Harvestable','45ea9ad6-79d4-4088-806d-963c261f5ebe','','',NULL), -('17193','Strata Arms Shire','Armor','Arms','2ec9519a-232e-45b6-8310-5480387f295f','','',NULL), -('17194','Grin_MTC_Door_Exterior_Decal','Decal','DoorPart','1395abf4-79bc-4ce9-bf6f-42a8e93e6b61','','',NULL), -('17195','Col_A_Door_Cell_Lock_a','Door','UNDEFINED','9df74d8a-b837-44df-8ee7-bda8c8840328','','',NULL), -('17196','Carryable_2H_FL_MissionItem_Microsatellite_a','Misc','UNDEFINED','dcec542b-8973-4ad1-99ad-a138f4d61ca5','','',NULL), -('17197','Astatine','Cargo','Cargo','2b4d946d-7a2e-4949-82fa-d5ea0cc8487a','','',NULL), -('17198','Seat','SeatAccess','UNDEFINED','64187f46-a2f5-4557-a663-20a020092721','','',NULL), -('17199','RSI_Bengal_Thruster_Retro','ManneuverThruster','JointThruster','af7cc712-5831-4ecc-b43e-43a8342adbd7','','',NULL), -('17200','Morozov-SH Core Red Alert','Armor','Torso','248821bc-642e-4e04-af82-90b609103b66','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('17201','Weapon_Rack_1_VOLT_Sniper_Uncommon_001','Usable','UNDEFINED','00d8ec53-53e5-45bb-8aab-944560504180','','',NULL), -('17202','Plastic Cup','Misc','UNDEFINED','e503db84-56bc-44fc-ba7d-021cc44bf027','','',NULL), -('17203','Door_Ship_Sensor_Proximity_3x3x3','Sensor','DoorPart','300dc0a7-d402-41d5-aeec-3bea0b84b01e','','',NULL), -('17204','Starfarer Black Livery','Paints','UNDEFINED','8fae8721-8de5-4dba-95a1-f21ae265e5eb','','',NULL), -('17205','Colonialism_Outpost_RN_Battery','Battery','UNDEFINED','ca32efc5-ab29-44d8-948b-6b3a2dd84dd0','','',NULL), -('17206','ANVL_Pisces_Thruster_Mav_Joint_Top_C8X','ManneuverThruster','JointThruster','3026875b-cf2b-446f-8071-ca8cd5dec476','','',NULL), -('17207','TRGT. STATUS','Seat','UNDEFINED','c03b0e51-3dd4-4527-88a9-50927c07eb46','','',NULL), -('17208','TOAG_LaserGatling_Barrel_S2','WeaponAttachment','Barrel','cb57e9b0-683c-4f93-a56a-ac66535f2516','','',NULL), -('17209','Calva Helmet Red Festival','Armor','Helmet','7440e342-3c54-4a15-93f5-7cf041bbb57c','','',NULL), -('17210','Calva Helmet Year of the Rat','Armor','Helmet','96a017e7-fb9c-4098-8180-4bb8575839e1','','',NULL), -('17211','Access','SeatAccess','UNDEFINED','9fc06ae2-c3b3-4bc3-8af5-b2d9b8979fd6','','',NULL), -('17212','Turret','Turret','BallTurret','746fcb7a-2bec-4f19-87c2-d67f05362924','','',NULL), -('17213','Ranta Dung','Cargo','Cargo','39cb3073-b4af-4a75-8abd-f1ac4df842d5','','',NULL), -('17214','Flight Blade','FlightController','UNDEFINED','dc052e1a-518d-48e3-b608-57d55c2db527','','',NULL), -('17215','Jaclium (Ore)','Cargo','Cargo','ae182387-b03d-403d-845c-df05249fac5d','','',NULL), -('17216','Morozov-SH Legs Spite','Armor','Legs','a100ec8a-4103-4be8-a4d4-49a7d07e3c2c','','',NULL), -('17217','PAB-1 Arms Twilight','Armor','Arms','b654ca2a-6d3d-4d75-ae91-9d8820845105','','',NULL), -('17218','Enkel Shirt Primrose','Char_Clothing_Torso_0','UNDEFINED','9f93c037-eaf7-44a4-9afd-9bc2b2fc2c99','','',NULL), -('17219','Ponos Boots Green','Char_Clothing_Feet','UNDEFINED','ac0dee23-9ba5-4a44-aaf5-d06df4bf0213','','',NULL), -('17220','Cadmium Allinide','Cargo','Cargo','9479e8d0-486b-44ba-8847-8d93b99c753d','','',NULL), -('17221','Seat','SeatAccess','UNDEFINED','4d772ccd-7212-46eb-8101-ce8ee467d5a3','','',NULL), -('17222','Internal Tank','QuantumFuelTank','QuantumFuel','cd41a879-1be2-45cb-a826-d22be2c1200e','','',NULL), -('17223','bar_box_energy_calomeal_chocolatedeluxe','ShopDisplay','Default','dbc4405e-3f70-4949-ba3d-a0445acba408','','',NULL), -('17224','ESPR_BallisticCannon_Barrel_S5','WeaponAttachment','Barrel','e2d856c4-0ba3-40af-a2c7-a444786bf885','','',NULL), -('17225','Handcuffs','Misc','UNDEFINED','3ad20f83-47fe-47a4-8fde-2f1eed3f66e0','','',NULL), -('17226','Haltur','Shield','UNDEFINED','78f47f2b-6680-4b08-a50a-e0b902ad4d9e','','',NULL), -('17227','vlk_spewgun_ballistic_ice_adult','Weapon','Medium','ec962100-a739-4fdb-b248-0076d52fe18e','','',NULL), -('17228','Bed','Usable','UNDEFINED','8bdb64df-9678-4cdd-a5b4-fa334f22ab22','','',NULL), -('17229','DoorProximitySensorItem_8x8x4','Sensor','DoorPart','d75d6100-8ab1-4a13-a2c8-760eca281256','','',NULL), -('17230','Door Control','ControlPanel','DoorPart','f3e38408-a923-4bc7-935d-90c3c32c4168','','',NULL), -('17231','RS1 Odysey Spacesuits','Cargo','Cargo','340e3a9a-5587-4c44-8fd9-6360fe9597c1','','',NULL), -('17232','Internal Tank','FuelTank','Fuel','60adcd3b-9135-4753-9630-e6c27777931e','','',NULL), -('17233','RSI_Aurora_Thruster_LN_SG_Retro','MainThruster','FixedThruster','95486df8-e362-4b82-9f17-e0ff633b1b94','','',NULL), -('17234','Seat','SeatAccess','UNDEFINED','369ccfc4-7175-442d-a7b4-3b06bc8d30e9','','',NULL), -('17235','f_human_mannequin_legacy_marine_heavy','ShopDisplay','UNDEFINED','aa5170e2-0be2-4fc3-ad7e-cd7351ffef83','','',NULL), -('17236','Carryable_1H_SQ_noodle_box_5_a','Misc','UNDEFINED','7e7208fb-abbf-498d-935a-568a9210afcd','','',NULL), -('17237','SalvageFillerStation_MISC_Fortune_Left','SalvageFillerStation','UNDEFINED','01a9960e-0b8e-40e5-b90d-b5f3125076be','','',NULL), -('17238','Manned Turret','UtilityTurret','MannedTurret','c6f9489b-7757-4ec3-8354-ff7abe692a18','','',NULL), -('17239','Maze','Cargo','Cargo','5cf8c265-0e42-4101-b694-408cf0abdb9d','','',NULL), -('17240','Door','Door','UNDEFINED','9e176fca-d94a-4082-990c-511005dc6f51','','',NULL), -('17241','Debnam Gloves Aqua','Char_Clothing_Hands','UNDEFINED','65d8cbde-ba26-45c1-8da3-5bc5dc199e20','','',NULL), -('17242','Xanthule Suit','Armor','Undersuit','d820fc23-3490-4ef7-90fe-4fa82731c1f8','','',NULL), -('17243','Geist Backpack Rogue','Armor','Backpack','ed345298-87d0-4938-bc08-9f1c37e1a6cf','','',NULL), -('17244','BANU_TachyonCannon_PowerArray_S2','WeaponAttachment','PowerArray','f3ad2d5a-6601-4aa7-b56e-3ccf97909eb2','','',NULL), -('17245','Gadget_Cabinet_kegr_fire_extinguisher_01_med','Usable','UNDEFINED','315161a3-2b35-4b7e-aca3-2a27da7c23d6','','',NULL), -('17246','ARGO_SRV_Thruster_VTOL_Front','MainThruster','UNDEFINED','fc5d806c-af56-4425-aa73-a6e3eb9835ed','','',NULL), -('17247','Silverton Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','9c480668-5132-45a8-887a-91ca8a156c4c','','',NULL), -('17248','Venture Legs Imperial','Armor','Legs','f809e10f-f506-4885-af4d-cc68a49e29bb','','',NULL), -('17249','Radar_Display_VNCL_Blade','Display','UNDEFINED','02e08f09-886d-48a6-9bcb-31968893f150','','',NULL), -('17250','ControlPanel_Screen_LightControl_3x4','ControlPanel','DoorPart','8b98e77a-a2b4-4531-a9d3-02d8c1511a94','','',NULL), -('17251','Morozov-SH-I Helmet Pyrotechnic Horizon','Armor','Helmet','fef95957-ed52-4ed8-b94f-921677f04d3a','','',NULL), -('17252','Cordimon Jacket Sienna','Char_Clothing_Torso_1','UNDEFINED','4315904e-81f3-439e-89c4-a840ffbc780b','','',NULL), -('17253','SHIELDS','ShieldController','UNDEFINED','c72d6b3a-7e9d-4b39-aa78-b3af067989ac','','',NULL), -('17254','Morozov-SH-I Helmet Pyrotechnic','Armor','Helmet','e1ede578-27a0-4d52-bfcb-035e1c4072a3','','',NULL), -('17255','Ranger','QuantumDrive','UNDEFINED','23652e98-de0a-4b72-a669-9a094cc7471d','','',NULL), -('17256','Ready-Up Helmet Aqua','Char_Clothing_Hat','UNDEFINED','c635aec6-71de-4d41-a2e5-ddc7a739ef45','','',NULL), -('17257','Human Food Bars','Cargo','Cargo','97d4cd78-6dde-4db5-960c-d0400282fac9','','',NULL), -('17258','MISC_Hull_C_Thruster_Mav_Fixed_Small','ManneuverThruster','JointThruster','6e95ee13-2d3c-4891-bde2-24d79d9053b5','','',NULL), -('17259','Station','SeatAccess','UNDEFINED','2d777828-bf4d-4526-9130-15e3be095858','','',NULL), -('17260','Oracle Helmet Blue','Armor','Helmet','1a984351-9e1b-43fa-a4bd-7c2ef7e4c5fc','','',NULL), -('17261','Seat','Usable','UNDEFINED','d6596153-fcc0-4a17-855f-bfbe724db54a','','',NULL), -('17262','Door Control','Door','UNDEFINED','e250ed83-6226-4cf3-bea0-b59802cd96c1','','',NULL), -('17263','Screen_Datapad_PrisonerManifest','Display','UNDEFINED','1c4269ba-4cac-4b9f-a8bf-06fcb4c842bc','','',NULL), -('17264','RSI Lesath Missile Turret','Turret','MissileTurret','3abc1038-9870-472f-af95-073a98cbbc60','','',NULL), -('17265','Artimex Core Chairman\'s Club','Armor','Torso','60865948-2c95-4cd9-b7e0-c6974b1eed01','','',NULL), -('17266','BANU_TachyonCannon_Barrel_S3','WeaponAttachment','Barrel','2da7c4b6-21ab-4f4b-bd9d-e73e04306510','','',NULL), -('17267','Door','Door','UNDEFINED','07c7cc6a-14d9-41fe-9bdf-be63fb4ba3b2','','',NULL), -('17268','ORC-mkV Arms Dark Green','Armor','Arms','64e04605-9152-4a69-8fbe-6bebd2c8bcd4','','',NULL), -('17269','Slickdry Waders Sirocco','Char_Clothing_Legs','UNDEFINED','843a165d-31c2-4e1c-801c-5c83a01ce09f','','',NULL), -('17270','K7 Pants','Char_Clothing_Legs','UNDEFINED','24b20f66-0a75-471e-a03e-7ebd4d146a01','','',NULL), -('17271','Door Control','Door','UNDEFINED','9cf5dd13-3a87-45ee-ae2a-30d5fe02a02b','','',NULL), -('17272','Hydrogen','Cargo','Cargo','6940c823-0f97-443f-bc6f-35e4dd21a89c','','',NULL), -('17273','Personal Storage','Cargo','UNDEFINED','73465c71-a75d-45ef-af77-435e40057ccb','','',NULL), -('17274','MXOX_NeutronRepeater_Barrel_S3','WeaponAttachment','Barrel','513e9543-b729-413e-9a14-0e1e8a199075','','',NULL), -('17275','Bottle','Bottle','Default','5e355a4c-602c-424e-82f3-f5eb7c293469','','',NULL), -('17276','Tuvois Jacket Aqua','Char_Clothing_Torso_1','UNDEFINED','287409d3-2ee8-42ee-801e-8bed193fdfb3','','',NULL), -('17277','can_drink_3_fizzz_shop_1x5_a','ShopDisplay','Default','70efc87e-77fd-48b9-87f6-0ef43c170913','','',NULL), -('17278','Venture Core Yellow','Armor','Torso','9570a0c5-a5b4-4b0b-8dc3-d7718d357a7d','','',NULL), -('17279','Paint_Idris_Civilian','Paints','UNDEFINED','cfdf34f0-330b-4be2-bc3f-74ebab1025a7','','',NULL), -('17280','Geist Backpack Golden Blossom','Armor','Backpack','bfc4076a-bf6d-4cf4-966a-84f76908c896','','',NULL), -('17281','Seat','Usable','UNDEFINED','4eff3407-9bd2-4444-aef1-74ba4f8d777a','','',NULL), -('17282','Seat','Usable','UNDEFINED','801c6fe0-0b69-4a75-a495-b92589076bca','','',NULL), -('17283','Seat','SeatAccess','UNDEFINED','c3eded21-d480-4ed6-81fa-ce3359e2c8a2','','',NULL), -('17284','Nitrogen','Cargo','Cargo','0ada25ce-b4d2-4745-be9c-ab069a5f4087','','',NULL), -('17285','Door Control','Door','UNDEFINED','e5310364-6b2e-4413-80ea-7dd43d868101','','',NULL), -('17286','AcryliPlex Composite','Cargo','Cargo','6e3ff231-4b5f-4887-9741-861d0fd8494c','','',NULL), -('17287','mod_rack_food_2_CenterOnly','ShopDisplay','Default','1e93682e-ea26-4213-90b7-9a9b4d886152','','',NULL), -('17288','Workzone_Wall','Usable','UNDEFINED','5db361e1-1e04-4afa-944b-a7733710c137','','',NULL), -('17289','Union Pants Red','Char_Clothing_Legs','UNDEFINED','dbd9d3dd-e844-44ba-b1dd-28a42983796c','','',NULL), -('17290','Exo-8 Helmet (Used)','Armor','Helmet','6981d8a5-6e52-437f-a63b-fdae0d8f4bcf','','',NULL), -('17291','MTC Headhunters Reaper Livery','Paints','UNDEFINED','5ee62c7b-e6d5-48ac-963b-b6be679a4ad8','','',NULL), -('17292','NONE_LaserRepeater_Ventilation_S1','WeaponAttachment','Ventilation','f9762ed1-0ea9-4fbf-a51d-f8b2129f1acb','','',NULL), -('17293','Door','Door','UNDEFINED','b5af1985-02aa-4b38-83c0-e38331e6f1af','','',NULL), -('17294','Venture Core','Armor','Torso','3f4c807c-985f-4bb7-a7ff-db158e2f979d','','',NULL), -('17295','Internal Tank','QuantumFuelTank','QuantumFuel','c8953443-e4f8-44e5-b26b-fdefe74bddd5','','',NULL), -('17296','Mining Arm','ToolArm','UNDEFINED','fc9d1a68-ec5e-480c-99fb-b94a2718d601','','',NULL), -('17297','Flight Blade','FlightController','UNDEFINED','dc5cb70d-3200-4d86-b5cf-358af1b425e5','','',NULL), -('17298','Pisces Standard Flight Blade','FlightController','UNDEFINED','a2a8fc05-772e-4b2d-ad27-34fd97b499ba','','',NULL), -('17299','StorageCage_Quantum_DeliveryMission','Cargo','UNDEFINED','74b6b467-3e8a-42e5-adcd-ef31651db5a7','','',NULL), -('17300','ORIG_400i_RADR_Display','Display','UNDEFINED','215c07ce-60df-4d68-8757-b22646bd5027','','',NULL), -('17301','Argo MPUV Ship Armor','Armor','Medium','ec55c836-f0fc-4e02-9d31-4a4578449082','','',NULL), -('17302','AdrenaPen Xtra','FPS_Consumable','Medical','8000b3ce-4f4c-495c-8917-e4c3164fcf9a','','',NULL), -('17303','un_medical_box_1_needle_a','Misc','UNDEFINED','4c022501-a14d-4776-a691-33075e6d5f9d','','',NULL), -('17304','Seat','SeatAccess','UNDEFINED','24e0cce8-5190-4482-b400-2ee0764620d0','','',NULL), -('17305','Door_Ship_Sensor_Proximity_1x1x1','Sensor','DoorPart','e51a32de-d82a-45a2-b1aa-f07ff57d0969','','',NULL), -('17306','Altruciatoxin','Cargo','Small','f33385af-1229-4943-bb5b-7523a0dc95e5','','',NULL), -('17307','TRGT. STATUS','Seat','UNDEFINED','f2737104-0a0d-4f05-8c3b-ca761c46d725','','',NULL), -('17308','m_weakspot_vlk_apex_irradiated','Char_Accessory_Head','Vanduul','b2a5f309-ceed-4d4d-87c8-fe38c6cab9da','','',NULL), -('17309','Valkyrie Light Grey Livery','Paints','UNDEFINED','972a37f2-e4b2-4ae2-8e56-e2d43692eb0e','','',NULL), -('17310','Morozov-SH Core Redshift','Armor','Torso','51f70a59-adc7-4434-a1c4-b05e344aca13','','',NULL), -('17311','Weapon_Rack_4_Slots_MRAI_Guardian_Ext','Usable','UNDEFINED','6eee4d8d-5720-4290-9654-34fb1301fba8','','',NULL), -('17312','RSI_Constellation_SCItem_Seat_CoPilot_Right_MFD','Seat','UNDEFINED','54049b45-5074-44ea-9740-e22378a377fd','','',NULL), -('17313','ANVL_Hornet_F7A_Thruster_Retro','ManneuverThruster','JointThruster','346d0cf0-a174-44e4-9343-42e3a1125502','','',NULL), -('17314','ARGO_MPUV_1T_Thruster_Aux_Joint','ManneuverThruster','JointThruster','bb0ca340-6fe7-4603-8a98-480302076597','','',NULL), -('17315','Tungsten','Cargo','Cargo','60feb5a2-1935-4c00-84c2-fd6530de346a','','',NULL), -('17316','DockingTube_Fuel_Ports_ARGO_MPUV_1T','DockingCollar','UNDEFINED','e418aa84-2eda-44c4-b2b4-7af0490d277c','','',NULL), -('17317','Razorback Pants Imperial','Char_Clothing_Legs','UNDEFINED','0df9b852-94b7-410c-86dc-a1643825dbe0','','',NULL), -('17318','SHIELDS','ShieldController','UNDEFINED','9e133c67-a871-43e3-9764-8913692312d2','','',NULL), -('17319','TABA Hat','Char_Clothing_Hat','UNDEFINED','62e99ace-7332-4f2e-99f7-513f678794ed','','',NULL), -('17320','CBH-3 Helmet Crusader Edition','Armor','Helmet','5b00ebda-fb53-4c21-8c08-4a7fc1c74a0c','','',NULL), -('17321','Carryable_1H_SQ_drug_stim_3_a','Misc','UNDEFINED','3b53ec7b-3343-4e7b-ac19-848be8ee1376','','',NULL), -('17322','Artimex Core Lodestone','Armor','Torso','3226d127-fc32-4ebb-83b8-1864b6f42c6d','','',NULL), -('17323','Lynx Arms Dark Red','Armor','Arms','dbee9f04-0939-4657-9f8a-96a3c99b7db5','','',NULL), -('17324','Carrack De Biasio Livery','Paints','UNDEFINED','64b7c197-993a-4fb3-b4ec-ee19e48b9e53','','',NULL), -('17325','Consolidated Outland Mustang Nose Turret','Turret','BallTurret','ebc7badd-40a4-4fda-9d80-7c3b33c492c0','','',NULL), -('17326','ORIG_135c_Intake','Misc','UNDEFINED','7e25c09a-a461-4fea-bc3d-3e2b64a1a394','','',NULL), -('17327','vlk_spewgun_ballistic_ice','Weapon','Medium','54d55190-83b1-4ba3-8ff3-30a6c9e36426','','',NULL), -('17328','Rustic Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','21ebb163-2a48-424a-9c2a-acdc2bb1c2e9','','',NULL), -('17329','Seat','Usable','UNDEFINED','9a0da622-59dc-491f-87bf-967116deadac','','',NULL), -('17330','TRGT. STATUS','Seat','UNDEFINED','490bdd68-e5dc-41db-a3eb-646d23f4d1bd','','',NULL), -('17331','hightech_airlock_small_lghtgrp','Lightgroup','AirlockPart','fcb3cf0c-8674-4b8a-96cb-c41c46d26aa5','','',NULL), -('17332','GRIN_Greycat_SCItem_Seat_Passenger','Seat','UNDEFINED','102189e1-f53b-4f7d-bff3-49b8ab6e621a','','',NULL), -('17333','Door Control','Door','UNDEFINED','3ca63610-0134-44fb-9d84-07a8fe397462','','',NULL), -('17334','Razor Stormbringer Livery','Paints','UNDEFINED','d6b7f64f-772f-497a-9a29-dddaccb90d2b','','',NULL), -('17335','Bed_Mattress_No_Sheets','Seat','UNDEFINED','de544316-1752-4593-8e8f-4159cb4a541f','','',NULL), -('17336','Door Control','ControlPanel','DoorPart','9ba7cfc5-9627-4182-aa4e-863cea06c349','','',NULL), -('17337','Lynx Core Violet','Armor','Torso','f26f97c8-9719-41fa-bae2-a066c283f2f3','','',NULL), -('17338','Seat','SeatAccess','UNDEFINED','f6c96739-a93f-4b11-8527-886460377434','','',NULL), -('17339','Edgeriders Shoes Tangelo','Char_Clothing_Feet','UNDEFINED','4951c009-1720-4eec-94c6-0c5e532fee64','','',NULL), -('17340','Pyro Crab T-Shirt','Char_Clothing_Torso_0','UNDEFINED','4cf1eda3-ab29-4ab0-b51d-a3a0d4634437','','',NULL), -('17341','Barrymore Pumps','Char_Clothing_Feet','UNDEFINED','2ccbd0c3-9d79-4734-97eb-1bb84d679031','','',NULL), -('17342','ANVL_Pisces_Thruster_Main_Left_C8R','MainThruster','FixedThruster','e3ccdbdf-c73e-423e-9429-2184078c4a30','','',NULL), -('17343','Manned Turret','TurretBase','MannedTurret','167f540f-042f-45c3-a122-defa7cac8ff9','','',NULL), -('17344','Weight_Rack_Dumbbell_1_b','Misc','UNDEFINED','b3154535-4360-4116-a079-f8d6999f7766','','',NULL), -('17345','H_Dashboard_Projector_HUD_RSI_Perseus_Gunner','Display','UNDEFINED','16653103-045d-4597-9975-3dd217dd3aad','','',NULL), -('17346','Remote Turret','TurretBase','MannedTurret','4424328d-4972-41c1-a556-b0790b4c407a','','',NULL), -('17347','un_jar_glass_3_empty_a','Misc','UNDEFINED','fc20f38b-efcc-4081-bf96-326a722af787','','',NULL), -('17348','Novikov Exploration Suit','Armor','Undersuit','e04391b4-6ef1-42c5-b23f-20a4a3709770','','',NULL), -('17349','MISC_Starlancer_CargoGrid_Small','CargoGrid','UNDEFINED','3bf97a22-3513-49dd-9a43-de9191c8d595','','',NULL), -('17350','Pressurized Ice','Cargo','Cargo','2817bd3d-30af-4c2e-9dcb-640f041b2c94','','',NULL), -('17351','Weapon_Rack_MISC_Starlancer','Usable','UNDEFINED','4219d7e2-5f03-4b65-92ca-5d04181efb67','','',NULL), -('17352','Personal Storage','Cargo','UNDEFINED','fba0dec8-28c6-4b42-8ab2-eff17e06b7ea','','',NULL), -('17353','m_human_mannequin_base_armor_Collector_Molten','ShopDisplay','UNDEFINED','965d0b44-b62d-44af-8460-e45976c61595','','',NULL), -('17354','Railing_CornerBevel_In_4m_Lowtech_Open','Usable','UNDEFINED','0552f4f8-a1df-4e4c-af6a-f41bf2015743','','',NULL), -('17355','Irradiated Valakkar Pearl (Grade B)','Misc','Harvestable','e738c605-8ef7-4238-8170-5ab0c4f9c15d','R','',NULL), -('17356','SCItemDisplayScreen_ScreenSize_W64_H36_H74_Engineering','Display','Default','3636f646-cbea-4bbe-8561-25a52c81fe4d','','',NULL), -('17357','S-38 \"One Empire\" Pistol','Weapon','Small','971a5272-a0f1-46a1-aee1-44955fe528e4','','',NULL), -('17358','Omnapoxy','Cargo','Cargo','ea9e7502-c5c8-4d2b-b7da-b00ca946f79b','','',NULL), -('17359','Oracle Helmet Yellow','Armor','Helmet','601ab389-99ba-48a0-8c9b-5937f27db2e1','','',NULL), -('17360','Lynx Core Tan','Armor','Torso','df6526ae-3a5c-498c-b268-6fc649ba1470','','',NULL), -('17361','Suckerpunch-XL Cannon','Weapon','Gun','e09590d1-13a0-4d25-ad89-3dfc18a61c4a','','',NULL), -('17362','Union Pants Green','Char_Clothing_Legs','UNDEFINED','c37d4eb1-1ee1-4e31-ab3f-b14247f8a692','','',NULL), -('17363','K7 Pants Dark Red','Char_Clothing_Legs','UNDEFINED','eac33b3c-6a21-4e04-84e7-6f42e00110f4','','',NULL), -('17364','Bed','Seat','UNDEFINED','bc6be4a4-c80d-461e-82ab-19298b4b24f2','','',NULL), -('17365','Koya Pants Grey','Char_Clothing_Legs','UNDEFINED','3122a1ea-c354-42c5-a7b5-3a3e4222e0ce','','',NULL), -('17366','Microid Battle Suit Helmet Lowland','Armor','Helmet','499cb769-9637-4782-940d-c8366c52d672','','',NULL), -('17367','Microid Battle Suit Helmet Nomad','Armor','Helmet','c49f68c1-ecec-432d-9418-1f940952b131','','',NULL), -('17368','Carryable_TBO_FL_24SCU_Commodity_ProcessedGoods_AceInterceptorHelmet','Cargo','Cargo','7ac90492-0055-4ae1-b87e-9d01f36d4851','','',NULL), -('17369','ORIG_M50_Thruster_Mav_Joint_Up','ManneuverThruster','FixedThruster','35f5f80f-0cbd-475a-a0a6-9dcfb9731d17','','',NULL), -('17370','TRGT. STATUS','Seat','UNDEFINED','01887b31-6f63-4500-91a9-b60f03bd624c','','',NULL), -('17371','Cargo_Comm_125x3_Mineral_Quartz_a','Cargo','Cargo','c599d30d-887a-4adb-86c7-8718b7176819','','',NULL), -('17372','Deadbolt VI Cannon','Weapon','Gun','a710fe11-49e3-4260-9f3b-de08d304c0e0','','',NULL), -('17373','Deo Shirt Aqua','Char_Clothing_Torso_0','UNDEFINED','cc0efa71-16f2-42b5-b8e6-2817e50e13ec','','',NULL), -('17374','Door Control','ControlPanel','DoorPart','b932e032-e6b6-4774-97ee-d7e2aa96d53c','','',NULL), -('17375','Arden-SL Arms Red Alert','Armor','Arms','3c54afff-bd48-4177-80ca-0da0ddc4f1a2','','',NULL), -('17376','Door','Door','UNDEFINED','043da36f-839d-4dbb-958e-9f6201467367','','',NULL), -('17377','Palatino Helmet Sunstone','Armor','Helmet','61f488da-7fd1-4ab9-b295-d93bb891bf23','','',NULL), -('17378','DR Model-XJ3 Repeater','Weapon','Gun','2a787ee5-d720-4490-8823-65a0f8578f4b','','',NULL), -('17379','HoverQuad Overdrive Livery','Paints','UNDEFINED','56c37c31-0886-4fb8-a49f-1c2f37f056af','','',NULL), -('17380','MISC_Fury_Canopy_Base','Misc','UNDEFINED','2a028b79-bc11-4b38-938a-5f7bf4ab41f3','','',NULL), -('17381','grin_cutter_01','Weapon','Medium','992f3584-e14e-436c-9c08-235427f846f9','','',NULL), -('17382','Li-Tok Boots Dark Red','Char_Clothing_Feet','UNDEFINED','dbb24699-ca91-4d0f-907f-d4cd48e60806','','',NULL), -('17383','Door Control','Door','UNDEFINED','dadc9ec6-3eab-44a7-a2e7-64d9501364fa','','',NULL), -('17384','microTech Hat','Char_Clothing_Hat','UNDEFINED','73788c89-6015-460d-9227-8c3a6f45c4f4','','',NULL), -('17385','un_plate_empty_1_a_stacked','Food','Consumable','b27fc45f-67df-44d9-8c2d-d63352483471','','',NULL), -('17386','Carbon','Cargo','Cargo','fe70421e-c78b-4382-b0e6-7e32f48c8bd5','','',NULL), -('17387','MSD-543 Missile Rack','MissileLauncher','MissileRack','a6523f51-1f94-405c-be7b-5e14fef44f12','','',NULL), -('17388','Medical Bed','Usable','UNDEFINED','0e2e8550-6b91-4447-a240-4f1e40939f8d','','',NULL), -('17389','Bamoty','Shield','UNDEFINED','e2dc5036-24ea-4b85-ab00-34c179ac2e04','','',NULL), -('17390','Aluminum','Cargo','Small','0de4154c-bda8-49f6-85c4-ab0bb60e0096','','',NULL), -('17391','Artimex Helmet Hurston Dynamics Executive Security','Armor','Helmet','1766a362-90a2-45a0-a9de-ee3825ed2adc','','',NULL), -('17392','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','50926a92-a8b4-415c-a140-5b34b54ba256','','',NULL), -('17393','Bexalite','Cargo','Cargo','76ef682c-c5b7-48c0-80da-3be7c7579584','','',NULL), -('17394','Invictus Flight Jacket','Char_Clothing_Torso_1','UNDEFINED','794f3335-8fa6-4a8d-aa88-de7ff608b889','','',NULL), -('17395','Door Control','ControlPanel','DoorPart','80f6673b-f079-4f00-b150-0c1c9abe77ed','','',NULL), -('17396','TRGT. STATUS','Seat','UNDEFINED','b717a51f-bf61-4797-925f-a2e14cee3f8f','','',NULL), -('17397','Weapon Rack','Usable','UNDEFINED','eb54e60e-6c04-46ed-89d9-809e313975c3','','',NULL), -('17398','Carinite (Pure)','Cargo','Cargo','b218099b-bc4e-434f-ab32-591bd85c00af','','',NULL), -('17399','Manned Turret','UtilityTurret','MannedTurret','f93183df-7e7c-4017-a2fb-2975ad1333f2','','',NULL), -('17400','Access','SeatAccess','UNDEFINED','2b8eb3a3-368b-4fee-a380-0deeb2df2c71','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('17401','ASAD_DistortionRepeater_Barrel_S2','WeaponAttachment','Barrel','748bba37-0b33-4d68-a7d9-5c39bc87ffd1','','',NULL), -('17402','Door_Relay_ContestedZone_FakeForceOpen','Door','UNDEFINED','ae0f2563-5e9a-4999-96b0-6934836c0167','','',NULL), -('17403','tool_manual_1_pliers_a','Misc','UNDEFINED','d766cf9f-68e8-455a-bbc7-30a36c0be4a7','','',NULL), -('17404','Nova Snowblind Livery','Paints','UNDEFINED','09f37928-8cb1-410b-9623-94d6af93b1b9','','',NULL), -('17405','Seat','SeatAccess','UNDEFINED','ef73b7b2-c7cd-4c6d-b43e-025bbbe8585b','','',NULL), -('17406','Venator Boots Molehill Brown','Char_Clothing_Feet','UNDEFINED','54756005-c81f-49cd-95f6-27a1d7d0f872','','',NULL), -('17407','IAE 2950 Hat','Char_Clothing_Hat','UNDEFINED','dc365f25-1357-44ff-8063-36aa7c265a11','','',NULL), -('17408','CST-313 \"Castillo\"','BombLauncher','BombRack','c9686715-884f-456a-afbe-054107c8c54a','','',NULL), -('17409','ANVL_Hornet_F7_Mk2_Thruster_Mav_1','ManneuverThruster','JointThruster','5356f4c3-3e76-4caa-a056-4dd8783996b2','','',NULL), -('17410','Chrome Dome Head Gear Calavera','Char_Clothing_Hat','UNDEFINED','663faded-8283-400f-9f1d-a0bcc5a1c48e','','',NULL), -('17411','Large Container','Container','UNDEFINED','be4bf939-e870-455f-8c34-2e51ff193fbc','','',NULL), -('17412','Weapon Rack','Usable','UNDEFINED','5e4fb2f6-af5e-4ab6-80f1-1c5dc543ccae','','',NULL), -('17413','Weapon_Rack_Cz_Firerat_001','Usable','UNDEFINED','cd6d14ca-1885-40f4-80bb-213305c9bfff','','',NULL), -('17414','PAB-1 Legs Cry-Astro Edition','Armor','Legs','7415bc2b-5554-4222-977d-a88b1e3f2837','','',NULL), -('17415','Carryable_2H_FL_ball_medicine_1_a','Misc','UNDEFINED','ba41d8fb-7dec-4825-8486-ea9358ea2362','','',NULL), -('17416','DustUp Helmet Tactical','Armor','Helmet','68d8a024-9d3b-4d9b-8746-8e7ae25b4475','','',NULL), -('17417','Marshal Sleeveless Vest Sycamore','Char_Clothing_Torso_1','UNDEFINED','a8b32edc-5abb-4863-9f8f-5dc7f6d1bcae','','',NULL), -('17418','Hermes Lockdown Livery','Paints','UNDEFINED','73b775d9-2645-40be-82b5-cbe811c3f36c','','',NULL), -('17419','Hadanite','Cargo','Cargo','d8126953-4007-4635-88ae-a3d8fb28fff7','','',NULL), -('17420','AEGS_Sabre_Peregrine_BoosterEngine','Misc','UNDEFINED','c618717e-8033-4167-80a9-21aeebb8e1ec','','',NULL), -('17421','Keystone Jacket Taupe','Char_Clothing_Torso_1','UNDEFINED','4810a027-0914-4b2f-85c9-87582f63a3d0','','',NULL), -('17422','Parvat Jacket Frozen Spring','Char_Clothing_Torso_1','UNDEFINED','300d5e23-c623-42f4-8ea3-1349d5777d5b','','',NULL), -('17423','Steward','Shield','UNDEFINED','b1454c7b-859d-4e78-9429-e05391242ca7','','',NULL), -('17424','MASTER_un_crate_1SCU','Cargo','UNDEFINED','699980d4-018a-408c-b726-e486250ad063','','',NULL), -('17425','Prim Shoes White','Char_Clothing_Feet','UNDEFINED','aae2b8ad-5f86-46dd-9d8f-7a146c8928b5','','',NULL), -('17426','Odyssey II Helmet Aqua','Armor','Helmet','05553d1d-90b4-41a1-bb0e-fc36fce80849','','',NULL), -('17427','BANU_Defender_Locker_Back','Player','UNDEFINED','dac44d0f-02c0-4518-9fc9-7d9aebf96ac6','','',NULL), -('17428','Venture Arms Ascension','Armor','Arms','85bcc8bd-0929-40fc-b7d5-7f80164c5a78','','',NULL), -('17429','Oza','Cargo','Cargo','e61a28da-a568-40e6-a610-6a2ad4022938','','',NULL), -('17430','MISC_Starlancer_Thruster_VTOL','ManneuverThruster','FixedThruster','caa1a5ed-ac6b-4d95-b72d-e4e6f57a7529','','',NULL), -('17431','Controller_Mining_ATLS_GEO','MiningController','UNDEFINED','976ec585-d102-4ba0-8fca-19f457167b2c','','',NULL), -('17432','Loscha Work Vest Primrose','Char_Clothing_Torso_1','UNDEFINED','5a3ffc3c-0ca5-4648-bfb0-f890591b80dc','','',NULL), -('17433','Hofstede-S1 Mining Laser','Mining','Gun','077a4a94-6296-4a83-a6c4-f215f7efd1df','','',NULL), -('17434','Luminalia Sextant','Misc','UNDEFINED','8472968b-024e-4ce9-a258-fd78ebf9e9ae','','',NULL), -('17435','Ridgely Jacket','Char_Clothing_Torso_1','UNDEFINED','dce181cb-f4f4-47d6-aa19-12ae712e5cf0','','',NULL), -('17436','Flight Blade','FlightController','UNDEFINED','c2127743-c82c-48d8-8e46-442cfc26fc7d','','',NULL), -('17437','Turret','Turret','BallTurret','0e72c7ce-f16a-4150-ba17-f01fe96df6bb','','',NULL), -('17438','facial_hair_021','Char_Head_Beard','UNDEFINED','8590e357-d3a7-4d39-88ff-d199ecb236c7','','',NULL), -('17439','Razorback Pants Red','Char_Clothing_Legs','UNDEFINED','8f7dfb1e-6f79-4361-838f-fdd5fcc0f493','','',NULL), -('17440','P8-AR Rifle','Weapon','Medium','53042ca6-a9ba-4b0e-8c36-a11a5f47feb9','','',NULL), -('17441','Aztalan Core','Armor','Torso','5ac5def7-58d9-451c-8288-8dab99c150c5','','',NULL), -('17442','Bed','Usable','UNDEFINED','44633edb-9f3f-44c5-90d4-0a74df0e8b66','','',NULL), -('17443','VitalityPen','FPS_Consumable','Medical','449eb771-a688-4b70-959b-62399a1bf48c','','',NULL), -('17444','Yebira II','Weapon','Rocket','2f525576-8894-4bc6-baf1-d08a8c21cabc','','',NULL), -('17445','ORIG_X1_Thruster_Retro','ManneuverThruster','FixedThruster','ef3135b1-150e-4fe2-8669-f5db54114459','','',NULL), -('17446','AEGS_Redeemer_Thruster_VTOL','ManneuverThruster','FixedThruster','4b0cb80d-865c-4312-8af5-bd62274b97f4','','',NULL), -('17447','Paint_600i_Executive_Edition','Paints','UNDEFINED','e3c600da-5a34-4e48-8e8d-7cdbe40e798f','','',NULL), -('17448','Tin','Cargo','Cargo','6fb127ba-8ced-47e4-b03b-08c1d048f672','','',NULL), -('17449','Wikelo Emporium Jacket','Char_Clothing_Torso_1','UNDEFINED','5e8fcde1-e30f-43b4-937b-ddf404adc8dd','','',NULL), -('17450','Lillo Pants Blue','Char_Clothing_Legs','UNDEFINED','746ba64e-08a2-434f-a5d9-eed795843f4b','','',NULL), -('17451','VariPuck S2 Gimbal Mount','Turret','GunTurret','fbae6747-8e06-4409-8900-671529273e3d','','',NULL), -('17452','Lost Plague Helmet Radioactive Yellow','Armor','Helmet','0e4e810b-845d-4897-a23f-44c66cfbaef5','','',NULL), -('17453','Door_Timer_DCD','Door','UNDEFINED','33175ca6-d872-4a50-b79d-93ff0ad81911','','',NULL), -('17454','Balor HCH Helmet Purple','Armor','Helmet','985c8040-1405-45ca-85e8-cbc3a2d26827','','',NULL), -('17455','TrueDef-Pro Core Black/Silver','Armor','Torso','7fb34c27-aea7-4d46-8998-ac101ab606a4','','',NULL), -('17456','Origin Jumpworks Noise Launcher','WeaponDefensive','CountermeasureLauncher','81ede303-4813-41d5-90f1-ab506009b6b1','','',NULL), -('17457','Scaleweave Undersuit Driftwood','Armor','Undersuit','626cd0fc-3a8b-4dca-8789-182103e374ea','','',NULL), -('17458','400i Stratus Livery','Paints','UNDEFINED','867fc361-f3b4-4496-aed0-1e6a56bbf12c','','',NULL), -('17459','stand_shop_medium_PowerPlant','ShopDisplay','UNDEFINED','bb39d1bf-8b73-4640-9535-9a8f895eb2b3','','',NULL), -('17460','util_pyro_sml_airlock_lghtgrp','Lightgroup','AirlockPart','99c49b8f-91f3-4979-a072-0a5f9ca850be','','',NULL), -('17461','Debnam Gloves Blue','Char_Clothing_Hands','UNDEFINED','81719bc1-39d2-4343-9d62-cd0c10b7aecc','','',NULL), -('17462','Seat','Usable','UNDEFINED','7a8912cf-35c3-4b5c-884f-5896ee620b4a','','',NULL), -('17463','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','60768416-609a-4663-9939-3bcbd612abc3','','',NULL), -('17464','Internal Tank','QuantumFuelTank','QuantumFuel','2ac19dfa-cffb-43d0-98a6-00a951265692','','',NULL), -('17465','Marok Gem','Misc','Harvestable','680352e9-5541-44b9-983a-a1a2802223f4','','',NULL), -('17466','Mannequin_NoDraw_PMA_Shirt','Char_Clothing_Torso_0','UNDEFINED','8cd0dbc5-d62f-4dc7-ba97-d2b1ee1858b2','','',NULL), -('17467','Taos Balaclava and Goggles Crimson','Char_Clothing_Hat','UNDEFINED','861056ca-6659-4be1-bba3-63ea9eb4c453','','',NULL), -('17468','Cordimon Jacket Yellow','Char_Clothing_Torso_1','UNDEFINED','910f0fcb-e480-4196-9288-77117c8eb4de','','',NULL), -('17469','Pyro RYT Multi-Tool','Weapon','Gadget','410cc514-6a00-441a-8128-ac11797f844a','','',NULL), -('17470','Valakkar Plushie','Misc','Personal','67ee408f-9246-40eb-860f-7f6ddc141246','','',NULL), -('17471','Drivetrain','WheeledController','UNDEFINED','0291b8e8-626d-4a9a-a4eb-691c4ee264c6','','',NULL), -('17472','Crusader Industries T-Shirt Black','Char_Clothing_Torso_0','UNDEFINED','e2b59279-ef03-4b31-9f6c-f20247d06248','','',NULL), -('17473','Renegade Helmet Tactical','Armor','Helmet','c3574438-7686-4520-806b-e65d6a0aaabb','','',NULL), -('17474','Door_Ship_Sensor_Proximity_BANU_Defender','Sensor','DoorPart','3171cbe8-9529-4fa0-8853-9b74b5cdfb82','','',NULL), -('17475','Weapon_Ship_Cz_005','Usable','UNDEFINED','16e1ad79-cfe1-43a0-b9a2-2a71c8f564cc','','',NULL), -('17476','Tritium','Cargo','Cargo','5e88ac55-5a40-4607-9177-3e2168ccd535','','',NULL), -('17477','DockingTube_Fuel_Ports_XNAA_SanTokYai','DockingCollar','UNDEFINED','5deb2b94-9207-4c83-ac95-95e05abfc315','','',NULL), -('17478','ControlPanel_VentAccess','ControlPanel','DoorPart','fe95bdd4-225a-46bb-8700-88fae34813de','','',NULL), -('17479','Construction Rubble','Cargo','Cargo','20172cc0-76a0-484c-b6a8-ebd5c0ee1cdd','','',NULL), -('17480','Cirrus Boots Purple','Char_Clothing_Feet','UNDEFINED','0d0bf429-f318-41d5-beca-113d79bd7b15','','',NULL), -('17481','ADP-mk4 Core Justified','Armor','Legs','4a2b83a2-6be7-4638-86bf-442fb0257db4','','',NULL), -('17482','Door Control','Door','UNDEFINED','f06f3894-f5b5-43a7-95f0-a64bb3324dcd','','',NULL), -('17483','Manned Turret','TurretBase','MannedTurret','37117e60-6de9-4276-af04-dc81f8761045','','',NULL), -('17484','Liberator Prime','Weapon','Rocket','5ed1f1ec-6ebc-463b-9529-83382e20624d','','',NULL), -('17485','ControlPanel_Screen_CustomButtons_InfoScreen','ControlPanel','DoorPart','c1f61cd3-98ec-4cf8-9b81-d7e916a16d10','','',NULL), -('17486','Anvil Ballista S05 Missile Rack','GroundVehicleMissileLauncher','GroundVehicleMissileRack','c0ca28f6-e9d3-4c38-866e-254d9ec81a10','','',NULL), -('17487','Seat','Usable','UNDEFINED','d6ee6a58-25db-4f48-9bf3-8085abd98f06','','',NULL), -('17488','ASD Bomber Jacket','Char_Clothing_Torso_1','UNDEFINED','0140c71f-56db-4d37-b98e-0a7a0ee6188d','','',NULL), -('17489','DoorDefaultTemplate_AnimVariable','Door','UNDEFINED','015c25a7-43d2-4b7c-b36b-d606726ef94e','','',NULL), -('17490','Aslarite (Raw)','Cargo','Cargo','c97ff34d-cc47-41cb-bf5a-30ad99f59a12','U','',NULL), -('17491','Seat','Usable','UNDEFINED','fb1a49da-af93-44d9-aac7-ef74ad84529b','','',NULL), -('17492','S71 Rifle','Weapon','Medium','39086302-d8f9-457d-a746-255c511ea6cf','','',NULL), -('17493','Tona Shoes Purple','Char_Clothing_Feet','UNDEFINED','0ac0aebc-a0bc-4a91-837c-bcd1d26bc5d4','','',NULL), -('17494','Seat','Usable','UNDEFINED','668d7fc0-e04f-45fb-b39d-a25d8c56da4a','','',NULL), -('17495','INTK_KRIG_P52_Merlin','FuelIntake','Fuel','de810beb-3863-4e4e-8eea-a0c1d6304b09','','',NULL), -('17496','Outback Arms Sleet','Armor','Arms','2b1df575-2a7d-4194-8bb9-68401dd1e800','','',NULL), -('17497','Siebe Helmet Thundercloud','Armor','Helmet','68007094-1e33-4cc2-bb04-361c76cdb8f2','','',NULL), -('17498','A03 \"Canuto\" Sniper Rifle','Weapon','Medium','1aad8334-8d0a-4dd1-bcca-bd195bc013a7','','',NULL), -('17499','AEGS_Javelin_Thruster_Mav_Main_01_Aux_Side','ManneuverThruster','FixedThruster','9201a351-c204-4016-b233-17b206e9375b','','',NULL), -('17500','mobiGlas Maroon Casing','MobiGlas','Personal','584a1b45-f4cd-4d69-a694-b2fc47fe7fb9','','',NULL), -('17501','INTK_RSI_Aurora_ES','FuelIntake','Fuel','57412106-c03c-4f21-ac4f-8bae4ce48896','','',NULL), -('17502','HRST_LaserRepeater_PowerArray_S3_Storm','WeaponAttachment','PowerArray','72271b9a-f9cd-42b5-a2c3-5bbd96efd427','','',NULL), -('17503','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','b918e013-52bf-46d6-80e7-1bac48cfea88','','',NULL), -('17504','Seat','SeatAccess','UNDEFINED','4302ecdf-9068-4daf-bd33-96f637339575','','',NULL), -('17505','RSI_Constellation_SCItem_Seat_Access_CoPilot_Right','SeatAccess','UNDEFINED','4a729777-e17a-49e6-809e-c7c5d700f426','','',NULL), -('17506','DRAK_Dragonfly_Thruster_Aux','ManneuverThruster','JointThruster','86be18db-bfa0-4508-843a-8015430326d0','','',NULL), -('17507','Artimex Legs Hurston Dynamics Executive Security','Armor','Legs','ed19edd5-888b-48bf-b8dc-35e27c6c7e86','','',NULL), -('17508','Omnisky III Cannon','Weapon','Gun','26838ca7-418a-47d2-8429-7339ebbb8993','','',NULL), -('17509','AEGS_Vanguard_Baydoor','Misc','UNDEFINED','598fb930-4d8f-49c7-82e9-1e5ed8619dae','','',NULL), -('17510','Seat','Usable','UNDEFINED','01913497-ba2a-44d7-9d81-091de8b5940f','','',NULL), -('17511','Luminalia Gift','Cargo','Cargo','4bdaef4d-d3ab-41b0-8602-0d3e99b2b4c6','','',NULL), -('17512','Seat','Usable','UNDEFINED','4dd5b7d3-8398-4e8f-bbc0-cb5ab47dca7c','','',NULL), -('17513','f_human_mannequin_clothing_base','ShopDisplay','UNDEFINED','4009ce13-87eb-4ce7-aa65-74f20ccff92f','','',NULL), -('17514','AEGS_Sabre_RADR_Display','Display','UNDEFINED','5c1bc200-6c29-42ab-8006-f1744c1c801e','','',NULL), -('17515','MK-4 Frag Grenade','Weapon','Grenade','46691e82-b633-4d4a-b967-3fce30a0a01c','','',NULL), -('17516','DRAK_Vulture_Component_Quantum','Player','UNDEFINED','83116eb5-8378-4850-b8eb-fa5df794b741','','',NULL), -('17517','DRAK_Corsair_Ground_Refueling_Port','Door','UNDEFINED','de19b049-0dde-40c6-b4b1-5e2ffd3a59db','','',NULL), -('17518','Tepilo','Cooler','UNDEFINED','9bfb25e0-b507-4d6f-b8e5-d7d2d91f9670','','',NULL), -('17519','DRAK_Cutlass_Blue_Thruster_Maneuver_Front_Top','ManneuverThruster','JointThruster','44e7ce92-a4c9-4b80-b555-31cd147ca871','','',NULL), -('17520','ViseLock S2 Tractor Beam','TractorBeam','UNDEFINED','df040b13-b043-42c2-b4e5-3fd8f9f3f23c','','',NULL), -('17521','CNOU_Mustang_CargoGrid_Main','CargoGrid','UNDEFINED','3744d210-f02e-4154-bfb8-3f8e95907e3f','','',NULL), -('17522','Door Control','Usable','UNDEFINED','58a69a57-93ce-48a6-83db-272daae567d0','','',NULL), -('17523','Defiance Arms Hailstorm','Armor','Arms','96cfbf47-8101-411f-bf01-ede37218dc0e','','',NULL), -('17524','Targa','Shield','UNDEFINED','d0669062-2e64-41d4-beb2-d510588ca593','','',NULL), -('17525','Screen','Usable','UNDEFINED','6a9b6017-1451-489c-aff9-8426094cc7ae','','',NULL), -('17526','DockingTube_Fuel_Ports_ESPR_Talon','DockingCollar','UNDEFINED','d409e407-cf1f-4574-ac42-adeae9829bbd','','',NULL), -('17527','RSI_Zeus_Escpod_Bedding_1','Seat','UNDEFINED','7bcd0d78-64d5-4ca3-a19b-5e08038c2228','','',NULL), -('17528','Carryable_1H_CY_weight_dumbbell_1_14kg_c','Misc','UNDEFINED','decc5d45-3646-4a06-99b4-d2d6acca5bcb','','',NULL), -('17529','Corbel Helmet Mire','Armor','Helmet','00638fba-f80d-4848-8807-b70d0035992c','','',NULL), -('17530','Arrowhead \"Warhawk\" Sniper Rifle','Weapon','Medium','cd549fac-17bb-44af-b824-9e81384bd1be','','',NULL), -('17531','Horizon Helmet Imperial','Armor','Helmet','e1c3a946-afd5-4f53-93cd-9b9ec3122749','','',NULL), -('17532','Stud','Char_Head_Piercings','UNDEFINED','94887ad9-4781-4324-9dce-ec9fbb63a44f','','',NULL), -('17533','Hornet Kilian Blue Livery','Paints','UNDEFINED','9f68c69d-8fe6-4df1-8ae0-4e69b35a4147','','',NULL), -('17534','ORIG_85X_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','1d52f3ea-2fcf-4080-a1a6-455145837792','','',NULL), -('17535','Genoa','PowerPlant','Power','2a02027b-5c19-456b-901b-663189505be0','','',NULL), -('17536','Aegis Eclipse - Noise Launcher','WeaponDefensive','CountermeasureLauncher','ab307106-2290-4168-8cec-9fb7c87a0d43','','',NULL), -('17537','Sorel Hat Shuttle Gray','Char_Clothing_Hat','UNDEFINED','9d857247-ce3a-4582-9fe2-8301f246ff8d','','',NULL), -('17538','Aurora Mk II Shade Livery','Paints','UNDEFINED','f331749a-d9de-44e8-b975-68a0b6648492','','',NULL), -('17539','Fried Seanut','Food','Consumable','e6084232-38a4-407a-8029-5dec1c67cbd0','','',NULL), -('17540','AEGS_Avenger_Thruster_Mav_Joint','ManneuverThruster','JointThruster','62ec1e39-f275-47f8-a9f9-10f5200b81d6','','',NULL), -('17541','expo_display_shirts_and_hats_anvil','ShopDisplay','Default','afd0dd01-8654-4243-9884-edf9bec8faad','','',NULL), -('17542','Carryable_2H_FL_05x05x05_MissionItem_metal_oresamples','Misc','UNDEFINED','ec214eb5-e565-4699-9e9f-71be4315a85b','','',NULL), -('17543','DCP Armor Arms New Dawn','Armor','Arms','c1d1cc22-1b9f-4a47-8f8f-9b748323806d','','',NULL), -('17544','ADP Core Seagreen','Armor','Torso','7c2b7cfe-1dfc-405c-804b-72503d2ebfed','','',NULL), -('17545','ADP Arms Tan','Armor','Arms','f8bd0865-7c7e-48a4-8fdb-2c9e94dd40bf','','',NULL), -('17546','G-2 Helmet Orange','Armor','Helmet','74a449c4-e358-4f00-8fa9-531ede632ee5','','',NULL), -('17547','Seat','SeatAccess','UNDEFINED','a2620922-a83f-47bf-a3af-21a81a09a69e','','',NULL), -('17548','RSI Polaris Remote Turret Missile Rack','MissileLauncher','MissileRack','166cdea0-d77f-403d-afbf-3f6306cadeda','','',NULL), -('17549','NDB-28 Repeater','Weapon','Gun','2365f40c-fbd3-4859-ad80-f5cfbc305c83','','',NULL), -('17550','AEGS_Vanguard_Hoplite_Thruster_Mav_Joint','ManneuverThruster','JointThruster','835054fa-902f-4ff5-b2f2-34c01a19850f','','',NULL), -('17551','Testudo Legs Turfwar','Armor','Legs','2d05b029-1dfa-4d6b-885d-ab6eee86a237','','',NULL), -('17552','Venture Helmet Imperial','Armor','Helmet','928d2d7c-16fb-41bc-9601-201b42067945','','',NULL), -('17553','Railing_Straight_2m_Lowtech_Open_C','Usable','UNDEFINED','b2dbbf00-308c-4c91-b52d-528561fa77ba','','',NULL), -('17554','Sion Compensator2','WeaponAttachment','Barrel','5867f3cf-e248-405c-b2fb-6e1abe579c82','','',NULL), -('17555','RSI_Aurora_LX_Thruster_Retro','MainThruster','FixedThruster','5fef77ce-b769-4252-a10c-ad3aebdb3f4f','','',NULL), -('17556','Door Control','Door','UNDEFINED','2e92d26e-9467-4e5a-855d-07df8199cd42','','',NULL), -('17557','Greycat ROC Ore Pod','Container','Cargo','eb6fc98d-83c6-4633-bcc4-bfc7a3c91cfe','','',NULL), -('17558','Second Tevarin War Service Trousers','Char_Clothing_Legs','UNDEFINED','d445091e-db3b-47d8-b699-d102355f7498','','',NULL), -('17559','Hardean Jacket and Shirt Parker','Char_Clothing_Torso_1','UNDEFINED','cdf3ba22-36a1-48c4-903f-0e69b069293c','','',NULL), -('17560','Titanium','Cargo','Cargo','bb56923b-7e4a-4880-bbf7-681ee321e0b5','','',NULL), -('17561','Odyssey II Undersuit Violet/Black','Armor','Undersuit','6fdb4c34-1e9f-4a08-8b07-293dfff9d328','','',NULL), -('17562','Bello T-Shirt Maroon','Char_Clothing_Torso_0','UNDEFINED','beb6b7e0-d315-431e-8422-ab612d8fd71a','','',NULL), -('17563','Carryable_1H_SQ_Datapad_Fluff_Orb_HathorGroup','Misc','UNDEFINED','44f5eadf-ccbe-49ea-a729-74276e5f0a1d','','',NULL), -('17564','SHIELDS','ShieldController','UNDEFINED','e86c18b8-5968-47bd-ab50-f9d61f996364','','',NULL), -('17565','box_plastic_4_weapon_opened_005x010x00375_a_gmni_pistol','Misc','UNDEFINED','78cefb02-4bc8-43c8-bff4-8a57d72ab8f1','','',NULL), -('17566','display_components_pallet_125x125x025_quantum','ShopDisplay','UNDEFINED','7739c511-ea24-4613-8025-00f0b5d4009c','','',NULL), -('17567','AI_Module_AntiPersonnel_Turret_PU','AIModule','UNDEFINED','beb0b4b6-dbe2-4388-aacb-0166d18a7f39','','',NULL), -('17568','Quartz \"microTech\" Energy SMG','Weapon','Medium','fd1869d9-d88c-4a1c-84b4-27bd473d2ade','','',NULL), -('17569','WeaponMount_Gun_S1','WeaponMount','WeaponControl','68b5c144-c5ff-4619-baca-4538628d2819','','',NULL), -('17570','Internal Tank','FuelTank','Fuel','91c3b0aa-ad58-41de-83ea-a1c9bc87025d','','',NULL), -('17571','Atlas','QuantumDrive','UNDEFINED','934ac478-9c87-48d1-8fd3-e5359171983c','','',NULL), -('17572','m_human_mannequin_clothing_TandS_Civ05','ShopDisplay','UNDEFINED','be7fc784-9f54-4118-910e-dfc9167cefb7','','',NULL), -('17573','Shipment','Misc','UNDEFINED','d962a6e1-da31-4311-b6b3-e0376e271fed','','',NULL), -('17574','AEGS_Door_Decal_MessHall','Decal','DoorPart','721f2207-f824-45d5-8af5-d3702320231a','','',NULL), -('17575','Weapon_Rack_storage_ugf_1','Usable','UNDEFINED','d6f25812-a59f-4044-9b72-b18ada62fb64','','',NULL), -('17576','CRUS_Intrepid_Seat_Access_Pilot','SeatAccess','UNDEFINED','98274cbd-8b2c-4cc6-a5db-a7a2699b59f2','','',NULL), -('17577','vncl_melee_01_tint03','Weapon','Knife','e31476a4-dfab-45f5-b914-96d75dec468b','','',NULL), -('17578','ORC-mkX Arms Desert','Armor','Arms','1e78adb9-8db6-4458-a712-bf61fae22e13','','',NULL), -('17579','RSI_Scorpius_Thruster_Main_Bottom_Right','MainThruster','FixedThruster','6da265a3-fe5b-40f6-bb40-431e5bc803fd','','',NULL), -('17580','EE08 (8x Telescopic)','WeaponAttachment','IronSight','0dabf62d-9b3e-4968-a371-ae0cb44057a1','','',NULL), -('17581','Iron','Cargo','Cargo','bba17984-86e7-4002-aab7-f33f1279fe1f','','',NULL), -('17582','RSI_Aurora_GS_SE_Pilot_Dashboard','SeatDashboard','UNDEFINED','dcb49b46-195b-4178-9e11-870069ef0eaf','','',NULL), -('17583','TrueDef-Pro Legs Black/Aqua/Silver','Armor','Legs','b25192ef-75ef-4705-a0d5-b12308605c27','','',NULL), -('17584','CFP Hat','Char_Clothing_Hat','UNDEFINED','727263cc-fe27-483b-bd3a-9c411e2e65dd','','',NULL), -('17585','CargoBox_050x050x050_Tank_Water_Stacked_2','Cargo','Cargo','3d0c027f-784a-423e-a5f0-1653692f5e7a','','',NULL), -('17586','Feynmaline','Cargo','Cargo','9f11d2ec-c6ef-4808-b57d-d9d9aae17225','','',NULL), -('17587','Venture Legs Sienna','Armor','Legs','8d61cad9-e318-4c8a-8505-402456ec044e','','',NULL), -('17588','Hillcrest Boots','Char_Clothing_Feet','UNDEFINED','05cddb57-26fa-4dab-aa79-1f4a5c11a9d9','','',NULL), -('17589','Eclipse 2950 Best In Show Livery','Paints','UNDEFINED','f268b121-f301-4608-a8ed-391f424437f8','','',NULL), -('17590','Seat','SeatAccess','UNDEFINED','9e965b02-521f-4ef2-8273-ceda0e5eaf23','','',NULL), -('17591','IAE 2954 T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','0fd7e49e-0141-4a0a-aefd-6b6de409d7b0','','',NULL), -('17592','Access','SeatAccess','UNDEFINED','9642b15d-6847-4a6d-b62a-3d9889b07531','','',NULL), -('17593','GAMA_Syulen_Thruster_Retro','ManneuverThruster','FixedThruster','613affc5-7ac5-4e86-8c4f-fc37bb553d4d','','',NULL), -('17594','Door Control','Door','UNDEFINED','7b8f06a2-5711-4eab-8efa-624fdc665f0e','','',NULL), -('17595','Stronger Together T-Shirt','Char_Clothing_Torso_0','UNDEFINED','90d0dc82-1cbb-4bce-ae7e-220e011d8fe7','','',NULL), -('17596','MISSILES','MissileController','UNDEFINED','33b78cf7-c38f-4472-adc7-9d5fbac329f3','','',NULL), -('17597','stand_shop_small_b','ShopDisplay','UNDEFINED','00b9cfe1-4c4c-463e-ac3d-1fc47414e834','','',NULL), -('17598','locker_spacesuit_1_a','Misc','UNDEFINED','f0bb7e4b-ab40-4a47-b3bd-50f7a421ebfa','','',NULL), -('17599','Titanium (Ore)','Cargo','Cargo','13cb5ac8-9e14-4535-aa7c-5797bb714426','','',NULL), -('17600','RSI_Aurora_GS_CL_Thruster_Retro','MainThruster','FixedThruster','d3df4e52-a28d-4819-b903-2de18443630a','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('17601','TRGT. STATUS','Seat','UNDEFINED','d03bdc10-4edb-46a5-b1c2-0924983fd0eb','','',NULL), -('17602','Door Control','Door','UNDEFINED','76157b45-3f51-4775-8799-9642df404412','','',NULL), -('17603','AEGS_Reclaimer_Thruster_Mav_Fixed_Front','ManneuverThruster','FixedThruster','0bc0ddc0-e2cf-492a-b485-252ae2695a3b','','',NULL), -('17604','Aril Legs (Modified)','Armor','Legs','fa162310-e01e-4b90-81ff-f449f5d6f571','','',NULL), -('17605','Console','Usable','UNDEFINED','a727b1bd-c5e1-44b1-8952-7c609cd9a36d','','',NULL), -('17606','Feynmaline','Cargo','Cargo','79780cfa-8c03-4ec4-b222-a152a03e00c7','','',NULL), -('17607','Landlite Boots Green','Char_Clothing_Feet','UNDEFINED','fad15e5a-2946-4d78-ac9d-59ab16ac9d65','','',NULL), -('17608','Pembroke Exploration Suit RSI Ivory Edition','Armor','Undersuit','321a0aa4-c3ac-4f43-a991-a2d622fb118a','','',NULL), -('17609','Seat','SeatAccess','UNDEFINED','98291e74-0266-4007-b4bb-6d0fe850ece1','','',NULL), -('17610','Ketchum Beanie Dark Green','Char_Clothing_Hat','UNDEFINED','2490c899-b38c-410e-8869-4894d79ccf97','','',NULL), -('17611','Weapon_Rack_1_KSAR_SMG_AmmoOnly_001','Usable','UNDEFINED','aa977724-4b36-4fda-80c6-e50d5d9d8f6d','','',NULL), -('17612','display_item_noGeo_01Port_Gadget','ShopDisplay','UNDEFINED','e042f0ef-3dc7-4cf1-8b98-60af31e33d3d','','',NULL), -('17613','CargoBox_050x050x050_Tank_Gas_StartTop','Cargo','Cargo','4bf6ca21-a06e-4b36-b22c-35cea006987a','','',NULL), -('17614','Seat','Usable','UNDEFINED','ac405524-82e7-4ab9-a8bd-3888b94d7ae5','','',NULL), -('17615','P4-AR \"Warhawk\" Rifle','Weapon','Medium','992e922f-8c21-41dd-b1b6-c2753c74c97b','','',NULL), -('17616','Adiva Jacket Black','Char_Clothing_Torso_1','UNDEFINED','fcdb3335-3856-402f-b4c1-e4b3c6f9f1be','','',NULL), -('17617','Scourge Railgun','Weapon','Large','2b752b3c-192e-4e5d-b6e2-082446d40502','','',NULL), -('17618','Edgewear Pants Twilight','Char_Clothing_Legs','UNDEFINED','417d11b3-3d1d-4700-ad57-1ebe612abbbe','','',NULL), -('17619','RSI_Aurora_CL_CargoGrid_Main','CargoGrid','UNDEFINED','9e4674eb-9d12-43dd-a42b-8af9ba25b26a','','',NULL), -('17620','VNCL_Stinger_Turret_Cap','AttachedPart','UNDEFINED','b10774e8-9e9f-4bdc-931d-7e257774b85b','','',NULL), -('17621','Silverton Pants Charcoal','Char_Clothing_Legs','UNDEFINED','6ee8024f-13b5-48b5-81ae-ddbe65ca3bfc','','',NULL), -('17622','TRGT. STATUS','Seat','UNDEFINED','bc78fc12-a98f-4ad0-86e0-5dcb1fb23c4f','','',NULL), -('17623','Keystone Jacket Silver','Char_Clothing_Torso_1','UNDEFINED','4bb0c6a8-add3-4b66-ad44-d63fac24ad6d','','',NULL), -('17624','Seat','Usable','UNDEFINED','b334aabe-3f88-4905-bb65-94d703ba988e','','',NULL), -('17625','Pisces 2953 Auspicious Red Rooster Livery','Paints','UNDEFINED','e4d386d8-67e1-42e2-9868-aa0d6a662426','','',NULL), -('17626','Citadel Legs Base','Armor','Legs','cf694a72-5848-43b0-a3d2-1a570e029abd','','',NULL), -('17627','Internal Tank','QuantumFuelTank','QuantumFuel','3a799e1e-54d6-47a7-801d-2e82af2612fd','','',NULL), -('17628','Bed_CNOU_Mustang_Beta','Usable','UNDEFINED','aa27a72a-22a3-4f96-a6cf-c7e5d7514ee0','','',NULL), -('17629','Door Control','Door','UNDEFINED','00ec9ca2-6a4e-4b53-9ad3-bc257d330743','','',NULL), -('17630','Carinite','Cargo','Cargo','2c5e97e1-a83a-4333-8846-dcfafc456d39','','',NULL), -('17631','Tulsi Jacket Midnight','Char_Clothing_Torso_1','UNDEFINED','4f31bfbe-e578-42e6-88b4-cf05f74ae3db','','',NULL), -('17632','DRAK_Corsair_Thruster_Main_A','MainThruster','UNDEFINED','a0714f59-c8dd-4e42-9b52-59971a41df5d','','',NULL), -('17633','ClipVest Work Harness Grey','Char_Clothing_Torso_1','UNDEFINED','16b43283-eea5-4f3e-87d8-d9997486860a','','',NULL), -('17634','Ati Jacket Violet','Char_Clothing_Torso_1','UNDEFINED','37d3680b-5620-451d-b294-548504858ad4','','',NULL), -('17635','Pulverizer \"Payback\" LMG','Weapon','Medium','121503c3-7f33-4ecc-bfde-2560fa886cea','','',NULL), -('17636','Station','SeatAccess','UNDEFINED','724ad118-d295-4992-95f9-9b461ae4169d','','',NULL), -('17637','Screen','Usable','UNDEFINED','f9c58ee0-1345-49ed-b36f-501129f158a6','','',NULL), -('17638','Hydrogen','Cargo','Cargo','5517caf4-3101-4c3a-9b7b-c26619551f33','','',NULL), -('17639','display_components_noGeo_01Port_s01_shield','ShopDisplay','UNDEFINED','5f9cc53f-b62e-4b88-988e-accde5a6827a','','',NULL), -('17640','Mivaldi Pants Imperial','Char_Clothing_Legs','UNDEFINED','b1ce5cbf-e953-4061-b0ee-8e762b1aa545','','',NULL), -('17641','Seat','Usable','UNDEFINED','903e2ed1-ee39-4446-8134-9c42572dba10','','',NULL), -('17642','Seat','SeatAccess','UNDEFINED','2992d846-bd2f-42f4-ae26-cf7605b7839c','','',NULL), -('17643','Paint_MPUV_UEE','Paints','UNDEFINED','cda28f97-b288-43ab-8b7b-d51c7fb845a8','','',NULL), -('17644','Prospector Outcast Livery (Modified)','Paints','UNDEFINED','241b4fd1-bbdc-4fc2-bf60-48c5d5df89e2','','',NULL), -('17645','Stinger Ship Armor','Armor','Medium','58393b91-3003-4467-b3b6-d8017ae3a083','','',NULL), -('17646','Drake Buccaneer Spinal Mount','Turret','GunTurret','02bb4650-7c20-4e42-b3d8-1ca7bb4b76bf','','',NULL), -('17647','SHIELDS','ShieldController','UNDEFINED','4796f1ff-0ae1-2cdd-f010-21bf0e2cb486','','',NULL), -('17648','Paladin Steadfast Livery','Paints','UNDEFINED','ba0b1daa-a560-4894-ac5f-2845f5eda326','','',NULL), -('17649','game_chess_1_knight_a','Misc','UNDEFINED','1c68854f-24c3-4a9e-ab1a-10e94040c6da','','',NULL), -('17650','QuadraCell','PowerPlant','Power','d89b535f-8187-4840-b5f4-3230c789dfd1','','',NULL), -('17651','BEHR_BallisticGatling_PowerArray_S5','WeaponAttachment','PowerArray','9f11f7a8-493f-4ebb-b283-e5ad7c3b6766','','',NULL), -('17652','Cliffback T-Shirt Grey','Char_Clothing_Torso_0','UNDEFINED','4f1dbf8f-a8bc-4499-bbe4-c54b027ae73d','','',NULL), -('17653','DRAK_Corsair_Dashboard_Pilot','SeatDashboard','UNDEFINED','efcec14a-522c-4311-b043-f75c5ab9666c','','',NULL), -('17654','BEHR_LaserRepeater_PowerArray_S10','WeaponAttachment','PowerArray','2d507752-44cb-40bb-b7c7-985726f32f53','','',NULL), -('17655','OMNI-AFS-Sapphire Armored Flight Suit Jungle','Armor','Undersuit','a5157327-c498-4b6c-a7bc-93c79c9c6fb1','','',NULL), -('17656','Raw Ouratite','Cargo','Cargo','d4819160-1cff-4d59-963b-305b95fa70f8','','',NULL), -('17657','WiDoW','Cargo','Cargo','3531e01a-250d-46ee-9eb9-46991d36ead7','','',NULL), -('17658','Sureshot Mask','Char_Clothing_Hat','UNDEFINED','dfac35b5-6496-43a8-836b-2704f1236515','','',NULL), -('17659','Odyssey II Undersuit Brown/Grey','Armor','Undersuit','d5c2007b-6ed8-4c2a-9829-a2e8b144d49a','','',NULL), -('17660','Berian','Cooler','UNDEFINED','f68e5fb2-2388-43d1-9aab-bed82da648c8','','',NULL), -('17661','Allpa Pants Shadow','Char_Clothing_Legs','UNDEFINED','9acc4629-465b-4e08-b84d-f6d8edc3117c','','',NULL), -('17662','Door','Door','UNDEFINED','d2c9e0dd-9826-4935-9258-4f6233d7dcbd','','',NULL), -('17663','Dopple','Cargo','Cargo','24ba2f98-7f86-4b35-b82a-f39a5df5a767','','',NULL), -('17664','TRGT. STATUS','Seat','UNDEFINED','20555078-187a-41fe-b46e-bd8a4bc0395d','','',NULL), -('17665','Zip','Cargo','Cargo','add5ad21-31eb-40e4-a224-ba30bb82134c','','',NULL), -('17666','Door Control','ControlPanel','DoorPart','b65790de-28a7-4bb2-b541-5e2928a9529d','','',NULL), -('17667','ToolSafe Vest Fogforest','Char_Clothing_Torso_1','UNDEFINED','34ca9df6-fe25-4a1f-99ec-9b5f7f102895','','',NULL), -('17668','Relentless L-21 Gatling','Weapon','Gun','ea0217e9-cdbe-48d2-a192-1837c52130b9','','',NULL), -('17669','Glacosite','Cargo','Cargo','eb83bd46-ce16-43ae-81c5-11d86b672a47','','',NULL), -('17670','CF-557 Galdereen Repeater','Weapon','Gun','4170fcb0-0cef-4228-a3d5-7efc41ba4ea3','','',NULL), -('17671','Door Control','Door','UNDEFINED','39aabaee-369f-475b-a971-67e6a165357c','','',NULL), -('17672','Hornet Invictus Blue and Gold Livery','Paints','UNDEFINED','3022847b-ddfd-4442-a067-9ddfa2f47404','','',NULL), -('17673','Corbel Legs Smolder','Armor','Legs','acb808af-0c02-4459-97e4-9e3ac06d6a15','','',NULL), -('17674','Zenith \"Snow Camo\" Laser Sniper Rifle','Weapon','Medium','601a0c77-6e96-4bbd-ae76-15c0fa1e5928','','',NULL), -('17675','Seat','Usable','UNDEFINED','f2f1544b-9d93-4da2-8463-2aa126504755','','',NULL), -('17676','Bottle','Bottle','Default','fc88c72f-4533-4609-89c9-6aeba2119d6f','','',NULL), -('17677','ControlPanel_Screen_LightControl_16x9_RSI_Lynx_Table','ControlPanel','DoorPart','354a6cc0-0612-495c-906c-70a5c819c413','','',NULL), -('17678','Lynx Core Grey','Armor','Torso','7e4e3cd2-ee45-4f96-be39-92b5ffdeebce','','',NULL), -('17679','ORIG_135c_Winglet_Left','Misc','UNDEFINED','c455ccc6-1493-4010-9081-83d7fc4384a7','','',NULL), -('17680','Remote Turret','Turret','GunTurret','96394fd4-6aa3-4f96-87f9-07b6c4b4aaa4','','',NULL), -('17681','H_Dashboard_Projector_HUD_MISC_Fury','Display','UNDEFINED','35ec1823-8be0-4645-8959-cf63efb0f033','','',NULL), -('17682','Mustang Beta Livery','Paints','UNDEFINED','bb0071fd-a171-4ef3-9beb-1b4421966b8f','','',NULL), -('17683','Vehicle_Screen_MFD_Holo_600i_B','Display','UNDEFINED','b4c9d9df-d289-421d-92e4-8a6855d3aa44','','',NULL), -('17684','Reliant Tana Missile Launcher','GroundVehicleMissileLauncher','GroundVehicleMissileRack','e87964c3-4372-4a9c-b663-f5dbd35fe0c5','','',NULL), -('17685','AbsoluteZero','Cooler','UNDEFINED','67b6c401-1017-4c39-93f6-8305c4c67f69','','',NULL), -('17686','DockingTube_Fuel_Ports_RSI_Aurora','DockingCollar','UNDEFINED','ba5ed294-28c0-47b5-9be1-eb140aee1e45','','',NULL), -('17687','Ares Star Fighter Ion Radiance Livery','Paints','UNDEFINED','a93f7507-7173-4ec8-8f01-7c8ad7695f7a','','',NULL), -('17688','Seat','SeatAccess','UNDEFINED','7ff1aa62-58cb-4749-af95-6f6c12d282c1','','',NULL), -('17689','IndVest Jacket Grey','Char_Clothing_Torso_1','UNDEFINED','4d119f2f-8022-4ed6-a69b-d5bac3ccea9a','','',NULL), -('17690','Valkyrie Sage Livery','Paints','UNDEFINED','a144a4b6-ad84-489c-8607-313b614350d7','','',NULL), -('17691','Seat','SeatAccess','UNDEFINED','f16d4c69-fee1-46b5-bc6d-8613245f5a57','','',NULL), -('17692','Remote Turret','Turret','GunTurret','86da0491-010a-41c6-9cd1-0e676814ce2a','','',NULL), -('17693','Agricium','Cargo','Cargo','852851b1-d8d2-4fdb-80c2-994df3749c6b','','',NULL), -('17694','food_ration_pack_d','Misc','UNDEFINED','b8453d44-2617-4657-ab13-402f590e66a9','','',NULL), -('17695','TRGT. STATUS','Seat','UNDEFINED','a962a30e-dbcb-4d78-9eee-29388338e39b','','',NULL), -('17696','AEGS_Vanguard_Thruster_Retro','ManneuverThruster','FixedThruster','aab3551c-0979-4f42-996a-a89c83c78ad6','','',NULL), -('17697','AAT-34 Turret','Turret','MannedTurret','983968c7-6d21-4e4e-b84a-e155d7ddbbd0','','',NULL), -('17698','TroMag Burst Generator','EMP','UNDEFINED','76b4d67d-4854-474a-b012-3d2c1041349b','','',NULL), -('17699','Sawtooth \"Squall\" Combat Knife','Weapon','Knife','c9c7c287-cf9e-4eff-868a-44082bab9b61','','',NULL), -('17700','Door Control','Door','UNDEFINED','9c9d028b-dae8-4a76-b00e-80ddd1855a7d','','',NULL), -('17701','Corsair Hinterland Livery','Paints','UNDEFINED','ac7edfb7-a475-41d8-9403-e5d7607ba9ea','','',NULL), -('17702','Carryable_1H_CY_tool_manual_socket_1_c','Misc','UNDEFINED','8530beea-0cd1-47bd-aa35-cf56dea6df8e','','',NULL), -('17703','Warden Backpack','Armor','Backpack','1f3915f0-8832-4ea8-ad9d-84b9ee59296d','','',NULL), -('17704','m_human_mannequin_base_armor_Collector_Battle','ShopDisplay','UNDEFINED','580cc90d-0545-4051-bc2d-30122f818d4d','','',NULL), -('17705','Field Recon Suit Helmet','Armor','Helmet','7d328d9e-a8dc-4279-b973-692964eb0fe9','','',NULL), -('17706','ST-205 Missile Rack','MissileLauncher','MissileRack','ed5b9b2d-e271-48fa-81b2-20ef00fe6e15','','',NULL), -('17707','TRGT. STATUS','Seat','UNDEFINED','e4003e05-9af5-400d-bbce-15926bc446d2','','',NULL), -('17708','Messhall_Tray_No_Cup','Misc','UNDEFINED','7de27b68-b8c0-44ef-bb11-bc338944c53a','','',NULL), -('17709','Aslarite','Cargo','Cargo','89c06181-cc47-40cd-a874-caf94dc990c7','','',NULL), -('17710','Arden-SL Core Rime','Armor','Torso','d8d341ba-d1e4-4253-957a-dc30e87433db','','',NULL), -('17711','Taranite (Raw)','Cargo','Cargo','03f10a6b-1e94-4d9b-9eda-5d9dd37b4acc','','',NULL), -('17712','Galen Surgical Scrub Pants Primrose','Char_Clothing_Legs','UNDEFINED','215a8f06-b59d-4c5b-8b29-81a6e18dd2d7','','',NULL), -('17713','Microid Battle Suit Legs Lowland','Armor','Legs','6e930599-eca6-4625-b81e-7de1103af6dc','','',NULL), -('17714','fruit_alien_6_b','Misc','UNDEFINED','bd95ca2c-a242-4007-aa3f-10425a509a56','','',NULL), -('17715','ForceFlex Undersuit Woodland Digi','Armor','Undersuit','e2bbbe3d-93fd-4b68-bd3e-9f613c8ce363','','',NULL), -('17716','fruit_alien_4_b','Misc','UNDEFINED','98ad0c1a-5a8a-4580-981c-21514774e049','','',NULL), -('17717','fruit_alien_5_b','Misc','UNDEFINED','26ae99b1-10e2-45ed-9b20-dfab4bcbcf69','','',NULL), -('17718','AEGS_Retaliator_Door_Screen_02','Decal','DoorPart','71ec60eb-982e-49d0-aba4-323d4dd4118b','','',NULL), -('17719','fruit_alien_2_b','Misc','UNDEFINED','b125e543-ffec-4594-b647-66be262684e8','','',NULL), -('17720','fruit_alien_3_b','Misc','UNDEFINED','90081907-3bda-4efa-8cea-fb414fbf235f','','',NULL), -('17721','Manned Turret','TurretBase','MannedTurret','8868cc82-fae8-4732-abc7-fa89ce164066','','',NULL), -('17722','MSD-442 Missile Rack','MissileLauncher','MissileRack','899a64a6-bc36-4b5b-8167-64218e376337','','',NULL), -('17723','Door Control','Door','UNDEFINED','df25528e-07db-4603-9cf0-583c7f588240','','',NULL), -('17724','Door_Ship_Sensor_Proximity_1_5x1_5x1','Sensor','DoorPart','77863779-4183-46e9-99b1-f8f994ab2273','','',NULL), -('17725','Relay','Relay','UNDEFINED','3a890123-023d-43a4-9dd0-4d22060d2ff1','','',NULL), -('17726','GLSN_Shiv_Thruster_Maneuver_Rear_Vent_Left','ManneuverThruster','JointThruster','8acda7fb-daee-4bb7-a10a-123104e38615','','',NULL), -('17727','Vagabond Jacket Sleet','Char_Clothing_Torso_1','UNDEFINED','989e3b68-cdc3-40d4-880f-a20a7e0f91ae','','',NULL), -('17728','Col_A_Airlock_Rooftop_Door_Hatch_Int','Door','AirlockPart','f0badc01-65d9-42a7-bd64-c174a13a0689','','',NULL), -('17729','Tekaw Pants','Char_Clothing_Legs','UNDEFINED','a59ca72b-9230-48f9-871f-a7e897da0067','','',NULL), -('17730','sc_marine_bdu_shirt_02_01_01','Char_Clothing_Torso_1','UNDEFINED','80119c52-41f1-4b8a-9446-77f799cdc7a8','','',NULL), -('17731','Edgewear Pants Orange','Char_Clothing_Legs','UNDEFINED','c0abd32b-a4a7-41f5-8934-b780fedec69b','','',NULL), -('17732','AEGS_Idris_CargoGrid','CargoGrid','UNDEFINED','13a37e40-1551-41f3-8a84-9dfefae0b08e','','',NULL), -('17733','DRAK_Corsair_Thruster_Aux_C','MainThruster','UNDEFINED','834f4392-c426-4811-93d3-0a904a5dafea','','',NULL), -('17734','Fissure','QuantumDrive','UNDEFINED','63fba040-d2ce-40fc-92a4-1541d022e4e3','','',NULL), -('17735','Death\'s Head Helmet','Armor','Helmet','297a6522-c957-4e52-9040-aa3049ebcd7a','','',NULL), -('17736','Door Control','Door','UNDEFINED','ab99c564-cff0-4174-8d29-336d5c5a82e6','','',NULL), -('17737','Mixed Mining','Cargo','Cargo','dd58aff2-ca23-4bd7-85a5-1280e2b2dd15','','',NULL), -('17738','INTK_CNOU_Mustang_Omega','FuelIntake','Fuel','ea760382-5825-4c02-996a-c49635d055cf','','',NULL), -('17739','Quantainium (Raw)','Cargo','Cargo','8af08ef3-6ba3-4719-8bbb-224bb1095d5d','','',NULL), -('17740','Agricium (Ore)','Cargo','Cargo','e489259c-3441-49b3-9931-c86ef5c10e63','','',NULL), -('17741','Sol-III Helmet Aviator','Armor','Helmet','8637f2bc-30aa-493e-9880-fa2cc3810d66','','',NULL), -('17742','Door','Door','UNDEFINED','18dcf328-2d82-43d6-8549-f541ba28e483','','',NULL), -('17743','AEGS_Sabre_Raven_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','378ef18b-c1b7-4355-8103-d53257350dca','','',NULL), -('17744','Seat','SeatAccess','UNDEFINED','9ae3ff40-e181-4332-ae85-39f9ebe7be97','','',NULL), -('17745','Morozov-CH Backpack','Armor','Backpack','c6ce6063-0d43-470a-aef3-49e65289a53e','','',NULL), -('17746','Door Control','Door','UNDEFINED','9a9997cc-5328-4d9d-955a-afb6cbec05e2','','',NULL), -('17747','Bello T-Shirt Navy','Char_Clothing_Torso_0','UNDEFINED','d52dff9c-70ff-40e7-a640-0f559c8f47be','','',NULL), -('17748','Odyssey Helmet Tan','Armor','Helmet','fca3448d-c26c-4f09-a62e-5c4fc521b042','','',NULL), -('17749','Talen T-Shirt','Char_Clothing_Torso_0','UNDEFINED','12a6c897-6020-4fc8-a820-71f1b69b9601','','',NULL), -('17750','Door','Door','UNDEFINED','1f21fb03-9243-42a8-8be4-9d579e891801','','',NULL), -('17751','Drivetrain','WheeledController','UNDEFINED','499394eb-9bac-49d2-b836-a8afe9da5128','','',NULL), -('17752','INTK_AEGS_Hammerhead','FuelIntake','Fuel','a6e4f520-2268-4269-a61f-40df2d17a0a7','','',NULL), -('17753','Cyclone Turbocharged Livery','Paints','UNDEFINED','688ae98a-4aed-4697-8bad-0b0e2b18aee7','','',NULL), -('17754','Antium Arms Moss Camo ','Armor','Arms','15074483-7839-4581-a257-e8a367bf81b2','','',NULL), -('17755','Avenger Warlock PHB Flight Blade','FlightController','UNDEFINED','0360d3ac-2ad8-4120-931c-000bfff5e28a','','',NULL), -('17756','Whamburger','Food','Junk','3402748e-769b-4999-8098-59330754c34f','','',NULL), -('17757','Seanut','Food','Consumable','032829bc-5eab-4fd5-81cd-95fa8e93eaef','','',NULL), -('17758','Carryable_TBO_FL_24SCU_Commodity_ProcessedGoods_ElectronicsEquipment','Cargo','Cargo','731968b4-e1c3-48f9-86b9-f875431aca6e','','',NULL), -('17759','DRAK_Cutter_CargoGrid_2Stack','CargoGrid','UNDEFINED','201538a9-ec8c-47af-9f28-5cd460bb8bb6','','',NULL), -('17760','RS1 Odysey Spacesuits','Cargo','Small','166bbd92-b7a6-4bf3-8b6c-a9a3d9f17492','','',NULL), -('17761','Hull C Dusk Livery','Paints','UNDEFINED','5674451b-2889-48b8-9432-be5b29513196','','',NULL), -('17762','Seat','Usable','UNDEFINED','c35a63a7-3cbf-443e-b06b-3f55457d6c72','','',NULL), -('17763','AEGS_Avenger_CargoGrid_Titan','CargoGrid','UNDEFINED','da6a9813-56c3-4a82-956e-77fbdd76589f','','',NULL), -('17764','Artimex Arms','Armor','Arms','08e03240-d9e7-4242-b76e-2b85296ba2d9','','',NULL), -('17765','Seat','Usable','UNDEFINED','40419290-7d7d-4403-8d6e-8475789d32f0','','',NULL), -('17766','Lynx Arms Dark Green','Armor','Arms','7729b33e-1167-4a10-b70c-45b9e7774f41','','',NULL), -('17767','Crusader White Bishop','Misc','UNDEFINED','13a84550-dd2f-487e-a2b8-8e58b03f3acb','','',NULL), -('17768','Hornet F7CR Ship Armor','Armor','Medium','fd9e9427-c4c3-46cc-912a-785bc1553300','','',NULL), -('17769','kiosk_portolisar_2_a','Display','UNDEFINED','2ffb82e8-b956-4f92-8aef-a941817c5b4c','','',NULL), -('17770','ARGO_CSV_CargoGrid_Main','CargoGrid','UNDEFINED','ff3d2a64-2497-4a76-9cfe-d8415b062a78','','',NULL), -('17771','ESPR_Prowler_Utility_CargoGrid_Main','CargoGrid','UNDEFINED','3bdfe5cc-df33-43c6-bd0e-3ea77b28f470','','',NULL), -('17772','Chiron Core Samaritan','Armor','Torso','2fc161fb-75e5-4e87-91d1-83500b07bf22','','',NULL), -('17773','Osoian Hides','Cargo','Small','035dc245-8f0d-443b-8cee-92c56d8dd663','','',NULL), -('17774','facial_hair_043','Char_Head_Beard','UNDEFINED','d508e616-fa06-4ae2-81d6-d3fdea084468','','',NULL), -('17775','Dust Devil Core Epoque','Armor','Torso','ef9d3fe6-e567-4679-88bb-10d3e1fc660f','','',NULL), -('17776','Vulture Deck the Hull Livery','Paints','UNDEFINED','9713a915-4920-4298-8f2e-903f06d6901f','','',NULL), -('17777','Razor Polar Livery','Paints','UNDEFINED','ece6876b-2453-4103-bc2c-6fc59b1858d5','','',NULL), -('17778','Carryable_1H_kitchenware_fryingpan_a','Misc','UNDEFINED','481f0a16-9294-47ae-af53-23e82fbb1a23','','',NULL), -('17779','Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','4d73821c-ca8a-4fc4-bf7c-ef90e6d3b9b1','','',NULL), -('17780','ARMR_AEGS_Vanguard_Harbinger','Armor','Medium','e4e2ad33-008b-42b4-b790-be63d6e2f0f1','','',NULL), -('17781','Door Control','Door','UNDEFINED','d209938a-ee28-48eb-8c8c-be495c4f48a8','','',NULL), -('17782','SafeCore Boots Shuttle Gray','Char_Clothing_Feet','UNDEFINED','1d6a9e0b-c5cc-48a2-ae18-cd2317ced5b0','','',NULL), -('17783','Weapon_Rack_ARGO_ATLS_GEO','Usable','UNDEFINED','053ec62a-2472-447d-9737-263fac538d37','','',NULL), -('17784','Ermer Family Farms Lunes Ice Cream','Food','Junk','9a3fab17-5efc-40c5-ac50-f4c752c0a7bf','','',NULL), -('17785','ADP Legs Grey','Armor','Legs','f26950df-7f53-4afa-9575-397543dcbfbd','','',NULL), -('17786','Laranite (Raw)','Cargo','Cargo','3822d6fb-d38a-4b28-9577-18d6b3f8d484','','',NULL), -('17787','Railing_Straight_4m_Lowtech_Hangar_A','Usable','UNDEFINED','3a803364-9548-4915-bd8c-3800504daa66','','',NULL), -('17788','400i Calacatta Livery','Paints','UNDEFINED','ba6d5257-39c7-480a-878b-e5ca64d0dc3c','','',NULL), -('17789','Seat','Usable','UNDEFINED','964aadef-c627-4a71-99a8-7e59721b8b1c','','',NULL), -('17790','Vanquisher X-EM Torpedo','Missile','Torpedo','c9c196a4-f0ec-4400-912f-4682b87f6dd4','','',NULL), -('17791','MedGel','Cargo','Cargo','a4b3ee94-285a-4150-a842-9ea1f9cace28','','',NULL), -('17792','ForceFlex Undersuit Arctic Camo','Armor','Undersuit','f5f9880f-c9a3-4450-a052-dc970e011fde','','',NULL), -('17793','GAMA_Syulen_Thruster_Mav','ManneuverThruster','FlexThruster','e8f861ca-68bd-4ece-a415-52fe2cef56c2','','',NULL), -('17794','Boomtube Rocket Launcher ','Weapon','Large','70f30988-ff59-4c12-93b4-449b887ac7ca','','',NULL), -('17795','Corbel Helmet Patina','Armor','Helmet','ef4fdab4-4713-4518-bf3d-8043661be18e','','',NULL), -('17796','Argo MPUV Ship Armor','Armor','Medium','fa9464f6-9168-4abe-8db0-cde22e3f4b68','','',NULL), -('17797','Seat','SeatAccess','UNDEFINED','4bc44f2e-fb20-4402-a20b-b46dfad4e956','','',NULL), -('17798','Ridgewalker Boots (Modified)','Char_Clothing_Feet','UNDEFINED','41c0c5fc-6d1e-43bf-b921-5b737eb93ce7','','',NULL), -('17799','Wan Shoes','Char_Clothing_Feet','UNDEFINED','45409060-cb8b-41fd-aed5-65c958724bfd','','',NULL), -('17800','Argus Helmet Black/Silver/Yellow','Armor','Helmet','64e73b36-094d-4a12-88a4-a79bad548cb7','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('17801','C54 SMG Magazine (50 cap)','WeaponAttachment','Magazine','3f4a69ef-0bcf-4cd6-a272-782f6641c242','','',NULL), -('17802','Seat','Usable','UNDEFINED','456d2457-19e2-4783-9fd5-8fe655c4e816','','',NULL), -('17803','Highball Glass','Drink','UNDEFINED','46f6e62d-0b92-493a-8441-86e73637a74b','','',NULL), -('17804','GCD-Army Arms','Armor','Arms','136c3ccb-627c-4a10-a367-817cbdad33e5','','',NULL), -('17805','CNOU_Mustang_Gamma_Thruster_Mav_Fixed_01_Up','ManneuverThruster','FixedThruster','f9e6b97d-4114-42cb-b25f-2d22ff40decc','','',NULL), -('17806','display_pistols_02x01x01_4Ports','ShopDisplay','UNDEFINED','bea7c8bf-12d9-4ee0-8fa0-dfc499e30b9d','','',NULL), -('17807','Revenant Tree Pollen','Cargo','Cargo','aecf8e9f-c6db-4029-b659-27e0268b81de','','',NULL), -('17808','Diluthermex','Cargo','Cargo','e9d720f8-c402-4401-bfeb-e177d819fc86','','',NULL), -('17809','FarSight \"Darkwave\" (8x Telescopic)','WeaponAttachment','IronSight','ec7eb40a-d88c-44f8-8f3b-0f20025adbd2','','',NULL), -('17810','Bottle','Bottle','Default','794ebe48-6c74-455e-b4ca-760af96ba05a','','',NULL), -('17811','mod_stand_hotdog_1_a','ShopDisplay','Default','4e0a068c-3714-46f4-a609-dfc986ec73f0','','',NULL), -('17812','Quantum Fuel Tank','QuantumFuelTank','QuantumFuel','d4ff8c75-4169-4056-abaf-1f433522cdfe','','',NULL), -('17813','ADP Core Dark Green','Armor','Torso','1caee206-2648-4fd5-89d8-7887d3f92e92','','',NULL), -('17814','Table_2_Seat_ANVl_Paladin','Usable','UNDEFINED','04d722f8-ae43-4730-b8f7-04e1acd41153','','',NULL), -('17815','MISC_Starlancer_CargoGrid_Max','CargoGrid','UNDEFINED','f633aa5a-7b50-44b0-a752-5251e06ec3f5','','',NULL), -('17816','G-2 Helmet Red','Armor','Helmet','ca6ecaf1-c4ef-4324-8584-9d16e54f9d71','','',NULL), -('17817','Weapon Rack','Usable','UNDEFINED','e8fa39f9-2078-4836-b87d-ed50941b5253','','',NULL), -('17818','Odyssey II Undersuit Black/Blue','Armor','Undersuit','03d7cdf5-dcb5-4283-8c3b-6097d1480cf9','','',NULL), -('17819','ORC-mkV Legs Covalex Edition','Armor','Legs','85f3bb3f-4902-4427-8529-cc1cb82a2e0e','','',NULL), -('17820','Door Control','Door','UNDEFINED','5bb18ad2-0298-4fe4-838f-6b09f06627cb','','',NULL), -('17821','DockingTube_Fuel_Ports_CNOU_Mustang','DockingCollar','UNDEFINED','5e90ee3b-6f6d-4cde-8cc2-fab3ca4d1b69','','',NULL), -('17822','Door Control','Door','UNDEFINED','0dfed0de-242f-46cf-a57b-83edcc64c72a','','',NULL), -('17823','Carryable_1H_CY_Flashlight_Engineer','Misc','UNDEFINED','99a25d5d-37d7-417b-adda-ae09a4cf7a87','','',NULL), -('17824','Ivers Boots White','Char_Clothing_Feet','UNDEFINED','33d41ef5-a992-4644-b6b2-761123fc6073','','',NULL), -('17825','Weapon_Rack_1_NONE_Special_Ballistic_Uncommon_001','Usable','UNDEFINED','aa71fd0b-4968-426d-a5c8-e3b9a2296e89','','',NULL), -('17826','AEGS_Javelin_SeatAccess_Rear_Right_Blocked','SeatAccess','UNDEFINED','d2ab885c-ba07-4949-996e-ea086eb83841','','',NULL), -('17827','MISC_Razor_EX_Thruster_Vertical_Bottom','ManneuverThruster','FixedThruster','d4d8184b-3518-4a78-aba5-956fe20be6f1','','',NULL), -('17828','SHIELDS','ShieldController','UNDEFINED','ddae5006-6bcd-4cea-9ea9-65cfcd94de85','','',NULL), -('17829','CRUS_Starfighter_Thruster_Main_Left','MainThruster','FixedThruster','9d55ee97-9496-45b2-a5a7-41fd76dee435','','',NULL), -('17830','Deo Shirt Green','Char_Clothing_Torso_0','UNDEFINED','e0e0b7d0-527f-4f2e-b85b-9f6ee791d323','','',NULL), -('17831','JOKR_DistortionCannon_Ventilation_S2','WeaponAttachment','Ventilation','8648f277-ce62-43fb-bac2-ef5c0aff18cb','','',NULL), -('17832','Radar_Display_MISC_Starfarer','Display','UNDEFINED','be9ee994-6b2b-40b6-b1c9-8f6010062ce3','','',NULL), -('17833','Relay','Relay','UNDEFINED','609b087d-bdfe-401d-b9fe-526af4d52d09','','',NULL), -('17834','Bed_Mattress_colon_1_a','Seat','UNDEFINED','0ddd5deb-db86-444e-983d-f89898d25719','','',NULL), -('17835','Mining Arm','ToolArm','UNDEFINED','b2b3b8f7-9e46-46fd-9318-d65223bcdabc','','',NULL), -('17836','ArmorStand_CLDA_hazmat_Red','Misc','UNDEFINED','25996da3-85fe-4609-84b8-b81f684fd717','','',NULL), -('17837','DockingTube_Fuel_Ports_ARGO_SRV','DockingCollar','UNDEFINED','f88e7124-5b9b-4eaa-a271-8348aa13aae7','','',NULL), -('17838','Cumulus Jacket Red','Char_Clothing_Torso_1','UNDEFINED','00f22d52-208c-471d-9211-da281490498b','','',NULL), -('17839','Baler Salvage Head','SalvageHead','UNDEFINED','f8aabcb1-83b9-4b08-8846-acc77082cd4d','','',NULL), -('17840','PC2 Dual S4 Mount','Turret','NoseMounted','6585fd71-0e31-4018-917c-7fec1ab1c1d1','','',NULL), -('17841','Elespo','Cargo','Cargo','cb959de7-1c14-49a8-9796-f1bbe7ae38df','','',NULL), -('17842','Door Control','Door','UNDEFINED','e69671f1-90b4-4c0a-b07e-746f001097bc','','',NULL), -('17843','Carryable_1H_CY_drug_stomachmedicine_2_c','Misc','UNDEFINED','586e8da1-c1b0-43a9-9149-747ca277b130','','',NULL), -('17844','Door Control','Door','UNDEFINED','968f8020-f7c8-48fe-af8d-781efedf3b53','','',NULL), -('17845','TrueDef-Pro Legs Black/Silver/Blue','Armor','Legs','31818b82-732f-4226-93e0-ad12f1bf8885','','',NULL), -('17846','LeMarque Pants Blue','Char_Clothing_Legs','UNDEFINED','6e85856e-02dc-47e5-8db0-1a5bad822081','','',NULL), -('17847','utensil_tray_1_food_a_with_loadout_chowlinefood','Misc','UNDEFINED','733f5ab6-248d-4ec1-b97e-bb93d2e31260','','',NULL), -('17848','Venture Legs Yellow','Armor','Legs','d72c6cee-22a0-4fbb-9323-613eabf0eeaf','','',NULL), -('17849','stand_shop_small_c','ShopDisplay','UNDEFINED','ef9bdc84-1983-454d-ac6a-9fc65842ee55','','',NULL), -('17850','GSX-HP','ExternalFuelTank','UNDEFINED','4007eb09-56cb-4dc6-b75f-753f33d14b8a','','',NULL), -('17851','XIAN_Nox_Thruster_Retro','ManneuverThruster','FixedThruster','f74ddfe2-ffee-4e6a-b549-59c27d733053','','',NULL), -('17852','Door_Ship_Sensor_Proximity_SpawnCloset','Sensor','DoorPart','bd3106ef-862c-4f0a-8bb2-03d73d381911','','',NULL), -('17853','Ketchum Beanie Aqua','Char_Clothing_Hat','UNDEFINED','163e5edf-fc57-4ee7-a90a-6a93864c005b','','',NULL), -('17854','TRGT. STATUS','Seat','UNDEFINED','8a0a4ce7-a563-40b6-9ed9-c0eb372b532d','','',NULL), -('17855','Internal Tank','FuelTank','Fuel','3ce1932c-13b3-4469-8dc9-8445245142e9','','',NULL), -('17856','RSI_Hermes_LightCap_Left','AttachedPart','UNDEFINED','44199a60-fb54-4707-9358-795fe5676959','','',NULL), -('17857','Maintenance_Workzone_NotDamaged','Usable','UNDEFINED','d1a28b09-a05b-49d2-a993-4f4acea0dc3e','','',NULL), -('17858','VNCL_Glaive_Thruster_Aux_Joint','ManneuverThruster','JointThruster','950db1f1-4d3b-47ec-88e8-568adfba4909','','',NULL), -('17859','RSI_Bengal_Thruster_Aux','MainThruster','JointThruster','17ad6545-60eb-4031-80ee-6bfbc0f99538','','',NULL), -('17860','Seat','Usable','UNDEFINED','6ffc1765-082d-45f3-bd11-004f1162b57d','','',NULL), -('17861','C8X Pisces PHB Flight Blade','FlightController','UNDEFINED','e5d0837a-2aac-4fbe-96c1-ff33d336b0b5','','',NULL), -('17862','tool_tester_1_b','Misc','UNDEFINED','74aec263-6ded-44f4-aa6d-84c8805efacf','','',NULL), -('17863','CF-667 Mammoth Repeater','Weapon','Gun','3bb64389-e75d-463e-a73b-115bf132667e','','',NULL), -('17864','Ready-Up Helmet Tan','Char_Clothing_Hat','UNDEFINED','c3b077b9-3166-411d-921e-5bd72cb8c106','','',NULL), -('17865','Tripledown \"Heatwave\" Pistol','Weapon','Small','eb2d2091-6f53-4f7c-b8d7-ebfae4e78c15','','',NULL), -('17866','Bedrock Boots (Modified)','Char_Clothing_Feet','UNDEFINED','603c4ea9-fe5b-4ca3-b515-55084d7ffad1','','',NULL), -('17867','Bed_Mattress_Idris_AEGS','Seat','UNDEFINED','93d74677-6440-4d4d-9308-27954187179a','','',NULL), -('17868','IAE 2951 T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','71bdf45a-a250-4417-85c0-634185808d6a','','',NULL), -('17869','Rockridge Boots Cloudcover','Char_Clothing_Feet','UNDEFINED','10f43160-1c66-410c-922c-78a186655208','','',NULL), -('17870','TRGT. STATUS','Seat','UNDEFINED','249fc20f-b458-436d-a5b5-39933ad8431d','','',NULL), -('17871','Lula\'s Pitambu Fruit Juice','Drink','Bottle','a1131a04-e04f-44d1-a697-b0c216a607fa','','',NULL), -('17872','Decari Pod','Cargo','Cargo','528a07d5-ff1c-4c4c-acf4-09e235a66349','','',NULL), -('17873','game_chess_1_a','Misc','UNDEFINED','647d2524-20a8-4b8e-8ad0-44c5521c5264','','',NULL), -('17874','Lynx Arms Cold Steel','Armor','Arms','41314061-7d4d-4a40-b642-d4736a32565a','','',NULL), -('17875','Lynx Core White','Armor','Torso','b8f41207-e945-4be7-9c3b-7097ba9f7fb1','','',NULL), -('17876','Seat','SeatAccess','UNDEFINED','5a26b601-126d-455b-8d5e-adf9bce5e50d','','',NULL), -('17877','ORC-mkV Arms Sienna','Armor','Arms','61048224-f5c9-4c6f-94d2-38cd39e086da','','',NULL), -('17878','AEGS_Retaliator_Thruster_Mav_Fixed_Bottom','ManneuverThruster','FixedThruster','ba372547-d2c3-4eb0-aee0-9fd176a9719e','','',NULL), -('17879','IndVest Jacket White','Char_Clothing_Torso_1','UNDEFINED','64f14f42-63af-48b0-b5ae-8e5caf8e2122','','',NULL), -('17880','Turret','Turret','MissileTurret','46034ae0-90fa-4523-8672-faa631ba0fe1','','',NULL), -('17881','Optimum Module','MiningModifier','Gun','688d8f8b-b3ca-4f5c-acc5-f71dfaf2f5bd','','',NULL), -('17882','ARMR_RSI_Salvation','Armor','Medium','9df302fe-4cb9-4de6-9b1e-649f532c891a','','',NULL), -('17883','Stirling Exploration Suit Chroma Edition','Armor','Undersuit','270bbd9c-71c3-46f7-b1ad-c5f97b4002e5','','',NULL), -('17884','Door Control','Door','UNDEFINED','5f8f802d-3aad-4393-bf8b-a618312927c2','','',NULL), -('17885','INTK_MISC_Prospector','FuelIntake','Fuel','81d18e17-1778-41d3-a7a9-82317b0541ef','','',NULL), -('17886','Manned Turret','TurretBase','MannedTurret','106ce33f-0838-448e-b455-66806866c62c','','',NULL), -('17887','Kino Shoes Grey','Char_Clothing_Feet','UNDEFINED','353aeb58-30bc-42ee-9b36-066ad88153ef','','',NULL), -('17888','SRV Overcast Livery','Paints','UNDEFINED','3d48eb3c-0d9c-43bd-84f4-e8d2f35bbd49','','',NULL), -('17889','Savrilium (Ore)','Cargo','Cargo','d1e63ab5-399e-4e9f-aa38-b066283253fd','','',NULL), -('17890','Access','SeatAccess','UNDEFINED','7ff3da97-a52a-45b7-894e-d02b86102dec','','',NULL), -('17891','display_wall_centermass_4port','ShopDisplay','Default','fd69e5ad-4c08-4414-92c2-47cddad49b2c','','',NULL), -('17892','Controller_Salvage_DRAK_Golem_OX','SalvageController','UNDEFINED','80c67de8-8b06-45ed-b393-7200a4fce455','','',NULL), -('17893','ForceFlex Undersuit Pink Camo','Armor','Undersuit','df59e838-4871-485e-9fc8-f787f38d3b5f','','',NULL), -('17894','Personal Care Product','Misc','UNDEFINED','8352efea-ea3a-4d88-9a38-bafe1b25db78','','',NULL), -('17895','Vehicle_Screen_MFD_Holographic','Display','UNDEFINED','34879b2e-8e05-427c-a81c-876aad2cc155','','',NULL), -('17896','H_Dashboard_Projector_HUD_RSI_Zeus_CP_R','Display','UNDEFINED','d63f731c-ce69-4647-9079-b52e242bd875','','',NULL), -('17897','Sabre Raven Ship Armor','Armor','Medium','5b04894f-b09e-4bc2-ab24-6e7a04062817','','',NULL), -('17898','Seat','SeatAccess','UNDEFINED','432f94af-aa55-4f32-9ff2-b5c1a637e4bf','','',NULL), -('17899','Edgewear Pants Red','Char_Clothing_Legs','UNDEFINED','a85d4ed6-162b-4b0f-9984-88f738cae065','','',NULL), -('17900','Misfit Jacket','Char_Clothing_Torso_1','UNDEFINED','3b094603-c015-4d52-b990-630e6dc27ac8','','',NULL), -('17901','Ouratite','Cargo','Cargo','42a04270-7c74-43f7-a64b-80a2b014acfe','','',NULL), -('17902','Mount_Gimbal_Salvage','Turret','GunTurret','78136407-7c2e-4ec4-ad13-6dd73b3e227f','','',NULL), -('17903','Mivaldi Pants Aqua','Char_Clothing_Legs','UNDEFINED','1cfbeee0-543d-4009-8100-a7f70dc14ae9','','',NULL), -('17904','Horizon Helmet White','Armor','Helmet','5ab6897b-81d3-4ce9-83f1-6b41cdee510b','','',NULL), -('17905','Carryable_1H_kitchenware_tongs_a','Misc','UNDEFINED','26fb1bd6-c91f-4bf4-8d57-c6ac40d22b6d','','',NULL), -('17906','Vagabond Jacket Molten','Char_Clothing_Torso_1','UNDEFINED','3138f971-6feb-469f-bab9-228b9c288037','','',NULL), -('17907','Carryable_1H_CY_tool_tester_1_a','Misc','UNDEFINED','a1572673-9549-48e9-a309-4cad3a51815d','','',NULL), -('17908','TRGT. STATUS','Seat','UNDEFINED','5eaa0d9b-29da-4ef7-9487-1aaab702539d','','',NULL), -('17909','J-5 Helmet Bracken','Armor','Helmet','d8f7b240-be67-4969-99c8-cd9bf54323c9','','',NULL), -('17910','Door Control','Door','UNDEFINED','b156dfce-c23c-4e77-9c03-1274edfcc337','','',NULL), -('17911','TRGT. STATUS','Seat','UNDEFINED','aeeda675-3fa0-4bbc-b3ba-0f96eb32dbbe','','',NULL), -('17912','RSI_Zeus_ES_Thruster_Retro_Right','ManneuverThruster','Retro','20f27071-7833-4591-a5ea-01831fb37f9a','','',NULL), -('17913','Seat','SeatAccess','UNDEFINED','b7daef00-b3fd-4b65-8e7a-fa2c60f52b34','','',NULL), -('17914','Davin Work Gloves Red','Char_Clothing_Hands','UNDEFINED','15e4ed95-27fc-40f4-9809-6b75f79a5247','','',NULL), -('17915','PAB-1 Legs Sienna','Armor','Legs','2bcfdf4f-091f-43db-8bb7-fad268eb3d52','','',NULL), -('17916','TRGT. STATUS','Seat','UNDEFINED','313be3dc-5330-468e-90a3-08ec08431b42','','',NULL), -('17917','Argo MPUV Ship Armor','Armor','Medium','3b447eed-0b3d-4ef6-b57d-f04adee9fca6','','',NULL), -('17918','Seat','SeatAccess','UNDEFINED','525d581e-6fc4-48de-92bf-d94e49d67793','','',NULL), -('17919','Origin Jumpworks 135c Ship Armor','Armor','Medium','ac93e4d1-a060-4d16-b6d3-570bb79a78f9','','',NULL), -('17920','sc_nvy_bridgeofficer_commander_jacket_01_01_01','Char_Clothing_Torso_1','UNDEFINED','cc634f1e-51ba-420f-a94f-732ca41540b3','','',NULL), -('17921','300 Series Scarlet Paint','Paints','UNDEFINED','1c3d2283-1593-43f1-aeac-18ac3121e40a','','',NULL), -('17922','DockingTube_Fuel_Ports_Krig_wolf','DockingCollar','UNDEFINED','1def51a4-1e0b-4ad7-84ca-ed13b927b0f0','','',NULL), -('17923','ANVL_Lightning_F8_Thruster_Retro_Grey','ManneuverThruster','FixedThruster','1d90827d-716d-43d1-a59d-6dfbb4a8dca9','','',NULL), -('17924','Morozov-SH Helmet Terracotta','Armor','Helmet','a798e7ef-f394-4e10-8432-0c4145627238','','',NULL), -('17925','DRAK_Vulture_Salvage_Arm_Right','ToolArm','UNDEFINED','160cf776-33cd-402e-a126-b8858d81efd5','','',NULL), -('17926','Artimex Core Elysium','Armor','Torso','e2b6e746-44aa-493a-acaf-0db55caf87c7','','',NULL), -('17927','DRAK_Cutlass_Thruster_Main','MainThruster','FixedThruster','95536ade-bd7c-406b-b56d-f301aceca36a','','',NULL), -('17928','Odyssey II Undersuit Woodland','Armor','Undersuit','c10d87b7-22cd-49e3-8f8a-dfb986adada4','','',NULL), -('17929','Locked-on Lentil Burrito','Food','Junk','1ac4b579-1bfe-4658-9648-db0c5bd2241c','','',NULL), -('17930','Door Control','Door','UNDEFINED','bfeba265-1eea-4ce3-a849-e2367581ccd2','','',NULL), -('17931','Datapad','Misc','Gadget','56772eda-cc46-45a6-a151-ea52eae2ca83','','',NULL), -('17932','Mahoney Nurse Scrub Pants Primrose','Char_Clothing_Legs','UNDEFINED','9b450f54-4073-4e13-b8f0-e6ea9f5e542f','','',NULL), -('17933','Calico Legs (Modified)','Armor','Legs','2f7d8640-708f-453b-89a3-1dc1acadadfb','','',NULL), -('17934','DRAK_Golem_OX_Label','Misc','UNDEFINED','e3575ddd-4ae1-4383-a405-f9f8c71cd573','','',NULL), -('17935','ORIG_100i_CargoGrid','CargoGrid','UNDEFINED','3d9e81ac-d858-44c6-9865-f69119238865','','',NULL), -('17936','ANVL_Hornet_F7A_Thruster_Main','MainThruster','FixedThruster','4933e6da-b27b-43f5-92c5-a188d2f83e80','','',NULL), -('17937','Seat','Usable','UNDEFINED','fd0b9372-8063-465b-b8ce-5faaa84a7076','','',NULL), -('17938','RSI_Polaris_SCItem_SeatAccess_Turret_Top_Right','SeatAccess','UNDEFINED','c3b83ad2-fa28-44cb-9680-9de83c098f9d','','',NULL), -('17939','ADP Core Platinum','Armor','Torso','3e7f28bd-41bb-4887-b4fb-0b5e94c6ff12','','',NULL), -('17940','display_ship_components_02x0075x0275_a_6Ports','ShopDisplay','UNDEFINED','08da94f8-7f5a-40c7-a203-a6df579c69b6','','',NULL), -('17941','BEHR_LaserCannon_Barrel_S4','WeaponAttachment','Barrel','e202dafe-98be-40af-97ac-0ade132cd45e','','',NULL), -('17942','100 Series Flame Livery','Paints','UNDEFINED','bc3e5699-023e-4eda-95d9-202e48d7dd94','','',NULL), -('17943','Quasi Grazer Tongue','Misc','Harvestable','06b503b8-01c8-4447-80d5-843d61a5d2b6','','',NULL), -('17944','Internal Tank','FuelTank','Fuel','6f7ece2d-b429-4ea1-9393-6b7bb5c4775a','','',NULL), -('17945','RSI_Aurora_Mk2_Thruster_Mav_Bottom','ManneuverThruster','UNDEFINED','bae25bf2-3bc5-48d7-83f5-89e71876cdb3','','',NULL), -('17946','Hephaestanite (Raw)','Cargo','Cargo','9a85e0ac-9dbb-4fae-a49c-e99bb9a3f601','','',NULL), -('17947','Door','Door','UNDEFINED','a1c9f2d7-593d-4679-8b3d-22204a9f0b86','','',NULL), -('17948','IcePlunge','Cooler','UNDEFINED','f59a0b33-5bbe-439e-8bd5-111db00b5ff6','','',NULL), -('17949','AEGS_Door_Screen_Wall_Airlock','Decal','DoorPart','03a84a67-334a-439b-aa7e-5707b62c8edc','','',NULL), -('17950','Amioshi Plague','Misc','UNDEFINED','95fbd27c-d288-46fc-9890-a43d3e645124','','',NULL), -('17951','Deo Shirt Orange','Char_Clothing_Torso_0','UNDEFINED','b78859fb-7083-4fce-8cc3-e393cc96c249','','',NULL), -('17952','AEGS_Idris_SCItem_Seat_CoPilot','Seat','UNDEFINED','cff005b7-32be-4977-b659-3a1d38f8fa89','','',NULL), -('17953','DRAK_Cutter_Thruster_Aux','MainThruster','FixedThruster','82c91816-03c4-476a-b001-ac6465bd51ba','','',NULL), -('17954','counter_components_end_a_0038x01x01','ShopDisplay','UNDEFINED','763f3e65-9739-4ad7-a946-f1748dd5e137','','',NULL), -('17955','MISSILES','MissileController','UNDEFINED','4750556e-1afc-45be-86f7-f7adbc1fb7aa','','',NULL), -('17956','Inert Materials','Cargo','Cargo','825821ef-b21a-48c4-8f6c-6be6adfb0893','','',NULL), -('17957','Datapad','Misc','Gadget','3d038013-8eb6-438a-8100-8ad4549cced0','','',NULL), -('17958','Weapon_Rack_Aegs_10_slot','Usable','UNDEFINED','9c063adc-bc81-4877-86f8-174485abbccf','','',NULL), -('17959','RSI Polaris Torpedo Rack','MissileLauncher','MissileRack','e1f82d07-0a5c-4668-8fc6-5a087eed1d1b','','',NULL), -('17960','Bed','Usable','UNDEFINED','32d01c4c-3917-45ef-a586-397736f70929','','',NULL), -('17961','Table_Conference_6_1_distribution_a','Usable','UNDEFINED','1d06e5b3-03d1-4dae-a8c0-151b21e3bd7d','','',NULL), -('17962','Tuvois Jacket','Char_Clothing_Torso_1','UNDEFINED','31355140-da8d-4c5a-bf6f-2036bb1d77bc','','',NULL), -('17963','Internal Tank','QuantumFuelTank','QuantumFuel','a49a2891-765b-4bb9-ab58-d703589213e8','','',NULL), -('17964','ORIG_890J_Seat_Bridge_Left','Seat','UNDEFINED','3ab51834-564c-47e2-99d5-f250093c57c5','','',NULL), -('17965','NV57 Ballistic Gatling','Weapon','Gun','56c36bd9-9090-4166-a3dd-9dc8ad225f70','','',NULL), -('17966','Internal Tank','FuelTank','Fuel','adb59839-382c-43cf-aca5-fa9e8c4d1a6a','','',NULL), -('17967','M9A Cannon','Weapon','Gun','bf958f42-4f50-46ce-af92-64b08e7f7c19','','',NULL), -('17968','Drink Dispenser','Cargo','UNDEFINED','738b0c38-8bb0-410c-b113-ba73ae6dba6f','','',NULL), -('17969','Bed','Usable','UNDEFINED','968049b6-bef6-4e67-8b5f-60d41fd91a48','','',NULL), -('17970','Seat','SeatAccess','UNDEFINED','0f9a0e4d-3404-4b13-86a4-48b211b96d9a','','',NULL), -('17971','Stud','Char_Head_Piercings','UNDEFINED','17d59a23-1942-4f06-a5e8-537c3b20babe','','',NULL), -('17972','Box_075x050x050','Cargo','Small','ff1e9742-cd27-4007-9926-2d70fe49959b','','',NULL), -('17973','Carryable_1H_CY_weight_dumbbell_1_8kg_b','Misc','UNDEFINED','8332ce65-fc17-491c-9cf2-864d689cb8ff','','',NULL), -('17974','Badami Helmet','Armor','Helmet','305c8b36-61a3-4065-b514-199719de9ac0','','',NULL), -('17975','Carryable_1H_CY_drug_painkillers_1_b','Misc','UNDEFINED','bfa127c9-b8e4-4674-860b-22af48baad2d','','',NULL), -('17976','Hadanite','Cargo','Cargo','4f313b53-cb7b-46cb-91ce-0e75ce7ab443','','',NULL), -('17977','Access','SeatAccess','UNDEFINED','044a1dc5-4215-4d6d-b505-4f91fff89201','','',NULL), -('17978','orig_bedding_duvet_4_h','Seat','UNDEFINED','66e35694-253c-4fac-97a4-bff6cd69057a','','',NULL), -('17979','Recycled Material Composite','Cargo','Cargo','7e32d5dd-4273-4e11-9890-380a01c168d7','','',NULL), -('17980','Door Control','Door','UNDEFINED','3346a416-3665-4425-a75b-3abe4f4fef57','','',NULL), -('17981','Book','Misc','UNDEFINED','0a98cd9b-cc51-464d-a8d5-4c2353d982f8','','',NULL), -('17982','NONE_LaserRepeater_Barrel_S3','WeaponAttachment','Barrel','eb00eacc-04c3-415a-afe8-4cc0872f23ed','','',NULL), -('17983','Exfiltrate','JumpDrive','UNDEFINED','af671ad3-d55d-44b3-8617-473bd3dc0da6','','',NULL), -('17984','Seat','SeatAccess','UNDEFINED','53fb33ae-e8c3-4621-aa7e-4a2fa1c52ede','','',NULL), -('17985','TRGT. STATUS','Seat','UNDEFINED','519f386a-8c79-4633-a36e-9703f32d196e','','',NULL), -('17986','Door Control','Door','UNDEFINED','0a022e36-18cd-4dc3-8bbf-51449f498eac','','',NULL), -('17987','Seat','Usable','UNDEFINED','6682c0eb-a8d6-4407-bdd0-53b19647e701','','',NULL), -('17988','Door Control','Door','UNDEFINED','0633a594-01df-4330-a111-829effbd808a','','',NULL), -('17989','Internal Tank','FuelTank','Fuel','eab8299a-b6d1-4b58-b6a8-dc6694a06304','','',NULL), -('17990','Venture Undersuit Blue/Black','Armor','Undersuit','69201826-16f7-4adb-9f66-c26bb4d7fff0','','',NULL), -('17991','ORIG_600_CargoGrid_Module_Large','CargoGrid','UNDEFINED','ca3b3d12-e2cf-4f87-ac28-b099619d47eb','','',NULL), -('17992','ARMR_MRAI_Pulse','Armor','Medium','ec0390d7-8abc-4630-b1a7-496910f531ed','','',NULL), -('17993','Seat','Usable','UNDEFINED','07f41035-04eb-4e1d-bf3a-3baa250c3329','','',NULL), -('17994','Door Control','Door','UNDEFINED','7b248883-8bde-4aea-8d76-48cd74d55716','','',NULL), -('17995','Aril Backpack Quicksilver','Armor','Backpack','de5b1185-7287-4341-9b11-dd2df19e2d59','','',NULL), -('17996','Seat','Usable','UNDEFINED','b12473ad-e02e-4364-955d-3dddf4ef0505','','',NULL), -('17997','ORC-mkV Core Greycat Edition','Armor','Torso','7da789ac-8865-4bbc-a6cd-b6cea65e6933','','',NULL), -('17998','Starlancer Pacific Livery','Paints','UNDEFINED','a6b7eef1-8190-4cb0-bd76-df5a075f110f','','',NULL), -('17999','Lamont Undersuit','Armor','Undersuit','c8ba6feb-93dc-4247-b4a4-d3c196284abe','','',NULL), -('18000','Seat','Usable','UNDEFINED','daaa4ecf-1bb0-403f-8725-06d5aee7bc14','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('18001','DRAK_Cutter_Thruster_Addon_Scout_Left','Misc','UNDEFINED','53108ef1-1177-4aa0-af51-164ceeb70077','','',NULL), -('18002','Cordimon Jacket Dark Red','Char_Clothing_Torso_1','UNDEFINED','acef051e-a77e-4ece-9322-a7d3ac36e348','','',NULL), -('18003','Tumbril Hat','Char_Clothing_Hat','UNDEFINED','f403a9b5-b3cf-464a-b171-76a078fdacdf','','',NULL), -('18004','game_chess_1_king_a','Misc','UNDEFINED','4875cbaf-24f5-4290-9433-18bb5c5d08a5','','',NULL), -('18005','TRGT. STATUS','Seat','UNDEFINED','d5623c7c-7f1e-464e-aa15-3a7b37cf2e05','','',NULL), -('18006','Internal Tank','QuantumFuelTank','QuantumFuel','0ef9e1aa-aef8-4881-a593-a5dccb475694','','',NULL), -('18007','SHIELDS','ShieldController','UNDEFINED','6cbafdf7-04c5-4652-a83a-3455e2c523e3','','',NULL), -('18008','Venture Core Dark Green','Armor','Torso','99e4f989-c470-47b3-ae30-9ca9f12bd4fb','','',NULL), -('18009','Railing_Straight_1m_Colonial_Wall_A','Usable','UNDEFINED','49a675f9-7788-4cc0-9d31-2faf8ccbe852','','',NULL), -('18010','Door Control','ControlPanel','DoorPart','8dca1714-c0b9-44e3-952c-a96b5ceaddee','','',NULL), -('18011','Endo','Cooler','UNDEFINED','f6ab217a-2506-42ad-b6f2-90bdf939c0af','','',NULL), -('18012','X1 Blueshift Livery','Paints','UNDEFINED','22bf25f6-00a4-458d-b3df-32a346f0268c','','',NULL), -('18013','RSI_Aurora_GS_LX_Thruster_Retro_Right','MainThruster','FixedThruster','2bbbe76f-9fa6-4320-8784-6140c5c180ae','','',NULL), -('18014','PH - scu_service_shirt_02_whammers01_01','Char_Clothing_Torso_0','UNDEFINED','e040b947-b048-4617-8602-f532ce63707f','','',NULL), -('18015','Armor_Crate_CZ_Horizon_L_002','Usable','UNDEFINED','7d11704f-57f0-4694-93a9-390622d47f4c','','',NULL), -('18016','CBH-3 Helmet Dark Red','Armor','Helmet','9b653d3a-0a02-4a80-8a2f-b0e620cd8900','','',NULL), -('18017','Seat','Usable','UNDEFINED','a3caf99d-3152-495c-ad1d-64a989226606','','',NULL), -('18018','f_human_mannequin_deckcrew_cargo_light','ShopDisplay','UNDEFINED','7222b9a7-b275-4d02-ba32-28c15283bee1','','',NULL), -('18019','facial_hair_003','Char_Head_Beard','UNDEFINED','c9e19547-ba61-473f-b9b6-e5b8a14cb57e','','',NULL), -('18020','FullForce','PowerPlant','Power','dabd2d8d-c06c-4ebf-8791-192ace67ac33','','',NULL), -('18021','Seat','SeatAccess','UNDEFINED','a64cd92d-5e25-4875-8744-0ebe37cf193d','','',NULL), -('18022','ParaMed \"AA Transport\" Medical Device','Weapon','Small','cbfe9a39-9aa3-41c7-8d02-466d333df53c','','',NULL), -('18023','Bed','Usable','UNDEFINED','1bf8e11f-11d9-432b-bdae-8745d415a813','','',NULL), -('18024','Seat','Usable','UNDEFINED','c7aab48b-cfc8-4865-9453-810408a9c02a','','',NULL), -('18025','Datapad','Misc','Gadget','2956c390-9057-4c67-aead-0476a916a350','','',NULL), -('18026','Seat','Usable','UNDEFINED','6547a105-793c-4cc1-b7fd-71ac97146ce0','','',NULL), -('18027','Ana Arms Endro','Armor','Arms','a76b255e-e7d3-4171-bfd7-aa5ac6a21da7','','',NULL), -('18028','Harlowe Shirt Twilight','Char_Clothing_Torso_0','UNDEFINED','c1faef05-e1d3-4f47-8b13-829631c941fd','','',NULL), -('18029','Carryable_1H_CY_bottle_bar_10_bitters_a','Misc','UNDEFINED','3bac4d7d-544c-43e5-aba1-b8b37e545ba1','','',NULL), -('18030','Overlord Arms Polarity','Armor','Arms','9f374152-c6e8-4f2f-8418-2771a855d06f','','',NULL), -('18031','Cutter Groundswell Livery','Paints','UNDEFINED','bd3542f2-862b-46e8-8a70-60bddc8c2f83','','',NULL), -('18032','Inquisitor Arms Black','Armor','Arms','a3d72f0c-37de-4368-904e-ef175b6f18ba','','',NULL), -('18033','rack_food_1_stand_a_DrinkCans','ShopDisplay','Default','172637d2-26be-4e0b-a829-308da2a89c98','','',NULL), -('18034','Lillo Pants Green','Char_Clothing_Legs','UNDEFINED','fe193701-90d8-4cfe-99a2-a845c82ec7c1','','',NULL), -('18035','AEGS_Door_Decal_CmptRm_03','Decal','DoorPart','5877d7b6-af2a-4601-908e-f4b5e85fa00c','','',NULL), -('18036','AirlockExteriorStatusSign','StatusScreen','AirlockPart','7ad2d2d1-36f5-44cd-85d4-de3538e66454','','',NULL), -('18037','Wolf Riftwalker Livery','Paints','UNDEFINED','3c58e888-f2f9-4cfa-bcef-50e768aefc35','','',NULL), -('18038','OT4-RF \"Scorched\" (4x Telescopic)','WeaponAttachment','IronSight','bbea3063-5ca5-4d78-9327-95cceb638eb9','','',NULL), -('18039','Door','Door','UNDEFINED','0e2bab80-5f93-49a8-b7fe-c59011d7acff','','',NULL), -('18040','Hair Care Product','Misc','UNDEFINED','cfb53418-2da7-449e-9e0c-8a9fef747d75','','',NULL), -('18041','Door Control','Door','UNDEFINED','ebab0b16-fcf7-470c-896e-5d707cbc6056','','',NULL), -('18042','Door Control','Door','UNDEFINED','2dbe8f03-d116-40b5-bba7-34e345b267aa','','',NULL), -('18043','Arclight Pistol','Weapon','Small','0ff9144c-970d-4861-ae27-b27ee3c969a9','','',NULL), -('18044','vlk_spewgun_ballistic_irradiated','Weapon','Medium','f1e6b32b-bc43-485c-9b60-efbe950ed0f6','','',NULL), -('18045','TrueDef-Pro Arms Aqua/Black','Armor','Arms','a9d447ad-f162-40ab-8dd9-7ec2b69f5ff9','','',NULL), -('18046','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','d3171a19-4d1d-439b-b3ec-d814231ee92e','','',NULL), -('18047','Seat','Usable','UNDEFINED','c0708248-8b90-4b2b-85ec-2334f046c07a','','',NULL), -('18048','Door Control','Door','UNDEFINED','269efcc5-15c1-4f16-b638-b9f6fc639930','','',NULL), -('18049','Dashboard','SeatDashboard','UNDEFINED','a3516a47-098c-45ef-bf89-483c2eeeb27a','','',NULL), -('18050','Flight Blade','FlightController','UNDEFINED','e1e8ba90-d536-443a-a9a2-807391f7648b','','',NULL), -('18051','Manned Turret','TurretBase','MannedTurret','bfdaffcf-d8d9-4ce3-a79c-8e910d61d985','','',NULL), -('18052','Scorpius Storm Cloud Livery','Paints','UNDEFINED','52bb79af-5f19-4af8-8e10-419bc98b3842','','',NULL), -('18053','Door_NoRoomConnector_RSI_Polaris_Toilet_L','Door','UNDEFINED','9cc787e9-65b7-4883-83ac-ffa416948faa','','',NULL), -('18054','CNOU_Mustang_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','2789551d-aaa0-4e93-9003-832d84a891f6','','',NULL), -('18055','display_components_pallet_250x125x025_b_cooler','ShopDisplay','UNDEFINED','bf64e1ad-9f50-4dcb-b494-bbe8c64dd033','','',NULL), -('18056','PyroBurst Scattergun','Weapon','Gun','93b774da-e792-4648-bf79-acfd8b5d0f9d','','',NULL), -('18057','ORIG_890Jump_DockingTube','DockingCollar','UNDEFINED','e99ed099-d2a2-44f5-abe8-5f26e9943339','','',NULL), -('18058','Mercury Gloves','Char_Clothing_Hands','UNDEFINED','c6d373f8-359c-448d-b82f-8acb7e86e1b0','','',NULL), -('18059','H_Dashboard_Projector_HUD_RSI_Perseus','Display','UNDEFINED','a96a85b0-2d48-4fc0-ab88-c719a889f8e2','','',NULL), -('18060','fruit_tray_2_f','Misc','UNDEFINED','5d5bfd84-7c28-4143-a6de-57f024370e33','','',NULL), -('18061','INTK_XNAA_SanTokYai','FuelIntake','Fuel','386b426a-f729-400f-ad97-64fcff989fd7','','',NULL), -('18062','Weight_Rack_Dumbbell_1_a','Misc','UNDEFINED','41bc7862-b115-4287-abc1-ea95b1369446','','',NULL), -('18063','Venture Helmet Olive','Armor','Helmet','1eab81fe-fd56-4fa8-bf0b-3bb222b9eddf','','',NULL), -('18064','ANVL_Pisces_Thruster_Retro_Right','ManneuverThruster','JointThruster','eaae0959-4699-423b-ab72-596b156b40b0','','',NULL), -('18065','Door','Door','UNDEFINED','549ae195-4d13-4614-b5c2-0fa8c0361117','','',NULL), -('18066','Outback Arms Molten','Armor','Arms','f9df36da-2609-4b09-8c5b-bed7821305ba','','',NULL), -('18067','DRAK_Cutlass_Blue_Thruster_Maneuver_Rear_Bot','ManneuverThruster','JointThruster','bd7859de-8583-41fe-86fa-badc598ec538','','',NULL), -('18068','DRAK_Cutlass_Steel_Thruster_Maneuver_Front_Bot','ManneuverThruster','JointThruster','c251aabe-bf05-42e1-9105-6a27db1db8d3','','',NULL), -('18069','Inquisitor Core Red','Armor','Torso','e5c981c3-533c-4dc9-b246-72df989aa751','','',NULL), -('18070','Geist Armor Core Desert','Armor','Torso','7ad4c67c-57f0-48bf-9ef0-19238aa2d65c','','',NULL), -('18071','ORIG_890_Jump_Thruster_Mav_FSL','ManneuverThruster','FixedThruster','6724aad1-527e-413f-ab8f-e0a4bd0f2e1c','','',NULL), -('18072','ANVL_Arrow_Thruster_Retro','ManneuverThruster','FixedThruster','c62a365c-0ab6-498e-a270-19093e23a50f','','',NULL), -('18073','Cutter Wind Chill Livery','Paints','UNDEFINED','ad01f1e8-c34d-40bd-abf8-d14e7e073a35','','',NULL), -('18074','Chrome Dome Head Gear','Char_Clothing_Hat','UNDEFINED','b4e402ec-222f-4946-b25b-2a80dc13a73a','','',NULL), -('18075','Ready-Up Helmet Purple','Char_Clothing_Hat','UNDEFINED','bebe91f4-736e-4613-8a56-b358c21d4289','','',NULL), -('18076','Bed','Usable','UNDEFINED','96d1fe1a-681d-4bbf-ae42-547fb5875165','','',NULL), -('18077','Seat','SeatAccess','UNDEFINED','74fc14a2-a051-4512-bfb5-13c99eeeac97','','',NULL), -('18078','Glow','Cargo','Cargo','67e07f41-341e-4a4e-9131-5383622a0e18','','',NULL), -('18079','RSI_Bengal_SCItem_Seat_Tactical','Seat','UNDEFINED','03cc3a81-45f0-45d2-943e-5ebde343ac4d','','',NULL), -('18080','TRGT. STATUS','Seat','UNDEFINED','b2ddf056-2646-4d48-80dd-1c4a7b0cee1c','','',NULL), -('18081','Outback Helmet Grime Blue','Armor','Helmet','44436242-5271-4472-b4f6-c935189d48ba','','',NULL), -('18082','DockingTube_Fuel_Ports_AEGS_Avenger','DockingCollar','UNDEFINED','14fce368-d4d1-4bf7-afb1-770caa854e03','','',NULL), -('18083','Capston','Radar','MidRangeRadar','22121214-6333-4edd-826a-0d06c15b5636','','',NULL), -('18084','UEEx T-Shirt','Char_Clothing_Torso_0','UNDEFINED','057ab3d9-c6a7-4b1b-bdf0-604d704b2d6c','','',NULL), -('18085','Freelancer Ship Armor','Armor','Medium','e787835d-a4af-4d82-82c5-f5ce751afb2c','','',NULL), -('18086','Cutlass Steel Plushie','Misc','Personal','0f574aeb-9fd3-4436-8ce0-4afa868a21ce','','',NULL), -('18087','Door Control','Door','UNDEFINED','b65bf781-e343-4f53-82b8-fc63c09f1ad0','','',NULL), -('18088','NONE_LaserRepeater_PowerArray_S2','WeaponAttachment','PowerArray','611080f1-bba5-4574-9b3a-25503efd2c85','','',NULL), -('18089','Personal Care Product','Misc','UNDEFINED','ea7de9d5-715d-46ac-b2ce-ba174ea4cc31','','',NULL), -('18090','Strata Arms Neptune','Armor','Arms','61d7efaf-c389-4807-acc8-c70a645ef3cc','','',NULL), -('18091','Fractus Gloves Purple','Char_Clothing_Hands','UNDEFINED','482d8bd9-9eba-46b9-bdc8-a2387b6ddb6d','','',NULL), -('18092','Carryable_TBO_FL_2SCU_Commodity_ProcessedGoods_EvidenceBox','Cargo','Cargo','7133351b-451f-4a05-b4d4-cf4ce52ca795','','',NULL), -('18093','DockingTube_Fuel_Ports_MISC_Starlancer','DockingCollar','UNDEFINED','4aa47acb-ee97-4cdf-b408-9a25e6fd29da','','',NULL), -('18094','TRGT. STATUS','Seat','UNDEFINED','81d03a70-a8eb-43ce-a77e-87c99eea5d8f','','',NULL), -('18095','Seat','Usable','UNDEFINED','56914041-de55-47d0-8e92-61f7fa223204','','',NULL), -('18096','Palatino Core Deadlock','Armor','Torso','633c07d0-c6e7-4952-b2e3-e330df979552','','',NULL), -('18097','Fabian','Radar','MidRangeRadar','5d040910-6c55-453e-970d-842d4b4fd710','','',NULL), -('18098','ARGO_MPUV_Lights_Body','Room','UNDEFINED','e44640c4-d395-48f9-825e-cc4ff9d6847b','','',NULL), -('18099','Beacon Undersuit Grey/Aqua','Armor','Undersuit','3f821b9e-6ca1-44e9-b9d4-8f925f0fa2cc','','',NULL), -('18100','Seat','Usable','UNDEFINED','7b6dd4e2-99d4-4fa6-a072-bfccfa6c3fae','','',NULL), -('18101','Frontier 05 Pants Winter','Char_Clothing_Legs','UNDEFINED','e4abb70c-0d56-4549-be9f-58dceaf0f83a','','',NULL), -('18102','Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','3c09dee0-e92b-4b4c-9b40-2e43d1e0b145','','',NULL), -('18103','Remote Turret','Turret','TopTurret','5ec6f19b-93ae-4830-9ae1-45993d579f46','','',NULL), -('18104','Cordimon Jacket Purple','Char_Clothing_Torso_1','UNDEFINED','c6dd172b-bb6c-4bad-84a2-b4153d7b0e31','','',NULL), -('18105','Citadel Core Outcrop','Armor','Torso','ad80acdd-719e-49eb-bc06-cfce78591598','','',NULL), -('18106','Silnex','Cargo','Cargo','b76aaa4b-3d6d-41fe-9fb3-24f5d266b131','','',NULL), -('18107','SLAM','Misc','Utility','fe85c22a-b742-4c76-bc4e-3479d285d497','','',NULL), -('18108','Door Control','Door','UNDEFINED','f74194ad-d721-469b-81b5-76d23aad5212','','',NULL), -('18109','BANU_Defender_Dashboard_Pilot','SeatDashboard','UNDEFINED','61367034-09d9-4680-8fc3-bc49e7fb4d33','','',NULL), -('18110','DeconPen (Canoiodide)','FPS_Consumable','Medical','ced580a6-0327-4aef-b36e-afa8db60de33','','',NULL), -('18111','Killshot \"Goodnight\" Rifle','Weapon','Medium','cc1057a0-1777-4fe5-b75a-f33a020ca7bc','','',NULL), -('18112','Morozov-SH Legs Red Alert','Armor','Legs','278ad759-6c1b-432d-8065-f31e8d2cdd34','','',NULL), -('18113','MISC Reliant Ship Armor','Armor','Medium','6bc6cb94-dc71-4faa-a7e5-b0abee8c3621','','',NULL), -('18114','Dragonfly Black Livery','Paints','UNDEFINED','3d7cd9bc-a18e-40ff-834b-e54d576f2ed2','','',NULL), -('18115','Twenty-Sided Plushie Blue','Misc','UNDEFINED','f9b203fe-3436-4ed5-a4db-4a7870e811cc','','',NULL), -('18116','Defiance Core Tactical','Armor','Torso','f7552eb5-407f-4390-ac65-62ae63549ec8','','',NULL), -('18117','Strata Core Hurston Black','Armor','Torso','037946a4-9744-4f65-b9d1-13482253b606','','',NULL), -('18118','HRST_LaserRepeater_Ventilation_S5','WeaponAttachment','Ventilation','e07e5a82-0664-4f91-97a9-38ce558b3d4b','','',NULL), -('18119','Door Control','ControlPanel','DoorPart','0ee61eda-35cd-4fcd-8d3a-1ada13ae27a2','','',NULL), -('18120','MISC_Hull_C_Thruster_VTOL_Rear','ManneuverThruster','JointThruster','a2ffe3e1-e661-4da4-8457-8a5d81c78b4b','','',NULL), -('18121','Vehicle_Screen_MFD_Holographic_ORIG_890J_B','Display','UNDEFINED','51bee8bb-f0f5-4846-adb2-dd1471efebeb','','',NULL), -('18122','Flight Blade','FlightController','UNDEFINED','fe4016c4-d716-4c52-9618-3755c5d7f1c6','','',NULL), -('18123','Constellation microTech Livery','Paints','UNDEFINED','7f49c9d8-9aa7-4a12-8209-ae80ce755094','','',NULL), -('18124','Avenger Titan TSB Flight Blade','FlightController','UNDEFINED','3f6cbda6-6ad5-4c64-b8ab-52adb2c5951b','','',NULL), -('18125','Door Control','Door','UNDEFINED','2b140c49-01ac-4209-8045-b18b5c3bb5a3','','',NULL), -('18126','box_plastic_4_weapon_opened_005x010x00375_a_klwe_rifle_energy_01','Misc','UNDEFINED','325213f9-a39e-440b-99c0-2750388a069e','','',NULL), -('18127','Door','Door','UNDEFINED','7591f4b8-9807-452b-91fb-9d3ed24ea3ca','','',NULL), -('18128','Chance Cube','Misc','Utility','28e737c2-0b12-41d9-a411-e1c76939ce65','','',NULL), -('18129','Uncut SLAM','Cargo','Cargo','c4fb01e3-5844-48a6-ab3c-db78fb306f1b','','',NULL), -('18130','ANVL_Terrapin_Medic_EmergencyLights','Misc','UNDEFINED','229f71d2-b57a-4943-8df8-60877f4b9ecb','','',NULL), -('18131','ESPR_Talon_Thruster_Mav_VTOL','ManneuverThruster','JointThruster','4f928711-a0fd-4d58-90f4-721330663fc9','','',NULL), -('18132','INTK_AEGS_Idris','FuelIntake','Fuel','6c36e41b-c0c8-4f9f-861b-bfe00f9bd82d','','',NULL), -('18133','Vermillion Apple','Food','Plant','96c4cbe8-61a1-4de3-b624-453bfd576bdd','','',NULL), -('18134','Mirai Fury MX 2xS2 Missile Rack','MissileLauncher','MissileRack','901e4ecb-0649-4c78-8e46-0247d84fb084','','',NULL), -('18135','Book','Misc','UNDEFINED','470bf233-5e97-4cee-92eb-d4e112923673','','',NULL), -('18136','Riccite','Cargo','Cargo','04f09064-234a-451a-ae9f-cf6eea51ab54','','',NULL), -('18137','Internal Tank','FuelTank','Fuel','545cb2fb-fa9e-4a4b-8310-575009438041','','',NULL), -('18138','MacFlex Arms Twilight','Armor','Arms','d00da1c6-97b3-496a-89d6-22e1562dfb40','','',NULL), -('18139','drug_packet_4_a','Cargo','UNDEFINED','13414deb-7342-45c3-870d-481f1ac370b1','','',NULL), -('18140','Weapon Rack','Usable','UNDEFINED','b2d60293-0129-449e-96a4-fef4be8edd93','','',NULL), -('18141','Door Control','Door','UNDEFINED','b4380692-7e5d-473b-bed2-b2fcbfdd84cc','','',NULL), -('18142','RSI_Zeus_Thruster_Main','MainThruster','UNDEFINED','c6a39424-0b7b-4ae4-85f1-33127dd79cae','','',NULL), -('18143','CDF F8C Certification Pass (Gold)','Misc','Personal','119c6f43-c538-427a-869e-3713d900d7c3','','',NULL), -('18144','Forgiveness Sweater','Char_Clothing_Torso_0','UNDEFINED','7551d346-d777-4a0d-8d38-4f3072502dca','','',NULL), -('18145','Centurion Beachhead Camo Livery','Paints','UNDEFINED','b3354c01-87ca-4999-9a8e-f903cf6567f0','','',NULL), -('18146','MISC_Hull_A_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','b1e1e2b8-5c27-40c0-8108-046f416575ff','','',NULL), -('18147','facial_hair_044','Char_Head_Beard','UNDEFINED','6123f89f-420d-40b3-be11-4d7be652589e','','',NULL), -('18148','Sootho Gloves Vineland','Char_Clothing_Hands','UNDEFINED','49d20d03-6404-4005-9b4b-08fc6a2c077f','','',NULL), -('18149','vanduul_pilot_helmet_02_01_01','Armor','Helmet','ba0aae0d-7276-47d7-b7f6-9646b917afa0','','',NULL), -('18150','ParaMed \"Venule\" Medical Device','Weapon','Small','b12c9d52-1304-4dc2-af97-4c2e39c3df4b','','',NULL), -('18151','Access','SeatAccess','UNDEFINED','997f83d8-ce7c-4022-bf85-22388d7141d5','','',NULL), -('18152','Ship Ammunition','Cargo','Cargo','59ddffc8-2619-454d-96a4-58c9376eec2b','','',NULL), -('18153','Potassium','Cargo','Cargo','fd89ead8-75f2-4114-b7ab-e1931247ba02','','',NULL), -('18154','tool_power_1_dock_a','Misc','UNDEFINED','6e49ab4f-561f-4e16-85d7-e58a9e278775','','',NULL), -('18155','Strata Backpack','Armor','Backpack','a5bb46f9-c728-46c6-a4b2-53f21d96813a','','',NULL), -('18156','Bottle','Bottle','Default','0d733f89-d75f-4fe1-8867-e5f1b03f3fe0','','',NULL), -('18157','TopLine Apron Pants Ellroy\'s','Char_Clothing_Legs','UNDEFINED','e24343b5-2dc2-423e-a83c-ece7ed09265b','','',NULL), -('18158','Hornet Mk II Canopy Camo Livery','Paints','UNDEFINED','f8270cc1-74de-4330-ba68-13797b13beec','','',NULL), -('18159','Scrap','Cargo','Cargo','7793a2be-6fab-4c24-ba97-659e3bb00ea9','','',NULL), -('18160','ARMR_TMBL_Cyclone_MT','Armor','Medium','74fe3c98-e49e-48f3-8971-3e4b7d8e6710','','',NULL), -('18161','Siebe Helmet','Armor','Helmet','06cbc938-0b97-4c1b-a4e1-8c5334152deb','','',NULL), -('18162','Confidential','Misc','UNDEFINED','af6f5fc6-c5d5-4fb5-b193-a082b055199b','','',NULL), -('18163','FBL-8a Arms Imperial Red','Armor','Arms','7d741b69-6961-46a4-8949-7d7efbf5f5cd','','',NULL), -('18164','un_glass_tankard_1_a','Misc','UNDEFINED','14ae732d-cb67-4f34-9a61-51db90a77b05','','',NULL), -('18165','DRAK_Vulture_Thruster_Maneuver_Top','ManneuverThruster','FixedThruster','dce58fb1-5b12-4d24-97b6-b84e4418f7eb','','',NULL), -('18166','Observer-Max','Radar','MidRangeRadar','ae505920-b4f2-4a3e-b1fd-ec46fa35ac51','','',NULL), -('18167','HRST_LaserRepeater_FiringMechanism_S5','WeaponAttachment','FiringMechanism','8b379d0a-f93f-4120-8870-9d971b89853d','','',NULL), -('18168','can_drink_1_pips_b','Cargo','UNDEFINED','5e5e81dd-93e6-4e88-b9ff-8aabd3595cd1','','',NULL), -('18169','DRAK_Clipper_Seat_Access_Pilot','SeatAccess','UNDEFINED','34c50f0e-1875-4baf-a9fd-6b6bfbc8f18f','','',NULL), -('18170','Adrift Shirt Black','Char_Clothing_Torso_0','UNDEFINED','e2d17acd-f65b-47bd-9ad1-805d5c604b21','','',NULL), -('18171','GATS_BallisticCannon_Barrel_S2','WeaponAttachment','Barrel','a2dac8c7-296b-4960-ac91-b0431bc9f824','','',NULL), -('18172','Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','26481148-0cf9-434c-817c-06695b8c86c5','','',NULL), -('18173','Door Control','Door','UNDEFINED','1df1cce0-249d-4722-a3c3-2da3e364729c','','',NULL), -('18174','Remote Turret','Turret','GunTurret','ae9ea0b6-c912-4857-93fe-f4dc9c9284e9','','',NULL), -('18175','Cumulus Jacket Teal','Char_Clothing_Torso_1','UNDEFINED','aff73778-73a4-450e-b6dd-56817adac3cf','','',NULL), -('18176','facial_hair_029','Char_Head_Beard','UNDEFINED','09b25ba2-4e5d-4135-8d27-5649227b7a74','','',NULL), -('18177','Seat','Usable','UNDEFINED','0e7e85ae-9693-4726-9238-dc2db0ce487c','','',NULL), -('18178','Monde Arms Hemlock Camo','Armor','Arms','fb77fe68-a6d9-44a3-b24d-426140557784','','',NULL), -('18179','Seat','Usable','UNDEFINED','ef53dff4-a29a-44d5-b092-319bde6518cc','','',NULL), -('18180','ARMR_MISC_Razor','Armor','Medium','ad4f143d-d71c-4958-8814-91ad73049ab2','','',NULL), -('18181','Morozov-SH Core','Armor','Torso','2dd4b126-eb45-427f-870d-4e1b4de3a22d','','',NULL), -('18182','Venture Undersuit Starcrossed','Armor','Undersuit','3aa6f91b-d9be-4e85-9e2c-c415e4a3d83f','','',NULL), -('18183','Jumping Limes','Cargo','Cargo','3c0d72b5-d5c4-4897-9e2d-5723cec367ee','','',NULL), -('18184','Flight Blade','FlightController','UNDEFINED','b4a04bb3-115a-4a60-aca1-5d8e77e85c3e','','',NULL), -('18185','Pulverizer \"Bleach\" LMG','Weapon','Medium','86dc8e62-9c03-49d6-b3e6-8d000cdde05e','','',NULL), -('18186','MSD-616 Missile Rack','MissileLauncher','MissileRack','a88d063a-2351-4a0b-b22d-ac7a4a9f6b9f','','',NULL), -('18187','Railing_Straight_8m_Hightech_Plate_Trim_a','Usable','UNDEFINED','963fb94b-3981-47d2-876b-0160f7409014','','',NULL), -('18188','Carryable_1H_CY_tool_manual_socket_1_d','Misc','UNDEFINED','5303ecbb-9d51-460c-82a5-13e345c7cf9b','','',NULL), -('18189','Horizon Helmet \"Rust Society\"','Armor','Helmet','c2fd068d-6054-4815-b46e-5243f749dffc','','',NULL), -('18190','Koya Pants Dark Blue','Char_Clothing_Legs','UNDEFINED','29a81172-9a88-43cf-827d-db1006d03c20','','',NULL), -('18191','Paint_Prospector_Default','Paints','UNDEFINED','f6127d7b-9185-49a6-b5fa-d202199f2c35','','',NULL), -('18192','Door','Door','UNDEFINED','fed44810-f5cc-408b-94ab-3afa8c7406ab','','',NULL), -('18193','Camion Jacket','Char_Clothing_Torso_1','UNDEFINED','0bd45a67-121e-46bd-a25d-a7b6d84cc431','','',NULL), -('18194','C54 SMG','Weapon','Medium','5a8e3a45-74fa-42db-839b-ad794f1bd890','','',NULL), -('18195','Janalite','Cargo','Cargo','1508a565-5488-43df-9de5-e2e27c619694','','',NULL), -('18196','Laranite (Raw)','Cargo','Cargo','662c28bd-c066-4afd-b3d4-d2da43df9779','','',NULL), -('18197','ANVL_Carrack_Thruster_Main','MainThruster','FixedThruster','35f63f1b-d1c0-47da-b61f-a54c3234cda2','','',NULL), -('18198','Medical Bed','Usable','UNDEFINED','e68a6e59-84ca-4889-90f3-cfd31cf59cc1','','',NULL), -('18199','CRUS_Spirit_Thruster_Main_B','MainThruster','UNDEFINED','639bcb29-5f4c-4158-81ce-f0861dc50f73','','',NULL), -('18200','DRAK_Cutlass_DockingTube','DockingCollar','UNDEFINED','cfaf4c92-dbe0-4ee2-8a15-dbd2c0a0c7d4','','',NULL); - -INSERT INTO `tbl_scobjs` (`cl_scobjs_id`,`cl_scobjs_name`,`cl_scobjs_type`,`cl_scobjs_subtype`,`cl_scobjs_uuid`,`cl_scobjs_rarity`,`cl_scobjs_about`,`cl_scobjs_description`) VALUES -('18201','Cutter Cliffhanger Livery','Paints','UNDEFINED','1ba0c15f-c1cf-42a2-a1d0-edd1c72985d6','','',NULL), -('18202','Seat','Usable','UNDEFINED','71e8591a-4186-4b10-8002-8a318b35cf11','','',NULL), -('18203','KRIG_P52_Merlin_WingTip_Left','AttachedPart','UNDEFINED','cb5b0dfa-8a04-40ca-be8c-9c3ebe6c5213','','',NULL), -('18204','Custodian \"Warhawk\" SMG','Weapon','Medium','ea52b726-ce0e-43f2-8e97-02dd578d4cf1','','',NULL), -('18205','FSK-8 \"Bloodline\" Combat Knife ','Weapon','Knife','71c3e4fe-226c-47e7-953c-708493db212b','','',NULL), -('18206','Carinite (Pure)','Cargo','Cargo','e8bb7b47-b62b-4a8f-99d6-7f65f3290b93','','',NULL), -('18207','can_drink_3_guc_shop_2x5_a','ShopDisplay','Default','0170b70b-502b-4555-94e4-d464ca7e5c7d','','',NULL), -('18208','Navoi Boots and Pants','Char_Clothing_Legs','UNDEFINED','070141dc-b82a-4fed-a9f6-26def39d7187','','',NULL), -('18209','f_human_mannequin_legacy_outlaw_medium','ShopDisplay','UNDEFINED','72ecae9d-0324-4965-97d5-7437cf69d0a4','','',NULL), -('18210','MPUV Lovestruck Livery','Paints','UNDEFINED','c0e2bd7d-39a4-4299-a7fe-015301679341','','',NULL), -('18211','ORIG_600i_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','7e2015d0-4518-45cf-8b73-b3b4f6d6d1ee','','',NULL), -('18212','Pink Heart Hologram','Misc','Flair_Wall_Picture','e27e5cfd-5827-464f-8612-a37d901edc86','','',NULL), -('18213','Covalex_Datapad_Report_4x3_Screen','Display','UNDEFINED','66192cbf-e5b8-4213-91df-2b8339ab660c','','',NULL), -('18214','Jericho XL','Weapon','Rocket','501a4017-d754-43d7-933b-72773d761303','','',NULL), -('18215','Cargo_Comm_125x3_Vice_Etam','Cargo','Cargo','219b9794-4e10-4772-ae29-2f7c741cb32a','','',NULL), -('18216','Ball','Char_Head_Piercings','UNDEFINED','4d1f610e-78bd-4a0a-a911-e717ae753d51','','',NULL), -('18217','sc_marine_bdu_gloves_01_01_12','Char_Clothing_Hands','UNDEFINED','e8c966e7-7c71-47ce-8a32-f9f3c3725416','','',NULL), -('18218','Esperia Stinger Missile Rack','MissileLauncher','MissileRack','1de02adf-1980-4fcb-af0a-2d6f2508c8ee','','',NULL), -('18219','Aril Core Hazard','Armor','Torso','97254847-0046-40e6-af83-f71ec35f4ac5','','',NULL), -('18220','Tolo Jacket','Char_Clothing_Torso_1','UNDEFINED','02d1c0a5-6f01-4798-a760-308186a22c57','','',NULL), -('18221','SHIELDS','ShieldController','UNDEFINED','6471a9e6-dbb7-4d62-af02-f2af3bb562c9','','',NULL), -('18222','Vehicle_Screen_MFD_Holographic_Talon_TL','Display','UNDEFINED','b60d3f25-8bdc-46df-a469-cb5c91352a99','','',NULL), -('18223','Door_Ship_Sensor_Proximity_1_5x1_5x1_4','Sensor','DoorPart','003dc720-f53c-415c-b78d-9f0be72e2a53','','',NULL), -('18224','AEGS_Door_Decal_Escapepods_02','Decal','DoorPart','a6691318-ae57-4edf-b10f-69b4bf649f53','','',NULL), -('18225','AEGS_Idris_SCItem_Seat_Bridge_Rear_Left_Blocked','Seat','UNDEFINED','67c59d0d-139b-4239-9eb9-ab6663d2f36d','','',NULL), -('18226','SHIELDS','ShieldController','UNDEFINED','d82aff21-e7b7-44bf-badb-ceea363d9e7e','','',NULL), -('18227','Locker_Suit_RSI_Zeus','Usable','UNDEFINED','5c2d0540-6929-4018-9cd9-f528359bfe53','','',NULL), -('18228','HLX99 Hyperprocessors','Cargo','Cargo','bc4b7820-7cfd-4580-9398-b3e6e0c5efd1','','',NULL), -('18229','fruit_plant_2_b_6003','Misc','UNDEFINED','00d7baf4-10f4-4432-b7e9-ea123fe9914f','','',NULL), -('18230','Weapon_Ship_Cz_003','Usable','UNDEFINED','4439943d-9195-405b-9034-16004e9ee397','','',NULL), -('18231','fruit_plant_2_b_4003','Misc','UNDEFINED','996ca113-1422-44fa-b5b2-aca70d001141','','',NULL), -('18232','fruit_plant_2_b_5003','Misc','UNDEFINED','bb90eada-1e2d-4cb7-babf-9220da6efa6a','','',NULL), -('18233','Outback Legs Grime Blue','Armor','Legs','8e1d5681-142a-4011-ac53-513746bbb594','','',NULL), -('18234','fruit_plant_2_b_2003','Misc','UNDEFINED','a9ae0354-8624-40a9-a0c2-4efc961f91aa','','',NULL), -('18235','Leyland\'s Tortoise','Misc','UNDEFINED','aac37778-a0a3-4d4a-9e18-4dabea3e24a6','','',NULL), -('18236','fruit_plant_2_b_3003','Misc','UNDEFINED','b6d9ed26-dfa2-442a-9ba3-7986c5a17d7a','','',NULL), -('18237','TRGT. STATUS','Seat','UNDEFINED','6e8607da-e999-41bb-aa86-f2ae0c850bb9','','',NULL), -('18238','Tacit Suppressor3','WeaponAttachment','Barrel','d292ae90-a9bb-4a37-8651-27dd81b67ead','','',NULL), -('18239','Door Control','ControlPanel','DoorPart','4d8d544c-35ef-4e89-94fa-82508665b14b','','',NULL), -('18240','Diamond (Raw)','Cargo','Cargo','9973c552-caf0-45fe-8425-55df590dd792','','',NULL), -('18241','Libio Jacket Imperial','Char_Clothing_Torso_1','UNDEFINED','e0e7791f-c577-4925-9a33-2912ad6de98f','','',NULL), -('18242','ANVL_Door_Decal_Carrack_Exit','Decal','DoorPart','f7abc37e-f5f3-4d0e-9c38-d088c77edac7','','',NULL), -('18243','Avenger Stalker Ship Armor','Armor','Medium','b3b23908-e9ab-4c46-93ed-ecd20aaf65c3','','',NULL), -('18244','Internal Tank','FuelTank','Fuel','643bf1d5-ffdd-49d3-b33f-77c2d6a53fdc','','',NULL), -('18245','Grammercy Food Service Jacket','Char_Clothing_Torso_1','UNDEFINED','b06569c0-391f-4e1d-b796-d115092a8fc3','','',NULL), -('18246','ARMR_RSI_Scorpius','Armor','Medium','c5d28d34-43e5-4075-a83d-8ec8def61a8d','','',NULL), -('18247','H_Dashboard_Projector_HUD_ANVL_Hornet_F7_Mk2','Display','UNDEFINED','58977576-5b4c-4c54-9def-1dd8d0771045','','',NULL), -('18248','Falston Jumpsuit \"Ling Edition\"','Char_Clothing_Torso_1','UNDEFINED','878571fb-09bd-4865-8ebd-e92f658ff83b','','',NULL), -('18249','Food_bowl_cereal_01_a','Food','Consumable','1b61e264-b60c-4530-a6eb-1649e250aedb','','',NULL), -('18250','Vulture Assembly Livery','Paints','UNDEFINED','31013aa3-8656-4974-a2ae-fa2ae34dacee','','',NULL), -('18251','Door','Cargo','UNDEFINED','1a6113e2-cf54-47a0-9f6d-8149c7409e20','','',NULL), -('18252','display_item_noGeo_01Port','ShopDisplay','UNDEFINED','dc0f22b1-7218-473f-ba2a-ea9b50c73b08','','',NULL), -('18253','Tussock Boots Olivine','Char_Clothing_Feet','UNDEFINED','5a54cf93-f98d-494e-a735-8e8a7b7bb91e','','',NULL), -('18254','Carryable_1H_SQ_Datapad_Fluff_Orb_GenericGang_004','Misc','UNDEFINED','4245c648-9593-42b2-8423-cad26e0bbd00','','',NULL), -('18255','Pico the Penguin Plushie','Misc','Personal','4ff54eea-238b-4d69-9812-43a32ce0bf0a','','',NULL), -('18256','Carryable_1H_CY_toilet_roll_a','Misc','UNDEFINED','c587c498-86b8-45b8-8f15-b5b7423d8d75','','',NULL), -('18257','XNAA_SanTokYai_Thruster_Mav_Top','ManneuverThruster','FlexThruster','a974bf7b-0dfe-4c94-904b-4eb72a347945','','',NULL), -('18258','Door Control','Door','UNDEFINED','ed4f8035-d725-446e-ab87-d9810b901b35','','',NULL), -('18259','Pico the Penguin Plushie','Misc','Personal','b1f6cc6f-f46a-441a-a1ba-8393c33ad35e','','',NULL), -('18260','Xa\'Pyen','Cargo','Cargo','09515166-7ed9-4b77-93ea-dc54af4a631b','','',NULL), -('18261','Bengal_BallisticCannon_FiringMechanism_S8','WeaponAttachment','FiringMechanism','69808bb3-78c5-447e-85d4-798a7a664683','','',NULL), -('18262','Overlord Legs Predator','Armor','Legs','0df0262a-6ec4-440a-9a14-d75c3fe36510','','',NULL), -('18263','FBL-8a Helmet Righteous','Armor','Helmet','43ce2666-ab9a-4c05-a2ba-c4ac648fc381','','',NULL), -('18264','SalvageFillerStation_ARGO_MOTH_Right','SalvageFillerStation','UNDEFINED','80d39f24-7b21-405a-920b-26d41afa79b8','','',NULL), -('18265','Bioplastic','Cargo','Cargo','44132f93-eb40-40ef-ae7b-991b2455cb9b','','',NULL), -('18266','Ventra Gloves Dark Green','Char_Clothing_Hands','UNDEFINED','a3ab9174-82c5-4251-9d38-ecc4d60029b0','','',NULL), -('18267','KRIG_l21_Wolf_Thruster_Main','MainThruster','UNDEFINED','e27b3e99-dacf-42d9-9e15-1da2e53b409a','','',NULL), -('18268','Tona Shoes Twilight','Char_Clothing_Feet','UNDEFINED','5895e428-8dce-4ace-bfc5-cf60e84e236c','','',NULL), -('18269','Door Control','ControlPanel','DoorPart','1abc0ddf-8fbf-4eb6-9e98-74555cd5ed07','','',NULL), -('18270','Cargo Door','Door','UNDEFINED','63c25a0d-77bc-47a2-8bfb-f41cc5def8eb','','',NULL), -('18271','Paint_300_SeatTrim_Aluminum','Misc','UNDEFINED','b6d5d82e-b47a-4904-8ad2-de1eb059f12b','','',NULL), -('18272','Viper III Missile','Missile','Missile','e5aa84b6-9b14-4eb3-949f-10e1cc8cd6cf','','',NULL), -('18273','Neograph','Cargo','Cargo','8ccbe590-4b61-4418-b857-32c316a3bc02','','',NULL), -('18274','Mercury Star Runner Silver Spark Livery','Paints','UNDEFINED','daeea277-f1d1-4a81-ab17-4753eb7cc11a','','',NULL), -('18275','ESPR_BallisticCannon_Ventilation_S4','WeaponAttachment','Ventilation','1a5e2687-5c3d-4dc8-bb5f-f54312a9eec3','','',NULL), -('18276','Lynx Legs','Armor','Legs','be1ffc25-c87f-4c26-8a55-692f752a80fe','','',NULL), -('18277','Carryable_1H_SQ_DataPad_Fluff_StormBreaker_DataFacility_Safe04','Misc','UNDEFINED','c7cb0a88-d650-43dd-8c13-20c92ef81f1e','','',NULL), -('18278','Venture Helmet White','Armor','Helmet','050fff8c-8e8c-46bf-a4a8-324c88615e80','','',NULL), -('18279','Ketchum Beanie Orange','Char_Clothing_Hat','UNDEFINED','71019193-981b-4fd2-8bff-11afc1924bee','','',NULL), -('18280','CargoBox_050x050x050_Tank_Gas_Stacked_3','Cargo','Cargo','0aada8c4-1ffc-4cd0-920f-f1833007895e','','',NULL), -('18281','Arden-SL Legs Coramor Edition \"Fate\"','Armor','Legs','d474694a-bc71-425e-89db-14527fea2820','','',NULL), -('18282','Millrun Waders Mandalay','Char_Clothing_Legs','UNDEFINED','e082f2c9-a031-4060-9ce2-a6799e310e1f','','',NULL), -('18283','Carryable_1H_SQ_drug_stim_1_b','Misc','UNDEFINED','30bff1e7-c7d9-44c6-a39e-e96b3876f92a','','',NULL), -('18284','Xa\'Pyen','Cargo','Cargo','f219c48f-97fd-4db9-b7af-88c3ed5c0f1b','','',NULL), -('18285','Manned Turret','TurretBase','MannedTurret','222c0230-d9b5-4264-bcc6-ca8e93bb8a36','','',NULL), -('18286','Internal Tank','FuelTank','Fuel','7a15d210-9966-4652-b301-cd29eac5d7bf','','',NULL), -('18287','Decari Pod','Cargo','Cargo','95a01fda-e346-4df2-a452-8bdec078d967','','',NULL), -('18288','ARMR_MRAI_Guardian_MX','Armor','Medium','45b332ee-8b50-3ea2-9bc7-21255ec7a2a4','','',NULL), -('18289','Weapon_Rack_TMBL_Nova_4_Slot','Usable','UNDEFINED','dd6102d5-65cb-4a18-a13d-cb06a781eb71','','',NULL), -('18290','Cumulus Pants Red','Char_Clothing_Legs','UNDEFINED','6ac8256f-bca6-4b7d-9506-65833bead805','','',NULL), -('18291','Joker Defcon - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','2b0f4414-1545-46c3-8db1-d2b949279142','','',NULL), -('18292','Beryl','Cargo','Cargo','a26120f9-d535-4f56-892c-823abb7afa3a','','',NULL), -('18293','Ati Jacket Red','Char_Clothing_Torso_1','UNDEFINED','d2acbe0d-3d10-420d-a272-5355741cc4d0','','',NULL), -('18294','Condiment','Misc','UNDEFINED','9df44dd0-3fbf-4588-9088-a8301a5e56e9','','',NULL), -('18295','Door Control','Door','UNDEFINED','f1c417de-0977-4c95-89e0-50d0a40b1df7','','',NULL), -('18296','Bed','Seat','UNDEFINED','24f896e9-f5ff-448e-bc13-8e3b777b75d5','','',NULL), -('18297','Pite','Char_Head_Piercings','UNDEFINED','0f555b27-d4fa-4da8-a97f-6e49b145d7c9','','',NULL), -('18298','Atavi Shirt Olive','Char_Clothing_Torso_0','UNDEFINED','e3fe8974-ad58-4522-bd26-186dd3b6e03f','','',NULL), -('18299','Stirling Exploration Backpack Sandstorm Edition','Armor','Backpack','cc7c3f5f-c7ef-45cd-ada8-ca580fc4f108','','',NULL), -('18300','Zeus Headhunters Trauma Livery','Paints','UNDEFINED','8c7efc81-3742-4539-8dc4-102a25032c57','','',NULL), -('18301','SHIELDS','ShieldController','UNDEFINED','12044342-6ad6-4a70-9938-a7a070b8b0dc','','',NULL), -('18302','Weapon_Rack_1_Volt_SMG_Uncommon_002','Usable','UNDEFINED','c6f70d15-fd13-4d59-80b3-516c7e46f863','','',NULL), -('18303','SHIELDS','ShieldController','UNDEFINED','5ea113f7-5df4-46b4-8a25-beccf131e969','','',NULL), -('18304','Corbel Core Halcyon','Armor','Torso','0c784b35-76dc-4b43-b74e-268b12dec72c','','',NULL); - -DROP TABLE IF EXISTS `tbl_scstatsitem`; -CREATE TABLE `tbl_scstatsitem` ( - `cl_scstatsitem_id` int(11) NOT NULL AUTO_INCREMENT, - `cl_scstatsitem_name` varchar(255) NOT NULL, - `cl_scstatsitem_unit` varchar(10) NOT NULL DEFAULT '%', - `cl_scstatsitem_created_at` datetime NOT NULL DEFAULT current_timestamp(), - PRIMARY KEY (`cl_scstatsitem_id`), - UNIQUE KEY `uq_scstatsitem_name` (`cl_scstatsitem_name`) -) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; - -INSERT INTO `tbl_scstatsitem` (`cl_scstatsitem_id`,`cl_scstatsitem_name`,`cl_scstatsitem_unit`,`cl_scstatsitem_created_at`) VALUES -('1','Fire Rate','%','2026-04-08 18:15:54'), -('2','Damage / Shot','%','2026-04-08 18:20:44'), -('3','DPS','%','2026-04-08 18:20:53'), -('4','Recoil Pitch','%','2026-04-08 18:21:19'), -('5','Quality','Q','2026-04-08 21:46:09'), -('6','Quantity','SCU','2026-04-08 22:01:21'); - -DROP TABLE IF EXISTS `tbl_scvaisseaux`; -CREATE TABLE `tbl_scvaisseaux` ( - `cl_scvaisseaux_id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `cl_scvaisseaux_name` varchar(255) NOT NULL, - `cl_scvaisseaux_manufacture_id` int(10) unsigned NOT NULL, - PRIMARY KEY (`cl_scvaisseaux_id`), - KEY `fk_vaisseaux_manufacture` (`cl_scvaisseaux_manufacture_id`), - CONSTRAINT `fk_vaisseaux_manufacture` FOREIGN KEY (`cl_scvaisseaux_manufacture_id`) REFERENCES `tbl_scmanufactures` (`cl_scmanufactures_id`) ON DELETE CASCADE -) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - -INSERT INTO `tbl_scvaisseaux` (`cl_scvaisseaux_id`,`cl_scvaisseaux_name`,`cl_scvaisseaux_manufacture_id`) VALUES -('1','Mole','1'), -('2','Raft','1'), -('3','Sabre','2'), -('4','Sabre Raven','2'), -('5','Terrapin Medic','3'); +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tbl_scmanufactures` +-- + +LOCK TABLES `tbl_scmanufactures` WRITE; +/*!40000 ALTER TABLE `tbl_scmanufactures` DISABLE KEYS */; +INSERT INTO `tbl_scmanufactures` VALUES +(2,'Aegis Dynamics'), +(3,'Anvil Aerospace'), +(1,'Argo Astronautics'); +/*!40000 ALTER TABLE `tbl_scmanufactures` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tbl_scmanutentionitems` +-- + +DROP TABLE IF EXISTS `tbl_scmanutentionitems`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `tbl_scmanutentionitems` ( + `cl_scmanutentionitem_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `cl_scmanutentionitem_manutention_id` int(10) unsigned NOT NULL, + `cl_scmanutentionitem_source` enum('base','custom') NOT NULL DEFAULT 'base', + `cl_scmanutentionitem_scobjs_id` int(10) unsigned DEFAULT NULL, + `cl_scmanutentionitem_scitemcustom_id` int(11) DEFAULT NULL, + `cl_scmanutentionitem_quantity` int(10) unsigned NOT NULL DEFAULT 1, + `cl_scmanutentionitem_extra_info` text DEFAULT NULL, + `cl_scmanutentionitem_sort_order` int(10) unsigned NOT NULL DEFAULT 0, + `cl_scmanutentionitem_created_at` datetime NOT NULL DEFAULT current_timestamp(), + `cl_scmanutentionitem_updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + PRIMARY KEY (`cl_scmanutentionitem_id`), + KEY `idx_scmanutentionitem_sheet` (`cl_scmanutentionitem_manutention_id`), + KEY `idx_scmanutentionitem_scobjs` (`cl_scmanutentionitem_scobjs_id`), + KEY `idx_scmanutentionitem_scitemcustom` (`cl_scmanutentionitem_scitemcustom_id`), + KEY `idx_scmanutentionitem_sheet_sort` (`cl_scmanutentionitem_manutention_id`,`cl_scmanutentionitem_sort_order`,`cl_scmanutentionitem_id`), + CONSTRAINT `fk_scmanutentionitem_scitemcustom` FOREIGN KEY (`cl_scmanutentionitem_scitemcustom_id`) REFERENCES `tbl_scitemcustom` (`cl_scitemcustom_id`) ON DELETE SET NULL ON UPDATE CASCADE, + CONSTRAINT `fk_scmanutentionitem_scobjs` FOREIGN KEY (`cl_scmanutentionitem_scobjs_id`) REFERENCES `tbl_scobjs` (`cl_scobjs_id`) ON DELETE SET NULL ON UPDATE CASCADE, + CONSTRAINT `fk_scmanutentionitem_sheet` FOREIGN KEY (`cl_scmanutentionitem_manutention_id`) REFERENCES `tbl_scmanutentions` (`cl_scmanutention_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tbl_scmanutentionitems` +-- + +LOCK TABLES `tbl_scmanutentionitems` WRITE; +/*!40000 ALTER TABLE `tbl_scmanutentionitems` DISABLE KEYS */; +INSERT INTO `tbl_scmanutentionitems` VALUES +(2,2,'base',545,NULL,2,NULL,1,'2026-05-06 22:27:50','2026-05-06 22:27:50'), +(3,2,'base',12550,NULL,5,NULL,2,'2026-05-06 22:28:13','2026-05-06 22:28:13'), +(4,2,'custom',9691,2,1,NULL,3,'2026-05-06 22:30:27','2026-05-06 22:30:27'), +(5,2,'base',15698,NULL,1,NULL,4,'2026-05-06 22:46:14','2026-05-06 22:46:14'), +(6,2,'custom',6157,3,1,NULL,5,'2026-05-06 23:00:47','2026-05-06 23:00:47'), +(7,2,'custom',6157,6,2,NULL,6,'2026-05-06 23:01:22','2026-05-07 00:08:37'); +/*!40000 ALTER TABLE `tbl_scmanutentionitems` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tbl_scmanutentions` +-- + +DROP TABLE IF EXISTS `tbl_scmanutentions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `tbl_scmanutentions` ( + `cl_scmanutention_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `cl_scmanutention_owner_auth_id` int(10) unsigned NOT NULL, + `cl_scmanutention_title` varchar(190) NOT NULL, + `cl_scmanutention_type` varchar(120) NOT NULL DEFAULT '', + `cl_scmanutention_subtype` varchar(120) NOT NULL DEFAULT '', + `cl_scmanutention_description` text DEFAULT NULL, + `cl_scmanutention_share_token` varchar(64) NOT NULL, + `cl_scmanutention_share_enabled` tinyint(1) NOT NULL DEFAULT 0, + `cl_scmanutention_created_at` datetime NOT NULL DEFAULT current_timestamp(), + `cl_scmanutention_updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + PRIMARY KEY (`cl_scmanutention_id`), + UNIQUE KEY `uq_scmanutention_share_token` (`cl_scmanutention_share_token`), + KEY `idx_scmanutention_owner` (`cl_scmanutention_owner_auth_id`), + KEY `idx_scmanutention_title` (`cl_scmanutention_title`), + CONSTRAINT `fk_scmanutention_owner_auth` FOREIGN KEY (`cl_scmanutention_owner_auth_id`) REFERENCES `tbl_auth` (`cl_auth_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tbl_scmanutentions` +-- + +LOCK TABLES `tbl_scmanutentions` WRITE; +/*!40000 ALTER TABLE `tbl_scmanutentions` DISABLE KEYS */; +INSERT INTO `tbl_scmanutentions` VALUES +(2,1,'Fiche Test 1','','',NULL,'ee2c27528cc61901bb039de2576fbe5a',1,'2026-05-06 22:27:32','2026-05-06 22:28:58'); +/*!40000 ALTER TABLE `tbl_scmanutentions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tbl_scmining` +-- DROP TABLE IF EXISTS `tbl_scmining`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_scmining` ( `cl_scmining_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cl_scmining_obj_id` int(10) unsigned NOT NULL, @@ -18595,52 +416,30 @@ CREATE TABLE `tbl_scmining` ( UNIQUE KEY `cl_scmining_obj_id` (`cl_scmining_obj_id`), CONSTRAINT `fk_scmining_obj` FOREIGN KEY (`cl_scmining_obj_id`) REFERENCES `tbl_scobjs` (`cl_scobjs_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; -INSERT INTO `tbl_scmining` (`cl_scmining_id`,`cl_scmining_obj_id`,`cl_scmining_scan_value`,`cl_scmining_max_occurrence`,`cl_scmining_can_manual`,`cl_scmining_can_land`,`cl_scmining_can_space`) VALUES -('1','6157','3370','3','0','0','1'), -('2','10020','3400','3','0','0','1'), -('3','17490','3840','5','0','0','1'), -('6','8460','4270','6','0','1','1'), -('7','12311','3170','2','0','1','1'); +-- +-- Dumping data for table `tbl_scmining` +-- -DROP TABLE IF EXISTS `tbl_scpreset`; -CREATE TABLE `tbl_scpreset` ( - `cl_scpreset_id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `cl_scpreset_manufacture_id` int(10) unsigned DEFAULT NULL, - `cl_scpreset_vaisseau_id` int(10) unsigned DEFAULT NULL, - `cl_scpreset_name` varchar(255) NOT NULL, - `cl_scpreset_manufacturer` varchar(255) NOT NULL, - `cl_scpreset_description` text DEFAULT NULL, - `cl_scpreset_link` varchar(255) NOT NULL, - `cl_scpreset_creator` varchar(255) DEFAULT 'admin', - PRIMARY KEY (`cl_scpreset_id`), - KEY `fk_scpreset_manufacture` (`cl_scpreset_manufacture_id`), - KEY `fk_scpreset_vaisseau` (`cl_scpreset_vaisseau_id`), - CONSTRAINT `fk_scpreset_manufacture` FOREIGN KEY (`cl_scpreset_manufacture_id`) REFERENCES `tbl_scmanufactures` (`cl_scmanufactures_id`), - CONSTRAINT `fk_scpreset_vaisseau` FOREIGN KEY (`cl_scpreset_vaisseau_id`) REFERENCES `tbl_scvaisseaux` (`cl_scvaisseaux_id`) -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +LOCK TABLES `tbl_scmining` WRITE; +/*!40000 ALTER TABLE `tbl_scmining` DISABLE KEYS */; +INSERT INTO `tbl_scmining` VALUES +(1,6157,3370,3,0,0,1), +(2,10020,3400,3,0,0,1), +(3,17490,3840,5,0,0,1), +(6,8460,4270,6,0,1,1), +(7,12311,3170,2,0,1,1); +/*!40000 ALTER TABLE `tbl_scmining` ENABLE KEYS */; +UNLOCK TABLES; -INSERT INTO `tbl_scpreset` (`cl_scpreset_id`,`cl_scpreset_manufacture_id`,`cl_scpreset_vaisseau_id`,`cl_scpreset_name`,`cl_scpreset_manufacturer`,`cl_scpreset_description`,`cl_scpreset_link`,`cl_scpreset_creator`) VALUES -('1','1','1','Mole','Argo Astronautics','Permet de miner du gros rocher.','https://www.erkul.games/loadout/jhpc5TN9','admin'), -('3','3','5','Terrapin Medic','Anvil Aerospace','Vaisseau médical et furtif','https://www.erkul.games/loadout/2nHgQ9YB','admin'); - -DROP TABLE IF EXISTS `tbl_scwebhooks`; -CREATE TABLE `tbl_scwebhooks` ( - `cl_scwebhook_id` int(11) NOT NULL AUTO_INCREMENT, - `cl_scwebhook_name` varchar(255) NOT NULL, - `cl_scwebhook_url` text NOT NULL, - `cl_scwebhook_image_url` text NOT NULL, - `cl_scwebhook_border_color` varchar(20) NOT NULL DEFAULT '#ffae00', - `cl_scwebhook_is_forum` tinyint(1) DEFAULT 0, - PRIMARY KEY (`cl_scwebhook_id`) -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; - -INSERT INTO `tbl_scwebhooks` (`cl_scwebhook_id`,`cl_scwebhook_name`,`cl_scwebhook_url`,`cl_scwebhook_image_url`,`cl_scwebhook_border_color`,`cl_scwebhook_is_forum`) VALUES -('1','Code 8','https://discord.com/api/webhooks/1491426769440604262/pd-AAt5FO2lfEqbP8xVc50HZTOcKXU9dINusSv7z_VL3-QEbq51ga7eppjSm0xK_RqSi','https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless','#FF3B30','0'), -('2','Code 4','https://discord.com/api/webhooks/1491610094507397192/8bCQaVcHE2PorJRLeRO4J7ml504XKNUfkDaT4yjP0nC7Fb1k4E3dNkaz-5vZsTsHhbhB','https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless','#FFAE00','0'), -('3','Code 2','https://discord.com/api/webhooks/1498824758307848323/qSZPmzLlVrLoKIM3YTW-nGV8xHe9zPhLIz36trxVc_uCIZyA0JKXkWbWj23khmnEOrbQ','http://www.fdsfds.fr/img.png','#5FB6F5','0'); +-- +-- Table structure for table `tbl_scnotifications` +-- DROP TABLE IF EXISTS `tbl_scnotifications`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_scnotifications` ( `cl_scnotification_id` int(11) NOT NULL AUTO_INCREMENT, `cl_scnotification_webhook_id` int(11) NOT NULL, @@ -18658,182 +457,18514 @@ CREATE TABLE `tbl_scnotifications` ( CONSTRAINT `fk_scnotification_banner` FOREIGN KEY (`cl_scnotification_banner_id`) REFERENCES `tbl_scbanners` (`cl_scbanner_id`) ON DELETE SET NULL ON UPDATE CASCADE, CONSTRAINT `fk_scnotification_webhook` FOREIGN KEY (`cl_scnotification_webhook_id`) REFERENCES `tbl_scwebhooks` (`cl_scwebhook_id`) ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; -INSERT INTO `tbl_scnotifications` (`cl_scnotification_id`,`cl_scnotification_webhook_id`,`cl_scnotification_banner_id`,`cl_scnotification_title`,`cl_scnotification_message`,`cl_scnotification_payload`,`cl_scnotification_response`,`cl_scnotification_success`,`cl_scnotification_created_by`,`cl_scnotification_created_at`) VALUES -('1','1',NULL,'Diag test','Test diagnostic envoi Discord','{\"embeds\":[{\"description\":\"Test diagnostic envoi Discord\",\"color\":16756224,\"title\":\"Diag test\"}]}','{\"type\":0,\"content\":\"\",\"mentions\":[],\"mention_roles\":[],\"attachments\":[],\"embeds\":[{\"type\":\"rich\",\"title\":\"Diag test\",\"description\":\"Test diagnostic envoi Discord\",\"color\":16756224,\"content_scan_version\":0}],\"timestamp\":\"2026-04-08T23:04:29.056000+00:00\",\"edited_timestamp\":null,\"flags\":0,\"components\":[],\"id\":\"1491574483817857106\",\"channel_id\":\"1490461588996624434\",\"author\":{\"id\":\"1491426769440604262\",\"username\":\"R.E.A.C.T BOT\",\"avatar\":null,\"discriminator\":\"0000\",\"public_flags\":0,\"flags\":0,\"bot\":true,\"global_name\":null,\"clan\":null,\"primary_guild\":null},\"pinned\":false,\"mention_everyone\":false,\"tts\":false,\"webhook_id\":\"1491426769440604262\"}\n','1','admin','2026-04-08 23:04:29'), -('2','1',NULL,'Diag WWW','Test diagnostic via www-data','{\"embeds\":[{\"description\":\"Test diagnostic via www-data\",\"color\":16756224,\"title\":\"Diag WWW\"}]}','{\"type\":0,\"content\":\"\",\"mentions\":[],\"mention_roles\":[],\"attachments\":[],\"embeds\":[{\"type\":\"rich\",\"title\":\"Diag WWW\",\"description\":\"Test diagnostic via www-data\",\"color\":16756224,\"content_scan_version\":0}],\"timestamp\":\"2026-04-08T23:04:51.479000+00:00\",\"edited_timestamp\":null,\"flags\":0,\"components\":[],\"id\":\"1491574577866997832\",\"channel_id\":\"1490461588996624434\",\"author\":{\"id\":\"1491426769440604262\",\"username\":\"R.E.A.C.T BOT\",\"avatar\":null,\"discriminator\":\"0000\",\"public_flags\":0,\"flags\":0,\"bot\":true,\"global_name\":null,\"clan\":null,\"primary_guild\":null},\"pinned\":false,\"mention_everyone\":false,\"tts\":false,\"webhook_id\":\"1491426769440604262\"}\n','1','admin','2026-04-08 23:04:51'), -('3','1',NULL,'Validation runtime mbstring','Test apres redemarrage PM2 pour verifier la disparition du HTTP 500.','{\"embeds\":[{\"description\":\"Test apres redemarrage PM2 pour verifier la disparition du HTTP 500.\",\"color\":16756224,\"title\":\"Validation runtime mbstring\"}]}','{\"type\":0,\"content\":\"\",\"mentions\":[],\"mention_roles\":[],\"attachments\":[],\"embeds\":[{\"type\":\"rich\",\"title\":\"Validation runtime mbstring\",\"description\":\"Test apres redemarrage PM2 pour verifier la disparition du HTTP 500.\",\"color\":16756224,\"content_scan_version\":0}],\"timestamp\":\"2026-04-08T23:14:57.972000+00:00\",\"edited_timestamp\":null,\"flags\":0,\"components\":[],\"id\":\"1491577121682751680\",\"channel_id\":\"1490461588996624434\",\"author\":{\"id\":\"1491426769440604262\",\"username\":\"R.E.A.C.T BOT\",\"avatar\":null,\"discriminator\":\"0000\",\"public_flags\":0,\"flags\":0,\"bot\":true,\"global_name\":null,\"clan\":null,\"primary_guild\":null},\"pinned\":false,\"mention_everyone\":false,\"tts\":false,\"webhook_id\":\"1491426769440604262\"}\n','1','admin','2026-04-08 23:14:58'), -('4','1',NULL,'Validation runtime mbstring','Test apres redemarrage PM2 pour verifier la disparition du HTTP 500.','{\"embeds\":[{\"description\":\"Test apres redemarrage PM2 pour verifier la disparition du HTTP 500.\",\"color\":16756224,\"title\":\"Validation runtime mbstring\"}]}','{\"type\":0,\"content\":\"\",\"mentions\":[],\"mention_roles\":[],\"attachments\":[],\"embeds\":[{\"type\":\"rich\",\"title\":\"Validation runtime mbstring\",\"description\":\"Test apres redemarrage PM2 pour verifier la disparition du HTTP 500.\",\"color\":16756224,\"content_scan_version\":0}],\"timestamp\":\"2026-04-08T23:15:09.353000+00:00\",\"edited_timestamp\":null,\"flags\":0,\"components\":[],\"id\":\"1491577169418391602\",\"channel_id\":\"1490461588996624434\",\"author\":{\"id\":\"1491426769440604262\",\"username\":\"R.E.A.C.T BOT\",\"avatar\":null,\"discriminator\":\"0000\",\"public_flags\":0,\"flags\":0,\"bot\":true,\"global_name\":null,\"clan\":null,\"primary_guild\":null},\"pinned\":false,\"mention_everyone\":false,\"tts\":false,\"webhook_id\":\"1491426769440604262\"}\n','1','admin','2026-04-08 23:15:09'), -('5','1','1','Titre de etst','bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla','{\"embeds\":[{\"description\":\"bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla\",\"color\":16726832,\"title\":\"Titre de etst\",\"fields\":[{\"name\":\"Réactions\",\"value\":\"👍 / ⏳ / ❓ / 👎\",\"inline\":false},{\"name\":\"Fil de discussion\",\"value\":\"Le webhook sélectionné n’est pas de type forum.\",\"inline\":false}],\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]}}','{\"type\":0,\"content\":\"@everyone\",\"mentions\":[],\"mention_roles\":[],\"attachments\":[],\"embeds\":[{\"type\":\"rich\",\"title\":\"Titre de etst\",\"description\":\"bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla\",\"color\":16726832,\"fields\":[{\"name\":\"R\u00e9actions\",\"value\":\"\ud83d\udc4d / \u23f3 / \u2753 / \ud83d\udc4e\",\"inline\":false},{\"name\":\"Fil de discussion\",\"value\":\"Le webhook s\u00e9lectionn\u00e9 n\u2019est pas de type forum.\",\"inline\":false}],\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&format=webp&quality=lossless&\",\"proxy_url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&\",\"width\":1200,\"height\":424,\"content_type\":\"image/png\",\"placeholder\":\"DygGEoa2W0fxaGZ2AoVWA3o=\",\"placeholder_version\":1,\"flags\":0},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"},\"content_scan_version\":4}],\"timestamp\":\"2026-04-08T23:17:20.353000+00:00\",\"edited_timestamp\":null,\"flags\":0,\"components\":[],\"id\":\"1491577718872211486\",\"channel_id\":\"1490461588996624434\",\"author\":{\"id\":\"1491426769440604262\",\"username\":\"R.E.A.C.T BOT\",\"avatar\":null,\"discriminator\":\"0000\",\"public_flags\":0,\"flags\":0,\"bot\":true,\"global_name\":null,\"clan\":null,\"primary_guild\":null},\"pinned\":false,\"mention_everyone\":true,\"tts\":false,\"webhook_id\":\"1491426769440604262\"}\n','1','admin','2026-04-08 23:17:20'), -('6','1','1','Titre de etst','Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès.','{\"embeds\":[{\"description\":\"Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès.\",\"color\":16726832,\"title\":\"Titre de etst\",\"fields\":[{\"name\":\"Lieu de ralliement\",\"value\":\"Pyro\",\"inline\":false},{\"name\":\"Date de début\",\"value\":\"2026-04-10\",\"inline\":true},{\"name\":\"Heure de départ\",\"value\":\"21:30\",\"inline\":true},{\"name\":\"Heure de briefing\",\"value\":\"21:00\",\"inline\":true},{\"name\":\"Date de fin\",\"value\":\"2026-04-30\",\"inline\":true},{\"name\":\"Heure de fin\",\"value\":\"00:00\",\"inline\":true},{\"name\":\"Canal Discord\",\"value\":\"[Ouvrir le canal](https://discord.com/channels)\",\"inline\":false},{\"name\":\"Inventaire A.R.I.A\",\"value\":\"[Consulter l’inventaire](https://aria.blackops-agency.fr)\",\"inline\":false},{\"name\":\"Source\",\"value\":\"[Ouvrir la source](https://www.google.fr)\",\"inline\":false},{\"name\":\"Réactions\",\"value\":\"👍 / ⏳ / ❓ / 👎\",\"inline\":false},{\"name\":\"Fil de discussion\",\"value\":\"Le webhook sélectionné n’est pas de type forum.\",\"inline\":false}],\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@here @everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]}}','{\"type\":0,\"content\":\"@here @everyone\",\"mentions\":[],\"mention_roles\":[],\"attachments\":[],\"embeds\":[{\"type\":\"rich\",\"title\":\"Titre de etst\",\"description\":\"Notification Discord envoy\u00e9e avec succ\u00e8s. Notification Discord envoy\u00e9e avec succ\u00e8s. Notification Discord envoy\u00e9e avec succ\u00e8s. Notification Discord envoy\u00e9e avec succ\u00e8s. Notification Discord envoy\u00e9e avec succ\u00e8s. Notification Discord envoy\u00e9e avec succ\u00e8s. Notification Discord envoy\u00e9e avec succ\u00e8s. Notification Discord envoy\u00e9e avec succ\u00e8s. Notification Discord envoy\u00e9e avec succ\u00e8s. Notification Discord envoy\u00e9e avec succ\u00e8s. Notification Discord envoy\u00e9e avec succ\u00e8s. Notification Discord envoy\u00e9e avec succ\u00e8s. Notification Discord envoy\u00e9e avec succ\u00e8s.\",\"color\":16726832,\"fields\":[{\"name\":\"Lieu de ralliement\",\"value\":\"Pyro\",\"inline\":false},{\"name\":\"Date de d\u00e9but\",\"value\":\"2026-04-10\",\"inline\":true},{\"name\":\"Heure de d\u00e9part\",\"value\":\"21:30\",\"inline\":true},{\"name\":\"Heure de briefing\",\"value\":\"21:00\",\"inline\":true},{\"name\":\"Date de fin\",\"value\":\"2026-04-30\",\"inline\":true},{\"name\":\"Heure de fin\",\"value\":\"00:00\",\"inline\":true},{\"name\":\"Canal Discord\",\"value\":\"[Ouvrir le canal](https://discord.com/channels)\",\"inline\":false},{\"name\":\"Inventaire A.R.I.A\",\"value\":\"[Consulter l\u2019inventaire](https://aria.blackops-agency.fr)\",\"inline\":false},{\"name\":\"Source\",\"value\":\"[Ouvrir la source](https://www.google.fr)\",\"inline\":false},{\"name\":\"R\u00e9actions\",\"value\":\"\ud83d\udc4d / \u23f3 / \u2753 / \ud83d\udc4e\",\"inline\":false},{\"name\":\"Fil de discussion\",\"value\":\"Le webhook s\u00e9lectionn\u00e9 n\u2019est pas de type forum.\",\"inline\":false}],\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&format=webp&quality=lossless&\",\"proxy_url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&\",\"width\":1200,\"height\":424,\"content_type\":\"image/png\",\"placeholder\":\"DygGEoa2W0fxaGZ2AoVWA3o=\",\"placeholder_version\":1,\"flags\":0},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"},\"content_scan_version\":4}],\"timestamp\":\"2026-04-08T23:19:08.181000+00:00\",\"edited_timestamp\":null,\"flags\":0,\"components\":[],\"id\":\"1491578171135365320\",\"channel_id\":\"1490461588996624434\",\"author\":{\"id\":\"1491426769440604262\",\"username\":\"R.E.A.C.T BOT\",\"avatar\":null,\"discriminator\":\"0000\",\"public_flags\":0,\"flags\":0,\"bot\":true,\"global_name\":null,\"clan\":null,\"primary_guild\":null},\"pinned\":false,\"mention_everyone\":true,\"tts\":false,\"webhook_id\":\"1491426769440604262\"}\n','1','admin','2026-04-08 23:19:08'), -('7','1','1','Titre de etst','Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès.','{\"embeds\":[{\"description\":\"Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès.\",\"color\":16726832,\"title\":\"Titre de etst\",\"fields\":[{\"name\":\"Réactions\",\"value\":\"👍 / ⏳ / ❓ / 👎\",\"inline\":false}],\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]},\"thread_name\":\"Titre de etst\"}','{\"message\": \"Webhooks can only create threads in forum channels\", \"code\": 220003}','0','admin','2026-04-08 23:20:00'), -('8','1','1','Titre de etst','Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès.','{\"embeds\":[{\"description\":\"Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès.\",\"color\":16726832,\"title\":\"Titre de etst\",\"fields\":[{\"name\":\"Réactions\",\"value\":\"👍 / ⏳ / ❓ / 👎\",\"inline\":false}],\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@here @everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]},\"thread_name\":\"Titre de etst\"}','{\"message\": \"Webhooks can only create threads in forum channels\", \"code\": 220003}','0','admin','2026-04-08 23:20:20'), -('9','1','1','Titre de etst','SC WebhookSC WebhookSC WebhookSC WebhookSC Webhook','{\"embeds\":[{\"description\":\"SC WebhookSC WebhookSC WebhookSC WebhookSC Webhook\",\"color\":16726832,\"title\":\"Titre de etst\",\"fields\":[{\"name\":\"Réactions\",\"value\":\"👍 / ⏳ / ❓ / 👎\",\"inline\":false},{\"name\":\"Fil de discussion\",\"value\":\"Le webhook sélectionné n’est pas de type forum.\",\"inline\":false}],\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@here @everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]}}','{\"type\":0,\"content\":\"@here @everyone\",\"mentions\":[],\"mention_roles\":[],\"attachments\":[],\"embeds\":[{\"type\":\"rich\",\"title\":\"Titre de etst\",\"description\":\"SC WebhookSC WebhookSC WebhookSC WebhookSC Webhook\",\"color\":16726832,\"fields\":[{\"name\":\"R\u00e9actions\",\"value\":\"\ud83d\udc4d / \u23f3 / \u2753 / \ud83d\udc4e\",\"inline\":false},{\"name\":\"Fil de discussion\",\"value\":\"Le webhook s\u00e9lectionn\u00e9 n\u2019est pas de type forum.\",\"inline\":false}],\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&format=webp&quality=lossless&\",\"proxy_url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&\",\"width\":1200,\"height\":424,\"content_type\":\"image/png\",\"placeholder\":\"DygGEoa2W0fxaGZ2AoVWA3o=\",\"placeholder_version\":1,\"flags\":0},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"},\"content_scan_version\":4}],\"timestamp\":\"2026-04-08T23:24:27.504000+00:00\",\"edited_timestamp\":null,\"flags\":0,\"components\":[],\"id\":\"1491579510473101422\",\"channel_id\":\"1490461588996624434\",\"author\":{\"id\":\"1491426769440604262\",\"username\":\"R.E.A.C.T BOT\",\"avatar\":null,\"discriminator\":\"0000\",\"public_flags\":0,\"flags\":0,\"bot\":true,\"global_name\":null,\"clan\":null,\"primary_guild\":null},\"pinned\":false,\"mention_everyone\":true,\"tts\":false,\"webhook_id\":\"1491426769440604262\"}\n','1','admin','2026-04-08 23:24:27'), -('10','1','1','Titre de etst','454654','{\"embeds\":[{\"description\":\"454654\",\"color\":16726832,\"title\":\"Titre de etst\",\"fields\":[{\"name\":\"Réactions\",\"value\":\"👍 / ⏳ / ❓ / 👎\",\"inline\":false}],\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]},\"thread_name\":\"Titre de etst\"}','{\"message\": \"Webhooks can only create threads in forum channels\", \"code\": 220003}','0','admin','2026-04-08 23:50:36'), -('11','1','1','Titre de etst','sdqf g dgfd','{\"embeds\":[{\"description\":\"sdqf g dgfd\",\"color\":16726832,\"title\":\"Titre de etst\",\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@here @everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]}}','{\"webhook\":{\"success\":true,\"http_code\":200,\"response\":\"{\\"type\\":0,\\"content\\":\\"@here @everyone\\",\\"mentions\\":[],\\"mention_roles\\":[],\\"attachments\\":[],\\"embeds\\":[{\\"type\\":\\"rich\\",\\"title\\":\\"Titre de etst\\",\\"description\\":\\"sdqf g dgfd\\",\\"color\\":16726832,\\"image\\":{\\"url\\":\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d84038&is=69d6eeb8&hm=1169623690b3ac15ddf60fc9d26ac84b41d1200e8e4939265fae57393a155e2c&format=webp&quality=lossless&\\",\\"proxy_url\\":\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d84038&is=69d6eeb8&hm=1169623690b3ac15ddf60fc9d26ac84b41d1200e8e4939265fae57393a155e2c&\\",\\"width\\":1200,\\"height\\":424,\\"content_type\\":\\"image/png\\",\\"placeholder\\":\\"DygGEoa2W0fxaGZ2AoVWA3o=\\",\\"placeholder_version\\":1,\\"flags\\":0},\\"footer\\":{\\"text\\":\\"R.E.A.C.T Initiative\\"},\\"content_scan_version\\":4}],\\"timestamp\\":\\"2026-04-09T00:12:52.942000+00:00\\",\\"edited_timestamp\\":null,\\"flags\\":0,\\"components\\":[],\\"id\\":\\"1491591696763453672\\",\\"channel_id\\":\\"1490461588996624434\\",\\"author\\":{\\"id\\":\\"1491426769440604262\\",\\"username\\":\\"R.E.A.C.T BOT\\",\\"avatar\\":null,\\"discriminator\\":\\"0000\\",\\"public_flags\\":0,\\"flags\\":0,\\"bot\\":true,\\"global_name\\":null,\\"clan\\":null,\\"primary_guild\\":null},\\"pinned\\":false,\\"mention_everyone\\":true,\\"tts\\":false,\\"webhook_id\\":\\"1491426769440604262\\"}\n\"},\"bot_actions\":{\"success\":false,\"http_code\":403,\"response\":\"[{\\"action\\":\\"reaction\\",\\"emoji\\":\\"👍\\",\\"success\\":false,\\"http_code\\":403,\\"response\\":\\"{\\\\"message\\\\": \\\\"Missing Access\\\\", \\\\"code\\\\": 50001}\\"}]\",\"details\":[{\"action\":\"reaction\",\"emoji\":\"👍\",\"success\":false,\"http_code\":403,\"response\":\"{\\"message\\": \\"Missing Access\\", \\"code\\": 50001}\"}]}}','0','admin','2026-04-09 00:12:53'), -('12','1','1','Titre de etst','fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd','{\"embeds\":[{\"description\":\"fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd\",\"color\":16726832,\"title\":\"Titre de etst\",\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]}}','{\"webhook\":{\"success\":true,\"http_code\":200,\"response\":\"{\\"type\\":0,\\"content\\":\\"@everyone\\",\\"mentions\\":[],\\"mention_roles\\":[],\\"attachments\\":[],\\"embeds\\":[{\\"type\\":\\"rich\\",\\"title\\":\\"Titre de etst\\",\\"description\\":\\"fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd\\",\\"color\\":16726832,\\"image\\":{\\"url\\":\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d84038&is=69d6eeb8&hm=1169623690b3ac15ddf60fc9d26ac84b41d1200e8e4939265fae57393a155e2c&format=webp&quality=lossless&\\",\\"proxy_url\\":\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d84038&is=69d6eeb8&hm=1169623690b3ac15ddf60fc9d26ac84b41d1200e8e4939265fae57393a155e2c&\\",\\"width\\":1200,\\"height\\":424,\\"content_type\\":\\"image/png\\",\\"placeholder\\":\\"DygGEoa2W0fxaGZ2AoVWA3o=\\",\\"placeholder_version\\":1,\\"flags\\":0},\\"footer\\":{\\"text\\":\\"R.E.A.C.T Initiative\\"},\\"content_scan_version\\":4}],\\"timestamp\\":\\"2026-04-09T01:04:11.992000+00:00\\",\\"edited_timestamp\\":null,\\"flags\\":0,\\"components\\":[],\\"id\\":\\"1491604611235053582\\",\\"channel_id\\":\\"1490461588996624434\\",\\"author\\":{\\"id\\":\\"1491426769440604262\\",\\"username\\":\\"R.E.A.C.T BOT\\",\\"avatar\\":null,\\"discriminator\\":\\"0000\\",\\"public_flags\\":0,\\"flags\\":0,\\"bot\\":true,\\"global_name\\":null,\\"clan\\":null,\\"primary_guild\\":null},\\"pinned\\":false,\\"mention_everyone\\":true,\\"tts\\":false,\\"webhook_id\\":\\"1491426769440604262\\"}\n\"},\"bot_actions\":{\"success\":false,\"http_code\":403,\"response\":\"[{\\"action\\":\\"reaction\\",\\"emoji\\":\\"👍\\",\\"success\\":false,\\"http_code\\":403,\\"response\\":\\"{\\\\"message\\\\": \\\\"Missing Access\\\\", \\\\"code\\\\": 50001}\\"},{\\"action\\":\\"reaction\\",\\"emoji\\":\\"⌛\\",\\"success\\":false,\\"http_code\\":403,\\"response\\":\\"{\\\\"message\\\\": \\\\"Missing Access\\\\", \\\\"code\\\\": 50001}\\"},{\\"action\\":\\"reaction\\",\\"emoji\\":\\"❔\\",\\"success\\":false,\\"http_code\\":403,\\"response\\":\\"{\\\\"message\\\\": \\\\"Missing Access\\\\", \\\\"code\\\\": 50001}\\"},{\\"action\\":\\"reaction\\",\\"emoji\\":\\"👎\\",\\"success\\":false,\\"http_code\\":403,\\"response\\":\\"{\\\\"message\\\\": \\\\"Missing Access\\\\", \\\\"code\\\\": 50001}\\"},{\\"action\\":\\"thread\\",\\"success\\":false,\\"http_code\\":403,\\"response\\":\\"{\\\\"message\\\\": \\\\"Missing Access\\\\", \\\\"code\\\\": 50001}\\"}]\",\"details\":[{\"action\":\"reaction\",\"emoji\":\"👍\",\"success\":false,\"http_code\":403,\"response\":\"{\\"message\\": \\"Missing Access\\", \\"code\\": 50001}\"},{\"action\":\"reaction\",\"emoji\":\"⌛\",\"success\":false,\"http_code\":403,\"response\":\"{\\"message\\": \\"Missing Access\\", \\"code\\": 50001}\"},{\"action\":\"reaction\",\"emoji\":\"❔\",\"success\":false,\"http_code\":403,\"response\":\"{\\"message\\": \\"Missing Access\\", \\"code\\": 50001}\"},{\"action\":\"reaction\",\"emoji\":\"👎\",\"success\":false,\"http_code\":403,\"response\":\"{\\"message\\": \\"Missing Access\\", \\"code\\": 50001}\"},{\"action\":\"thread\",\"success\":false,\"http_code\":403,\"response\":\"{\\"message\\": \\"Missing Access\\", \\"code\\": 50001}\"}]}}','0','admin','2026-04-09 01:04:17'), -('13','1','1','Titre de etst','s fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf ds','{\"embeds\":[{\"description\":\"s fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf ds\",\"color\":16726832,\"title\":\"Titre de etst\",\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]}}','{\"webhook\":{\"success\":true,\"http_code\":200,\"response\":\"{\\"type\\":0,\\"content\\":\\"@everyone\\",\\"mentions\\":[],\\"mention_roles\\":[],\\"attachments\\":[],\\"embeds\\":[{\\"type\\":\\"rich\\",\\"title\\":\\"Titre de etst\\",\\"description\\":\\"s fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf ds\\",\\"color\\":16726832,\\"image\\":{\\"url\\":\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d84038&is=69d6eeb8&hm=1169623690b3ac15ddf60fc9d26ac84b41d1200e8e4939265fae57393a155e2c&format=webp&quality=lossless&\\",\\"proxy_url\\":\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d84038&is=69d6eeb8&hm=1169623690b3ac15ddf60fc9d26ac84b41d1200e8e4939265fae57393a155e2c&\\",\\"width\\":1200,\\"height\\":424,\\"content_type\\":\\"image/png\\",\\"placeholder\\":\\"DygGEoa2W0fxaGZ2AoVWA3o=\\",\\"placeholder_version\\":1,\\"flags\\":0},\\"footer\\":{\\"text\\":\\"R.E.A.C.T Initiative\\"},\\"content_scan_version\\":4}],\\"timestamp\\":\\"2026-04-09T01:23:53.242000+00:00\\",\\"edited_timestamp\\":null,\\"flags\\":0,\\"components\\":[],\\"id\\":\\"1491609565756919919\\",\\"channel_id\\":\\"1490461588996624434\\",\\"author\\":{\\"id\\":\\"1491426769440604262\\",\\"username\\":\\"R.E.A.C.T BOT\\",\\"avatar\\":null,\\"discriminator\\":\\"0000\\",\\"public_flags\\":0,\\"flags\\":0,\\"bot\\":true,\\"global_name\\":null,\\"clan\\":null,\\"primary_guild\\":null},\\"pinned\\":false,\\"mention_everyone\\":true,\\"tts\\":false,\\"webhook_id\\":\\"1491426769440604262\\"}\n\"},\"bot_actions\":{\"success\":true,\"http_code\":200,\"response\":\"[{\\"action\\":\\"reaction\\",\\"emoji\\":\\"👍\\",\\"success\\":true,\\"http_code\\":204,\\"response\\":\\"\\"},{\\"action\\":\\"reaction\\",\\"emoji\\":\\"⌛\\",\\"success\\":true,\\"http_code\\":204,\\"response\\":\\"\\"},{\\"action\\":\\"reaction\\",\\"emoji\\":\\"❔\\",\\"success\\":true,\\"http_code\\":204,\\"response\\":\\"\\"},{\\"action\\":\\"reaction\\",\\"emoji\\":\\"👎\\",\\"success\\":true,\\"http_code\\":204,\\"response\\":\\"\\"},{\\"action\\":\\"thread\\",\\"success\\":true,\\"http_code\\":201,\\"response\\":\\"{\\\\"id\\\\":\\\\"1491609565756919919\\\\",\\\\"type\\\\":11,\\\\"last_message_id\\\\":\\\\"1491609587130958077\\\\",\\\\"flags\\\\":0,\\\\"guild_id\\\\":\\\\"1442826208608915542\\\\",\\\\"name\\\\":\\\\"Discussion - Titre de etst\\\\",\\\\"parent_id\\\\":\\\\"1490461588996624434\\\\",\\\\"rate_limit_per_user\\\\":0,\\\\"bitrate\\\\":64000,\\\\"user_limit\\\\":0,\\\\"rtc_region\\\\":null,\\\\"owner_id\\\\":\\\\"1425806219305681018\\\\",\\\\"thread_metadata\\\\":{\\\\"archived\\\\":false,\\\\"archive_timestamp\\\\":\\\\"2026-04-09T01:23:58.411536+00:00\\\\",\\\\"auto_archive_duration\\\\":1440,\\\\"locked\\\\":false,\\\\"create_timestamp\\\\":\\\\"2026-04-09T01:23:58.411536+00:00\\\\"},\\\\"message_count\\\\":0,\\\\"member_count\\\\":1,\\\\"total_message_sent\\\\":0,\\\\"member\\\\":{\\\\"id\\\\":\\\\"1491609565756919919\\\\",\\\\"user_id\\\\":\\\\"1425806219305681018\\\\",\\\\"join_timestamp\\\\":\\\\"2026-04-09T01:23:58.412586+00:00\\\\",\\\\"flags\\\\":1,\\\\"muted\\\\":false,\\\\"mute_config\\\\":null}}\\n\\"}]\",\"details\":[{\"action\":\"reaction\",\"emoji\":\"👍\",\"success\":true,\"http_code\":204,\"response\":\"\"},{\"action\":\"reaction\",\"emoji\":\"⌛\",\"success\":true,\"http_code\":204,\"response\":\"\"},{\"action\":\"reaction\",\"emoji\":\"❔\",\"success\":true,\"http_code\":204,\"response\":\"\"},{\"action\":\"reaction\",\"emoji\":\"👎\",\"success\":true,\"http_code\":204,\"response\":\"\"},{\"action\":\"thread\",\"success\":true,\"http_code\":201,\"response\":\"{\\"id\\":\\"1491609565756919919\\",\\"type\\":11,\\"last_message_id\\":\\"1491609587130958077\\",\\"flags\\":0,\\"guild_id\\":\\"1442826208608915542\\",\\"name\\":\\"Discussion - Titre de etst\\",\\"parent_id\\":\\"1490461588996624434\\",\\"rate_limit_per_user\\":0,\\"bitrate\\":64000,\\"user_limit\\":0,\\"rtc_region\\":null,\\"owner_id\\":\\"1425806219305681018\\",\\"thread_metadata\\":{\\"archived\\":false,\\"archive_timestamp\\":\\"2026-04-09T01:23:58.411536+00:00\\",\\"auto_archive_duration\\":1440,\\"locked\\":false,\\"create_timestamp\\":\\"2026-04-09T01:23:58.411536+00:00\\"},\\"message_count\\":0,\\"member_count\\":1,\\"total_message_sent\\":0,\\"member\\":{\\"id\\":\\"1491609565756919919\\",\\"user_id\\":\\"1425806219305681018\\",\\"join_timestamp\\":\\"2026-04-09T01:23:58.412586+00:00\\",\\"flags\\":1,\\"muted\\":false,\\"mute_config\\":null}}\n\"}]}}','1','admin','2026-04-09 01:23:58'), -('14','2','2','Code 4 - Alerte modérée','fds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg x','{\"embeds\":[{\"description\":\"fds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg x\",\"color\":16756224,\"title\":\"Code 4 - Alerte modérée\",\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]}}','{\"webhook\":{\"success\":true,\"http_code\":200,\"response\":\"{\\"type\\":0,\\"content\\":\\"@everyone\\",\\"mentions\\":[],\\"mention_roles\\":[],\\"attachments\\":[],\\"embeds\\":[{\\"type\\":\\"rich\\",\\"title\\":\\"Code 4 - Alerte mod\\u00e9r\\u00e9e\\",\\"description\\":\\"fds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg x\\",\\"color\\":16756224,\\"image\\":{\\"url\\":\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d84038&is=69d6eeb8&hm=1169623690b3ac15ddf60fc9d26ac84b41d1200e8e4939265fae57393a155e2c&format=webp&quality=lossless&\\",\\"proxy_url\\":\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d84038&is=69d6eeb8&hm=1169623690b3ac15ddf60fc9d26ac84b41d1200e8e4939265fae57393a155e2c&\\",\\"width\\":1200,\\"height\\":424,\\"content_type\\":\\"image/png\\",\\"placeholder\\":\\"DygGEoa2W0fxaGZ2AoVWA3o=\\",\\"placeholder_version\\":1,\\"flags\\":0},\\"footer\\":{\\"text\\":\\"R.E.A.C.T Initiative\\"},\\"content_scan_version\\":4}],\\"timestamp\\":\\"2026-04-09T01:27:14.786000+00:00\\",\\"edited_timestamp\\":null,\\"flags\\":0,\\"components\\":[],\\"id\\":\\"1491610411093459034\\",\\"channel_id\\":\\"1491083003672269050\\",\\"author\\":{\\"id\\":\\"1491610094507397192\\",\\"username\\":\\"R.E.A.C.T Bot\\",\\"avatar\\":null,\\"discriminator\\":\\"0000\\",\\"public_flags\\":0,\\"flags\\":0,\\"bot\\":true,\\"global_name\\":null,\\"clan\\":null,\\"primary_guild\\":null},\\"pinned\\":false,\\"mention_everyone\\":true,\\"tts\\":false,\\"webhook_id\\":\\"1491610094507397192\\"}\n\"},\"bot_actions\":{\"success\":true,\"http_code\":200,\"response\":\"[{\\"action\\":\\"thread\\",\\"success\\":true,\\"http_code\\":201,\\"response\\":\\"{\\\\"id\\\\":\\\\"1491610411093459034\\\\",\\\\"type\\\\":10,\\\\"last_message_id\\\\":\\\\"1491610412431704184\\\\",\\\\"flags\\\\":0,\\\\"guild_id\\\\":\\\\"1442826208608915542\\\\",\\\\"name\\\\":\\\\"Discussion - Code 4 - Alerte mod\\\\u00e9r\\\\u00e9e\\\\",\\\\"parent_id\\\\":\\\\"1491083003672269050\\\\",\\\\"rate_limit_per_user\\\\":0,\\\\"owner_id\\\\":\\\\"1425806219305681018\\\\",\\\\"thread_metadata\\\\":{\\\\"archived\\\\":false,\\\\"archive_timestamp\\\\":\\\\"2026-04-09T01:27:15.093188+00:00\\\\",\\\\"auto_archive_duration\\\\":1440,\\\\"locked\\\\":false,\\\\"create_timestamp\\\\":\\\\"2026-04-09T01:27:15.093188+00:00\\\\"},\\\\"message_count\\\\":0,\\\\"member_count\\\\":1,\\\\"total_message_sent\\\\":0,\\\\"member\\\\":{\\\\"id\\\\":\\\\"1491610411093459034\\\\",\\\\"user_id\\\\":\\\\"1425806219305681018\\\\",\\\\"join_timestamp\\\\":\\\\"2026-04-09T01:27:15.094380+00:00\\\\",\\\\"flags\\\\":1,\\\\"muted\\\\":false,\\\\"mute_config\\\\":null}}\\n\\"}]\",\"details\":[{\"action\":\"thread\",\"success\":true,\"http_code\":201,\"response\":\"{\\"id\\":\\"1491610411093459034\\",\\"type\\":10,\\"last_message_id\\":\\"1491610412431704184\\",\\"flags\\":0,\\"guild_id\\":\\"1442826208608915542\\",\\"name\\":\\"Discussion - Code 4 - Alerte mod\\u00e9r\\u00e9e\\",\\"parent_id\\":\\"1491083003672269050\\",\\"rate_limit_per_user\\":0,\\"owner_id\\":\\"1425806219305681018\\",\\"thread_metadata\\":{\\"archived\\":false,\\"archive_timestamp\\":\\"2026-04-09T01:27:15.093188+00:00\\",\\"auto_archive_duration\\":1440,\\"locked\\":false,\\"create_timestamp\\":\\"2026-04-09T01:27:15.093188+00:00\\"},\\"message_count\\":0,\\"member_count\\":1,\\"total_message_sent\\":0,\\"member\\":{\\"id\\":\\"1491610411093459034\\",\\"user_id\\":\\"1425806219305681018\\",\\"join_timestamp\\":\\"2026-04-09T01:27:15.094380+00:00\\",\\"flags\\":1,\\"muted\\":false,\\"mute_config\\":null}}\n\"}]}}','1','admin','2026-04-09 01:27:15'), -('15','3','3','CODE 2 - XENOTHREATH','Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet','{\"embeds\":[{\"description\":\"Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet\",\"color\":6272757,\"title\":\"CODE 2 - XENOTHREATH\",\"image\":{\"url\":\"http://www.fdsfds.fr/img.png\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]}}','{\"webhook\":{\"success\":true,\"http_code\":200,\"response\":\"{\\"type\\":0,\\"content\\":\\"@everyone\\",\\"mentions\\":[],\\"mention_roles\\":[],\\"attachments\\":[],\\"embeds\\":[{\\"type\\":\\"rich\\",\\"title\\":\\"CODE 2 - XENOTHREATH\\",\\"description\\":\\"Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet\\",\\"color\\":6272757,\\"image\\":{\\"url\\":\\"http://www.fdsfds.fr/img.png\\",\\"proxy_url\\":\\"https://images-ext-1.discordapp.net/external/uPRyoUOXYT2D003II0XN-4YIv2s6kwzkllRiUkHIatM/http/www.fdsfds.fr/img.png\\",\\"width\\":0,\\"height\\":0,\\"flags\\":0},\\"footer\\":{\\"text\\":\\"R.E.A.C.T Initiative\\"},\\"content_scan_version\\":4}],\\"timestamp\\":\\"2026-04-28T23:16:57.863000+00:00\\",\\"edited_timestamp\\":null,\\"flags\\":0,\\"components\\":[],\\"id\\":\\"1498825381854052353\\",\\"channel_id\\":\\"1495861309625991251\\",\\"author\\":{\\"id\\":\\"1498824758307848323\\",\\"username\\":\\"R.E.A.C.T Bot\\",\\"avatar\\":\\"b3ed75620432a5c1a7ea2259ded06029\\",\\"discriminator\\":\\"0000\\",\\"public_flags\\":0,\\"flags\\":0,\\"bot\\":true,\\"global_name\\":null,\\"clan\\":null,\\"primary_guild\\":null},\\"pinned\\":false,\\"mention_everyone\\":true,\\"tts\\":false,\\"webhook_id\\":\\"1498824758307848323\\"}\n\"},\"bot_actions\":{\"success\":true,\"http_code\":200,\"response\":\"[{\\"action\\":\\"thread\\",\\"success\\":true,\\"http_code\\":201,\\"response\\":\\"{\\\\"id\\\\":\\\\"1498825381854052353\\\\",\\\\"type\\\\":10,\\\\"last_message_id\\\\":\\\\"1498825383712260228\\\\",\\\\"flags\\\\":0,\\\\"guild_id\\\\":\\\\"1442826208608915542\\\\",\\\\"name\\\\":\\\\"Discussion - CODE 2 - XENOTHREATH\\\\",\\\\"parent_id\\\\":\\\\"1495861309625991251\\\\",\\\\"rate_limit_per_user\\\\":0,\\\\"owner_id\\\\":\\\\"1425806219305681018\\\\",\\\\"thread_metadata\\\\":{\\\\"archived\\\\":false,\\\\"archive_timestamp\\\\":\\\\"2026-04-28T23:16:58.298452+00:00\\\\",\\\\"auto_archive_duration\\\\":1440,\\\\"locked\\\\":false,\\\\"create_timestamp\\\\":\\\\"2026-04-28T23:16:58.298452+00:00\\\\"},\\\\"message_count\\\\":0,\\\\"member_count\\\\":1,\\\\"total_message_sent\\\\":0,\\\\"member\\\\":{\\\\"id\\\\":\\\\"1498825381854052353\\\\",\\\\"user_id\\\\":\\\\"1425806219305681018\\\\",\\\\"join_timestamp\\\\":\\\\"2026-04-28T23:16:58.299219+00:00\\\\",\\\\"flags\\\\":1,\\\\"muted\\\\":false,\\\\"mute_config\\\\":null}}\\n\\"}]\",\"details\":[{\"action\":\"thread\",\"success\":true,\"http_code\":201,\"response\":\"{\\"id\\":\\"1498825381854052353\\",\\"type\\":10,\\"last_message_id\\":\\"1498825383712260228\\",\\"flags\\":0,\\"guild_id\\":\\"1442826208608915542\\",\\"name\\":\\"Discussion - CODE 2 - XENOTHREATH\\",\\"parent_id\\":\\"1495861309625991251\\",\\"rate_limit_per_user\\":0,\\"owner_id\\":\\"1425806219305681018\\",\\"thread_metadata\\":{\\"archived\\":false,\\"archive_timestamp\\":\\"2026-04-28T23:16:58.298452+00:00\\",\\"auto_archive_duration\\":1440,\\"locked\\":false,\\"create_timestamp\\":\\"2026-04-28T23:16:58.298452+00:00\\"},\\"message_count\\":0,\\"member_count\\":1,\\"total_message_sent\\":0,\\"member\\":{\\"id\\":\\"1498825381854052353\\",\\"user_id\\":\\"1425806219305681018\\",\\"join_timestamp\\":\\"2026-04-28T23:16:58.299219+00:00\\",\\"flags\\":1,\\"muted\\":false,\\"mute_config\\":null}}\n\"}]}}','1','admin','2026-04-28 23:16:58'), -('16','3',NULL,'bvc xb','bvcbcbcb','{\"embeds\":[{\"description\":\"bvcbcbcb\",\"color\":6272757,\"title\":\"bvc xb\",\"image\":{\"url\":\"http://www.fdsfds.fr/img.png\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]}}','{\"webhook\":{\"success\":true,\"http_code\":200,\"response\":\"{\\"type\\":0,\\"content\\":\\"@everyone\\",\\"mentions\\":[],\\"mention_roles\\":[],\\"attachments\\":[],\\"embeds\\":[{\\"type\\":\\"rich\\",\\"title\\":\\"bvc xb\\",\\"description\\":\\"bvcbcbcb\\",\\"color\\":6272757,\\"image\\":{\\"url\\":\\"http://www.fdsfds.fr/img.png\\",\\"proxy_url\\":\\"https://images-ext-1.discordapp.net/external/uPRyoUOXYT2D003II0XN-4YIv2s6kwzkllRiUkHIatM/http/www.fdsfds.fr/img.png\\",\\"width\\":0,\\"height\\":0,\\"flags\\":0},\\"footer\\":{\\"text\\":\\"R.E.A.C.T Initiative\\"},\\"content_scan_version\\":4}],\\"timestamp\\":\\"2026-04-29T07:05:21.215000+00:00\\",\\"edited_timestamp\\":null,\\"flags\\":0,\\"components\\":[],\\"id\\":\\"1498943255856021565\\",\\"channel_id\\":\\"1495861309625991251\\",\\"author\\":{\\"id\\":\\"1498824758307848323\\",\\"username\\":\\"R.E.A.C.T Bot\\",\\"avatar\\":\\"b3ed75620432a5c1a7ea2259ded06029\\",\\"discriminator\\":\\"0000\\",\\"public_flags\\":0,\\"flags\\":0,\\"bot\\":true,\\"global_name\\":null,\\"clan\\":null,\\"primary_guild\\":null},\\"pinned\\":false,\\"mention_everyone\\":true,\\"tts\\":false,\\"webhook_id\\":\\"1498824758307848323\\"}\n\"},\"bot_actions\":{\"success\":true,\"http_code\":200,\"response\":\"[{\\"action\\":\\"thread\\",\\"success\\":true,\\"http_code\\":201,\\"response\\":\\"{\\\\"id\\\\":\\\\"1498943255856021565\\\\",\\\\"type\\\\":10,\\\\"last_message_id\\\\":\\\\"1498943258091458671\\\\",\\\\"flags\\\\":0,\\\\"guild_id\\\\":\\\\"1442826208608915542\\\\",\\\\"name\\\\":\\\\"Discussion - bvc xb\\\\",\\\\"parent_id\\\\":\\\\"1495861309625991251\\\\",\\\\"rate_limit_per_user\\\\":0,\\\\"owner_id\\\\":\\\\"1425806219305681018\\\\",\\\\"thread_metadata\\\\":{\\\\"archived\\\\":false,\\\\"archive_timestamp\\\\":\\\\"2026-04-29T07:05:21.740971+00:00\\\\",\\\\"auto_archive_duration\\\\":1440,\\\\"locked\\\\":false,\\\\"create_timestamp\\\\":\\\\"2026-04-29T07:05:21.740971+00:00\\\\"},\\\\"message_count\\\\":0,\\\\"member_count\\\\":1,\\\\"total_message_sent\\\\":0,\\\\"member\\\\":{\\\\"id\\\\":\\\\"1498943255856021565\\\\",\\\\"user_id\\\\":\\\\"1425806219305681018\\\\",\\\\"join_timestamp\\\\":\\\\"2026-04-29T07:05:21.741995+00:00\\\\",\\\\"flags\\\\":1,\\\\"muted\\\\":false,\\\\"mute_config\\\\":null}}\\n\\"}]\",\"details\":[{\"action\":\"thread\",\"success\":true,\"http_code\":201,\"response\":\"{\\"id\\":\\"1498943255856021565\\",\\"type\\":10,\\"last_message_id\\":\\"1498943258091458671\\",\\"flags\\":0,\\"guild_id\\":\\"1442826208608915542\\",\\"name\\":\\"Discussion - bvc xb\\",\\"parent_id\\":\\"1495861309625991251\\",\\"rate_limit_per_user\\":0,\\"owner_id\\":\\"1425806219305681018\\",\\"thread_metadata\\":{\\"archived\\":false,\\"archive_timestamp\\":\\"2026-04-29T07:05:21.740971+00:00\\",\\"auto_archive_duration\\":1440,\\"locked\\":false,\\"create_timestamp\\":\\"2026-04-29T07:05:21.740971+00:00\\"},\\"message_count\\":0,\\"member_count\\":1,\\"total_message_sent\\":0,\\"member\\":{\\"id\\":\\"1498943255856021565\\",\\"user_id\\":\\"1425806219305681018\\",\\"join_timestamp\\":\\"2026-04-29T07:05:21.741995+00:00\\",\\"flags\\":1,\\"muted\\":false,\\"mute_config\\":null}}\n\"}]}}','1','admin','2026-04-29 07:05:21'), -('17','2',NULL,'ukjhhjkhjkhjkhjkjhjhkhj','k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd','{\"embeds\":[{\"description\":\"k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd\",\"color\":16756224,\"title\":\"ukjhhjkhjkhjkhjkjhjhkhj\",\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]}}','{\"webhook\":{\"success\":true,\"http_code\":200,\"response\":\"{\\"type\\":0,\\"content\\":\\"@everyone\\",\\"mentions\\":[],\\"mention_roles\\":[],\\"attachments\\":[],\\"embeds\\":[{\\"type\\":\\"rich\\",\\"title\\":\\"ukjhhjkhjkhjkhjkjhjhkhj\\",\\"description\\":\\"k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd\\",\\"color\\":16756224,\\"image\\":{\\"url\\":\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69f29e38&is=69f14cb8&hm=87220ca1824a6775e588ae970ae35eb4e956a0b233ef8ae79a7ea871e2630886&format=webp&quality=lossless&\\",\\"proxy_url\\":\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69f29e38&is=69f14cb8&hm=87220ca1824a6775e588ae970ae35eb4e956a0b233ef8ae79a7ea871e2630886&\\",\\"width\\":0,\\"height\\":0,\\"flags\\":0},\\"footer\\":{\\"text\\":\\"R.E.A.C.T Initiative\\"},\\"content_scan_version\\":4}],\\"timestamp\\":\\"2026-04-29T07:05:48.279000+00:00\\",\\"edited_timestamp\\":null,\\"flags\\":0,\\"components\\":[],\\"id\\":\\"1498943369370665052\\",\\"channel_id\\":\\"1491083003672269050\\",\\"author\\":{\\"id\\":\\"1491610094507397192\\",\\"username\\":\\"R.E.A.C.T Bot\\",\\"avatar\\":\\"b3ed75620432a5c1a7ea2259ded06029\\",\\"discriminator\\":\\"0000\\",\\"public_flags\\":0,\\"flags\\":0,\\"bot\\":true,\\"global_name\\":null,\\"clan\\":null,\\"primary_guild\\":null},\\"pinned\\":false,\\"mention_everyone\\":true,\\"tts\\":false,\\"webhook_id\\":\\"1491610094507397192\\"}\n\"},\"bot_actions\":{\"success\":true,\"http_code\":200,\"response\":\"[{\\"action\\":\\"thread\\",\\"success\\":true,\\"http_code\\":201,\\"response\\":\\"{\\\\"id\\\\":\\\\"1498943369370665052\\\\",\\\\"type\\\\":10,\\\\"last_message_id\\\\":\\\\"1498943371572412527\\\\",\\\\"flags\\\\":0,\\\\"guild_id\\\\":\\\\"1442826208608915542\\\\",\\\\"name\\\\":\\\\"Discussion - ukjhhjkhjkhjkhjkjhjhkhj\\\\",\\\\"parent_id\\\\":\\\\"1491083003672269050\\\\",\\\\"rate_limit_per_user\\\\":0,\\\\"owner_id\\\\":\\\\"1425806219305681018\\\\",\\\\"thread_metadata\\\\":{\\\\"archived\\\\":false,\\\\"archive_timestamp\\\\":\\\\"2026-04-29T07:05:48.793155+00:00\\\\",\\\\"auto_archive_duration\\\\":1440,\\\\"locked\\\\":false,\\\\"create_timestamp\\\\":\\\\"2026-04-29T07:05:48.793155+00:00\\\\"},\\\\"message_count\\\\":0,\\\\"member_count\\\\":1,\\\\"total_message_sent\\\\":0,\\\\"member\\\\":{\\\\"id\\\\":\\\\"1498943369370665052\\\\",\\\\"user_id\\\\":\\\\"1425806219305681018\\\\",\\\\"join_timestamp\\\\":\\\\"2026-04-29T07:05:48.794373+00:00\\\\",\\\\"flags\\\\":1,\\\\"muted\\\\":false,\\\\"mute_config\\\\":null}}\\n\\"}]\",\"details\":[{\"action\":\"thread\",\"success\":true,\"http_code\":201,\"response\":\"{\\"id\\":\\"1498943369370665052\\",\\"type\\":10,\\"last_message_id\\":\\"1498943371572412527\\",\\"flags\\":0,\\"guild_id\\":\\"1442826208608915542\\",\\"name\\":\\"Discussion - ukjhhjkhjkhjkhjkjhjhkhj\\",\\"parent_id\\":\\"1491083003672269050\\",\\"rate_limit_per_user\\":0,\\"owner_id\\":\\"1425806219305681018\\",\\"thread_metadata\\":{\\"archived\\":false,\\"archive_timestamp\\":\\"2026-04-29T07:05:48.793155+00:00\\",\\"auto_archive_duration\\":1440,\\"locked\\":false,\\"create_timestamp\\":\\"2026-04-29T07:05:48.793155+00:00\\"},\\"message_count\\":0,\\"member_count\\":1,\\"total_message_sent\\":0,\\"member\\":{\\"id\\":\\"1498943369370665052\\",\\"user_id\\":\\"1425806219305681018\\",\\"join_timestamp\\":\\"2026-04-29T07:05:48.794373+00:00\\",\\"flags\\":1,\\"muted\\":false,\\"mute_config\\":null}}\n\"}]}}','1','admin','2026-04-29 07:05:48'), -('18','1',NULL,'CODE 8 - XENOTHREATH','Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla','{\"embeds\":[{\"description\":\"Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla\",\"color\":16726832,\"title\":\"CODE 8 - XENOTHREATH\",\"fields\":[{\"name\":\"Lieu de ralliement\",\"value\":\"Pouet\",\"inline\":false},{\"name\":\"Date de début\",\"value\":\"2026-04-09\",\"inline\":true},{\"name\":\"Heure de départ\",\"value\":\"21:30\",\"inline\":true},{\"name\":\"Heure de briefing\",\"value\":\"21:00\",\"inline\":true},{\"name\":\"Date de fin\",\"value\":\"2026-05-01\",\"inline\":true},{\"name\":\"Heure de fin\",\"value\":\"00:00\",\"inline\":true},{\"name\":\"Canal Discord\",\"value\":\"[Ouvrir le canal](https://discord.com/channels/fgdsfsdhgfg)\",\"inline\":false},{\"name\":\"Inventaire A.R.I.A\",\"value\":\"[Consulter l’inventaire](https://aria.blackops-agency.fr/j;lhjhdgkdghdgk)\",\"inline\":false},{\"name\":\"Source\",\"value\":\"[Ouvrir la source](https://sc-react-9189.dev.flatlogic.app/)\",\"inline\":false}],\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]}}','{\"webhook\":{\"success\":true,\"http_code\":200,\"response\":\"{\\"type\\":0,\\"content\\":\\"@everyone\\",\\"mentions\\":[],\\"mention_roles\\":[],\\"attachments\\":[],\\"embeds\\":[{\\"type\\":\\"rich\\",\\"title\\":\\"CODE 8 - XENOTHREATH\\",\\"description\\":\\"Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla\\",\\"color\\":16726832,\\"fields\\":[{\\"name\\":\\"Lieu de ralliement\\",\\"value\\":\\"Pouet\\",\\"inline\\":false},{\\"name\\":\\"Date de d\\u00e9but\\",\\"value\\":\\"2026-04-09\\",\\"inline\\":true},{\\"name\\":\\"Heure de d\\u00e9part\\",\\"value\\":\\"21:30\\",\\"inline\\":true},{\\"name\\":\\"Heure de briefing\\",\\"value\\":\\"21:00\\",\\"inline\\":true},{\\"name\\":\\"Date de fin\\",\\"value\\":\\"2026-05-01\\",\\"inline\\":true},{\\"name\\":\\"Heure de fin\\",\\"value\\":\\"00:00\\",\\"inline\\":true},{\\"name\\":\\"Canal Discord\\",\\"value\\":\\"[Ouvrir le canal](https://discord.com/channels/fgdsfsdhgfg)\\",\\"inline\\":false},{\\"name\\":\\"Inventaire A.R.I.A\\",\\"value\\":\\"[Consulter l\\u2019inventaire](https://aria.blackops-agency.fr/j;lhjhdgkdghdgk)\\",\\"inline\\":false},{\\"name\\":\\"Source\\",\\"value\\":\\"[Ouvrir la source](https://sc-react-9189.dev.flatlogic.app/)\\",\\"inline\\":false}],\\"image\\":{\\"url\\":\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69f29e38&is=69f14cb8&hm=87220ca1824a6775e588ae970ae35eb4e956a0b233ef8ae79a7ea871e2630886&format=webp&quality=lossless&\\",\\"proxy_url\\":\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69f29e38&is=69f14cb8&hm=87220ca1824a6775e588ae970ae35eb4e956a0b233ef8ae79a7ea871e2630886&\\",\\"width\\":1200,\\"height\\":424,\\"content_type\\":\\"image/png\\",\\"placeholder\\":\\"DygGEoa2W0fxaGZ2AoVWA3o=\\",\\"placeholder_version\\":1,\\"flags\\":0},\\"footer\\":{\\"text\\":\\"R.E.A.C.T Initiative\\"},\\"content_scan_version\\":4}],\\"timestamp\\":\\"2026-04-29T07:07:32.974000+00:00\\",\\"edited_timestamp\\":null,\\"flags\\":0,\\"components\\":[],\\"id\\":\\"1498943808493191178\\",\\"channel_id\\":\\"1490461588996624434\\",\\"author\\":{\\"id\\":\\"1491426769440604262\\",\\"username\\":\\"R.E.A.C.T BOT\\",\\"avatar\\":\\"b3ed75620432a5c1a7ea2259ded06029\\",\\"discriminator\\":\\"0000\\",\\"public_flags\\":0,\\"flags\\":0,\\"bot\\":true,\\"global_name\\":null,\\"clan\\":null,\\"primary_guild\\":null},\\"pinned\\":false,\\"mention_everyone\\":true,\\"tts\\":false,\\"webhook_id\\":\\"1491426769440604262\\"}\n\"},\"bot_actions\":{\"success\":true,\"http_code\":200,\"response\":\"[{\\"action\\":\\"reaction\\",\\"emoji\\":\\"👍\\",\\"success\\":true,\\"http_code\\":204,\\"response\\":\\"\\"},{\\"action\\":\\"reaction\\",\\"emoji\\":\\"⌛\\",\\"success\\":true,\\"http_code\\":204,\\"response\\":\\"\\"},{\\"action\\":\\"reaction\\",\\"emoji\\":\\"❔\\",\\"success\\":true,\\"http_code\\":204,\\"response\\":\\"\\"},{\\"action\\":\\"reaction\\",\\"emoji\\":\\"👎\\",\\"success\\":true,\\"http_code\\":204,\\"response\\":\\"\\"},{\\"action\\":\\"thread\\",\\"success\\":true,\\"http_code\\":201,\\"response\\":\\"{\\\\"id\\\\":\\\\"1498943808493191178\\\\",\\\\"type\\\\":10,\\\\"last_message_id\\\\":\\\\"1498943830785916990\\\\",\\\\"flags\\\\":0,\\\\"guild_id\\\\":\\\\"1442826208608915542\\\\",\\\\"name\\\\":\\\\"Discussion - CODE 8 - XENOTHREATH \\\\u2022 Pouet \\\\u2022 2026-04-09\\\\",\\\\"parent_id\\\\":\\\\"1490461588996624434\\\\",\\\\"rate_limit_per_user\\\\":0,\\\\"owner_id\\\\":\\\\"1425806219305681018\\\\",\\\\"thread_metadata\\\\":{\\\\"archived\\\\":false,\\\\"archive_timestamp\\\\":\\\\"2026-04-29T07:07:38.279270+00:00\\\\",\\\\"auto_archive_duration\\\\":1440,\\\\"locked\\\\":false,\\\\"create_timestamp\\\\":\\\\"2026-04-29T07:07:38.279270+00:00\\\\"},\\\\"message_count\\\\":0,\\\\"member_count\\\\":1,\\\\"total_message_sent\\\\":0,\\\\"member\\\\":{\\\\"id\\\\":\\\\"1498943808493191178\\\\",\\\\"user_id\\\\":\\\\"1425806219305681018\\\\",\\\\"join_timestamp\\\\":\\\\"2026-04-29T07:07:38.280585+00:00\\\\",\\\\"flags\\\\":1,\\\\"muted\\\\":false,\\\\"mute_config\\\\":null}}\\n\\"}]\",\"details\":[{\"action\":\"reaction\",\"emoji\":\"👍\",\"success\":true,\"http_code\":204,\"response\":\"\"},{\"action\":\"reaction\",\"emoji\":\"⌛\",\"success\":true,\"http_code\":204,\"response\":\"\"},{\"action\":\"reaction\",\"emoji\":\"❔\",\"success\":true,\"http_code\":204,\"response\":\"\"},{\"action\":\"reaction\",\"emoji\":\"👎\",\"success\":true,\"http_code\":204,\"response\":\"\"},{\"action\":\"thread\",\"success\":true,\"http_code\":201,\"response\":\"{\\"id\\":\\"1498943808493191178\\",\\"type\\":10,\\"last_message_id\\":\\"1498943830785916990\\",\\"flags\\":0,\\"guild_id\\":\\"1442826208608915542\\",\\"name\\":\\"Discussion - CODE 8 - XENOTHREATH \\u2022 Pouet \\u2022 2026-04-09\\",\\"parent_id\\":\\"1490461588996624434\\",\\"rate_limit_per_user\\":0,\\"owner_id\\":\\"1425806219305681018\\",\\"thread_metadata\\":{\\"archived\\":false,\\"archive_timestamp\\":\\"2026-04-29T07:07:38.279270+00:00\\",\\"auto_archive_duration\\":1440,\\"locked\\":false,\\"create_timestamp\\":\\"2026-04-29T07:07:38.279270+00:00\\"},\\"message_count\\":0,\\"member_count\\":1,\\"total_message_sent\\":0,\\"member\\":{\\"id\\":\\"1498943808493191178\\",\\"user_id\\":\\"1425806219305681018\\",\\"join_timestamp\\":\\"2026-04-29T07:07:38.280585+00:00\\",\\"flags\\":1,\\"muted\\":false,\\"mute_config\\":null}}\n\"}]}}','1','admin','2026-04-29 07:07:38'); +-- +-- Dumping data for table `tbl_scnotifications` +-- -DROP TABLE IF EXISTS `tbl_scitemcustom`; -CREATE TABLE `tbl_scitemcustom` ( - `cl_scitemcustom_id` int(11) NOT NULL AUTO_INCREMENT, - `cl_scitemcustom_owner_auth_id` int(10) unsigned DEFAULT NULL, - `cl_scitemcustom_obj_id` int(10) unsigned NOT NULL, - `cl_scitemcustom_created_at` datetime NOT NULL DEFAULT current_timestamp(), - PRIMARY KEY (`cl_scitemcustom_id`), - UNIQUE KEY `uq_scitemcustom_owner_obj` (`cl_scitemcustom_owner_auth_id`,`cl_scitemcustom_obj_id`), - KEY `idx_scitemcustom_obj` (`cl_scitemcustom_obj_id`), - KEY `idx_scitemcustom_owner` (`cl_scitemcustom_owner_auth_id`), - CONSTRAINT `fk_scitemcustom_obj` FOREIGN KEY (`cl_scitemcustom_obj_id`) REFERENCES `tbl_scobjs` (`cl_scobjs_id`) ON DELETE CASCADE ON UPDATE CASCADE, - CONSTRAINT `fk_scitemcustom_owner_auth` FOREIGN KEY (`cl_scitemcustom_owner_auth_id`) REFERENCES `tbl_auth` (`cl_auth_id`) ON DELETE CASCADE ON UPDATE CASCADE +LOCK TABLES `tbl_scnotifications` WRITE; +/*!40000 ALTER TABLE `tbl_scnotifications` DISABLE KEYS */; +INSERT INTO `tbl_scnotifications` VALUES +(1,1,NULL,'Diag test','Test diagnostic envoi Discord','{\"embeds\":[{\"description\":\"Test diagnostic envoi Discord\",\"color\":16756224,\"title\":\"Diag test\"}]}','{\"type\":0,\"content\":\"\",\"mentions\":[],\"mention_roles\":[],\"attachments\":[],\"embeds\":[{\"type\":\"rich\",\"title\":\"Diag test\",\"description\":\"Test diagnostic envoi Discord\",\"color\":16756224,\"content_scan_version\":0}],\"timestamp\":\"2026-04-08T23:04:29.056000+00:00\",\"edited_timestamp\":null,\"flags\":0,\"components\":[],\"id\":\"1491574483817857106\",\"channel_id\":\"1490461588996624434\",\"author\":{\"id\":\"1491426769440604262\",\"username\":\"R.E.A.C.T BOT\",\"avatar\":null,\"discriminator\":\"0000\",\"public_flags\":0,\"flags\":0,\"bot\":true,\"global_name\":null,\"clan\":null,\"primary_guild\":null},\"pinned\":false,\"mention_everyone\":false,\"tts\":false,\"webhook_id\":\"1491426769440604262\"}\n',1,'admin','2026-04-08 23:04:29'), +(2,1,NULL,'Diag WWW','Test diagnostic via www-data','{\"embeds\":[{\"description\":\"Test diagnostic via www-data\",\"color\":16756224,\"title\":\"Diag WWW\"}]}','{\"type\":0,\"content\":\"\",\"mentions\":[],\"mention_roles\":[],\"attachments\":[],\"embeds\":[{\"type\":\"rich\",\"title\":\"Diag WWW\",\"description\":\"Test diagnostic via www-data\",\"color\":16756224,\"content_scan_version\":0}],\"timestamp\":\"2026-04-08T23:04:51.479000+00:00\",\"edited_timestamp\":null,\"flags\":0,\"components\":[],\"id\":\"1491574577866997832\",\"channel_id\":\"1490461588996624434\",\"author\":{\"id\":\"1491426769440604262\",\"username\":\"R.E.A.C.T BOT\",\"avatar\":null,\"discriminator\":\"0000\",\"public_flags\":0,\"flags\":0,\"bot\":true,\"global_name\":null,\"clan\":null,\"primary_guild\":null},\"pinned\":false,\"mention_everyone\":false,\"tts\":false,\"webhook_id\":\"1491426769440604262\"}\n',1,'admin','2026-04-08 23:04:51'), +(3,1,NULL,'Validation runtime mbstring','Test apres redemarrage PM2 pour verifier la disparition du HTTP 500.','{\"embeds\":[{\"description\":\"Test apres redemarrage PM2 pour verifier la disparition du HTTP 500.\",\"color\":16756224,\"title\":\"Validation runtime mbstring\"}]}','{\"type\":0,\"content\":\"\",\"mentions\":[],\"mention_roles\":[],\"attachments\":[],\"embeds\":[{\"type\":\"rich\",\"title\":\"Validation runtime mbstring\",\"description\":\"Test apres redemarrage PM2 pour verifier la disparition du HTTP 500.\",\"color\":16756224,\"content_scan_version\":0}],\"timestamp\":\"2026-04-08T23:14:57.972000+00:00\",\"edited_timestamp\":null,\"flags\":0,\"components\":[],\"id\":\"1491577121682751680\",\"channel_id\":\"1490461588996624434\",\"author\":{\"id\":\"1491426769440604262\",\"username\":\"R.E.A.C.T BOT\",\"avatar\":null,\"discriminator\":\"0000\",\"public_flags\":0,\"flags\":0,\"bot\":true,\"global_name\":null,\"clan\":null,\"primary_guild\":null},\"pinned\":false,\"mention_everyone\":false,\"tts\":false,\"webhook_id\":\"1491426769440604262\"}\n',1,'admin','2026-04-08 23:14:58'), +(4,1,NULL,'Validation runtime mbstring','Test apres redemarrage PM2 pour verifier la disparition du HTTP 500.','{\"embeds\":[{\"description\":\"Test apres redemarrage PM2 pour verifier la disparition du HTTP 500.\",\"color\":16756224,\"title\":\"Validation runtime mbstring\"}]}','{\"type\":0,\"content\":\"\",\"mentions\":[],\"mention_roles\":[],\"attachments\":[],\"embeds\":[{\"type\":\"rich\",\"title\":\"Validation runtime mbstring\",\"description\":\"Test apres redemarrage PM2 pour verifier la disparition du HTTP 500.\",\"color\":16756224,\"content_scan_version\":0}],\"timestamp\":\"2026-04-08T23:15:09.353000+00:00\",\"edited_timestamp\":null,\"flags\":0,\"components\":[],\"id\":\"1491577169418391602\",\"channel_id\":\"1490461588996624434\",\"author\":{\"id\":\"1491426769440604262\",\"username\":\"R.E.A.C.T BOT\",\"avatar\":null,\"discriminator\":\"0000\",\"public_flags\":0,\"flags\":0,\"bot\":true,\"global_name\":null,\"clan\":null,\"primary_guild\":null},\"pinned\":false,\"mention_everyone\":false,\"tts\":false,\"webhook_id\":\"1491426769440604262\"}\n',1,'admin','2026-04-08 23:15:09'), +(5,1,1,'Titre de etst','bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla','{\"embeds\":[{\"description\":\"bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla\",\"color\":16726832,\"title\":\"Titre de etst\",\"fields\":[{\"name\":\"Réactions\",\"value\":\"👍 / ⏳ / ❓ / 👎\",\"inline\":false},{\"name\":\"Fil de discussion\",\"value\":\"Le webhook sélectionné n’est pas de type forum.\",\"inline\":false}],\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]}}','{\"type\":0,\"content\":\"@everyone\",\"mentions\":[],\"mention_roles\":[],\"attachments\":[],\"embeds\":[{\"type\":\"rich\",\"title\":\"Titre de etst\",\"description\":\"bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla\",\"color\":16726832,\"fields\":[{\"name\":\"R\\u00e9actions\",\"value\":\"\\ud83d\\udc4d / \\u23f3 / \\u2753 / \\ud83d\\udc4e\",\"inline\":false},{\"name\":\"Fil de discussion\",\"value\":\"Le webhook s\\u00e9lectionn\\u00e9 n\\u2019est pas de type forum.\",\"inline\":false}],\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&format=webp&quality=lossless&\",\"proxy_url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&\",\"width\":1200,\"height\":424,\"content_type\":\"image/png\",\"placeholder\":\"DygGEoa2W0fxaGZ2AoVWA3o=\",\"placeholder_version\":1,\"flags\":0},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"},\"content_scan_version\":4}],\"timestamp\":\"2026-04-08T23:17:20.353000+00:00\",\"edited_timestamp\":null,\"flags\":0,\"components\":[],\"id\":\"1491577718872211486\",\"channel_id\":\"1490461588996624434\",\"author\":{\"id\":\"1491426769440604262\",\"username\":\"R.E.A.C.T BOT\",\"avatar\":null,\"discriminator\":\"0000\",\"public_flags\":0,\"flags\":0,\"bot\":true,\"global_name\":null,\"clan\":null,\"primary_guild\":null},\"pinned\":false,\"mention_everyone\":true,\"tts\":false,\"webhook_id\":\"1491426769440604262\"}\n',1,'admin','2026-04-08 23:17:20'), +(6,1,1,'Titre de etst','Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès.','{\"embeds\":[{\"description\":\"Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès.\",\"color\":16726832,\"title\":\"Titre de etst\",\"fields\":[{\"name\":\"Lieu de ralliement\",\"value\":\"Pyro\",\"inline\":false},{\"name\":\"Date de début\",\"value\":\"2026-04-10\",\"inline\":true},{\"name\":\"Heure de départ\",\"value\":\"21:30\",\"inline\":true},{\"name\":\"Heure de briefing\",\"value\":\"21:00\",\"inline\":true},{\"name\":\"Date de fin\",\"value\":\"2026-04-30\",\"inline\":true},{\"name\":\"Heure de fin\",\"value\":\"00:00\",\"inline\":true},{\"name\":\"Canal Discord\",\"value\":\"[Ouvrir le canal](https://discord.com/channels)\",\"inline\":false},{\"name\":\"Inventaire A.R.I.A\",\"value\":\"[Consulter l’inventaire](https://aria.blackops-agency.fr)\",\"inline\":false},{\"name\":\"Source\",\"value\":\"[Ouvrir la source](https://www.google.fr)\",\"inline\":false},{\"name\":\"Réactions\",\"value\":\"👍 / ⏳ / ❓ / 👎\",\"inline\":false},{\"name\":\"Fil de discussion\",\"value\":\"Le webhook sélectionné n’est pas de type forum.\",\"inline\":false}],\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@here @everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]}}','{\"type\":0,\"content\":\"@here @everyone\",\"mentions\":[],\"mention_roles\":[],\"attachments\":[],\"embeds\":[{\"type\":\"rich\",\"title\":\"Titre de etst\",\"description\":\"Notification Discord envoy\\u00e9e avec succ\\u00e8s. Notification Discord envoy\\u00e9e avec succ\\u00e8s. Notification Discord envoy\\u00e9e avec succ\\u00e8s. Notification Discord envoy\\u00e9e avec succ\\u00e8s. Notification Discord envoy\\u00e9e avec succ\\u00e8s. Notification Discord envoy\\u00e9e avec succ\\u00e8s. Notification Discord envoy\\u00e9e avec succ\\u00e8s. Notification Discord envoy\\u00e9e avec succ\\u00e8s. Notification Discord envoy\\u00e9e avec succ\\u00e8s. Notification Discord envoy\\u00e9e avec succ\\u00e8s. Notification Discord envoy\\u00e9e avec succ\\u00e8s. Notification Discord envoy\\u00e9e avec succ\\u00e8s. Notification Discord envoy\\u00e9e avec succ\\u00e8s.\",\"color\":16726832,\"fields\":[{\"name\":\"Lieu de ralliement\",\"value\":\"Pyro\",\"inline\":false},{\"name\":\"Date de d\\u00e9but\",\"value\":\"2026-04-10\",\"inline\":true},{\"name\":\"Heure de d\\u00e9part\",\"value\":\"21:30\",\"inline\":true},{\"name\":\"Heure de briefing\",\"value\":\"21:00\",\"inline\":true},{\"name\":\"Date de fin\",\"value\":\"2026-04-30\",\"inline\":true},{\"name\":\"Heure de fin\",\"value\":\"00:00\",\"inline\":true},{\"name\":\"Canal Discord\",\"value\":\"[Ouvrir le canal](https://discord.com/channels)\",\"inline\":false},{\"name\":\"Inventaire A.R.I.A\",\"value\":\"[Consulter l\\u2019inventaire](https://aria.blackops-agency.fr)\",\"inline\":false},{\"name\":\"Source\",\"value\":\"[Ouvrir la source](https://www.google.fr)\",\"inline\":false},{\"name\":\"R\\u00e9actions\",\"value\":\"\\ud83d\\udc4d / \\u23f3 / \\u2753 / \\ud83d\\udc4e\",\"inline\":false},{\"name\":\"Fil de discussion\",\"value\":\"Le webhook s\\u00e9lectionn\\u00e9 n\\u2019est pas de type forum.\",\"inline\":false}],\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&format=webp&quality=lossless&\",\"proxy_url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&\",\"width\":1200,\"height\":424,\"content_type\":\"image/png\",\"placeholder\":\"DygGEoa2W0fxaGZ2AoVWA3o=\",\"placeholder_version\":1,\"flags\":0},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"},\"content_scan_version\":4}],\"timestamp\":\"2026-04-08T23:19:08.181000+00:00\",\"edited_timestamp\":null,\"flags\":0,\"components\":[],\"id\":\"1491578171135365320\",\"channel_id\":\"1490461588996624434\",\"author\":{\"id\":\"1491426769440604262\",\"username\":\"R.E.A.C.T BOT\",\"avatar\":null,\"discriminator\":\"0000\",\"public_flags\":0,\"flags\":0,\"bot\":true,\"global_name\":null,\"clan\":null,\"primary_guild\":null},\"pinned\":false,\"mention_everyone\":true,\"tts\":false,\"webhook_id\":\"1491426769440604262\"}\n',1,'admin','2026-04-08 23:19:08'), +(7,1,1,'Titre de etst','Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès.','{\"embeds\":[{\"description\":\"Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès.\",\"color\":16726832,\"title\":\"Titre de etst\",\"fields\":[{\"name\":\"Réactions\",\"value\":\"👍 / ⏳ / ❓ / 👎\",\"inline\":false}],\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]},\"thread_name\":\"Titre de etst\"}','{\"message\": \"Webhooks can only create threads in forum channels\", \"code\": 220003}',0,'admin','2026-04-08 23:20:00'), +(8,1,1,'Titre de etst','Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès.','{\"embeds\":[{\"description\":\"Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès. Notification Discord envoyée avec succès.\",\"color\":16726832,\"title\":\"Titre de etst\",\"fields\":[{\"name\":\"Réactions\",\"value\":\"👍 / ⏳ / ❓ / 👎\",\"inline\":false}],\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@here @everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]},\"thread_name\":\"Titre de etst\"}','{\"message\": \"Webhooks can only create threads in forum channels\", \"code\": 220003}',0,'admin','2026-04-08 23:20:20'), +(9,1,1,'Titre de etst','SC WebhookSC WebhookSC WebhookSC WebhookSC Webhook','{\"embeds\":[{\"description\":\"SC WebhookSC WebhookSC WebhookSC WebhookSC Webhook\",\"color\":16726832,\"title\":\"Titre de etst\",\"fields\":[{\"name\":\"Réactions\",\"value\":\"👍 / ⏳ / ❓ / 👎\",\"inline\":false},{\"name\":\"Fil de discussion\",\"value\":\"Le webhook sélectionné n’est pas de type forum.\",\"inline\":false}],\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@here @everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]}}','{\"type\":0,\"content\":\"@here @everyone\",\"mentions\":[],\"mention_roles\":[],\"attachments\":[],\"embeds\":[{\"type\":\"rich\",\"title\":\"Titre de etst\",\"description\":\"SC WebhookSC WebhookSC WebhookSC WebhookSC Webhook\",\"color\":16726832,\"fields\":[{\"name\":\"R\\u00e9actions\",\"value\":\"\\ud83d\\udc4d / \\u23f3 / \\u2753 / \\ud83d\\udc4e\",\"inline\":false},{\"name\":\"Fil de discussion\",\"value\":\"Le webhook s\\u00e9lectionn\\u00e9 n\\u2019est pas de type forum.\",\"inline\":false}],\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&format=webp&quality=lossless&\",\"proxy_url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&\",\"width\":1200,\"height\":424,\"content_type\":\"image/png\",\"placeholder\":\"DygGEoa2W0fxaGZ2AoVWA3o=\",\"placeholder_version\":1,\"flags\":0},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"},\"content_scan_version\":4}],\"timestamp\":\"2026-04-08T23:24:27.504000+00:00\",\"edited_timestamp\":null,\"flags\":0,\"components\":[],\"id\":\"1491579510473101422\",\"channel_id\":\"1490461588996624434\",\"author\":{\"id\":\"1491426769440604262\",\"username\":\"R.E.A.C.T BOT\",\"avatar\":null,\"discriminator\":\"0000\",\"public_flags\":0,\"flags\":0,\"bot\":true,\"global_name\":null,\"clan\":null,\"primary_guild\":null},\"pinned\":false,\"mention_everyone\":true,\"tts\":false,\"webhook_id\":\"1491426769440604262\"}\n',1,'admin','2026-04-08 23:24:27'), +(10,1,1,'Titre de etst','454654','{\"embeds\":[{\"description\":\"454654\",\"color\":16726832,\"title\":\"Titre de etst\",\"fields\":[{\"name\":\"Réactions\",\"value\":\"👍 / ⏳ / ❓ / 👎\",\"inline\":false}],\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]},\"thread_name\":\"Titre de etst\"}','{\"message\": \"Webhooks can only create threads in forum channels\", \"code\": 220003}',0,'admin','2026-04-08 23:50:36'), +(11,1,1,'Titre de etst','sdqf g dgfd','{\"embeds\":[{\"description\":\"sdqf g dgfd\",\"color\":16726832,\"title\":\"Titre de etst\",\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@here @everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]}}','{\"webhook\":{\"success\":true,\"http_code\":200,\"response\":\"{\\\"type\\\":0,\\\"content\\\":\\\"@here @everyone\\\",\\\"mentions\\\":[],\\\"mention_roles\\\":[],\\\"attachments\\\":[],\\\"embeds\\\":[{\\\"type\\\":\\\"rich\\\",\\\"title\\\":\\\"Titre de etst\\\",\\\"description\\\":\\\"sdqf g dgfd\\\",\\\"color\\\":16726832,\\\"image\\\":{\\\"url\\\":\\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d84038&is=69d6eeb8&hm=1169623690b3ac15ddf60fc9d26ac84b41d1200e8e4939265fae57393a155e2c&format=webp&quality=lossless&\\\",\\\"proxy_url\\\":\\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d84038&is=69d6eeb8&hm=1169623690b3ac15ddf60fc9d26ac84b41d1200e8e4939265fae57393a155e2c&\\\",\\\"width\\\":1200,\\\"height\\\":424,\\\"content_type\\\":\\\"image/png\\\",\\\"placeholder\\\":\\\"DygGEoa2W0fxaGZ2AoVWA3o=\\\",\\\"placeholder_version\\\":1,\\\"flags\\\":0},\\\"footer\\\":{\\\"text\\\":\\\"R.E.A.C.T Initiative\\\"},\\\"content_scan_version\\\":4}],\\\"timestamp\\\":\\\"2026-04-09T00:12:52.942000+00:00\\\",\\\"edited_timestamp\\\":null,\\\"flags\\\":0,\\\"components\\\":[],\\\"id\\\":\\\"1491591696763453672\\\",\\\"channel_id\\\":\\\"1490461588996624434\\\",\\\"author\\\":{\\\"id\\\":\\\"1491426769440604262\\\",\\\"username\\\":\\\"R.E.A.C.T BOT\\\",\\\"avatar\\\":null,\\\"discriminator\\\":\\\"0000\\\",\\\"public_flags\\\":0,\\\"flags\\\":0,\\\"bot\\\":true,\\\"global_name\\\":null,\\\"clan\\\":null,\\\"primary_guild\\\":null},\\\"pinned\\\":false,\\\"mention_everyone\\\":true,\\\"tts\\\":false,\\\"webhook_id\\\":\\\"1491426769440604262\\\"}\\n\"},\"bot_actions\":{\"success\":false,\"http_code\":403,\"response\":\"[{\\\"action\\\":\\\"reaction\\\",\\\"emoji\\\":\\\"👍\\\",\\\"success\\\":false,\\\"http_code\\\":403,\\\"response\\\":\\\"{\\\\\\\"message\\\\\\\": \\\\\\\"Missing Access\\\\\\\", \\\\\\\"code\\\\\\\": 50001}\\\"}]\",\"details\":[{\"action\":\"reaction\",\"emoji\":\"👍\",\"success\":false,\"http_code\":403,\"response\":\"{\\\"message\\\": \\\"Missing Access\\\", \\\"code\\\": 50001}\"}]}}',0,'admin','2026-04-09 00:12:53'), +(12,1,1,'Titre de etst','fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd','{\"embeds\":[{\"description\":\"fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd\",\"color\":16726832,\"title\":\"Titre de etst\",\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]}}','{\"webhook\":{\"success\":true,\"http_code\":200,\"response\":\"{\\\"type\\\":0,\\\"content\\\":\\\"@everyone\\\",\\\"mentions\\\":[],\\\"mention_roles\\\":[],\\\"attachments\\\":[],\\\"embeds\\\":[{\\\"type\\\":\\\"rich\\\",\\\"title\\\":\\\"Titre de etst\\\",\\\"description\\\":\\\"fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd fffsf sdf sd\\\",\\\"color\\\":16726832,\\\"image\\\":{\\\"url\\\":\\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d84038&is=69d6eeb8&hm=1169623690b3ac15ddf60fc9d26ac84b41d1200e8e4939265fae57393a155e2c&format=webp&quality=lossless&\\\",\\\"proxy_url\\\":\\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d84038&is=69d6eeb8&hm=1169623690b3ac15ddf60fc9d26ac84b41d1200e8e4939265fae57393a155e2c&\\\",\\\"width\\\":1200,\\\"height\\\":424,\\\"content_type\\\":\\\"image/png\\\",\\\"placeholder\\\":\\\"DygGEoa2W0fxaGZ2AoVWA3o=\\\",\\\"placeholder_version\\\":1,\\\"flags\\\":0},\\\"footer\\\":{\\\"text\\\":\\\"R.E.A.C.T Initiative\\\"},\\\"content_scan_version\\\":4}],\\\"timestamp\\\":\\\"2026-04-09T01:04:11.992000+00:00\\\",\\\"edited_timestamp\\\":null,\\\"flags\\\":0,\\\"components\\\":[],\\\"id\\\":\\\"1491604611235053582\\\",\\\"channel_id\\\":\\\"1490461588996624434\\\",\\\"author\\\":{\\\"id\\\":\\\"1491426769440604262\\\",\\\"username\\\":\\\"R.E.A.C.T BOT\\\",\\\"avatar\\\":null,\\\"discriminator\\\":\\\"0000\\\",\\\"public_flags\\\":0,\\\"flags\\\":0,\\\"bot\\\":true,\\\"global_name\\\":null,\\\"clan\\\":null,\\\"primary_guild\\\":null},\\\"pinned\\\":false,\\\"mention_everyone\\\":true,\\\"tts\\\":false,\\\"webhook_id\\\":\\\"1491426769440604262\\\"}\\n\"},\"bot_actions\":{\"success\":false,\"http_code\":403,\"response\":\"[{\\\"action\\\":\\\"reaction\\\",\\\"emoji\\\":\\\"👍\\\",\\\"success\\\":false,\\\"http_code\\\":403,\\\"response\\\":\\\"{\\\\\\\"message\\\\\\\": \\\\\\\"Missing Access\\\\\\\", \\\\\\\"code\\\\\\\": 50001}\\\"},{\\\"action\\\":\\\"reaction\\\",\\\"emoji\\\":\\\"⌛\\\",\\\"success\\\":false,\\\"http_code\\\":403,\\\"response\\\":\\\"{\\\\\\\"message\\\\\\\": \\\\\\\"Missing Access\\\\\\\", \\\\\\\"code\\\\\\\": 50001}\\\"},{\\\"action\\\":\\\"reaction\\\",\\\"emoji\\\":\\\"❔\\\",\\\"success\\\":false,\\\"http_code\\\":403,\\\"response\\\":\\\"{\\\\\\\"message\\\\\\\": \\\\\\\"Missing Access\\\\\\\", \\\\\\\"code\\\\\\\": 50001}\\\"},{\\\"action\\\":\\\"reaction\\\",\\\"emoji\\\":\\\"👎\\\",\\\"success\\\":false,\\\"http_code\\\":403,\\\"response\\\":\\\"{\\\\\\\"message\\\\\\\": \\\\\\\"Missing Access\\\\\\\", \\\\\\\"code\\\\\\\": 50001}\\\"},{\\\"action\\\":\\\"thread\\\",\\\"success\\\":false,\\\"http_code\\\":403,\\\"response\\\":\\\"{\\\\\\\"message\\\\\\\": \\\\\\\"Missing Access\\\\\\\", \\\\\\\"code\\\\\\\": 50001}\\\"}]\",\"details\":[{\"action\":\"reaction\",\"emoji\":\"👍\",\"success\":false,\"http_code\":403,\"response\":\"{\\\"message\\\": \\\"Missing Access\\\", \\\"code\\\": 50001}\"},{\"action\":\"reaction\",\"emoji\":\"⌛\",\"success\":false,\"http_code\":403,\"response\":\"{\\\"message\\\": \\\"Missing Access\\\", \\\"code\\\": 50001}\"},{\"action\":\"reaction\",\"emoji\":\"❔\",\"success\":false,\"http_code\":403,\"response\":\"{\\\"message\\\": \\\"Missing Access\\\", \\\"code\\\": 50001}\"},{\"action\":\"reaction\",\"emoji\":\"👎\",\"success\":false,\"http_code\":403,\"response\":\"{\\\"message\\\": \\\"Missing Access\\\", \\\"code\\\": 50001}\"},{\"action\":\"thread\",\"success\":false,\"http_code\":403,\"response\":\"{\\\"message\\\": \\\"Missing Access\\\", \\\"code\\\": 50001}\"}]}}',0,'admin','2026-04-09 01:04:17'), +(13,1,1,'Titre de etst','s fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf ds','{\"embeds\":[{\"description\":\"s fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf ds\",\"color\":16726832,\"title\":\"Titre de etst\",\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]}}','{\"webhook\":{\"success\":true,\"http_code\":200,\"response\":\"{\\\"type\\\":0,\\\"content\\\":\\\"@everyone\\\",\\\"mentions\\\":[],\\\"mention_roles\\\":[],\\\"attachments\\\":[],\\\"embeds\\\":[{\\\"type\\\":\\\"rich\\\",\\\"title\\\":\\\"Titre de etst\\\",\\\"description\\\":\\\"s fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf dss fd ssdf dsf ds\\\",\\\"color\\\":16726832,\\\"image\\\":{\\\"url\\\":\\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d84038&is=69d6eeb8&hm=1169623690b3ac15ddf60fc9d26ac84b41d1200e8e4939265fae57393a155e2c&format=webp&quality=lossless&\\\",\\\"proxy_url\\\":\\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d84038&is=69d6eeb8&hm=1169623690b3ac15ddf60fc9d26ac84b41d1200e8e4939265fae57393a155e2c&\\\",\\\"width\\\":1200,\\\"height\\\":424,\\\"content_type\\\":\\\"image/png\\\",\\\"placeholder\\\":\\\"DygGEoa2W0fxaGZ2AoVWA3o=\\\",\\\"placeholder_version\\\":1,\\\"flags\\\":0},\\\"footer\\\":{\\\"text\\\":\\\"R.E.A.C.T Initiative\\\"},\\\"content_scan_version\\\":4}],\\\"timestamp\\\":\\\"2026-04-09T01:23:53.242000+00:00\\\",\\\"edited_timestamp\\\":null,\\\"flags\\\":0,\\\"components\\\":[],\\\"id\\\":\\\"1491609565756919919\\\",\\\"channel_id\\\":\\\"1490461588996624434\\\",\\\"author\\\":{\\\"id\\\":\\\"1491426769440604262\\\",\\\"username\\\":\\\"R.E.A.C.T BOT\\\",\\\"avatar\\\":null,\\\"discriminator\\\":\\\"0000\\\",\\\"public_flags\\\":0,\\\"flags\\\":0,\\\"bot\\\":true,\\\"global_name\\\":null,\\\"clan\\\":null,\\\"primary_guild\\\":null},\\\"pinned\\\":false,\\\"mention_everyone\\\":true,\\\"tts\\\":false,\\\"webhook_id\\\":\\\"1491426769440604262\\\"}\\n\"},\"bot_actions\":{\"success\":true,\"http_code\":200,\"response\":\"[{\\\"action\\\":\\\"reaction\\\",\\\"emoji\\\":\\\"👍\\\",\\\"success\\\":true,\\\"http_code\\\":204,\\\"response\\\":\\\"\\\"},{\\\"action\\\":\\\"reaction\\\",\\\"emoji\\\":\\\"⌛\\\",\\\"success\\\":true,\\\"http_code\\\":204,\\\"response\\\":\\\"\\\"},{\\\"action\\\":\\\"reaction\\\",\\\"emoji\\\":\\\"❔\\\",\\\"success\\\":true,\\\"http_code\\\":204,\\\"response\\\":\\\"\\\"},{\\\"action\\\":\\\"reaction\\\",\\\"emoji\\\":\\\"👎\\\",\\\"success\\\":true,\\\"http_code\\\":204,\\\"response\\\":\\\"\\\"},{\\\"action\\\":\\\"thread\\\",\\\"success\\\":true,\\\"http_code\\\":201,\\\"response\\\":\\\"{\\\\\\\"id\\\\\\\":\\\\\\\"1491609565756919919\\\\\\\",\\\\\\\"type\\\\\\\":11,\\\\\\\"last_message_id\\\\\\\":\\\\\\\"1491609587130958077\\\\\\\",\\\\\\\"flags\\\\\\\":0,\\\\\\\"guild_id\\\\\\\":\\\\\\\"1442826208608915542\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Discussion - Titre de etst\\\\\\\",\\\\\\\"parent_id\\\\\\\":\\\\\\\"1490461588996624434\\\\\\\",\\\\\\\"rate_limit_per_user\\\\\\\":0,\\\\\\\"bitrate\\\\\\\":64000,\\\\\\\"user_limit\\\\\\\":0,\\\\\\\"rtc_region\\\\\\\":null,\\\\\\\"owner_id\\\\\\\":\\\\\\\"1425806219305681018\\\\\\\",\\\\\\\"thread_metadata\\\\\\\":{\\\\\\\"archived\\\\\\\":false,\\\\\\\"archive_timestamp\\\\\\\":\\\\\\\"2026-04-09T01:23:58.411536+00:00\\\\\\\",\\\\\\\"auto_archive_duration\\\\\\\":1440,\\\\\\\"locked\\\\\\\":false,\\\\\\\"create_timestamp\\\\\\\":\\\\\\\"2026-04-09T01:23:58.411536+00:00\\\\\\\"},\\\\\\\"message_count\\\\\\\":0,\\\\\\\"member_count\\\\\\\":1,\\\\\\\"total_message_sent\\\\\\\":0,\\\\\\\"member\\\\\\\":{\\\\\\\"id\\\\\\\":\\\\\\\"1491609565756919919\\\\\\\",\\\\\\\"user_id\\\\\\\":\\\\\\\"1425806219305681018\\\\\\\",\\\\\\\"join_timestamp\\\\\\\":\\\\\\\"2026-04-09T01:23:58.412586+00:00\\\\\\\",\\\\\\\"flags\\\\\\\":1,\\\\\\\"muted\\\\\\\":false,\\\\\\\"mute_config\\\\\\\":null}}\\\\n\\\"}]\",\"details\":[{\"action\":\"reaction\",\"emoji\":\"👍\",\"success\":true,\"http_code\":204,\"response\":\"\"},{\"action\":\"reaction\",\"emoji\":\"⌛\",\"success\":true,\"http_code\":204,\"response\":\"\"},{\"action\":\"reaction\",\"emoji\":\"❔\",\"success\":true,\"http_code\":204,\"response\":\"\"},{\"action\":\"reaction\",\"emoji\":\"👎\",\"success\":true,\"http_code\":204,\"response\":\"\"},{\"action\":\"thread\",\"success\":true,\"http_code\":201,\"response\":\"{\\\"id\\\":\\\"1491609565756919919\\\",\\\"type\\\":11,\\\"last_message_id\\\":\\\"1491609587130958077\\\",\\\"flags\\\":0,\\\"guild_id\\\":\\\"1442826208608915542\\\",\\\"name\\\":\\\"Discussion - Titre de etst\\\",\\\"parent_id\\\":\\\"1490461588996624434\\\",\\\"rate_limit_per_user\\\":0,\\\"bitrate\\\":64000,\\\"user_limit\\\":0,\\\"rtc_region\\\":null,\\\"owner_id\\\":\\\"1425806219305681018\\\",\\\"thread_metadata\\\":{\\\"archived\\\":false,\\\"archive_timestamp\\\":\\\"2026-04-09T01:23:58.411536+00:00\\\",\\\"auto_archive_duration\\\":1440,\\\"locked\\\":false,\\\"create_timestamp\\\":\\\"2026-04-09T01:23:58.411536+00:00\\\"},\\\"message_count\\\":0,\\\"member_count\\\":1,\\\"total_message_sent\\\":0,\\\"member\\\":{\\\"id\\\":\\\"1491609565756919919\\\",\\\"user_id\\\":\\\"1425806219305681018\\\",\\\"join_timestamp\\\":\\\"2026-04-09T01:23:58.412586+00:00\\\",\\\"flags\\\":1,\\\"muted\\\":false,\\\"mute_config\\\":null}}\\n\"}]}}',1,'admin','2026-04-09 01:23:58'), +(14,2,2,'Code 4 - Alerte modérée','fds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg x','{\"embeds\":[{\"description\":\"fds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg x\",\"color\":16756224,\"title\":\"Code 4 - Alerte modérée\",\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]}}','{\"webhook\":{\"success\":true,\"http_code\":200,\"response\":\"{\\\"type\\\":0,\\\"content\\\":\\\"@everyone\\\",\\\"mentions\\\":[],\\\"mention_roles\\\":[],\\\"attachments\\\":[],\\\"embeds\\\":[{\\\"type\\\":\\\"rich\\\",\\\"title\\\":\\\"Code 4 - Alerte mod\\\\u00e9r\\\\u00e9e\\\",\\\"description\\\":\\\"fds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg xfds dqg dfqg dghjhnfg x\\\",\\\"color\\\":16756224,\\\"image\\\":{\\\"url\\\":\\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d84038&is=69d6eeb8&hm=1169623690b3ac15ddf60fc9d26ac84b41d1200e8e4939265fae57393a155e2c&format=webp&quality=lossless&\\\",\\\"proxy_url\\\":\\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d84038&is=69d6eeb8&hm=1169623690b3ac15ddf60fc9d26ac84b41d1200e8e4939265fae57393a155e2c&\\\",\\\"width\\\":1200,\\\"height\\\":424,\\\"content_type\\\":\\\"image/png\\\",\\\"placeholder\\\":\\\"DygGEoa2W0fxaGZ2AoVWA3o=\\\",\\\"placeholder_version\\\":1,\\\"flags\\\":0},\\\"footer\\\":{\\\"text\\\":\\\"R.E.A.C.T Initiative\\\"},\\\"content_scan_version\\\":4}],\\\"timestamp\\\":\\\"2026-04-09T01:27:14.786000+00:00\\\",\\\"edited_timestamp\\\":null,\\\"flags\\\":0,\\\"components\\\":[],\\\"id\\\":\\\"1491610411093459034\\\",\\\"channel_id\\\":\\\"1491083003672269050\\\",\\\"author\\\":{\\\"id\\\":\\\"1491610094507397192\\\",\\\"username\\\":\\\"R.E.A.C.T Bot\\\",\\\"avatar\\\":null,\\\"discriminator\\\":\\\"0000\\\",\\\"public_flags\\\":0,\\\"flags\\\":0,\\\"bot\\\":true,\\\"global_name\\\":null,\\\"clan\\\":null,\\\"primary_guild\\\":null},\\\"pinned\\\":false,\\\"mention_everyone\\\":true,\\\"tts\\\":false,\\\"webhook_id\\\":\\\"1491610094507397192\\\"}\\n\"},\"bot_actions\":{\"success\":true,\"http_code\":200,\"response\":\"[{\\\"action\\\":\\\"thread\\\",\\\"success\\\":true,\\\"http_code\\\":201,\\\"response\\\":\\\"{\\\\\\\"id\\\\\\\":\\\\\\\"1491610411093459034\\\\\\\",\\\\\\\"type\\\\\\\":10,\\\\\\\"last_message_id\\\\\\\":\\\\\\\"1491610412431704184\\\\\\\",\\\\\\\"flags\\\\\\\":0,\\\\\\\"guild_id\\\\\\\":\\\\\\\"1442826208608915542\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Discussion - Code 4 - Alerte mod\\\\\\\\u00e9r\\\\\\\\u00e9e\\\\\\\",\\\\\\\"parent_id\\\\\\\":\\\\\\\"1491083003672269050\\\\\\\",\\\\\\\"rate_limit_per_user\\\\\\\":0,\\\\\\\"owner_id\\\\\\\":\\\\\\\"1425806219305681018\\\\\\\",\\\\\\\"thread_metadata\\\\\\\":{\\\\\\\"archived\\\\\\\":false,\\\\\\\"archive_timestamp\\\\\\\":\\\\\\\"2026-04-09T01:27:15.093188+00:00\\\\\\\",\\\\\\\"auto_archive_duration\\\\\\\":1440,\\\\\\\"locked\\\\\\\":false,\\\\\\\"create_timestamp\\\\\\\":\\\\\\\"2026-04-09T01:27:15.093188+00:00\\\\\\\"},\\\\\\\"message_count\\\\\\\":0,\\\\\\\"member_count\\\\\\\":1,\\\\\\\"total_message_sent\\\\\\\":0,\\\\\\\"member\\\\\\\":{\\\\\\\"id\\\\\\\":\\\\\\\"1491610411093459034\\\\\\\",\\\\\\\"user_id\\\\\\\":\\\\\\\"1425806219305681018\\\\\\\",\\\\\\\"join_timestamp\\\\\\\":\\\\\\\"2026-04-09T01:27:15.094380+00:00\\\\\\\",\\\\\\\"flags\\\\\\\":1,\\\\\\\"muted\\\\\\\":false,\\\\\\\"mute_config\\\\\\\":null}}\\\\n\\\"}]\",\"details\":[{\"action\":\"thread\",\"success\":true,\"http_code\":201,\"response\":\"{\\\"id\\\":\\\"1491610411093459034\\\",\\\"type\\\":10,\\\"last_message_id\\\":\\\"1491610412431704184\\\",\\\"flags\\\":0,\\\"guild_id\\\":\\\"1442826208608915542\\\",\\\"name\\\":\\\"Discussion - Code 4 - Alerte mod\\\\u00e9r\\\\u00e9e\\\",\\\"parent_id\\\":\\\"1491083003672269050\\\",\\\"rate_limit_per_user\\\":0,\\\"owner_id\\\":\\\"1425806219305681018\\\",\\\"thread_metadata\\\":{\\\"archived\\\":false,\\\"archive_timestamp\\\":\\\"2026-04-09T01:27:15.093188+00:00\\\",\\\"auto_archive_duration\\\":1440,\\\"locked\\\":false,\\\"create_timestamp\\\":\\\"2026-04-09T01:27:15.093188+00:00\\\"},\\\"message_count\\\":0,\\\"member_count\\\":1,\\\"total_message_sent\\\":0,\\\"member\\\":{\\\"id\\\":\\\"1491610411093459034\\\",\\\"user_id\\\":\\\"1425806219305681018\\\",\\\"join_timestamp\\\":\\\"2026-04-09T01:27:15.094380+00:00\\\",\\\"flags\\\":1,\\\"muted\\\":false,\\\"mute_config\\\":null}}\\n\"}]}}',1,'admin','2026-04-09 01:27:15'), +(15,3,3,'CODE 2 - XENOTHREATH','Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet','{\"embeds\":[{\"description\":\"Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet\",\"color\":6272757,\"title\":\"CODE 2 - XENOTHREATH\",\"image\":{\"url\":\"http://www.fdsfds.fr/img.png\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]}}','{\"webhook\":{\"success\":true,\"http_code\":200,\"response\":\"{\\\"type\\\":0,\\\"content\\\":\\\"@everyone\\\",\\\"mentions\\\":[],\\\"mention_roles\\\":[],\\\"attachments\\\":[],\\\"embeds\\\":[{\\\"type\\\":\\\"rich\\\",\\\"title\\\":\\\"CODE 2 - XENOTHREATH\\\",\\\"description\\\":\\\"Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet Pouet\\\",\\\"color\\\":6272757,\\\"image\\\":{\\\"url\\\":\\\"http://www.fdsfds.fr/img.png\\\",\\\"proxy_url\\\":\\\"https://images-ext-1.discordapp.net/external/uPRyoUOXYT2D003II0XN-4YIv2s6kwzkllRiUkHIatM/http/www.fdsfds.fr/img.png\\\",\\\"width\\\":0,\\\"height\\\":0,\\\"flags\\\":0},\\\"footer\\\":{\\\"text\\\":\\\"R.E.A.C.T Initiative\\\"},\\\"content_scan_version\\\":4}],\\\"timestamp\\\":\\\"2026-04-28T23:16:57.863000+00:00\\\",\\\"edited_timestamp\\\":null,\\\"flags\\\":0,\\\"components\\\":[],\\\"id\\\":\\\"1498825381854052353\\\",\\\"channel_id\\\":\\\"1495861309625991251\\\",\\\"author\\\":{\\\"id\\\":\\\"1498824758307848323\\\",\\\"username\\\":\\\"R.E.A.C.T Bot\\\",\\\"avatar\\\":\\\"b3ed75620432a5c1a7ea2259ded06029\\\",\\\"discriminator\\\":\\\"0000\\\",\\\"public_flags\\\":0,\\\"flags\\\":0,\\\"bot\\\":true,\\\"global_name\\\":null,\\\"clan\\\":null,\\\"primary_guild\\\":null},\\\"pinned\\\":false,\\\"mention_everyone\\\":true,\\\"tts\\\":false,\\\"webhook_id\\\":\\\"1498824758307848323\\\"}\\n\"},\"bot_actions\":{\"success\":true,\"http_code\":200,\"response\":\"[{\\\"action\\\":\\\"thread\\\",\\\"success\\\":true,\\\"http_code\\\":201,\\\"response\\\":\\\"{\\\\\\\"id\\\\\\\":\\\\\\\"1498825381854052353\\\\\\\",\\\\\\\"type\\\\\\\":10,\\\\\\\"last_message_id\\\\\\\":\\\\\\\"1498825383712260228\\\\\\\",\\\\\\\"flags\\\\\\\":0,\\\\\\\"guild_id\\\\\\\":\\\\\\\"1442826208608915542\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Discussion - CODE 2 - XENOTHREATH\\\\\\\",\\\\\\\"parent_id\\\\\\\":\\\\\\\"1495861309625991251\\\\\\\",\\\\\\\"rate_limit_per_user\\\\\\\":0,\\\\\\\"owner_id\\\\\\\":\\\\\\\"1425806219305681018\\\\\\\",\\\\\\\"thread_metadata\\\\\\\":{\\\\\\\"archived\\\\\\\":false,\\\\\\\"archive_timestamp\\\\\\\":\\\\\\\"2026-04-28T23:16:58.298452+00:00\\\\\\\",\\\\\\\"auto_archive_duration\\\\\\\":1440,\\\\\\\"locked\\\\\\\":false,\\\\\\\"create_timestamp\\\\\\\":\\\\\\\"2026-04-28T23:16:58.298452+00:00\\\\\\\"},\\\\\\\"message_count\\\\\\\":0,\\\\\\\"member_count\\\\\\\":1,\\\\\\\"total_message_sent\\\\\\\":0,\\\\\\\"member\\\\\\\":{\\\\\\\"id\\\\\\\":\\\\\\\"1498825381854052353\\\\\\\",\\\\\\\"user_id\\\\\\\":\\\\\\\"1425806219305681018\\\\\\\",\\\\\\\"join_timestamp\\\\\\\":\\\\\\\"2026-04-28T23:16:58.299219+00:00\\\\\\\",\\\\\\\"flags\\\\\\\":1,\\\\\\\"muted\\\\\\\":false,\\\\\\\"mute_config\\\\\\\":null}}\\\\n\\\"}]\",\"details\":[{\"action\":\"thread\",\"success\":true,\"http_code\":201,\"response\":\"{\\\"id\\\":\\\"1498825381854052353\\\",\\\"type\\\":10,\\\"last_message_id\\\":\\\"1498825383712260228\\\",\\\"flags\\\":0,\\\"guild_id\\\":\\\"1442826208608915542\\\",\\\"name\\\":\\\"Discussion - CODE 2 - XENOTHREATH\\\",\\\"parent_id\\\":\\\"1495861309625991251\\\",\\\"rate_limit_per_user\\\":0,\\\"owner_id\\\":\\\"1425806219305681018\\\",\\\"thread_metadata\\\":{\\\"archived\\\":false,\\\"archive_timestamp\\\":\\\"2026-04-28T23:16:58.298452+00:00\\\",\\\"auto_archive_duration\\\":1440,\\\"locked\\\":false,\\\"create_timestamp\\\":\\\"2026-04-28T23:16:58.298452+00:00\\\"},\\\"message_count\\\":0,\\\"member_count\\\":1,\\\"total_message_sent\\\":0,\\\"member\\\":{\\\"id\\\":\\\"1498825381854052353\\\",\\\"user_id\\\":\\\"1425806219305681018\\\",\\\"join_timestamp\\\":\\\"2026-04-28T23:16:58.299219+00:00\\\",\\\"flags\\\":1,\\\"muted\\\":false,\\\"mute_config\\\":null}}\\n\"}]}}',1,'admin','2026-04-28 23:16:58'), +(16,3,NULL,'bvc xb','bvcbcbcb','{\"embeds\":[{\"description\":\"bvcbcbcb\",\"color\":6272757,\"title\":\"bvc xb\",\"image\":{\"url\":\"http://www.fdsfds.fr/img.png\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]}}','{\"webhook\":{\"success\":true,\"http_code\":200,\"response\":\"{\\\"type\\\":0,\\\"content\\\":\\\"@everyone\\\",\\\"mentions\\\":[],\\\"mention_roles\\\":[],\\\"attachments\\\":[],\\\"embeds\\\":[{\\\"type\\\":\\\"rich\\\",\\\"title\\\":\\\"bvc xb\\\",\\\"description\\\":\\\"bvcbcbcb\\\",\\\"color\\\":6272757,\\\"image\\\":{\\\"url\\\":\\\"http://www.fdsfds.fr/img.png\\\",\\\"proxy_url\\\":\\\"https://images-ext-1.discordapp.net/external/uPRyoUOXYT2D003II0XN-4YIv2s6kwzkllRiUkHIatM/http/www.fdsfds.fr/img.png\\\",\\\"width\\\":0,\\\"height\\\":0,\\\"flags\\\":0},\\\"footer\\\":{\\\"text\\\":\\\"R.E.A.C.T Initiative\\\"},\\\"content_scan_version\\\":4}],\\\"timestamp\\\":\\\"2026-04-29T07:05:21.215000+00:00\\\",\\\"edited_timestamp\\\":null,\\\"flags\\\":0,\\\"components\\\":[],\\\"id\\\":\\\"1498943255856021565\\\",\\\"channel_id\\\":\\\"1495861309625991251\\\",\\\"author\\\":{\\\"id\\\":\\\"1498824758307848323\\\",\\\"username\\\":\\\"R.E.A.C.T Bot\\\",\\\"avatar\\\":\\\"b3ed75620432a5c1a7ea2259ded06029\\\",\\\"discriminator\\\":\\\"0000\\\",\\\"public_flags\\\":0,\\\"flags\\\":0,\\\"bot\\\":true,\\\"global_name\\\":null,\\\"clan\\\":null,\\\"primary_guild\\\":null},\\\"pinned\\\":false,\\\"mention_everyone\\\":true,\\\"tts\\\":false,\\\"webhook_id\\\":\\\"1498824758307848323\\\"}\\n\"},\"bot_actions\":{\"success\":true,\"http_code\":200,\"response\":\"[{\\\"action\\\":\\\"thread\\\",\\\"success\\\":true,\\\"http_code\\\":201,\\\"response\\\":\\\"{\\\\\\\"id\\\\\\\":\\\\\\\"1498943255856021565\\\\\\\",\\\\\\\"type\\\\\\\":10,\\\\\\\"last_message_id\\\\\\\":\\\\\\\"1498943258091458671\\\\\\\",\\\\\\\"flags\\\\\\\":0,\\\\\\\"guild_id\\\\\\\":\\\\\\\"1442826208608915542\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Discussion - bvc xb\\\\\\\",\\\\\\\"parent_id\\\\\\\":\\\\\\\"1495861309625991251\\\\\\\",\\\\\\\"rate_limit_per_user\\\\\\\":0,\\\\\\\"owner_id\\\\\\\":\\\\\\\"1425806219305681018\\\\\\\",\\\\\\\"thread_metadata\\\\\\\":{\\\\\\\"archived\\\\\\\":false,\\\\\\\"archive_timestamp\\\\\\\":\\\\\\\"2026-04-29T07:05:21.740971+00:00\\\\\\\",\\\\\\\"auto_archive_duration\\\\\\\":1440,\\\\\\\"locked\\\\\\\":false,\\\\\\\"create_timestamp\\\\\\\":\\\\\\\"2026-04-29T07:05:21.740971+00:00\\\\\\\"},\\\\\\\"message_count\\\\\\\":0,\\\\\\\"member_count\\\\\\\":1,\\\\\\\"total_message_sent\\\\\\\":0,\\\\\\\"member\\\\\\\":{\\\\\\\"id\\\\\\\":\\\\\\\"1498943255856021565\\\\\\\",\\\\\\\"user_id\\\\\\\":\\\\\\\"1425806219305681018\\\\\\\",\\\\\\\"join_timestamp\\\\\\\":\\\\\\\"2026-04-29T07:05:21.741995+00:00\\\\\\\",\\\\\\\"flags\\\\\\\":1,\\\\\\\"muted\\\\\\\":false,\\\\\\\"mute_config\\\\\\\":null}}\\\\n\\\"}]\",\"details\":[{\"action\":\"thread\",\"success\":true,\"http_code\":201,\"response\":\"{\\\"id\\\":\\\"1498943255856021565\\\",\\\"type\\\":10,\\\"last_message_id\\\":\\\"1498943258091458671\\\",\\\"flags\\\":0,\\\"guild_id\\\":\\\"1442826208608915542\\\",\\\"name\\\":\\\"Discussion - bvc xb\\\",\\\"parent_id\\\":\\\"1495861309625991251\\\",\\\"rate_limit_per_user\\\":0,\\\"owner_id\\\":\\\"1425806219305681018\\\",\\\"thread_metadata\\\":{\\\"archived\\\":false,\\\"archive_timestamp\\\":\\\"2026-04-29T07:05:21.740971+00:00\\\",\\\"auto_archive_duration\\\":1440,\\\"locked\\\":false,\\\"create_timestamp\\\":\\\"2026-04-29T07:05:21.740971+00:00\\\"},\\\"message_count\\\":0,\\\"member_count\\\":1,\\\"total_message_sent\\\":0,\\\"member\\\":{\\\"id\\\":\\\"1498943255856021565\\\",\\\"user_id\\\":\\\"1425806219305681018\\\",\\\"join_timestamp\\\":\\\"2026-04-29T07:05:21.741995+00:00\\\",\\\"flags\\\":1,\\\"muted\\\":false,\\\"mute_config\\\":null}}\\n\"}]}}',1,'admin','2026-04-29 07:05:21'), +(17,2,NULL,'ukjhhjkhjkhjkhjkjhjhkhj','k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd','{\"embeds\":[{\"description\":\"k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd\",\"color\":16756224,\"title\":\"ukjhhjkhjkhjkhjkjhjhkhj\",\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]}}','{\"webhook\":{\"success\":true,\"http_code\":200,\"response\":\"{\\\"type\\\":0,\\\"content\\\":\\\"@everyone\\\",\\\"mentions\\\":[],\\\"mention_roles\\\":[],\\\"attachments\\\":[],\\\"embeds\\\":[{\\\"type\\\":\\\"rich\\\",\\\"title\\\":\\\"ukjhhjkhjkhjkhjkjhjhkhj\\\",\\\"description\\\":\\\"k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd k rsydw klu ykjgf j jhgj ghd\\\",\\\"color\\\":16756224,\\\"image\\\":{\\\"url\\\":\\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69f29e38&is=69f14cb8&hm=87220ca1824a6775e588ae970ae35eb4e956a0b233ef8ae79a7ea871e2630886&format=webp&quality=lossless&\\\",\\\"proxy_url\\\":\\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69f29e38&is=69f14cb8&hm=87220ca1824a6775e588ae970ae35eb4e956a0b233ef8ae79a7ea871e2630886&\\\",\\\"width\\\":0,\\\"height\\\":0,\\\"flags\\\":0},\\\"footer\\\":{\\\"text\\\":\\\"R.E.A.C.T Initiative\\\"},\\\"content_scan_version\\\":4}],\\\"timestamp\\\":\\\"2026-04-29T07:05:48.279000+00:00\\\",\\\"edited_timestamp\\\":null,\\\"flags\\\":0,\\\"components\\\":[],\\\"id\\\":\\\"1498943369370665052\\\",\\\"channel_id\\\":\\\"1491083003672269050\\\",\\\"author\\\":{\\\"id\\\":\\\"1491610094507397192\\\",\\\"username\\\":\\\"R.E.A.C.T Bot\\\",\\\"avatar\\\":\\\"b3ed75620432a5c1a7ea2259ded06029\\\",\\\"discriminator\\\":\\\"0000\\\",\\\"public_flags\\\":0,\\\"flags\\\":0,\\\"bot\\\":true,\\\"global_name\\\":null,\\\"clan\\\":null,\\\"primary_guild\\\":null},\\\"pinned\\\":false,\\\"mention_everyone\\\":true,\\\"tts\\\":false,\\\"webhook_id\\\":\\\"1491610094507397192\\\"}\\n\"},\"bot_actions\":{\"success\":true,\"http_code\":200,\"response\":\"[{\\\"action\\\":\\\"thread\\\",\\\"success\\\":true,\\\"http_code\\\":201,\\\"response\\\":\\\"{\\\\\\\"id\\\\\\\":\\\\\\\"1498943369370665052\\\\\\\",\\\\\\\"type\\\\\\\":10,\\\\\\\"last_message_id\\\\\\\":\\\\\\\"1498943371572412527\\\\\\\",\\\\\\\"flags\\\\\\\":0,\\\\\\\"guild_id\\\\\\\":\\\\\\\"1442826208608915542\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Discussion - ukjhhjkhjkhjkhjkjhjhkhj\\\\\\\",\\\\\\\"parent_id\\\\\\\":\\\\\\\"1491083003672269050\\\\\\\",\\\\\\\"rate_limit_per_user\\\\\\\":0,\\\\\\\"owner_id\\\\\\\":\\\\\\\"1425806219305681018\\\\\\\",\\\\\\\"thread_metadata\\\\\\\":{\\\\\\\"archived\\\\\\\":false,\\\\\\\"archive_timestamp\\\\\\\":\\\\\\\"2026-04-29T07:05:48.793155+00:00\\\\\\\",\\\\\\\"auto_archive_duration\\\\\\\":1440,\\\\\\\"locked\\\\\\\":false,\\\\\\\"create_timestamp\\\\\\\":\\\\\\\"2026-04-29T07:05:48.793155+00:00\\\\\\\"},\\\\\\\"message_count\\\\\\\":0,\\\\\\\"member_count\\\\\\\":1,\\\\\\\"total_message_sent\\\\\\\":0,\\\\\\\"member\\\\\\\":{\\\\\\\"id\\\\\\\":\\\\\\\"1498943369370665052\\\\\\\",\\\\\\\"user_id\\\\\\\":\\\\\\\"1425806219305681018\\\\\\\",\\\\\\\"join_timestamp\\\\\\\":\\\\\\\"2026-04-29T07:05:48.794373+00:00\\\\\\\",\\\\\\\"flags\\\\\\\":1,\\\\\\\"muted\\\\\\\":false,\\\\\\\"mute_config\\\\\\\":null}}\\\\n\\\"}]\",\"details\":[{\"action\":\"thread\",\"success\":true,\"http_code\":201,\"response\":\"{\\\"id\\\":\\\"1498943369370665052\\\",\\\"type\\\":10,\\\"last_message_id\\\":\\\"1498943371572412527\\\",\\\"flags\\\":0,\\\"guild_id\\\":\\\"1442826208608915542\\\",\\\"name\\\":\\\"Discussion - ukjhhjkhjkhjkhjkjhjhkhj\\\",\\\"parent_id\\\":\\\"1491083003672269050\\\",\\\"rate_limit_per_user\\\":0,\\\"owner_id\\\":\\\"1425806219305681018\\\",\\\"thread_metadata\\\":{\\\"archived\\\":false,\\\"archive_timestamp\\\":\\\"2026-04-29T07:05:48.793155+00:00\\\",\\\"auto_archive_duration\\\":1440,\\\"locked\\\":false,\\\"create_timestamp\\\":\\\"2026-04-29T07:05:48.793155+00:00\\\"},\\\"message_count\\\":0,\\\"member_count\\\":1,\\\"total_message_sent\\\":0,\\\"member\\\":{\\\"id\\\":\\\"1498943369370665052\\\",\\\"user_id\\\":\\\"1425806219305681018\\\",\\\"join_timestamp\\\":\\\"2026-04-29T07:05:48.794373+00:00\\\",\\\"flags\\\":1,\\\"muted\\\":false,\\\"mute_config\\\":null}}\\n\"}]}}',1,'admin','2026-04-29 07:05:48'), +(18,1,NULL,'CODE 8 - XENOTHREATH','Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla','{\"embeds\":[{\"description\":\"Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla\",\"color\":16726832,\"title\":\"CODE 8 - XENOTHREATH\",\"fields\":[{\"name\":\"Lieu de ralliement\",\"value\":\"Pouet\",\"inline\":false},{\"name\":\"Date de début\",\"value\":\"2026-04-09\",\"inline\":true},{\"name\":\"Heure de départ\",\"value\":\"21:30\",\"inline\":true},{\"name\":\"Heure de briefing\",\"value\":\"21:00\",\"inline\":true},{\"name\":\"Date de fin\",\"value\":\"2026-05-01\",\"inline\":true},{\"name\":\"Heure de fin\",\"value\":\"00:00\",\"inline\":true},{\"name\":\"Canal Discord\",\"value\":\"[Ouvrir le canal](https://discord.com/channels/fgdsfsdhgfg)\",\"inline\":false},{\"name\":\"Inventaire A.R.I.A\",\"value\":\"[Consulter l’inventaire](https://aria.blackops-agency.fr/j;lhjhdgkdghdgk)\",\"inline\":false},{\"name\":\"Source\",\"value\":\"[Ouvrir la source](https://sc-react-9189.dev.flatlogic.app/)\",\"inline\":false}],\"image\":{\"url\":\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless\"},\"footer\":{\"text\":\"R.E.A.C.T Initiative\"}}],\"content\":\"@everyone\",\"allowed_mentions\":{\"parse\":[\"everyone\"]}}','{\"webhook\":{\"success\":true,\"http_code\":200,\"response\":\"{\\\"type\\\":0,\\\"content\\\":\\\"@everyone\\\",\\\"mentions\\\":[],\\\"mention_roles\\\":[],\\\"attachments\\\":[],\\\"embeds\\\":[{\\\"type\\\":\\\"rich\\\",\\\"title\\\":\\\"CODE 8 - XENOTHREATH\\\",\\\"description\\\":\\\"Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla Blabla Bla\\\",\\\"color\\\":16726832,\\\"fields\\\":[{\\\"name\\\":\\\"Lieu de ralliement\\\",\\\"value\\\":\\\"Pouet\\\",\\\"inline\\\":false},{\\\"name\\\":\\\"Date de d\\\\u00e9but\\\",\\\"value\\\":\\\"2026-04-09\\\",\\\"inline\\\":true},{\\\"name\\\":\\\"Heure de d\\\\u00e9part\\\",\\\"value\\\":\\\"21:30\\\",\\\"inline\\\":true},{\\\"name\\\":\\\"Heure de briefing\\\",\\\"value\\\":\\\"21:00\\\",\\\"inline\\\":true},{\\\"name\\\":\\\"Date de fin\\\",\\\"value\\\":\\\"2026-05-01\\\",\\\"inline\\\":true},{\\\"name\\\":\\\"Heure de fin\\\",\\\"value\\\":\\\"00:00\\\",\\\"inline\\\":true},{\\\"name\\\":\\\"Canal Discord\\\",\\\"value\\\":\\\"[Ouvrir le canal](https://discord.com/channels/fgdsfsdhgfg)\\\",\\\"inline\\\":false},{\\\"name\\\":\\\"Inventaire A.R.I.A\\\",\\\"value\\\":\\\"[Consulter l\\\\u2019inventaire](https://aria.blackops-agency.fr/j;lhjhdgkdghdgk)\\\",\\\"inline\\\":false},{\\\"name\\\":\\\"Source\\\",\\\"value\\\":\\\"[Ouvrir la source](https://sc-react-9189.dev.flatlogic.app/)\\\",\\\"inline\\\":false}],\\\"image\\\":{\\\"url\\\":\\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69f29e38&is=69f14cb8&hm=87220ca1824a6775e588ae970ae35eb4e956a0b233ef8ae79a7ea871e2630886&format=webp&quality=lossless&\\\",\\\"proxy_url\\\":\\\"https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69f29e38&is=69f14cb8&hm=87220ca1824a6775e588ae970ae35eb4e956a0b233ef8ae79a7ea871e2630886&\\\",\\\"width\\\":1200,\\\"height\\\":424,\\\"content_type\\\":\\\"image/png\\\",\\\"placeholder\\\":\\\"DygGEoa2W0fxaGZ2AoVWA3o=\\\",\\\"placeholder_version\\\":1,\\\"flags\\\":0},\\\"footer\\\":{\\\"text\\\":\\\"R.E.A.C.T Initiative\\\"},\\\"content_scan_version\\\":4}],\\\"timestamp\\\":\\\"2026-04-29T07:07:32.974000+00:00\\\",\\\"edited_timestamp\\\":null,\\\"flags\\\":0,\\\"components\\\":[],\\\"id\\\":\\\"1498943808493191178\\\",\\\"channel_id\\\":\\\"1490461588996624434\\\",\\\"author\\\":{\\\"id\\\":\\\"1491426769440604262\\\",\\\"username\\\":\\\"R.E.A.C.T BOT\\\",\\\"avatar\\\":\\\"b3ed75620432a5c1a7ea2259ded06029\\\",\\\"discriminator\\\":\\\"0000\\\",\\\"public_flags\\\":0,\\\"flags\\\":0,\\\"bot\\\":true,\\\"global_name\\\":null,\\\"clan\\\":null,\\\"primary_guild\\\":null},\\\"pinned\\\":false,\\\"mention_everyone\\\":true,\\\"tts\\\":false,\\\"webhook_id\\\":\\\"1491426769440604262\\\"}\\n\"},\"bot_actions\":{\"success\":true,\"http_code\":200,\"response\":\"[{\\\"action\\\":\\\"reaction\\\",\\\"emoji\\\":\\\"👍\\\",\\\"success\\\":true,\\\"http_code\\\":204,\\\"response\\\":\\\"\\\"},{\\\"action\\\":\\\"reaction\\\",\\\"emoji\\\":\\\"⌛\\\",\\\"success\\\":true,\\\"http_code\\\":204,\\\"response\\\":\\\"\\\"},{\\\"action\\\":\\\"reaction\\\",\\\"emoji\\\":\\\"❔\\\",\\\"success\\\":true,\\\"http_code\\\":204,\\\"response\\\":\\\"\\\"},{\\\"action\\\":\\\"reaction\\\",\\\"emoji\\\":\\\"👎\\\",\\\"success\\\":true,\\\"http_code\\\":204,\\\"response\\\":\\\"\\\"},{\\\"action\\\":\\\"thread\\\",\\\"success\\\":true,\\\"http_code\\\":201,\\\"response\\\":\\\"{\\\\\\\"id\\\\\\\":\\\\\\\"1498943808493191178\\\\\\\",\\\\\\\"type\\\\\\\":10,\\\\\\\"last_message_id\\\\\\\":\\\\\\\"1498943830785916990\\\\\\\",\\\\\\\"flags\\\\\\\":0,\\\\\\\"guild_id\\\\\\\":\\\\\\\"1442826208608915542\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Discussion - CODE 8 - XENOTHREATH \\\\\\\\u2022 Pouet \\\\\\\\u2022 2026-04-09\\\\\\\",\\\\\\\"parent_id\\\\\\\":\\\\\\\"1490461588996624434\\\\\\\",\\\\\\\"rate_limit_per_user\\\\\\\":0,\\\\\\\"owner_id\\\\\\\":\\\\\\\"1425806219305681018\\\\\\\",\\\\\\\"thread_metadata\\\\\\\":{\\\\\\\"archived\\\\\\\":false,\\\\\\\"archive_timestamp\\\\\\\":\\\\\\\"2026-04-29T07:07:38.279270+00:00\\\\\\\",\\\\\\\"auto_archive_duration\\\\\\\":1440,\\\\\\\"locked\\\\\\\":false,\\\\\\\"create_timestamp\\\\\\\":\\\\\\\"2026-04-29T07:07:38.279270+00:00\\\\\\\"},\\\\\\\"message_count\\\\\\\":0,\\\\\\\"member_count\\\\\\\":1,\\\\\\\"total_message_sent\\\\\\\":0,\\\\\\\"member\\\\\\\":{\\\\\\\"id\\\\\\\":\\\\\\\"1498943808493191178\\\\\\\",\\\\\\\"user_id\\\\\\\":\\\\\\\"1425806219305681018\\\\\\\",\\\\\\\"join_timestamp\\\\\\\":\\\\\\\"2026-04-29T07:07:38.280585+00:00\\\\\\\",\\\\\\\"flags\\\\\\\":1,\\\\\\\"muted\\\\\\\":false,\\\\\\\"mute_config\\\\\\\":null}}\\\\n\\\"}]\",\"details\":[{\"action\":\"reaction\",\"emoji\":\"👍\",\"success\":true,\"http_code\":204,\"response\":\"\"},{\"action\":\"reaction\",\"emoji\":\"⌛\",\"success\":true,\"http_code\":204,\"response\":\"\"},{\"action\":\"reaction\",\"emoji\":\"❔\",\"success\":true,\"http_code\":204,\"response\":\"\"},{\"action\":\"reaction\",\"emoji\":\"👎\",\"success\":true,\"http_code\":204,\"response\":\"\"},{\"action\":\"thread\",\"success\":true,\"http_code\":201,\"response\":\"{\\\"id\\\":\\\"1498943808493191178\\\",\\\"type\\\":10,\\\"last_message_id\\\":\\\"1498943830785916990\\\",\\\"flags\\\":0,\\\"guild_id\\\":\\\"1442826208608915542\\\",\\\"name\\\":\\\"Discussion - CODE 8 - XENOTHREATH \\\\u2022 Pouet \\\\u2022 2026-04-09\\\",\\\"parent_id\\\":\\\"1490461588996624434\\\",\\\"rate_limit_per_user\\\":0,\\\"owner_id\\\":\\\"1425806219305681018\\\",\\\"thread_metadata\\\":{\\\"archived\\\":false,\\\"archive_timestamp\\\":\\\"2026-04-29T07:07:38.279270+00:00\\\",\\\"auto_archive_duration\\\":1440,\\\"locked\\\":false,\\\"create_timestamp\\\":\\\"2026-04-29T07:07:38.279270+00:00\\\"},\\\"message_count\\\":0,\\\"member_count\\\":1,\\\"total_message_sent\\\":0,\\\"member\\\":{\\\"id\\\":\\\"1498943808493191178\\\",\\\"user_id\\\":\\\"1425806219305681018\\\",\\\"join_timestamp\\\":\\\"2026-04-29T07:07:38.280585+00:00\\\",\\\"flags\\\":1,\\\"muted\\\":false,\\\"mute_config\\\":null}}\\n\"}]}}',1,'admin','2026-04-29 07:07:38'); +/*!40000 ALTER TABLE `tbl_scnotifications` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tbl_scobjs` +-- + +DROP TABLE IF EXISTS `tbl_scobjs`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `tbl_scobjs` ( + `cl_scobjs_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `cl_scobjs_name` varchar(255) NOT NULL, + `cl_scobjs_type` varchar(100) DEFAULT NULL, + `cl_scobjs_subtype` varchar(100) DEFAULT NULL, + `cl_scobjs_uuid` varchar(100) NOT NULL, + `cl_scobjs_rarity` varchar(10) DEFAULT '', + `cl_scobjs_about` text DEFAULT NULL, + `cl_scobjs_description` text DEFAULT NULL, + PRIMARY KEY (`cl_scobjs_id`), + UNIQUE KEY `cl_scobjs_uuid` (`cl_scobjs_uuid`) +) ENGINE=InnoDB AUTO_INCREMENT=18306 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tbl_scobjs` +-- + +LOCK TABLES `tbl_scobjs` WRITE; +/*!40000 ALTER TABLE `tbl_scobjs` DISABLE KEYS */; +INSERT INTO `tbl_scobjs` VALUES +(1,'Odyssey II Helmet Alpha','Armor','Helmet','0190a637-936f-4834-812b-f945a0413467','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(2,'Seat','Usable','UNDEFINED','a41b969c-9262-435c-aef7-ad2107af088c','','',NULL), +(3,'Odyssey II Undersuit Multi','Armor','Undersuit','a1a0fa79-085a-4a1a-b325-ebaee413ae36','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe latest generation of RSI\'s classic Odyssey undersuit features a new rugged design capable of withstanding the harshest of conditions in space or planetside. Built using the latest microweave technology, the Odyssey II undersuit provides hours of comfort in locations that are anything but comfortable.'), +(4,'RSI_Constellation_TA_BayWall_Left','Container','UNDEFINED','6079a4f9-df9b-43ab-8443-8b32550bdb7e','','',NULL), +(5,'Nomad Conifer Livery','Paints','UNDEFINED','f913c14c-d253-4c1b-a508-d5d94f278ac5','','','Complete deliveries in style with the Conifer livery that\'s primarily green with yellow highlights.'), +(6,'TRGT. STATUS','Seat','UNDEFINED','84c7b1fa-eba8-4713-be94-109d3a277190','','',NULL), +(7,'Radar_Display_ESPR_Prowler','Display','UNDEFINED','c170ed0f-3d01-4ea0-8538-c1a552c93642','','',NULL), +(8,'ANVL_Hornet_F7CM_Mk2_Dashboard_Copilot','SeatDashboard','UNDEFINED','831eed03-7605-4ae5-bf31-86f8de4cfdf2','','',NULL), +(9,'DRAK_Dragonfly_SCItem_Dashboard_CoPilot','SeatDashboard','UNDEFINED','5f63d6e5-a417-4d78-98d4-219f49d51229','','',NULL), +(10,'RSI_Zeus_Thruster_Mav','ManneuverThruster','UNDEFINED','2a690f30-4a5e-406b-881c-af95c3830fd7','','',NULL), +(11,'Starlancer Updraft Livery','Paints','UNDEFINED','ca62763f-d41b-4008-a761-e32def5b5894','','','Cool grey atop crisp white from the Updraft livery gives the Starlancer a classic and clean look.'), +(12,'m_human_mannequin_clothing_TandS_Civ03','ShopDisplay','UNDEFINED','1c15d7ae-6254-46a1-b4a6-1db0663f3bee','','',NULL), +(13,'Antium Legs Moss Camo','Armor','Legs','1f5e4a0d-ca1b-449b-b2ad-f165df283c91','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(14,'display_components_platbay_counter_b_1slot','ShopDisplay','UNDEFINED','43dced5f-ec0c-4a65-94c9-bb150174fa00','','',NULL), +(15,'Carryable_2H_FL_Container_Anim_multitool_1_citizencon2953_1_a','Misc','UNDEFINED','387ad3ab-5d5f-49d4-bb44-c4357d2b0b8c','','',NULL), +(16,'Morozov-SH-S Helmet Terrene','Armor','Helmet','503c6b97-7e0b-4763-98e5-5b00308fe459','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -97 / 121 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(17,'Neoni Tengubi Helmet','Armor','Helmet','0337fb43-2015-453a-bcd3-fa70bfea2766','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nShow that you serve no master with the Neoni helmet. Drawing inspiration from monster myths and warrior cultures of old, this menacing visage courtesy of CC\'s Conversions features a dramatic paint job, fang-filled grin, and pointed holographic horns, providing protection and intimidation in one memorable helmet. Visor is AR crosshair compatible.'), +(18,'TRGT. STATUS','Seat','UNDEFINED','32a5ce22-15ea-4cb8-a449-f05536dfdb13','','',NULL), +(19,'Odyssey II Helmet Alpha','Armor','Helmet','be1bb439-e2c8-4b6c-90d2-af4b0a8e130e','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(20,'RSI_Constellation_Phoenix_Thruster_Mav_Joint','ManneuverThruster','JointThruster','5f7cb35d-e25b-415f-b0a3-292f91416280','','',NULL), +(21,'Altruciatoxin','Cargo','Cargo','169b534b-6d61-4cad-b275-694fc5a04574','','',NULL), +(22,'Seat','Usable','UNDEFINED','51ac4cec-f08e-4c11-bce5-23912edddf0d','','',NULL), +(23,'Hercules Starlifter Draco Livery','Paints','UNDEFINED','e5382652-80ce-4e07-8a66-d267c4e17ad2','','','Customize your Hercules Starlifter with the exquisite Draco livery that\'s gold with black highlights.'), +(24,'Clash Core','Armor','Torso','87f8d046-ae68-45c7-93eb-49204a7e0e94','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -52 / 82 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5K µSCU\nBackpacks: Medium, Light\n\nSometimes all you gotta do is put on the right piece of armor to make your message loud and clear. Clash armor first started popping up when the Dredge got strong-armed into mass-producing their armor and it\'s been scaring everyone stupid since. Now everybody\'s stealing it. Clash features a reinforced medium plating to get you a good balance of protection without giving up too much speed.'), +(25,'Redeemer Scrubland Camo Livery','Paints','UNDEFINED','7874817d-fee0-4578-9f6c-5d2840182033','','','Use the Scrubland Camo livery to outfit the Redeemer in green camo. A classic and commanding look that\'s also ideal for excursions across forests and grasslands.'), +(26,'Seat','Usable','UNDEFINED','aff6a865-74e7-48ea-8592-b0269abe295f','','',NULL), +(27,'H_Dashboard_Projector_HUD_RSI_Aurora','Display','UNDEFINED','0843ceac-039c-4597-97dd-214602a4f927','','',NULL), +(28,'Internal Tank','FuelTank','Fuel','7eb19d22-9ab6-469d-a9bf-c5b70ae7e876','','',NULL), +(29,'RSI_Zeus_CL_Thruster_Main_Top_Left','MainThruster','UNDEFINED','9808ecb4-8e4d-482c-b4df-4f5b98ac14c0','','',NULL), +(30,'Clothing_Torso2_Unified','Char_Clothing_Torso_2','UNDEFINED','2345de7a-585d-4e4c-a0ca-cc33511ad255','','',NULL), +(31,'Seat','SeatAccess','UNDEFINED','837dc6f0-360d-4995-9586-3bfb6b67b2df','','',NULL), +(32,'5CA \'Akura\'','Shield','UNDEFINED','51bf9a6e-0ad7-49d2-8d41-d1d5e69669e6','','','Item Type: Shield Generator\nManufacturer: Behring \nSize: 3\nGrade: C\nClass: Civilian\n\nBehring’s belief in balanced shield design is evident with the 5CA. This large shield generator is equally focused on providing acceptable shield health along with decent damage absorption.'), +(33,'TwoStateAnimator_Instanced','Misc','Default','389e3236-8372-444e-87eb-b7f444a2177f','','',NULL), +(34,'Door Control','Door','UNDEFINED','5d4b6d12-3b19-47ba-ab07-b0be0ed17b76','','',NULL), +(35,'Ranta Dung','Cargo','Cargo','0c538438-072a-4038-9d3c-87de08620bfc','','',NULL), +(36,'Golem Flashpoint Livery','Paints','UNDEFINED','7e19ec04-acd7-466e-98e9-857fbc3ca000','','','Prominent use of orange offset against white makes the Golem Flashpoint livery highly visible on busy and dangerous work sites.'), +(37,'Palatino Legs Shadow Gild','Armor','Legs','6bd54e97-7a6a-4daa-823b-491c031d7932','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower. The Shadow Gild variant is dark gray and features stylish gold highlights.'), +(38,'facial_hair_038','Char_Head_Beard','UNDEFINED','0b797354-6eb0-41df-a81a-42677c7b61af','','',NULL), +(39,'Ranta Dung','Cargo','Cargo','904f0a72-211f-4e54-b0eb-eb5a06808b79','','',NULL), +(40,'Quell Suppressor1','WeaponAttachment','Barrel','64922909-1036-4fbf-a55f-2388fe03e865','','','Manufacturer: ArmaMod\nType: Suppressor\nAttachment Point: Barrel\nSize: 1\n\nHeat: +10%\nSpread: -25%\nAim Recoil: -25%\nVisual Recoil: -25%\nFire Rate: -5%\nAudible Range: -33%\n\nThe Quell Suppressor1 utilizes an advanced carbon polymer that reduces both noise and recoil at the cost of increased heat build-up.'), +(41,'ANVL_Door_Decal_Carrack_Deck2','Decal','DoorPart','5f151f57-55e8-4df4-aa7b-a796d02b4406','','',NULL), +(42,'Internal Tank','FuelTank','Fuel','50df8799-d4d8-49b9-b5f1-9d6af03e38a6','','',NULL), +(43,'Ursa Oasis Livery','Paints','UNDEFINED','d2399780-8e0e-4557-b038-b379e5c312d5','','','Announce your arrival with the Oasis livery for the Ursa, which is a vibrant teal tint with grey and white accents.'), +(44,'Bed','Usable','UNDEFINED','28b933ad-5c88-43cc-a4aa-060699c064a4','','',NULL), +(45,'Seat','Usable','UNDEFINED','a82bd240-4d06-4beb-ae13-a17eb212373e','','',NULL), +(46,'Agricium (Ore)','Cargo','Cargo','f45fc3f0-18aa-4765-826a-110d8cb9961b','','',NULL), +(47,'TrueDef-Pro Arms Grey/Green','Armor','Arms','3601dfc8-adfe-4ef0-a8e0-26cbd16d95ad','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(48,'DRAK_Cutlass_Red_Thruster_Maneuver_Vertical_Negative','ManneuverThruster','JointThruster','d8c50f88-52ce-4d3f-b2b8-954811feb9c6','','',NULL), +(49,'Carryable_2H_FL_05x05x05_MissionItem_Jackolantern','Misc','UNDEFINED','2795594c-e919-4b13-b01a-4a7d6a7a652d','','',NULL), +(50,'CRUS_Spirit_Thruster_VTOL_Aux_Front','MainThruster','UNDEFINED','a66bd731-e0b7-4ba9-80ec-e0446fb341ca','','',NULL), +(51,'Landlite Boots Orange','Char_Clothing_Feet','UNDEFINED','7d1fa3ac-1a28-44b0-9700-49525f6311a0','','','Who says work boots can\'t be comfortable? Grindstone\'s Landlite boots are built with a breathable synth-leather material to keep your feet dry, a contoured, memory footbed, and a slip-resistant outsole, making it perfect for whatever worksite you throw at it.'), +(52,'C8 Pisces Heartbeat Livery','Paints','UNDEFINED','5b06e19a-57e1-4424-9705-1c07c1cd2049','','','A bright red base color and neon yellow highlights makes the Heartbeat livery for the C8 Pisces easy to identify from a distance during rescue operations.'), +(53,'DockingTube_Fuel_Ports_DRAK_Clipper','DockingCollar','UNDEFINED','43346162-b438-4595-ad47-463406f76fa3','','',NULL), +(54,'Manned Turret','TurretBase','MannedTurret','090d3ed5-6462-41cf-a2a7-2ed1a11a8106','','',NULL), +(55,'RSI_Scorpius_Component_Cover','Misc','UNDEFINED','48f489d1-e3d5-464f-99d5-1632e0dc763e','','',NULL), +(56,'Bed','Usable','UNDEFINED','12479303-c2b0-4a89-9495-88473a0a2b09','','',NULL), +(57,'INTK_ANVL_Terrapin','FuelIntake','Fuel','0954c570-fa2b-41b8-85d8-732e31e0ec20','','',NULL), +(58,'Sadaryx Focus Lens','Battery','Cargo','ae5dda5e-4278-4846-99df-4db1c2274429','','','This lens is crafted from durable sadaryx crystals and can be used to focus and improve power-throughput of high-powered industrial laser beams.'), +(59,'Lasing Catalyst','Battery','Cargo','374c991e-b2ba-4e4b-8ea4-fb8deacabcee','','','A dense matrix of absorptive meta-materials that acts as a gain amplifier for high-powered industrial laser beams.'), +(60,'Colonialism_Outpost_RN_Single_Liquid_Tank_Unit','FuelTank','UNDEFINED','30f76263-c0d5-4eff-a5f7-180195779c0d','','',NULL), +(61,'Baru Gloves Slate (Left Only)','Char_Clothing_Hands','UNDEFINED','67d77c60-6329-4872-ab85-54e51d1fc7fe','','','Ensure you hands are always dry and at the right temperature with the Baru gloves. An advanced sensor system protected by a metal plate on the back of the hand monitors and regulates conditions within the glove. A patented synthetic leather woven with special microfibers works with the sensors and a strap cuff provides a snug fit.'), +(62,'Coda Pistol','Weapon','Small','b97279f7-b795-4f17-9458-022068edd98f','','','Manufacturer: Kastak Arms\nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 6\nRate Of Fire: 180 rpm \nEffective Range: 100 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nOften called the Kastak Arms \"hand cannon,\" the Coda can end an engagement with a single .50 caliber round, although the substantial power can make the Coda\'s recoil hard to handle. Considering its limited magazine size and substantial kick, sustained fire is discouraged in favor of more accurate single shots.'), +(63,'Reclaimer 2954 Best in Show Livery','Paints','UNDEFINED','534a45f2-fecf-4aea-b141-59d1e95b6269','','','This purple and white 2954 Best in Show Livery celebrates the Reclaimer making it to the final four of the 2954 Ship Showdown.'), +(64,'P6-LR \"Gideon\" Sniper Rifle','Weapon','Medium','22a62459-d4f6-48cd-8c32-79572b5c35bd','','','Manufacturer: Behring\nItem Type: Sniper Rifle\nClass: Ballistic\n\nMagazine Size: 8\nRate Of Fire: 20 rpm\nEffective Range: 120 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nThe Behring P6-LR ballistic sniper rifle more than makes up for its slow rate of fire with a high powered round that\'s effective from long range. Featuring a scope with variable zoom modes and a barrel composed of a proprietary high-strength alloy, the P6-LR was designed to deliver when needed most. The Gideon edition features a worn teal and yellow finish.'), +(65,'Projector_HUD_Mining_ROCDS','Display','UNDEFINED','5d2c9019-540f-49d1-9a6f-c71350aab348','','',NULL), +(66,'Internal Tank','FuelTank','Fuel','7c14e9dd-6a5f-4681-a2d1-b2f1758f88b6','','',NULL), +(67,'Seat','SeatAccess','UNDEFINED','e4c8f021-feab-4209-8573-fa31a3b541a1','','',NULL), +(68,'DRAK_Vulture_Component_Power','Player','UNDEFINED','8eac8173-0cca-40b1-a14a-33ff643bb01f','','',NULL), +(69,'Personal Storage','Cargo','UNDEFINED','d658f2ad-9527-4c2e-9ebe-43973f028efe','','',NULL), +(70,'Seat','SeatAccess','UNDEFINED','bc26bf35-ae45-4701-94b9-1d85a03229a8','','',NULL), +(71,'Venture Helmet White','Armor','Helmet','28c76343-8da9-495a-9339-3d5de02e6c3c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover.'), +(72,'Reliant Gilroy Gimbal','Turret','GunTurret','433251b0-f28d-4aa3-83f1-4ae45a1a0137','','','Item Type: Weapon Mount (Reliant Exclusive)\nManufacturer: MISC\nSize: 4 \n\nMISC built the Gilroy as a custom wing mounted gimbal for use exclusively with the Reliant. Standard on the Tana, it allows a S4 weapon better movement when tracking targets.'), +(73,'Voidripper Sea Shiver Helmet','Armor','Helmet','a761af5b-9971-48c0-9bc4-fd7547c899a4','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nEmbrace your inner beast by equipping the Voidripper helmet. Layers of heavy armor plating provide premium protection and an unforgettable visage featuring a heavy brow and piercing turquoise eyes. Sakura Sun designers complimented this striking form with supreme function, including a state of the art sensor suite attached to the helmet\'s right side. Visor is AR crosshair compatible.'), +(74,'Door Control','Door','UNDEFINED','79877961-0895-4f60-8299-65c71b99a82f','','',NULL), +(75,'ARGO_MPUV_1T_Thruster_Aux_Front','ManneuverThruster','FixedThruster','5235ab87-2188-4964-bacb-87fa6b82374d','','',NULL), +(76,'Door Control','Door','UNDEFINED','2f17af9a-66b9-4f18-80b0-6264dd94dc15','','',NULL), +(77,'V60-26','Radar','MidRangeRadar','ad4f59d3-1fca-470a-bece-a14484e9ff61','','','Item Type: Radar\nManufacturer: Groupe Nouveau Paradigme\nSize: 0\nGrade: A\nClass: Military\n\nProviding crucial information during your operation, the V60-26 radar offers highly accurate and detailed updates on nearby emissions.'), +(78,'Origin 350r Racing Flight Suit','Armor','Undersuit','eff4fdff-304b-4879-aba0-a2249f76bdc1','','','Item Type: Flight Suit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nEmbody luxury, style, and speed by stepping into this official flight suit worn by the Origin racing team. This gray and yellow flight suit features the Origin and 350r logo in several prominent places.'), +(79,'WowBlast Desperado Toy Pistol Red','Weapon','Small','413242d8-ce09-4eb7-88d4-9841139ade80','','','Manufacturer: Sakura Sun\nItem Type: Toy Pistol\nClass: Foam Dart\n\nMagazine Size: 10\nRate Of Fire: 450 rpm\nEffective Range: 35m\n\nMake friendly fire fun with the Sakura Sun WowBlast Desperado. Playfully fire foam darts at friends or fictitious foes with these ultra-colorful plastic toy pistols. Whether killing time at a landing zone or during a long-haul through the stars, the WowBlast toy line provides lighthearted excitement and entertainment for the entire family. The Desperado toy pistol is available in several vibrant colors, each featuring a unique sound effect!'), +(80,'Seat','SeatAccess','UNDEFINED','1508f769-2169-493b-8c5e-2512e9347155','','',NULL), +(81,'Pepper','Misc','UNDEFINED','8a1d093a-901d-4059-826c-c16a8661b24f','','',NULL), +(82,'Seat','Usable','UNDEFINED','cec564cd-96ed-4af3-b455-7e2523b0631e','','',NULL), +(83,'sc_nvy_bdu_engineer_belt_01_01_refinery','Char_Clothing_Torso_2','UNDEFINED','de1b1deb-9465-4d3f-97f0-854a9affb4a4','','',NULL), +(84,'Oracle Helmet Abyss','Armor','Helmet','0d20cc30-0d6f-48b4-b2a1-79ff88e52204','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(85,'DustUp Core Desert','Armor','Torso','398a3688-07c5-4c2b-8d0e-736979ba2834','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -60 / 90 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light \n\nThe DustUp has your back if you’re looking to get into some trouble. The body plating is built off of the same CDS undersuit used by the UEE Marines, it adds reconstructed Omni-Role mkII pieces to give you solid protection against incoming fire, but the real gem is the modified helmet. That thing was built to withstand explosions, so it should totally protect you against some shots. The whole thing’s been reasonably tested against vacuum too, so you can feel free to EVA all you want without worrying about dying.'), +(86,'display_cabinet_small_14x03x0150','ShopDisplay','Default','79f38048-7898-48c4-ba1c-6b0d3d54913f','','',NULL), +(87,'Sabre Black Magic Livery','Paints','UNDEFINED','b1631b1d-a020-4374-99c1-c47a2d4b09d7','','','The Black Magic livery for the Sabre mixes a macabre black with glowing orange highlights for a look inspired by the sinister spirit of Day of the Vara.'), +(88,'ARGO_MPUV_1T_Thruster_Aux_Side','ManneuverThruster','FixedThruster','12cfce99-e537-44b2-bbaa-ef4b58b14fe8','','',NULL), +(89,'HRST_LaserRepeater_Barrel_S6','WeaponAttachment','Barrel','34f81bdf-0386-46f7-99c3-6c33dca020e4','','',NULL), +(90,'Flight Blade','FlightController','UNDEFINED','213afa92-08c7-400c-b4b4-8a5c26b500ab','','',NULL), +(91,'AEGS_Sabre_Thruster_Retro','ManneuverThruster','FixedThruster','7bf0f682-2029-4259-ae25-7bf5e87274ba','','',NULL), +(92,'display_1_5m_a_centermass_1port','ShopDisplay','Default','311fdcda-66d3-4f4c-a0d8-38c69c66f871','','',NULL), +(93,'XNAA_SanTokYai_Thruster_Mav_Retro','ManneuverThruster','FlexThruster','0a0e7c8f-cd5a-4386-8931-d623137a78ae','','',NULL), +(94,'Carryable_1H_CY_utensil_shaker_1_top_a','Misc','UNDEFINED','e2260cd9-4172-4202-be68-38dd0e086435','','',NULL), +(95,'box_fabric_1_005x005x005_b','Cargo','UNDEFINED','6b1a75e3-ee0a-45a8-8c46-aaf9fd91e311','','',NULL), +(96,'Prim Shoes Olive','Char_Clothing_Feet','UNDEFINED','404697e5-efac-4da8-9870-93166f942682','','','Professional yet casual, the Prim utilizes cutting-edge synthetic construction to provide maximum comfort and a shine that won\'t fade.'), +(97,'Odyssey II Helmet Twilight','Armor','Helmet','d1556dc9-09e3-48ef-9484-a864e3b6b711','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(98,'MRAI_Guardian_Thruster_Mav_Bottom','ManneuverThruster','FixedThruster','29c720fb-8cfa-44b4-ab60-5c5c4dadb7f1','','',NULL), +(99,'RAFT microTech Livery','Paints','UNDEFINED','6e318f10-454c-4631-bbf8-09f632342635','','','The microTech livery for the RAFT features the company\'s logo atop a white base paint with light blue and grey highlights.'), +(100,'Carryable_1H_SQ_heatpack_1_c','Misc','UNDEFINED','4608a00d-ae0f-489d-a088-70f755c86381','','',NULL), +(101,'Lancet MH1 Mining Laser','Mining','Gun','ba94a262-bc0a-4484-9bbd-a4be7a2ec3e7','','','Manufacturer: Greycat Industrial\nItem Type: Mining Laser \nSize: 1\n\nOptimal Range: 30m\nMaximum Range: 90m\n\nMining Laser Power: 504 - 2520\nExtraction Laser Power: 1850\n\nModule Slots: 1\n\nLaser Instability: -10%\nOptimal Charge Window Rate: +40%\nInert Material Level: -30%\n\nOptimal Charge Window Size: -60%\n\nGreycat classifies the Lancet MH1 as a support laser best utilized when mining with others. While the mining laser\'s small optimal charge window size means precision is key, the Lancet MH1 excels at reducing the amount of inert materials collected by the extraction laser. For mining crews, it\'s an ideal support laser to use alongside other lasers.'), +(102,'S00 Hofstede','Mining','Gun','1c2bab01-941b-4515-a6a4-5845aaa95696','','','Manufacturer: Shubin Interstellar\nItem Type: Mining Laser\nSize: S0\nGrade: B\n \nOptimal Range: 30 m\nMaximum Range: 30 m\nGather Radius: 1 m\nExtraction Throughput: 4 cSCU/s\n \nPower Transfer: 35\n \nInstability: +30 %\nResistance: -40 %\nOptimal Charge Window Size: +40 %\nOptimal Charge Window Rate: +20 %\nThrottle min: 20%\n\nThis is the default mining head for the ROC DS slightly stronger than the Arbor'), +(103,'Golden Medmon','Cargo','Cargo','2bfa7f83-82cf-45a0-9ed7-7e0da124f461','','',NULL), +(104,'facial_hair_020','Char_Head_Beard','UNDEFINED','7b5556a2-c331-4192-b1f9-0941d778b7e3','','',NULL), +(105,'Fotia Seedpod','Cargo','Cargo','d96b15e2-0731-4cbf-bc1c-631d34f2a742','','',NULL), +(106,'ESPR_BallisticCannon_PowerArray_S5','WeaponAttachment','PowerArray','2a558e7b-8756-419c-a2e5-c0f9bc72ded4','','',NULL), +(107,'Carryable_2H_FL_ball_yoga_1_a','Misc','UNDEFINED','5f49d1a1-1e04-4a22-bc53-55a488df65e0','','',NULL), +(108,'ZapJet','PowerPlant','Power','cebbf547-717e-478e-8d52-81f786477295','','','Item Type: Power Plant\nManufacturer: Lightning Power Ltd.\nSize: 1\nGrade: D\nClass: Civilian\n\nThe Lightning Power ZapJet is an ideal streamlined package perfect for anybody who wants a straightforward no-fuss power solution.'), +(109,'HEAT','CoolerController','UNDEFINED','b935e5d8-dead-47c5-8937-382c3aa11682','','',NULL), +(110,'MISC_Starfarer_SCItem_Seat_Sup_Right','Seat','UNDEFINED','bc22b810-27bb-4dbb-ae55-e1700f27079f','','',NULL), +(111,'Bed','Usable','UNDEFINED','d8afc3ae-f132-46f2-b6f5-60456f7c56fd','','',NULL), +(112,'IAE 2953 Hat White','Char_Clothing_Hat','UNDEFINED','0d385856-b8fc-46b7-b0e6-4a242c7c9c67','','','Celebrate the UEE\'s premier ship expo with the official hat of the 2953 Intergalactic Aerospace Expo. This white hat displays the IAE logo on the front and back.'), +(113,'Invictus 2953 T-Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','6fdb2d68-1045-469b-a10a-e1081e2db86d','','','Celebrate Invictus Launch Week 2953 with this blue t-shirt made from a comfortable cotton blend and featuring the silhouette of a ship across the front.'), +(114,'Door Control','ControlPanel','DoorPart','fe69bf01-f2f0-48dd-9e39-d59cba6606cf','','',NULL), +(115,'DRAK_Cutter_Thruster_MainRetro','ManneuverThruster','Retro','49d89ec5-a563-420b-8670-3be723c7b99f','','',NULL), +(116,'Kino Shoes Sienna','Char_Clothing_Feet','UNDEFINED','c6acb5a1-0b64-4202-871f-efd90d7ac42d','','','These two-tone slip-on shoes are comfortable enough for casual wear, but stylish enough for the workplace.'), +(117,'ControlPanel_Screen_LightControl_9x16','ControlPanel','DoorPart','549cba04-c035-4671-abb6-bd7327de0596','','',NULL), +(118,'Ketchum Beanie Olive','Char_Clothing_Hat','UNDEFINED','32a8a688-a5f5-41df-ad00-e7c42f95d544','','','Complete your cool-weather wardrobe with the classic Ketchum beanie from Alejo Brothers.'), +(119,'Horizon Helmet Violet','Armor','Helmet','b04729d9-0f52-4587-9db4-a429a2ac9e8f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Horizon helmet is a durable and robust environmental enclosed work helmet. The single sheet laminate dome gives you an extremely wide field of view. A pair of side-mounted LED light modules provide additional illumination to make sure you can see what you\'re doing.'), +(120,'Frost-Star','Cooler','UNDEFINED','d8059126-352a-4be5-bfc9-15cf4fb05439','','','Item Type: Cooler\nManufacturer: J-Span \nSize: 1\nGrade: C\nClass: Civilian\n\nNoted for its consistent performance, the Frost-Star cooler from J-Span has many admirers for its well-balanced power to heat ratio. '), +(121,'Aluminum','Cargo','Cargo','5b0c1e9f-90f2-4694-9191-bf23080173b3','','',NULL), +(122,'Internal Tank','FuelTank','Fuel','66561c57-a1f0-45c8-a7f2-90119a3fe25b','','',NULL), +(123,'RSI_Polaris_Fake_Door_Cargo_Left','Misc','UNDEFINED','4233b5d6-ed9a-468a-9801-f3aa8608498d','','',NULL), +(124,'CBH-3 Helmet Olive','Armor','Helmet','62e76c40-c11e-4ed7-be4a-26e6847af960','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. Visor is AR crosshair compatible.'), +(125,'MISC_Starlancer_Thruster_Mav_Small','ManneuverThruster','FixedThruster','6441c874-6433-47c8-8389-196926f23bb2','','',NULL), +(126,'Internal Tank','FuelTank','Fuel','5d0281eb-3b71-46e4-9ac3-9dc9bc9be81f','','',NULL), +(127,'hooks_torso1_03x01x04_03Ports','ShopDisplay','Default','3ada4ae1-1f4e-4ffb-8d7c-6aa1f383b75c','','',NULL), +(128,'Karoby Energy Bar (Cranberry, Green Tea & Carob)','Food','Bar','b2497354-217a-4310-8ab8-d3c633d2e8a2','','','NDR: 18\nEffects: Energizing\n\nMade with nutritious, wholesome ingredients, this great tasting bar is formulated to provide sustained energy to help you maintain your best performance.'), +(129,'CNOU_Mustang_Gamma_Thruster_Aux','MainThruster','FixedThruster','5d6f6fd3-edfe-442d-b578-806b2a527ab8','','',NULL), +(130,'Harlowe Shirt microTech','Char_Clothing_Torso_0','UNDEFINED','8948a26f-f2e3-42ea-b4b7-8e6ae160fe67','','','Capable as being worn on its own or as a base for layers, this long-sleeve henley style shirt decked out in microTech colors and branding keeps you stylish but comfortable.'), +(131,'RSI_Apollo_Thruster_Main_Nacelle','MainThruster','FixedThruster','42044e81-6855-0f44-6761-6d3ec28d6c84','','',NULL), +(132,'DoorProximitySensor_2x1x1_3','Sensor','DoorPart','5809dbeb-af65-4c47-b5ae-c1d289b5c2b5','','',NULL), +(133,'Bed','Seat','UNDEFINED','b455c6ab-d37d-41dc-82eb-e02c0ad766cb','','',NULL), +(134,'Turret','Container','Cargo','d9c6e66e-1a94-49f5-924d-0af1598875c8','','',NULL), +(135,'H_Dashboard_Projector_HUD_RSI_Polaris_P','Display','UNDEFINED','652bb88e-e934-4526-9754-a54dab49a43e','','',NULL), +(136,'Aegis Retaliator Torpedo Rack','MissileLauncher','MissileRack','2a1bedaa-53e5-4059-b979-275ac50eb4d5','','','Aegis Retaliator Torpedo Rack'), +(137,'Mivaldi Pants Black','Char_Clothing_Legs','UNDEFINED','523963bf-a1f5-4e5b-97bb-7a853a68f610','','','Carrying Capacity: 0.5K µSCU\n\nCut to a narrow fit, OpalSky\'s Mivaldi pants feature bold asymmetrical design with smart yet casual dual material styling, making it the perfect addition to any wardrobe.\n\nWomen\'s sizes currently out of stock.'), +(138,'Horizon Helmet Tan','Armor','Helmet','5e00fc5d-1c87-4b53-92f9-fe619451bcb0','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Horizon helmet is a durable and robust environmental enclosed work helmet. The single sheet laminate dome gives you an extremely wide field of view. A pair of side-mounted LED light modules provide additional illumination to make sure you can see what you\'re doing.'), +(139,'Hephaestanite (Raw)','Cargo','Cargo','c4b99718-eafb-4f87-8e6c-76c78ea76709','','',NULL), +(140,'Mug','Misc','UNDEFINED','4402ed9f-d1c6-46f4-92c3-0a794934ddd4','','','A small, handled drinking vessel made from insulating ceramic to help keep bevarages warm.'), +(141,'Door Control','Door','UNDEFINED','8411a71d-9f10-4125-ba6e-aef4a31077ec','','',NULL), +(142,'NDB-26 Repeater','Weapon','Gun','fecbf518-e3e5-4e58-905a-729a02e86265','','','Manufacturer: MaxOx\nItem Type: Neutron Repeater\nSize: 1\n\nThe NDB-26 uses a twin barrel system to fire neutron projectiles at a rapid rate. Devastating at close range, this neutron repeater still packs enough of a wallop at medium range to persuade any attackers to reconsider their assault.'), +(143,'display_booth_stand_4_weapon_0114x00325x015','ShopDisplay','Default','2554b275-ea20-433b-8a86-1d338190a23b','','',NULL), +(144,'Door','Door','UNDEFINED','d552fe5b-9b28-4228-9f1d-ea7d9ae9a975','','',NULL), +(145,'Riccite (Ore)','Cargo','Cargo','748317af-019a-44b7-9e93-1111a7a919b8','','',NULL), +(146,'VNCL_Gen2_PlasmaCannon_Barrel_S2','WeaponAttachment','Barrel','ce49413f-8de3-4025-94d7-be5fd245c8d7','','',NULL), +(147,'PAB-1 Legs Grey','Armor','Legs','360975a4-2088-452d-be3d-dc4bb7c2428b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(148,'Internal Tank','QuantumFuelTank','QuantumFuel','43449fbd-4ea9-49a8-1ce2-ba315cb756be','','',NULL), +(149,'Carryable_1H_CY_drug_stomachmedicine_1_b','Misc','UNDEFINED','2d9bac72-82ab-4ac1-8dab-678ac9d82dee','','',NULL), +(150,'AEGS_Sabre_Thruster_Mav_TopFL','ManneuverThruster','JointThruster','37d14bb4-aa46-4b7e-874c-11524f942993','','',NULL), +(151,'Sakura Fun Blue ORC-mkX Armor Bobblehead','Flair_Cockpit','Flair_Static','680911bf-f6c0-43c6-a65e-dec33e31eaa8','','','Like the armor set it features, the Blue ORC-mkX Bobblehead is exquisitely detailed and made with high quality materials. Place Sakura Sun\'s latest edition to the Sakura Fun line of bobbleheads on a ship\'s dashboard for an ideal cockpit companion ready to ride along on daring space adventures.'), +(152,'Personal Storage','Cargo','UNDEFINED','f123e337-4b0b-4746-89cc-0a5d4585f1e8','','',NULL), +(153,'X1 Shadow Livery','Paints','UNDEFINED','a2d90b2a-7f1a-4ab9-9b02-f7f1c88be2cf','','','Infinity Custom worked with Origin on the Shadow livery for the X1, which is primarily black with grey lettering and orange highlights.'), +(154,'Mercury Star Runner Nightrunner Livery','Paints','UNDEFINED','90a87603-95e6-4024-b111-1b19507562ae','','','Meld into the pitch-dark expanse of space with this livery featuring a black paint scheme with gold accents for your Mercury Star Runner.'), +(155,'Flight Blade','FlightController','UNDEFINED','de18876b-533a-4cb8-9edb-1a7c9eef70b9','','',NULL), +(156,'Riccite (Ore)','Cargo','Cargo','61c301c1-4bbf-4c18-8e94-8b70a160f151','','',NULL), +(157,'Cambio-Lite SRT Canister','WeaponAttachment','Magazine','5ea0d020-8e9c-4a33-8fad-757651e1088d','','','Item Type: RMC Canister (Small)\n\nCanister used in conjunction with the Pyro RYT Multi-Tool and Cambio-Lite SRT attachment to store recycle material composite (RMC) reclaimed from scrap. Contents can be sold or used to make repairs.'), +(158,'Internal Tank','FuelTank','Fuel','611ee0b8-f9a7-4561-bcea-387240066d05','','',NULL), +(159,'Campo Shoes','Char_Clothing_Feet','UNDEFINED','da5db419-0a58-40e3-9bce-67623e065b19','','','Slip into comfort with the Campo shoes, which have a supportive midsole, cushioned footbed, and a molded, slip-resistant outsole. These ankle high slip-ons deliver an ideal fit thanks to two adjustable straps with metal clasps.'), +(160,'Door Control','ControlPanel','DoorPart','f7b09bd0-b6bf-4bc6-91d8-14fd2dcd6747','','',NULL), +(161,'Molina Mold Samples','Cargo','Cargo','e0a84819-775b-445f-90f5-13d6f0dfad71','','','Samples of the deadly Molina Mold securely sealed in biohazard containers to ensure its toxic fungal spores can\'t get airborne.'), +(162,'DockingTube_Fuel_Ports_KRIG_P52_Merlin','DockingCollar','UNDEFINED','a1690087-2907-4261-8ea2-88f4d19e9fce','','',NULL), +(163,'Citadel Arms Earthwork','Armor','Arms','7dd10213-c4dd-4f18-8eb2-7242471db025','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(164,'Carryable_TBO_FL_2SCU_Commodity_Organic_Armillaria','Cargo','Cargo','3b7414d1-44c3-4c65-a8c5-30cda0030b58','','',NULL), +(165,'Seat','SeatAccess','UNDEFINED','d187f273-655c-429d-b91e-cd9e9d06cb7c','','',NULL), +(166,'DRAK_Caterpillar_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','9331b167-31db-4a86-b4da-a0eb980ad014','','',NULL), +(167,'Defiance Helmet (Modified)','Armor','Helmet','29b03c7a-8dbf-4411-8f2c-226266b94a31','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThis version of CDS\'s Defiance helmet has been modified from its original form. The Defiance features a fully enclosed battle helmet constructed with two layers of composite weaves underneath armor plating, providing you maximum protection against penetrating and concussive attacks. Visor is AR crosshair compatible.'), +(168,'RSI_Apollo_Medivac_Thruster_Retro_Nacelle','ManneuverThruster','FixedThruster','44e2093d-8aa5-b1af-fff0-8b1296bfbca2','','',NULL), +(169,'Door Control','Door','UNDEFINED','b44d6e37-b11f-4263-ad7a-e18258e6d6f6','','',NULL), +(170,'Nomad Foundation Fest Livery','Paints','UNDEFINED','3e819a18-bc98-4a13-9dd4-cb339853a17f','','','Foundation Festival is an opportunity for Citizens and Civilians to come together and strengthen the foundation of our community. Show your commitment to a better universe with this custom livery.'), +(171,'Door Control','Door','UNDEFINED','f8dfcf6b-cc09-4ce1-a634-50d4b88b6baf','','',NULL), +(172,'ANVL_Paladin_Thruster_Vtol_right','MainThruster','UNDEFINED','d417da2d-d393-4975-b5d0-701f16951f6b','','',NULL), +(173,'ORIG_350r_Thruster_Main','MainThruster','FixedThruster','890c997e-573e-4a00-bf5c-a028c6c23868','','',NULL), +(174,'Inquisitor Legs Ignitor','Armor','Legs','43a9467d-e153-447f-af53-31b18cd3fbb4','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(175,'Vehicle_Screen_MFD_Holographic_Prowler_TR','Display','UNDEFINED','db0d31f7-1555-4c1e-a036-3580640d1de4','','',NULL), +(176,'TrailTuff Boots','Char_Clothing_Feet','UNDEFINED','ec4add03-cb59-4c8e-806f-341b7ea2033d','','','Whether you\'re charting new territory on an untouched world or fixing fences at your homestead, Grindstone\'s TrailTuff boots are sturdy enough to take on the toughest terrain. Made with a proprietary synthetic leather that has all the qualities you love of the real thing and none of the downsides.'), +(177,'Flight Blade','FlightController','UNDEFINED','da03cfe3-3bba-4707-bb81-a2895f00aeff','','',NULL), +(178,'Flight Blade','FlightController','UNDEFINED','d549df82-6c3a-4f8c-bdfd-d89975a30c51','','',NULL), +(179,'PU_SurfaceOutpost_PowerPlant','Cargo','Small','84334675-3dea-46d6-a5f5-bce864d3f929','','',NULL), +(180,'AEGS_Reclaimer_Locker_Door_R','Player','UNDEFINED','9857b10d-38aa-4a66-84dc-d3bc4d32304b','','',NULL), +(181,'Door Control','ControlPanel','DoorPart','bb90e37f-c772-40ec-9080-fe7fe345ffd0','','',NULL), +(182,'Silverton Jacket AA Transport','Char_Clothing_Torso_1','UNDEFINED','af8854a4-8fd8-40ea-8316-86d26bda2adb','','','Carrying Capacity: 1K µSCU\n\nWhen you\'re on the frontier, you need reliable clothing that won\'t fray when the going gets tough. That\'s why DMC made the Silverton jacket with double-stitched, element-resistant leather and plenty of roomy pockets so you can keep your supplies on hand. With the Silverton, you\'ll be prepared for anything.\n\nThe AA Transport edition is predominately tan with bold white lettering across the chest showcasing that the wearer was a part of Alliance Aid\'s Transport Division, assisting Levski during their time of need.'), +(183,'Silverton Jacket AA Defense','Char_Clothing_Torso_1','UNDEFINED','99d1661c-6494-4268-8a0d-64ce04b1ca38','','','Carrying Capacity: 1K µSCU\n\nWhen you\'re on the frontier, you need reliable clothing that won\'t fray when the going gets tough. That\'s why DMC made the Silverton jacket with double-stitched, element-resistant leather and plenty of roomy pockets so you can keep your supplies on hand. With the Silverton, you\'ll be prepared for anything.\n\nThe AA Defense edition features a gray, urban camo pattern with bold white lettering across the chest showcasing that the wearer was a part of Alliance Aid\'s Defense Division, assisting Levski during their time of need.'), +(184,'Fluorine','Cargo','Cargo','4c758aa4-1279-428c-b773-488b69bfafac','','',NULL), +(185,'DRAK_Vulture_Thruster_Maneuver_Bottom','ManneuverThruster','FixedThruster','8f7c5365-5658-41f5-b363-e36428ab9d76','','',NULL), +(186,'Silverton Jacket Brown','Char_Clothing_Torso_1','UNDEFINED','47fcf5a3-c00d-4a75-906b-0183f1aa32e0','','','Carrying Capacity: 1K µSCU\n\nWhen you\'re on the frontier, you need reliable clothing that won\'t fray when the going gets tough. That\'s why DMC made the Silverton jacket with double-stitched, element-resistant leather and plenty of roomy pockets so you can keep your supplies on hand. With the Silverton, you\'ll be prepared for anything.'), +(187,'Silverton Jacket CFP','Char_Clothing_Torso_1','UNDEFINED','5d57c2bd-3b1a-4eb1-b4fc-cb284d7ccae5','','','Carrying Capacity: 1K µSCU\n\nWhen you\'re on the frontier, you need reliable clothing that won\'t fray when the going gets tough. That\'s why DMC made the Silverton jacket with double-stitched, element-resistant leather and plenty of roomy pockets so you can keep your supplies on hand. With the Silverton, you\'ll be prepared for anything.\n\nThe CFP edition is a deep, fjord blue with the CFP\'s distinctive logo printed across the chest and back.'), +(188,'RSI_Aurora_CL_Thruster_Retro','MainThruster','FixedThruster','4d26bd95-3b07-438a-a9b9-b0a1bee8cffd','','',NULL), +(189,'Silverton Jacket AA Collections','Char_Clothing_Torso_1','UNDEFINED','8b98c7ca-35a1-4c8e-ad7e-a24eef4d6aab','','','Carrying Capacity: 1K µSCU\n\nWhen you\'re on the frontier, you need reliable clothing that won\'t fray when the going gets tough. That\'s why DMC made the Silverton jacket with double-stitched, element-resistant leather and plenty of roomy pockets so you can keep your supplies on hand. With the Silverton, you\'ll be prepared for anything.\n\nThe AA Collections edition is olive green with bold white lettering across the chest showcasing that the wearer was a part of Alliance Aid\'s Collections Division, assisting Levski during their time of need.'), +(190,'Ship Ammunition','Cargo','Cargo','4d9d49ee-c3a9-48b3-a1cb-e996dffe9a21','','',NULL), +(191,'Door','Door','UNDEFINED','d2dd78a7-511e-43c5-b0a2-ecc056f8e642','','',NULL), +(192,'Manned Turret','TurretBase','MannedTurret','a65e8a18-83bf-4999-b07b-9c2af89e7bc0','','',NULL), +(193,'Door','Door','UNDEFINED','5e4ec599-274c-431d-92e1-69af7f6428bf','','',NULL), +(194,'Seat','SeatAccess','UNDEFINED','d04b3c8c-36d1-4dfe-9a46-74b7d3d517d1','','',NULL), +(195,'m_human_mannequin_clothing_Casaba_a18_01','ShopDisplay','UNDEFINED','dce8f823-31c7-4e93-a6c6-545c9e4b489f','','',NULL), +(196,'Seat','Usable','UNDEFINED','d28e4fff-1ffc-410e-9862-0face99226ec','','',NULL), +(197,'Orison T-Shirt Black','Char_Clothing_Torso_0','UNDEFINED','2203a993-73f7-4ade-95b8-4fc2039e45d2','','','Named after an old word for \"prayer,\" the city of Orison is unlike any other in the empire. Commemorate this special locale with the image of one of the city\'s iconic cloud vistas framed inside the name.'), +(198,'XNAA_SanTokYai_Ground_Refueling_Port','Door','UNDEFINED','8733e85a-4f6c-4801-bf25-da915859fdbd','','',NULL), +(199,'BANU_TachyonCannon_PowerArray_S1','WeaponAttachment','PowerArray','3085212a-53da-485a-98e6-8c207ab9705a','','',NULL), +(200,'Dashboard','SeatDashboard','UNDEFINED','df5ebd6b-6ee3-4fdc-8014-b09bd096a0a4','','',NULL), +(201,'Ana Arms Wao','Armor','Arms','5c144503-21bf-409c-808b-5119b885846d','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nThis Antium Armor was modified from its original version. Carefully-selected fangs and bones were mounted to the set to give it a primal look.'), +(202,'Venture Legs Twilight','Armor','Legs','6de6cdd2-6087-4dbd-8a13-c950b5b572b5','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(203,'Berry Blend Smoothie','Drink','Bottle','d4ccc36c-824f-41aa-9fa2-5012aa1f1bee','','','HEI: 35\nNDR: 14\nEffects: Immune Boosting\n\nA smoothie made with a fresh blend of berries.'), +(204,'Internal Tank','QuantumFuelTank','QuantumFuel','e053736f-1487-4cb3-81cd-28ffc23d9c6c','','',NULL), +(205,'Test_Clovis_Datapad_Clue02_4x3_Screen','Display','UNDEFINED','a314ebb0-195e-470f-a970-75785b62b08e','','',NULL), +(206,'Paint_Perseus_Beige_Blue_Brown','Paints','UNDEFINED','034ea1a3-ea95-472d-bc71-3527317a7bea','','',NULL), +(207,'XNAA_SanTokYai_Thruster_Mav_02_Right','ManneuverThruster','FlexThruster','65fbb0ad-90b3-4de2-a83c-64769a3c0f28','','',NULL), +(208,'m_human_mannequin_ship_jacker_surv_helm','ShopDisplay','UNDEFINED','c8e4118c-2958-48b4-bd7d-01bbcea7995a','','',NULL), +(209,'sc_marine_bdu_pants_01_01_01','Char_Clothing_Legs','UNDEFINED','0806aeb9-4fd5-42e9-89ba-5cda1f7a2a8a','','',NULL), +(210,'Seat','SeatAccess','UNDEFINED','8240c600-fd1b-436c-abaf-b5521c523b97','','',NULL), +(211,'RSI_Constellation_Phoenix_Thruster_Turbine_Front','ManneuverThruster','JointThruster','0515e9c4-4fe8-4a96-9ada-f530d233dc02','','',NULL), +(212,'Table_ORIG_600i_Dining_4','Usable','UNDEFINED','9f194498-a034-4548-90c7-69001f905413','','',NULL), +(213,'Ketchum Beanie Seagreen','Char_Clothing_Hat','UNDEFINED','bc050f2b-b0a3-48f0-8891-926536346507','','','Complete your cool-weather wardrobe with the classic Ketchum beanie from Alejo Brothers.'), +(214,'Martel Dress','Char_Clothing_Torso_1','UNDEFINED','7f2e87a5-dcb3-4be5-93ed-ebb640fa7b5d','','','Carrying Capacity: 2K µSCU\n\nThis open-front grey dress from Dyna Lei reveals a draped, checkered layer offset by gold trim beneath its wide cinched belt. The finished look is paired with black bodysuit and a fetching handkerchief to complete the ensemble.\n\nMen\'s sizes currently not available.'), +(215,'Door Control','ControlPanel','DoorPart','ebca738c-3b2d-45e2-9d14-ba95a6a79411','','',NULL), +(216,'Defiance Arms Firestarter','Armor','Arms','4470ccc2-74ae-473c-bbf5-e6e67169982f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nIncorporating the same manufacturing know-how and expertise that the UEE Marines have come to rely on, Clark Defense Systems has designed their civilian-line of Defiance heavy armors to stand firm in the face of even the most adverse combat scenarios with its three-star rated protective plating and fully integrated mobility framework.'), +(217,'Corundum','Cargo','Cargo','cdb60e1c-0889-4c5b-8d1e-07a3d2f91cae','','',NULL), +(218,'ForceFlex Undersuit Black/Orange','Armor','Undersuit','8a7b17d2-7199-4423-9afd-1740673c81d0','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nVirgil\'s ForceFlex is the next generation in undersuit technology. Rated for combat as well as industrial work, you can rest assured that the comboweave will keep you protected in whatever situation you put it through.'), +(219,'LightBlossom','PowerPlant','Power','a117d541-aa61-49fd-ae53-469b0fdf7ccd','','','Item Type: Power Plant\nManufacturer: Sakura Sun\nSize: 1\nGrade: C\nClass: Civilian\n\nFeaturing stylish design and strong performance, the LightBlossom is a worthy addition to Sakura Sun’s line-up, continuing the reputation the conglomerate has for making everything and making it well.'), +(220,'MASTER_bottle_carryable_1h','Cargo','UNDEFINED','9e87c6a6-4cde-43a3-bec0-b1a5ca8df356','','',NULL), +(221,'Door Control','ControlPanel','DoorPart','faedef83-c869-4297-a388-60ef776ed3d1','','',NULL), +(222,'Edgewear Pants Purple','Char_Clothing_Legs','UNDEFINED','a35606af-38cb-4abc-a4c0-73db74ef0b88','','','Carrying Capacity: 4K µSCU\n\nStegman\'s Edgewear utility clothes are made from reinforced nylon weaves and lined with temperature-rated quilted technology to provide you with a little extra protection while on the jobsite. Double knees, reinforced joint pads and extra pockets add comfort and durability to this field-tested and worker-approved clothing line.'), +(223,'RSI_Constellation_Andromeda_Thruster_Turbine_Front','ManneuverThruster','JointThruster','ce0b433b-8221-42e8-a969-fd97c67da844','','',NULL), +(224,'WeaponMount_Gun_S1_DRAK_Cutlass_Steel','WeaponMount','WeaponControl','ec1414ad-644c-43f8-9680-65944f2de131','','',NULL), +(225,'Door Control','ControlPanel','DoorPart','1a1f57cb-24c7-4b4a-92f0-41026893bcfa','','',NULL), +(226,'Baru Gloves Viridian (Left Only)','Char_Clothing_Hands','UNDEFINED','ac9cf610-bde5-45a9-9f26-90b67cd76da8','','','Ensure you hands are always dry and at the right temperature with the Baru gloves. An advanced sensor system protected by a metal plate on the back of the hand monitors and regulates conditions within the glove. A patented synthetic leather woven with special microfibers works with the sensors and a strap cuff provides a snug fit.'), +(227,'Armor_Crate_CZ_Firerat_002','Usable','UNDEFINED','8191ec7f-ae03-400e-a274-a1cdde0630a7','','',NULL), +(228,'Col_A_Airlock_Tube_Door_Double_Int_NoNav','Door','AirlockPart','a71277af-2a38-46ce-a626-51df13ac2fb0','','',NULL), +(229,'DRAK_Cutter_Thruster_Addon','Misc','UNDEFINED','4af99c0c-ef18-45b6-a85a-6a78d75a32d5','','',NULL), +(230,'Construction Rubble','Cargo','Cargo','65a60582-feb1-46f3-ab88-6e62c6a2517f','','','Can be processed at refineries into Construction Material.'), +(231,'Placeholder - SPV Jacket','Char_Clothing_Torso_1','UNDEFINED','179604be-2009-49b8-a18d-8f1be7aa69b0','','','Placeholder - SPV Jacket Desc'), +(232,'MISC_Fury_Thruster_Main_Bottom_MX','MainThruster','JointThruster','c4fafcd7-e7b1-4f23-84ec-0a17c50616fe','','',NULL), +(233,'Defiance Legs Sunchaser','Armor','Legs','94beda1c-19cd-4212-ba3f-dcb497e7f911','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nIncorporating the same manufacturing know-how and expertise that the UEE Marines have come to rely on, Clark Defense Systems has designed their civilian-line of Defiance heavy armors to stand firm in the face of even the most adverse combat scenarios with its three-star rated protective plating and fully integrated mobility framework.'), +(234,'Venator Boots Sleet','Char_Clothing_Feet','UNDEFINED','2f624955-b713-449b-b8f1-489b6cc4d069','','','Whether you need to run or stand your ground, these rugged, lightweight all-terrain boots with reinforced uppers and acid-resistant tru-grip soles are the perfect choice. The Sleet version is dyed a well-worn grey to keep you subtle, but not unsightly.'), +(235,'Creese Skullsnap Jacket','Char_Clothing_Torso_1','UNDEFINED','6dcd61c2-6a3b-437e-85cc-b3c4e33c6795','','','Carrying Capacity: 1K µSCU\n\nThe Vaporwear Creese is an ocan jacket featuring an old-Earth collar and tags around the shoulders. Armored shoulder accents and ventilated sleeves provide protection without restricting movement, allowing the jacket to be worn casually or piloting an open canopy vehicle. The special Skullsnap edition is a slick silver with geometric stylings and a screaming skull on the back.'), +(236,'Blood_Decal_Splatter2','Decal','DoorPart','4338280b-b7d4-4eb4-927c-f9702342bd38','','',NULL), +(237,'UrbEx Boots Dawn','Char_Clothing_Feet','UNDEFINED','bc842c39-1fbd-4a65-b466-351f6ec72069','','','From bustling backstreets to crowded clubs, the UrbEx boots will make your next step a bold one. The boots blend a stylish design with reinforced high ankle support and ultra durable outsoles.'), +(238,'Door_ChipReader_Prelude_Access','Door','UNDEFINED','f29dd944-a5fe-4dd1-83cf-c661fc69ed07','','',NULL), +(239,'Weapon_Rack_Cz_Firerat_005','Usable','UNDEFINED','bb22ff73-2bba-4885-9e28-e9cac1f1219c','','',NULL), +(240,'Hyperion','QuantumDrive','UNDEFINED','aaf32974-612a-4287-a2ba-98f590b193a1','','','Item Type: Quantum Drive\nManufacturer: RSI \nSize: 1\nGrade: B\nClass: Civilian\n\nIn honor of the name, the first test flight destination for this popular RSI quantum drive was the similarly named satellite of Saturn.'), +(241,'RCMBNT-PWL-1','InventoryContainer','Cargo','3836161f-d7a4-4792-b43e-2bdea8294bcc','','','An imprint recombinant sample created from CTLST-PWL and REAGENT-01 as part of Dr. Logan Jorrit\'s Project Hyperion experiment.'), +(242,'Railing_Straight_4m_Lowtech_Catwalk_B','Usable','UNDEFINED','1f20b871-7e19-4435-9053-ed02f261e1a1','','',NULL), +(243,'RSI_Apollo_OC_Right_Tier_1','Room','UNDEFINED','4a92b421-176a-b058-a2e8-5d5aa20183b2','','',NULL), +(244,'Vesta','QuantumDrive','UNDEFINED','5d57c71c-7122-4567-86ee-0936091ee182','','','Item Type: Quantum Drive\nManufacturer: Juno Starwerk\nSize: 3\nGrade: D\nClass: Industrial\n\nEnsure your goods get to where they need to go with the Vesta quantum drive. Juno Starwerk specifically designed the component to handle all the trials and tribulations of the long haul.'), +(245,'HRST_LaserScatterGun_Ventilation_S3','WeaponAttachment','Ventilation','8c862c60-1f8d-462a-a939-d58687036116','','',NULL), +(246,'Hephaestanite','Cargo','Cargo','5bdc83bd-4093-4e93-994d-5f5cf056609f','','',NULL), +(247,'Prim Shoes Sienna','Char_Clothing_Feet','UNDEFINED','02406d0f-eb4d-4976-8764-2cfff4c56745','','','Professional yet casual, the Prim utilizes cutting-edge synthetic construction to provide maximum comfort and a shine that won\'t fade.'), +(248,'Testudo Helmet Deathblow','Armor','Helmet','51a0c0bc-a673-42d5-bba7-9441d4b6e775','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBased on Quirinus Tech\'s Testudo medium combat armor, the Deathblow variant has received unauthorized aftermarket modifications. The helmet features a wide faceplate and a durable outer shell that protrudes above the forehead in a way specifically designed to absorb and efficiently disperse the energy of impacts.'), +(249,'Helix II Mining Laser','Mining','Gun','3bcde69d-3e3a-4f78-b2cb-8189b349e4d2','','','Manufacturer: Thermyte Concern\nItem Type: Mining Laser \nSize: 2\n\nOptimal Range: 30m\nMaximum Range: 90m\n\nMining Laser Power: 1020 - 4080\nExtraction Laser Power: 2590\n\nModule Slots: 3\n\nResistance: -30%\nInert Material Level: -40%\n\nOptimal Charge Window Size: -40%\n\nTo some, the effective use of the Helix II has become a sign of a true mining professional. Thermyte Concern gave the laser impressive power that can bypass a deposit\'s resistance but also requires precision handling to hit the optimal charge window. Best deployed at close range, Helix II features three module slots so miners can tailor the laser to their liking.'), +(250,'Prowler Torchbearer Livery','Paints','UNDEFINED','c32bebb4-4519-439e-800c-604f7c902250','','','A special shimmering finish makes the Torchbearer livery either orange or red depending on the angle your viewing the Prowler.'), +(251,'Tempo Jacket Silver','Char_Clothing_Torso_1','UNDEFINED','60f01e05-cacd-4671-8984-562760a6ad82','','','Carrying Capacity: 1K µSCU\n\nFashionable, fun and flashy, the Tempo is a quilt studded jacket featuring a unique metallic finish to make you stand out from the crowd. 987 balanced this bold design with sections of synthetic leather and complementary colors ringing the waistband and inner collar.'), +(252,'Sabre Starlight Livery','Paints','UNDEFINED','80ac0aec-d3ba-42a5-ba4e-454f313d5467','','','An elegant black with chrome highlights, the Starlight livery brings a subtly striking and timeless look to the Sabre.'), +(253,'BR-2 Shotgun','Weapon','Medium','70fba024-7de1-4b3e-b169-256a77cc080f','','','Manufacturer: Behring\nItem Type: Shotgun\nClass: Ballistic\n\nMagazine Size: 12\nRate Of Fire: 75 rpm\nEffective Range: 15 m\n\nAttachments: Optics (S1), Barrel (S3), Underbarrel (S2)\n\nOriginally designed for the military, Behring decided to sell the BR-2 ballistic shotgun to the general public after the initial weapon testers kept requesting to take one home. Featuring a semi-auto fire mode that can rapidly deliver devastating stopping power, the BR-2 is the ideal choice for both offensive and defensive operations.'), +(254,'Door Control','Door','UNDEFINED','5e8b6fc5-c23f-4d69-afb2-dcab9e01fe3a','','',NULL), +(255,'ESPR_LaserCannon_Ventilation_S5','WeaponAttachment','Ventilation','de755665-7c6b-4fd6-b9df-999b58e4d53d','','',NULL), +(256,'Artimex Core Canuto','Armor','Torso','3651e503-7472-4fdf-910b-9c824be497be','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.'), +(257,'Dust Devil Armor Legs','Armor','Legs','88c0468f-9ef6-4ed1-87c2-725db632ddd2','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -85 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nSalvaged ship parts and pieces of disused protective gear were welded together to make this intimidating armor set. Paired with a decorated leather belt'), +(258,'Radar','Radar','MidRangeRadar','05166c08-0e57-47ca-be82-7b8aee16e831','','','@item_Desc_RADR_Default'), +(259,'SoftLock_Terminal_Standard_Starfarer_Fuel_Pods_Ship_L3','Display','UNDEFINED','507be7a1-0a1e-44e2-9e2f-ddf16e7f20c2','','',NULL), +(260,'Stud','Char_Head_Piercings','UNDEFINED','31452915-0824-40c9-a180-919d0a81cd37','','',NULL), +(261,'Seat','Usable','UNDEFINED','13d5bd64-0a06-4e69-ba2b-3b6adaaeb1cd','','',NULL), +(262,'MISC_Starlancer_Elevator_Exterior_Gate','Door','UNDEFINED','ef9da812-8ff1-4d62-8ff8-3e231dcde497','','',NULL), +(263,'Wuotan Seed','Misc','Harvestable','9b7febe0-9594-4637-941f-90b850aeef9b','','','Harvested from the wuotan plant, these seed pods become bioluminescent when ripe to draw attention and encourage their spread. They are often collected to utilize as a natural light source.'), +(264,'Seat','SeatAccess','UNDEFINED','0c72fc1c-814a-424c-b410-3f54f2248d4e','','',NULL), +(265,'Chiron Core','Armor','Torso','c01a3ba9-8c23-4ca2-b380-4442ae2a89de','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -32 / 62 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\nBackpacks: Light\n\nBe the first on the scene with the Chiron armor. Designed to provide the essential protection that combat medics need, the armor features ultra-lightweight paneling to keep the wearer quick on their feet without compromising on safety. Crucial, high-impact sections have been reinforced with raised carbon plating on top of a highly durable polyfiber for maximum flexibility.'), +(266,'Clempt Pants Orange','Char_Clothing_Legs','UNDEFINED','2238c239-5b44-4645-86db-c0e0afd6c2ee','','','Carrying Capacity: 2K µSCU\n\nStegman\'s factory pants have been taken to the next level with the Clempt line. These rugged all-purpose pants come with double knees for extra comfort and protection and are made from tough composite weave fabric to last as long as the work needs.'), +(267,'Aril Backpack Red Alert','Armor','Backpack','2ffe84b3-a881-4b82-bb1d-9cbf3b1e340c','','','Item Type: Medium Backpack\nCarrying Capacity: 85K µSCU\nCore Compatibility: Medium & Heavy\n \nOriginally designed for miners, the Aril armor comes with an attachable backpack that can accommodate a variety of tools and supplies to keep your hands free. The Aril backpack is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(268,'Door Control','Door','UNDEFINED','bcf908b2-10c8-4990-a001-087352ab10a2','','',NULL), +(269,'DockingTube_Fuel_Ports_RSI_Constellation_Andromeda','DockingCollar','UNDEFINED','8e7e0363-84da-42b2-b800-c4c0ce4f974b','','',NULL), +(270,'Carryable_2H_CY_container_ore_1_short_a','Misc','UNDEFINED','51c28492-977b-4f57-86a7-a2fe815294ae','','',NULL), +(271,'Internal Tank','QuantumFuelTank','QuantumFuel','a9f08dfe-cb58-4d03-bb4a-decf6b02dfba','','',NULL), +(272,'BEHR_LaserCannon_PowerArray_S5','WeaponAttachment','PowerArray','4e8e5fe3-5fad-4ab9-a583-c37aaa4e5693','','',NULL), +(273,'XNAA_SanTokYai_Gills_Right','AttachedPart','UNDEFINED','8110a394-5f2b-495e-b733-1dd374026447','','',NULL), +(274,'Flight Blade','FlightController','UNDEFINED','12d6241a-7151-4c05-ad82-316b32b0aa3c','','',NULL), +(275,'Inquisitor Arms White','Armor','Arms','c4d91251-ef35-425d-ac6a-4c40f653f304','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(276,'Tuvois Jacket Orange','Char_Clothing_Torso_1','UNDEFINED','bbad4646-c86e-43a7-b95c-bed0acb38213','','','Carrying Capacity: 1K µSCU\n\nCreated in collaboration with legendary designer Avon, OpalSky is proud to unveil the Tuvois, an open vest featuring stark, bold styling that\'s destined to make an impression. \n\nWomen\'s sizes currently out of stock.'), +(277,'Iron','Cargo','Cargo','026dd443-f17b-45bf-b18d-fbdef6e8c7b3','','',NULL), +(278,'MISC_Starlancer_TAC_Camera_Turret','Misc','UNDEFINED','630f4a6f-514b-47ea-ba55-7bd46f1db42d','','',NULL), +(279,'Gladius Frostbite Camo Livery','Paints','UNDEFINED','a6ff2516-37d6-49ee-95cf-fde3d8de85e5','','','Soar like the winter winds with the Frostbite Camo livery for your Gladius.'), +(280,'expo_display_shirts_and_hats_argo','ShopDisplay','Default','bcd53c7f-6faf-46d5-b5e2-d90b80d46cd2','','',NULL), +(281,'Weapon_Rack_1_VOLT_LMG_AmmoOnly_001','Usable','UNDEFINED','5c12aaff-1fb8-4c44-b90f-f4fdde6ac7f0','','',NULL), +(282,'Scorpius Antares PHB Flight Blade','FlightController','UNDEFINED','b8ca88ad-79fe-4220-8647-8ea9b2dbd403','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your RSI Scorpius Antares with the PHB Flight Blade from Broad & Rabiee. By re-allocating forward thrust resources, you can expect your ship deliver increased precision handling during tight maneuvers.'), +(283,'AEGS_Javelin_Xenothreat_wall','Misc','UNDEFINED','6c3681a1-a4c0-4e74-9cbd-ede8ce3fc7ce','','',NULL), +(284,'Elevator Control','Door','UNDEFINED','ff7ccea6-2fc6-4669-8696-8bd7617897ee','','',NULL), +(285,'TrueDef-Pro Legs','Armor','Legs','2816e88f-f39c-4187-9da3-96807712a9b9','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.\"'), +(286,'Zip','Misc','Harvestable','92077314-eb31-465b-8828-8d231b85fb96','','','Zip is a hyper-accelerant that when added directly to the bloodstream, \"supercharges\" the user\'s nervous system causing sensory hallucinations such as colors become more vivid and hearing sounds that aren\'t there. These effects tend to make users seem to be in constant motion and easily distracted.'), +(287,'Door Control','Door','UNDEFINED','c340128a-af9d-4518-8f7e-b5267e576e67','','',NULL), +(288,'Omnitrek Jacket Sandbar','Char_Clothing_Torso_1','UNDEFINED','779f9ff9-f023-47ee-9004-113d8183d284','','','Carrying Capacity: 1K µSCU\n\nBe ready for anything with DMC’s Omnitrek, the survival jacket designed for maximal performance in adverse weather conditions with the addition of the water-resistant collapsible collar. The Omnitrek also provides numerous storage options across both sleeve and chest pockets.'), +(289,'Arclight \"Nightstalker\" Pistol','Weapon','Small','cdf93f20-7fec-4a8f-a284-09a18a1b8969','','','Manufacturer: Klaus & Werner\nItem Type: Pistol\nClass: Energy (Laser)\n\nBattery Size: 30\nRate Of Fire: 300 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nA handheld laser made famous as Kyle Fenris’ sidearm on the hit vid show The Frontier, the Klaus & Werner Model II Arclight has become extremely popular on the civilian market. Despite its media appeal, the Model II offers a higher rate of fire than any of its ballistic counterparts. While that may diminish the weapon\'s stopping power, its power cell offers more than enough shots to finish the job.'), +(290,'Creese Jacket','Char_Clothing_Torso_1','UNDEFINED','23b0a448-5c10-4f51-9b0c-5e10c4068d63','','','Carrying Capacity: 1K µSCU\n\nThe Vaporwear Creese is an ocan jacket featuring an old-Earth collar and tags around the shoulders. Armored shoulder accents and ventilated sleeves allow the jacket to be worn casually or piloting an open canopy vehicle.'), +(291,'Morozov-SH Arms Snowdrift','Armor','Arms','5da17f91-240e-4584-8c50-d3b38fa31c89','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(292,'Adiva Jacket Green','Char_Clothing_Torso_1','UNDEFINED','a723b4e0-f764-4fa2-89d8-b5ec82f749d3','','','Carrying Capacity: 1K µSCU\n\nDefine your ultimate you. The Adiva is an asymmetrical pullover with bold mixed-materials and solid reinforced trim.'), +(293,'AEGS_Retaliator_Thruster_Main','MainThruster','FixedThruster','854c8869-c54a-45e9-8e4b-99363eaffc90','','',NULL), +(294,'Oracle Helmet Black','Armor','Helmet','0907f3f9-ef08-446f-8a0c-003876d53bf9','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(295,'Inquisitor Legs Yellow','Armor','Legs','5134ba67-3c3c-4a72-99af-e7641c4d1a69','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(296,'Libio Jacket Orange','Char_Clothing_Torso_1','UNDEFINED','13960fb4-de5c-4cb7-80e3-c3a273a559fc','','','Carrying Capacity: 1K µSCU\n\nOne of OpalSky\'s classic pullovers, the Libio features a two-tone asymmetrical pattern and polyweave blend to keep it elegant and striking every time you wear it.\n\nWomen\'s sizes currently out of stock.'), +(297,'Door Control','ControlPanel','DoorPart','3913f72a-ead2-46ad-97a1-6ff41f5a78c7','','',NULL), +(298,'ANVL_Paladin_Thruster','ManneuverThruster','UNDEFINED','f8e24e2a-2d6f-4ddc-a878-b3bf61587954','','',NULL), +(299,'Artimex Legs Red Alert','Armor','Legs','d4d203a9-5169-4b86-8b63-e169e8cbbb9d','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.'), +(300,'JOKR_DistortionCannon_PowerArray_S2','WeaponAttachment','PowerArray','f73942ed-d8b7-4d11-9e35-68e1afd70438','','',NULL), +(301,'Cyan QuikFlarePro','Weapon','Grenade','d2e37335-ba9d-429b-9854-b4d93e43e19b','','','Manufacturer: Shubin Interstellar\n\nIlluminate the way forward or signal for help with the Cyan QuikFlarePro from Shubin Interstellar. For centuries, miners have counted on this flare as part of their core toolkit, thanks to its tried and true design and durability that ensures it stays ablaze in the various harsh weather and difficult atmospheric conditions encountered across the \'verse. The QuikFlarePro uses advanced tech to glow longer than regular flares.'), +(302,'Sol Detox Smoothie','Drink','Bottle','43f02e2a-91bd-48fa-9605-14cb1afd8ca3','','','HEI: 39\nNDR: 15\nEffects: Immune Boosting\n\nGarcia\'s Greens Sol Detox Smoothie is a blend popularized in the capital and carefully formulated to purify and cleanse.'), +(303,'Cirrus Boots Yellow','Char_Clothing_Feet','UNDEFINED','10d3f0ac-e8de-4200-a3c6-10582d66211a','','','Temp. Rating: -35 / 15 °C\n\nThese rugged, high ankle boots will keep your feet warm when venturing into wintry conditions. The Cirrus also integrates steel alloy links into the sole for added traction on icy surfaces.'), +(304,'Arden-SL Arms','Armor','Arms','8e429569-4dc8-4cbf-81ba-7c3dbd8e4e71','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics.'), +(305,'Degnous Root','Cargo','Cargo','f82b890a-5bd4-48f3-b099-d5da66c73345','','',NULL), +(306,'Door Control','Door','UNDEFINED','657ce681-5548-40dc-a27e-144ebe639f8e','','',NULL), +(307,'Davin Work Gloves Twilight','Char_Clothing_Hands','UNDEFINED','14a85a12-6635-45d2-a7aa-cf9a52ad2a1c','','','Field-tested for over fifty years, you can find Davin work gloves at numerous sites and ships around the Empire. Stegman\'s rugged construction and comfort lining have made them a customer favorite.'), +(308,'Agricium','Cargo','Cargo','541740b1-66ae-496c-a88a-cc1b0028745d','','',NULL), +(309,'T.A.B.A. Container Model','Misc','Flair_Wall_Picture','9b956ea3-e7ed-46ca-85fb-18793979f70f','','','There\'s no need for a tractor beam to move this cargo container. This finely detailed model features T.A.B.A. Freightline branding with the company\'s logo and grey color scheme.'), +(310,'Safehab','LifeSupportGenerator','UNDEFINED','748aa523-77af-462e-93bb-4d6a4627f66b','','','Item Type: Life Support\nManufacturer: Aegis Dynamics\nSize: 4\n\nThis capital-class life support system was designed specifically for the Idris frigate.'), +(311,'Oracle Helmet Pariah','Armor','Helmet','43b057f4-38db-486b-b153-2ab4d33ce56c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(312,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','49f405a8-e9e6-47b1-a091-85989d39df68','','','Joker Defcon - Noise Launcher'), +(313,'Nyman Jacket Orange','Char_Clothing_Torso_1','UNDEFINED','e2275ae2-6087-40ab-b3d2-69cb9d575498','','','Carrying Capacity: 1K µSCU\n\nOpalSky\'s Nyman light pullover is perfect to have on hand when lounging poolside or on those chilly nights.'), +(314,'Inmate Workpack','Armor','Backpack','80674bc3-0798-45cc-9bc0-3a46cb140f91','','','Item Type: Light Backpack\nCarrying Capacity: 50K µSCU\nCore Compatibility: All\n\nThis sturdy Inmate Workpack provides ample storage capacity and evenly distributes weight across the wearer\'s back allowing them to carry more during every shift. It also features secure bottom straps to allow you to determine oxygen tank size on a per inmate basis, minimizing escape risk.'), +(315,'Seat','Usable','UNDEFINED','6360bc11-e3e6-4145-a080-9da53c77c90f','','',NULL), +(316,'Door_Ship_Sensor_Proximity_Toggle','Sensor','DoorPart','8b13345c-5487-4db3-a4ab-924d3d430183','','',NULL), +(317,'ATLS Ironside Livery','Paints','UNDEFINED','6c3eede4-e767-4ed2-a818-0bcad1afa164','','','Embody the strength of the ATLS power suit with Ironside livery.'), +(318,'fruit_tray_2_d','Misc','UNDEFINED','02876f36-7d58-4ec7-a1db-326bcbb5b5d2','','',NULL), +(319,'Seat','SeatAccess','UNDEFINED','88993b8a-f2bc-4e00-bf27-641db90aa3d6','','',NULL), +(320,'Outback Core Molehill Brown','Armor','Torso','ffe71b31-f0ab-44f3-8ee7-aa4cf91f0ded','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -65 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2k µSCU\nBackpacks: Light\n\nThose on the frontier know that survival is paramount. The tough and lived-in Outback Armor is hewn from reinforced leather, with a thick hooded cowl neck and layered skirting. With the necessary gear, there\'s no guarantee that you\'ll live to see another day, but now you\'ve got a fighting chance. The Molehill version is dyed a neutral brown to keep you subtle, but not unsightly.'), +(321,'Weight_Rack_Dumbbell_1_c','Misc','UNDEFINED','4ff0264d-4006-45a3-b9be-d72f11742796','','',NULL), +(322,'DRAK_Cutter_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','e1fc094b-d985-4384-8e91-bdc41b615e3f','','',NULL), +(323,'Kaswal Jacket Sand','Char_Clothing_Torso_1','UNDEFINED','b364b092-7cd2-4f4e-96a9-819bd9d6690c','','','Carrying Capacity: 1K µSCU\n\nDMC’s Kaswal is a cold-weather jacket designed with additional lining throughout the chest and sleeves for added warmth and comfort.'), +(324,'Siebe Helmet Beachhead','Armor','Helmet','c42cf235-268a-407c-ba7f-e586f37ed1e2','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nDurability and a classic aesthetic combine with the Siebe helmet; designed by Caldera to thrive amidst extreme conditions found both in space and atmosphere. Resilient yet lightweight plating and an impact resistant visor provide premium protection, while an integrated monitoring system helps protect the wearer from environmental fluctuations.'), +(325,'MSD-212 Missile Rack','MissileLauncher','MissileRack','b684b116-ba0d-41fb-82fb-720ecd6d4d21','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 2\nMissiles: 1xS2\n\nBehring’s MSD-212 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 2 hardpoint for the reliable and effective launch of one S2 missile.'), +(326,'FP_TV_Visor','Visor','UNDEFINED','17eb6935-15e3-4d9f-a862-2db6a6050146','','',NULL), +(327,'Seat','Usable','UNDEFINED','8cf405d0-ae78-4336-99f2-b0931a1a69f1','','',NULL), +(328,'Door','Door','UNDEFINED','14c15f96-7906-4d23-a179-64240f70577c','','',NULL), +(329,'CRUS_Starlifter_SCItem_Turret_Seat_Right','Seat','UNDEFINED','f0e7b6bf-9035-4ff6-8c39-1db071ec0f8f','','',NULL), +(330,'AAT-34 Turret','Turret','MannedTurret','91c95df0-082f-49c1-ae5d-e113ccf7d059','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(331,'Revenant Gatling','Weapon','Gun','8bd04e05-8694-4f25-801f-a92c2a6b0169','','','Manufacturer: Apocalypse Arms\nItem Type: Ballistic Gatling\nSize: 4\n\nIf it ain’t broke, don’t fix it. And if you want it broke, aim a Revenant at it. Solidly built on a foundation of centuries-old tech, Apocalypse Arms puts an innovative spin on battle-tested designs to create a rugged ballistic Gatling that can steadily hurtle death across the void. Though it’s slow to spin up and cool down, the Revenant’s dependability makes it a favorite for those expecting to find trouble.'), +(332,'DRAK_Caterpillar_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','9e2c12c7-e282-40fc-94c2-b5d76759ebbf','','',NULL), +(333,'TRGT. STATUS','Seat','UNDEFINED','a87937c9-f96f-49a1-b384-c6e6830e7a7c','','',NULL), +(334,'MacFlex Backpack Canary Yellow','Armor','Backpack','5efb60f7-0296-4f1f-8871-f4548ae67727','','','Item Type: Light Backpack\nCarrying Capacity: 50K µSCU\nCore Compatibility: All\n\nThe MacFlex Backpack is a back-mounted hard-shell case that provides extra commodity storage options. Whether bringing extra supplies on a long excursion or filling it with ore after a successful mining run, the MacFlex Backpack will be there to carry the load.'), +(335,'CRUS_Star_Runner_Dashboard_Pilot_Right','SeatDashboard','UNDEFINED','e37515b7-799e-48bd-a8dc-f9624c3090cf','','',NULL), +(336,'DockingTube_Fuel_Ports_GRIN_STV','DockingCollar','UNDEFINED','f2b13d68-ebf6-4dfc-8a23-0e8b267ffb07','','',NULL), +(337,'Revenant Pod','Cargo','Cargo','233a1be4-4ea2-4fcc-8c07-b2da47684c51','','',NULL), +(338,'AEGS_Raven_CML_Flare','WeaponDefensive','CountermeasureLauncher','efaf7676-0555-4d24-bab3-41012ba98395','','','@LOC_PLACEHOLDER'), +(339,'ORIG_30i_Weapon_Mount','Misc','UNDEFINED','dadb0069-0257-40a4-8d6c-07ae5cf45eac','','',NULL), +(340,'H_Dashboard_Projector_HUD_VNCL_Stinger','Display','UNDEFINED','22c6ad57-6f63-4dba-8f9d-7057b3e4d610','','',NULL), +(341,'MacFlex Legs Black','Armor','Legs','176870b5-382f-4ac9-aea3-672534424433','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(342,'Ma\'s Ready to Eat Fish Home Stew','Food','Tin','e2268429-391c-49d4-93b1-2ff86a34b752','','','NDR: 36\nEffects: Dehydrating, Hyper-Metabolic\n\nMa\'s Ready to Eat Fish Home Stew has the classic taste you love and the convenience your busy life demands.'), +(343,'Pitambu','Cargo','Cargo','bbddb1be-6a54-4fb0-b435-844bb436357d','','',NULL), +(344,'Internal Tank','FuelTank','Fuel','8dcf0acf-25d1-4995-9514-e091e138d3d3','','',NULL), +(345,'Corsair Eternity Livery','Paints','UNDEFINED','d0a4999e-18c4-4bf0-b7ab-0bd6ac08dc39','','','Become one with the darkness of space with the Eternity livery for the Corsair, which is black with subtle red accents.'), +(346,'Strata Arms Lodestar','Armor','Arms','ac489d5c-a45b-4b1d-ad5d-4d51d6083a76','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres.'), +(347,'Seat','Usable','UNDEFINED','3d5a13ee-c1fa-46a9-8668-acf6454ff960','','',NULL), +(348,'Door','Door','UNDEFINED','f2ef063b-a030-402a-b2ee-6530792a85e5','','',NULL), +(349,'Seat','SeatAccess','UNDEFINED','4a8a6d1b-c1fa-4367-9e91-25661fdb151a','','',NULL), +(350,'Ht_AirlockDoorPanelScreen_Fake','Misc','UNDEFINED','bf0daaf3-7425-4aee-8c46-590be5c09cbb','','',NULL), +(351,'IndVest Jacket Imperial','Char_Clothing_Torso_1','UNDEFINED','a74f9666-f7d4-4e21-abed-400174af6d93','','','Carrying Capacity: 5K µSCU\n\nKeep your tools within easy reach with Stegman\'s IndVest. Made from industrial strength materials, this is a rare jacket that\'s both stylish and sensible.'), +(352,'UNE Gold Ingot (Damaged)','Misc','UNDEFINED','75108e51-f04e-4f9a-a5e2-0dfbdf513728','','','A heavily damaged gold ingot cast by the United Nations of Earth (UNE). These ingots were used in areas of the UNE where technological issues often hampered secure and instant money transfers. Broken but still rare, an elaborate, textured pattern is still apparent on the ingot.'), +(353,'Access','SeatAccess','UNDEFINED','74678286-b084-4a0c-bbe4-5bcb7714d0a9','','',NULL), +(354,'F55 \"Mark I\" LMG','Weapon','Medium','8260cda3-1bbf-4f0e-9162-0bd921b5ff4d','','','Manufacturer: Gemini\nItem Type: LMG\nClass: Ballistic\n\nMagazine Size: 150\nRate Of Fire: 1000 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S2), Barrel (N/A), Underbarrel (S3)\n\nFeaturing an explosive rate of fire that tops at a 1000 rpm and Gemini\'s sleek and professional styling, the F55 is a light machine gun for discerning clientele who want the \'verse to know that they are not to be trifled with. \n\nThe Mark I edition features a white finish with blue and red highlights.'), +(355,'Internal Tank','QuantumFuelTank','QuantumFuel','9815d0b9-cf92-47f7-9ad7-b87c6067b3c2','','',NULL), +(356,'ANVL_F7CR_Mk2_LeftAntenna','Misc','UNDEFINED','3a80ec3f-7d3d-442a-8b0c-4bcc8ccc1d3c','','',NULL), +(357,'Overlord Arms Mirador','Armor','Arms','2a76ac41-a1e3-4b66-97f9-b829c7d7140a','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.\n\nThe Mirador edition is white with burnished copper elements.'), +(358,'Amioshi Plague','Cargo','Cargo','b6e11c93-537a-4d86-bb70-53c03f5bf8e1','','',NULL), +(359,'Lillo Pants Red','Char_Clothing_Legs','UNDEFINED','f9394ae7-6eab-4f45-b4c0-4bd6a10f2890','','','Carrying Capacity: 0.5K µSCU\n\nThese slim cut pants from Fiore give you a tailored feel at a fraction of the cost. Built from space-age weaves, the Lillo are a low maintenance, high impact addition to your office wardrobe.'), +(360,'Carryable_1H_CY_party_canape_1_a','Misc','UNDEFINED','1359393f-1274-4e26-8342-9a39047b9a6f','','',NULL), +(361,'ARMR_AEGS_Vanguard_Sentinel','Armor','Medium','4a07a7bf-bc94-4f41-9a0b-7ee58fb7c008','','',NULL), +(362,'ARGO_MPUV_Thruster_Aux_Fixed_Front_03','ManneuverThruster','FixedThruster','4f0e0b30-404a-4f0c-a194-8681d77ada45','','',NULL), +(363,'HRST_LaserRepeater_FiringMechanism_S3_Storm','WeaponAttachment','FiringMechanism','e1f8b67e-9f79-4133-b5c6-568a4465bd33','','',NULL), +(364,'AEGS_Door_Decal_WallPanel_04','Decal','DoorPart','8ad2bd48-791a-4e81-89e8-41df54650011','','',NULL), +(365,'Li-Tok Boots Red','Char_Clothing_Feet','UNDEFINED','866ee36e-eb00-4978-9f10-30d211168cdb','','','Stylish yet rugged, NorthStar\'s Li-Tok boots are made from a composite nylon fabric, vulcanized rubber grips that hold fast to a variety of surfaces, and reinforced ankle support making these perfect for hanging out or on the job.\n\nWomen\'s sizes currently out of stock.'), +(366,'TMSB-5 Gimbal Mount','Turret','GunTurret','fbccf8e2-2085-48c3-bfa8-00226450636d','','','Manufacturer: Behring\nItem Type: Gimbal Mount\nSize: 5\n\nDesigned in conjunction with Anvil Aerospace for use on the F7C Hornet Mk II, this gimbal mount allows for adaptive targeting and is fitted with bespoke twin ballistic gatling guns.'), +(367,'Novikov Backpack Crush','Armor','Backpack','eeaec661-8544-4554-947a-e685fbe6c418','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nConfidently explore cold environments while wearing the Novikov. Caldera designed a spacious backpack to compliment this advanced exploration suit, so those venturing across unknown terrain can bring enough supplies to survive the journey.\n\nThe Crush edition consists of a polished black metal with brushed bronze detailing.'), +(368,'Novikov Backpack Smolder','Armor','Backpack','855aabae-2c59-4a79-9e81-0376f9ddc7f6','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nConfidently explore cold environments while wearing the Novikov. Caldera designed a spacious backpack to compliment this advanced exploration suit, so those venturing across unknown terrain can bring enough supplies to survive the journey. \n\nThe Smolder edition is primarily gray and black with sharp red segments.'), +(369,'Novikov Backpack','Armor','Backpack','6eec764f-f5df-4760-90bc-594c8c16fa86','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nConfidently explore cold environments while wearing the Novikov. Caldera designed a spacious backpack to compliment this advanced exploration suit, so those venturing across unknown terrain can bring enough supplies to survive the journey.'), +(370,'ARMR_AEGS_Vanguard','Armor','Medium','e3f09e0c-909b-4c0c-bcc6-bc4750122594','','',NULL), +(371,'Util_A_Airlock_Door_Ext','Door','AirlockPart','5f5031c2-5f96-4f40-a905-a4627acce93a','','',NULL), +(372,'Sustenance_CoffeeMachine_Lorville_Habitat','Cargo','UNDEFINED','3b48df9e-3f33-4f6e-941b-dff2c8fe639e','','',NULL), +(373,'DRAK_Clipper_Thruster_Main_Aux_Left','MainThruster','UNDEFINED','e3ee0fba-07e2-438c-98ce-d9c99a7db33a','','',NULL), +(374,'Soy Sauce','Misc','UNDEFINED','1d92bb81-eabe-4dab-bf6e-756f008da13d','','',NULL), +(375,'Door Control','Door','UNDEFINED','82e3fef6-d6b2-413c-ac7d-ef592ba9b3cc','','',NULL), +(376,'Door Control','Usable','UNDEFINED','247e4bf9-c7e3-4429-b7b3-c2159851adcc','','',NULL), +(377,'Missile Rack','MissileLauncher','MissileRack','1c31e0ae-b8d4-47b9-ae5b-ad37a6fe04f3','','','Item Type: Missile Rack\nManufacturer: Mirai\nSize: 2\nMissiles: 1xS2\n\nTo make the Fury a threat despite its small size, Mirai developed this bespoke missile rack, which can carry and deploy one S2 missile without undermining the ship\'s compact profile.'), +(378,'Day of the Vara \'54 Coin','Misc','Utility','41c588af-d711-40e6-b720-0cab6dbe46bb','','','Featuring a skeletal handshake on one side and the emblem of the UEE on the other, this green and purple embossed coin has been struck in honor of the spookiest day of the year.'), +(379,'ORIG_85X_Thruster_Mav_Fixed_03_Right','ManneuverThruster','FixedThruster','7380eb71-68de-4087-b92c-187fb8af3c7b','','',NULL), +(380,'Deadhead Helmet','Armor','Helmet','b6113018-f3d2-4ae2-982d-0ef420c74994','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\n\nRemind your enemies that death is coming with the Deadhead helmet. In place of a visor, the ghastly visage of a Human skull, lit from within by an infernal glow, is sure to send any opponent running.'), +(381,'Sadaryx','Misc','Harvestable','51b456cd-e73e-42a8-b36e-0bf6fbe29ce6','','','A durable crystal, sadaryx is commonly used in the production of industrial focal lenses in laser applications.'), +(382,'Highball Glass','Drink','UNDEFINED','8edc4608-96df-46be-b234-8373fb5a9101','','','A tall and narrow drinking vessel made from tempered glassware.'), +(383,'Ares Star Fighter Meridian Livery','Paints','UNDEFINED','8ee4ed66-24ed-46e5-934a-c1ccf1e2e9d2','','','The Meridian livery gives the Ares Star Fighter a simple yet stylish metallic silver finish.'), +(384,'RSI_Aurora_MR_Thruster_Mav_Joint_01','ManneuverThruster','JointThruster','b067d76a-ea8e-49a3-988c-580aa23c90c3','','',NULL), +(385,'P4-AR Magazine (40 cap)','WeaponAttachment','Magazine','1f8845fb-22de-4c73-b6e6-ed1d1b066808','','','Item Type: Magazine\nCapacity: 40\n\nThis magazine for the Behring P4-AR rifle holds fourty 5.56mm cartridges.'), +(386,'Savrilium','Cargo','Cargo','e6876bf2-5675-4f62-b692-26a94113d962','','',NULL), +(387,'Asgard Best in Show 2955 Livery','Paints','UNDEFINED','21e8ead3-4020-4bee-a941-5913f12a7ee9','','','Commemorate the Asgard making the final four of the 2955 Ship Showdown with this striking metallic orange and black Best in Show livery.'), +(388,'Starlancer Mojave Livery','Paints','UNDEFINED','24e50568-f7c9-47e4-870e-33e6ccff4346','','','Turn the Starlancer tan with the Mojave livery.'), +(389,'Strata Helmet microTech Black','Armor','Helmet','93e88edf-36cf-445b-a266-832c78cf9394','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design features high quality materials and a next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The microTech Black variant was made specifically for the company.'), +(390,'Flight Blade','FlightController','UNDEFINED','91dd0aa2-fe69-4721-a55c-bdc54367a50e','','',NULL), +(391,'Thorshu Grey','Misc','UNDEFINED','58401159-8339-4e4c-828e-c8765a6faeed','','','Considered to be quite a delicacy in many restaurants due to the tender meat, the Thorshu can be found in the colder climates of southern Terra. Also was the basis of Waka Grey, the sidekick from a 27th century children’s show.'), +(392,'ARMR_DRAK_Herald','Armor','Medium','91644944-44d9-486c-9141-fb4909f7ee10','','',NULL), +(393,'MASTER_screen_16x9_4_0144x0081_a','Display','UNDEFINED','bb6166b5-711f-44dd-80bb-d9e4238c7579','','',NULL), +(394,'Internal Tank','FuelTank','Fuel','285b8cc7-7683-4408-9135-f7d8001020c5','','',NULL), +(395,'Inquisitor Arms Earthwork','Armor','Arms','fdb9bd1a-236f-4d0f-93e7-8b6a410838d4','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(396,'Helium','Cargo','Cargo','22fa378d-3bb5-427d-b597-ba113343af00','','',NULL), +(397,'Table_Booth_4_Seat_rdwn_a','Usable','UNDEFINED','de1a6233-9a3c-48ce-bca0-bfcba2308ed6','','',NULL), +(398,'Door Control','Door','UNDEFINED','e4240d06-5a8c-4dde-b47f-9f8ea9667994','','',NULL), +(399,'mod_tray_hotdog_1_b','ShopDisplay','Default','4d71778f-2c5f-4fe8-9e84-7ee00a650e4e','','',NULL), +(400,'Silco Shirt Calypso','Char_Clothing_Torso_0','UNDEFINED','9e5e8be5-5b9e-4a72-b228-b7e456cade33','','','With a sleek design and durable material, the Silco Shirt by Habidash is a comfortable shirt that can be conveniently worn either as an undershirt or on its own.'), +(401,'Bed','Usable','UNDEFINED','aecc7ab0-b0a1-47f8-8386-4bfb3efe654e','','',NULL), +(402,'Door Control','Door','UNDEFINED','7d1e3bfb-0f1e-42eb-9807-25621a8a8534','','',NULL), +(403,'Internal Tank','QuantumFuelTank','QuantumFuel','cf5f8095-85f9-478d-9dd9-ef2cfa823546','','',NULL), +(404,'Apollo Tier 2 Module Right','Module','UNDEFINED','4f374a14-98ec-5481-2c07-dd369c257dbe','','','This module contains 2x Tier 2 medical beds.'), +(405,'Seat','Usable','UNDEFINED','47f470c4-ca27-4749-a12a-228760b976c0','','',NULL), +(406,'\'Chaos\' III Missile','Missile','Missile','d4408421-e939-4e34-9902-0644fa6934be','','','Manufacturer: Vanduul\nTracking Signal: Infrared\nSize: 3\n\nNaval flight instructors often include the heat seeking Chaos strike missile in Vanduul attack simulations citing that its speed and strength gives new recruits the proper respect for the enemy they will be facing.'), +(407,'Hydrogen Fuel','Cargo','Cargo','61cace6e-5870-44ff-ae79-c8d06a635e52','','',NULL), +(408,'Avenger Titan PHB Flight Blade','FlightController','UNDEFINED','5428d0f1-4580-430d-aed0-bfde5074aa4f','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Aegis Avenger Titan with the PHB Flight Blade from Broad & Rabiee. By re-allocating forward thrust resources, you can expect your ship deliver increased precision handling during tight maneuvers.'), +(409,'Anvl_Carrack_Cargopod','Door','UNDEFINED','3230a2db-ef48-4377-ba10-d72d46f7c161','','',NULL), +(410,'Glass_Alcohol','Misc','UNDEFINED','51ca26c2-307e-406d-9dbb-3578ea6ba372','','',NULL), +(411,'Flight Blade','FlightController','UNDEFINED','d20c0a8b-075b-4835-ae3a-740f4ceed137','','',NULL), +(412,'Fhaal Fire Kacho','Food','Box','d286214d-fa11-4ee5-97e3-8dcac74987e9','','','NDR: 30\nEffects: None\n\nBig Benny\'s kacho is based on traditional family recipes straight from Corel, combining springy noodles and a rich, warm broth to create a taste enjoyed the \'verse over. The Fhaal Fire flavor takes heat to another level with its bold spice blend.'), +(413,'Harlowe Shirt Olive','Char_Clothing_Torso_0','UNDEFINED','7294b67f-ecbb-4c85-8654-bf97491a1446','','','Capable as being worn on its own or as a base for layers, this long-sleeve henley style shirt from Alejo Brothers keeps you stylish and comfortable.'), +(414,'DoorProximitySensor_3x5x3_Directional_Proximity','Sensor','DoorPart','237e390e-79cf-487e-9309-ec8dd6912b96','','',NULL), +(415,'Book','Misc','UNDEFINED','511b1818-8bbd-49d1-b036-32f01d8298ac','','',NULL), +(416,'Book','Misc','UNDEFINED','504cbea5-06f3-4fef-9550-996efc595306','','',NULL), +(417,'Bantam Hat Badger Bad','Char_Clothing_Hat','UNDEFINED','73bd98d8-8d41-4ff2-8234-375bc9fb72f6','','','The Bantam hat from 987 offers a large bill and cushioned banding for all-day comfort. This version features a Badger Bad logo on the front with a gray back and red bill.'), +(418,'Hull C Bombora Livery','Paints','UNDEFINED','6aa081c4-10e5-4137-b695-bc7d981bd9e2','','','Featuring a color scheme that\'s vibrant blue on the top and a vivid orange on the bottom, the Bombora livery gives that Hull C a strikingly distinct look.'), +(419,'Scourge \"Desert Shadow\" Railgun','Weapon','Large','35e6ac2c-6734-47d7-bc9a-b7e5084dc48e','','','Manufacturer: Apocalypse Arms\nItem Type: Railgun\nClass: Ballistic\n\nMagazine Size: 5\nRate Of Fire: 60 rpm\nEffective Range: 200 m\n\nAttachments: Optics (N/A), Barrel (N/A), Underbarrel (S4)\n\nEqually devastating to larger threats and hostile vehicles, this shoulder mounted railgun from Apocalypse Arms uses electromagnets to deliver its payload accurately over great distances, making it the Scourge of land, air and space.'), +(420,'Samya Tank Moss','Char_Clothing_Torso_0','UNDEFINED','f8502628-b8f3-40ec-8cd6-879d894d7d05','','','This Samya Tank is your perfect staple for hot weather. Made with soft and breathable fabric, it features moisture-wicking technology and reinforced binding at the openings to protect it from wear and tear. A detachable sleeve is included with each shirt.'), +(421,'Bexalite (Raw)','Cargo','Cargo','09dc9bcf-d779-47bf-aab7-e3ed2b4af523','','',NULL), +(422,'DynaFlex','Cargo','Cargo','891e91fd-2203-445c-9b8e-43a86314c6f6','','',NULL), +(423,'Seat','Usable','UNDEFINED','bdff613b-5ab7-4401-8262-0e22954770a3','','',NULL), +(424,'Carryable_1H_CY_utensil_muddler_1_a','Misc','UNDEFINED','221601d6-bdf4-4bb4-8c26-6670d4c586a0','','',NULL), +(425,'Seat','SeatAccess','UNDEFINED','f6f90f04-b5f5-46dd-aaa4-cc9c567ec4e0','','',NULL), +(426,'sc_nvy_bdu_longsleeve_shirt_01_01_01','Char_Clothing_Torso_1','UNDEFINED','553356b7-b384-482e-b488-294637ce5125','','',NULL), +(427,'m_human_mannequin_rsi_suit_06','ShopDisplay','UNDEFINED','c3c39bff-ce53-4cc6-a6ef-b1d7066b79c1','','',NULL), +(428,'MSD-543 Missile Rack','MissileLauncher','MissileRack','d352d236-fd73-4e99-8cc9-83aa4967dac1','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 5\nMissiles: 4xS3\n\nBehring’s MSD-543 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 5 hardpoint for the reliable and effective launch of four S3 missiles.'), +(429,'Laranite','Cargo','Cargo','8b9da2ec-91c4-4342-8609-150923aa8e59','','',NULL), +(430,'Azrael Helmet Sapphire','Armor','Helmet','d6a33301-c34f-44a3-b6ee-cb85fb0f7776','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nWhen flying through the dangerous reaches of space, it\'s common for brave pilots to routinely face down death as part of their every day. Now with the Azrael helmet from CC\'s Conversions you can look the part with the grim visage of a skull peering out from beneath the visor of this otherwise normal looking helmet.\n\nThe Sapphire version casts the skull in a pixelated blue light.'), +(431,'Anvil Noise Launcher','WeaponDefensive','CountermeasureLauncher','9d0c3815-be70-4370-99a6-c2418bca729d','','','Anvil Noise Launcher'), +(432,'Seat','SeatAccess','UNDEFINED','5d870810-6c80-4c27-bce1-6a967c0e53ba','','',NULL), +(433,'Tempus Tank Charcoal','Char_Clothing_Torso_0','UNDEFINED','5fdf0c0b-02b5-425a-b966-1ec2b3480f32','','','This classic tank by 987 is made with moisture-wicking fabric to keep you cool when you\'re at your most active. Each shirt comes with a bracer and a bandolier to create a bold and aggressive style.'), +(434,'SCItemDisplayScreen_ATLS_ScreenCoverRight','Display','Default','b92ab2ec-e4c9-4e0e-989a-04e1f2f58b6b','','',NULL), +(435,'ATLS Lionheart Livery','Paints','UNDEFINED','3a5851bc-9f28-43ad-9ad9-de0fcafcd497','','','Remain highly visible in the ATLS power suit with Lionheart livery, which is primarily light yellow.'), +(436,'HexaPolyMesh Coating','Cargo','Cargo','bb86e32a-8807-48ed-a72d-8a8028ad138e','','',NULL), +(437,'Venture Arms Black','Armor','Arms','be4c4b4d-c544-451e-b0c3-509f72aa2723','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(438,'C4-163f S5 Hornet Mk I Ball Turret','Turret','BallTurret','a68472d0-ba22-4fd9-9287-10bdc6c0fe08','','','Give your Hornet\'s firepower a boost with the C4-163f. Designed by Anvil specifically for its F7 Mk I series, this S5 ball turret can equip two S3 ship weapons.'), +(439,'Cutter Citizens for Prosperity Garnet Livery','Paints','UNDEFINED','a1441184-5bd9-4f11-b2dd-84f7c318e83b','','','Join the Citizens for Prosperity in their mission to bring peace to the frontier with this dark grey and burgandy livery featuring the group\'s signature logo.'), +(440,'PAB-1 Arms Tan','Armor','Arms','37bbda5f-0657-4ed7-b01b-a00e827f3640','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(441,'PT3 \"Deadfall\" (3x Holographic)','WeaponAttachment','IronSight','01828239-6f9b-40a0-80ff-a3dc6370c526','','','Manufacturer: Behring\nType: Projection \nAttachment Point: Optic\nMagnification: 3x\nZoom: 3x-3.5x\nAim Time: +15%\nSize: 1\n\nGet up close and personal with this 3x magnifying optic from Behring. The PT3 projects a highly visible target marker allowing you to confidently cover your field of view across various lighting and environmental conditions.\n\nThe \"Deadfall\" variant of the scope is muted green.'), +(442,'ANVL_Paladin_Thruster_Main','MainThruster','UNDEFINED','e88e0302-be74-45d3-a691-ad5c3e11ff95','','',NULL), +(443,'Soap','Misc','UNDEFINED','1ba2c508-4aa7-4ec9-a2a7-cf816be79180','','',NULL), +(444,'ARGO_CSV_Cargo_Rack','Container','Cargo','22f1635d-e7fb-4591-a995-809d1ab0176c','','',NULL), +(445,'Ponos Boots Purple','Char_Clothing_Feet','UNDEFINED','40dc3e8d-eccf-4baf-b605-07b27749c862','','','Quite simply, R6 Pro\'s Ponos boots were built for backbreaking work. Constructed out of Thermosulate technology, these waterproof and insulated workboots are rated for sub-arctic environments while the composite outsole ignores hazards to maintain traction when you need it most.'), +(446,'Luminalia Mug','Drink','UNDEFINED','c6b9bf98-f832-4903-867a-7ec195222d7c','','','Ready to spread some Luminalia \"cheers?\" Cozy up with this festive red and white patterned mug decorated with Banu messages of celebration and understanding.'), +(447,'Book','Misc','UNDEFINED','3453c659-d16d-425b-af75-d72a8810efae','','',NULL), +(448,'Door Control','ControlPanel','DoorPart','46d26849-aa3d-4fe6-b24e-931268d29d0e','','',NULL), +(449,'Avenger Deck the Hull Livery','Paints','UNDEFINED','c5c76216-d192-40c3-a373-fe03800b5465','','','Express your holiday spirit with the Deck the Hull livery, which uses the traditional Luminalia colors of green and red to celebrate the popular Banu festival that\'s become beloved by Humans.'), +(450,'Nitrogen','Cargo','Cargo','35186e00-739c-493d-ab7d-d22aa9eba2df','','',NULL), +(451,'shelf_02_a_02x007x00375_2ports','ShopDisplay','Default','d540cfe2-6e6e-41d7-bbf2-31def8c5291c','','',NULL), +(452,'Kino Shoes Black','Char_Clothing_Feet','UNDEFINED','d85011cb-e47b-476c-95b5-ac3e2a1314f9','','','These two-tone slip-on shoes are comfortable enough for casual wear, but stylish enough for the workplace.'), +(453,'Vehicle_Screen_MFD_Holographic_ORIG_X1_L','Display','UNDEFINED','a99ca937-34a3-4fc3-8588-abfcfc02456f','','',NULL), +(454,'Seat','SeatAccess','UNDEFINED','c1813d44-d05b-4db3-b132-2f7f87606869','','',NULL), +(455,'Talon Cobalt Livery','Paints','UNDEFINED','5b31eacf-b3dd-492c-acd3-c1b3d0adfdb5','','','Standout with this cool blue livery custom designed for the Esperia Talon and its Shrike variant.'), +(456,'Flight Blade','FlightController','UNDEFINED','d6659a00-5612-4d7c-98ed-371541e698b6','','',NULL), +(457,'GAMA_Syulen_Headlight_Right','Misc','UNDEFINED','582568b7-79c2-4ad4-8cfe-93644b6cbf01','','',NULL), +(458,'VariPuck S6 Gimbal Mount','Turret','GunTurret','baa24284-b180-4dcb-a08f-2b279e4e7109','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 6\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(459,'DRAK_Cutter_Winglets_Expo_Right','Misc','UNDEFINED','e81b8b5c-cd60-4682-8839-f0103742aa69','','',NULL), +(460,'Testudo Helmet Nightveil','Armor','Helmet','59814847-c7a3-4744-a40c-2496e9c2f7d9','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nKeep your eyes on the prize and your head protected with the Testudo helmet. It features a wide faceplate and a durable outer shell that protrudes above the forehead in a way specifically designed to absorb and efficiently disperse the energy of impacts.'), +(461,'Shipment','Misc','UNDEFINED','43043529-76d5-4f8e-bcec-c3298195abc8','','',NULL), +(462,'Door','Door','UNDEFINED','daf0758d-f019-421c-afac-f9bb535500ec','','',NULL), +(463,'XIAN_Scout_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','87f0b19e-bf34-4565-9ea3-e4bd4bc05d67','','',NULL), +(464,'Sorel Hat','Char_Clothing_Hat','UNDEFINED','5d17f852-84fb-411a-b784-27f94c82884a','','','The wide-brim bucket-style design of Habidash\'s Sorel hat provides the wearer with lots of cover from any overbearing rain or sunshine.'), +(465,'EX-T10-EM \"Executor\" Torpedo','Missile','Torpedo','2745623e-6ff5-4191-b95b-46c1dfbce795','','','Manufacturer: Behring\nTracking Signal: Electromagnetic\nSize: 10\n\nBehring prides itself on crafting ordnance that is as dependable as it is powerful and the EX-T10 \"Executor\" is no exception. Designed as an anti-ship and anti-installation weapon, Behring engineers worked tirelessly to ensure this torpedo was a bold strategic statement.'), +(466,'Edgewear Pants Blue','Char_Clothing_Legs','UNDEFINED','98385d8b-5d09-4195-9b44-e6c850fe4651','','','Carrying Capacity: 4K µSCU\n\nStegman\'s Edgewear utility clothes are made from reinforced nylon weaves and lined with temperature-rated quilted technology to provide you with a little extra protection while on the jobsite. Double knees, reinforced joint pads and extra pockets add comfort and durability to this field-tested and worker-approved clothing line.'), +(467,'Argus Helmet Black/Gold/Silver','Armor','Helmet','3acf51a4-9e8f-406f-a857-7ecd3b53e1c0','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s Argus helmet utilizes advanced multi-layered composite construction to provide incredible protection from weapon fire as well as environmental hazards. The tinted visor offers a wide field-of-view to improve situational awareness and unrestricted movement.'), +(468,'DynaFlex','Cargo','Cargo','2f4816cd-79af-4479-92ab-ac14f25ce95e','','',NULL), +(469,'Hunter','Radar','MidRangeRadar','ddc4c394-da22-4ecf-8df9-30db6edc7535','','','Item Type: Radar\nManufacturer: Blue Triangle Inc.\nSize: 1\nGrade: B\nClass: Stealth\n\nWhen a low signature is of the utmost importance, the Hunter stealth radar will keep you aware of what’s around without getting you found.'), +(470,'Keystone Jacket Onyx','Char_Clothing_Torso_1','UNDEFINED','0282627a-aeea-4c64-ac18-3afc7e27a2af','','','Carrying Capacity: 1K µSCU\n\nDMC’s Keystone is a two-layer jacket that puts utility first. The top-most vest layer ensures the Keystone jacket remains warm and durable, while the underlayer is designed to avoid restricting your range of motion. Various pockets adorn the jacket to provide convenient storage options.'), +(471,'Mivaldi Pants Sienna','Char_Clothing_Legs','UNDEFINED','c49230b7-fb17-49d4-85bf-3006284a399d','','','Carrying Capacity: 0.5K µSCU\n\nCut to a narrow fit, OpalSky\'s Mivaldi pants feature bold asymmetrical design with smart yet casual dual material styling, making it the perfect addition to any wardrobe.\n\nWomen\'s sizes currently out of stock.'), +(472,'Horizon Helmet Aqua','Armor','Helmet','d748b325-21bb-49a4-9cbf-fbdd56eddf74','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Horizon helmet is a durable and robust environmental enclosed work helmet. The single sheet laminate dome gives you an extremely wide field of view. A pair of side-mounted LED light modules provide additional illumination to make sure you can see what you\'re doing.'), +(473,'Copper','Cargo','Cargo','5d553a61-3f15-4219-8065-3c7587323f26','','',NULL), +(474,'Quartz','Cargo','Cargo','fbb353b5-058d-4929-aece-dba5f395b848','','',NULL), +(475,'Bexalite','Cargo','Cargo','51d8d642-f0e4-4d98-9ce7-e9d4c25a109e','','',NULL), +(476,'Internal Tank','QuantumFuelTank','QuantumFuel','d7b1baa2-41a0-46d4-8a2e-3143417dfc9a','','',NULL), +(477,'Food_bowl_cereal_01_c','Food','Consumable','28b87f18-4a63-4f22-b6a8-4b39ca76c07c','','',NULL), +(478,'SHIELDS','ShieldController','UNDEFINED','c39d6c9e-cf8b-4d87-91dc-da1fbe2b0109','','',NULL), +(479,'KRON_LaserCannon_FiringMechanism_S2','WeaponAttachment','FiringMechanism','5bccf5df-dd6d-496b-8845-452782ef2dd7','','',NULL), +(480,'FBL-8a Legs Desert Digital','Armor','Legs','0eb8f884-d644-4c26-af5b-ec91b88b732c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nCDS\'s quest to create the ideal light armor continues with the FBL-8a. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible.'), +(481,'Seat','SeatAccess','UNDEFINED','d698096f-2a5d-47e9-b41b-e968977a1d44','','',NULL), +(482,'VNCL_Gen2_PlasmaCannon_Barrel_S4','WeaponAttachment','Barrel','79b7ca4a-27b1-45f2-b62c-631d47a46a9d','','',NULL), +(483,'INTK_RSI_Aurora_MR','FuelIntake','Fuel','b34c21ff-7eee-41f9-967a-0acc0cadcafa','','',NULL), +(484,'Second Tevarin War Red Dress Trousers','Char_Clothing_Legs','UNDEFINED','9fb2d174-c31d-4cf7-888f-863ba6f9bbe7','','','Carrying Capacity: 0.5K µSCU\n\nHonor the heroes that served in the Second Tevarin War by wearing a replica Navy uniform. Historically accurate down to every last stitch, period appropriate materials were used to make these uniforms match military specifications of the era. The red Dress Trousers were worn with the matching jacket for formal occasions and ceremonies.'), +(485,'PAB-1 Legs Dark Red','Armor','Legs','be1669d9-4b51-4971-8cbe-6828201c2916','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(486,'Lastaprene','Cargo','Cargo','8621467b-12fd-4d84-a2d1-e846be942f7f','','',NULL), +(487,'Radar_Display_Screen_GroundVehicle','Display','UNDEFINED','ba184544-d9e8-44e5-98f7-2f86d91ea56a','','',NULL), +(488,'Meteor Disco Livery','Paints','UNDEFINED','977be180-d7f3-4863-9d63-2abaa2092ce6','','','Equip the ship livery used by ace pilot Disco in the classic children\'s cartoon Rory Nova. While it turns the Meteor metallic dark blue, black, and red, whether you turn into the \'dynamic, instinctive spacecraft operator\' that inspired the livery\'s name is up to you.'), +(489,'MISC_Hull_C_CargoGrid','CargoGrid','UNDEFINED','683b73dc-cf13-41cd-896c-95c1ed9ab540','','',NULL), +(490,'Argon','Cargo','Cargo','e675a2c1-d6e4-4f9d-bbc2-d857dcfbb471','','',NULL), +(491,'Door Control','ControlPanel','DoorPart','4089acae-adfc-4a4f-ac15-65eb43dbf4c2','','',NULL), +(492,'display_components_noGeo_01Port_s00','ShopDisplay','UNDEFINED','2af77ccf-8e37-49fe-b22f-d4e0de9b4ebf','','',NULL), +(493,'Caterpillar Ghoulish Green Livery','Paints','UNDEFINED','2379b054-ef12-418f-aa22-e966ed30f5c5','','','Embrace Day of the Vara mischievousness and mayhem any time of the year with this custom Caterpillar livery. It combines metallic green and black for a striking look that highlights the holiday\'s classic colors.'), +(494,'Antium Helmet Moss Camo','Armor','Helmet','f0139701-4e14-46c1-a92a-e79a768dc788','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -85 / 115 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(495,'S71 \"Scorched\" Rifle','Weapon','Medium','815ce494-7d37-4879-8336-38054db71e6e','','','Manufacturer: Gemini\nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 30\nRate Of Fire: 300 rpm / 900 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nWith the S71, Gemini designed an ergonomic assault rifle ideal for mid-range engagements. Chambered with a smaller caliber round than other weapons in its class, the S71 has become popular among private military professionals for its sleek aesthetics and precise accuracy. The Scorched edition features a unique flame patina.'), +(496,'Internal Tank','QuantumFuelTank','QuantumFuel','2e1bc0c4-a1e2-42d5-bfa0-ca1861858024','','',NULL), +(497,'ControlPanel_LightSwitch_CRUS','ControlPanel','DoorPart','3a62e261-bc25-45ff-9801-7fb1141fb6cb','','',NULL), +(498,'Access','SeatAccess','UNDEFINED','ec7784a8-ee2f-4cec-a7f8-78b1986439a4','','',NULL), +(499,'Seat','SeatAccess','UNDEFINED','000ec670-7acc-4771-b567-7c939d2a80c0','','',NULL), +(500,'Irradiated Valakkar Pearl (Grade AA)','Misc','Harvestable','e738c605-8ef7-4238-8170-5db0c4c9c15d','E','','The valakkar pearl is harvested from the skin of the valakkar. As the valakkar moves through its environment, a large piece of grit will sometimes penetrate its thick hide. If the grit is unable to be expelled on its own, the valakkar\'s skin will grow to encase it. Layers of organic matter will then coat the piece of grit, isolating it from the valakkar\'s vulnerable dermis, thus ensuring that it will not cause infection. These \"pearls\" can become substantial in size over time. Because the valakkar that grew this pearl was exposed to radiation over a long period of time, it has developed unusual properties.'), +(501,'TRGT. STATUS','Seat','UNDEFINED','d15e4e6b-8843-4e9e-9f6c-65fe51c6eef3','','',NULL), +(502,'SureGrip PR-S2 Tractor Beam','TractorBeam','UNDEFINED','93e4822f-6e58-4613-82e9-800dedc9419a','','','Manufacturer: Greycat Industrial\nMax Angle: 80°\nMax Range: 130 m\nFull Strength Distance: 55 m\n\nThis precision variant of Greycat’s SureGrip tractor beam sacrifices some of the power and range of the base model in exchange for a wider angle of manipulation and greater tether grip, allowing for careful handling of more delicate goods.'), +(503,'Ecouter','Radar','MidRangeRadar','b0ccd135-4424-417c-95e4-594a88d9b72f','','','Item Type: Radar\nManufacturer: GNP\nSize: 1\nGrade: C\nClass: Military\n\nSpace is vast and unknowable, that’s why discerning pilots rely on the Ecouter small radar from GNP to keep them in the know about what’s around them.'), +(504,'Osoian Hides','Cargo','Cargo','5a5ef908-3355-4ad5-ae58-dbdec03fdce5','','',NULL), +(505,'Morozov-SH-S Helmet Vesper','Armor','Helmet','f2869fa0-1149-4b35-bab5-b51b1291f3ed','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -97 / 121 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(506,'BEHR_LaserCannon_Barrel_S1','WeaponAttachment','Barrel','fe270585-b84f-4e4a-ae6b-b4b8d0cc7b82','','',NULL), +(507,'Medical Bed','Usable','UNDEFINED','d246e2e1-a0f6-4e6b-8d99-8a1a2847a7e2','','',NULL), +(508,'Legion Jacket','Char_Clothing_Torso_1','UNDEFINED','9c478af1-acfd-4e88-b065-c5ebeb05f507','','','Carrying Capacity: 1K µSCU\n\nCrafted from a slick, high-shine weave, the Legion was conceived by 987 and famed Terran underground designer, Jieto, to shock the status quo of hooded jackets and usher in a new era of aesthetic functionality. \n\nWomen\'s sizes currently out of stock.'), +(509,'Carryable_TBO_FL_32SCU_Commodity_ProcessedGoods_ElectronicsEquipment','Cargo','Cargo','82af2464-d1f5-4f59-ae83-3f4ac7d09495','','',NULL), +(510,'Internal Tank','QuantumFuelTank','QuantumFuel','1437f503-9da7-4a37-bacf-a40719cd1036','','',NULL), +(511,'Freeze','Cargo','Cargo','67b794fe-a029-45a2-83c4-31dd44ca387f','','',NULL), +(512,'MISC_Reliant_Thruster_Mav_Fixed_Lateral','ManneuverThruster','FixedThruster','96edd8d6-3483-4d5f-b781-9f9e3825699b','','',NULL), +(513,'StorageCage_Quantum_Empty','Cargo','UNDEFINED','0a3ce096-9ba4-44e9-b1f2-02e51eda45cd','','',NULL), +(514,'ESPR_Prowler_Thruster_Mav_Up_Utility','ManneuverThruster','UNDEFINED','1f872a81-3ee5-4edf-8d5c-d85f6d9d3632','','',NULL), +(515,'Seat','SeatAccess','UNDEFINED','45304879-94d9-4558-ad18-a2b0486584d2','','',NULL), +(516,'AEGS_Retaliator_CargoGrid_Front','CargoGrid','UNDEFINED','7731b234-9a33-4089-9ecf-28b380e5e7d3','','',NULL), +(517,'TrueDef-Pro Arms Black/Silver','Armor','Arms','0871980a-5ee0-400a-a228-ec370e3bc229','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(518,'Internal Tank','QuantumFuelTank','QuantumFuel','b82b688d-34be-4c3a-8e96-6568f57f5a5b','','',NULL), +(519,'Paint_Mantis_Procyon','Paints','UNDEFINED','dbbbc9e6-5c3f-4398-beac-32b6251e7959','','',NULL), +(520,'Vehicle_Screen_MFD_Holographic_ORIG_300i_TL','Display','UNDEFINED','3375d7d3-98f2-4371-acf4-f7e3640c8ef9','','',NULL), +(521,'BEHR_BallisticGatling_Ventilation_S6','WeaponAttachment','Ventilation','3260477b-ff8a-43a4-81bd-7f60323cc6c0','','',NULL), +(522,'Good Enough Shirt Brown','Char_Clothing_Torso_0','UNDEFINED','20bceacc-3353-4009-a575-fdd2a75da905','','','This shirt from an unknown manufacturer has been mended and refashioned to give it a second life. Half of the right sleeve was beyond repair, so the rest of it was turned into an elbow cuff.'), +(523,'Aurora Mk I Record Breaker Livery','Paints','UNDEFINED','5b9005f4-bc58-49bd-98a2-c6d2535580a5','','','Show the \'verse that you\'re ahead of the pack and ready to shatter expectations with this sleek gray and silver livery.'), +(524,'Radar_Display_Starlancer_Turret','Display','UNDEFINED','650079b7-29c4-4980-b36e-2726099fdb27','','',NULL), +(525,'Horde Jacket','Char_Clothing_Torso_1','UNDEFINED','e87b0230-efaf-4719-a8ac-de98b3b7c576','','','Carrying Capacity: 2K µSCU\n\nComplementary pieces come together to form the Horde. This striking jacket from 987 features a strong asymmetrical design with a high-lo hem and aggressive detailing on the sleeves. \n\nWomen\'s sizes currently out of stock.'), +(526,'RAFT ArcCorp Livery','Paints','UNDEFINED','adf07b12-f8d6-4baa-ab12-c5788e43e68a','','','The ArcCorp livery for the RAFT features the company\'s logo atop a maroon base paint with black and yellow highlights.'), +(527,'Molina Mold Treatment','Cargo','Cargo','edd8e509-a5bf-4f23-8b37-b4b6ce8a78d4','','','A lifesaving treatment for those suffering from exposure to Molina Mold.'), +(528,'BANU_TachyonCannon_PowerArray_S3','WeaponAttachment','PowerArray','b434af83-1dbe-4466-b9a5-e7dbc5a18db7','','',NULL), +(529,'VariPuck S4 Gimbal Mount','Turret','GunTurret','0bff5ad1-931a-4d4d-83b9-a312b1404a97','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 4\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(530,'ThermoWeave Hood','Char_Clothing_Hat','UNDEFINED','e3026bc6-e2f8-429e-8f07-acc929ff68e2','','','The ThermoWeave hood integrates a heat and impact resistant hard hat with a neck covering hood that includes a vapor barrier to keep moisture build-up to a minimum. A large faceplate provides a wide field of view and the built-in respirator features a state-of-the-art filter to help you breathe easy.'), +(531,'Venture Core \"Rust Society\"','Armor','Torso','c4eeae4b-e239-4ce2-bfb9-322e64ad4746','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates. The Rust Society edition adds a red and tan color scheme so you look good while working hard.'), +(532,'Seat','Usable','UNDEFINED','a691524e-ad58-43ff-b383-bb16d8134059','','',NULL), +(533,'Carbon-Silk','Cargo','Cargo','55a58048-0678-4de1-99bf-cd8e28d641d5','','',NULL), +(534,'Tempo Jacket Purple','Char_Clothing_Torso_1','UNDEFINED','dd1865f0-7246-4206-b5f4-3ce0481f08d2','','','Carrying Capacity: 1K µSCU\n\nFashionable, fun and flashy, the Tempo is a quilt studded jacket featuring a unique metallic finish to make you stand out from the crowd. 987 balanced this bold design with sections of synthetic leather and complementary colors ringing the waistband and inner collar.'), +(535,'Morozov-SH-I Legs Pyrotechnic','Armor','Legs','a9023a85-9ccd-4576-9c14-0302d3f1422e','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5K µSCU\n\nFeaturing the same fortified armor plating, special anti-rip protective padding and ample storage, as the Morozov SH, the SH-I industrial variant was designed by RRS to protect workers employed in hostile zones while ensuring they had the full range of motion required to perform their duties. The Pyrotechnic Amalgamated Edition was made specifically for the company\'s mining efforts in Pyro during the 26th century.'), +(536,'DRAK_Cutlass_Steel_Thruster_Maneuver','ManneuverThruster','JointThruster','b3f25f3d-08df-4ea6-9094-f953dc739d0d','','',NULL), +(537,'Torreto Pants Dark Blue','Char_Clothing_Legs','UNDEFINED','c2f17b28-eb6a-4f3c-8105-7057b7da91f3','','','Carrying Capacity: 0.5K µSCU\n\n987 redefines classic slacks with the Torreto. These mid-rise, straight cut pants incorporate a section of fabric studding along the side seam to provide a pop of personality.'), +(538,'DockingTube_Fuel_Ports_ANVL_Arrow','DockingCollar','UNDEFINED','42fc35ba-7c25-4d02-914a-041849e969af','','',NULL), +(539,'Railing_Straight_5m_Hurston_Lorville_Glass_A','Usable','UNDEFINED','ea29e0fe-a231-48c4-9056-d01703dc3281','','',NULL), +(540,'Ursa Deck the Hull Livery','Paints','UNDEFINED','5114824e-5a3a-4708-b7ac-1e8a6d892667','','','Express your holiday spirit with the Deck the Hull livery, which uses the traditional Luminalia colors of green and red to celebrate the popular Banu festival that\'s become beloved by Humans.'), +(541,'Ketchum Beanie Yellow','Char_Clothing_Hat','UNDEFINED','fbe1f014-022e-496d-ac0e-e754851cbf54','','','Complete your cool-weather wardrobe with the classic Ketchum beanie from Alejo Brothers.'), +(542,'Weapon_Rack_1_GMNI_Rifle_Common_001','Usable','UNDEFINED','af8e391a-cb75-478f-a514-6abe8740f7a1','','',NULL), +(543,'MISC_Starlancer_Thruster_Mav','ManneuverThruster','FixedThruster','fdeba729-2913-4625-8887-afc2ddc040ac','','',NULL), +(544,'CNOU_Mustang_Cargo_Box_Fake','Cargo','UNDEFINED','093e108b-111a-4106-8bf2-b6666d02eb0a','','',NULL), +(545,'Defiance Arms Desert','Armor','Arms','6421ce8b-3b88-4f1e-bdaa-5a81f4890ad4','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nIncorporating the same manufacturing know-how and expertise that the UEE Marines have come to rely on, Clark Defense Systems has designed their civilian-line of Defiance heavy armors to stand firm in the face of even the most adverse combat scenarios with its three-star rated protective plating and fully integrated mobility framework.'), +(546,'TRGT. STATUS','Seat','UNDEFINED','452d3ec0-34c8-4c7a-917a-384df30d5385','','',NULL), +(547,'behr_ltp_01_primed','FPS_Deployable','Small','653d84a2-123b-4993-93b1-5550182e9542','','',NULL), +(548,'ForceFlex Undersuit Wood Camo','Armor','Undersuit','946e31c8-edc1-44fb-9e86-200ae3ca6709','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nVirgil\'s ForceFlex is the next generation in undersuit technology. Rated for combat as well as industrial work, you can rest assured that the comboweave will keep you protected in whatever situation you put it through.'), +(549,'Aurora Mk I Dread Pirate Livery','Paints','UNDEFINED','b19bcc93-5294-4f62-b93c-b060b9e3be46','','','Boldly show your true colors with this black and red livery, letting all know that you do as you please, and are pretty pleased with what you do.'), +(550,'Tulsi Jacket Olive','Char_Clothing_Torso_1','UNDEFINED','63094b13-3ef8-45bd-aa34-4b6c36eff5ce','','','Carrying Capacity: 1K µSCU\n\nThis Tulsi jacket features an outer shell designed to cut down on wind shear and an inner shell made to retain warmth without sacrificing comfort. For ease of use, it also features an gentle-glide zipper with a secure top stop and roomy pockets that guarantee you\'ll always have what you need on hand.'), +(551,'Heart of the Woods','Cargo','Cargo','dccf6070-9b38-4189-b9c9-e9e65a602c58','','',NULL), +(552,'Drake Cutlass Steel Remote Turret','Turret','TopTurret','f3c73f6d-f497-4f21-a5b5-cef56d52ae96','','','Item Type: Turret\nManufacturer: Drake Interplanetary\nSize: 2 \n\nThis remote-operated turret comes factory-equipped with two Klaus & Werner laser repeaters.'), +(553,'Strata Helmet Shooting Star','Armor','Helmet','7d2d71de-993f-4a41-aeef-fcb431962974','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design features high quality materials and a next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres.'), +(554,'BR-2 Shotgun','Weapon','Medium','b2a41e82-ae28-4c40-b8c1-6551f46a44c0','','','Manufacturer: Behring\nItem Type: Shotgun\nClass: Ballistic\n\nMagazine Size: 12\nRate Of Fire: 75 rpm\nEffective Range: 15 m\n\nAttachments: Optics (S1), Barrel (S3), Underbarrel (S2)\n\nOriginally designed for the military, Behring decided to sell the BR-2 ballistic shotgun to the general public after the initial weapon testers kept requesting to take one home. Featuring a semi-auto fire mode that can rapidly deliver devastating stopping power, the BR-2 is the ideal choice for both offensive and defensive operations.'), +(555,'CNOU_Nomad_Component_Shield','Player','UNDEFINED','ffb6f3f4-f109-40e8-a11c-da26a4db9142','','',NULL), +(556,'Devastator Shotgun','Weapon','Medium','e5b42569-10da-40a5-a16f-497f5b84cf3c','','','Manufacturer: Kastak Arms\nItem Type: Shotgun\nClass: Energy (Plasma)\n\nBattery Size: 12\nRate Of Fire: 60 rpm\nEffective Range: 20 m\n\nAttachments: Optics (S1), Barrel (S3), Underbarrel (S2)\n\nKastak Arms’ Devastator is a pump-action plasma shotgun capable of delivering sustained medium range, high-impact plasma blasts for close combat, room clearances and other combat operations. If the situation requires a high-power presence, look no further than the Devastator.'), +(557,'Seat','SeatAccess','UNDEFINED','31df4d70-2084-40c7-9712-0790e242da82','','',NULL), +(558,'Carryable_1H_CY_utensil_rimmer_1_a','Misc','UNDEFINED','d9fe8e0c-3ddf-4076-a001-9cf7cbefc722','','',NULL), +(559,'MISC_Reliant_Seat_Bed_Lower','Seat','UNDEFINED','ea6f450e-92a8-4418-84e1-154521bf09e4','','',NULL), +(560,'Turret','Turret','BallTurret','09196459-f7ba-4423-af45-da8865736cb6','','',NULL), +(561,'Reliant Tana Missile Launcher','MissileLauncher','MissileRack','d4cb1e57-fe95-48b8-b8ee-844c4344a7e2','','','Item Type: Missile Launcher\nManufacturer: MISC\nSize: 5\nMissiles: 8xS2 \n\nBespoke missile launcher built into the wings of the Tana to make this Reliant variant a deceptively deadly dogfighter.'), +(562,'Door Control','ControlPanel','DoorPart','d91842dd-4fdc-4c5e-a793-1185cf03779c','','',NULL), +(563,'Venture Arms Executive','Armor','Arms','fd4178cb-4716-40f4-a97a-cc3f7c19e36e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement. And now you no longer have to choose between exceptional styling and performance thanks to the tasteful gold detailing only available with the special limited Executive Edition.'), +(564,'Reclaimed Water','Drink','Bottle','1329c84c-61be-46f0-a4bc-3eafe496d8a3','','','HEI: 44\nEffects: Hydrating, Toxic\n\nFiltered water that has been reclaimed from various sources.'), +(565,'Badami Gloves Deadwood','Char_Clothing_Hands','UNDEFINED','dcdd9be5-3fac-42c1-bf33-fe77c3291e63','','','The Badami Gloves are lined with an advanced cut-resistant barrier that combines with a triple-layered interior to create an advanced impact protection system that could only have been designed by Caldera.'), +(566,'ht_table_booth_1_a','Usable','UNDEFINED','589e41e9-40ea-4ae1-bdb5-5c96270773b2','','',NULL), +(567,'Flight Blade','FlightController','UNDEFINED','aec88430-bbb3-4651-b428-141fba113eb7','','',NULL), +(568,'Badami Gloves Graphite','Char_Clothing_Hands','UNDEFINED','621b11aa-8e95-4536-a40a-5792e7abbc5e','','','The Badami Gloves are lined with an advanced cut-resistant barrier that combines with a triple-layered interior to create an advanced impact protection system that could only have been designed by Caldera.'), +(569,'Badami Gloves Olivine','Char_Clothing_Hands','UNDEFINED','2eb29dba-ada5-48ff-b88b-8634a64d0a63','','','The Badami Gloves are lined with an advanced cut-resistant barrier that combines with a triple-layered interior to create an advanced impact protection system that could only have been designed by Caldera.'), +(570,'FBL-8a Arms (Modified)','Armor','Arms','b43b2149-0059-4063-a9f6-67d4ec7ec9f9','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBased on CDS\' FBL-8a combat armor, this set has been modified from its original form. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible.'), +(571,'Weapon_Rack_1_Volt_Rifle_Uncommon_002','Usable','UNDEFINED','d351d583-d503-4232-8e56-52b2c40b52e7','','',NULL), +(572,'ComfortAir Max','LifeSupportGenerator','UNDEFINED','6d7adf8f-332e-41dd-820d-f32fc5038ba8','','','Item Type: Life Support\nManufacturer: Tyler Design & Tech \nSize: 3\nGrade: C\nClass: Civilian\n\nDesigned to be able to process atmosphere to above UEE standards, the ComfortAir life support system from Tyler Design & Tech provides you and your crew with a clean and comfortable environment.'), +(573,'ForceFlex Undersuit Forest Digi','Armor','Undersuit','880a7e7e-2cb9-4a73-950d-9e0aab28d9c6','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nVirgil\'s ForceFlex is the next generation in undersuit technology. Rated for combat as well as industrial work, you can rest assured that the comboweave will keep you protected in whatever situation you put it through.'), +(574,'Ball','Char_Head_Piercings','UNDEFINED','54258cd5-c5e6-487b-99dc-97aa88eb9506','','',NULL), +(575,'ORIG_600_CargoGrid_Module_Small','CargoGrid','UNDEFINED','e950b966-17a0-4961-ade3-c56438853ca1','','',NULL), +(576,'expo_display_shirts_and_hats_rsi','ShopDisplay','Default','910a4da1-34bb-44ee-9feb-53bc4aeebe39','','',NULL), +(577,'Bengal_BallisticGatling_Barrel_S6','WeaponAttachment','Barrel','a4da0ade-47dd-4a9d-b1b6-3d66a1db67b9','','',NULL), +(578,'Weapon_Rack_1_KSAR_SMG_Common_001','Usable','UNDEFINED','42cfd2ca-2cf4-4ef8-9954-a4c8747d6777','','',NULL), +(579,'Carryable_1H_SQ_DataPad_Fluff_StormBreaker_DataFacility_Safe01','Misc','UNDEFINED','602f3d3e-c763-458d-bc2b-f53db7174701','','',NULL), +(580,'TE_weapon_box__klwe_sniper_energy_01','Misc','UNDEFINED','fe214721-4452-46cf-b688-91d2a23af812','','',NULL), +(581,'Ketchum Beanie Purple','Char_Clothing_Hat','UNDEFINED','ad9f23dd-8107-410d-ba4c-77cb95319e4d','','','Complete your cool-weather wardrobe with the classic Ketchum beanie from Alejo Brothers.'), +(582,'XNAA_SanTokYai_SeatAccess_Nose','SeatAccess','UNDEFINED','1f9b18aa-7021-4227-a16f-abd58dc71881','','',NULL), +(583,'Omnitrek Jacket Backwoods','Char_Clothing_Torso_1','UNDEFINED','00357d5f-9c55-4362-b1de-3be9b88c5ebe','','','Carrying Capacity: 1K µSCU\n\nBe ready for anything with DMC’s Omnitrek, the survival jacket designed for maximal performance in adverse weather conditions with the addition of the water-resistant collapsible collar. The Omnitrek also provides numerous storage options across both sleeve and chest pockets.'), +(584,'MISC_Starlancer_Thruster_Mav_Front_Small','ManneuverThruster','FixedThruster','21483ce4-0f85-4870-9305-a454d319901c','','',NULL), +(585,'RSI_Bengal_SCItem_Turret_Seat_Single','Seat','UNDEFINED','b31471d4-fe9d-47c6-929a-5887ac163ee2','','',NULL), +(586,'CNOU_Mustang_Delta_Thruster_Main','MainThruster','FixedThruster','cd41b930-dc6d-4669-997a-0c563d334338','','',NULL), +(587,'P4-AR \"Desert Shadow\" Rifle','Weapon','Medium','bebd2169-fe99-4c8f-8fef-9f6be437e641','','','Manufacturer: Behring\nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 40\nRate Of Fire: 550 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nBehring\'s classic P4-AR rifle features a collapsible stock and shortened barrel, making it an ideal choice for close-quarter firefights. Its accuracy and general ease of use make it universally valued among security, military and civilian users.'), +(588,'ORIG_890J_Dashboard_BattleBridge_Right','SeatDashboard','UNDEFINED','c345e903-0323-4955-842f-44e8f9c25a7b','','',NULL), +(589,'Reliant Mako Livery','Paints','UNDEFINED','b917d675-3773-4d2f-8bf6-737ade0047af','','','Standard livery for the MISC Reliant Mako.'), +(590,'Door_ChipReader_Vault','Door','UNDEFINED','a6cf419c-c248-43a5-9fa1-65d0576fdac1','','',NULL), +(591,'Brace Mask','Char_Clothing_Hat','UNDEFINED','f0479098-81ae-41bb-8004-bbe6febbbd2d','','','Ever dream of standing out in a crowd while remaining completely anonymous? Vaporwear\'s Brace hood offer total facial coverage that keeps the wearer\'s identity hidden. Small optical sensors woven into the hood and run through a digital interface on the back provides the wearer with a perfect view of their surroundings.'), +(592,'H_Dashboard_Projector_HUD_DRAK_Buccaneer','Display','UNDEFINED','f080a7d9-c2b8-45f9-a408-33cafbbaf80e','','',NULL), +(593,'Stinger Pit Viper Livery','Paints','UNDEFINED','715e954c-fb55-4c1a-86ff-e0b1629bbacc','','','The Pit Viper livery for the Esperia Stinger features metallic green plating accented with dark bronze.'), +(594,'Seat','SeatAccess','UNDEFINED','e67beae6-8c7d-4873-9840-eae1202ae7de','','',NULL), +(595,'canister_liquid_1_a','Cargo','Cargo','4f011890-9bc4-4792-b928-2620e78b9056','','',NULL), +(596,'Ammunition Crate','Cargo','Mission','205da803-629d-4eea-ae56-032b1f93ff46','','',NULL), +(597,'canister_liquid_3_a','Cargo','Cargo','d80242ae-d57f-484d-8bab-83d35d38de33','','',NULL), +(598,'Radar_Display_Hornet_F7CM','Display','UNDEFINED','ae83905d-9cd3-49d8-894b-f1683a506a1e','','',NULL), +(599,'Second Tevarin War Service Jacket','Char_Clothing_Torso_1','UNDEFINED','54c35149-8b37-421a-9264-84379f9888c8','','','Carrying Capacity: 1K µSCU\n\nHonor the heroes that served in the Second Tevarin War by wearing a replica Navy uniform. Historically accurate down to every last stitch, period appropriate materials were used make these uniforms match military specifications of the era. The Service Jacket is primarily blue with a white and red stripe across the right shoulder and arm.'), +(600,'DRAK_Vulture_Component_Life_Support','Player','UNDEFINED','81940045-819c-4d69-85fd-0c8e1aca6a69','','',NULL), +(601,'ARGO_RAFT_Thruster_Mav_Bottom','ManneuverThruster','FixedThruster','11902ff6-6729-43e8-84aa-2d54b19dbd78','','',NULL), +(602,'RSI_Constellation_Taurus_Thruster_Retro','MainThruster','FixedThruster','955730ba-c56a-43cb-bee0-eb2b820810eb','','',NULL), +(603,'Boomtube \"Clanguard\" Rocket Launcher','Weapon','Large','90dc57a7-7377-4956-9d25-152a6c59d873','','','Manufacturer: Unknown\nItem Type: Launcher\nClass: Rocket\n \nMagazine Size: 1\nRate Of Fire: 20 rpm\nEffective Range: 100 m\n\nWho\'s got time to aim? Once you got enough room to clear the arming distance, just point the Boomtube launcher at whatever you don\'t like, squeeze the trigger, and watch the triple-grenade rocket thingy take care of the rest. Sometimes simple is best.\n\nThe Clanguard version has been modified with Vanduul materials and alien artifacts.'), +(604,'Flight Blade','FlightController','UNDEFINED','4f3df11b-d49a-4334-bc0f-7c514b3d38d5','','',NULL), +(605,'Stor*All Big Box Model H','Module','UNDEFINED','429514fc-786a-4f18-935d-bacbe838bddd','','','Manufacturer: Stor*All\nItem Type: Storage\n\nDesigned exclusively for the Hornet F7C, the Stor*All Big Box model H replaces the void left by the turret system of the military-spec craft with a respectable cargo hold. Transforming the flagship fighter of the UEEN into a durable hauling ship.'), +(606,'Katla Mask Blue','Char_Clothing_Hat','UNDEFINED','a8b97d1a-8933-4547-a428-5fe2ef7de5e6','','','The Katla mask provides full face coverage from the elements or prying eyes. Oversized eyes provide a wide field of vision and a built-in air filter helps you breathe easy. Please note that this mask is not space-rated and should only be worn in naturally breathable environs.'), +(607,'Odyssey II Undersuit Alpha','Armor','Undersuit','f0705a24-2c09-43b0-b90f-ce84d06ec1cd','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe latest generation of RSI\'s classic Odyssey undersuit features a new rugged design capable of withstanding the harshest of conditions in space or planetside. Built using the latest microweave technology, the Odyssey II undersuit provides hours of comfort in locations that are anything but comfortable.'), +(608,'RSI_Aurora_GS_LN_Thruster_Retro','MainThruster','FixedThruster','3ba422dc-c987-4cd4-b98a-c7e6121e2db5','','',NULL), +(609,'Venture Core Starcrossed','Armor','Torso','b96f40b3-d657-47f1-a9a1-46ace1f23f27','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRobert Space Industries’ Venture Explorer Suit provides exceptional protection against the dangers of space. Designed for those who don\'t know where their next adventure might go, the suit combines comfort and safety without sacrificing mobility. This special Starcrossed edition is modeled after the armor worn by Yuri Ilyin in the famous 25th century vid, Coramor, which inspired the eponymous lovers\' festival.'), +(610,'Door Control','ControlPanel','DoorPart','03124097-0dee-450b-a8e7-5c20bf738c13','','',NULL), +(611,'sc_nvy_bdu_jumpsuit_01_01_11','Char_Clothing_Torso_1','UNDEFINED','0bc88ea8-ee7e-40ae-a12e-75a2788f4ff4','','',NULL), +(612,'Antium Helmet Maroon','Armor','Helmet','9a87b121-6acb-40c8-a40e-303e2f4d2fe4','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -85 / 115 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(613,'INTK_KRIG_P72_Archimedes','FuelIntake','Fuel','be7a89fa-08d7-44ba-a8b6-7c278811bb07','','',NULL), +(614,'Corbel Legs Halcyon','Armor','Legs','8dadd817-c5c4-4bba-8fec-dec029eb029b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nOriginally designed as a strength enhancement suit to give factory workers better lifting power, CDS found wider application in utilizing its defensive capabilities. It\'s triple-enforced armor plating provides extreme physical protection, with deliberate placing of materials to protect the most vulnerable parts of the body. A series of pneumatic levers offer increased flexibility in the joints, alleviating pressure and weight in key areas to create an accessible and highly protective armor despite its heavy weight.\n\nThe Halcyon edition displays a sharp contrast of bold yellow and muted black.'), +(615,'Internal Tank','QuantumFuelTank','QuantumFuel','f4480494-4351-41ef-afcc-a495221ece25','','',NULL), +(616,'RSI_Bengal_Thruster_Mav_Joint','ManneuverThruster','JointThruster','6de1c097-2cab-4ba3-b0c9-bc1df45954ad','','',NULL), +(617,'Venture Helmet Twilight','Armor','Helmet','8d883e69-b5ac-469d-bdc0-3f3f564ba9e9','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover.'), +(618,'TRGT. STATUS','Seat','UNDEFINED','c03b4118-f5fd-4c84-a3ce-035552949906','','',NULL), +(619,'ADP Core White','Armor','Torso','aaaccbc3-aa86-4107-a249-152bb1313e32','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(620,'PAB-1 Legs Desert','Armor','Legs','f415b965-5e2c-4e43-a115-d1cf49e1cb1a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(621,'Arbor MH1 Mining Laser','Mining','Gun','5b5d11f8-a2b0-4e6e-80c3-2437cc0accae','','','Manufacturer: Greycat Industrial\nItem Type: Mining Laser \nSize: 1\n\nOptimal Range: 60m\nMaximum Range: 180m\n\nMining Laser Power: 189 - 1890\nExtraction Laser Power: 1850\n\nModule Slots: 1\n\nLaser Instability: -35%\nOptimal Charge Window Size: +40%\nInert Material Level: -30%\n\nResistance: +25%\n\nThe Arbor MH1 became the universe\'s most heralded mining laser thanks to Greycat Industrial\'s exacting standards and business prowess. The laser found favor among industrial and solo operations for balancing speed and safety while also featuring a special filtration system that reduces the amount of inert material collected. Greycat capitalized on this reputation by securing exclusive contracts that made the Arbor MH1 the standard laser head on most mining ships.'), +(622,'Dust Devil Armor Core','Armor','Torso','8640bf64-96b6-4cc8-ad9d-23a66588fc2b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -85 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nSalvaged pieces of disused protective gear were welded together to make this intimidating armor set. The cape, made from an old Banu wall-hanging, adds an elegant finishing touch.'), +(623,'Aurora Mk I Light and Dark Grey Livery','Paints','UNDEFINED','e622f95b-6058-4fc9-a866-0e51377d3d0a','','','Customize your Aurora with this two-tone grey livery.'), +(624,'Snarling Vanduul Helmet','Armor','Helmet','d6ed781b-4ca1-46ec-bd0f-23673bbc0ce5','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nWith the Snarling Vanduul helmet, CC\'s Conversions developed a special space-age vulcanized silicone rubber to replicate everything from the Vanduul\'s menacing smile to the ridges on the back of its head. Molded over a lightweight flight helmet, this Vanduul visage is wearable both in and out of atmosphere, allowing you to be the ultimate space invader wherever you celebrate Day of the Vara.'), +(625,'plaque_advocacy_1_badge_a','Misc','UNDEFINED','0dc3925e-a7b0-462b-9bbe-d319e7fa33aa','','',NULL), +(626,'Rustic Jacket Green','Char_Clothing_Torso_1','UNDEFINED','8f2d2cbb-767b-44e3-a4eb-f70ccce6ae1c','','','Carrying Capacity: 1K µSCU\n\nAssembled from an old Dusters flag, salvaged armor, and derelict ship parts, this serviceable jacket is secured to its wearer via sturdy leather straps.'), +(627,'Ivers Boots Black','Char_Clothing_Feet','UNDEFINED','753e394f-472a-4853-b91b-73a5802a2564','','','OpalSky imbued these ankle boots with their iconic panache. The Ivers are thoroughly fashionable but not flashy, and fitted with special KindSole insoles that provide exceptional comfort.'), +(628,'Uncut SLAM','Cargo','Cargo','52b3782d-a0c0-4244-a9b5-41030f19efa2','','',NULL), +(629,'DustUp Legs Desert','Armor','Legs','aa61c64c-d016-4830-9b19-5e5e834bf543','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -60 / 90 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nThe DustUp has your back if you’re looking to get into some trouble. The body plating is built off of the same CDS undersuit used by the UEE Marines, it adds reconstructed Omni-Role mkII pieces to give you solid protection against incoming fire, but the real gem is the modified helmet. That thing was built to withstand explosions, so it should totally protect you against some shots. The whole thing’s been reasonably tested against vacuum too, so you can feel free to EVA all you want without worrying about dying.'), +(630,'Burgundy Paisley Bandana','Char_Clothing_Hat','UNDEFINED','3abb4278-e7dc-4f08-8bab-45785d679c52','','','Made from only the finest cotton, this bandana from Alejo Brothers features a double-sided print and sewn edges to guarantee durability.'), +(631,'AEGS_Javelin_Escapepod_Cover','Misc','UNDEFINED','ea343a26-cf1d-4387-ac53-7ac0e881af6e','','',NULL), +(632,'m_human_mannequin_clothing_TandS_Civ04','ShopDisplay','UNDEFINED','59b31b83-5d18-4879-b1df-938673b9c4f9','','',NULL), +(633,'XenoThreat Encryption Key','Misc','Mission','ea40c891-0ce1-452e-8d9f-796bde9bcdf8','','','A custom chipset bearing a XenoThreat symbol. It appears to have a cryptokey interface for some encryption or decryption purpose.'), +(634,'AEGS_Vanguard_Sentinel_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','8870805a-47df-43a9-96ef-1fc8a0781982','','',NULL), +(635,'Odyssey II Undersuit Red/Black','Armor','Undersuit','d4be150a-d690-4f35-b36a-b3894b7e423b','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe latest generation of RSI\'s classic Odyssey undersuit features a new rugged design capable of withstanding the harshest of conditions in space or planetside. Built using the latest microweave technology, the Odyssey II undersuit provides hours of comfort in locations that are anything but comfortable.'), +(636,'Hull A Empyrean Livery','Paints','UNDEFINED','76f1f810-a0cb-441b-a2c5-d2c3661c7d43','','','Cargo hauling takes on a bold new look with the Hull A Empyrean Livery which features a dynamic tricolor design. Yellow highlights divide a white nose from a grey engineering section lending the appearance of speed to the freighter.'), +(637,'Aurora Mk I High Roller Livery','Paints','UNDEFINED','8f7b16fc-4a66-4056-bfc5-c882a9570816','','','Ready to shut up the naysayers and show the \'verse that you made it big? Roll up with your Aurora decked out in this green and gold livery checkered with credit symbols.'), +(638,'Oracle Helmet (Modified)','Armor','Helmet','3bb156ec-b515-4318-8633-4decddaac368','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThis version of Kastak Arms\' Oracle helmet has been modified from its original form. Kastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(639,'Seat','Usable','UNDEFINED','0210a36d-d42d-4e74-9c25-33b934e29a5c','','',NULL), +(640,'Table_rdy_rm_prop_table_a','Usable','UNDEFINED','5d50dbb1-022a-4017-b65c-6a0477198abf','','',NULL), +(641,'Galinstan','Cooler','UNDEFINED','7751572b-05ba-4a0c-816e-fdbd6bc68e6b','','','Item Type: Cooler\nManufacturer: Aegis Dynamics\nSize: 3\nGrade: D \nClass: Military\n\nThe Galinstan is an older model cooler originally developed for the UEE Navy. Its specs won’t knock your socks off but it remains a solid entry level, large cooler.'), +(642,'Condemnation Distortion Scattergun','Weapon','Gun','bad19f5c-7249-4d85-9430-040733eb6e4a','','','Manufacturer: Preacher Armaments\nItem Type: Distortion Scattergun\nSize: 6\n\nThe Condemnation is a massive size six scattergun from Preacher Armaments. Its high distortion damage incapacitates the electronics, though its wide spreads makes it less effective as the target gets farther away.'), +(643,'Pingala Seeds','Cargo','Cargo','349e934c-f869-40cd-adcc-ca25b2ea1e59','','',NULL), +(644,'H_Dashboard_Projector_HUD_ANVL_Hornet_F7CM_Mk2_P','Display','UNDEFINED','c03dbe8a-37e8-4785-9b2a-a32a954e1634','','',NULL), +(645,'TRGT. STATUS','Seat','UNDEFINED','ffca35dc-1eda-4665-a921-4f7ecd50df2f','','',NULL), +(646,'CNOU_Mustang_Beta_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','8cd277bb-9a77-416e-ba43-62d7a5faba7f','','',NULL), +(647,'INTK_CNOU_Mustang_Delta','FuelIntake','Fuel','0b257484-12d8-4fb3-af69-56cf1b805f0a','','',NULL), +(648,'ORC-mkV Arms Purple','Armor','Arms','85f1ce17-dc5b-42f7-bf69-fc879a47517c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(649,'Stud','Char_Head_Piercings','UNDEFINED','4e332d2a-c647-4c51-89d7-310bc5fe88c8','','',NULL), +(650,'RSI_Salvation_Salvage_Arm_Right','ToolArm','UNDEFINED','cf24865f-5073-4fd4-bcc3-a6e50f757ed8','','',NULL), +(651,'Overlord Core Mirador','Armor','Torso','6da3a364-d7ea-48b4-b74f-c8492099db33','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12.0 µSCU\nBackpacks: All\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.\n\nThe Mirador edition is white with burnished copper elements.'), +(652,'Scorpius Antares Standard Flight Blade','FlightController','UNDEFINED','667a39eb-314b-47ce-970e-ea645ad5d476','','','Manufacturer: Roberts Space Industries\nType: Flight Blade\n\nThis is the standard issue flight blade for the RSI Scorpius Antares.'), +(653,'Internal Tank','QuantumFuelTank','QuantumFuel','92462548-ba09-459c-818e-c583b0c69e43','','',NULL), +(654,'Dymantium','Cargo','Cargo','90be781a-2694-40e8-8214-bbd2fffeb3d5','','',NULL), +(655,'BEHR_LaserCannon_FiringMechanism_S3','WeaponAttachment','FiringMechanism','993c1343-d1ad-4c91-bfdc-2093c8a7fc1e','','',NULL), +(656,'Manned Turret','TurretBase','MannedTurret','5ad8dee7-9ba2-4e4c-8fff-412426416d14','','',NULL), +(657,'Sabre Windbreak Livery','Paints','UNDEFINED','11440f75-f2ed-46c9-9485-6118999509fa','','','The Windbreak livery exudes style by giving the Sabre a green body, dark grey wings, and silver and orange highlights.'), +(658,'Door Control','Door','UNDEFINED','4c222dd8-87e2-4f6f-8ddb-c33b99d956b7','','',NULL), +(659,'Seat','SeatAccess','UNDEFINED','087ded7c-6c60-4404-a093-6b84ecb11f14','','',NULL), +(660,'Gadget_Cabinet_kegr_fire_extinguisher_01_Nozzle_high','Usable','UNDEFINED','c2afddf1-4975-411c-ae69-fd84eb992ffc','','',NULL), +(661,'Paint_Hammerhead_Navy','Paints','UNDEFINED','e937bbe7-9ff0-40c6-a18d-474987b46f6d','','',NULL), +(662,'Strata Core','Armor','Torso','068b179e-bb1b-471e-9bf8-2f27b0ff2d26','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 15k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpack Compatibility: Light & Medium \n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres.'), +(663,'Magnus IV Water Bottle','Drink','Bottle','028f5476-9f68-4d88-bd0c-2d6db79d3538','','','Boast about your trip to the UEE\'s most exclusive and elusive destination, Magnus IV. While some still question if the planet actually exists, this refillable water bottle is irrefutable proof that you\'ve totally been there.'), +(664,'Station_DockingAnimator_Docking_Arm_Ht_A','DockingAnimator','UNDEFINED','5af68ad4-d523-45b1-8867-fbbf6f117054','','',NULL), +(665,'Carryable_1H_CY_drug_stomachmedicine_2_a','Misc','UNDEFINED','ab49c24a-90a5-4bdf-94e8-6252c495e536','','',NULL), +(666,'Ammonia','Cargo','Cargo','7c61a3a4-c2a9-402f-8402-e28be7206618','','',NULL), +(667,'LeMarque Pants Green','Char_Clothing_Legs','UNDEFINED','3e5146de-a75a-46b7-9a72-e20fda768476','','','Carrying Capacity: 0.5K µSCU\n\nClassic cuts never go out of style. A staple of any wardrobe, Derion\'s LeMarque are built for work or play and feature microseam pleats and wrinkle-free material that will guarantee that you\'ll get years out of this classic.\n\nWomen\'s sizes currently out of stock.'), +(668,'Debnam Gloves White','Char_Clothing_Hands','UNDEFINED','99352ead-13f6-4c87-a27c-79835077989d','','','Named after the influential Terran tailor, Debnam gloves incorporate that famous tailor\'s classic design to keep your hands comfortable in colder temperatures.'), +(669,'Ball','Char_Head_Piercings','UNDEFINED','af6909b5-40f9-41c1-9ff2-d016f743dc98','','',NULL), +(670,'MISC Ore Pod','Container','Cargo','be59463e-669b-41f2-99fb-ed13f8b70b5d','','','Capacity: 8 SCU\n\nMade to work with any compatible mining ship, the MISC Ore Pod boasts several unique features, including anti-abrasion paint inside the pod that ensures it can withstand hefty payloads for years to come.'), +(671,'Venture Legs Seagreen','Armor','Legs','a3f55b76-f6c2-4f06-a1d4-97748d88854f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(672,'DRAK_Corsair_Component_Panel_01','Player','UNDEFINED','3147d212-778d-4de7-a3a3-52dba62aca76','','',NULL), +(673,'MSD-625 Missile Rack','MissileLauncher','MissileRack','6a84479b-bd8e-4330-9ed3-e1169cfc546e','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 6\nMissiles: 2xS5\n\nBehring’s MSD-625 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 6 hardpoint for the reliable and effective launch of two S5 missiles.'), +(674,'ControlPanel_Screen_LightControl_9x16_util','ControlPanel','DoorPart','a40098b4-ac00-470f-8ab7-7248f68a4987','','',NULL), +(675,'5MA \'Chimalli\'','Shield','UNDEFINED','8c2b0c60-881b-4163-9d72-b6b74806735a','','','Item Type: Shield Generator\nManufacturer: Behring\nSize: 2\nGrade: C\nClass: Civilian\n\nThanks to Behring’s expert engineers, the 5MA ‘Chimalli’ shield generator balances the need for a solid regeneration rate with dependable damage absorption.'), +(676,'Cordimon Jacket Tan','Char_Clothing_Torso_1','UNDEFINED','4876ca38-84d4-4913-83d7-4253426e26bb','','','Carrying Capacity: 3K µSCU\n\nStegman\'s classic worker\'s jacket has been a staple of job sites for over seventy years. This duotone pattern is cut from the toughest material meaning you can wear it anywhere, anytime. It may not be armor, but it damn sure feels like it.'), +(677,'Manned Turret','TurretBase','MannedTurret','4fdae43b-b31f-4fda-908e-e40df26c1595','','',NULL), +(678,'Remote Turret','Turret','GunTurret','c765234f-2f12-4027-81cb-32601ac81b7d','','','Remote Turret'), +(679,'Partillium','Cargo','Cargo','ed99ca32-048b-429b-8efb-b7a20279583a','','',NULL), +(680,'Skellig Pants Dirt','Char_Clothing_Legs','UNDEFINED','10417679-641d-4ad9-bfc8-a504cf311601','','','Carrying Capacity: 2K µSCU\n\nGet down and dirty with CBD\'s Skellig-wear. These utility pants feature durable vinyl-composite material with reinforced ridged kneepads.'), +(681,'San\'tok.yāi Gimbal Mount','Turret','GunTurret','595b8f46-2037-43f8-bfb8-6cbd984f2212','','','Manufacturer: Aopoa\nItem Type: Weapon Mount\nSize: 3\n\nLine up the perfect shot with help from this S3 gimbal mount. Made by Aopoa specifically for the San\'tok.yāi, this gimbal can handle weapons up to S3.'), +(682,'MOLE Greycat Livery','Paints','UNDEFINED','882a48f8-fd78-4afc-a849-a365efa108fd','','','Proudly display your appreciation for one of Sol\'s most celebrated manufacturers with the Greycat livery, featuring the chrome yellows and industrial grays associated with the company\'s logo.'), +(683,'Manticore Helmet','Armor','Helmet','aff93126-aee5-4fef-958f-bc30ba55158e','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -85 / 115 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nDominate the battlefield in the Manticore Helmet. Crafted with a durable polymer weave for maximum protection, this fully enclosed combat helmet is enhanced with pointed horns that create a foreboding silhouette.'), +(684,'MacFlex Core Black','Armor','Torso','aa9dd02d-ead9-4056-9bc4-9adb1bea8cfa','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(685,'Internal Tank','FuelTank','Fuel','0dcb71f8-73e9-4760-bda3-93e55c63709d','','',NULL), +(686,'XNAA_SanTokYai_SeatAccess_Tail','SeatAccess','UNDEFINED','f9c75e54-917c-4fa7-86f6-95a1f0ae739c','','',NULL), +(687,'Internal Tank','QuantumFuelTank','QuantumFuel','ab4b9e04-b599-401e-b529-394727c64c5a','','',NULL), +(688,'DRAK_Cutter_Winglets_Base_Right','Misc','UNDEFINED','9b05a9be-2288-4816-bba9-84a5dbdb808d','','',NULL), +(689,'RSI_Aurora_Mk2_Thruster_Retro_Right','ManneuverThruster','Retro','5035fcbe-0ff7-4d9d-9b64-50ae0aeefdc0','','',NULL), +(690,'Internal Tank','FuelTank','Fuel','0a15831a-47f3-49ee-9ea4-c3a1b70acd22','','',NULL), +(691,'Remote Turret','Turret','GunTurret','b854cb5f-38f1-435c-9d7a-3335a75f861f','','','Remote Turret'), +(692,'un_can_drink_2_f','Misc','UNDEFINED','7f6c0820-f78f-4b99-a4bc-94738ed7b0ee','','',NULL), +(693,'Shroud','Shield','UNDEFINED','b097ed3e-ee5e-4f18-ae79-dcf49687e27d','','','Item Type: Shield Generator\nManufacturer: Ascension Astro\nSize: 2\nGrade: D\nClass: Stealth\n\nThe Shroud shield generator from Ascension Astro provides a layer of protection for your vessel while still helping you maintain emission levels to provide a lower signature.'), +(694,'PLACEHOLDER','Char_Clothing_Hat','UNDEFINED','ef5164ab-edcc-40bb-9cd5-38d162457c29','','','PLACEHOLDER'), +(695,'Remote Turret','Turret','GunTurret','e52cf74a-5e7c-4ae0-be1a-2ec54a11bdd3','','','Remote Turret'), +(696,'Ready-Up Helmet Imperial','Char_Clothing_Hat','UNDEFINED','8031d27a-fbfc-41a8-8df4-6ab897511d6e','','','The Ready-Up is a dependable, affordable softshell helmet alternative. Built from space-age plastic, the Ready-Up provides a vacuum-ready seal to keep you breathing for longer.'), +(697,'ORIG_350r_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','90a9ab10-3b5a-41b2-9b68-4ebed5ea7d1f','','',NULL), +(698,'MISC_Reliant_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','0689a4ee-828e-48b6-8255-3b019d7b3a98','','',NULL), +(699,'fruit_plant_2_a_6002','Misc','UNDEFINED','e4d1247d-0b59-4098-aebf-046ea0b9046c','','',NULL), +(700,'Manned Turret','TurretBase','MannedTurret','39bffb2c-8e04-47be-829d-7babf5811f1e','','',NULL), +(701,'fruit_plant_2_a_4002','Misc','UNDEFINED','e5d860c6-86eb-4728-ad49-2d5da453df79','','',NULL), +(702,'fruit_plant_2_a_5002','Misc','UNDEFINED','80a2168a-2d58-4c17-a6fe-b85cb61d69f9','','',NULL), +(703,'fruit_plant_2_a_2002','Misc','UNDEFINED','4b541d2c-f27f-48e5-9dd1-e47e3c103ab3','','',NULL), +(704,'fruit_plant_2_a_3002','Misc','UNDEFINED','8c04c1d1-390c-4d0d-87ef-fb032c47a429','','',NULL), +(705,'ST-205 Missile Rack','MissileLauncher','MissileRack','abc830d4-b751-4c7d-9923-4a824fdfc311','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 2\nMissiles: 8xS2\n\nTo further improve the defenses of the Origin 400i, Behring built the SNT-205 \"Santoro\", which can carry and deploy eight S2 missiles.'), +(706,'TOAG_LaserGatling_PowerArray_S2','WeaponAttachment','PowerArray','89342b97-ae4e-4cf8-97ab-4d81412056dd','','',NULL), +(707,'Workzone_Wall_Mechanic','Usable','UNDEFINED','d6744ded-9f8a-42f1-8320-b9804b94f0c7','','',NULL), +(708,'colonialism_airlock_tube_large_default_lghtgrp','Lightgroup','AirlockPart','34b79a03-d472-4dbd-81ea-be271667c16d','','',NULL), +(709,'ARMR_RSI_Meteor','Armor','Medium','57d93ff0-e186-4c75-8fd3-6644357ed962','','',NULL), +(710,'K7 Pants Yellow','Char_Clothing_Legs','UNDEFINED','4266a145-86ea-4162-8731-b3ef03809b5f','','','Carrying Capacity: 3K µSCU\n\nDMC\'s K7 are an all-purpose cargo pants. Four easy access pockets provide extra storage while the triple-stitched polymer weave fabric is designed to withstand all kinds of weather conditions.'), +(711,'ORC-mkV Arms Twilight','Armor','Arms','c11fcc95-323b-47e3-8288-03b08306364c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(712,'Door Control','Door','UNDEFINED','f1d36fcf-87ff-4efa-bde3-82ea7855002c','','',NULL), +(713,'Door','Door','UNDEFINED','717c18c9-db8c-4160-92f4-c167da510cbc','','',NULL), +(714,'Party Favors','Cargo','Cargo','bc0c516d-fedb-4a56-93c7-c477e8620d35','','',NULL), +(715,'DRAK_Dragonfly_Thruster_Mav_Joint','ManneuverThruster','JointThruster','69c68787-2cd6-4bb3-8305-3492ef380667','','',NULL), +(716,'Trommel','PowerPlant','Power','aa15e2df-d7b1-4e97-9e0d-7623a3a096b0','','','Item Type: Power Plant\nManufacturer: Juno Starwerk\nSize: 2\nGrade: D\nClass: Industrial\n\nUtilitarian to its core, the Trommel’s lack of frills has made the power plant a favorite of mechanics around the Empire.'), +(717,'ANVL_Gladiator_Thruster_Retro','ManneuverThruster','FlexThruster','4a8290c3-3c56-48ac-ab1f-f68e10cb381c','','',NULL), +(718,'facial_hair_034','Char_Head_Beard','UNDEFINED','43ae2c6b-fc03-447f-bcd7-88ccf4beccec','','',NULL), +(719,'Waste','Cargo','Cargo','72fa0dc2-4d1a-4fa6-bc29-4777e995905c','','',NULL), +(720,'Venture Core Violet','Armor','Torso','2f1fb5de-540f-403c-9e1e-46cb3c97dd59','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(721,'SCItemDisplayScreen_ScreenSize_W64_H36_H74_Medical','Display','Default','fdd6d00b-b1c1-445a-a7bd-fd777b13b377','','',NULL), +(722,'Seat','Usable','UNDEFINED','3eae8a05-581c-498a-bb1a-c5ac8831ae76','','',NULL), +(723,'Quest','QuantumDrive','UNDEFINED','e4b7bb25-c233-458b-a2b0-b8534733d6be','','','Item Type: Quantum Drive\nManufacturer: Tarsus \nSize: 2\nGrade: D \nClass: Civilian\n\nWhy mess with perfection? Tarsus has been manufacturing the Quest drive for centuries to provide everyone an affordable medium-sized component to carry them on their adventures.'), +(724,'CRUS_Starlifter_Thruster_Mav_A2','ManneuverThruster','JointThruster','72b1e74f-0e83-4125-8c0d-94ee6eed2014','','',NULL), +(725,'ADP Legs Green','Armor','Legs','1ffc8d57-5293-4e60-b0e9-9669ec9615dc','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(726,'Personal Storage','Cargo','UNDEFINED','7d4010d8-d477-4de1-b47d-ecf2e0a97892','','',NULL), +(727,'kiosk_terminal_1_a','Display','UNDEFINED','e1b658e9-182c-4d63-9bb0-42dacd8bd1c0','','',NULL), +(728,'Railing_Straight_1m_Propless','Usable','UNDEFINED','0911c459-d01e-4c92-8f31-11df535c4a8b','','',NULL), +(729,'Default_LensDisplay','Visor','Personal','4ceab596-ef75-4881-970e-138c9c6fc30e','','',NULL), +(730,'Food_bowl_cereal_01_b','Food','Consumable','3bb5b1c3-caea-4953-a1b4-9990735af445','','',NULL), +(731,'Access','SeatAccess','UNDEFINED','825a0752-d11e-4f59-b9fd-4579051831c1','','',NULL), +(732,'MG Scrip','Currency','UNDEFINED','0df18692-2cc7-4d9d-af85-95b8a7a45419','','','Issued by the Mercenary Guild, this scrip guarantees the bearer goods in trade at authorized locations as outlined in the guild’s bylaws and statutes 202C-05A. Not legal tender.'), +(733,'lt_light_flood_1_floor_a','Light','UNDEFINED','aa312d56-f052-4140-ae7b-44023b6b6364','','',NULL), +(734,'KRON_LaserCannon_FiringMechanism_S3','WeaponAttachment','FiringMechanism','72326367-0f76-4d8b-bad9-f722892553d7','','',NULL), +(735,'un_glass_cocktail_1_a','Misc','UNDEFINED','4577a966-119e-4873-bc12-6cfc12a2e595','','',NULL), +(736,'Gasping Weevil Eggs','Cargo','Cargo','5ddd0a6b-e04c-435b-bb96-222f5868432e','','',NULL), +(737,'Surge Module','MiningModifier','Gun','46643b07-bb39-4ac1-83e4-d428f0c01a75','','','Manufacturer: Thermyte Concern\nItem Type: Mining Module (Active)\n\nMining Laser Power: 150%\nResistance: -15%\n\nLaser Instability: +10%\n\nDuration: 15 seconds\nUses: 7\n\nInstantly inject energy into a deposit with the Surge. It uses a special configuration of lenses to increase mining laser power and bypass a deposit\'s resistance. It does require careful management as the module also increases laser instability.'), +(738,'Consolidated Outland Cavalry Ship Armor','Armor','Medium','43c34912-a619-4bf8-a8d0-9f1c7e5b3910','','','Consolidated Outland Cavalry Ship Armor'), +(739,'Armada','Shield','UNDEFINED','7ff2c313-51c7-459b-91e5-8afd089df32f','','','Item Type: Shield Generator\nManufacturer: Basilisk\nSize: 2\nGrade: D\nClass: Industrial\n\nBasilisk started by making cutting edge hull plating that was renowned for being durable and dependable. Today they carry on that proud legacy with industrial shield generators like the Armada.'), +(740,'trolley_cargo_1_a','Misc','UNDEFINED','129b69a6-f7ec-457e-85c9-d2c9c22819f7','','',NULL), +(741,'ANVL_Carrack_Thruster_Retro_Front','ManneuverThruster','FixedThruster','a8c6dd29-faf0-4c37-b92e-3caee7e33c37','','',NULL), +(742,'ARMR_KRIG_l21_wolf','Armor','Medium','0b584311-efe4-4cd1-b32a-a480a5d20a09','','',NULL), +(743,'StorageCage_Quantum_ZeroG_CustomLoadout','Cargo','UNDEFINED','e10b66ce-a561-45f0-b9bc-4aa833f9645e','','',NULL), +(744,'MISC_Hull_C_FoldingStrut_2D_Outer','Cargo','UNDEFINED','a11dbe7b-4105-43db-b645-98b9917b6925','','',NULL), +(745,'Ridgely Jacket Highland','Char_Clothing_Torso_1','UNDEFINED','fdd475c2-df2f-421a-b2f7-02116b19ed8c','','','Carrying Capacity: 1K µSCU\n\nThe extra-thick high collar of DMC’s Ridgely is part of a removable hood that makes the jacket surprisingly versatile and is a major reason why the Ridgely jacket is a perennial favorite amongst customers that live in, or venture through, cold environments.'), +(746,'MISC_Starlancer_Thruster_Mav_Small_Bottom','ManneuverThruster','FixedThruster','f3375c74-887a-4188-92af-2f08adb9f328','','',NULL), +(747,'SureGrip HV-S2 Tractor Beam','TractorBeam','UNDEFINED','39d9b779-561f-42c2-9e6d-a832ed37a303','','','Manufacturer: Greycat Industrial\nItem Type: Tractor Beam\nMax Angle: 60°\nMax Range: 130 m\nFull Strength Distance: 55 m\n\nThis heavy-duty variant of Greycat’s SureGrip tractor beam sacrifices range in exchange for additional power to handle larger and heavier objects making it an essential tool in a variety of industrial applications.'), +(748,'Odyssey II Undersuit Exec','Armor','Undersuit','7b730ead-2b14-4cd9-a23c-5adf13bb9fc0','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe latest generation of RSI\'s classic Odyssey undersuit features a new rugged design capable of withstanding the harshest of conditions in space or planetside. Built using the latest microweave technology, the Odyssey II undersuit provides hours of comfort in locations that are anything but comfortable.'), +(749,'Door','Door','UNDEFINED','57a42cbd-5d96-4dba-9ba3-3b56071b08cf','','',NULL), +(750,'srvl_combat_heavy_legs_03_01_01','Armor','Legs','7975b72c-9988-4609-aa40-492e8953dd6e','','',NULL), +(751,'ANVL_Hurricane_Thruster_Mav_Top','ManneuverThruster','JointThruster','3476a9c4-8061-4540-98bc-2fb3406f082c','','',NULL), +(752,'Zeus Exploration Suit Starscape','Armor','Undersuit','8f1ff80f-1541-456e-97cc-72c02cbfb92f','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -150 / 175 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nThe Zeus Exploration Suit has been designed to honor some of the earliest space pioneers, the RSI crews who developed and tested the Zeus, the first commercial spacecraft. While the suit is styled to match those used centuries ago with attachments for a helmet and backpack, it contains all of the modern technology and conveniences expected by present-day explorers. The Zeus offers good resistance to harsh environments and excellent storage space for sample-collecting during EVAs. The Starscape variant honors the black color scheme worn by RSI engineers.'), +(753,'ORC-mkV Arms Violet','Armor','Arms','3c3e5108-171d-43be-913d-805a6ee2733b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(754,'KRIG_P72_Archimedes_Thruster_Mav_Fixed_02_Bottom','ManneuverThruster','FixedThruster','58eb09de-2d2f-4124-af65-4889ae3cef25','','',NULL), +(755,'display_ship_components_02x0075x0275_a_s0_power','ShopDisplay','UNDEFINED','3ba15a0b-6a5d-4020-8761-2347e6f57c1a','','',NULL), +(756,'Overlord Core Dust Storm','Armor','Torso','3b1fc959-15dd-47a3-b86c-f731112326ab','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12.0 µSCU\nBackpacks: All\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.'), +(757,'Personal Storage','Cargo','UNDEFINED','1ad689ee-28ef-4bd4-b222-48a27b6d902d','','',NULL), +(758,'Year of the Dog Envelope','Misc','UNDEFINED','ce32be63-b951-443d-aaed-fda8af3ca899','','','A gilded red envelope celebrating the Year of the Dog. Exchanging these envelopes is one of the most popular ways of celebrating Red Festival. Often the envelope may include a small amount of credits inside to help those you care about have a strong start in the upcoming cycle. Growing in popularity is the newer tradition of hiding the envelopes as a way of spreading good fortune and prosperity to those that fate has deemed in need.'), +(759,'\'Dragon\' IV Missile','Missile','Missile','bc9adaf0-90a2-45e8-ba1d-5e0b56a76c92','','','Manufacturer: Vanduul\nTracking Signal: Infrared\nSize: 4\n\nDesignated the Dragon, this Vanduul infrared tracking strike missile has a fearful reputation earned the number of destroyed Naval ships attributed to its destructive power.'), +(760,'Libio Jacket Aqua','Char_Clothing_Torso_1','UNDEFINED','6ad48848-17a2-4bc8-8fa0-55cae91dfd51','','','Carrying Capacity: 1K µSCU\n\nOne of OpalSky\'s classic pullovers, the Libio features a two-tone asymmetrical pattern and polyweave blend to keep it elegant and striking every time you wear it.\n\nWomen\'s sizes currently out of stock.'), +(761,'PAB-1 Core Greycat Edition','Armor','Torso','11d57a99-e741-41b2-93e9-4a9ecd910a1f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile. The Greycat Edition was made specifically for the company.'), +(762,'WEAPONS','WeaponController','UNDEFINED','9a945c31-8595-4c5d-a5e6-c42cb8ab6498','','',NULL), +(763,'ANVL_Lightning_F8_Thruster_Main','MainThruster','FixedThruster','efbe76b3-0b35-431f-a956-043418ed36de','','',NULL), +(764,'HRST_LaserScatterGun_PowerArray_S1','WeaponAttachment','PowerArray','b4e6b18a-c1e4-4d69-bb4b-c90ae7a4717d','','',NULL), +(765,'Box','Cargo','Small','ac4d39ad-b4ba-45b1-827f-a75d384b75a0','','',NULL), +(766,'Corbel Helmet Halcyon','Armor','Helmet','4ee6abaf-5b55-4877-9904-087210ecfc6d','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nOriginally designed as a strength enhancement suit to give factory workers better lifting power, CDS found wider application in utilizing its defensive capabilities. It\'s triple-enforced armor plating provides extreme physical protection, with deliberate placing of materials to protect the most vulnerable parts of the body. A series of pneumatic levers offer increased flexibility in the joints, alleviating pressure and weight in key areas to create an accessible and highly protective armor despite its heavy weight.\n\nThe Halcyon edition displays a sharp contrast of bold yellow and muted black.'), +(767,'Access','SeatAccess','UNDEFINED','6a7398a4-017f-4564-ba2c-e9b3e4ad06e2','','',NULL), +(768,'Remote Turret','Turret','GunTurret','cd66e83e-d139-4981-ba7a-4faf0e47a382','','','Remote Turret'), +(769,'Venture Legs \"Rust Society\"','Armor','Legs','926a2bf7-600a-4d19-a6fa-bba397eb0b53','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates. The Rust Society edition adds a red and tan color scheme so you look good while working hard.'), +(770,'Lynx Core Bloodstorm','Armor','Torso','7b0c2445-5f43-4a87-83da-1687c6cd0f64','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(771,'ARMR_TMBL_Cyclone_TR','Armor','Medium','fe984446-2cbc-434a-a464-3332ea730270','','',NULL), +(772,'Cliffback T-Shirt Black','Char_Clothing_Torso_0','UNDEFINED','c1497637-e863-405a-8c0b-fd3e2ae350bc','','','Alejo Brothers\' classic loop tee with a spatter pattern.'), +(773,'Ardent Boots Grey','Char_Clothing_Feet','UNDEFINED','80577e81-1fa4-4db3-a7f9-5432a4e62b79','','','Who says NorthStar can\'t keep it pro? The Ardent boot features a molded rubber sole and all-weather construction to withstand a constant battery from the elements.\n\nWomen\'s sizes currently out of stock.'), +(774,'DustUp Arms Desert','Armor','Arms','8c677dd2-79ee-4b40-97a8-baa97068358b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -60 / 90 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe DustUp has your back if you’re looking to get into some trouble. The body plating is built off of the same CDS undersuit used by the UEE Marines, it adds reconstructed Omni-Role mkII pieces to give you solid protection against incoming fire, but the real gem is the modified helmet. That thing was built to withstand explosions, so it should totally protect you against some shots. The whole thing’s been reasonably tested against vacuum too, so you can feel free to EVA all you want without worrying about dying.'), +(775,'Seat','Usable','UNDEFINED','60b6aee9-9f19-41ca-9811-17731bac589c','','',NULL), +(776,'m_human_mannequin_truDef_pro_light','ShopDisplay','UNDEFINED','9e33a0ce-1dae-43d5-b93c-54be34531a3a','','',NULL), +(777,'Nyman Jacket Aqua','Char_Clothing_Torso_1','UNDEFINED','cfad8c46-2b62-4a61-9219-8910b210aa6b','','','Carrying Capacity: 1K µSCU\n\nOpalSky\'s Nyman light pullover is perfect to have on hand when lounging poolside or on those chilly nights.'), +(778,'PAB-1 Legs Imperial','Armor','Legs','3c38120f-ed09-4459-b8f8-3788665c83b2','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(779,'ORC-mkX Arms (XenoThreat v2)','Armor','Arms','98fc2303-daae-4f4a-b8c4-0bf992535def','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThis version of CDS\' ORC-mkX combat armor has been modified from its original form. The mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(780,'sc_marine_bdu_pants_01_01_eckhart','Char_Clothing_Legs','UNDEFINED','bf7124b8-8486-404b-b9f1-b0b1c3c6b09f','','',NULL), +(781,'Railing_Straight_2m_LT_Delta_a','Usable','UNDEFINED','db377f62-4558-4a8b-b94f-9eccdc90d121','','',NULL), +(782,'SureStop','Shield','UNDEFINED','925ec9df-cd0d-4c40-a5ad-6d22bdbfdeaa','','','Item Type: Shield Generator\nManufacturer: Gorgon Defender Industries\nSize: 3\nGrade: C\nClass: Military\n\nGorgon’s SureStop shield generator was initially developed for military applications, aiming for a middle-of-the-road alternative for circumstances that are anything but. Featuring new Envelop projection technology, the SureStop emphasizes performance and dependability over lower signature.'), +(783,'Carryable_1H_CY_tool_manual_socket_2_a','Misc','UNDEFINED','75868e54-7e08-440f-9335-4e0e3403c6d9','','',NULL), +(784,'H_Dashboard_Projector_HUD_VNCL_Glaive','Display','UNDEFINED','6da9294e-63cb-4502-ad3e-d2b02bd28eeb','','',NULL), +(785,'Seat','SeatAccess','UNDEFINED','1c79e939-df93-4f84-aa3c-a2051c16c1ae','','',NULL), +(786,'Crusader White Queen','Misc','UNDEFINED','695bc8fd-cc2d-4712-bf05-802b45084cec','','','Included with the Mercury Star Runner from Crusader Industries, this minimalist white chess piece has a marble base.'), +(787,'Scalpel Sniper Rifle Magazine (12 cap)','WeaponAttachment','Magazine','d84a7601-c246-4384-88c3-b3be0fe10680','','','Item Type: Magazine\nCapacity: 12\n\nThis magazine for the Kastak Arms Scalpel comes loaded with eight 7.62mm rounds.'), +(788,'Aluminum','Cargo','Cargo','47e626bb-96f6-4f4d-974f-a7442756fcc0','','',NULL), +(789,'Socoria','Radar','MidRangeRadar','c2ee37cb-4267-4075-9f50-104c4781e7c6','','','Item Type: Radar\nManufacturer: WillsOp\nSize: 3\nGrade: D\nClass: Civilian\n\nThe Socoria is a well-rounded radar providing everything a pilot needs for an effective radar at a reasonable price point.'), +(790,'SF7B Gatling','Weapon','Gun','0995529d-f2ce-4436-9807-1389fa429569','','','Manufacturer: Behring\nItem Type: Ballistic Gatling\nSize: 7\n\nSlug it out with large spacecraft and swiftly shred smaller ships with the SF7B ballistic Gatling. Built specifically for the Ares Inferno Star Fighter, the weapon seamlessly integrates into the body of the ship. The weapon\'s impressive rate of fire unleashes high-density rounds that tear through armor and shields, making it a perfect choice for situations where target saturation is key.'), +(791,'PAB-1 Core Dark Red','Armor','Torso','6e002e16-8e0f-41d0-8793-d9b25889ee2c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(792,'Zeus ArcCorp Livery','Paints','UNDEFINED','4f305eb1-38c3-4d5c-ba7e-ab6eebc8d27f','','','The ArcCorp livery for the Zeus features the company\'s logo atop a maroon base paint with black and yellow highlights.'), +(793,'ST-171 Missile Rack','MissileLauncher','MissileRack','59fd39c9-5771-4844-b81d-cbdd5ea6dc8f','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 1\nMissiles: 8xS1\n\nTo help defend the Origin 400i, Behring built the SNT-171 \"Santoro\", which can carry and deploy eight S1 missiles.'), +(794,'Flight Blade','FlightController','UNDEFINED','f0e43ba1-b299-422e-9b91-a228d6481451','','',NULL), +(795,'Bologna Sandwich','Food','Junk','4ef4f879-5817-4361-8101-e81e5122bad5','','','NDR: 41\nEffects: None\n\nArtisanally crafted in the old-world tradition, our lightly smoked bologna is paired with a sharp mustard and layered between soft, buttery rice bread. At Twyn\'s, it\'s what\'s inside that counts.'), +(796,'SHIELDS','ShieldController','UNDEFINED','31d9cdbb-fc1c-4bf7-9df7-d5acbe3b1333','','',NULL), +(797,'AEGS_Sabre_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','55df5df6-b963-4445-8672-2bea5291e8a6','','',NULL), +(798,'M9A Cannon','Weapon','Gun','e2caa49e-ece4-4c43-8514-786f29ac8810','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 7\n\nStrike at the very heart of your enemies with the devastating impact of Behring\'s M9A energy autocannon. When fully charged, the massive stopping power of this laser weapon has the potential to halt even capital ships in their tracks.'), +(799,'Steel','Cargo','Cargo','a3e3e4d8-bb9a-47dc-8b7d-4c27fd0c5b3d','','',NULL), +(800,'Venture Arms Dark Red','Armor','Arms','0e70727f-a21a-444f-a968-853b3ae24556','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(801,'Flight Blade','FlightController','UNDEFINED','66b1ff14-95d2-4f29-a3c4-13e21599a835','','',NULL), +(802,'PAB-1 Arms Sienna','Armor','Arms','54688289-a2ff-4eca-a22c-62ade17ce1c6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(803,'IonBurst','PowerPlant','Power','e5ce3ff8-e9a6-4f5c-872f-edf082422d39','','','Item Type: Power Plant\nManufacturer: Lightning Power Ltd. \nSize: 1\nGrade: B\nClass: Civilian\n\nThe IonBurst is touted by Lightning Power as being a best-in-class power plant, providing unequaled performance for the price.'), +(804,'Mining Modules','MiningModifier','Gun','c771d921-e4b1-4e45-85fa-8b517aca3d70','','',NULL), +(805,'ARGO_MOTH_CargoGrid_RearLift','CargoGrid','UNDEFINED','a98730b6-717a-4314-9488-d2e660ee5391','','',NULL), +(806,'Soap','Misc','UNDEFINED','a46aeaaf-7f51-44aa-a2cc-0b29ef9873bb','','',NULL), +(807,'Ponos Boots Violet','Char_Clothing_Feet','UNDEFINED','5a0e34e1-472f-4d94-a8ef-673be7d4cc53','','','Quite simply, R6 Pro\'s Ponos boots were built for backbreaking work. Constructed out of Thermosulate technology, these waterproof and insulated workboots are rated for sub-arctic environments while the composite outsole ignores hazards to maintain traction when you need it most.'), +(808,'Balor HCH Helmet Executive','Armor','Helmet','cdddc807-70b4-4eb8-b6a4-bbbd6e85772f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. Visor is AR crosshair compatible.'), +(809,'Fotia Seedpod','Cargo','Cargo','4a374205-8195-4601-83ad-1bd59ff400d2','','',NULL), +(810,'Pizza Box','Misc','UNDEFINED','42218328-771d-49fd-920a-e6507b0be399','','','Keep your oven-fresh pizza piping hot while transporting.'), +(811,'Remote Turret','Turret','GunTurret','c1c90b07-15f3-40c7-aafd-bf99c25654dd','','','Remote Turret'), +(812,'Seat','Usable','UNDEFINED','0cf2b5c6-4cc4-4323-b63a-a08245c96bde','','',NULL), +(813,'H_Dashboard_Projector_HUD_ANVL_Hurricane','Display','UNDEFINED','0bfcb87f-4c0a-4950-9319-f51d7960b032','','',NULL), +(814,'f_human_mannequin_slaver_light','ShopDisplay','UNDEFINED','e7ead102-a0b0-442c-b8ee-8af233d596df','','',NULL), +(815,'Palatino Legs Necropolis','Armor','Legs','fea0df3c-6b88-4de2-ab90-dd318f70eb8f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower.'), +(816,'shelf_shoe_3_highend_b','ShopDisplay','Default','42ae8d9d-ec3a-403d-9f6e-41b5313c0a12','','',NULL), +(817,'WarmingSpot_Propless','Usable','UNDEFINED','9205519f-84ca-419c-b097-26f0bdfebab4','','',NULL), +(818,'MISC_Hull_C_Ring_01','Room','UNDEFINED','3aa8a79b-8515-4fa0-bd50-71500290a101','','',NULL), +(819,'Stirling Exploration Helmet Transistor Edition','Armor','Helmet','d28364fa-e46b-4e7f-b4da-62cded070559','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nDesigned to withstand inhospitable environments, the Stirling Exploration Suit provides a base level of protection from environmental hazards including radiation. Combining Caldera\'s advanced insulation fabrics with sophisticated polymers, the Stirling is able to safeguard the wearer whilst minimizing disruption to movement. Additionally, a self-cleaning system automatically activates after radiation exposure to expunge dangerous excess down to nominal levels. This helmet is only compatible with the Stirling Exploration Suit. The Transistor Edition is primarily copper with a white accent that cuts down the middle, finished with a tinted yellow visor.'), +(820,'Venture Helmet Seagreen','Armor','Helmet','a7386a26-e974-47cd-a58e-1ca1a444e6f6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover.'), +(821,'Janalite','Cargo','Cargo','160bf868-2f4c-49aa-a7b9-bc62c9d18523','','',NULL), +(822,'Hydrogen','Cargo','Cargo','f27be49a-eb78-4fb1-bfb2-9563c9f7d1c8','','',NULL), +(823,'Aril Legs Black Cherry','Armor','Legs','19cb730c-bf9a-401a-9284-63027b359ea1','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(824,'CRUS_Herclues_SCItem_Seat_CoPilot','Seat','UNDEFINED','f2aca5cc-f783-409b-83ad-ef4097254357','','',NULL), +(825,'G-2 Helmet Seagreen','Armor','Helmet','a8be87b7-182c-4429-b19c-4809f3e3a74e','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. Visor is AR crosshair compatible.'), +(826,'Aspis','Shield','UNDEFINED','37ae6971-46d1-4021-bb9f-353813df8e9f','','','Item Type: Shield Generator\nManufacturer: Basilisk \nSize: 2\nGrade: C\nClass: Industrial\n\nBasilisk’s Aspis industrial shield generator features durable design and reliable performance, earning it a place on Whitley’s Guide ‘Best Buy’ list.'), +(827,'Zenith \"Thunderstrike\" Laser Sniper Rifle','Weapon','Medium','8df5d8a3-8052-4504-91ff-4a4c9d33218d','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Sniper Rifle\nClass: Energy (Laser)\n\nBattery Size: 22\nRate of Fire: 60-300 rpm\nEffective Range: 80 m\n\nAttachments: Optics (S3), Underbarrel (S2)\n\nThe Zenith Laser Sniper Rifle from VOLT offers operational flexibility on the battlefield as it can fire lower-energy shots rapidly, or be allowed time to automatically charge to fire a much more powerful energy blast that also generates significantly more noise and heat.\n\nThe deep gray of the Thunderstrike edition emphasizes the weighty feel of the rifle.'), +(828,'Agricultural Supplies','Cargo','Cargo','7be15085-be27-4bc0-9508-85b1aea19b09','','',NULL), +(829,'ARGO_ATLS_IKTI_SCItem_Seat_Driver','Seat','UNDEFINED','6921c36d-68dd-453b-ad41-dd3bc3b2ca07','','',NULL), +(830,'Carryable_2H_FL_05x05x05_MissionItem_Present_a','Misc','UNDEFINED','45c83537-a263-4562-afff-739a25591dfe','','',NULL), +(831,'Seat','Usable','UNDEFINED','7534cc6a-1581-40ec-be70-95aaf084b261','','',NULL), +(832,'Cassidy Shirt','Char_Clothing_Torso_0','UNDEFINED','0819eba5-1055-48e4-96b4-0844e8e73fb5','','','Habidash\'s Cassidy short-sleeved henley t-shirt features a lightweight, breathable fabric blend paired with a neck covering and separated arm sleeves for a stylish look that remains practical in dustier climates.'), +(833,'Bed','Usable','UNDEFINED','155971ca-506e-4464-b566-edafbf49af57','','',NULL), +(834,'ROC Dolivine Livery','Paints','UNDEFINED','fc832536-15b2-4a33-a7da-e2b99ea060f7','','','Sharing the name with a gemstone prized for its beauty and industrial applications, the Dolivine livery blends shades of light green to give your ROC a unique look.'), +(835,'BEHR_JavelinBallisticCannon_Barrel_S7','WeaponAttachment','Barrel','08efc343-b3c6-4baa-bc55-13f01ecc9dbc','','',NULL), +(836,'Walesko','FPS_Consumable','Hacking','cb19fec5-5fd6-4e8f-ade6-55ace68b7e69','','','Instructions for how to build this simple cryptokey were first published publicly in 2887 by political activist Aris Walesko who had hoped that it would lead to greater governmental transparency. Though not up to the standards of most modern security protocols, this slow and unreliable device it is still in use today owing to its ease of construction and wide availability from numerous small manufacturers.'), +(837,'MacFlex Core Sienna','Armor','Torso','cc175402-f03d-481c-9514-c0fe01fd96c5','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(838,'BR-2 Shotgun Magazine (12 cap)','WeaponAttachment','Magazine','38555f2d-975f-4e3c-8d04-8196b59b17c6','','','Item Type: Magazine\nCapacity: 12\n\nThis magazine for the Behring BR-2 shotgun holds twelve 12-gauge rounds.'), +(839,'ORIG_X1_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','954c5238-f90a-4d81-979b-1a20584f1fa8','','',NULL), +(840,'AEGS_Sabre_Firebird_bombay_door_right_outer','Misc','UNDEFINED','b84535c2-267f-4e22-bd3c-e7857a5f3879','','',NULL), +(841,'Construction Materials','Cargo','Cargo','5ee15a9b-4ce5-445b-a02d-415c63f43764','','',NULL), +(842,'TRGT. STATUS','Seat','UNDEFINED','7b9dcd81-de75-4b34-bbe2-71c558d13404','','',NULL), +(843,'Carryable_1H_CY_drug_calcar_1_a_PlayerCannotUse','Misc','UNDEFINED','032605ed-7797-4d2c-a230-6eb4295a11d3','','',NULL), +(844,'Anvil Ballista S07 Missile Rack','GroundVehicleMissileLauncher','GroundVehicleMissileRack','9b1808e8-0ccf-4684-8ac8-8f42848786ad','','','Item Type: Missile Rack\nManufacturer: Anvil Aerospace\nSize: 7\nMissiles: 1xS7 \n\nBespoke missile rack for the Anvil Ballista that fires an S7 missile capable of massive destruction.'), +(845,'GATS_BallisticCannon_Ventilation_S3','WeaponAttachment','Ventilation','e75799ef-d278-47b1-b667-9bf7528b23d4','','',NULL), +(846,'KRON_LaserCannon_Ventilation_S2','WeaponAttachment','Ventilation','1f61bf1c-7a75-474b-9cfb-bca7be7202c9','','',NULL), +(847,'Carryable_1H_CY_woundfiller_1_a','Misc','UNDEFINED','f2accc53-56b7-43cf-94a0-3d9abdf58131','','',NULL), +(848,'Morningstar Helmet Orange','Armor','Helmet','2795e5a7-ac03-4790-9c70-371bbef1fd71','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(849,'ARGO_SRV_Thruster_Mav_Bottom','ManneuverThruster','UNDEFINED','58e789b2-abf0-42ce-aed0-18b94374aa2a','','',NULL), +(850,'ARGO_SRV_Thruster_VTOL','MainThruster','UNDEFINED','62b3a8ec-3fcb-4e27-867b-424d1642462d','','',NULL), +(851,'Internal Tank','QuantumFuelTank','QuantumFuel','de281c58-2fd3-4816-bf11-b0457599e947','','',NULL), +(852,'BEHR_LaserRepeater_Barrel_S10','WeaponAttachment','Barrel','25a70b98-80db-446e-b70e-233a5a758f72','','',NULL), +(853,'Door','Door','UNDEFINED','5167f2fa-79ea-449d-82cc-6d4159e4b8af','','',NULL), +(854,'TRGT. STATUS','Seat','UNDEFINED','419cba27-c9c5-4e98-a4a5-d0d862e1c802','','',NULL), +(855,'Seat','Usable','UNDEFINED','20addaf9-2086-4294-983f-2ff1c0e19628','','',NULL), +(856,'ASD Technician Hat','Char_Clothing_Hat','UNDEFINED','1411a87f-0544-465f-ac18-d06e70b1c640','','','A white and black cadet hat with ASD\'s name and logo emblazoned across the front panel.'), +(857,'KRIG_P52_Merlin_Thruster_Mav_Vertical_Up','ManneuverThruster','JointThruster','5c15bb8b-3b4b-4763-ba0e-2e99e2a41859','','',NULL), +(858,'Internal Tank','FuelTank','Fuel','0af99fba-0f2e-4476-a8a5-817dfa2b8358','','',NULL), +(859,'AEGS_Javelin_Thruster_Mav_Joint_01','ManneuverThruster','JointThruster','3bb025cf-20c8-4532-9460-0ce7241a636b','','',NULL), +(860,'Waste','Cargo','Cargo','d0729f03-ac0f-41bd-b42b-edee3ce09e46','','',NULL), +(861,'Golem Strongheart Livery','Paints','UNDEFINED','2b5acde1-50c1-4a6f-afe5-164ac3f1a6ae','','','The Strongheart livery for the Golem is a bright and bold red with black highlights.'), +(862,'Door_Ship_Sensor_Proximity_1x2x3','Sensor','DoorPart','3a823d07-89dc-4eda-890a-4b8f3b6082a3','','',NULL), +(863,'Cleo Pants Navy Blue','Char_Clothing_Legs','UNDEFINED','3a5774ab-4ffd-4adc-bd5f-a6cd20959a8c','','','Carrying Capacity: 0.5K µSCU\n\nElegantly simple, the intriguing design of Cleo becomes more apparent upon closer inspection thanks to a mock fall front lined with subtle diagonal pleats that provide extra texture and detail to the design.'), +(864,'MASTER_screen_16x9_6_0064x0036_a','Display','UNDEFINED','860dd030-3e22-4e2f-b1e5-c74cc0434e2e','','',NULL), +(865,'Ardent Boots Blue','Char_Clothing_Feet','UNDEFINED','974fea21-5f6d-4bfb-a9ea-5c6209049f86','','','Who says NorthStar can\'t keep it pro? The Ardent boot features a molded rubber sole and all-weather construction to withstand a constant battery from the elements.\n\nWomen\'s sizes currently out of stock.'), +(866,'Venture Core Executive','Armor','Torso','f11ebfcd-ceb8-4286-9231-6f1ff1867861','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement. And now you no longer have to choose between exceptional styling and performance thanks to the tasteful gold detailing only available with the special limited Executive Edition.'), +(867,'Vehicle_Screen_MFD_Holographic_MISC_Starlancer_L','Display','UNDEFINED','bf52ce47-c7e0-4c9d-a216-192571409f4d','','',NULL), +(868,'Anysta','Radar','MidRangeRadar','d3b9d505-5bbc-48cc-b6e3-2ca49ac4a390','','','Item Type: Radar\nManufacturer: WillsOp\nSize: 3\nGrade: A\nClass: Civilian\n\nAvoid getting tunnel vision with the Anysta radar. Offering exceptional performance all round, this radar will help keep you informed.'), +(869,'Table_6_Seat_RSI_Perseus','Usable','UNDEFINED','c6019de7-821c-46ca-a426-ac5bfa296cb2','','',NULL), +(870,'Waylite Shoes Desert','Char_Clothing_Feet','UNDEFINED','900153fe-e56d-4cd8-9b08-cd871970ed1d','','','Stay on your feet all day with Northstar\'s Waylite. These slip resistant shoes utilize comfortable memory foam and shock absorbent technology to make these casual sneakers perfect for the office or home.\n\nWomen\'s sizes currently out of stock.'), +(871,'Seat','Usable','UNDEFINED','16ad421d-da45-49cf-a08d-dc878fca13b3','','',NULL), +(872,'RSI_Apollo_Dashboard_Btn_Lights','AttachedPart','UNDEFINED','0e864396-660e-469f-bcee-ce94bee0ca30','','',NULL), +(873,'Aloprat Skewer','Food','Consumable','a20b8066-3584-4e2b-b863-a32303767995','','','NDR: 25\nEffects: Immune Suppressing\n\nAloprat is a hearty species of rodent found across Human occupied space, and even can survive aboard space stations and ships eating a variety of food and scraps. This aloprat has been skewered and roasted rotisserie style for crisp skin and gamey, fatty meat.'), +(874,'Fresnel \"Shadow Gild\" Energy LMG','Weapon','Medium','93ae8a77-efd2-4eb1-933f-f436a5789bb6','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: LMG\nClass: Energy (Electron)\n\nBattery Size: 165\nRate of Fire: 550 rpm - 220 rpm\nEffective Range: 50m\n\nAttachments: Optics (S3), Underbarrel (S3)\n\nThe engineers at VOLT crafted the Fresnel LMG to bring a powerful energy weapon to the frontlines, one that can initiate a fight with a rapid spray of deadly blasts. As the weapon heats up, the shots become slower and more powerful, but be careful of overheating. A weapon of this magnitude demands a strong foundation; operators are encouraged to fire from a crouching position to allow for better recoil management.\n\nThe Shadow Gild edition is dark gray and features stylish gold highlights.'), +(875,'Ball','Char_Head_Piercings','UNDEFINED','992eab0b-f01e-4792-84e1-91d3e9c2a06c','','',NULL), +(876,'Bed','Usable','UNDEFINED','bdd2d858-52ed-4eeb-bb73-869c86346be6','','',NULL), +(877,'Clempt Pants Purple','Char_Clothing_Legs','UNDEFINED','ffa113ae-d79d-4d48-92e2-efa1c9606a13','','','Carrying Capacity: 2K µSCU\n\nStegman\'s factory pants have been taken to the next level with the Clempt line. These rugged all-purpose pants come with double knees for extra comfort and protection and are made from tough composite weave fabric to last as long as the work needs.'), +(878,'Salluq Mask Brown','Char_Clothing_Hat','UNDEFINED','a2bd7c9c-204f-48b0-b4bc-a6d45fea9152','','','Made for hostile environments, the Salluq Mask keeps dirt, dust, and grit out of your eyes while providing you with a wide field of vision. Please note that this mask is not space-rated and should only be worn in naturally breathable environments.'), +(879,'Artimex Helmet Elysium','Armor','Helmet','b3aebd44-acf3-4b2b-a171-7770d1eade90','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.\n\nThe Elysium edition combines bright gold detailing of winged skulls with a navy blue.'), +(880,'TRGT. STATUS','Seat','UNDEFINED','5af6764d-a151-422f-b0be-007022561fbc','','',NULL), +(881,'Hydrogen Fuel','Cargo','Cargo','11de316c-53c1-4ad2-a925-cd550bee4384','','',NULL), +(882,'Utensil_Plate_TomatoCurry','Misc','UNDEFINED','9b46eaab-1b96-422c-8965-54f12b97ddf1','','',NULL), +(883,'Counter_Bar_2m_fridge_DEPRECATED','Usable','UNDEFINED','d65950dd-fee5-44f3-bff7-42127da9612c','','',NULL), +(884,'Seat','SeatAccess','UNDEFINED','53275ce6-96dd-408c-b79f-bbbabde30639','','',NULL), +(885,'Flight Blade','FlightController','UNDEFINED','d2c4dd59-dcc3-4f5c-82f9-33425de40d02','','',NULL), +(886,'Freelancer Ellroy\'s Livery','Paints','UNDEFINED','f142c310-514f-4ce5-ba0d-80f0363d8db7','','','Ready to give your Freelancer a jolt of energy? The iconic, coffee serving mascot pops on the Ellroy\'s livery, which is primarily crisp white with red and black highlights.'), +(887,'AEGS_Javelin_Thruster_Mav_Main_02_Aux','ManneuverThruster','FixedThruster','13be6d8c-e94a-4384-ad7a-08373b0a86df','','',NULL), +(888,'Fried Seanut with Sauce','Food','Consumable','e52e45bc-99ea-4479-b0c3-bdf6e6342957','','','NDR: 15\nEffects: Dehydrating\n\nEasy to grow and care for, these tubular sea creatures have become a popular food in the outer reaches of systems. This seanut has been fried and topped with a vinegar-based sauce for a salty, roasted and tangy taste.'), +(889,'Fresh Food','Cargo','Cargo','a5996a9f-c2b3-432d-8e8f-99befe58d870','','',NULL), +(890,'MISC_Reliant_Thruster_Retro','ManneuverThruster','FixedThruster','44ec208d-de8f-4b4c-8cd8-d6e47d75014f','','',NULL), +(891,'ANVL_Hawk_Thruster_Main','MainThruster','FixedThruster','58ed4e19-6f40-4338-9383-de7b418cf937','','',NULL), +(892,'Manned Turret','TurretBase','MannedTurret','bd9f6f94-0e86-482b-a58a-d90eed2b326c','','',NULL), +(893,'GATS_BallisticGatling_Ventilation_S3','WeaponAttachment','Ventilation','6026f8f4-32df-4f26-8ff2-0b4659a73f08','','',NULL), +(894,'Strata Legs Lodestar','Armor','Legs','f2c1b30f-7ec6-4175-a114-1e524ec12f6a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 10k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres.'), +(895,'DockingTube_Fuel_Ports_ANVL_Hornet','DockingCollar','UNDEFINED','8738dbe8-bf1c-4244-9f8b-0a6844d2308e','','',NULL), +(896,'RSI_Meteor_Thruster_Mav_Joint','ManneuverThruster','JointThruster','4dfe0a27-eb04-4ae7-be4d-b3edea038791','','',NULL), +(897,'ActorMovableWheel_Trolley_storage_cryo','Misc','Small','fc86abfb-2751-4200-8ba7-e1f5c0298d5e','','',NULL), +(898,'Gadget_Cabinet_kegr_fire_extinguisher_01_Nozzle_low','Usable','UNDEFINED','bf13d7ec-f327-4123-993e-ea196483e4f2','','',NULL), +(899,'Door','Door','UNDEFINED','d7e5524f-175a-46aa-92d4-f7550b4a3681','','',NULL), +(900,'Harlowe Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','ded5074b-b50c-40b2-a8bf-a49e92c8255a','','','Capable as being worn on its own or as a base for layers, this long-sleeve henley style shirt from Alejo Brothers keeps you stylish and comfortable.'), +(901,'Internal Tank','FuelTank','Fuel','78f8554f-df59-410e-a44b-767b2fdfa3bc','','',NULL), +(902,'Radar_Display_XNAA_STY','Display','UNDEFINED','ea3b9903-e0c2-416a-9459-064ca9f743e6','','',NULL), +(903,'ANVL_Door_Decal_Carrack_EngCon','Decal','DoorPart','2689df01-6c15-4f06-a965-f452a117a892','','',NULL), +(904,'Arctic','Cooler','UNDEFINED','e41f4682-381a-453e-802b-521ce84a26b6','','','Item Type: Cooler\nManufacturer: Aegis Dynamics \nSize: 2\nGrade: C\nClass: Military\n\nProviding the kind of durability that made Aegis products a mainstay with the military, the Arctic is an economic mil-spec cooler capable of withstanding the rigors of combat without sacrificing performance.'), +(905,'Door','Door','UNDEFINED','8c714d36-8d36-4a26-899c-61692c12843e','','',NULL), +(906,'Partillium','Cargo','Cargo','9d74869b-b825-4065-a43b-57a3e7760563','','',NULL), +(907,'ATLS Thunderhead Livery','Paints','UNDEFINED','07c8e30c-fa4f-4ac3-ae39-33eae6a50be7','','','The Thunderhead livery for the ATLS is black with grey stripes across the arms.'), +(908,'vanduul_thul_core_01_01_01','Armor','Torso','50b6c819-8540-4715-b90e-9b68213be5f4','','','@LOC_PLACEHOLDER'), +(909,'StorageCage_Time','Cargo','UNDEFINED','cdd10d0a-ccd7-440b-8549-9ef8ae1f507d','','',NULL), +(910,'GATS_BallisticGatling_Mounted_Barrel_S1_FakeHologram','WeaponAttachment','Barrel','97f48d42-0642-4183-81f0-78eeb6bdc2d5','','',NULL), +(911,'Internal Tank','FuelTank','Fuel','39183bed-56ed-4b53-ae8e-e77603d1f82a','','',NULL), +(912,'600i Fortuna Livery','Paints','UNDEFINED','b40c698a-38ce-411d-b151-bd532042a679','','','Make luck your co-pilot. Boldly set your sights on the stars and adventure forth in style with the Fortuna livery. This Stella Fortuna themed paint scheme is primarily green with grey accents.'), +(913,'Remote Turret','Turret','PDCTurret','4e1c3b0d-8170-4129-a411-e1f92e5fe69e','','',NULL), +(914,'COMMS','CommsController','UNDEFINED','ae1a186e-0f8c-4deb-8079-bfb54df4a8a7','','',NULL), +(915,'ANVL_Door_Decal_Carrack_Deck4','Decal','DoorPart','28084c3f-2489-4024-be8d-1f0a0c91b378','','',NULL), +(916,'Sabre Stormbringer Livery','Paints','UNDEFINED','c6aa2f3c-93a0-4392-9a51-71c3dcf2808a','','','This custom Sabre livery was created to celebrate the 2950 IAE on microTech. It blends black and electric blue with white accents to give the ship a cool new look.'), +(917,'JDRV_ORIG_S04_890J_SCItem','JumpDrive','UNDEFINED','5f54cdb1-8397-479f-9b14-8988fc53373e','','',NULL), +(918,'Seat','SeatAccess','UNDEFINED','88c7a21d-9eb2-44d2-a84a-414c2297915b','','',NULL), +(919,'Beacon Undersuit Twilight','Armor','Undersuit','5e03ea44-400b-4442-a962-ac5e65e8f866','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRSI\'s Beacon undersuit is a general use utility designed to provide total protection against environments and vacuum. Built out of a durable but flexible polymers, the Beacon provides a wide freedom of motion for a variety of body types.'), +(920,'Manned Turret','TurretBase','MannedTurret','f6a34767-b9a6-44ef-9f5f-16e7face001f','','',NULL), +(921,'AEGS_Door_Decal_WallPanel_03','Decal','DoorPart','8f7332d7-3152-4880-857d-d059c5c64366','','',NULL), +(922,'AEGS_Idris_SCItem_Seat_Bridge_Rear_Right','Seat','UNDEFINED','adfcb70d-2ceb-404c-8f48-b8d8e423f6a4','','',NULL), +(923,'EE16 (16x Telescopic)','WeaponAttachment','IronSight','49d638ae-c9ca-4391-b0c7-2043d9ab4f42','','','Manufacturer: Behring\nType: Telescopic \nAttachment Point: Optic\nMagnification: 16x\nAim Time: +0%\nSize: S3\n\nGet a clear view of your target from afar with the EE16. Behring craftsmanship produced a 16x scope that\'s lightweight, durable, and deadly accurate. A rigorous 22-step testing process ensures the EE16 can deliver precision targeting even after encountering extreme weather or surviving battlefield wear and tear.'), +(924,'Roughneck Pants (Modified)','Char_Clothing_Legs','UNDEFINED','d18826b8-a146-4bf1-a8c9-46d72dbf7135','','','Carrying Capacity: 2K µSCU\n\nThis version of DMC\'s Roughneck pants has been modified from its original form. DMC\'s Roughneck pants are low cut for maximum comfort with extra size pockets and built to weather the storms of life.'), +(925,'ORC-mkX Arms Scorched','Armor','Arms','ebd3cf9f-b0a2-4208-baa1-cd9e6097c25e','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(926,'Beryl (Raw)','Cargo','Cargo','d72908a6-a12c-44ac-939b-e45c57abd54a','','',NULL), +(927,'VNCL_Stinger_Thruster_Retro_Fixed_Left','ManneuverThruster','FixedThruster','642fe9ab-5c3c-4b1f-bf20-e29a09be044d','','',NULL), +(928,'Bed','Usable','UNDEFINED','a915e608-4abe-4d05-b100-95b14cbfcce2','','',NULL), +(929,'Inert Materials','Cargo','Cargo','94863457-67c5-48c0-95de-74b15135efa6','','',NULL), +(930,'Door Control','Door','UNDEFINED','8982eb5b-db6f-4815-9ed7-a26c329a4231','','',NULL), +(931,'Silverton Pants CFP','Char_Clothing_Legs','UNDEFINED','2b3adcf0-d968-4752-b87a-bf083e97fa7e','','','Carrying Capacity: 1K µSCU\n\nMade with a sturdy blend of tough and flexible materials, the Silverton pants are the perfect fit for someone who needs heavy-duty workwear without sacrificing mobility. Got a job to do? We\'ve got you covered.\n\nThe CFP edition is a deep fjord blue with black accents.'), +(932,'AEGS_Door_Decal_Medbay','Decal','DoorPart','c2b52357-0475-4e04-977f-f66ceea0b298','','',NULL), +(933,'Hannu Shirt','Char_Clothing_Torso_0','UNDEFINED','5b1b3eee-2b48-4ac5-887c-a7e62168acb0','','','Be bold. Be you. Escar LImited\'s Hannu line of ultra-cas shirts features a fading asymmetrical cut and patchweave material that feels both rustic and thoroughly modern.\n\nWomen\'s sizes currently out of stock.'), +(934,'Invictus 2953 T-Shirt Grey','Char_Clothing_Torso_0','UNDEFINED','744b5541-a4a3-406d-855b-3e15b01a9710','','','Celebrate Invictus Launch Week 2953 with this grey t-shirt made from a comfortable cotton blend and featuring the silhouette of a ship across the front.'), +(935,'Door','DockingAnimator','UNDEFINED','d3408575-06d7-410d-b09d-817cd439223a','','',NULL), +(936,'Seat','SeatAccess','UNDEFINED','64ed53da-c4c4-489e-8d8d-46d9eb1df0c9','','',NULL), +(937,'AEGS_Vanguard_SCItem_Dashboard_Esc_Pod','SeatDashboard','UNDEFINED','6b57bace-bf6f-4e45-a657-1774a79b3280','','',NULL), +(938,'Sabre Polar Camo Livery','Paints','UNDEFINED','ce0a3a9f-c3d7-45dd-8d05-ed869ae1c131','','','Modify your Sabre with this white and grey camo livery specifically designed for the 2950 IAE event on microTech.'), +(939,'RSI Constellation Side Missile Rack','MissileLauncher','MissileRack','06b86102-1d01-4091-9da8-dccad7c835b1','','','RSI Constellation Side Missile Rack'), +(940,'Construction Rubble','Cargo','Cargo','88d985d9-e3e6-4a62-baa4-5cee2ed187bc','','','Can be processed at refineries into Construction Material.'), +(941,'Crusader Black Rook','Misc','UNDEFINED','a205e53a-33b9-42bb-9929-a444bb45ea68','','','Included with the Mercury Star Runner from Crusader Industries, this minimalist black chess piece has a marble base.'), +(942,'Table_Alley_4_Seat','Usable','UNDEFINED','b1cd38ea-e2c8-4e39-9625-a45260603b24','','',NULL), +(943,'MASTER_screen_16x9_2_0064x0036_a','Display','UNDEFINED','ef8e5184-332e-42c7-a020-b2a1ce59dc26','','',NULL), +(944,'Zeta-Prolanide','Cargo','Cargo','92c98bd5-803b-4c4a-9d9f-858e186067ac','','','This chemical is an industrial reactant that has found widespread use neutralizing irradiated materials. Because of how volatile it is, it must be kept in an electrically charged state or else a rapid exothermic reaction may occur before desired.'), +(945,'TEST STRING NAME','Armor','Helmet','269dc312-1113-4e06-8a82-ef310dcc472a','','',NULL), +(946,'Artisan Apron Kel-To','Char_Clothing_Torso_1','UNDEFINED','8f261dca-2f9f-4b13-9aeb-3890845b2adc','','','Carrying Capacity: 1K µSCU\n\nWith a reinforced front pocket and colorful accent piping, Stegman\'s Artisan apron is a reliable choice for your next shift.'), +(947,'sc_nvy_bridgeofficer_pants_01_01_01','Char_Clothing_Legs','UNDEFINED','be95ba66-6e1e-4478-853f-e4510cdb0e51','','',NULL), +(948,'Inquisitor Arms Raven','Armor','Arms','d92ffcf6-2601-4b55-9ad6-4c7e74e08286','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(949,'ARMR_DRAK_Dragonfly','Armor','Medium','1f4b287e-cc88-4cf5-b7ba-2cab7ae5eeaf','','',NULL), +(950,'Strata Helmet Hurston Black','Armor','Helmet','f050da8e-7460-4275-beb0-d4ea6caead73','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design features high quality materials and a next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Hurston Black variant was made specifically for the company.'), +(951,'Kavir Pants Spruce','Char_Clothing_Legs','UNDEFINED','b874ec01-5f07-4e53-93f2-aa0b095c7c32','','','Carrying Capacity: 0.4K µSCU\n\nBlending Habidash style and ingenuity, the Kavir pants feature fashionable flourishes alongside practical perks ideal for managing extreme environments. Several fabric pieces are sewn directly into a thick, integrated belt that divides the pants between a large elastic waistband and looser, breathable cotton blend fabric through the legs. There are also two bands of fabric that ring the shins to keep dirt and other elements out.'), +(952,'Seat','SeatAccess','UNDEFINED','f6e791e1-9eaa-4da5-bf41-66e5d58c4616','','',NULL), +(953,'Seat','SeatAccess','UNDEFINED','56df7df3-b723-4b60-bfda-af412f856300','','',NULL), +(954,'display_16x9_1_0080x0045_a','Display','UNDEFINED','03434a30-f940-40bc-865d-6d5a9de37a0c','','',NULL), +(955,'Available','Cargo','Cargo','febdb107-cb1f-4f38-b633-424ec829a507','','',NULL), +(956,'Twenty-Sided Plushie Red','Misc','UNDEFINED','2dbbe5b5-e905-4535-a5bf-09aa0c6f8aa3','','','Ready to roll? Make your randomly generated numbers a little more squeezable with this plush icosahedron. Each surface of the large red die features a different easy-to-read number.'), +(957,'Weapon Rack','Usable','UNDEFINED','73a2e1d6-0ba8-4384-9c5f-fd1b5bd8bd02','','',NULL), +(958,'Odyssey II Undersuit Alpha','Armor','Undersuit','14b28bd4-cf46-4c20-a65b-5df88fceac58','','',NULL), +(959,'ORIG_400i_Dashboard_Pilot','SeatDashboard','UNDEFINED','0e361321-dd30-4d47-8c9e-71a313f75216','','',NULL), +(960,'Silicon','Cargo','Cargo','9921ebd4-799f-4404-918d-013aa241e938','','',NULL), +(961,'Freelancer 2951 Auspicious Red Ram Livery','Paints','UNDEFINED','c0de1fbb-e8ff-4d97-96c4-329b05dac742','','','Seek peace and prosperity in the new year with the 2951 Auspicious Red Ram livery. Outfit your ship with this bold red base paint complimented by gold accents and a silhouette of a ram\'s head.'), +(962,'ARGO_MOLE_Thruster_VTOL','MainThruster','FixedThruster','766fdc8f-3c07-43d2-819f-9f134d0af6e6','','',NULL), +(963,'MISC_Starlancer_TAC_Thruster_Main','MainThruster','FixedThruster','468e75aa-d9cf-433d-99c7-8fa5f8db0176','','',NULL), +(964,'Pyro RYT Multi-Tool','Weapon','Gadget','f35e3168-edd8-4e3d-a99a-28de49ed4d70','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier.'), +(965,'AEGS_Door_Decal_MissileRm','Decal','DoorPart','52651ed3-1d29-419c-a84a-ea0999495a3c','','',NULL), +(966,'AEGS_Vanguard_SCItem_Seat_Bed_Lower_Sentinel','Seat','UNDEFINED','1815027c-13f0-4518-8e9f-ba1afe143921','','',NULL), +(967,'Attrition-4 Repeater','Weapon','Gun','7bd374e9-9d2f-4659-94cf-840e79d23b34','','','Manufacturer: Hurston Dynamics\nItem Type: Laser Repeater\nSize: 4\n\nHurston Dynamics has fully integrated it\'s cascade laser technology into their Attrition-line of repeaters. The size four Attrition-4 is no exception, operating at peak performance when near its maximum thermal capacity.'), +(968,'DRAK_Cutlass_Thruster_Retro','MainThruster','FixedThruster','2a30fbef-8479-4f19-9c0b-34b37adae545','','',NULL), +(969,'Killshot Rifle Magazine (45 Cap)','WeaponAttachment','Magazine','c40b7e8e-0f04-43d7-ac3a-7ffb8df071d8','','','Item Type: Magazine\nCapacity: 45\n\nThis magazine for the Killshot rifle comes pre-loaded with forty-five rounds.'), +(970,'TRGT. STATUS','Seat','UNDEFINED','08c4f5aa-f808-498a-9122-46d438bcf0c9','','',NULL), +(971,'Invictus Hat Olive Green','Char_Clothing_Hat','UNDEFINED','a910c243-1510-42fa-b64e-e09cab638469','','','Show your support for the Navy and the brave souls that serve the Empire with this classic cadet hat commemorating Invictus Launch Week.'), +(972,'Seat','Usable','UNDEFINED','45477967-7a24-216c-4d2f-5d4f378e2c98','','',NULL), +(973,'MISC Prospector - Noise Launcher','WeaponDefensive','CountermeasureLauncher','f27f7230-29b4-44f6-a803-8f25c6b1cdc1','','','MISC Prospector - Noise Launcher'), +(974,'Silverton Pants Jade','Char_Clothing_Legs','UNDEFINED','e20fe5a9-0a6b-4d63-b54d-7ea70be8e40d','','','Carrying Capacity: 1K µSCU\n\nMade with a sturdy blend of tough and flexible materials, the Silverton pants are the perfect fit for someone who needs heavy-duty workwear without sacrificing mobility. Got a job to do? We\'ve got you covered.'), +(975,'Oracle Helmet Sandstorm','Armor','Helmet','3e48d826-1663-497e-8f21-3eaa67dab60f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(976,'Cargo_Comm_125x3_Metal_Titanium_a','Cargo','Cargo','77a341e1-bfa9-45a6-beab-dcd263048d90','','',NULL), +(977,'Savrilium (Ore)','Cargo','Cargo','5af40118-749d-441d-a51c-b95428ce26e3','','',NULL), +(978,'hooks_torso1_02x01x04_01Port','ShopDisplay','Default','829dd5c4-4432-408a-b37c-6560a06684e1','','',NULL), +(979,'Blue Bilva','Cargo','Cargo','60f6d4db-5050-4ac3-8652-aeeba72242b8','','',NULL), +(980,'Food_grey_grub_eggs','Food','Consumable','d2e01c7f-dfea-4954-baa3-2ef3dbb30831','','',NULL), +(981,'99-BR/BL Pants','Char_Clothing_Legs','UNDEFINED','c9ea8c57-dceb-4804-967f-8828bb53b967','','','Carrying Capacity: 1K µSCU\n\nSpice up your wardrobe with a pair of 99 pants from Escar Limited. The juxtaposition of colors, each made from a different fabric, form a striking design for when you want to make a statement.\n\nWomen\'s sizes currently out of stock.'), +(982,'Book','Misc','UNDEFINED','5fbd9a82-d5f9-487e-b841-101e2e1eb82c','','',NULL), +(983,'Venture Legs Lovestruck','Armor','Legs','23cb2160-f4b7-4f0f-8946-36211a5c29ee','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRobert Space Industries’ Venture Explorer Suit provides exceptional protection against the dangers of space. Designed for those who don\'t know where their next adventure might go, the suit combines comfort and safety without sacrificing mobility. This special Lovestruck edition features a stylish metallic pink and black color scheme inspired by the colors of the Coramor festival.'), +(984,'volume_pants_01','Armor','Undersuit','6a7d73eb-7a6d-4ae7-8e9c-0cd5b6ad87e7','','','@LOC_PLACEHOLDER'), +(985,'MacFlex Arms Dark Green','Armor','Arms','8c391306-e870-488e-ae64-2aaa381f08a9','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(986,'Aril Arms Hazard','Armor','Arms','ef22e563-0ff2-4ad0-8ba3-c4e94f910c57','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(987,'Door_RSI_Polaris_BlastShield','Door','UNDEFINED','68f95642-7f02-458a-bddb-93bebd945327','','',NULL), +(988,'Seat','Usable','UNDEFINED','d0d68994-9a86-417b-93cd-b0c7f999d626','','',NULL), +(989,'MISC_Starlancer_Thruster_Mav_Small_Front_Bottom','ManneuverThruster','FixedThruster','28f927f4-c5a2-4de0-9f00-91e55639e40e','','',NULL), +(990,'Internal Tank','FuelTank','Fuel','559a686f-0b07-43ab-a6ce-e39165161acd','','',NULL), +(991,'Carryable_1H_Cup_Cylinder8cm_CoffeeMachine','Misc','UNDEFINED','dc01bfde-f3d7-4bf1-abdb-bf5ece700b84','','',NULL), +(992,'Door','Door','UNDEFINED','4788570a-76e6-6d9c-d8ac-6a6b28999b84','','',NULL), +(993,'MRX \"Torrent\"','Weapon','Gun','647c70b5-1547-4c86-ba47-4aa452d3b506','','','Item Type: Ballistic Gatling Turret\nManufacturer: Behring\n\nThe latest generation of point-defense technology, the MRX \"Torrent\" utilizes advanced search, detection, and tracking software to unleash a swift barrage of ballistic fire, protecting ships from incoming missiles, torpedoes, and other high-speed threats.'), +(994,'Grammercy Food Service Cover','Char_Clothing_Hat','UNDEFINED','07c40bb5-38d3-4859-954c-73612179c8a1','','','The Grammercy Food Service Cover is a standard food service accessory produced by Code Blue Apparel\'s professional division. Featuring a flexible one-size-fits-all form that expands or contracts firmly to the wearer\'s head, the hat design is both sleek and efficient.'), +(995,'Bed','Usable','UNDEFINED','db524d5f-114d-4973-8437-fe59a7cbde7b','','',NULL), +(996,'ARGO_MPUV_Thruster_Aux_Fixed_01','ManneuverThruster','FixedThruster','80206af6-e4b9-4b31-b259-8830a14d3f83','','',NULL), +(997,'Bioplastic','Cargo','Cargo','a6115aec-a72a-418e-aae2-a595d85b0a37','','',NULL), +(998,'Door Control','Door','UNDEFINED','82433a44-3f5a-43a0-a99a-5c3d5f12f7d0','','',NULL), +(999,'DCP Armor Legs True Valor','Armor','Legs','78f7c755-0282-45af-9ddd-77f9e79f559e','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(1000,'Wooden Rooster Charm (Large)','Misc','UNDEFINED','11d8a5e3-f19f-40bb-b0d8-2c24193be5db','','','Give the gift of good fortune and prosperity with this charm, handcarved by frontier settlers in honor of the Year of the Rooster. This generous gift is crafted from wood to represent one\'s efforts to put down roots in a new world while the robust and ornate rooster design represents those with ambition and fierce loyalty.'), +(1001,'Flareweed Stalk','Misc','Harvestable','3fb5efa8-9a85-48d7-a8fe-56caaef4329a','','','Flareweed is a hearty plant that can survive in harsh environments. With a natural ability to filter out harmful elements from its water supply, flareweed stalks are frequently harvested to be used in filtration systems.'), +(1002,'MISC_Hull_C_CentralWalkway','Misc','UNDEFINED','d055d129-840f-4c8f-aba7-a31e43c37887','','',NULL), +(1003,'Amiant Pod','Misc','Harvestable','8788316d-ccdb-4ca3-a1e0-9e6e11a0496f','','','Harvested from the amiant tree, the fibrous husks of these seed pods are used to make heat resistant textiles. Once removed, the husks must first be soaked in a chemical solution before the fibers can be separated out.'), +(1004,'Vehicle_Screen_MFD_Holographic_Talon_BL','Display','UNDEFINED','13510462-6686-4a09-8037-902c7d24b423','','',NULL), +(1005,'Outback Core Molten','Armor','Torso','ff253150-e479-4d27-a2fa-6bb5027bb0fc','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -65 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2k µSCU\nBackpacks: Light\n\nThose on the frontier know that survival is paramount. The tough and lived-in Outback Armor is hewn from reinforced leather, with a thick hooded cowl neck and layered skirting. With the necessary gear, there\'s no guarantee that you\'ll live to see another day, but now you\'ve got a fighting chance. The Molten version is dyed a deep red to keep you subtle, but not unsightly.'), +(1006,'Door Control','Door','UNDEFINED','2bd3bc25-d7fc-450e-8be5-473732a71e51','','',NULL), +(1007,'Inquisitor Core Seagreen','Armor','Torso','e0d81a8e-43da-4a87-99f4-12fb3f209e64','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(1008,'ORIG_600i_Thruster_Mav_Fixed_03','ManneuverThruster','FixedThruster','f2d69d68-9ab6-4704-a231-348dc3ae21b9','','',NULL), +(1009,'MaxLift Tractor Beam','Weapon','Gadget','27adea05-f94d-4439-872d-b043a631c34f','','','Manufacturer: Greycat Industrial\nItem Type: Tractor Beam\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 10-20 m\n\nGreycat\'s heavy duty tractor beam boasts industrial performance at a consumer-friendly price. With its longer-lasting battery and wider beam emitter, the MaxLift can easily manipulate heavier and bulkier items making it the perfect tool for long days of hauling cargo.'), +(1010,'RSI_Perseus_Seat_Access_Pilot','SeatAccess','UNDEFINED','e3ea37d2-9b72-45d9-90f1-f92680bf1be8','','',NULL), +(1011,'CRUS_Starlifter_Door_Decal_Cooler_B','Decal','DoorPart','058f5f06-7b56-4285-b771-841b8f8f20db','','',NULL), +(1012,'Sabre_Firebird_WingCap_Left','Misc','UNDEFINED','265c05e5-e559-4875-8c65-862e5516442f','','',NULL), +(1013,'box_plastic_4_weapon_opened_005x010x00375_a_behr_rifle_ballistic_01','Misc','UNDEFINED','9b3f66a4-959a-4d72-a7b5-9c9bb0649645','','',NULL), +(1014,'Seat','SeatAccess','UNDEFINED','a4bdb1f4-5177-4933-aa14-e88f3d6762aa','','',NULL), +(1015,'Internal Tank','FuelTank','Fuel','87ffb1b8-f5e9-4145-b512-0c4ae6a0a88d','','',NULL), +(1016,'Seat','Usable','UNDEFINED','6f631537-7bae-46ae-ab2b-ebc020636310','','',NULL), +(1017,'Bed','Usable','UNDEFINED','e4bd4b33-ea38-4e68-81a4-a12003e01238','','',NULL), +(1018,'Internal Tank','QuantumFuelTank','QuantumFuel','a031cc14-e14d-4ba8-8cdc-48990c4fdc86','','',NULL), +(1019,'DuraWork Pants Horizon','Char_Clothing_Legs','UNDEFINED','6e15bb7e-f957-45ae-95cf-6bcf574211c5','','','Carrying Capacity: 2000 µSCU\n\nMade of a durable synthetic material, Stegman\'s designed the DuraWork to provide a comfortable and reliable clothing option to workers around the \'verse.'), +(1020,'Manned Turret','TurretBase','MannedTurret','c7a58dc6-24c5-4ee8-b181-39e6557f1ac7','','',NULL), +(1021,'Stims','Cargo','Cargo','6fa73197-94dc-4300-a400-68f04fcb6660','','',NULL), +(1022,'Morozov-SH Legs Redshift','Armor','Legs','56877888-3a10-4fb0-a6b9-9aed03841763','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -97 / 121 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5K µSCU\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(1023,'Crusader White Knight','Misc','UNDEFINED','78f9d8ca-a005-4756-9b9e-e748db77893b','','','Included with the Mercury Star Runner from Crusader Industries, this minimalist white chess piece has a marble base.'), +(1024,'Couloir Shoes WhiteHex','Char_Clothing_Feet','UNDEFINED','8751146f-33ae-4c0d-859a-f3c213a3ca43','','','Hawksworth\'s timeless Couloir low ankle, slip-on shoes are perfect for both casual and formal occasions. A forward facing seam and tapered toe give the shoe a subtle but uniquely elegant shape.\n\nWomen\'s sizes currently out of stock.'), +(1025,'Nomad Cherry Blossom Livery','Paints','UNDEFINED','8b3ce321-ea1d-4ed6-9471-2c213f9471f9','','','Upgrade your Nomad with the Cherry Blossom livery featuring a bold black and white styling with pink highlights.'), +(1026,'Monde Legs Crimson Camo','Armor','Legs','20c72bc9-00df-4a8d-b433-45c2217523da','','','tem Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints. \n\nThis edition features a bold red digital camo pattern.'), +(1027,'Door Control','Door','UNDEFINED','61c5dcb4-6c3b-4c53-81b7-4b1ab776327c','','',NULL), +(1028,'TigerLilly','PowerPlant','Power','3e16e23a-c87e-4b50-9d07-8a3c1bee8116','','','Item Type: Power Plant\nManufacturer: Sakura Sun\nSize: 3\nGrade: A\nClass: Civilian\n\nThe Sakura Sun engineer leading the design for this large power plant named it after his cat, claiming she was the only family member awake when he got home from work every night. The component does its namesake justice by receiving rave reviews for its reliability.'), +(1029,'TRGT. STATUS','Seat','UNDEFINED','acfdceaf-72de-4ca2-b625-3b8e546d9e61','','',NULL), +(1030,'VariPuck S3 Gimbal Mount','Turret','GunTurret','e8f087cf-12fc-4149-b8c2-59152716f363','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 3\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(1031,'Chiron Arms AA Support','Armor','Arms','2e2cfd96-7dae-4ccb-90a3-368eef399433','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBe the first on the scene with the Chiron armor. Designed to provide the essential protection that combat medics need, the armor features ultra-lightweight panelling to keep the wearer quick on their feet without compromising on safety. Crucial, high-impact sections have been reinforced with raised carbon plating on top of a highly durable polyfiber for maximum flexibility.\n\nThe AA Support edition uses sharp red coloring and bright yellow detailing, ensuring that Alliance Aid Support Units remain visible while assisting the people of Levski through their crisis.'), +(1032,'Elevator Control','Elevator','UNDEFINED','c38a13db-09ab-4271-8912-f2ad051cde58','','',NULL), +(1033,'Radar_Display_Hornet_F7C','Display','UNDEFINED','1627fb80-6527-4ec2-b4a3-30fec3a4b1bf','','',NULL), +(1034,'Clean and Clear Work Apron','Char_Clothing_Torso_1','UNDEFINED','391e5896-3e33-42d6-992b-4096511fdced','','','Carrying Capacity: 1K µSCU\n\nDon\'t let your clothes suffer when you\'re just doing your job. Designed to be waterproof, stain resistant and easy to clean, the Clean and Clear work apron is ideal protection for your clothes when your job requires getting down and dirty.'), +(1035,'Orison Shipyards T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','02826a44-68c2-42a1-8270-36734610fa57','','','The massive Orison shipyards are a sight unlike any other in the UEE. This shirt features a floating ring platform flanked by blossoms from the Hosanna tree, which was specifically cultivated to grow in the gardens of Orison.'), +(1036,'Manned Turret','TurretBase','MannedTurret','ae33bd77-8c58-4259-9b3e-7b1cc0838a19','','',NULL), +(1037,'Paint_Hurricane_microTech_Security','Paints','UNDEFINED','1227d377-defe-4168-8ccb-d74a269fcdca','','',NULL), +(1038,'ESPR_LaserCannon_PowerArray_S2','WeaponAttachment','PowerArray','746e0f02-6956-4994-a425-1b62e39d3c6a','','',NULL), +(1039,'tool_power_1_battery_a','Misc','UNDEFINED','3d07236e-d15e-4cdd-a55c-fb4ba4107f63','','',NULL), +(1040,'Carryable_TBO_FL_32SCU_Commodity_Organic','Cargo','Cargo','06ab17e1-cb9e-4455-87a3-9492e04d8c94','','',NULL), +(1041,'Sabre_Firebird_WingCap_Left_Collector','Misc','UNDEFINED','6cac9b5f-e8ae-427f-8399-0f60ed53e5b9','','',NULL), +(1042,'CRUS_Starlifter_Thruster_Main_A2','MainThruster','FixedThruster','b8d736a7-247b-4927-850e-78b94f69a70c','','',NULL), +(1043,'INTK_ANVL_Terrapin_Medic','FuelIntake','Fuel','b7676f03-0531-402a-bf7b-8a0700ea06ea','','',NULL), +(1044,'CBH-3 Helmet Executive','Armor','Helmet','f4416f4e-d60e-4184-81aa-a7b842c3c82c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. Visor is AR crosshair compatible.'), +(1045,'Chiron Arms Heartthrob','Armor','Arms','40461db2-8c0b-4b82-89c7-b69622ce1462','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBe the first on the scene with the Chiron armor. Designed to provide the essential protection that combat medics need, the armor features ultra-lightweight panelling to keep the wearer quick on their feet without compromising on safety. Crucial, high-impact sections have been reinforced with raised carbon plating on top of a highly durable polyfiber for maximum flexibility.\n\nThe Heartthrob edition is a dreamy, shimmering violet adorned with bright digital hearts; perfect for making friends and foes weak in the knees.'), +(1046,'Aurora Mk I MR Ship Armor','Armor','Heavy','355cf3b8-e70f-40ac-a592-4f24f9fb8718','','','Aurora Mk I MR Ship Armor'), +(1047,'Scrap Valve','Misc','Junk','5ce154ef-3149-477a-a6c5-760df4badde6','','','A discarded piece of machinery that no longer serves a purpose.'), +(1048,'DockingTube_Fuel_Ports_ESPR_Prowler','DockingCollar','UNDEFINED','50547367-eadf-4874-ad97-2f1f78556a13','','',NULL), +(1049,'StorageCage_Damage_Empty','Cargo','UNDEFINED','f8578f20-b18a-471a-ba4a-adfb6e46b953','','',NULL), +(1050,'Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','8b39d9c1-7d61-4bf9-a30b-0398c7d9c6ef','','','Joker Defcon Flares Ammo'), +(1051,'un_cigar_single_1_b','Misc','UNDEFINED','fdb5dcf1-c578-4e2a-88e8-675943c14995','','',NULL), +(1052,'Paint_Mustang_NineTails','Paints','UNDEFINED','e4bdf102-5072-4395-aacf-eb81f60c979d','','',NULL), +(1053,'Access','SeatAccess','UNDEFINED','bbe309d4-3f38-4c36-9a29-341b6a0e6f4d','','',NULL), +(1054,'Seat','Usable','UNDEFINED','cde3c6b7-dd29-4351-bc86-16ff3bff4fb6','','',NULL), +(1055,'ORIG_890_Jump_Thruster_Main_TL','MainThruster','FixedThruster','088cee98-acb4-41e3-acc5-88006a93e2e6','','',NULL), +(1056,'Omarof (16x Telescopic)','WeaponAttachment','IronSight','1ba4ebda-fa61-45e7-928f-a543161c9276','','','Manufacturer: Lightning Bolt Company \nType: Telescopic\nAttachment Point: Optic \nMagnification: 16x\nAim Time: +0%\nSize: 3\n\nGet a crystal clear view of distant targets with this powerful telescopic scope from Lightning Bolt Company. Designed specifically for the Atzkav Sniper Rifle, the Omarof uses ultra-precise laser etched lenses that are then multi-coated to allow for high light transmission, wide sight picture and crisp colors, providing strikingly sharp images across significant distances.'), +(1057,'Manned Turret','TurretBase','MannedTurret','be1bce53-447b-42ce-9990-5a3053ab7e95','','',NULL), +(1058,'Construction Salvage','Cargo','Cargo','7d5cb0ba-f68e-490b-865e-81b05fa040c9','','','Can be processed at refineries into Construction Material.'), +(1059,'Door Control','Door','UNDEFINED','1b6a6e0d-871a-426e-8ab8-e6bad68190e5','','',NULL), +(1060,'nvy_orison_engineer_belt_01_01_01','Char_Clothing_Torso_2','UNDEFINED','59bc372e-a386-4d45-9ae4-1682c8091f2b','','',NULL), +(1061,'Flight Blade','FlightController','UNDEFINED','36fbe53c-f7ba-4032-a38d-98188a03c5a4','','',NULL), +(1062,'Cutter Pyrite Livery','Paints','UNDEFINED','eb7fb92d-47fc-40cf-84ec-31c051670c65','','','The Pyrite livery features a matte black hull with silver highlights and bright yellow hazard stripes.'), +(1063,'MacFlex Legs Dark Red','Armor','Legs','62bc456c-c815-4038-bf6b-4417c7b4eb58','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(1064,'Railing_Straight_4m_Microtech','Usable','UNDEFINED','89103d9e-a462-49ce-9ef2-73b957667aa3','','',NULL), +(1065,'DRAK_Cutter_Winglets_Base_Left','Misc','UNDEFINED','9df86a1e-060a-44f6-985c-37e8984459d1','','',NULL), +(1066,'Ardor-2 Salvaged Repeater','Weapon','Gun','d6decc9e-ec4f-4bab-a0bc-5e1dc01d7af7','','','Manufacturer: Hurston Dynamics\nItem Type: Laser Repeater\nSize: 2\n\nThis Ardor-2 laser repeater was salvaged in the Pyro system. First manufactured in 2724, the Ardor series became popular for its split barrel design that helped mitigate heat when sustaining fire. Hurston eventually stopped manufacturing the weapon in favor of the Attrition line of laser repeaters. Despite the effects of time and constant usage, the weapon is still sought after because of the consistent performance delivered by Hurston Dynamic\'s expert design and solid construction.'), +(1067,'Carryable_1H_CY_tool_marshal_paddle_1_a','Misc','UNDEFINED','cb92c814-3075-42d0-9ea2-a1cea01a578d','','',NULL), +(1068,'Cutlass Black Ship Armor','Armor','Medium','d046ef0c-1a7f-4231-8abf-eae882a73c2b','','','Cutlass Black Ship Armor'), +(1069,'ANVL_Hornet_F7CR_Mk2_Thruster_Main','MainThruster','FixedThruster','7ab16a6f-50a5-4ce8-92a3-cbc598036d9a','','',NULL), +(1070,'AEGS_Sabre_Thruster_Mav_Right','ManneuverThruster','JointThruster','e51bf31f-aaef-4780-adf6-3024f089138a','','',NULL), +(1071,'H_Dashboard_Projector_HUD_ANVL_Hornet_F7CM_Mk2_CP','Display','UNDEFINED','a103dd80-0eca-4bfa-a27c-32c230e06302','','',NULL), +(1072,'Container','Misc','Personal','b798ed34-c074-43d0-b252-376719c4a67a','','',NULL), +(1073,'Parallax \"Piconalia\" Energy Assault Rifle','Weapon','Medium','1e41df3e-f9ee-4ec5-8cfd-80c344772723','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Assault Rifle\nClass: Energy (Electron)\n\nBattery Size: 80\nRate of Fire: 200 rpm - Beam\nEffective Range: 30 m\n\nAttachments: Optics (S2), Underbarrel (S2)\n\nWith the Parallax, VOLT offers consumers a rugged assault rifle design with features like a larger-than-average battery and a unique actuator that enables the weapon to scale up into a persistent beam as it fires.\n\nLight up the night this Luminalia with a little help from Pico the Penguin who adorns the side of this green Piconalia edition.'), +(1074,'shelf_01_a_02_x01x00375_2ports','ShopDisplay','Default','3a2817c6-f4b2-455a-b224-0897e0563dd2','','',NULL), +(1075,'NightFall','Cooler','UNDEFINED','acb949b6-488a-4d10-b0f3-6597ef22925e','','','Item Type: Cooler\nManufacturer: Tyler Design & Tech \nSize: 2\nGrade: A\nClass: Stealth\n\nRun silent and safe with the NightFall from Tyler Design & Tech. Few coolers can match the way this component manages your ship\'s heat while also keeping its signatures low.'), +(1076,'TRGT. STATUS','Seat','UNDEFINED','ff877cb1-b43f-43ee-ba6c-caab24c1a385','','',NULL), +(1077,'Golden Medmon','Cargo','Cargo','b1777f64-a960-4ef7-a258-6ab3f2607f89','','',NULL), +(1078,'TrueDef-Pro Core Yellow/Black','Armor','Torso','b69eaf10-1f7c-4444-96d3-9a11acfeac5a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(1079,'facial_hair_009','Char_Head_Beard','UNDEFINED','15cc8f8d-2172-47d9-a94d-a7d504b9024d','','',NULL), +(1080,'MISC_Hull_C_Ring_05','Room','UNDEFINED','d3cb19f6-c08d-462e-bc17-90412848cb4a','','',NULL), +(1081,'Iron (Ore)','Cargo','Cargo','74e6a101-3bd0-4fb1-990e-f0e70adbfc72','','',NULL), +(1082,'Navoi Boots and Pants Shale','Char_Clothing_Legs','UNDEFINED','68c90cf0-16b6-4fac-a0b9-d67a64685504','','','Carrying Capacity: 0.4K µSCU\n\nBe ready to take on whatever the day brings when wearing the Navoi. This unique piece integrates the pants perfectly into knee high boots. Made from a combination of synthetic materials to be tough yet comfortable, the Navoi also comes with shin pads and pouches strapped onto each leg.'), +(1083,'ADP Legs Crusader Edition','Armor','Legs','df13db2c-cb89-49b7-acb8-28f54e7ad1d7','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor. The Crusader Edition was made specifically for the company\'s security services.'), +(1084,'400i Meridian Livery','Paints','UNDEFINED','dd8f059f-b38b-4ec7-8be7-fb9b50c6e6ad','','','The Meridian livery gives the 400i a simple yet stylish metallic silver finish.'), +(1085,'MISC_Starfarer_Thruster_Aux','MainThruster','FixedThruster','ef28de2c-d7fa-4d18-b903-dfe036a963c3','','',NULL), +(1086,'Cockpit','SeatDashboard','UNDEFINED','7dd89bc1-cdc7-492c-be62-fe3c9b07273f','','',NULL), +(1087,'KRON_LaserCannon_PowerArray_S2','WeaponAttachment','PowerArray','e758aeb5-3ecc-42f4-8f21-d87e476f97a5','','',NULL), +(1088,'Carryable_1H_SQ_drug_stim_4_a','Drink','Bottle','d13bb2c3-1a83-4242-8981-c36f82f41168','','',NULL), +(1089,'P6-LR Sniper Rifle','Weapon','Medium','01f2b88a-9752-4cd8-9f73-d151b4b2ca61','','','Manufacturer: Behring\nItem Type: Sniper Rifle\nClass: Ballistic\n\nMagazine Size: 8\nRate Of Fire: 20 rpm\nEffective Range: 120 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nThe Behring P6-LR ballistic sniper rifle more than makes up for its slow rate of fire with a high powered round that\'s effective from long range. Featuring a scope with variable zoom modes and a barrel composed of a proprietary high-strength alloy, the P6-LR was designed to deliver when needed most.'), +(1090,'SCItemDisplayScreen_Source_HullCTractorBeam','Display','Default','3b42275a-4a54-4e53-ad3e-8b3bbcb25c7c','','',NULL), +(1091,'RSI_Mantis_Thruster_Main','MainThruster','FixedThruster','2ba94d70-895d-4b59-9399-8e3d650add83','','',NULL), +(1092,'DockingTube_Fuel_Ports_ANVL_Valkyrie','DockingCollar','UNDEFINED','77861972-a9f1-4596-9ded-72d59b5e3072','','',NULL), +(1093,'POWER','EnergyController','UNDEFINED','61cc7bf5-6666-40f7-8c0a-ee8a8092f51e','','',NULL), +(1094,'Morozov-SH-I Core Pyrotechnic','Armor','Torso','bc70a8da-97e1-4cf3-95c4-698cc1b2b4c7','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12K µSCU\nBackpacks: All\n\nFeaturing the same fortified armor plating, special anti-rip protective padding and ample storage, as the Morozov SH, the SH-I industrial variant was designed by RRS to protect workers employed in hostile zones while ensuring they had the full range of motion required to perform their duties. The Pyrotechnic Amalgamated Edition was made specifically for the company\'s mining efforts in Pyro during the 26th century.'), +(1095,'RSI_Zeus_Collar_Cargo_R','AttachedPart','UNDEFINED','f7f9fe74-58bb-4554-a468-0fefdda43c7d','','',NULL), +(1096,'Seat','SeatAccess','UNDEFINED','772d12a7-351b-4298-b01b-81acf7ea41c6','','',NULL), +(1097,'Odyssey II Helmet Purple','Armor','Helmet','cb35d99c-3477-4a2e-b9a8-d987a6c6e3ff','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(1098,'Vehicle_Screen_MFD_Holographic_MISC_Hull_C_L','Display','UNDEFINED','9981020a-4517-4316-a51b-e17eec3373f9','','',NULL), +(1099,'Personal Storage','Cargo','UNDEFINED','f3111933-7e5b-459c-a3da-86c4cff62ceb','','',NULL), +(1100,'H_Dashboard_Projector_HUD_ANVL_Hornet_F7CR','Display','UNDEFINED','ec547b37-bc61-4983-8eae-ac735a9313ed','','',NULL), +(1101,'Dolivine','Cargo','Cargo','9f7051cd-2e13-4abf-b38e-bbd7575f1d83','','',NULL), +(1102,'m_human_mannequin_environment_heavy','ShopDisplay','UNDEFINED','e9cf46e4-ffd3-450f-b2bf-a4a2543184ad','','',NULL), +(1103,'Strata Arms Greycat Edition','Armor','Arms','acbb7178-ef6a-454c-8e1a-9f4998bbeddb','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Greycat Edition features the colors and logo of the company.'), +(1104,'Blue Bilva','Cargo','Cargo','dc4631cd-3899-4024-8ef2-740679b2c373','','',NULL), +(1105,'Seat','Usable','UNDEFINED','2ba6ce3a-a72c-4803-a304-d8c6760efb4c','','',NULL), +(1106,'AIModule_Unmanned_PU_UEE_GreenZone_Small_Turret','AIModule','UNDEFINED','9ffb98e4-621b-4c10-8750-72b713096d70','','',NULL), +(1107,'ANVL_Door_Decal_Carrack_Airlock','Decal','DoorPart','01d6bfa0-b258-487f-9fd1-56ad222317d0','','',NULL), +(1108,'Day One Shirt','Char_Clothing_Torso_0','UNDEFINED','a1761c40-0026-4b68-8d85-f9a3e5f9a840','','','This Henley shirt from Stegman\'s is made with AirFlow technology, a stain-resistant, air-cooled fabric that keeps you comfortable and dry.'), +(1109,'E\'tam','Cargo','Cargo','129dae96-766b-4491-bc96-99f7c7a5481d','','',NULL), +(1110,'Prospector IceBreak Livery','Paints','UNDEFINED','737d8874-adf8-4f1f-b8f1-6fae8c9247d2','','','Equip your Prospector with a paint scheme cooler than a snow storm. The IceBreak livery mixes crisp, cool white with a frostbitten blue for an exciting look suitable for any season.'), +(1111,'Orbgn_None_Consumable_Keycard_Maintenance','FPS_Consumable','Hacking','e09af591-b207-4e39-b87a-435d2ec70402','','',NULL), +(1112,'Bexalite','Cargo','Cargo','c5e32c49-6dbe-4b4c-aeb4-e9a546412abe','','',NULL), +(1113,'Door Control','Door','UNDEFINED','d6a5eac5-83ca-4628-9bce-652ac29d0a88','','',NULL), +(1114,'C8 Pisces Code Blue Livery','Paints','UNDEFINED','6e83aa99-64a6-458d-b473-7a5ea3324eb7','','','Race to the rescue in style with the C8 Pisces Code Blue livery, featuring a vivid blue hue with white highlights and markings.'), +(1115,'Gladius Dunlevy','Paints','UNDEFINED','820c52ef-3717-4ada-b5c9-4b4b34ee3e7d','','','Honor the famed Captain who shaped the course of the UEE Navy\'s elite fighter squadron with the Dunlevy livery for the Aegis Gladius. It pays to tribute to Captain Alexandra Dunlevy and Squadron 42 with red highlights against a grey base paint.'), +(1116,'ARGO_MPUV_Thruster_Aux_Front_Top','ManneuverThruster','FixedThruster','60fcbbce-90a6-4bc9-a404-1781865657c4','','',NULL), +(1117,'Deep-Space Undersuit River Rock','Armor','Undersuit','0bad23a8-3cfc-4009-a338-6e232c816eb7','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nConfidently venture into the unknown with the Deep-Space undersuit. Smartly designed with several overlapping sections to guarantee the suit\'s integrity, Gyson has created an affordable and fashionable undersuit that helps make space travel more accessible to all.'), +(1118,'Carbon-Silk','Cargo','Cargo','5b94c9a1-1d8f-4f3f-b1d9-4287984638c8','','',NULL), +(1119,'Quartz (Raw)','Cargo','Cargo','ae26a947-0af4-4d0b-b708-649ed6ba73f1','','',NULL), +(1120,'Kamar Jacket','Char_Clothing_Torso_1','UNDEFINED','73aa68ba-3c46-4981-9cac-6247aed7711a','','','Carrying Capacity: 1K µSCU\n\nThe Kamar is a modern update on a classic style featuring a truly unique design and silhouette. Centered around an ultra-soft velvet front panel, it features a fitted collar, wide pleated waistband, and bishop sleeves cinched by extra long cuffs. The result is a formal top that\'s bold yet timeless.'), +(1121,'Hair Care Product','Misc','UNDEFINED','c19c1fee-a069-4bf1-9b63-d6c8947b75fa','','',NULL), +(1122,'Quell Suppressor3','WeaponAttachment','Barrel','66cba05f-9d37-4725-add1-d77f4ae36c87','','','Manufacturer: ArmaMod\nType: Suppressor\nAttachment Point: Barrel\nSize: 3\n\nSpread Min: -15%\nSpread Per Shot: +25%\nAudible Range: -33%\n\nDesigned for stealth work, the Quell Suppressor3 rewards those who take slow, steady shots.'), +(1123,'XNAA_SanTokYai_Thruster_Mav','ManneuverThruster','FlexThruster','6d8386d9-44f9-4763-a985-0dfb862e048b','','',NULL), +(1124,'Syulen Harmony Livery','Paints','UNDEFINED','3595671c-b920-4394-9146-336e6d1d4e15','','','The Harmony livery is meant to showcase Humanity\'s peaceful relationship with alien species with a semi-pearlescent blue main coat marked with organic reflective red to suggest the coming together of disparate species and cultures. The Harmony livery has been designed and produced by the UEE\'s Diplomatic Corps and freely licensed to all spacecraft manufacturers. Now Gatac Syulen owners can celebrate the UEE\'s intentions of working toward a peaceful galaxy.'), +(1125,'HRST_LaserRepeater_PowerArray_S6','WeaponAttachment','PowerArray','d832c9b2-1040-410c-80bd-e8049f9d462a','','',NULL), +(1126,'Seat','Usable','UNDEFINED','a0773100-abff-4238-be3b-49653f0161a9','','',NULL), +(1127,'Seat','Usable','UNDEFINED','f655cae8-9916-457e-9030-cd05046cc23b','','',NULL), +(1128,'P4-AR Rifle','Weapon','Medium','5d6c1c28-1589-4c72-8cc3-ff90f998dca3','','','Manufacturer: Behring\nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 40\nRate Of Fire: 550 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nBehring\'s classic P4-AR rifle features a collapsible stock and shortened barrel, making it an ideal choice for close-quarter firefights. Its accuracy and general ease of use make it universally valued among security, military and civilian users.'), +(1129,'Door Control','ControlPanel','DoorPart','bda6c528-5e8a-4e87-9611-6a1a0033c10d','','',NULL), +(1130,'ANVL_Spartan_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','25b735e0-66b5-4802-aa3a-26451557c9aa','','',NULL), +(1131,'Gadget_Cabinet_kegr_fire_extinguisher_01_NoRN','Usable','UNDEFINED','d655280a-58cd-4783-9cf8-550ff3ada183','','',NULL), +(1132,'TruBarrier Hazard Suit Mask Cinnabar','Char_Clothing_Hat','UNDEFINED','3f5cfa2d-30f3-4ac2-96da-d42b16f22f53','','','Temp. Rating: -30 / 15 °C\n\nThe TruBarrier Hazard Mask by Greycat Industrial helps its user face unexpected environmental hazards while keeping the most vulnerable parts of the head safe from damage. The encapsualted design provides full-body protection from direct contact with dangerous materials when worn with its accompanying jumpsuit.'), +(1133,'ORIG_85X_Thruster_Mav_Fixed_04_Left','ManneuverThruster','FixedThruster','588f2182-672d-41ed-8eab-d6807ce2246f','','',NULL), +(1134,'SHIELDS','ShieldController','UNDEFINED','c6f6ff9d-54e9-43a3-ac87-3e1ad0de1f31','','',NULL), +(1135,'CoverAll','Shield','UNDEFINED','b14fb966-10f0-4207-8a41-2317798deccc','','','Item Type: Shield Generator\nManufacturer: Gorgon Defender Industries\nSize: 2\nGrade: B\nClass: Military\n\nDon’t sacrifice performance for durability. Get both with Gorgon Defender Industries’ CoverAll shield generator.'), +(1136,'AAT-34 Turret','Turret','MannedTurret','b3ad64dd-8ad9-4a6e-953b-08f87e32a253','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(1137,'Door Control','Door','UNDEFINED','bd98c2f4-dbd2-4a60-89d7-defef4fd691f','','',NULL), +(1138,'MISC_Starfarer_Gemini_Thruster_Aux','MainThruster','FixedThruster','3826ffd0-c5de-42e6-b40b-160b0cef9c53','','',NULL), +(1139,'Amaris Shirt Fogforest','Char_Clothing_Torso_0','UNDEFINED','d4af9e5f-73e0-4d22-84f0-4d25a90407b1','','','The rugged Amaris Shirt is a breathable long-sleeve shirt reinforced by raised fabric on the shoulders to create an elegant but industrial look.'), +(1140,'Wanderer','QuantumDrive','UNDEFINED','9e3ee84d-86f3-48f3-a4e0-e26899575c5b','','','Item Type: Quantum Drive\nManufacturer: Tarsus\nSize: 3\nGrade: C\nClass: Civilian\n\nTarsus carefully designed and tuned the Wanderer into an all-around solid quantum drive, making it one of the more popular components in their revered line-up.'), +(1141,'MRAI_Guardian_SeatAccess','SeatAccess','UNDEFINED','44516795-0788-4efe-8ca0-b964adbcaf56','','',NULL), +(1142,'Remote Turret','Turret','PDCTurret','734bae36-5ffc-4f00-a4ed-d983d6cbe57a','','',NULL), +(1143,'CRUZ Flow','Drink','Bottle','6a4006f3-95d0-4c77-b76d-fca8cc3747c4','','','HEI: 38\nNDR: 30\nEffects: Hypertrophic, Hypo-Metabolic\n\nRestore, refuel, and recharge with CRUZ Optimal Nutrition Drink. CRUZ Flow is the original formula that has been sustaining pilots for countless numbers of journeys.'), +(1144,'Shrimp Typhoon Burrito','Food','Junk','d3e2f617-458b-4351-964f-e41b81d2267d','','','NDR: 38\nEffects: Dehydrating\n\nTorpedo Burrito crams a full payload of flavor into their Shrimp Typhoon burrito, unleashing a storm of succulent shrimp drenched in a tropical sauce wrapped in their signature size-4 multi-grain tortilla.'), +(1145,'Venture Undersuit Orange/Black','Armor','Undersuit','a4f02a1d-85ae-4d70-9889-86618e58b894','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(1146,'ANVL_Valkyrie_Thruster_Mav_Joint','ManneuverThruster','FlexThruster','d9f9ec2d-d1d2-4c54-b7a4-4f589c4392b5','','',NULL), +(1147,'Delta (1x Reflex)','WeaponAttachment','IronSight','28fa64a1-2a7b-4bcc-9581-9b86c6ccae16','','','Manufacturer: NV-TAC \nType: Reflex\nAttachment Point: Optic\nMagnification: 1x\nAim Time: +15%\nSize: 1\n\nIdeal for civilians and professionals, the Delta non-magnifying reflex sight from NV-TAC provides a precise illuminated target marker, visible across a wide range of light levels.'), +(1148,'Internal Tank','FuelTank','Fuel','8c2fd93a-4701-4a46-9b16-0095cb725db3','','',NULL), +(1149,'ORC-mkX Core (XenoThreat)','Armor','Torso','d53605d4-6919-4859-9038-ec861df53ea2','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nThis version of CDS\' ORC-mkX combat armor has been modified from its original form. The mark X is part of CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(1150,'Door Control','ControlPanel','DoorPart','4d58249e-a341-4368-b2f5-53144e0f2110','','',NULL), +(1151,'Door','Door','UNDEFINED','f712a9bb-ed09-480d-8695-b94c15490283','','',NULL), +(1152,'MISC_Fury_LX_Thruster_FixedMav','ManneuverThruster','FixedThruster','9815da52-bbbc-4566-8136-8af177b91298','','',NULL), +(1153,'MISC_Starlancer_Thruster_Retro','ManneuverThruster','FixedThruster','2ba7e371-caf3-4d04-a35d-5cc374ffcf65','','',NULL), +(1154,'BEHR_LaserCannon_SF7E_Barrel_S7','WeaponAttachment','Barrel','7973ac14-c707-485a-abdc-5178ec9cf798','','',NULL), +(1155,'Seat','Usable','UNDEFINED','d0e5855d-853d-4107-b74d-905d2f790a3f','','',NULL), +(1156,'Stirling Exploration Suit Granite Edition','Armor','Undersuit','e5ecaf59-5342-4330-a127-db5af83477cd','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nDesigned to withstand inhospitable environments, the Stirling Exploration Suit provides a base level of protection from environmental hazards including radiation. Combining Caldera\'s advanced insulation fabrics with sophisticated polymers, the Stirling is able to safeguard the wearer whilst minimizing disruption to movement. Additionally, a self-cleaning system automatically activates after radiation exposure to expunge dangerous excess down to nominal levels. The Granite Edition uses blacks, beiges, and grays inspired by dark stones and excavated rocks.'), +(1157,'ORC-mkX Helmet Autumn','Armor','Helmet','68f9c769-41da-45bb-abfb-f76b8e35e497','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(1158,'Door','Door','UNDEFINED','0cd5df6f-9852-4ecd-b28b-f3a2cb5c5764','','',NULL), +(1159,'Bed','Usable','UNDEFINED','f16b874b-43ea-4f4b-9f37-4d7f1ded3db5','','',NULL), +(1160,'Kino Shoes Yellow','Char_Clothing_Feet','UNDEFINED','54c52467-9f63-46a3-b71b-49831f494b42','','','These two-tone slip-on shoes are comfortable enough for casual wear, but stylish enough for the workplace.'), +(1161,'Pitambu','Cargo','Cargo','03386967-f4a8-41e5-bc55-33067672c848','','',NULL), +(1162,'sc_nvy_bdu_boots_01_01_01','Char_Clothing_Feet','UNDEFINED','f7115c34-cb19-4b27-902b-2101858e445d','','',NULL), +(1163,'Copper (Ore)','Cargo','Cargo','d19c7698-d468-4ac9-8d6e-a7e01cb62f20','','',NULL), +(1164,'AvantX Glasses','Char_Accessory_Eyes','UNDEFINED','eddd508a-ed10-4b07-bfc5-dad7ae6fa462','','','A distinct one piece lens with a unique geometric design makes the AvantX glasses stand out from the crowd. SPV expertly blends cutting edge style and technology for a distinct look and feel that\'s fashion forward.'), +(1165,'Keldur Hat and Midnight Goggles','Char_Clothing_Hat','UNDEFINED','3dd91cd9-9fd9-43a1-a5a9-5b59db1ca794','','','Blowing winds and blazing sun won\'t be an issue when wearing the Keldur hat and goggles. Insulated flaps keep the sun and elements off your neck, while a lightweight metal brim and scratch resistant, industrial-grade goggles protect your eyes.'), +(1166,'Aluminum','Cargo','Cargo','7cc4576f-82e8-4e26-b8d2-49862e635d02','','',NULL), +(1167,'Railing_Straight_2m_Hurston_Lorville_Glass_A','Usable','UNDEFINED','e4b5b2ee-62c0-4896-aabf-124aa8f61176','','',NULL), +(1168,'TRGT. STATUS','Seat','UNDEFINED','050dbd60-3690-4641-b2c1-58f6d30d2734','','',NULL), +(1169,'Cutlass Black Ship Armor','Armor','Medium','207f65ca-e81d-4069-818e-3d2d57e37272','','','Cutlass Black Ship Armor'), +(1170,'Antium Arms Sand','Armor','Arms','699b532b-69bc-4c1f-885f-7a82ff97e3c1','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(1171,'Seat','Usable','UNDEFINED','1cf8cc76-29d0-4728-a3dc-0074fbeb6156','','',NULL), +(1172,'QuikCool','Cooler','UNDEFINED','34334a56-0045-40e5-b573-5891e8e2dbbf','','','Item Type: Cooler\nManufacturer: ACOM\nSize: 1\nGrade: D\nClass: Competition\n\nThe QuikCool provides superior performance over other coolers in its class. This competition grade component from ACOM sacrifices stealth and some durability to be one of the most powerful entry-level coolers around.'), +(1173,'Mivaldi Pants Red','Char_Clothing_Legs','UNDEFINED','03cdfb37-d44b-4a89-a323-f6526909217c','','','Carrying Capacity: 0.5K µSCU\n\nCut to a narrow fit, OpalSky\'s Mivaldi pants feature bold asymmetrical design with smart yet casual dual material styling, making it the perfect addition to any wardrobe.\n\nWomen\'s sizes currently out of stock.'), +(1174,'INTK_MISC_Reliant_Kore','FuelIntake','Fuel','b88f2a6e-3bed-4255-9c9f-167ab2865b8e','','',NULL), +(1175,'Horizon Helmet Green','Armor','Helmet','a1e09caa-9629-4a99-88ec-76fc83b7c9b1','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Horizon helmet is a durable and robust environmental enclosed work helmet. The single sheet laminate dome gives you an extremely wide field of view. A pair of side-mounted LED light modules provide additional illumination to make sure you can see what you\'re doing.'), +(1176,'Door Control','Door','UNDEFINED','c8e8d8b5-ee98-4f42-939f-6c3190c4420c','','',NULL), +(1177,'Aphorite','Cargo','Cargo','8587f42b-7726-4ae7-8057-5586667425c9','','',NULL), +(1178,'Datapad','Misc','Gadget','a03cb469-685d-4e97-807a-eec32d4ab3f7','','','A portable tablet computing device featuring a touchscreen display.'), +(1179,'Zeta-Prolanide','Cargo','Cargo','4f0d27f1-707a-451d-a34c-f9d57b24db26','','','This chemical is an industrial reactant that has found widespread use neutralizing irradiated materials. Because of how volatile it is, it must be kept in an electrically charged state or else a rapid exothermic reaction may occur before desired.'), +(1180,'Toughlife Boots Blue','Char_Clothing_Feet','UNDEFINED','224ecbae-a531-4da0-8226-f1970c57c0e0','','','Grindstone\'s done it again. The Toughlife is an all-purpose workboot designed to provide comfort, durability and quality. Featuring a reinforced composite toe and lasercut sole to maximize traction on all surfaces, Toughlife is sure to be your dependable boot, day in and day out.'), +(1181,'Attrition-1 Repeater','Weapon','Gun','ed951ee5-0873-45e8-92b2-586a277f4ba6','','','Manufacturer: Hurston Dynamics\nItem Type: Laser Repeater\nSize: 1\n\nThe Attrition-1 laser repeater features Hurston Dynamics\' unique cascade technology which provides increased performance while sustained laser fire is maintained. The result is a size one weapon that rewards a deft operator.'), +(1182,'KRIG_l22_AlphaWolf_Thruster_Mav_Pipe_Left','ManneuverThruster','UNDEFINED','8573221a-9ab0-422c-9877-26aa4b990907','','',NULL), +(1183,'MISC_Door_Decal_Hull_A_Habitation','Decal','DoorPart','27fbb172-a249-45df-b108-e190825ec61d','','',NULL), +(1184,'Door Control','Door','UNDEFINED','60672855-f40f-4496-97d1-9b7ff6177465','','',NULL), +(1185,'H_Dashboard_Projector_HUD_ANVL_Hornet_F7_Mk1','Display','UNDEFINED','9ca576a7-beb0-400b-a194-f27bc3aeafd9','','',NULL), +(1186,'PAB-1 Legs','Armor','Legs','3714af80-6da5-4c42-8b78-60166d1b5987','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(1187,'Strata Core Shubin Edition','Armor','Torso','27969031-d671-4eeb-bef0-a082fdf76cf1','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 15k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpack Compatibility: Light & Medium \n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Shubin Edition was made specifically for the company.'), +(1188,'Sakura Fun White ORC-mkX Armor Bobblehead','Flair_Cockpit','Flair_Static','2b88b0eb-d7da-4894-a702-3767fa8327b8','','','Like the armor set it features, the White ORC-mkX Bobblehead is exquisitely detailed and made with high quality materials. Place Sakura Sun\'s latest edition to the Sakura Fun line of bobbleheads on a ship\'s dashboard for an ideal cockpit companion ready to ride along on daring space adventures.'), +(1189,'RSI_Aurora_CL_Thruster_Mav_Joint_01','ManneuverThruster','JointThruster','5a079d9b-7259-4787-953f-c9633dac7d11','','',NULL), +(1190,'Detatrine','Cargo','Cargo','f5287765-7ef1-40fd-958f-82a951433b22','','','Refined from the natural toxin found within the rare detatium fruit, this chemical has numerous medical applications.'), +(1191,'Col Head Cover Yellow','Char_Clothing_Hat','UNDEFINED','f590cae6-9e24-427f-86a3-26fc7797742e','','','Temp. Rating: -30 / 15 °C\n\nThe Col is an insulated yet lightweight head cover that keeps heat from escaping. The large, chip-resistant faceplate features a cutting-edge GX coating to ensure the purest light quality for viewing the surrounding environs.'), +(1192,'Burgundy Paisley Bandana','Char_Clothing_Hat','UNDEFINED','c2753823-8519-4d54-9fd1-00cff7b1543d','','','Made from only the finest cotton, this bandana from Alejo Brothers features a double-sided print and sewn edges to guarantee durability.'), +(1193,'Seat','SeatAccess','UNDEFINED','733dbfdf-07e5-4abf-aad2-118469a6e857','','',NULL), +(1194,'Snowpack','Cooler','UNDEFINED','04285ce3-561f-4377-b0db-c641e3fad1de','','','Item Type: Cooler\nManufacturer: Juno Starwerk\nSize: 2\nGrade: A \nClass: Industrial\n\nMedium-sized industrial coolers don’t get any better than the Snowpack from Juno Starwerk. Outstanding performance and durability have made it a favorite of haulers for centuries.'), +(1195,'Door Control','Door','UNDEFINED','e1ee703a-773b-433a-9c3e-66faa882c0e6','','',NULL), +(1196,'Shipment','Misc','UNDEFINED','b03ecdaa-4329-430f-83c9-1cc18181b8d0','','',NULL), +(1197,'m_human_mannequin_explorer','ShopDisplay','UNDEFINED','6b5cc3af-b81f-4f22-94bf-32997aa82844','','',NULL), +(1198,'Carryable_1H_SQ_DataPad_Fluff_StormBreaker_DataFacility_Scientist','Misc','UNDEFINED','45d723de-8235-2467-7848-2eb3891aec8e','','',NULL), +(1199,'TRGT. STATUS','Seat','UNDEFINED','35d5ab6a-7367-4da5-88c5-c2276c6e8398','','',NULL), +(1200,'Citrus Rush Smoothie','Drink','Bottle','008402c2-14cd-4197-b4d8-cfba1ea46905','','','HEI: 39\nNDR: 15\nEffects: Immune Boosting\n\nGarcia\'s Greens Citrus Rush Smoothie is an invigorating blend of citrus that’s a perfect combination of sweet and tart.'), +(1201,'Inquisitor Legs Rager','Armor','Legs','157125aa-4309-4899-a47a-73b3a9d42af0','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(1202,'Inquisitor Legs Icefall','Armor','Legs','d21cbe8a-84c8-47fa-86b3-0079f7ecc6ec','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(1203,'Test_OutpostMission_DataPad_KeyCode_4x3_Screen_6','Display','UNDEFINED','66f3c7a5-294b-4830-b3a6-fae8bb2249e7','','',NULL), +(1204,'AEGS_Javelin_CargoGrid_XL','CargoGrid','UNDEFINED','5df9deb7-331e-4d51-a2a8-0f0d58db0923','','',NULL), +(1205,'Internal Tank','FuelTank','Fuel','307a6531-2a98-4984-bec5-e4e95e4a718c','','',NULL), +(1206,'Drivetrain','WheeledController','UNDEFINED','394a67c7-db2c-4b8a-80ef-769212a708a3','','',NULL), +(1207,'Morozov-SH Core Aftershock','Armor','Torso','e336099a-97ec-4f22-8530-1382a89e07db','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12K µSCU\nBackpacks: All\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(1208,'Aves Starchaser Core','Armor','Torso','b2e217db-549b-4f2e-93cd-a82550e00a9c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nHonor and embody the Tevarin aesthetic with the Aves Starchaser armor; manufactured with white, purple, and grey plating to perfectly evoke the shape language imbued into their iconic ships. This medium armor from CC\'s Conversions is both sensational and practical, providing solid protection without sacrificing your mobility. When paired with the Aves Starchaser helmet, the suit combines for a striking and unforgettable look.'), +(1209,'Corundum (Raw)','Cargo','Cargo','2c67984f-3eb5-46b9-bb48-a54a1ab0b9be','','',NULL), +(1210,'AEGS_Avenger_PrisonPod_4','Usable','UNDEFINED','13567984-3177-413b-84e1-a411a68a35ca','','',NULL), +(1211,'Container','Container','UNDEFINED','786ffb69-9c38-43d0-a982-5026fd53969c','','',NULL), +(1212,'Manned Turret','TurretBase','MannedTurret','59abe86c-73b9-4c3e-b2e5-a0da950f2f65','','',NULL), +(1213,'Elevator Control','Elevator','UNDEFINED','1d0fb02e-6794-413a-a959-acd7a67b13fc','','',NULL), +(1214,'Bar_station_3spots_MMHC','Usable','UNDEFINED','06d9a7a3-907e-45eb-9e57-108b132774d9','','',NULL), +(1215,'BEHR_LaserCannon_FiringMechanism_S6','WeaponAttachment','FiringMechanism','96cc9027-a539-4185-bada-3252eb467e0b','','',NULL), +(1216,'Auorora Mk I Disco Livery','Paints','UNDEFINED','bc3c5ded-5192-42aa-90b4-fa122aaf676f','','','Equip the ship livery used by ace pilot Disco in the classic children\'s cartoon Rory Nova. While it turns the Aurora Mk I metallic dark blue, black, and red, whether you turn into the \'dynamic, instinctive spacecraft operator\' that inspired the livery\'s name is up to you.'), +(1217,'Tungsten (Ore)','Cargo','Cargo','0478303e-7d44-4510-811a-b0ae7b6eaede','','',NULL), +(1218,'ORIG_X1_Velocity_NoseCone','Misc','UNDEFINED','ca35f55b-d376-4f56-b9f1-4a97e78eb601','','',NULL), +(1219,'Paint_Ballista_Black_Sand_Stripe','Paints','UNDEFINED','03d115e3-7ca7-46f0-a210-92f284f3ecfe','','',NULL), +(1220,'ARGO_MOTH_Thruster_Mav_Joint','ManneuverThruster','JointThruster','417efca6-553b-4527-a2ad-4549dfa64508','','',NULL), +(1221,'CNOU_Mustang_Thruster_Aux','MainThruster','FixedThruster','9973aae2-1e6b-4b61-b072-2681302b11d3','','',NULL), +(1222,'VariPuck S3 Gimbal Mount','Turret','GunTurret','7646e90a-4f99-4209-883e-07d429529115','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 3\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(1223,'Combat Supplies','Cargo','Cargo','1fc2c36e-9258-41da-865f-91a63e0e422e','','','A variety of items assembled to support combat forces, such as ammunition, structural repair tools and clothing.'), +(1224,'Dolivine','Cargo','Cargo','70e773a8-d44f-4e34-b9fa-14492845b12a','','',NULL), +(1225,'One Light Undersuit Teal','Armor','Undersuit','906c950f-ec53-4671-8e02-fdfcc5167cdf','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nFeaturing durable poly-fiber fabric, a comfortable fit, and a special holiday design, this undersuit is the perfect thing to wear to any Luminalia party.'), +(1226,'Faction Jacket Red','Char_Clothing_Torso_1','UNDEFINED','a737d3f7-dadb-4c60-b1cc-ba48a79376a9','','','Carrying Capacity: 1K µSCU\n\nWhether you\'re coasting through outdoor adventures or cruising to exclusive afterparties, the Faction coat is sure to turn heads. Fusing sections of ultra-insulated brick quilting with 987\'s DuraBull ripstop reinforced fabric, you\'ll stay warm while still looking cool.'), +(1227,'Venture Legs Purple','Armor','Legs','959efb23-1a62-4c27-a37a-d92cdebc21d1','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(1228,'ANVL_Pisces_C8R_Siren','Container','UNDEFINED','9acbc9e8-ff91-42cf-84a8-3b2448cdbfc9','','',NULL), +(1229,'BRVS Repeater','Weapon','Gun','a4f4afa6-aa15-46e4-9327-c27250c3ea83','','','Manufacturer: Behring\nItem Type: Ballistic Repeater\nSize: 2\n\nOnly Vanguard owners can equip this unique version of Behring\'s line of ballistic repeaters to the nose of their ship. The BRVS is carefully calibrated so its ballistic barrage would fire fast enough to provide maximum target saturation while its improved venting reduces frequent overheating.'), +(1230,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','48d0c868-2cb0-4169-b43e-45f7678832b7','','','Aegis Gladius - Decoy Launcher'), +(1231,'MSD-481 Missile Rack','MissileLauncher','MissileRack','a0741b9e-b0a2-4c6c-935f-2492a60ea90f','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 4\nMissiles: 8xS1\n\nBehring’s MSD-481 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 4 hardpoint for the reliable and effective launch of eight S1 missiles.'), +(1232,'Sabine Undersuit Starchaser','Armor','Undersuit','a1490b6f-36f9-46fa-bca5-45c1e4830094','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThe Sabine embodies the advanced look and performance you expect from Quirinus Tech. This cutting edge undersuit integrates strong, yet flexible microweaves with strategically placed plating to provide protection while remaining lightweight. Featuring a sleek design, the Sabine undersuit will ensure you stay safe and stylish no matter the path ahead.'), +(1233,'Seat','SeatAccess','UNDEFINED','f853d0a9-89bd-4605-8ed3-b25571bd30d0','','',NULL), +(1234,'Carryable_2H_CU_universal_plastic_crate_a','Misc','UNDEFINED','8102b4f8-eb47-4212-a673-f45f806136ed','','',NULL), +(1235,'Year of the Rooster Envelope','Misc','UNDEFINED','6e947ccc-9cc4-4ba2-a5a5-6343fc9ab904','','','A gilded red envelope celebrating the Year of the Rooster. Exchanging these envelopes is one of the most popular ways of celebrating Red Festival. Often the envelope may include a small amount of credits inside to help those you care about have a strong start in the upcoming cycle. Growing in popularity is the newer tradition of hiding the envelopes as a way of spreading good fortune and prosperity to those that fate has deemed in need. \n\nStow the envelope as a token of luck, share it with a friend or loved one to spread good fortune, or exchange it at a commodities terminal and use the credits for a prosperous beginning to a new cycle.'), +(1236,'ControlPanel_Screen_CustomButtons','ControlPanel','DoorPart','d87c234f-0900-4e78-a02f-8379d88554ba','','',NULL), +(1237,'Arden-SL Helmet Coramor Edition \"Kismet\"','Armor','Helmet','712e37de-3d0b-4884-8035-3b198f2a2847','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics. It also features a fully enclosed helmet with an integrated cowl. The special Kismet edition of this armor features black and pink coloration in honor of the ship Yuri Ilyin flew in the classic vid \'Coramor\' while he searched for his lost lover Corazon Tan. Visor is AR crosshair compatible.'), +(1238,'ARMR_CRUS_Starfighter_Inferno','Armor','Medium','317bb267-9fb9-48f5-8881-f209fa447b68','','',NULL), +(1239,'shelf_shoe_1_highend_a','ShopDisplay','Default','6b1389c4-fe41-4a1e-b0ae-34caff050572','','',NULL), +(1240,'Internal Tank','FuelTank','Fuel','5e0e704c-0b62-40f9-b76d-836b4b093932','','',NULL), +(1241,'Ripper SMG Battery (60 cap)','WeaponAttachment','Magazine','3468f853-8bcc-450c-a4fe-f70f6e391301','','','Item Type: Battery\nCapacity: 60\n\nThis battery for the Ripper SMG holds enough energy for 60 shots.'), +(1242,'Chrome Dome Head Gear Striker','Char_Clothing_Hat','UNDEFINED','3c6b1cde-7c5e-4cac-9d34-b91bb088d824','','','The Chrome Dome was designed to make hostile environments manageable. This unique head gear features a lightweight helmet with a sloped brim, goggles that automatically adjust to lighting conditions, large ear flaps, and a neck gaiter to cover the face. Whether trudging through snow or sand, the Chrome Dome is ready to brave the elements with you.\n\nThe Striker edition is a rust color with silver and gold rivets.'), +(1243,'Aurora Mk I Crusader Livery','Paints','UNDEFINED','d781f892-3315-4623-9d2a-dade0561cdd6','','','The Crusader livery for the Aurora features the company\'s logo atop a light blue base paint with black and white highlights.'), +(1244,'Lynx Core Abyss','Armor','Torso','3f2d07fa-20bc-44ea-a7da-324890122fea','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(1245,'Weapon_Rack_1_Volt_Shotgun_Common_001','Usable','UNDEFINED','631346a3-847c-4a3a-ac89-5dfde1a91917','','',NULL), +(1246,'MSD-543 Missile Rack','MissileLauncher','MissileRack','caff4c8a-de5c-4378-bdbf-04a1206c4519','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 5\nMissiles: 4xS3\n\nBehring’s MSD-543 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 5 hardpoint for the reliable and effective launch of four S3 missiles.'), +(1247,'Book','Misc','UNDEFINED','ff8db27c-b0ae-4f39-acc2-b40c1d9bf010','','',NULL), +(1248,'RSI_Aurora_ES_Thruster_Main','MainThruster','FixedThruster','d5bbdf92-62b1-4210-a361-cceafaf16c91','','',NULL), +(1249,'Controller_Mining_Vehicle_ROCds','MiningController','UNDEFINED','97e66378-631a-4657-8df8-852b3f5146c0','','',NULL), +(1250,'Elespo','Cargo','Cargo','acbd6f38-1fa7-4799-af0e-d4d98f71f4c0','','',NULL), +(1251,'Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','4896e3cd-b8ba-4ded-af9b-4c581e704a3c','','','Joker Defcon Flares Ammo'), +(1252,'Menarik','Misc','UNDEFINED','59ea8f20-a2db-44e2-8e42-c7032d2f75ce','','','A striking kingfish that’s capable of adapting to many types of environments. It was ‘presented’ to Humanity by the Xi’An from their preserves in Ealus System.'), +(1253,'Access','SeatAccess','UNDEFINED','0a9f477d-2498-436e-9bfd-0333dd5d1d61','','',NULL), +(1254,'Flight Blade','FlightController','UNDEFINED','945df25d-3abc-4529-b8d0-80634372adc0','','',NULL), +(1255,'Salt','Misc','UNDEFINED','0bae07d8-fde6-4a7c-a980-7a106dbaebed','','',NULL), +(1256,'ORC-mkV Core Covalex Edition','Armor','Torso','26ae8404-354e-4071-98b4-f09ec5db03aa','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement. The Covalex Edition was made specifically for the company.'), +(1257,'ARGO_SRV_Thruster_Main','MainThruster','UNDEFINED','e0da4e56-0dd4-4c3a-ae24-4db73ad56087','','',NULL), +(1258,'Cassidy Shirt Cloudcover','Char_Clothing_Torso_0','UNDEFINED','60eceb13-cf4e-49ae-8814-4a793fb38f38','','','Habidash\'s Cassidy short-sleeved henley t-shirt features a lightweight, breathable fabric blend paired with a neck covering and separated arm sleeves for a stylish look that remains practical in dustier climates.'), +(1259,'Flight Blade','FlightController','UNDEFINED','059b20c7-0211-434f-a759-8066d8858c79','','',NULL), +(1260,'Borase','Cargo','Cargo','a0147acd-0011-4284-96ff-8f3007d9cfdf','','',NULL), +(1261,'TMBL_Nova_Dashboard_Driver','SeatDashboard','UNDEFINED','4f7c55b6-0c3b-4c90-8f9d-63a1ac4290fa','','',NULL), +(1262,'Redeemer PHB Flight Blade','FlightController','UNDEFINED','772e7f0f-e290-4bf3-82e8-aba24d140b52','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Aegis Redeemer with the PHB Flight Blade from Broad & Rabiee. By re-allocating forward thrust resources, you can expect your ship deliver increased precision handling during tight maneuvers.'), +(1263,'Door','Door','UNDEFINED','2451b77e-690d-47f3-af9c-7b864598a1a0','','',NULL), +(1264,'Ventra Gloves Yellow','Char_Clothing_Hands','UNDEFINED','8d74f8a5-75a3-4968-8fc6-45c5ffd537f0','','','Keep your hands warm and dry with Fiore\'s Ventra gloves. Microstitching creates a snug, tailored fit to keep you looking stylish and warm.'), +(1265,'Door Control','Door','UNDEFINED','958c0da1-20bd-4c2d-812e-0b6f4c85ba09','','',NULL), +(1266,'ORIG_890_Jump_Thruster_Main_BL','MainThruster','FixedThruster','e3db7479-ecdd-474e-a611-a710ba779fbf','','',NULL), +(1267,'Internal Tank','QuantumFuelTank','QuantumFuel','a8fbfbf5-ace4-4b06-8cb4-ca14a11498e7','','',NULL), +(1268,'Door_Ship_Sensor_Proximity_4x6x1_6','Sensor','DoorPart','044e9660-3c83-4a67-a0de-8caa28c2d234','','',NULL), +(1269,'Seat','Usable','UNDEFINED','6e984a89-d25e-41df-baae-111ff20c2a8b','','',NULL), +(1270,'ADP-mk4 Legs (Modified)','Armor','Legs','ca506d0e-7b7d-45d6-afd2-f252cc23e96c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nBased on CDS\' ADP-mk4 heavy combat armor, this set has been modified from its original form. When there\'s a difficult job at hand, you want to ensure that you can see it through to the end. This armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers.'), +(1271,'Day One Shirt Dark Red','Char_Clothing_Torso_0','UNDEFINED','fe6f17b1-597e-44c0-9003-d8cbd321c212','','','This Henley shirt from Stegman\'s is made with AirFlow technology, a stain-resistant, air-cooled fabric that keeps you comfortable and dry.'), +(1272,'Mirage','Shield','UNDEFINED','94807046-b89e-422d-8bbc-f914b1cbc08d','','','Item Type: Shield Generator\nManufacturer: Ascension Astro\nSize: 1\nGrade: A\nClass: Stealth\n\nBy boasting a signature so faint most won’t believe it’s there, Ascension Astro’s top of the line small shield generator lives up to its name — Mirage. It’s the ultimate component for those who want to go unnoticed.'), +(1273,'mobiGlas Crimson Casing','MobiGlas','Personal','010b8caa-9779-4e3c-bdfa-fa006aa13fe2','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(1274,'Door Control','ControlPanel','DoorPart','d9bcd0c2-5f96-4103-89d4-504695e56287','','',NULL), +(1275,'Locker_RSI_Constellation','Player','UNDEFINED','22af9bf8-e371-46f1-8ab0-b51730a2004a','','',NULL), +(1276,'Bed','Usable','UNDEFINED','fd2018e0-0d46-4441-8391-fe0dd11434e5','','',NULL), +(1277,'Golden Medmon','Cargo','Cargo','e569f683-ce0e-4af9-aced-d18edab76492','','',NULL), +(1278,'Microid Battle Suit Legs Nomad','Armor','Legs','df348bc3-0873-458e-ba26-df3022183825','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(1279,'H_Dashboard_Projector_HUD_AEGS_Sabre','Display','UNDEFINED','08978f4a-1bbb-41e4-9c14-3757f6e604e9','','',NULL), +(1280,'Carinite (Pure)','Misc','Harvestable','9904aaa2-9a13-48d2-a48d-7494e60d012f','','','Typical carinite sources feature various impurities. However, under certain extremely rare conditions, carinite veins that are more than 90% pure can form. Computing hardware that demands exacting precision will usually seek out pure carinite.'), +(1281,'Artimex Core Wildwood','Armor','Torso','2a3285d9-438a-4ead-ada7-66d45abb7174','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.'), +(1282,'Vivant Shoes Dark Blue','Char_Clothing_Feet','UNDEFINED','2ac92162-0375-4f28-a38c-6d9b03eee863','','','Slip into style and comfort with the Vivant shoes from Hawksworth\'s. These synthetic leather loafers feature an accentuated cap toe, metallic inlay atop the vamp, and a lightweight yet durable outsole made from a unique blend of rubber nanocomposites.'), +(1283,'TruBarrier Hazard Suit Mask Slate','Char_Clothing_Hat','UNDEFINED','9abc859a-7140-4c82-9936-12a3351eae37','','','Temp. Rating: -30 / 15 °C\n\nThe TruBarrier Hazard Mask by Greycat Industrial helps its user face unexpected environmental hazards while keeping the most vulnerable parts of the head safe from damage. The encapsualted design provides full-body protection from direct contact with dangerous materials when worn with its accompanying jumpsuit.'), +(1284,'Door Control','ControlPanel','DoorPart','0c4c37c8-6ab0-4d34-847c-d590a57ebb06','','',NULL), +(1285,'Gold','Cargo','Cargo','7f2095b5-0c58-49a5-a168-2adaf3473e93','','',NULL), +(1286,'Door Control','ControlPanel','DoorPart','e71ce344-4e54-4bf8-a6df-f1fa18b3eb6e','','',NULL), +(1287,'MASTER_box_carryable_2h','Cargo','UNDEFINED','aece4ade-6425-4eaf-90e8-4561c7c223d9','','',NULL), +(1288,'E\'tam','Cargo','Cargo','5d2d591c-cbcc-408a-977c-1c3860964c89','','',NULL), +(1289,'Big Barrys T-Shirt','Char_Clothing_Torso_0','UNDEFINED','78b9ad7b-461c-480f-b624-aef33dc8013e','','','Humans can\'t get enough of Big Barrys grab and go kacho. This shirt made by a Banu souli is for all Humans that love eating noodles so hot that they turn your eyes red!'), +(1290,'Stinger Meridian Livery','Paints','UNDEFINED','fec0eafa-22d7-4494-a74e-1f385a488371','','','The Meridian livery gives the Stinger a simple yet stylish metallic silver finish.'), +(1291,'Drake Ore Pod','Container','Cargo','4c2d5e75-598a-4854-a301-7bbffeb9794e','','','Capacity: 16 SCU\n\nDurable and designed to work with any compatible mining ship, the Drake ore pod holds an impressive 16 SCU. Providing miners with the space to hold more ore than standard containers.'), +(1292,'Aril Helmet (Modified)','Armor','Helmet','b0e84e8c-321d-4cd9-9d2c-33d657b05639','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n \nThis version of Greycat Industrial\'s Aril helmet has been modified from its original form. Originally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(1293,'Seat','Usable','UNDEFINED','f7964543-6bd6-4ea7-8736-af54a0187467','','',NULL), +(1294,'Captain\'s Mix Sandwich','Food','Junk','a0d199ab-e5e5-4a3a-a12f-0b85ae376bae','','','NDR: 38\nEffects: None\n\nAn assortment of cold cuts and cheese layered with mayo and spicy captain sauce on rice bread.'), +(1295,'Citadel Legs Brimstone','Armor','Legs','5a400291-2a72-4221-aca7-1d8c8012f0ae','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(1296,'RSI_Aurora_GS_MR_Thruster_Main','MainThruster','FixedThruster','50778663-82c1-43e1-8dbf-670e587d47f2','','',NULL), +(1297,'m_human_mannequin_legacy_outlaw_medium','ShopDisplay','UNDEFINED','4ec542ea-b8cb-4916-a049-77aea28c5565','','',NULL), +(1298,'ANVL_Hornet_F7CM_Thruster_Main','MainThruster','FixedThruster','53bf0a2d-2d97-4bfd-a5d6-bd2b384dfd89','','',NULL), +(1299,'Arden-SL Arms Archangel','Armor','Arms','f49b49ad-b486-4bf4-8dfe-7848f04c1b59','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics.'), +(1300,'Altruciatoxin','Cargo','Cargo','f44c878e-51d7-42d3-a0ac-a8acfb732517','','',NULL), +(1301,'Dashboard','SeatDashboard','UNDEFINED','1f379282-299d-4d18-a65a-da808d817a00','','',NULL), +(1302,'K7 Pants Violet','Char_Clothing_Legs','UNDEFINED','df7b47f1-f6bc-4b0d-b315-eae6afc109f9','','','Carrying Capacity: 3K µSCU\n\nDMC\'s K7 are an all-purpose cargo pants. Four easy access pockets provide extra storage while the triple-stitched polymer weave fabric is designed to withstand all kinds of weather conditions.'), +(1303,'JS-400','PowerPlant','Power','f1763688-a3b6-496e-8d62-3e40e2098661','','','Item Type: Power Plant\nManufacturer: Amon & Reese Co.\nSize: 2\nGrade: A\nClass: Military\n\nAs the UEE’s oldest energy weapon manufacturer, A&R expanded into power plants to interface more efficiently with their weapons. The JS-400 was their first attempt at a medium power plant, and it’s a testament to the quality of this military-grade component that it’s still around.'), +(1304,'display_ship_components_02x0075x0275_a_s0','ShopDisplay','UNDEFINED','6c58ed16-64bd-4278-bdac-859c00eae248','','',NULL), +(1305,'Pulse Undertow Livery','Paints','UNDEFINED','e8d5ea81-fe4c-4763-8b8c-39e42cec0387','','','Speed through the shadows with the Undertow livery and its subtle style mixing black and silver with blue highlights.'), +(1306,'TRGT. STATUS','Seat','UNDEFINED','81cd8e9f-85d4-4384-a6f6-fb9b0e9fa45d','','',NULL), +(1307,'ARGO_MOTH_Thruster_Retro','ManneuverThruster','Retro','c7f7a848-55c0-433d-b5b2-2c8d4cbdc486','','',NULL), +(1308,'Taranite','Cargo','Cargo','aaf59578-8e2f-41ac-841d-df76579455b9','','',NULL), +(1309,'Crestfall Shoes','Char_Clothing_Feet','UNDEFINED','2c23cdb4-43e3-4539-b3df-b7359a109963','','','Upsiders\' Crestfall high-tops are slip-ons that blend suede and synthetic fabrics imbued with subtle patterns. They feature a deep U-cut collar, padded heel, and enlarged tongue.\n\nWomen\'s sizes currently out of stock.'), +(1310,'Construction Pieces','Cargo','Cargo','ebf4c29a-012e-4e02-ac3b-3c166b2283b6','','','Can be processed at refineries into Construction Material.'), +(1311,'Morozov-CH Backpack Lifeforce','Armor','Backpack','5eb572f2-236d-4650-a8d0-47a81293d91d','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nComfortably carry vital gear with the Morozov-CH backpack. This softshell bag is made with an advanced duraweave that\'s lightweight yet ready for battlefield action. It also features several easy to access pockets and a plethora of straps to keep supplies secure and tight to your back.'), +(1312,'DockingTube_Fuel_Ports_ARGO_RAFT','DockingCollar','UNDEFINED','8dfeeffa-687f-4a2b-8801-c4983f916435','','',NULL), +(1313,'TRGT. STATUS','Seat','UNDEFINED','3b5df413-26e7-4663-a3fe-b00f258646c1','','',NULL), +(1314,'Seat','Usable','UNDEFINED','f1eacf57-330b-4d3e-85e8-b59b86cece5a','','',NULL), +(1315,'Carinite','Cargo','Cargo','ab7ca04f-0ea9-4b42-b48e-ec7c18df9075','','','A rare mineral because the extreme pressure needed for its formation is very uncommon, it is in high demand thanks to its use in advanced computer processors and other cutting-edge electronics.'), +(1316,'Door Control','Door','UNDEFINED','3622e95c-7906-4d10-a968-12180b319d07','','',NULL), +(1317,'Chlorine','Cargo','Cargo','cb2fd95d-6d29-44ab-90af-c51a14213efe','','',NULL), +(1318,'Carnifex Armor Legs','Armor','Legs','9b5f61f6-ea52-4c42-a95e-d99a51e8d84c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -5 / 35 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nThis homemade armor provides a marginal amount of protection but maximum attitude. It\'s aggressively styled with skulls and other intimidating accessories associated with those living on the edge. Wearing such a distinct look may either keep people away... or draw them to you.'), +(1319,'AEGS_Retaliator_Module_Front','Module','UNDEFINED','828f71fd-9ca7-4802-8306-253f744a2705','','',NULL), +(1320,'Ling Family Container Model','Misc','Flair_Wall_Picture','f64a1518-c197-4d69-84ce-1813effb6425','','','There\'s no need for a tractor beam to move this cargo container. This finely detailed model features Ling Family Hauling branding with the company\'s logo and red and blue color scheme.'), +(1321,'ORIG_X1_Thruster_Retro_Velocity','ManneuverThruster','FixedThruster','8484b572-73e5-462f-8692-61e40f084508','','',NULL), +(1322,'resource_relay_3_slot_standing_col','Cargo','UNDEFINED','040e5cf2-a41e-4770-aa7e-f20e72002530','','',NULL), +(1323,'FocalWave-30 (3x Holographic)','WeaponAttachment','IronSight','1f799599-a91a-410f-848e-eca2bd41ae5d','','','Manufacturer: VOLT\nType: Holographic\nAttachment Point: Optic\nMagnification: 3x\nAim Time: +8%\nParallax: Low\nSize: 1\n\nThe FocalWave-30 provides enhanced vision to engage targets at close and medium distances. In addition, your weapon\'s heat and charge is displayed in the lens optics offering enhanced combat awareness.'), +(1324,'Valakkar Fang (Juvenile)','Misc','Harvestable','e3522bd2-4420-4b3a-8679-7fc929411e85','','','The valakkar continually sheds its teeth throughout its lifetime. As the animal burrows through the sand and catches prey, its teeth are frequently damaged. Once a new tooth finishes forming, it severs the connective tissue that was holding the old tooth in place, causing it to break off and fall to the ground. The fangs of the valakkar can also be extracted from the animal\'s mouth after its death. Collectors seek out the valakkar fangs for use in crafting various luxury items.'), +(1325,'Obscura','Shield','UNDEFINED','5f3fced2-3c4a-4a50-8a3e-4ba36064854c','','','Item Type: Shield Generator\nManufacturer: Ascension Astro\nSize: 2\nGrade: C\nClass: Stealth\n\nRespected for its lower emissions, the Obscura shield generator uses an advanced signature dispersal system to help give your ship a quieter signature while still remaining shielded.'), +(1326,'sc_nvy_bridgeofficer_lieutenant_jacket_01_01_01','Char_Clothing_Torso_1','UNDEFINED','0ba67856-f713-4f7b-877a-fd4ddf6ab841','','',NULL), +(1327,'un_jar_glass_2_berries_c','Misc','UNDEFINED','8cce60cf-d346-437c-907e-807ba95304a8','','',NULL), +(1328,'Door_ChipReader_PAF_OLP','Door','UNDEFINED','40b2e587-856c-4f7b-a53a-440528204148','','',NULL), +(1329,'ST-171 Missile Rack','MissileLauncher','MissileRack','95973e2d-a15b-4d6d-8ea1-e83108396f57','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 1\nMissiles: 8xS1\n\nTo help defend the Origin 400i, Behring built the SNT-171 \"Santoro\", which can carry and deploy eight S1 missiles.'), +(1330,'ARGO_MPUV_1T_Thruster_Main_Fixed','MainThruster','FixedThruster','a597e878-4163-4d40-a191-735758c986ae','','',NULL), +(1331,'Overlord Helmet Gilded','Armor','Helmet','8b5b6efe-43bf-4830-aae8-cfe756c30c87','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord helmet delivers heavy armor protection while using a special lightweight composite plating that makes it feel like nothing\'s there. Repurposed ocular sensors normally found on ships keep you attuned to your surroundings and, when worn with the full Overlord suit, the high neck collar provides the helmet extra support and protection. Visor is AR crosshair compatible.\n\nThe Gilded edition is an opulent gold with worn edges and black joints.'), +(1332,'RSI_Scorpius_Antares_SCItem_Dashboard_MissileControl','SeatDashboard','UNDEFINED','0a091db1-102a-44ed-9e84-31378606ec80','','',NULL), +(1333,'2Tuf Gloves','Char_Clothing_Hands','UNDEFINED','8bdbbce9-500e-4fa9-ae9e-4541670dfe27','','','The 2Tuf features an ultrasoft cloth lining paired with a durable lab-grown leather exterior for comfort and unrestricted mobility. Thanks to a simple design with reinforced stitching, the glove can survive a rough night on the streets and still be ready for elegant evening out.'), +(1334,'Remote Turret','Turret','GunTurret','9efcaa00-869f-4235-9105-25b67afe6e83','','','Remote Turret'), +(1335,'Stud','Char_Head_Piercings','UNDEFINED','99068cb9-e006-4eb7-854f-b3b5bad53c61','','',NULL), +(1336,'Table_Booth_4_Seat_ARGO_SRV','Usable','UNDEFINED','85a57b0d-cd41-4f6b-bee5-28f7af155b81','','',NULL), +(1337,'SF7E Cannon','Weapon','Gun','25ebe37d-5fdd-4319-ad41-71d768b5bed4','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 7\n\nEngineers from Behring and Crusader collaborated to make the SF7E laser cannon the ideal weapon for the Ares Ion Star Fighter. A custom shell allows the massive weapon to seamlessly integrate into the body of the ship. Ideal for long-range engagements involving large and capital-class spacecraft, the SF7E\'s impressive accuracy and high damage-per-round make it a devastating weapon in the hands of a skilled shooter.'), +(1338,'Ardent Boots Imperial','Char_Clothing_Feet','UNDEFINED','bda31c85-96fc-4ca6-b223-bbcc151c6e04','','','Who says NorthStar can\'t keep it pro? The Ardent boot features a molded rubber sole and all-weather construction to withstand a constant battery from the elements.\n\nWomen\'s sizes currently out of stock.'), +(1339,'Palatino Helmet Moonfall','Armor','Helmet','4f7a0a87-41f7-4157-bd67-faf15c29934b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. The fully-enclosed helmet comes equipped with a suite of sensors that connects the wearer to the wider world while providing supreme protection. Visor is AR crosshair compatible.'), +(1340,'Seat_Jump_DRAK_Cutlass_Black','Usable','UNDEFINED','1095c00f-86fe-40ae-a57a-0710daa71052','','',NULL), +(1341,'Diamond','Cargo','Cargo','921609af-5166-4509-a609-13f06de20c50','','',NULL), +(1342,'m_human_mannequin_base_armor_Collector_GG_Venture','ShopDisplay','UNDEFINED','ebcb7cd8-628f-4b65-a164-6c45013ba62e','','',NULL), +(1343,'MedGel','Cargo','Cargo','5c130321-b30e-4f0f-9336-ce8701d760b5','','',NULL), +(1344,'Aegis Sabre - Noise Launcher','WeaponDefensive','CountermeasureLauncher','bbc04262-a5cb-41c0-88d8-d49eff08a577','','','Aegis Sabre - Noise Launcher'), +(1345,'Falston Jumpsuit \"Greycat Edition\"','Char_Clothing_Torso_1','UNDEFINED','445c8d6a-4cab-4c4b-932a-227938a6d194','','','Carrying Capacity: 1K µSCU\n\nThe Falston jumpsuit has a high collar to guard against the elements, triple-reinforced stitching, and an extra soft interior lining because everyone deserves a bit of comfort.'), +(1346,'Fury Nightwatch Livery','Paints','UNDEFINED','5a45adcb-1b69-4506-a717-6cfdd7e87e01','','','Embrace the darkness of space with the Nightwatch livery for the Fury, which is grey and black with subtle gold highlights.'), +(1347,'Railing_Straight_2m_Microtech','Usable','UNDEFINED','befeb0f2-6bed-47aa-9b92-61e1f05aa984','','',NULL), +(1348,'Armor_Crate_CZ_Firerat_001','Usable','UNDEFINED','011aedd0-3c6b-4972-b47f-f08b38888103','','',NULL), +(1349,'ADP Arms Black','Armor','Arms','e433a9c7-776b-41e1-8bb7-a5bc0312a375','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(1350,'Geist Armor Legs Rogue','Armor','Legs','9fa29481-192f-48ce-bc15-8108a46c63ed','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(1351,'box_fabric_1_005x005x005_b_v001','Cargo','UNDEFINED','ef60ea79-52d5-4132-b355-d30cd5ed02fa','','',NULL), +(1352,'ViseLock S3 Tractor Beam','SalvageHead','UNDEFINED','1d92edcc-21c8-4a41-aa1d-9b46daa1ee94','','','Manufacturer: Greycat Industrial\nItem Type: Tractor Beam\nMax Angle: 80°\nMax Range: 135 m\nFull Strength Distance: 50 m\n\nThe ViseLock tractor beam is an evolution of Greycat’s industry-standard tech, with added improvements specifically intended to help security forces restrain their targets. In its design, Greycat sacrificed some hold strength at greater distances to achieve a more powerful tether that is harder to escape.'), +(1353,'Covalex_Datapad_DoorCodes_4x3_Screen','Display','UNDEFINED','a394d1b3-bf84-4173-95f2-03b0f934533d','','',NULL), +(1354,'UrbEx Boots Scarlet','Char_Clothing_Feet','UNDEFINED','13dc5de5-7e9a-49cf-9473-627c26ec5db5','','','From bustling backstreets to crowded clubs, the UrbEx boots will make your next step a bold one. The boots blend a stylish design with reinforced high ankle support and ultra durable outsoles.'), +(1355,'Quantainium','Cargo','Cargo','fa79d61c-06ef-414a-bfd0-d8c248edb76e','','',NULL), +(1356,'Internal Tank','FuelTank','Fuel','ec4e8591-528d-481f-8642-c4eb84a757d3','','',NULL), +(1357,'Palatino Arms Shadow Gild','Armor','Arms','34b01931-3eb1-4fea-b02a-d243d3474514','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower. The Shadow Gild variant is dark gray and features stylish gold highlights.'), +(1358,'Dopple','Cargo','Cargo','0c1507bc-c268-4951-9da2-d83c38924f23','','',NULL), +(1359,'Caudillo Helmet Hazard','Armor','Helmet','c801ca7e-3e0f-4477-ba86-d5b5b8cfb779','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAdept at surviving firefights in both atmosphere and in space, the Caudillo helmet provides solid head protection while offering the wearer the stylish look of classical armor thanks to its visually striking metal crest. The Hazard variant is being offered as a limited edition run.'), +(1360,'Door Control','Door','UNDEFINED','b12e57b8-b8c7-46d1-b6e1-b20bc8915f7b','','',NULL), +(1361,'Vehicle_Screen_Physical_L22_R','Display','UNDEFINED','aa767c5b-e10d-4386-9851-7aca06a35cca','','',NULL), +(1362,'Corsair Dying Star Livery (Modified)','Paints','UNDEFINED','0a0780c3-1d52-4977-894e-83b372aa61d2','','','This version of the livery has been modified from its original form with the addition of graffiti. Sold in 2943 to celebrate the 450th anniversary of Pyro\'s discovery, the Dying Star livery is tan with brown and black highlights. It also features branding from Pyrotechnic Amalgamated, the now defunct mining company that found and named the system.'), +(1363,'Fury Fortuna Livery','Paints','UNDEFINED','0c7d0309-7731-4171-a707-20c001a0510a','','','Make luck your co-pilot. Boldly set your sights on the stars and adventure forth in style with the Fortuna livery. This Stella Fortuna themed paint scheme is primarily green with grey accents.'), +(1364,'Overlord Helmet Cardinal','Armor','Helmet','ef44127b-2751-41bf-98d0-25e886bb54b4','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord helmet delivers heavy armor protection while using a special lightweight composite plating that makes it feel like nothing\'s there. Repurposed ocular sensors normally found on ships keep you attuned to your surroundings and, when worn with the full Overlord suit, the high neck collar provides the helmet extra support and protection. Visor is AR crosshair compatible.\n\nThe Cardinal edition is a vibrant red with purple and white accents.'), +(1365,'Defiance Legs Firestarter','Armor','Legs','f0e4f43a-a0fa-4388-b536-97f2343c02ee','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nIncorporating the same manufacturing know-how and expertise that the UEE Marines have come to rely on, Clark Defense Systems has designed their civilian-line of Defiance heavy armors to stand firm in the face of even the most adverse combat scenarios with its three-star rated protective plating and fully integrated mobility framework.'), +(1366,'Deadrig Shotgun Magazine (8 cap)','WeaponAttachment','Magazine','1b00b884-79eb-4b3b-916f-1b3ebe4c7c76','','','Item Type: Magazine\nCapacity: 8\n\nThis magazine for the Deadrig shotgun comes pre-loaded with eight 12-gauge shells.'), +(1367,'Good Boot','Char_Clothing_Feet','UNDEFINED','ea73662f-7910-4156-836f-54944a569345','','','The Vaporwear Good Boot is the result of a design collaboration between seven up-and-coming designers who were each tasked to answer one question: what makes a good boot? The result is a fusion of supreme comfort with supergrip rubber soles, reinforced toe safeguards, and a variety of decorative zippers and buckles around the top quarter.'), +(1368,'RSI_Perseus_Thruster_Retro_Front_Bottom_Left','ManneuverThruster','Retro','02660f1b-9ffe-4c53-a737-715f634803ac','','',NULL), +(1369,'Origin Jumpworks 300i Front Cargo Bay','Door','UNDEFINED','8010c434-5180-48c6-9faa-28d1355542c6','','','Origin Jumpworks 300i Front Cargo Bay'), +(1370,'Tritium','Cargo','Cargo','ebdc24b6-dd45-4236-88df-ccf07edc3a20','','',NULL), +(1371,'Cutlass Skull and Crossbones Livery','Paints','UNDEFINED','d75eae08-f688-4b42-9c7b-ee510c0f66c6','','','Deemed by Drake\'s public relations team as a ?tongue-in-cheek reference to the overblown controversy,? the Skull and Crossbones livery leans into the perception that the Cutlass is marketed toward those on the wrong side of the law. The livery embraces classic pirate iconography by featuring several skull and crossbones symbols across it grey frame with red highlights.'), +(1372,'Ventris Jumpsuit Crusader Edition Light Blue / Dark Teal','Char_Clothing_Torso_1','UNDEFINED','098af6ef-ecba-4229-ae66-9d9091f9b99d','','','Carrying Capacity: 1K µSCU\n\nThe Ventris is a sleek jumpsuit that mixes several rip and stain resistant polymer fabrics for a dynamic design. It also features a half-zip front and adjustable belt to ensure an ideal fit while the soft inner lining makes it an ideal choice for all day wear. The special Crusader Edition was made to be worn by employees of the company and features the sword and C logo on the front.'), +(1373,'Internal Tank','QuantumFuelTank','QuantumFuel','6b20c031-d5ad-4036-86f4-54738f0add51','','',NULL), +(1374,'Iodine','Cargo','Cargo','c786460a-e727-4c1c-9f39-fb743550fe03','','',NULL), +(1375,'hd_showcase_middle_screen_large_a','ShopDisplay','Default','fe2f448d-60eb-4254-9766-63880db719c6','','',NULL), +(1376,'Palatino Arms Moonfall','Armor','Arms','bcadecab-e062-4b97-8d82-8b52e795bdec','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower.'), +(1377,'Seat_Jump_ESPR_Prowler','Usable','UNDEFINED','347583ff-ab69-4f33-9e4f-3437a0ed7b34','','',NULL), +(1378,'Predator','Radar','MidRangeRadar','8e6d2e32-dce8-4762-9fc5-b9def5e1e2ac','','','Item Type: Radar\nManufacturer: Blue Triangle Inc.\nSize: 2\nGrade: B\nClass: Stealth\n\nCreated for those that want to keep a low profile, the Predator radar operates with low electromagnetic emissions, to help reduce your signature.'), +(1379,'KRIG_P52_Merlin_Thruster_Mav_Lateral_L','ManneuverThruster','JointThruster','3f6ea91b-1f3b-4173-ae36-312895cc42d4','','',NULL), +(1380,'Turret','Turret','GunTurret','6994ed1d-c9d8-497c-9f0f-61fb3d052ff5','','',NULL), +(1381,'Radar_Display_Screen_ARGO','Display','UNDEFINED','94c7fa49-995e-4c90-a5b3-ccb736a29963','','',NULL), +(1382,'HRST_LaserScatterGun_Ventilation_S2','WeaponAttachment','Ventilation','83869905-fe6a-4685-935f-9ad871f10dd2','','',NULL), +(1383,'Dovo Shoes','Char_Clothing_Feet','UNDEFINED','f9e213d6-fee9-403a-8803-9dc086e068d3','','','Classic. Elegant. Spar Van Miles\' low-heel slip-on shoe is reinforced for durability and comfort. Perfect for the professional on the go.'), +(1384,'Aslarite','Cargo','Cargo','d17e1462-721e-4480-89e1-fef8f3806f61','','',NULL), +(1385,'INTK_AEGS_Gladius','FuelIntake','Fuel','caa39cbb-e87b-4570-b655-8b6540512c8c','','',NULL), +(1386,'Aslarite (Raw)','Cargo','Cargo','b2e7271a-5c3d-4b32-93c5-415a8271fa4b','','',NULL), +(1387,'box_metal_1_005x005x005_a','Cargo','UNDEFINED','9460b4e3-eb3a-497e-af44-97257b337a59','','',NULL), +(1388,'SHIELDS','ShieldController','UNDEFINED','c8dfd4f7-fff6-4566-8d56-9bdd02dd1a07','','',NULL), +(1389,'Aslarite','Cargo','Cargo','bcbe9836-2fa0-4d75-8522-a01383230295','','',NULL), +(1390,'Railing_Straight_4m_Lowtech_Bravo_Open_B','Usable','UNDEFINED','f9b96421-8fbc-42b6-a068-85fd5f2f984f','','',NULL), +(1391,'Tempo Jacket Gold','Char_Clothing_Torso_1','UNDEFINED','4e8d6ec6-4aff-4250-8606-9e8b7b864387','','','Carrying Capacity: 1K µSCU\n\nFashionable, fun and flashy, the Tempo is a quilt studded jacket featuring a unique metallic finish to make you stand out from the crowd. 987 balanced this bold design with sections of synthetic leather and complementary colors ringing the waistband and inner collar.'), +(1392,'Foundation Pants Olive','Char_Clothing_Legs','UNDEFINED','5557b02e-d6c1-4b59-b1dd-8069f7ef15a6','','','Carrying Capacity: 1K µSCU\n\nDMC\'s Foundation line is just that; the foundation for your work wear. Featuring a simple, elegant cut with easy-access pockets, the Foundation is both professional and functional.\n\nWomen\'s sizes currently out of stock.'), +(1393,'LeMarque Pants White','Char_Clothing_Legs','UNDEFINED','74c4ef6b-d3b6-4bff-a148-6330c12ed016','','','Carrying Capacity: 0.5K µSCU\n\nClassic cuts never go out of style. A staple of any wardrobe, Derion\'s LeMarque are built for work or play and feature microseam pleats and wrinkle-free material that will guarantee that you\'ll get years out of this classic.\n\nWomen\'s sizes currently out of stock.'), +(1394,'BEHR_LaserCannon_PowerArray_S6','WeaponAttachment','PowerArray','9bab7a48-b6fc-4b3b-b6b8-eee42f3249d7','','',NULL), +(1395,'Inquisitor Arms Grey','Armor','Arms','aae8c380-283b-475b-8a61-1b32afcdeb1c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(1396,'Bed','Usable','UNDEFINED','3b5b1aee-a255-4d7e-a519-1806cb3d3297','','',NULL), +(1397,'Internal Tank','FuelTank','Fuel','7f4a396f-51e0-4237-a7b0-4b0d71986f2c','','',NULL), +(1398,'Seat','Usable','UNDEFINED','3987a862-67c1-45c9-b503-f12b201308a2','','',NULL), +(1399,'ESPR_LaserCannon_Barrel_S6','WeaponAttachment','Barrel','66615a7c-906a-45d4-bcb2-a4e7de148ce9','','',NULL), +(1400,'Carryable_2H_FL_MissionItem_covalex_empty_damaged_a','Misc','UNDEFINED','5c936483-bdf8-458e-a1c6-ef80a67f3ba3','','',NULL), +(1401,'Hephaestanite','Cargo','Cargo','faf0233a-efa2-4861-8e26-0750bb1513db','','',NULL), +(1402,'Manned Turret','TurretBase','MannedTurret','f0921afb-25dd-4595-bd9d-139f227a7856','','',NULL), +(1403,'Altruciatoxin','Cargo','Cargo','6011dd41-b6c1-40fb-a7bf-c25210ebaff3','','',NULL), +(1404,'Door Control','Door','UNDEFINED','3482a8a5-3579-41d7-9caf-a4c9a05bb0b6','','',NULL), +(1405,'Paint_Prowler','Paints','UNDEFINED','e162275e-69da-453f-9be3-c06ae447286d','','',NULL), +(1406,'test_SuitHelmet','Suit','Helmet','74f383ac-6d6e-4af6-ab0d-fa17c642684b','','',NULL), +(1407,'SafeCore Boots Armadillo','Char_Clothing_Feet','UNDEFINED','009eb97b-d6bf-4e23-b525-2002227668b0','','','The SafeCore boots are a soft-shelled offering from Grindstone intended to provide more flexibility while traversing in adverse conditions.'), +(1408,'Inquisitor Legs Orange','Armor','Legs','824c2f79-8316-438f-91ad-72eafde6c00c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(1409,'CBH-3 Helmet Sakura Sun Edition','Armor','Helmet','821aa902-605b-4e1c-9d1b-2a0c9687b021','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. The Sakura Sun Edition was made specifically for the company. Visor is AR crosshair compatible.'), +(1410,'can_drink_3_fizzz_shop_2x5_a','ShopDisplay','Default','d1be1657-b5de-4e3d-b1f4-4a3d7d758835','','',NULL), +(1411,'Personal Storage','Cargo','UNDEFINED','cfb4851b-2f5b-4ab2-bc22-4c3fbc0b5718','','',NULL), +(1412,'Prestige Origin Racing Jacket','Char_Clothing_Torso_1','UNDEFINED','33aed3ba-e1c0-49c0-964e-840defe4f741','','','Carrying Capacity: 1k µSCU\n\nPart of City Lights\' stylish collection of racewear, the Prestige Origin Racing Jacket is high-quality, durable outerwear that features a colorful asymmetric design celebrating Origin\'s line of luxury racing vehicles.'), +(1413,'Aegis Redeemer Ship Armor','Armor','Medium','fa5be128-c861-4d4e-a44f-34832937a1aa','','','Aegis Redeemer Ship Armor'), +(1414,'Ursa IceBreak Livery','Paints','UNDEFINED','d759133b-94ff-4076-a302-16bc7f41d561','','','Equip your Ursa with a paint scheme cooler than a snow storm. The IceBreak livery mixes crisp, cool white with a frostbitten blue for an exciting look suitable for any season.'), +(1415,'Vent Slug','Food','Harvestable','bfa3fb80-fd27-4c56-a51e-f068798b530e','','','NDR: 19\nHEI: 05\nEffects: Toxic, Cognitive Impairing\n\nThese slugs live in moist environments and eat mold that grows there. They can frequently be found inside and near life support vents where condensation can accumulate and are often brought aboard stations to help keep systems clean. Can be consumed, but they often can be mildly toxic to Humans owing to their diet.'), +(1416,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','3eb375dc-aa6f-4f5d-b395-3ba500ee6d50','','','Aegis Gladius - Decoy Launcher'), +(1417,'Weapon_Ship_Cz_008','Usable','UNDEFINED','c6d45e38-b17a-4226-acf0-ed9bea6da0e7','','',NULL), +(1418,'Aslarite (Raw)','Cargo','Cargo','f7ef778e-e9ff-422b-b77c-0fa63a26fc5f','','',NULL), +(1419,'Cirrus Boots Teal','Char_Clothing_Feet','UNDEFINED','37656f65-c75c-4b68-a09c-5c200392c98c','','','Temp. Rating: -35 / 15 °C\n\nThese rugged, high ankle boots will keep your feet warm when venturing into wintry conditions. The Cirrus also integrates steel alloy links into the sole for added traction on icy surfaces.'), +(1420,'ANVL_Pisces_Thruster_Mav_Fixed_C8X','ManneuverThruster','FixedThruster','78f9d111-3af4-4904-9287-a52ad11c4a8e','','',NULL), +(1421,'Morningstar Helmet Base','Armor','Helmet','23336c99-54c1-4c76-beac-ee1104ec3bba','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(1422,'Tritium','Cargo','Cargo','101cd280-4910-4e85-89a5-556ae13540c9','','',NULL), +(1423,'display_components_pallet_250x125x025_b','ShopDisplay','UNDEFINED','4bff94c8-8b8e-46f1-9f37-87314eeb78f3','','',NULL), +(1424,'Manned Turret','TurretBase','MannedTurret','436f6c47-c13c-4a14-b3de-f27f34dc229b','','',NULL), +(1425,'DCP Armor Arms Clawed Steel','Armor','Arms','612dc3d1-67f4-4677-ae92-87a2dbe47b23','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(1426,'ORC-mkX Legs Righteous','Armor','Legs','895ed7c8-e6f7-4b25-973e-133f2e6cc114','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nThis version of CDS\' ORC-mkX combat armor has been modified from its original form. The mark X is part of CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(1427,'Renegade Helmet Desert','Armor','Helmet','7ef751cd-1cab-4893-b582-19f1862ff960','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -39 / 69 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arm\'s Renegade combat helmet is a light but durable infantry helmet designed for added protection and impact-reduction during in-atmosphere operations. Visor is AR crosshair compatible.'), +(1428,'Falston Jumpsuit \"ArcCorp Edition\"','Char_Clothing_Torso_1','UNDEFINED','f8380897-7204-4268-8a8f-cbbfc8bc2a09','','','Carrying Capacity: 1K µSCU\n\nThe Falston jumpsuit has a high collar to guard against the elements, triple-reinforced stitching, and an extra soft interior lining because everyone deserves a bit of comfort.'), +(1429,'facial_hair_053','Char_Head_Beard','UNDEFINED','fbc06654-9964-479c-8af4-26285cec53d7','','',NULL), +(1430,'CRUS_Spirit_C1_Blanking_Plate_Collector','Misc','UNDEFINED','96d53db4-01b7-44c0-be64-7aea76ffbcf3','','',NULL), +(1431,'Hermes Tripline Livery','Paints','UNDEFINED','092c9d3a-4fe7-4d86-a131-7aa07a834cb8','','','Sharp, silver accents cuts through the stark black of the Tripline livery\'s metallic color scheme.'), +(1432,'Door Control','Door','UNDEFINED','c3f51de2-3416-49e6-8646-19469255fdef','','',NULL), +(1433,'ANVL_Hornet_F7CM_Mk2_Dashboard_Pilot','SeatDashboard','UNDEFINED','74b32530-4e16-4ca9-875a-35064109785d','','',NULL), +(1434,'ANVL_Pisces_BayDoor','Container','UNDEFINED','9c30fd62-2c26-4ecd-ac00-58459004231c','','',NULL), +(1435,'INTK_MISC_Starfarer','FuelIntake','Fuel','9c1ad2b5-e01f-4b09-89ed-20ad62950bd1','','',NULL), +(1436,'sc_nvy_bdu_engineer_belt_01_01_01','Char_Clothing_Torso_2','UNDEFINED','3608082d-fcc2-4e61-b970-f5e5ea93f407','','',NULL), +(1437,'Tempo Jacket (Modified)','Char_Clothing_Torso_1','UNDEFINED','351eacb5-9494-46fd-ad43-84beffc6b448','','','Carrying Capacity: 1K µSCU\n\nThis version of 987\'s Tempo jacket has been modified from its original form. Fashionable, fun and flashy, the Tempo is a quilt studded jacket featuring a unique metallic finish to make you stand out from the crowd. 987 balanced this bold design with sections of synthetic leather and complementary colors ringing the waistband and inner collar.'), +(1438,'Guerra Pants Cloudcover','Char_Clothing_Legs','UNDEFINED','3ec065c9-c66a-451d-8938-d3195ec3d74f','','','The Guerra pants by Alejo Brothers are a staple for daily wear. The synthetic fabric ensures adequate protection from the general wear and tear of frontier life while remaining easy to patch up if the need arises.'), +(1439,'ORC-mkX Core Singularity','Armor','Torso','53870a00-c231-454d-a748-8bcf394108ed','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(1440,'AEGS_Idris_SCItem_Seat_Pilot','Seat','UNDEFINED','b475b921-bbab-4294-a961-0256bd7e987e','','',NULL), +(1441,'Storm Landfall Livery','Paints','UNDEFINED','6b6bb110-e497-4d5e-807d-27e77a9f6682','','','Ready the Storm for adventures through forests and grasslands with the Landfall livery with its various shades of green.'), +(1442,'Argus Helmet Black/Pink/Purple','Armor','Helmet','32a5a7ad-c7c6-4677-b32e-6dddf165578a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s Argus helmet utilizes advanced multi-layered composite construction to provide incredible protection from weapon fire as well as environmental hazards. The tinted visor offers a wide field-of-view to improve situational awareness and unrestricted movement.'), +(1443,'Diamond','Cargo','Cargo','56ddef89-63e5-41fe-b484-8496eaef6d69','','',NULL), +(1444,'RSI_Zeus_Stencil_CL','AttachedPart','UNDEFINED','3e3c7dd7-5fc2-4e4a-837c-244d3bc77e71','','',NULL), +(1445,'Yeager','QuantumDrive','UNDEFINED','903b3f33-f3de-412f-8804-19090436c525','','','Item Type: Quantum Drive\nManufacturer: Wei-Tek\nSize: 2\nGrade: B\nClass: Military\n\nWhether you’re rushing to the rescue or simply patrolling through a sector, the Yeager quantum drive from Wei-Tek allows for greater performance when you need it most.'), +(1446,'Book','Misc','UNDEFINED','ebe5bd25-9c94-480b-aad6-2e140735efca','','',NULL), +(1447,'Foundation Festival Hat Grey','Char_Clothing_Hat','UNDEFINED','542fea35-ae07-451c-94cb-b658fbd7c728','','','Celebrate the nations of Earth joining together to explore the stars with this special Foundation Festival hat featuring the logo across the front panel.'), +(1448,'Carryable_1H_kitchenware_Square_fryingpan_a','Misc','UNDEFINED','543a2412-8cb1-4edc-b08b-d4c0aeb1ef73','','',NULL), +(1449,'Oven','Cargo','UNDEFINED','5c43ef96-5b2b-48d7-9801-222d36cf29e4','','',NULL), +(1450,'AEGS_Sabre_Thruster_Mav_Up','ManneuverThruster','JointThruster','ab469303-43fa-42a2-8c75-afac60cb0331','','',NULL), +(1451,'Flood','QuantumDrive','UNDEFINED','692899e0-b637-40a4-803d-88c43f40d746','','','Item Type: Quantum Drive\nManufacturer: ArcCorp \nSize: 1\nGrade: D\nClass: Civilian\n\nExperience the true joy of the journey with the Flood. This small quantum drive from ArcCorp has been a staple around the Empire for years.'), +(1452,'Railing_Straight_4m_LowTech_Util_Stairs_04x01_b','Usable','UNDEFINED','0c1c6895-7167-458a-b1f5-ce3211bbc3b4','','',NULL), +(1453,'display_components_pallet_125x125x025_power','ShopDisplay','UNDEFINED','26753906-77bd-4d50-90c8-2936db39bca3','','',NULL), +(1454,'Door Control','Door','UNDEFINED','6f3b4829-e769-4741-9751-e6a34e72521f','','',NULL), +(1455,'Personal Storage','Cargo','UNDEFINED','3c3f551a-8073-4506-bac4-2fabfbd76025','','',NULL), +(1456,'Kamar Jacket Light Blue','Char_Clothing_Torso_1','UNDEFINED','f258f27c-84ea-431f-b111-b1c783132702','','','Carrying Capacity: 1K µSCU\n\nThe Kamar is a modern update on a classic style featuring a truly unique design and silhouette. Centered around an ultra-soft velvet front panel, it features a fitted collar, wide pleated waistband, and bishop sleeves cinched by extra long cuffs. The result is a formal top that\'s bold yet timeless.'), +(1457,'Seat','Usable','UNDEFINED','c423dead-d772-45f9-bd0e-51e015b52a6a','','',NULL), +(1458,'300 Series Solar Flare Paint','Paints','UNDEFINED','cbb36eab-f990-4cac-859f-d5e6e432232a','','','Solar Flare paint job for the Origin 350r.'), +(1459,'Flight Blade','FlightController','UNDEFINED','484b6836-8d79-d97e-0ec0-bcc97c379eab','','',NULL), +(1460,'Lindinium (Ore)','Cargo','Cargo','3018cca7-662b-4674-8be5-a6223db3e8df','','',NULL), +(1461,'RAFT Crusader Livery','Paints','UNDEFINED','851436c4-faf2-458d-8d0e-c05a1a2216a6','','','The Crusader livery for the RAFT features the company\'s logo atop a light blue base paint with black and white highlights.'), +(1462,'ANVL_Paladin_Thruster_Mav_Bottom','ManneuverThruster','UNDEFINED','986ba73e-6d67-4638-9d16-7179fe9eea50','','',NULL), +(1463,'IndVest Jacket Violet','Char_Clothing_Torso_1','UNDEFINED','b750c334-dde8-4deb-9d6b-7a418fcbf58f','','','Carrying Capacity: 5K µSCU\n\nKeep your tools within easy reach with Stegman\'s IndVest. Made from industrial strength materials, this is a rare jacket that\'s both stylish and sensible.'), +(1464,'Venture Core Grey','Armor','Torso','9c6480c7-637f-4387-a7e9-ecfc0b366ee4','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(1465,'Door Control','ControlPanel','DoorPart','e3b9abff-f070-4969-89e8-4287fa8e3c6a','','',NULL), +(1466,'PAB-1 Arms Sakura Sun Edition','Armor','Arms','22ac3ff5-1059-40ff-90f3-e36b41564ab8','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile. The Sakura Sun Edition was made specifically for the company.'), +(1467,'Remote Turret','Turret','GunTurret','7162e665-a770-4457-95d2-aed5202a1595','','','Remote Turret'), +(1468,'Manned Turret','UtilityTurret','MannedTurret','6bcab1e9-c460-4771-b17b-e78382d6437c','','',NULL), +(1469,'Carnifex Armor Legs Shutdown','Armor','Legs','4c3dbccc-2a42-48d2-89e1-f19635e4650d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -5 / 35 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nThis homemade armor provides a marginal amount of protection but maximum attitude. It\'s aggressively styled with skulls and other intimidating accessories associated with those living on the edge. Wearing such a distinct look may either keep people away... or draw them to you.\n\nThe Shutdown version features black and gray coloring with dark metal accents.'), +(1470,'AcryliPlex Composite','Cargo','Small','b29bfd7b-0efe-4915-bd7a-6b1216011b06','','','This composite is a moldable material used in the construction of explosives. In addition to being commonly used in demolition applications for heavy industry and mining, it is also used to create small potent warheads. Care must be taken while transporting larger quantities of the composite as it is impact and heat sensitive.'), +(1471,'CBH-3 Helmet White','Armor','Helmet','b3417970-c0e5-48fa-b568-4d070da3995d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. Visor is AR crosshair compatible.'), +(1472,'Seat','Usable','UNDEFINED','8b515f9a-5ad5-431e-a46a-5020dcbd444a','','',NULL), +(1473,'Kavir Pants Olive','Char_Clothing_Legs','UNDEFINED','89b497f7-3228-4c5e-95ed-f87d0e880dbd','','','Carrying Capacity: 0.4K µSCU\n\nBlending Habidash style and ingenuity, the Kavir pants feature fashionable flourishes alongside practical perks ideal for managing extreme environments. Several fabric pieces are sewn directly into a thick, integrated belt that divides the pants between a large elastic waistband and looser, breathable cotton blend fabric through the legs. There are also two bands of fabric that ring the shins to keep dirt and other elements out.'), +(1474,'VNCL_Glaive_Thruster_side_right','ManneuverThruster','FixedThruster','aade303d-fa93-42c7-971f-8cae6542b508','','',NULL), +(1475,'Torrent II Module','MiningModifier','Gun','c9944e4b-d911-4f92-9840-1a078659b123','','','Manufacturer: Thermyte Concern\nItem Type: Mining Module (Passive)\n\nOptimal Charge Rate: +35%\n\nOptimal Charge Window Size: -3%\n\nSave time while mining with the Torrent II Module. It requires steady hands to hit the sweet spot but accelerates the charge rate once there.'), +(1476,'Seat','SeatAccess','UNDEFINED','944b3374-1760-4382-b391-d097d0eef3fc','','',NULL), +(1477,'IFR-532 Missile Rack','MissileLauncher','MissileRack','a03671cd-d2be-4822-b971-d98be38b11ba','','','Item Type: Missile Rack\nManufacturer: Aegis Dynamics\nSize: 5\nMissiles: 3x32\n\nDesigned to bolster the offensive capabilities of the Idris, this missile rack was made by Aegis Dynamics specifically for the famed frigate.'), +(1478,'Levski_SCItem_Seat_ATC','Seat','UNDEFINED','60ba9469-407d-4f17-bb9c-6e3497668120','','',NULL), +(1479,'Uncut SLAM','Cargo','Cargo','46fd10d9-4a23-4935-ad93-a2c1ffd51262','','',NULL), +(1480,'Door Control','Door','UNDEFINED','6fab084e-57da-4bb7-9bb9-fa13c6ca80cd','','',NULL), +(1481,'Seat','Usable','UNDEFINED','89046b67-a62e-41f3-b072-0cc6cde60e20','','',NULL), +(1482,'Copper','Cargo','Cargo','51dc91e9-1575-4e62-ae14-3394eba9dd2b','','',NULL), +(1483,'Testudo Backpack Clanguard','Armor','Backpack','a5327582-23fb-43db-a5ec-f3961e1761a3','','','Item Type: Medium Backpack\nCarrying Capacity: 105K µSCU\nCore Compatibility: Medium & Heavy\n\nThe Testudo backpack may feel as light as a feather in your hands, but it can hold an impressive amount of weight thanks to its use of the same tough yet lightweight plating as the armor set. The Clanguard version has been modified with Vanduul materials and alien artifacts.'), +(1484,'Door Control','Door','UNDEFINED','ae0a3f13-e088-4f3f-aeec-8627cc9fdfcd','','',NULL), +(1485,'Prospector Nebula Livery','Paints','UNDEFINED','d20a54f0-aa98-4e1f-876d-502368484eb7','','','Balancing black and white, the Nebula livery for the Prospector lets you blast rocks in style.'), +(1486,'Boreal Quasi Grazer Egg','Misc','Harvestable','752524b3-2e18-4046-87f5-bff3f6877b87','','','A gourmet egg that is renowned for its complex flavor, it is always in demand from restauranteurs and gourmands alike. The flavor of the egg can vary depending on diet and environment. After the eggs are laid, their shells chemically bond to specialized pouches located on the Quasi grazer\'s belly, where they are carried until they hatch.'), +(1487,'customizer_jacket','Char_Clothing_Torso_1','UNDEFINED','39fcc53b-eadc-4642-b7cb-76ed9c80ec6f','','','@LOC_PLACEHOLDER'), +(1488,'Silverton Pants Sage','Char_Clothing_Legs','UNDEFINED','09d1e163-9466-4415-aebf-877eaf274cfa','','','Carrying Capacity: 1K µSCU\n\nMade with a sturdy blend of tough and flexible materials, the Silverton pants are the perfect fit for someone who needs heavy-duty workwear without sacrificing mobility. Got a job to do? We\'ve got you covered.'), +(1489,'R97 Shotgun Magazine (18 cap)','WeaponAttachment','Magazine','b4ef17b2-60b9-4617-a6a4-60dd053a9e73','','','Item Type: Magazine\nCapacity: 18\n\nThis magazine for the Gemini R97 ballistic shotgun comes pre-loaded with eighteen 12-gauge shells.'), +(1490,'ORIG_125a_Intake','Misc','UNDEFINED','83dffc1e-2dc0-4fec-8f49-8e59be5faade','','',NULL), +(1491,'Weapon_Rack_Cz_006','Usable','UNDEFINED','5c341f2c-8f48-443a-a74c-d1d225856500','','',NULL), +(1492,'Door Control','ControlPanel','DoorPart','5dbbe2f4-6b8a-4b26-bd2b-bb9b463dafa9','','',NULL), +(1493,'ATLS Nightshift Livery','Paints','UNDEFINED','9da647d2-6461-4c53-aa47-7128d175e984','','','Featuring a diffuse blue, subtle reds, and black accents, the Nightshift livery shows that style goes hand in hand with strength.'), +(1494,'SHIELDS','ShieldController','UNDEFINED','44e0a249-81a8-40c7-85f0-70d3b14a6896','','',NULL), +(1495,'Internal Tank','QuantumFuelTank','QuantumFuel','2fbe2f78-6d3f-4e02-95b1-e2d2cdcca39a','','',NULL), +(1496,'Radar_Display_RSI_Perseus_Turret','Display','UNDEFINED','3ea54e38-a84c-4aa7-8213-a3e9c8fe2a4d','','',NULL), +(1497,'Intrepid Altair Livery','Paints','UNDEFINED','79928bfa-b375-4442-a9ec-80d0c8cc8b8b','','','The Altair livery is primarily a crisp white with black and red highlights.'), +(1498,'Testudo Backpack','Armor','Backpack','7176bf25-ae7d-45d7-b99b-7974d3e8b599','','','Item Type: Medium Backpack\nCarrying Capacity: 105K µSCU\nCore Compatibility: Medium & Heavy\n\nThe Testudo backpack may feel as light as a feather in your hands, but it can hold an impressive amount of weight thanks to its use of the same tough yet lightweight plating as the armor set.'), +(1499,'Ermer Family Farms Chocolate Milk','Drink','Bottle','451f6eb0-987a-4873-a552-dedbbdd54367','','','HEI: 30\nNDR: 09\nEffects: Energizing, Hyper-Metabolic\n\nThis premium 100% real dairy milk blended with rich chocolate is bottled fresh at Ermer Family Farms.'), +(1500,'Vulture Carnival Livery','Paints','UNDEFINED','23b81875-0c0d-44c2-a4cd-d0b1dba85380','','','A working salvage crew needs any advantage they can get to be noticed in a busy environment. Enter the Carnival livery, a stunning pink hull with black highlights and distinctive stripes running down the ship\'s arms.'), +(1501,'Constellation Dark Green Livery','Paints','UNDEFINED','fa6aa876-d5e1-46e8-9f10-543243ccbccc','','','Customize your Constellation with this stunning green livery.'), +(1502,'MacFlex Core Yellow','Armor','Torso','e926621d-ef2b-4870-ad67-14cdbfca13b7','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(1503,'Weapon_Rack_1_GMNI_Shotgun_Common_001','Usable','UNDEFINED','a670ae88-ecd1-4184-b821-bf844a69d61a','','',NULL), +(1504,'CSV Granite Livery','Paints','UNDEFINED','4dbb8423-0e23-46c3-bf69-85cf9201c751','','','A heavy workload deserves a livery that means business. Outfit your Argo CSV with the dark grey Granite livery and show the \'verse you\'re ready to get the job done.'), +(1505,'Conqueror-7','Weapon','Gun','1c5cb632-fe64-42a4-9a4e-86147a4dcd74','','','Item Type: Ballistic Cannon Turret\nManufacturer: Hurston Dynamics\nSize: 7\n\nBring your conquest to the skies using Hurston Dynamics\' Conqueror-7 ballistic cannon. Bespoke built for the Aegis Idris dorsal turret, these cannons are able to engage larger ships from a distance, finishing fights before they even begin.'), +(1506,'TRGT. STATUS','Seat','UNDEFINED','5e74082f-07b5-45cc-8a30-82e891444ff7','','',NULL), +(1507,'Bed','Usable','UNDEFINED','13fd2011-b410-44eb-8c80-f507c9a73ebc','','',NULL), +(1508,'CSP-68H Backpack Red Alert','Armor','Backpack','7928692a-2a2f-4649-96bb-75bf772a163b','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nBe ready for any situation with the CSP-68H Backpack. Originally designed for the rigors of combat support, this heavy backpack has become popular thanks to its durability and a patented core connector that helps the CSP-68H sit comfortably and balanced on the back.'), +(1509,'ARMR_ANVL_Lightning_F8','Armor','Medium','85e284ec-96ea-4de7-930a-2db6099585b3','','',NULL), +(1510,'Lynx Legs Purple','Armor','Legs','bebdb237-80b4-4eb1-9f0d-9fc332b6b538','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(1511,'rack_food_2_stand_b','ShopDisplay','Default','5c3c1d40-1ee3-4320-8a83-f41191f673cf','','',NULL), +(1512,'Mandible Snowfly Helmet','Armor','Helmet','8f5262ca-06e0-4eee-893a-457c6bc0c260','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow that you\'re ready to \'bug out\' with the exclusive Mandible helmet from Sakura Sun. Lightweight plating provides protection while metal fangs protrude from the front for an intimidating insectoid shape that walks the line between fun and frightening.'), +(1513,'Door Control','Door','UNDEFINED','d71b9478-8ff3-4867-91d8-16ba2c7773e4','','',NULL), +(1514,'Perseus Thundercloud Livery','Paints','UNDEFINED','6f0ca3c8-9f2f-4960-b758-f43ee1706f71','','','Restyle your Perseus with a dazzle camouflage inspired paint scheme using various abstract patterns and shades of black, grey, and white.'), +(1515,'Weapon Rack','Door','UNDEFINED','d0ee4854-10cb-423a-9639-750c384e2b4c','','',NULL), +(1516,'Aztalan Tamarack Helmet','Armor','Helmet','100ebcc3-6792-4d83-89d6-0ae4b42f4963','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -32 / 64 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFear no frontier while wearing the Aztalan armor. This mixture of armor plating and reinforced fabrics will keep you safe yet swift on your feet. Tehachapi\'s masterful design gives the armor a subtle yet unmistakable frontier style that also providing ample storage. Suitable for everything from sand dunes to bustling backstreets, the Aztalan is the ideal choice for your next adventure. Visor is AR crosshair compatible.'), +(1517,'V801-12','Radar','MidRangeRadar','69b8ba78-889f-4547-97eb-1d477002fedc','','','Item Type: Radar\nManufacturer: GNP\nSize: 2\nGrade: A\nClass: Military\n\nDuring field operations, the GNP V801-12 radar system allows for increased strategic planning owing to its capability for detecting a wide variety of emission signatures, revealing hazards and hostiles alike.'), +(1518,'Seat','Usable','UNDEFINED','de9c9901-3146-4c5c-b1e4-9411d4dd5955','','',NULL), +(1519,'Seat','Usable','UNDEFINED','9ebb991c-6bcd-4652-8a0d-b78b3fd2c042','','',NULL), +(1520,'Pressurized Ice','Cargo','Cargo','04915f7f-acfc-4d16-bf0a-42268f5bfa61','','',NULL), +(1521,'ORIG_X1_Thruster_Main','MainThruster','FixedThruster','cdd71a1d-ec5f-4478-b893-c7e2162effe3','','',NULL), +(1522,'DockingTube_Fuel_Ports_CRUS_Starrunner','DockingCollar','UNDEFINED','719278c7-24ee-4366-905e-fa454fd6aa06','','',NULL), +(1523,'ORC-mkX Arms (Modified)','Armor','Arms','be1cbd86-b611-46a8-b055-217484c95e59','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThis version of CDS\' ORC-mkX arms has been modified from its original form. The mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(1524,'MISC_Freelancer_CargoGrid_Rear','CargoGrid','UNDEFINED','5374489e-75d0-4005-b960-82b5c2cd3ff8','','',NULL), +(1525,'RSI_Zeus_Stencil_ES','AttachedPart','UNDEFINED','601c2629-7a99-4fd8-93f1-11e6b8c6d4fc','','',NULL), +(1526,'Door Control','Door','UNDEFINED','c2f1fc1c-1cc8-4a8b-a1de-6d6c5002111e','','',NULL), +(1527,'Controller_Mining','MiningController','UNDEFINED','ac3e1554-19ca-4421-9155-92c2c5f155e8','','',NULL), +(1528,'Access','SeatAccess','UNDEFINED','77ff37c9-4ed4-451f-98f9-e6c3acf6ce86','','',NULL), +(1529,'Feynmaline','Misc','Harvestable','d7a21cac-3c2b-4695-95b7-2042d8f5755e','','','The paramorphic crystalline structure of this mineral is extremely volatile. When extra energy is introduced, as is typical with modern mining, the ore will often explosively degrade into the more stably structured Janalite. This instability makes Feynamline very dangerous to acquire but also extremely valuable as an industrial anti-matter precursor if it can be properly harvested.'), +(1530,'Weapon_Rack_2_Slots_RSI_Polaris_DisplayCase','Usable','UNDEFINED','80d69770-4720-44f4-8618-d80c69fa70f6','','',NULL), +(1531,'SHIELDS','ShieldController','UNDEFINED','ebfd51a7-ffa7-45e8-b569-2b9516d33653','','',NULL), +(1532,'Starfarer Light Grey Livery','Paints','UNDEFINED','43e5e450-57ff-4eff-8a1f-818d1553086b','','','Customize your Starfarer with this light grey livery.'), +(1533,'Prism \"ArcCorp\" Laser Shotgun','Weapon','Medium','f0ea7fd5-ad93-4ac7-9c63-66399bc3110f','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Shotgun\nClass: Energy (Laser)\n\nBattery Size: 10\nRate of Fire: 120 rpm\nEffective Range: 10m\n\nAttachments: Barrel (S3), Optics (S1), Underbarrel (S2)\n\nFiring powerful shortrange bursts of energy, engineers at Verified Offworld Laser Technologies have developed the Prism laser shotgun so that as the weapon\'s heat-levels rise, the pellets begin fusing together into slug-like projectiles that inflict higher damage on targets. This special edition features ArcCorp branding.'), +(1534,'Seat','Usable','UNDEFINED','ee8367b0-a277-4cf4-aebb-97ca35ea28fc','','',NULL), +(1535,'DCP Armor Legs Cobalt Camo','Armor','Legs','a86d001d-64e0-4d48-9db3-ed779bd7bfe7','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(1536,'Vehicle_Screen_MFD_Holographic_STY_L','Display','UNDEFINED','53dd4ee1-3e3c-4238-bb05-e65656f2b242','','',NULL), +(1537,'Default_LandingSystem','LandingSystem','UNDEFINED','613bf1ef-7882-4e8a-9017-35e9e1af0687','','',NULL), +(1538,'AEGS_Idris_SCItem_Seat_Captain','Seat','UNDEFINED','f7edc1f0-20b7-47df-94ea-b44809a041a0','','',NULL), +(1539,'Tulsi Jacket Ebony','Char_Clothing_Torso_1','UNDEFINED','23344164-4556-4fec-9b2e-00e2a83b58be','','','Carrying Capacity: 1K µSCU\n\nThis Tulsi jacket features an outer shell designed to cut down on wind shear and an inner shell made to retain warmth without sacrificing comfort. For ease of use, it also features an gentle-glide zipper with a secure top stop and roomy pockets that guarantee you\'ll always have what you need on hand.'), +(1540,'Seat','Usable','UNDEFINED','fd44d211-827a-48c5-8574-5f5ab7c23c4e','','',NULL), +(1541,'Personal Storage','Cargo','UNDEFINED','6738223a-c585-4ad7-aeb9-f20636d2ead8','','',NULL), +(1542,'ARGO_MPUV_1T_Thruster_Aux_Side_Rear','ManneuverThruster','FixedThruster','7db0ca0b-a85d-4455-9b0e-5dbb17b6ec7b','','',NULL), +(1543,'BoostPen Xtra','FPS_Consumable','Medical','b1b015dd-2ecb-4988-8cc3-9702914e246d','','','Manufacturer: CureLife\nItem Type: Medical Consumable\n\nFrom the Empire’s most trusted medical company, the CureLife BoostPen Xtra delivers a high dose of the potent stimulant Modamphetamine to greatly increase wakefulness and diminish awareness of pain in emergency situations.'), +(1544,'Orbital_Sentry_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','51d9a1ef-14b4-4da7-b3f4-78b6dbfaf281','','',NULL), +(1545,'Door Control','Door','UNDEFINED','4cfad0a1-987e-4f97-a898-0ae578edc2ac','','',NULL), +(1546,'Seat','SeatAccess','UNDEFINED','7d1d56c8-504e-45c1-9f86-93a0c997ad0a','','',NULL), +(1547,'DRAK_Cutlass_Thruster_Maneuver_Right','ManneuverThruster','JointThruster','92c6fc6a-d66e-47fd-b5af-cf19e0d77b3f','','',NULL), +(1548,'Aponte Explorer Goggles','Char_Accessory_Eyes','UNDEFINED','66b88d76-b20f-4880-9f98-11835398af3e','','','Outfitted with Rambler\'s scratch resistant lenses, the Aponte Explorer goggles provides a clear view of the path ahead. Their wraparound design keeps dirt and debris away while on windy plains, but still look stylish enough to wear when walking through bustling city streets.'), +(1549,'Eclipse Meridian Livery','Paints','UNDEFINED','fbbf5ded-3068-419b-ad25-adc5bf94910a','','','The Meridian livery gives the Eclipse a simple yet stylish metallic silver finish.'), +(1550,'ANVL_Door_Decal_Carrack_Deck1_Small','Decal','DoorPart','81c2b748-0a94-493d-b1d9-455bff4760a5','','',NULL), +(1551,'CRUS_Star_Runner_Secret_Engineering_Panel','Player','UNDEFINED','91fd5f70-447b-4b62-9d07-f0a2b2e6cc95','','',NULL), +(1552,'TRGT. STATUS','Seat','UNDEFINED','57ae1d22-766d-49c4-8693-dd3b3b1f759b','','',NULL), +(1553,'PAB-1 Arms Orange','Armor','Arms','f96b59a9-6670-48b0-b51b-5894d40f0bbf','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(1554,'MISC Hat Blue and White','Char_Clothing_Hat','UNDEFINED','79741092-6bee-4e89-9b10-6f3decf616d0','','','This blue and white cadet hat features a minimalistic version of MISC\'s logo on the front.'), +(1555,'Red QuikFlarePro','Weapon','Grenade','edbaa6ec-c3f3-45ec-b68d-8ab827dd08dc','','','Manufacturer: Shubin Interstellar\n\nIlluminate the way forward or signal for help with the Red QuikFlarePro from Shubin Interstellar. For centuries, miners have counted on this flare as part of their core toolkit, thanks to its tried and true design and durability that ensures it stays ablaze in the various harsh weather and difficult atmospheric conditions encountered across the \'verse. The QuikFlarePro uses advanced tech to glow longer than regular flares.'), +(1556,'The Butcher Helmet','Armor','Helmet','57637d2b-a480-4c22-8fd8-f9964f0c9088','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nBe the reaper with this terrifying battle helmet molded after some kind of animal. We aren\'t a vet, it just looked cool. All we know is that it\'ll withstand some serious punishment and look bad ass doing it. Visor is AR crosshair compatible.'), +(1557,'SHIELDS','ShieldController','UNDEFINED','3c1c69e3-b3e7-4dd7-899b-fc450e4d41cc','','',NULL), +(1558,'tool_manual_1_screwdriver_a','Misc','UNDEFINED','e7753e7c-c192-4df0-852e-7003508eedb5','','',NULL), +(1559,'AEGS_Reclaimer_Thruster_Mav_Fixed_Bottom','ManneuverThruster','FixedThruster','e46991ad-6d7c-4f98-9be1-0165bd41f84f','','',NULL), +(1560,'Paint_Cutter_Black_Silver_Stripe','Paints','UNDEFINED','478afd37-2f19-42ee-b90e-df04aa57723f','','',NULL), +(1561,'Xa\'Pyen','Cargo','Cargo','56165c93-2aa7-4cf9-b4b5-3dcf54249300','','',NULL), +(1562,'ORC-mkV Core microTech Edition','Armor','Torso','18f560ef-cf68-439b-9eec-4d9167268417','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement. The microTech Edition was made specifically for the company\'s security services.'), +(1563,'Devastator \"Nightstalker\" Shotgun','Weapon','Medium','991d151a-4c5d-4976-acd4-228fdc36a4a3','','','Manufacturer: Kastak Arms\nItem Type: Shotgun\nClass: Energy (Plasma)\n\nBattery Size: 12\nRate Of Fire: 60 rpm\nEffective Range: 20 m\n\nAttachments: Optics (S1), Barrel (S3), Underbarrel (S2)\n\nKastak Arms’ Devastator is a pump-action plasma shotgun capable of delivering sustained medium range, high-impact plasma blasts for close combat, room clearances and other combat operations. If the situation requires a high-power presence, look no further than the Devastator.'), +(1564,'Seat','Usable','UNDEFINED','1bd2e480-6efc-4e64-83a4-795003f89762','','',NULL), +(1565,'DRAK_Herald_Thruster_Retro','ManneuverThruster','FixedThruster','2cfe6a9b-eeec-42db-8c28-f6d32aabfbf3','','',NULL), +(1566,'VNCL_Scythe_Thruster_Aux_Fixed','ManneuverThruster','FixedThruster','4d84caf7-baf8-4bda-a03a-4a47a4aef7ed','','',NULL), +(1567,'ORIG_X1_Velocity_Fins','Misc','UNDEFINED','954cd129-1eb7-425f-b5bc-5a1a569e7b04','','',NULL), +(1568,'Laranite (Raw)','Cargo','Cargo','8d366f28-9702-4fea-a40f-17af0f4f5a74','','',NULL), +(1569,'Constellation Hurston Livery','Paints','UNDEFINED','46fc9ff1-2acd-43b9-8736-cd598e5aa2dc','','','The Hurston livery for the Constellation features the company\'s logo atop a grey base paint with yellow highlights.'), +(1570,'H_Dashboard_Projector_HUD_XNAA_SanTokYai','Display','UNDEFINED','033f66fd-0f5f-420f-993b-f300b2d8f62e','','',NULL), +(1571,'Tempus Tank Dark Umber','Char_Clothing_Torso_0','UNDEFINED','573b1907-e52f-4753-9286-ce66915a64d4','','','This classic tank by 987 is made with moisture-wicking fabric to keep you cool when you\'re at your most active. Each shirt comes with a bracer and a bandolier to create a bold and aggressive style.'), +(1572,'Counter_1m_tap','Usable','UNDEFINED','63816a03-c234-41d6-a73f-cf4195aaea3d','','',NULL), +(1573,'Hermes Pulsar Livery','Paints','UNDEFINED','fc023bee-13a3-439e-a0ea-809fdc9bd9ca','','','Primarily a brilliant purple offset by a vivid orange, the Pulsar livery blends these contrasting colors into an interstellar mix.'), +(1574,'Venture Arms Dark Green','Armor','Arms','fb1d8db1-57fe-4e9d-a33d-58f2141563af','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(1575,'stand_shop_small_b_Shield','ShopDisplay','UNDEFINED','6af750da-fbd8-42c4-a3ae-42c32a3c83ce','','',NULL), +(1576,'Door_Relay_ContestedZone','Door','UNDEFINED','d008ceca-95fd-4f05-8b49-e269dcbf0c22','','',NULL), +(1577,'Construction Materials','Cargo','Cargo','86aabf56-2b14-4ef4-833c-17ed02003426','','',NULL), +(1578,'SHIELDS','ShieldController','UNDEFINED','848c6818-cfb2-4734-83fa-6a050a6416b2','','',NULL), +(1579,'CRUS_Intrepid_Thruster_Mav_Bottom','ManneuverThruster','UNDEFINED','7a4d7866-1fec-434d-a155-0351a947c432','','',NULL), +(1580,'counter_display_mod_center_b_01x01x01_05Ports','ShopDisplay','UNDEFINED','8e68cc8c-55f5-47ab-a209-98a064764956','','',NULL), +(1581,'Seat','Usable','UNDEFINED','602815ea-9b49-4ead-b71b-f8d2324923d3','','',NULL), +(1582,'SparkJet','PowerPlant','Power','c245b408-006d-4b3a-8dc9-0dc5b26b672a','','','Item Type: Power Plant\nManufacturer: Lightning Power Ltd.\nSize: 2\nGrade: D\nClass: Civilian\n\nThe SparkJet is a basic power plant from Lighting Power Ltd. that strives to balance heat and EM emissions with overall performance and durability.'), +(1583,'Morozov-SH Legs Snowdrift','Armor','Legs','967d0beb-d88c-4b9f-8ad0-15a73b194486','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5K µSCU\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(1584,'Tona Shoes Aqua','Char_Clothing_Feet','UNDEFINED','688a401f-d39d-4eba-8db9-28fd81c646d5','','','Perfect for hiking or fieldwork, the Tona from R6 Pro is a low-top sneaker built out of breathable Cheofreme materials which not only provide extra protection against impacts, but keep your feet dry.'), +(1585,'Door','Door','UNDEFINED','1f05a4cd-cc0e-4fef-af9e-eeb5d70b50df','','',NULL), +(1586,'CitizenCon 2949 Trophy','Misc','UNDEFINED','8b22e117-2163-4682-a712-3069cdaf7c55','','','A commemorative trophy celebrating CitizenCon 2949. It features a holographic projection of the logo and the event\'s name and year engraved into its metal base.'), +(1587,'CitizenCon 2948 Special Edition Trophy','Misc','UNDEFINED','ab9943d9-acb9-4e38-b729-cb907c36ef9c','','','Citizencon 2948\'s trophy melds the physical and digital with a curvy red and grey base projects a rotating hologram of the event\'s logo above it.'), +(1588,'m_human_mannequin_legacy_outlaw_light','ShopDisplay','UNDEFINED','cae97620-5a43-478c-984e-a9ea2bb5593e','','',NULL), +(1589,'stand_shop_small_Shield','ShopDisplay','UNDEFINED','2bc1c29e-9f09-4e96-90d4-a9998b15176f','','',NULL), +(1590,'Tru Barrier Hazard Suit Cinnabar','Char_Clothing_Torso_1','UNDEFINED','1669abe8-5d5c-4a89-a747-e44f74f5fef6','','','Carrying Capacity: 1K µSCU\nTemp. Rating: -5 / 32 °C\n\nGuard yourself from toxic environmental hazards with the TruBarrier Hazard Suit, constructed from industrial-grade fabric and coated with a multi-layered, laminated polymer that offers a broad range of chemical protection without sacrificing mobility. The encapsulated design provides full-body protection from direct contact with dangerous materials when worn with its accompanying mask.'), +(1591,'Testudo Core Combustion','Armor','Torso','7824c3f1-40ce-47c3-9f8b-6775037479ef','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Medium, Light\n\nThe Testudo armor for Quirinus Tech blends battlefield durability with everyday comfort. It weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort.'), +(1592,'HighTechAirlockTerminalStatusScreen','StatusScreen','AirlockPart','be440291-fcee-4f7a-89f7-0a7d4b180005','','',NULL), +(1593,'AEGS_Javelin_SCItem_Seat_Bridge_Left_RemoteTurret','Seat','UNDEFINED','c4e28a35-af99-49ab-9a43-15d687ebb603','','',NULL), +(1594,'Personal Storage','Cargo','UNDEFINED','4de110e2-45b7-47fd-8b13-88381c7a385c','','',NULL), +(1595,'MRAI_Guardian_Thruster_Mav','ManneuverThruster','FixedThruster','0276b1e1-dbcb-464a-a07e-03e837564e6b','','',NULL), +(1596,'Ball','Char_Head_Piercings','UNDEFINED','f8ea3eed-8238-4e7b-b3f7-7fda1d4cdfe7','','',NULL), +(1597,'Astatine','Cargo','Cargo','f3a6a6c5-afce-40f7-90b6-392f31f09780','','',NULL), +(1598,'ORIG_400i_Thruster_Mav','ManneuverThruster','FlexThruster','bc608ab7-d70b-4d9e-b4e9-8261d92a5d3e','','',NULL), +(1599,'Arcus Gloves Gray','Char_Clothing_Hands','UNDEFINED','3f5fe236-be87-46a9-b06e-7110cdf9d303','','','Temp. Rating: -35 / 25 °C\n\nThe Arcus gloves are thin enough to wear on everyday excursions, yet capable of keeping your hands warm in frigid conditions. Textured touch fingertips even allow you to easily access your mobi and other touch screens without removing your gloves.'), +(1600,'Inquisitor Core Outcrop','Armor','Torso','fd9cf430-f6ca-4be6-bb4a-b62774811d16','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(1601,'Parallax Rifle Battery (80 Cap)','WeaponAttachment','Magazine','3efb1be1-8935-4124-8bf0-aec410297785','','','Item Type: Battery\nCapacity: 80\n\nThis battery for the Parallax Energy Assault Rifle holds enough energy for 80 shots.'), +(1602,'SHIELDS','ShieldController','UNDEFINED','5c9a0538-7358-48c6-9da9-abffcb6b999a','','',NULL), +(1603,'KRIG_l22_AlphaWolf_Thruster_Mav_Capsule_Bottom','ManneuverThruster','UNDEFINED','3a21217b-2960-4e8a-b0af-5e5a65b242a5','','',NULL), +(1604,'Coda Pistol Magazine (6 cap)','WeaponAttachment','Magazine','90b873da-1d15-48ba-86f5-f5633e958c33','','','Item Type: Magazine\nCapacity: 6\n\nThis magazine for the Kastak Arms Coda holds six .50 caliber rounds.'), +(1605,'AEGS_Sabre_Firebird_bombay_door_left_outer','Misc','UNDEFINED','e856ff3e-64e5-4c53-a1d8-f7522d6a1144','','',NULL), +(1606,'Amioshi Plague','Cargo','Cargo','87e82811-8dac-4f11-b004-ab61c1d0e593','','',NULL), +(1607,'Giotto Jacket Purple Pinstripe','Char_Clothing_Torso_1','UNDEFINED','72539b38-17d5-4f5f-982d-c476305e5a25','','','Carrying Capacity: 1K µSCU\n\nFiore elevates the typical suit jacket with the Giotto. Subtle and stylish flourishes include light lines running down the left lapel and a strip of accent fabric along the arm seams that connect across the back of the jacket. The end result is an elegant and inspired addition to any wardrobe.'), +(1608,'HoverQuad Slipstream Livery','Paints','UNDEFINED','f8a0e039-6968-4db7-a4bf-84ebe8a81c34','','','The Slipstream livery will have your HoverQuad ready and raring to race with this sleek blue and white paint scheme.'), +(1609,'Potassium','Cargo','Cargo','9887a967-f6ef-438b-8d85-f7abf4494325','','',NULL), +(1610,'ANVL_Hornet_F7CM_Thruster_Retro','ManneuverThruster','JointThruster','71c08ef8-888a-47a8-9c05-798e5728c727','','',NULL), +(1611,'Seat','Usable','UNDEFINED','c901f21f-60ea-472c-8e00-02b90ae42ec7','','',NULL), +(1612,'Morozov-SH Core Smokescreen','Armor','Torso','359a6ced-bf46-4867-9085-81f69e7080d1','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12K µSCU\nBackpacks: All\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(1613,'Stud','Char_Head_Piercings','UNDEFINED','abd041f7-35a8-4e77-a8c0-cc4239c8f690','','',NULL), +(1614,'SHIELDS','ShieldController','UNDEFINED','384db182-efaf-4d6c-8428-bbd98e2c5ff0','','',NULL), +(1615,'Book','Misc','UNDEFINED','360f883a-8191-4a95-b6f0-7bee275bd443','','',NULL), +(1616,'Bexalite (Raw)','Cargo','Cargo','26d871db-8acf-4d2e-b35c-8f35a82009a3','','',NULL), +(1617,'Microid Battle Suit Core Crucible','Armor','Torso','4ac16e03-fc5e-47df-90a2-2be0382140c4','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(1618,'Partillium','Cargo','Cargo','fb917ea5-b354-451a-a77b-9c14dc6c6987','','',NULL), +(1619,'Laranite','Cargo','Cargo','f221426e-13bb-4373-aa1f-84fdbb2dc363','','',NULL), +(1620,'MISC_Fortune_Thruster_Mav_Fixed_03','ManneuverThruster','FixedThruster','27e2d40b-64ca-4a8c-bed8-5e534fe1d88e','','',NULL), +(1621,'Stark Compensator2','WeaponAttachment','Barrel','cabb860f-f1f0-4477-90f6-39268ad74812','','','Manufacturer: ArmaMod\nType: Compensator\nAttachment Point: Barrel\nSize: 2\n\nAim Time: +7.5%\nSpread: +15%\nAim Recoil: -25%\nVisual Recoil: -35%\n\nThe Stark Compensator2 disperses energy more evenly from the gun barrel to counteract recoil, helping you stay sure and steady with every shot.'), +(1622,'VNCL_Gen2_PlasmaCannon_Ventilation_S2','WeaponAttachment','Ventilation','55ac180d-4478-4056-b5fc-6667e6a30416','','',NULL), +(1623,'MacFlex Arms Black','Armor','Arms','35912171-19b9-45d3-b1ea-c9e65764790b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(1624,'Silicon','Cargo','Cargo','078a30fc-1980-45c2-8b91-98068bad4cb8','','',NULL), +(1625,'Seat','Usable','UNDEFINED','a5f84df0-8e36-4421-b6a3-f17913400475','','',NULL), +(1626,'WeaponMount_Gun_S1_DRAK_Cutlass_Steel_Left','WeaponMount','WeaponControl','1ac2d0ab-61bf-4068-98f8-f19f3325dc71','','',NULL), +(1627,'TRGT. STATUS','Seat','UNDEFINED','5de89f7d-c5d2-4180-a482-a277ed5a0b64','','',NULL), +(1628,'Pitambu','Misc','Harvestable','60deb833-f312-4d9d-bcac-247de330384f','','','NDR: 25\nHEI: 10\nEffects: Hydrating, Hypo-Metabolic, Immune Boosting\n\nThe skin of the pitambu is thin and waxy and easily peeled away using its green leaf-like growths. Inside is a is crisp and watery, bright red flesh which is filled with tiny white seeds that have a mild, nutty taste. The flesh and seeds are traditionally consumed together.'), +(1629,'Winter-Star SL','Cooler','UNDEFINED','26f6ac67-8c44-4160-8be2-d64d07d3ec3a','','','Item Type: Cooler\nManufacturer: J-Span\nSize: 0\nGrade: D \nClass: Civilian\n\nThe latest in J-Span’s Winter-Star line of coolers, the SL’s new Kivo system offers a unique dispersal method, allowing your vehicle to manage heat better than ever before.'), +(1630,'Quantum Fuel Tank','QuantumFuelTank','QuantumFuel','af715620-f1fb-4723-a01d-d3b2fea1a7e2','','','Quantum Fuel Tank'), +(1631,'Dashboard','SeatDashboard','UNDEFINED','c10347f2-7954-43f5-bef2-024edfff521d','','',NULL), +(1632,'Carinite (Pure)','Cargo','Cargo','10e3cbb7-6fe9-43e3-8b1c-0a0116429e0a','','','Typical carinite sources feature various impurities. However, under certain extremely rare conditions, carinite veins that are more than 90% pure can form. Computing hardware that demands exacting precision will usually seek out pure carinite.'), +(1633,'Morozov-SH-I Helmet Lifeforce','Armor','Helmet','6c3355b2-0053-489f-967b-3ca98b0481fe','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing the same fortified armor plating, special anti-rip protective padding and ample storage, as the Morozov SH, the SH-I industrial variant was designed by RRS to protect workers employed in hostile zones while ensuring they had the full range of motion required to perform their duties. The Lifeforce edition was designed with first responders in mind with a highly visible white, red, and grey color scheme. Visor is AR crosshair compatible.'), +(1634,'RSI_Constellation_Andromeda_Thruster_Turbine_Rear','ManneuverThruster','JointThruster','27b07cc6-887a-4d35-bcf6-03fd6fafd9d0','','',NULL), +(1635,'Door','Door','UNDEFINED','4e05a6f8-35de-4bb6-88e5-d5bae6be028a','','',NULL), +(1636,'ANVL_Door_Decal_Carrack_EVA','Decal','DoorPart','4d003245-aaf1-48ad-917e-7c7a2876c898','','',NULL), +(1637,'INTK_DRAK_Dragonfly','FuelIntake','Fuel','94844d6a-6f31-4b00-9fc3-bd158809faee','','',NULL), +(1638,'Personal Storage','Cargo','UNDEFINED','e2763fe9-49b3-4d47-ba49-b943051ecfb7','','',NULL), +(1639,'Intergalactic Aerospace Expo T-Shirt','Char_Clothing_Torso_0','UNDEFINED','d6a2e5f5-c390-4399-ae1a-85997e018029','','','The logo for the Intergalactic Aerospace Expo graces this magenta shirt made from 100% cotton.'), +(1640,'test_aimodule','AIModule','UNDEFINED','d61c9df9-b19f-4798-961a-3070488671e3','','',NULL), +(1641,'Scorpius Sunburn Livery','Paints','UNDEFINED','59e7bafb-b82a-4e5b-885d-ae18aa4e2efd','','','A ship designed to be a daring dogfighter deserves an equally audacious look. The Scorpius Sunburn livery is primarily white with a dynamic mix of orange and black highlights.'), +(1642,'LFSP_Filter_subItem_standard','Misc','Utility','b44ec4bd-854d-48ef-9ac1-c4183edf1d0a','','',NULL), +(1643,'Voyage','QuantumDrive','UNDEFINED','0d1169c1-65e4-4ee0-bb1a-f967ab0f3c45','','','Item Type: Quantum Drive\nManufacturer: Tarsus\nSize: 1\nGrade: B\nClass: Civilian\n\nCrafted by passionate people who have been leading the way in space exploration and travel for over six centuries, the Voyage by Tarsus is a quantum drive worthy of your next expedition.'), +(1644,'Xa\'Pyen','Cargo','Cargo','b3ed5903-e856-4e3f-bcb5-f8f842b3ffc8','','',NULL), +(1645,'ForceFlex Undersuit Black/Yellow','Armor','Undersuit','715533b9-cc69-4a8e-b8e8-70b5252ccac0','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nVirgil\'s ForceFlex is the next generation in undersuit technology. Rated for combat as well as industrial work, you can rest assured that the comboweave will keep you protected in whatever situation you put it through.'), +(1646,'DockingTube_Fuel_Ports_AEGS_Hammerhead','DockingCollar','UNDEFINED','bafcee7f-426e-4201-b390-f55a66090e99','','',NULL), +(1647,'Okunis','Gadget','Gadget','715a41ad-b297-44fa-b792-8561687e5220','','','Manufacturer: Shubin Interstellar\nItem Type: Mining Gadget\n\nOptimal Charge Window Size: +50%\nOptimal Charge Window Rate: +100%\n\nCluster Modifier: -20%\n\nIncrease the size and fill speed of the optimal charge window with the Okunis. While this powerful gadget makes it easier to work a deposit, some valuable resource will be lost when it shatters. \n\nManufacturer Warning! Using more than one mining gadget per deposit can result in a catastrophic explosion.'), +(1648,'ORC-mkV Core Green','Armor','Torso','ebd4d90b-c276-4d7e-9bf0-99741e3a71af','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(1649,'Edgewear Pants Violet','Char_Clothing_Legs','UNDEFINED','7472c418-104b-4ef3-8cf7-f6541e6e8efe','','','Carrying Capacity: 4K µSCU\n\nStegman\'s Edgewear utility clothes are made from reinforced nylon weaves and lined with temperature-rated quilted technology to provide you with a little extra protection while on the jobsite. Double knees, reinforced joint pads and extra pockets add comfort and durability to this field-tested and worker-approved clothing line.'), +(1650,'Anvil Decoy Launcher','WeaponDefensive','CountermeasureLauncher','74fc329a-8a30-41e9-8669-bd0d2f19f1f5','','','Anvil Decoy Launcher'), +(1651,'Landlite Boots Purple','Char_Clothing_Feet','UNDEFINED','20aa1ed2-f97c-48b4-96d6-8e7566a76922','','','Who says work boots can\'t be comfortable? Grindstone\'s Landlite boots are built with a breathable synth-leather material to keep your feet dry, a contoured, memory footbed, and a slip-resistant outsole, making it perfect for whatever worksite you throw at it.'), +(1652,'Molina Mold Treatment','Cargo','Cargo','ac5f042f-935a-43bc-9af4-1d4230f9765c','','','A lifesaving treatment for those suffering from exposure to Molina Mold.'), +(1653,'Body','Char_Clothing_Legs','Medical','52a0aa86-d0ff-43a2-990d-c6c651f7e7f6','','',NULL), +(1654,'Zeus MK II Purple Haze Livery','Paints','UNDEFINED','e7eee612-ee83-4a90-be4c-c587f915d2b3','','','Celebrate Day of the Vara in style with the Purple Haze livery, featuring a glimmering metallic purple base paint splattered in green.'), +(1655,'Ketchum Beanie Imperial','Char_Clothing_Hat','UNDEFINED','f993309d-6a69-4d7e-bd9e-cee0b93b1243','','','Complete your cool-weather wardrobe with the classic Ketchum beanie from Alejo Brothers.'), +(1656,'Door Control','Door','UNDEFINED','059fbed4-ed34-44a5-923b-d7376fd8b949','','',NULL), +(1657,'Microid Battle Suit Core Nomad','Armor','Torso','dec295e8-c174-4c27-b6a6-2c035395e1a2','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(1658,'f_human_mannequin_ship_jacker_surv_helm','ShopDisplay','UNDEFINED','f686a8fe-8527-4b03-ba13-307a46d19bc8','','',NULL), +(1659,'Construction Pieces','Cargo','Cargo','dc4ab563-5a21-4a8a-a79f-1d5fd9974ecc','','','Can be processed at refineries into Construction Material.'), +(1660,'Monde Core','Armor','Torso','5e798b5e-17a2-4e77-9585-863d6d65c8c7','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12.0 µSCU\nBackpacks: All\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints.'), +(1661,'Whamburger','Food','Junk','ba4c4510-5cab-4d03-b7b2-e708704b8593','','','NDR: 38\nEffects: Dehydrating, Hyper-Metabolic\n\nThe original burger that put Whammer\'s on the starmap. All Whams come with crisp greens, tomatoes, piccamix, and Crave Sauce.'), +(1662,'SHIELDS','ShieldController','UNDEFINED','a41900bd-254d-4297-865c-e25afe5463e1','','',NULL), +(1663,'Cryo-Star','Cooler','UNDEFINED','0a190bad-bbb1-4988-9622-61b7af717d6f','','','Item Type: Cooler\nManufacturer: J-Span\nSize: 1\nGrade: B\nClass: Civilian\n\nJ-Span’s consumer-grade Cryo-Star cooler has become a common sight across the Empire thanks to its reliable heat absorption that won’t strain your ship’s power-plant.'), +(1664,'ControlPanel_Screen_SecurityTerminal','ControlPanel','DoorPart','8579476d-6c14-42ae-a093-c8fa2294b25b','','',NULL), +(1665,'ATLS Cobalt Livery','Paints','UNDEFINED','1271d6ba-3e4a-4fb2-86e0-26ce8c874ad2','','','The Cobalt livery is a vibrant blue with white lettering across the side of the ATLS.'), +(1666,'ANVL_Asgard_Thruster_Main_Rear','MainThruster','FixedThruster','1e074602-d5af-461d-925a-9375a35fe692','','',NULL), +(1667,'Edgeriders Shoes','Char_Clothing_Feet','UNDEFINED','8fb106aa-af0d-4376-8b1b-946b731ab1c6','','','Nothing will take you back to the golden era club scene of Prime in the 2920s like Upsiders\' new Edgerider sneakers. These slip-on sneakers feature daz patterning and modern impact cushioning to keep you up and active for days on end.'), +(1668,'mobiGlas Violet Casing','MobiGlas','Personal','c499ac5a-dd48-4d4c-bad7-7371135c5ac6','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(1669,'Door Control','Door','UNDEFINED','1c05f4d8-6265-437e-938b-9ec20476b5a7','','',NULL), +(1670,'MSD-313 Missile Rack','BombLauncher','BombRack','7a8d5207-e203-4bbc-8cec-6956b4129a7e','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 3\nMissiles: 1xS3\n\nBehring’s MSD-313 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 3 hardpoint for the reliable and effective launch of one S3 missile.'), +(1671,'Aluminum','Cargo','Cargo','69c69cba-cae0-4dbd-8b1a-2200ad1587b9','','',NULL), +(1672,'Door Control','ControlPanel','DoorPart','44f0e064-230f-e498-8468-a057ab9207b6','','',NULL), +(1673,'Toilet','Cargo','UNDEFINED','de1524af-160e-4185-bc3f-5f7d9c5a0b5f','','',NULL), +(1674,'Table_Booth_4_Seat_CRUS_Starlifter','Usable','UNDEFINED','e1c1f2e2-f1de-4d6a-a147-d0f1ee5ed928','','',NULL), +(1675,'Tipper Hat Whammer\'s','Char_Clothing_Hat','UNDEFINED','6edb2097-8cc5-47af-90a9-cddf597d4b8d','','','The Tipper hat from Stegman\'s features a pre-curved bill for comfortable wear from day one.'), +(1676,'Door Control','ControlPanel','DoorPart','85e3e06b-8c93-4224-aec7-48b1ebbc907a','','',NULL), +(1677,'display_box_plastic_4_weapon_opened_005x010x00375_rundown_a_2Ports','ShopDisplay','UNDEFINED','05d4ebb4-530d-43ab-acd9-691427470b0c','','',NULL), +(1678,'Seat','SeatAccess','UNDEFINED','485533a9-f4af-43a8-89a7-af102ea1f996','','',NULL), +(1679,'AEGS_Vanguard_Sentinel_Thruster_Mav_Joint','ManneuverThruster','JointThruster','35637c5d-d85a-4a8a-9733-89094c39565c','','',NULL), +(1680,'food_ration_pack_e','Misc','UNDEFINED','49a121c8-bdcc-4224-b43d-4dec2e7cdfdf','','',NULL), +(1681,'Test_Datapad_Clovis_Clue_01_4x3_Screen_1','Display','UNDEFINED','177b025a-9aca-4618-86d5-d7f08bdd3418','','',NULL), +(1682,'CNOU_HoverQuad_CML_Chaff','WeaponDefensive','CountermeasureLauncher','2dc8a1ba-6496-4c76-a4e0-6f166c4aa0c5','','','@LOC_PLACEHOLDER'), +(1683,'Glacis','Shield','UNDEFINED','6fc982c0-2747-42b7-a628-7c76ecedf732','','','Item Type: Shield Generator\nManufacturer: Basilisk\nSize: 4\nGrade: Bespoke\nClass: Industrial\n\nOrigin turned to the experts at Basilisk to build a bespoke shield generator for the 890 Jump. The Glacis blends centuries of cutting edge innovation to produce a strong and stable shield capable of defending the valuable ship and passengers aboard.'), +(1684,'Argo MPUV Ship Armor','Armor','Medium','e8366bc3-ca67-41ee-913d-c83663cd84f0','','','Argo MPUV Ship Armor'), +(1685,'Door Control','Door','UNDEFINED','51616e5a-709c-41c1-91a0-f2c53dd6dd12','','',NULL), +(1686,'Wolf Allegro Livery','Paints','UNDEFINED','09e4e202-fce6-435f-9a4c-6daa76c8fd5f','','','With a look inspired by racing ships, the Allegro livery spotlights the sleek, aerodynamic design of the Wolf.'), +(1687,'Access','SeatAccess','UNDEFINED','74e3eb80-25a4-4b87-862a-991ba08923c6','','',NULL), +(1688,'Cutter 2955 Auspicious Red Snake Livery','Paints','UNDEFINED','f0d9afca-9c5e-459a-ad02-d26582467fb1','','','Seek peace and prosperity in the new year with the Auspicious Red Snake livery. Outfit your ship with this bold red base paint complemented by gold accents and a stylized graphic of a snake.'), +(1689,'rack_gun_size_4_005x0075x015_a','Misc','UNDEFINED','6b2e1700-6725-4d2e-80c1-56acb70162cf','','',NULL), +(1690,'Door','Door','UNDEFINED','67f790cf-2f87-4694-ae64-da5d6f092e58','','',NULL), +(1691,'Mivaldi Pants White','Char_Clothing_Legs','UNDEFINED','dd68c297-41d1-45db-bb80-db92fda0eb9b','','','Carrying Capacity: 0.5K µSCU\n\nCut to a narrow fit, OpalSky\'s Mivaldi pants feature bold asymmetrical design with smart yet casual dual material styling, making it the perfect addition to any wardrobe.\n\nWomen\'s sizes currently out of stock.'), +(1692,'Cup','Drink','Glass','4e247392-50d0-4d50-96bc-76ce976f5de8','','','A drinking vessel.'), +(1693,'Door Control','Door','UNDEFINED','0b7a73b4-67c0-4676-bbb3-134ef066753e','','',NULL), +(1694,'HRST_LaserRepeater_Ventilation_S3','WeaponAttachment','Ventilation','cd2db9e3-5c58-462f-9c92-33d4715e3714','','',NULL), +(1695,'Savrilium','Cargo','Cargo','f2e4ecc6-7c58-443d-9ace-5205e2a1edbe','','',NULL), +(1696,'Toughlife Boots Tan','Char_Clothing_Feet','UNDEFINED','84702509-d7d1-4d0d-825d-9a72808401b4','','','Grindstone\'s done it again. The Toughlife is an all-purpose workboot designed to provide comfort, durability and quality. Featuring a reinforced composite toe and lasercut sole to maximize traction on all surfaces, Toughlife is sure to be your dependable boot, day in and day out.'), +(1697,'GLSN_Shiv_Thruster_Maneuver','ManneuverThruster','JointThruster','0271b02c-59a4-4ee9-8171-d3d24319db48','','',NULL), +(1698,'M50 Ship Armor','Armor','Medium','892ad00e-f11c-4f7b-b365-dd6ddc5a2027','','','M50 Ship Armor'), +(1699,'Marok Gem','Cargo','Cargo','37c0d19c-6158-4918-8a8a-0d57e8d32c3a','','',NULL), +(1700,'Decari Pod','Cargo','Cargo','ef13489c-9f45-43a2-aeb1-e012b02f209c','','',NULL), +(1701,'Stellate','PowerPlant','Power','70019264-f2b2-4741-b50f-bdce41cf0825','','','Item Type: Power Plant\nManufacturer: Sakura Sun\nSize: 4\nGrade: Bespoke\nClass: Civilian\n\nSakura Sun worked with Origin to fine tune the Stellate into the perfect power plant for the 890 Jump, providing the power and performance necessary for a ship of such grand design.'), +(1702,'Cleo Pants','Char_Clothing_Legs','UNDEFINED','676cb88a-f66d-491b-a67a-0b9f27a069eb','','','Carrying Capacity: 0.5K µSCU\n\nElegantly simple, the intriguing design of Cleo becomes more apparent upon closer inspection thanks to a mock fall front lined with subtle diagonal pleats that provide extra texture and detail to the design.'), +(1703,'Ma\'s Ready to Eat Chicken Patty Dinner','Food','Sachet','6e3986c2-23d9-43aa-bee4-d948c4cf5c06','','','NDR: 40\nEffects: Dehydrating, Hyper-Metabolic\n\nMa\'s Ready to Eat Chicken Patty Dinner has the classic taste you love and the convenience your busy life demands.'), +(1704,'SHIELDS','ShieldController','UNDEFINED','f5697eb6-31dd-421c-adc8-1cf425484fba','','',NULL), +(1705,'HRST_LaserRepeater_FiringMechanism_S2','WeaponAttachment','FiringMechanism','b559abe7-6a46-45d3-950e-4439ebaf3892','','',NULL), +(1706,'Distilled Spirits','Cargo','Cargo','341574a9-3a91-4eb5-8e28-5fcf2993ddbd','','',NULL), +(1707,'C2 Hercules Starlifter Plushie','Misc','Personal','bb53e6df-c44a-4d7c-af02-02e9c0f3f942','','','Get your hands on Crusader\'s cargo hauling stalwart with this plushie version of the C2 Hercules Starlifter.'), +(1708,'Counter_2m_fridge','Usable','UNDEFINED','9b24463d-1e1f-4ab1-9bcf-a9544bbb1ffa','','',NULL), +(1709,'lna_vest_01_01_01','Char_Clothing_Torso_1','UNDEFINED','bff5edac-c873-4d8d-9e68-2f8c6230d646','','',NULL), +(1710,'C8X Pisces Standard Flight Blade','FlightController','UNDEFINED','940519da-d8b3-425c-b333-f2f5a2ebe88a','','','Manufacturer: Anvil Aerospace\nType: Flight Blade\n\nThis is the standard issue flight blade for the Anvil C8X Pisces Expedition.'), +(1711,'ClipVest Work Harness Red','Char_Clothing_Torso_1','UNDEFINED','36e48bed-c6f8-4fb1-a4fe-cc754886ecd3','','','Carrying Capacity: 2K µSCU\n\nStegman\'s ClipVest is a multi-purpose work harness that keeps your tools handy when and where you need them. Built from industrial strength materials, this harness offers a back piece to help alleviate strain and provide counterbalance.'), +(1712,'Lavelle Pants','Char_Clothing_Legs','UNDEFINED','2b1b977e-3326-4959-97ec-6aed99aaa6be','','','Carrying Capacity: 0.5K µSCU\n\nPart of the OpalSky Essentials collection, the Lavelle are classic dress pants with a timeless cut and look that make them an indispensable part of any wardrobe.'), +(1713,'MISC_Starfarer_Thruster_Mav_Fixed_03','ManneuverThruster','FixedThruster','96513fac-2c67-4432-a1d6-4cc45c818e26','','',NULL), +(1714,'Door Control','Door','UNDEFINED','de45d2c7-b085-4fc6-9aab-3169d5acf2ba','','',NULL), +(1715,'Maze','Cargo','Cargo','61630437-f3bf-4007-9929-0d8db6a67eb1','','',NULL), +(1716,'HoverQuad Terminus Livery','Paints','UNDEFINED','a745377b-a481-4f3c-af33-f353108b4557','','','Speed across picturesque landscapes in this sublime HoverQuad Terminus livery, which is black with red flourishes.'), +(1717,'INTK_AEGS_Avenger_Warlock','FuelIntake','Fuel','3ff68fa4-3ad1-4fa0-8ad0-610c5d4fd9a8','','',NULL), +(1718,'Colonialism_Outpost_RN_Maintenance_Shack','Relay','UNDEFINED','588a029d-464f-4112-9e28-fd1fbfffbcd0','','',NULL), +(1719,'Carryable_2H_CY_furniture_pillow_1_c','Misc','UNDEFINED','c774d09a-1367-4551-a69c-ededd48d53ea','','',NULL), +(1720,'counter_display_mod_end_0038x01x01_02Ports','ShopDisplay','UNDEFINED','156405d4-8819-4d76-b300-2dd18ff1abd0','','',NULL), +(1721,'Libio Jacket Seagreen','Char_Clothing_Torso_1','UNDEFINED','effeaaef-c2dd-4b66-a674-cb9a5e126456','','','Carrying Capacity: 1K µSCU\n\nOne of OpalSky\'s classic pullovers, the Libio features a two-tone asymmetrical pattern and polyweave blend to keep it elegant and striking every time you wear it.\n\nWomen\'s sizes currently out of stock.'), +(1722,'Nox Overdrive Livery','Paints','UNDEFINED','06606e88-d50d-4134-8829-3d4caf521b39','','','Blast past other racers in your Nox with the Overdrive livery, which features a stylish blend red and silver coloring.'), +(1723,'JOKR_DistortionCannon_PowerArray_S1','WeaponAttachment','PowerArray','59f24a20-d9cf-4615-b0d2-2cb9c26fe08b','','',NULL), +(1724,'Antium Core Storm','Armor','Torso','02c2ca44-c632-4db8-b969-be44a8562f1b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(1725,'Internal Tank','QuantumFuelTank','QuantumFuel','23cc573c-5ae4-43ec-8b73-15ff7c41279e','','',NULL), +(1726,'MISC_Freelancer_Base_SCItem_Seat_Esc_Pod_Lower_Left','Seat','UNDEFINED','5a0faaea-b33d-4f57-8e12-5380c8f00bba','','',NULL), +(1727,'f_human_mannequin_marine_medium','ShopDisplay','UNDEFINED','dd9ea2f0-64d6-4f33-8e98-e89500fa31f3','','',NULL), +(1728,'Door Control','Door','UNDEFINED','87473578-67c3-4079-b75d-923e3f6b27d5','','',NULL), +(1729,'APX Fire Extinguisher Canister','WeaponAttachment','Magazine','a205d0b4-7157-4e5a-9e40-57bb6b4fbb55','','','Item Type: Extinguisher Refill\n\nThis canister refills the APX Fire Extinguisher with a full tank of the KE Group\'s patented cooling compound.'), +(1730,'Veggie Wham','Food','Junk','1430c4f4-9974-4c28-9bba-8e02a4670e91','','','NDR: 38\nEffects: Dehydrating, Hyper-Metabolic\n\nMade by Whammer\'s skilled chefs, our signature Veggie Wham checks all your crave boxes. All Whams come with crisp greens, tomatoes, piccamix, and Crave Sauce.'), +(1731,'Door Control','ControlPanel','DoorPart','38f0824c-ada5-42d9-bee6-009e396c737f','','',NULL), +(1732,'K7 Pants Olive','Char_Clothing_Legs','UNDEFINED','57b6c0d2-23a4-4962-9712-ea488182b030','','','Carrying Capacity: 3K µSCU\n\nDMC\'s K7 are an all-purpose cargo pants. Four easy access pockets provide extra storage while the triple-stitched polymer weave fabric is designed to withstand all kinds of weather conditions.'), +(1733,'ARMR_DRAK_Buccaneer','Armor','Medium','381997e0-b1e6-4cb1-b235-3c74c3fde3cc','','',NULL), +(1734,'Astatine','Cargo','Cargo','b3db988b-3a6b-4cbc-abf8-b115d8d84afd','','',NULL), +(1735,'Citrus Beef Burrito','Food','Junk','1dfebe81-c6b7-4102-9b5e-0ebe2faa44d3','','','NDR: 34\nEffects: Dehydrating\n\nThis satisfying burrito features a tortilla wrapper filled with tangy shredded beef.'), +(1736,'Carryable_1H_CY_bottle_bar_12_cream_a','Misc','UNDEFINED','a3682373-2a3e-4e37-9ef2-8ec329b34f2f','','',NULL), +(1737,'Explorer','JumpDrive','UNDEFINED','c8797bce-6220-4d1e-bc6d-23da4a366a6d','','','Item Type: Jump Module\nManufacturer: Tarsus\nSize: 1\nGrade: C\nClass: Civilian\n\nJourney across the ‘verse with Tarsus’ Explorer jump module, offering greater reliability to help take your wanderlust to new heights.'), +(1738,'Blood_Decal_Gore2','Decal','DoorPart','d0d986a1-e2d5-4024-bde8-3f3ff8bea53c','','',NULL), +(1739,'Vacha Jacket Sandalwood','Char_Clothing_Torso_1','UNDEFINED','dd6de881-f194-4204-be17-a1f3a450ef6b','','','Carrying Capacity: 400 µSCU\n\nThe Vacha jacket offers the wearer an admirable degree of comfort across a wide range of environments thanks to its sealed cuffs and utility neck collar. Additionally, the rugged design features a sealed cross closure, incorporated belt, and auxiliary ports. The garment\'s sheer durability and utility has cemented the Vacha jacket as a perennial favorite in Habidash\'s collection.'), +(1740,'ORC-mkV Core Seagreen','Armor','Torso','65cfb9a4-e98a-4aba-8bc7-3a3d08d41f2b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(1741,'SalvageInternalStorage_ARGO_MOTH','SalvageInternalStorage','UNDEFINED','91d2f067-f97f-4c51-a626-2efe23c43477','','',NULL), +(1742,'MPUV-1T Storm Grey Livery','Paints','UNDEFINED','e884a62e-3ae3-4dc0-8fa4-8308897610b8','','','The Storm Grey is an all grey livery for the MPUV-1T. Its subtle style is an ideal choice for those not wanting to draw too much attention.'), +(1743,'AEGS_Sabre_Firebird_bombay_door_left_inner','Misc','UNDEFINED','8da0c26d-8c73-4dd9-aa99-d341c5e8cca4','','',NULL), +(1744,'ORIG_135c_Thruster_Retro_Right','ManneuverThruster','JointThruster','213e988f-bd89-4998-98bf-156ec779c335','','',NULL), +(1745,'ANVL_Hornet_F7A_Mk2_Thruster_Main','MainThruster','FixedThruster','47bde413-92c4-4603-8de5-6998887567c5','','',NULL), +(1746,'Hofstede-S2 Mining Laser','Mining','Gun','b422bcf8-b553-4b09-b2be-e92ab2f80e9a','','','Manufacturer: Shubin Interstellar\nItem Type: Mining Laser \nSize: 2\n\nOptimal Range: 60m\nMaximum Range: 180m\n\nMining Laser Power: 336 - 3360\nExtraction Laser Power: 1295\n\nModule Slots: 2\n\nResistance: -30%\nOptimal Charge Window Rate: +20%\nInert Material Level: -40%\n\nLaser Instability: +10%\n\nThe Hofstede-S2 was designed with a patented crystal lattice structure that dampens a deposit\'s natural resistance while mining and gathers less inert materials when extracting. Most effective at short and medium range, an accompanying increase in instability means the laser should be managed carefully.'), +(1747,'TMSB-5 Ball Turret','Turret','BallTurret','4b2e4ce4-ac79-4923-bfdd-ccce02129b27','','','Manufacturer: Behring\nItem Type: Ball Turret\nSize: 5\n\nDesigned in conjunction with Anvil Aerospace for use on the F7C Hornet Mk II, this turret featuring a fully integrated gimbal mount to allow for adaptive targeting and is fitted with bespoke twin ballistic gatling guns.'), +(1748,'MacFlex Legs Green','Armor','Legs','7564647d-f877-44b1-bdbc-a0a38401a48c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(1749,'KRIG_P72_Archimedes_Thruster_Mav_Fixed_01_Top','ManneuverThruster','FixedThruster','3f8fbe45-5a3b-4699-b579-3e2a80f8f81d','','',NULL), +(1750,'Razorback Pants Black','Char_Clothing_Legs','UNDEFINED','446addf8-d821-4edb-a269-1da2d9caacd6','','','Carrying Capacity: 2K µSCU\n\nDMC\'s Razorback pants are made to be worn. Built from industrial quality material, they feature reinforced kneepads to prevent tears on the job and stay rugged yet comfortable.\n\nWomen\'s sizes currently out of stock.'), +(1751,'orig_bedding_duvet_3_m','Seat','UNDEFINED','7eeeb9a2-238e-4e25-a6b9-23ed4abb1057','','',NULL), +(1752,'Irradiated Valakkar Pearl (Grade AAA)','Misc','Harvestable','e738c105-8ef7-4238-8170-5db0c4f9c15d','L','','The valakkar pearl is harvested from the skin of the valakkar. As the valakkar moves through its environment, a large piece of grit will sometimes penetrate its thick hide. If the grit is unable to be expelled on its own, the valakkar\'s skin will grow to encase it. Layers of organic matter will then coat the piece of grit, isolating it from the valakkar\'s vulnerable dermis, thus ensuring that it will not cause infection. These \"pearls\" can become substantial in size over time. Because the valakkar that grew this pearl was exposed to radiation over a long period of time, it has developed unusual properties.'), +(1753,'Door','Door','UNDEFINED','5da48e0f-51c3-4a36-b34e-54ac2dd685ab','','',NULL), +(1754,'ARGO_MOTH_CargoGrid_Side_Right','CargoGrid','UNDEFINED','3c8d6797-ab1d-4fb7-b812-ec3ba5960db3','','',NULL), +(1755,'RSI_Polaris_CargoGrid_Main','CargoGrid','UNDEFINED','5b7b5bee-bf28-4406-8310-334bc5c8c699','','',NULL), +(1756,'LowTechAirlockTerminalTemplate','ControlPanel','AirlockPart','b935a340-0261-4d86-ae9c-e2e40f62314d','','',NULL), +(1757,'CRUS_Starlifter_Door_Decal_MainDeck','Decal','DoorPart','7b56f009-56ad-4e03-81ca-c428c9422c86','','',NULL), +(1758,'MISC_Starfarer_Thruster_Mav_Joint_Bottom','ManneuverThruster','JointThruster','8870fbfb-d5ed-4c2b-9b56-6caadbb956ac','','',NULL), +(1759,'Arden-SL Legs Rime','Armor','Legs','2a2d9018-d311-4966-b63f-b1480017c4a8','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics.'), +(1760,'RSI_Apollo_OC_Left_Tier_3','Room','UNDEFINED','41ba0ffb-8c80-6e3d-54c4-b102da3545a2','','',NULL), +(1761,'Mule Bushwhacker Livery','Paints','UNDEFINED','15e1bf98-ca1f-440c-af11-c6800369ce3a','','','When the job calls for crossing forests and grasslands, outfit your Drake Mule with the Bushwhacker livery, which mixes shades of green and grey.'), +(1762,'IndVest Jacket Green','Char_Clothing_Torso_1','UNDEFINED','e9653e36-671d-42c4-95a2-706d9559c3ff','','','Carrying Capacity: 5K µSCU\n\nKeep your tools within easy reach with Stegman\'s IndVest. Made from industrial strength materials, this is a rare jacket that\'s both stylish and sensible.'), +(1763,'DRAK_Caterpillar_Thruster_Mav_Fixed_Top','ManneuverThruster','FixedThruster','70a1dfee-79cd-41c5-9ece-ecd7c97db5d5','','',NULL), +(1764,'Anvil Noise Launcher','WeaponDefensive','CountermeasureLauncher','99bb81e6-73e2-4a15-8b4f-99cef9d55faa','','','Anvil Noise Launcher'), +(1765,'test_Flair_Model_350r','Misc','UNDEFINED','ac1f4d2c-9a5d-4339-bcf4-217ac06329e1','','',NULL), +(1766,'Party Favors','Cargo','Cargo','50289e5c-5a6b-4d2c-943d-5a4361020b63','','',NULL), +(1767,'cbd_main_hall_display_case_S4','ShopDisplay','Default','2761f6ba-7bfe-4f9c-958e-c114143a0de3','','',NULL), +(1768,'Shipment','Misc','UNDEFINED','deabbb44-9360-478f-b774-6f138d62a53d','','',NULL), +(1769,'Flight Blade','FlightController','UNDEFINED','b8d6eaa0-9743-4c7a-a6db-b2b8d02c4b73','','',NULL), +(1770,'ESPR_BallisticCannon_FiringMechanism_S5','WeaponAttachment','FiringMechanism','f345bdce-1969-4da9-8178-bd83094d14eb','','',NULL), +(1771,'CNOU_Mustang_Delta_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','ad3066c9-4a67-42de-805f-92020ac1e416','','',NULL), +(1772,'JanitorMob','Weapon','Gadget','557225fa-60a3-4c32-b8ab-4fc491e086b4','','',NULL), +(1773,'Door Control','Door','UNDEFINED','c0a008dd-af2f-4a42-a49b-7eb198c6dddf','','',NULL), +(1774,'Overlord Core Stinger','Armor','Torso','49968fbb-3f41-427c-958e-743fe222aeed','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12.0 µSCU\nBackpacks: All\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.'), +(1775,'AEGS_Retaliator_Esc_Pod_Decal_01','Decal','DoorPart','c37c00a1-4791-401c-8acc-61040963eac0','','',NULL), +(1776,'Graupel','Cooler','UNDEFINED','8d2c7d2d-7359-474b-90cd-c0ba9c31ac7f','','','Item Type: Cooler\nManufacturer: Wen/Cassel Propulsion\nSize: 2\nGrade: C\nClass: Civilian\n\nThe Graupel not only provides the top of the line cooling technology that larger ships need to maintain optimal performance, it does it with Wen/Cassel’s signature craftsmanship.'), +(1777,'TRGT. STATUS','Seat','UNDEFINED','1d0f01ad-d97c-4120-b453-a82c1346fe7a','','',NULL), +(1778,'VariPuck S6 Gimbal Mount','Turret','GunTurret','4953a524-3736-4d9c-86f9-f2d54b3bfba4','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 6\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(1779,'AEGS_Sabre_Raven_Thruster_Mav_Joint_01','ManneuverThruster','Light','df5d7fea-0991-43d4-a5fe-ca1c71a87808','','',NULL), +(1780,'RADR_S00_Fake','Radar','MidRangeRadar','1c7cba80-f570-4b4b-ba6d-35a2a121c78c','','','@LOC_PLACEHOLDER'), +(1781,'RSI_Aurora_Mk2_Thruster_Main','MainThruster','UNDEFINED','f2b0bc1e-3ab4-4285-9a6d-6645776929e1','','',NULL), +(1782,'SCItemDisplayScreen_NewsScreen_NewBabbage','Display','Default','7f16edfc-e165-4a4c-95a8-ed2ad51b5974','','',NULL), +(1783,'Bed_Mattress_Mantis_RSI','Seat','UNDEFINED','5def5ace-4400-410e-8304-edf55fb9c85c','','',NULL), +(1784,'EX-T12-CS \"Executor\" Torpedo','Missile','Torpedo','39ac8279-45af-4f67-9156-169ff51b0e10','','','Manufacturer: Behring\nTracking Signal: Cross Section\nSize: 12\n\nBehring prides itself on crafting ordnance that is as dependable as it is powerful and the EX-T12 \"Executor\" is no exception. Designed as an anti-ship and anti-installation weapon, Behring engineers worked tirelessly to ensure this torpedo was a bold strategic statement.'), +(1785,'facial_hair_036','Char_Head_Beard','UNDEFINED','6f18810a-37ad-483f-a062-206340631761','','',NULL), +(1786,'CSP-68H Backpack','Armor','Backpack','fb904353-c334-4674-874c-874b64a4c6db','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nBe ready for any situation with the CSP-68H Backpack. Originally designed for the rigors of combat support, this heavy backpack has become popular thanks to its durability and a patented core connector that helps the CSP-68H sit comfortably and balanced on the back.'), +(1787,'Food_box_noodle_01_open_a','Food','Box','81f3d35b-099c-4fcb-90b2-f44a7810a1f7','','',NULL), +(1788,'Cutter Hosanna Livery','Paints','UNDEFINED','231c1925-a770-4dea-8348-f6633148a5d1','','','Inspired by the gorgeous clouds that enshroud Orison, the Hosanna livery blends red, ivory, and pink to give the Cutter a distinct appearance. It also features a silhouette of the landing zone\'s famous Hosanna tree complete with its pink flowers.'), +(1789,'Internal Tank','FuelTank','Fuel','6d46408d-6321-4710-9f86-ea52a361f604','','',NULL), +(1790,'RSI_Aurora_Mk2_CargoGrid_LeftRight','CargoGrid','UNDEFINED','770d0cce-1ca6-4546-8aa5-8c6f8f581bd6','','',NULL), +(1791,'Savrilium (Ore)','Cargo','Cargo','0c5b557e-d25c-44c3-a0ea-5f57463d866d','','',NULL), +(1792,'Prism \"microTech\" Laser Shotgun','Weapon','Medium','cd4f7742-6ce7-4879-9c91-051ab292ba4c','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Shotgun\nClass: Energy (Laser)\n\nBattery Size: 10\nRate of Fire: 120 rpm\nEffective Range: 10m\n\nAttachments: Barrel (S3), Optics (S1), Underbarrel (S2)\n\nFiring powerful shortrange bursts of energy, engineers at Verified Offworld Laser Technologies have developed the Prism laser shotgun so that as the weapon\'s heat-levels rise, the pellets begin fusing together into slug-like projectiles that inflict higher damage on targets. This special edition features microTech branding.'), +(1793,'Geist Armor Helmet Snow Camo','Armor','Helmet','c2bc9db2-8317-4ace-9480-a822c15b39e5','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.\n\nFeaturing a hooded shawl and a white digital camo pattern, the Snow Camo edition is perfect for stalking prey in frozen environments.'), +(1794,'ADP Legs Dark Red','Armor','Legs','15b9d1ac-2fe0-4d7b-aa6d-dc0d3fdb6e8e','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(1795,'RSI_Zeus_Wing_Top_Left','AttachedPart','UNDEFINED','647c8431-2dcf-476b-bbcb-85a6f501e60a','','',NULL), +(1796,'Origin Jumpworks Noise Launcher','WeaponDefensive','CountermeasureLauncher','c113f1d1-536a-4d7d-b770-ce867f60d9b8','','','Origin Jumpworks Noise Launcher'), +(1797,'Flight Blade','FlightController','UNDEFINED','af80ff46-ce2a-428c-a45e-608d7c7bf2a4','','',NULL), +(1798,'un_jar_glass_2_empty_a','Misc','UNDEFINED','b3ed0b01-04c4-4e3b-a4f4-89155363cb76','','',NULL), +(1799,'Internal Tank','QuantumFuelTank','QuantumFuel','7dfe991e-ee0b-4e59-9f04-63a7b1b7db03','','',NULL), +(1800,'CNOU_Mustang_Beta_BathroomDoor','Player','UNDEFINED','e970a22c-f529-4726-afa9-332a8c2807de','','',NULL), +(1801,'RSI_Constellation_Taurus_Thruster_Mav_Joint','ManneuverThruster','JointThruster','8bf629ce-cd6d-4407-9e8e-c6b317a1b22e','','',NULL), +(1802,'TMBL_Cyclone_SCItem_SeatAccess_CoPilot','SeatAccess','UNDEFINED','e5d93377-43e4-48a2-b2a7-ee920a6d4de6','','',NULL), +(1803,'Carinite','Cargo','Cargo','b70d0ebd-3920-4d3c-b586-4793c76385ac','','','A rare mineral because the extreme pressure needed for its formation is very uncommon, it is in high demand thanks to its use in advanced computer processors and other cutting-edge electronics.'), +(1804,'AEGS_Javelin_SeatAccess_Pilot','SeatAccess','UNDEFINED','c30a9e4d-ffb2-45ce-8d0c-b6f9a44db5a9','','',NULL), +(1805,'Gladius Standard Flight Blade','FlightController','UNDEFINED','bdfc2fab-24a1-44f3-8f2c-33d8ddbf589d','','','Manufacturer: Aegis Dynamics\nType: Flight Blade\n\nThis is the standard issue flight blade for the Aegis Gladius.'), +(1806,'Mountaintop Jacket Hazard','Char_Clothing_Torso_1','UNDEFINED','3113564f-c411-4b6c-a856-996f5d4a3dfd','','','Temp. Rating: -20 / 10 °C\nCarrying Capacity: 1K µSCU\n\nThese insulated, water-resistant jackets are perfect for any jobsite where temperature can be a factor. The Mountaintop from DMC features secure pockets and is made with a vinyl-weave exterior, guaranteeing that rough environments won\'t compromise your warmth.\n\nWomen\'s sizes currently out of stock.'), +(1807,'Manned Turret','TurretBase','MannedTurret','d29d0851-638d-4b83-a9a6-b0fd424ca31b','','',NULL), +(1808,'FieldLite \"Scorched\" Flashlight','WeaponAttachment','BottomAttachment','ba30701c-bec0-4345-b5d9-ae869f34c126','','','Manufacturer: NV-TAC\nType: Flashlight\nAttachment Point: Underbarrel\nSize: 1\n\nThe FieldLite is a tough and tactical underbarrel flashlight. Featuring a corrosion-proof body and impact resistant lens, NV-TAC tested the attachment across a variety of environments and conditions to ensure it works when needed most. The Scorched edition features a unique flame patina.'), +(1809,'Food_plant_mushroom_01_heart_c','Food','Plant','edf3a7a5-d28d-44a2-8c79-d3907f84aba8','','',NULL), +(1810,'HexaPolyMesh Coating','Cargo','Cargo','05040fdd-da2c-4c05-b79e-9653adc194da','','',NULL), +(1811,'DCP Armor Core Jungle Camo','Armor','Torso','7fad90cd-39c2-420b-82d4-106353582bec','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(1812,'mobyGlass Personal Computers','Cargo','Cargo','5fe22670-9d6f-4130-8e1c-9723ed6dcdf5','','',NULL), +(1813,'AEGS_Idris_SCItem_Seat_Brig','Seat','UNDEFINED','2b77d8b0-9742-4ab6-8329-a84e2cf2d051','','',NULL), +(1814,'Cliffback T-Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','5692dd55-2269-40f7-8d2e-f6566ce39301','','','Alejo Brothers\' classic loop tee with a spatter pattern.'), +(1815,'Ardent Boots Yellow','Char_Clothing_Feet','UNDEFINED','936d7af8-f840-455f-be75-09e7726be39b','','','Who says NorthStar can\'t keep it pro? The Ardent boot features a molded rubber sole and all-weather construction to withstand a constant battery from the elements.\n\nWomen\'s sizes currently out of stock.'), +(1816,'Door Control','Door','UNDEFINED','67c041be-1116-41df-b237-90fc8e723a33','','',NULL), +(1817,'Processed Food','Cargo','Cargo','0550c6c7-e912-4cad-b7fc-d29d8fddc13a','','',NULL), +(1818,'Stud','Char_Head_Piercings','UNDEFINED','98fcdedd-d5de-44cf-bdca-bfcb6c4fa5b8','','',NULL), +(1819,'ADP Core Sienna','Armor','Torso','848737df-1725-4bf3-90a1-7fcbfaae7785','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(1820,'facial_hair_012','Char_Head_Beard','UNDEFINED','b075b2cf-16a4-4152-954b-02f9fdaf3ea5','','',NULL), +(1821,'RSI_Hermes_Thruster_Retro_Left','ManneuverThruster','FixedThruster','2e8b295f-297e-47a3-8687-c4d9b5655f89','','',NULL), +(1822,'Seat','SeatAccess','UNDEFINED','9af78fd3-64e3-482c-99da-bfe2ad1485cf','','',NULL), +(1823,'CargoBox_050x050x050_Plastic_Stacked_2','Cargo','Cargo','e908a7ab-00fb-4723-89be-3a7ba7589bc6','','',NULL), +(1824,'Door Control','ControlPanel','DoorPart','845dfe2b-34b6-4b01-b07a-1052310bbb1a','','',NULL), +(1825,'Microid Battle Suit Arms Lodestone','Armor','Arms','c2d33ea6-8b99-4bd6-812a-7d762471a904','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(1826,'Seat','SeatAccess','UNDEFINED','701a0e29-3f2f-4b88-bc24-5256a85af5e5','','',NULL), +(1827,'MISC_Freelancer_Base_SCItem_Dashboard_Passenger_Right','SeatDashboard','UNDEFINED','d6942c65-0223-4d84-b981-d5a20b1b401a','','',NULL), +(1828,'Deo Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','188c663a-7cf2-42bf-af64-ff090540f3af','','','Fiore\'s Deo is a slim cut work shirt that\'s as practical as it is timeless. Featuring a high collar and metal neck clasp, the Deo has been a mainstay in business attire.\n\nWomen\'s sizes currently out of stock.'), +(1829,'Carryable_utensil_knife','Misc','UNDEFINED','821eb539-077b-4fec-ac59-4e832643e810','','',NULL), +(1830,'Seat','Usable','UNDEFINED','b8974756-c06f-436e-b16a-e6ad7d6fee7e','','',NULL), +(1831,'SHIELDS','ShieldController','UNDEFINED','13b0b0fb-afd9-4218-ba9f-0a415a9f6d30','','',NULL), +(1832,'TMBL_Nova_SCItem_Dashboard_Gunner','SeatDashboard','UNDEFINED','0430b889-4590-47df-935d-d01a634f7295','','',NULL), +(1833,'Door','Door','UNDEFINED','634c85af-c972-4b65-b30c-84a62771b5ff','','',NULL), +(1834,'ESPR_BallisticCannon_FiringMechanism_S4','WeaponAttachment','FiringMechanism','d95cb1eb-f16d-47da-8c00-92f037f9dbc3','','',NULL), +(1835,'Seat','Usable','UNDEFINED','4b4e7980-d286-4124-9929-13853b121a5b','','',NULL), +(1836,'Door Control','ControlPanel','DoorPart','6a4ee78a-34fb-4a56-b20f-2f222b996ee3','','',NULL), +(1837,'Carryable_2H_FL_075x05x05_MissionItem_Climbable','Misc','UNDEFINED','95c879b2-291e-4093-9d61-1da66df9e082','','',NULL), +(1838,'Ixonia Armor Verdant Steel','Char_Clothing_Torso_1','Heavy','a38861c4-228c-4c76-bc9b-e6424c41e884','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nTehachapi knows that you can never have too much storage. This lightweight protective gear comes with a sturdy tool belt, reinforced pouches, and hidden pockets so you can be sure your cargo will stay in place even when you\'re at your most active. An optional hood and adorned cape provide protection from the wind when worn with the matching helmet.'), +(1839,'Flight Blade','FlightController','UNDEFINED','ca03b11d-fa61-445c-994a-9288dcc6774a','','',NULL), +(1840,'Aril Legs Red Alert','Armor','Legs','193c2eb8-dba0-4b46-919c-2d4ecf2d686b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(1841,'Bo-Go (Angeli Original)','Food','Tin','1a065fdd-426c-4012-9171-513bc091d321','','','NDR: 30\nEffects: None\n\nCroshaw’s signature meat and seafood stew is now available the Empire over! \'Angeli Original\' flavor provides a real \"taste of home\" thanks to its classic family recipe.'), +(1842,'Door Control','Door','UNDEFINED','e1ca0669-b02f-4366-bafa-6b711918e3be','','',NULL), +(1843,'IAE 2954 T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','82a4c2ba-34e7-4e84-bf66-cd4dd53c9ada','','','The official shirt of the 2954 Intergalactic Aerospace Expo. This soft and supremely comfortable cotton t-shirt is a crisp white with the IAE logo on the front, \"The Next Frontier\" tagline across the back, and the year on the right sleeve.'), +(1844,'Access','SeatAccess','UNDEFINED','51559801-c6b2-4874-9b9e-0b80c33230ba','','',NULL), +(1845,'Geist Backpack Forest','Armor','Backpack','87350c7e-d9d6-4e77-ad9b-570027d99dff','','','Item Type: Light Backpack\nCarrying Capacity: 54K µSCU\nCore Compatibility: All\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(1846,'Venture Legs Red','Armor','Legs','cb5a5452-021d-49d1-9eed-308dc94bc7c9','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(1847,'Lynx Arms White','Armor','Arms','acbd923b-42d3-4993-bb47-ab6a1d7ddac5','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(1848,'Lynx Core Cold Steel','Armor','Torso','d26ac5f7-f80f-4310-a66c-5833d6c9a7ac','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(1849,'Spirit Olympia Livery','Paints','UNDEFINED','926402d1-b900-4063-b065-f5885c3eb994','','','Exude understated elegance with the Olympia livery for the Spirit. The beautiful and bold black and gold paint scheme makes sure you\'ll be remembered.'), +(1850,'Seat','Usable','UNDEFINED','b1143689-6b0d-4bd2-93fe-841ddfa56e00','','',NULL), +(1851,'Seat_Jump_ANVL_Valkyrie','Usable','UNDEFINED','cc1733df-df83-4238-8cd1-687f5f2d9e8e','','',NULL), +(1852,'Gladius Disrupt Camo Livery','Paints','UNDEFINED','9693c801-fa2f-485b-a8ed-10663b40290a','','','The Disrupt Camo livery utilizes carbon fiber grays and blacks printed in a disruptive pattern to keep your enemies guessing.'), +(1853,'Pite','Char_Head_Piercings','UNDEFINED','0ef557c4-4328-451e-8a81-c9ac51eeea61','','',NULL), +(1854,'sc_nvy_bdu_jumpsuit_01_01_cvx01','Char_Clothing_Torso_1','UNDEFINED','fa3b9ab9-3d59-4028-ad39-b75693cc7833','','',NULL), +(1855,'Personal Storage','Cargo','UNDEFINED','234cd13c-8600-4555-a9fd-9494e86c0da9','','',NULL), +(1856,'Carryable_1H_CY_weight_dumbbell_1_32kg_a','Misc','UNDEFINED','339a0013-4668-4804-966a-876e9e5b1323','','',NULL), +(1857,'Seat','SeatAccess','UNDEFINED','8f4fea9a-f8f0-42b2-a234-0b41da6a6454','','',NULL), +(1858,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','2af8ae93-baf0-4a14-8685-21d734998dc0','','','Joker Defcon - Noise Launcher'), +(1859,'RSI_Bengal_SCItem_Seat_Comms','Seat','UNDEFINED','9ac128c7-ed43-4f83-a95b-63540d9f8ec1','','',NULL), +(1860,'Parallax \"Fun Kopion Tooth\" Energy Assault Rifle','Weapon','Medium','0dd2bd1b-09b3-4a95-b0f3-7aeef645ee53','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Assault Rifle\nClass: Energy (Electron)\n\nBattery Size: 80\nRate of Fire: 200 rpm - Beam\nEffective Range: 30 m\n\nAttachments: Optics (S2), Underbarrel (S2)\n\nWith the Parallax, VOLT offers consumers a rugged assault rifle design with features like a larger-than-average battery and a unique actuator that enables the weapon to scale up into a persistent beam as it fires.\n\nThis modified version of the original rifle showcases a printed kopion graphic across the side of the weapon and a small kopion fang adorning the muzzle.'), +(1861,'Wuotan Seed','Misc','UNDEFINED','ddbbd41b-423f-4d52-85a5-247d57c007f3','','',NULL), +(1862,'Carrion Core Stalker','Armor','Torso','c062d1a4-1671-44b5-9e5d-98003138e12f','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Medium, Light\n\nForged from scavenged metals and ragged clothes, the Carrion armor is a crude concoction of repurposed materials that demonstrates you\'ll do anything it takes to survive. \n\nThe Stalker variant has been tagged with orange paint, and features a long cape and integrated pieces of Vanduul armor plating.'), +(1863,'Carrack Frontier Fighters Camo Livery','Paints','UNDEFINED','26b59f42-b324-4e71-ab3d-f07c0d8e2bca','','','Be ready to battle in the untamed wilds with this green camo livery featuring the logo of the Frontier Fighters vigilante group.'), +(1864,'Avenger Warlock TSB Flight Blade','FlightController','UNDEFINED','e5458897-035a-46f8-88a2-cf148fcb4daf','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Aegis Avenger Warlock with the TSB Flight Blade from Broad & Rabiee. By re-allocating lateral thrust resources, you can expect your ship deliver increased top speeds in the straightaway.'), +(1865,'Quartz \"ArcCorp\" Energy SMG','Weapon','Medium','b3755c3d-08cc-4b7d-b13b-5b331efa1671','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: SMG\nClass: Energy (Electron)\n\nBattery Size: 45\nRate of Fire: Beam\nEffective Range: 15-20 m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nManufacturer VOLT\'s Quartz SMG utilizes exciting new weapon technology that fires a short range beam that fractures into multiple beams the longer it fires, making it an extremely effective close quarter weapon. This special edition features ArcCorp branding.'), +(1866,'Col_A_Airlock_Tube_Small','Usable','UNDEFINED','823486b2-0e64-4603-801f-10dbfb4b2c59','','',NULL), +(1867,'ORIG_100i_Thruster_Mav_Fixed_Top','ManneuverThruster','FixedThruster','cf5a01a5-4f93-4fad-9d5d-2ff2379a0128','','',NULL), +(1868,'Scorpius Lovestruck Livery','Paints','UNDEFINED','dd0f1e44-a9bc-4697-99fd-edbdac498042','','','Inspired by the colors of Coramor, the Lovestruck livery is a stylish metallic pink and black look for your Scorpius.'), +(1869,'MSD-442 Missile Rack','MissileLauncher','MissileRack','01e5071c-2fac-4769-9fae-e1a7fbcaf34b','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 4\nMissiles: 4xS2\n\nBehring’s MSD-442 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 4 hardpoint for the reliable and effective launch of four S2 missiles.'), +(1870,'TRGT. STATUS','Seat','UNDEFINED','d74b31b5-f8fe-46be-b9ce-ed9cf3e6a163','','',NULL), +(1871,'Internal Tank','QuantumFuelTank','QuantumFuel','65aa60b0-f23d-4a42-a2f3-41c5768f679e','','',NULL), +(1872,'Internal Tank','FuelTank','Fuel','1ef59a48-e683-4ed2-a425-12570826e896','','',NULL), +(1873,'Door Control','ControlPanel','DoorPart','23bb79d7-cdec-4916-9642-06d2091bec3e','','',NULL), +(1874,'Vulture Dying Star Livery (Modified)','Paints','UNDEFINED','f33036f7-1764-46d2-be5b-c1d80e85ebc2','','','This version of the livery has been modified from its original form with the addition of graffiti. Sold in 2943 to celebrate the 450th anniversary of Pyro\'s discovery, the Dying Star livery is tan with brown and black highlights. It also features branding from Pyrotechnic Amalgamated, the now defunct mining company that found and named the system.'), +(1875,'Citadel-SE Legs Maroon','Armor','Legs','5cc032f7-c82e-425e-be2f-1031a0f66b43','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(1876,'Stims','Cargo','Cargo','2a010522-cec9-42f8-b48b-bcb72d5d0168','','',NULL), +(1877,'Venture Helmet Tan','Armor','Helmet','e7a4f683-25bf-4383-8505-b9397fcb44e4','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover.'), +(1878,'MXOX_NeutronRepeater_PowerArray_S3','WeaponAttachment','PowerArray','9cff922f-cc03-40c6-809f-0e629dd1ab89','','',NULL), +(1879,'Door Control','Usable','UNDEFINED','01b4dfc0-cfa5-4f33-8c23-4c7df1da73cf','','',NULL), +(1880,'Seat','Usable','UNDEFINED','d70df0cc-a0e7-4e32-a829-6896fbb54386','','',NULL), +(1881,'Pips T-Shirt','Char_Clothing_Torso_0','UNDEFINED','967fe120-742f-4745-8a85-a144e6044912','','','Comfort meets refreshing style with this Pips graphic t-shirt, which features the popular energy drink\'s logo on the front and \"Power Up\" on the back.'), +(1882,'ADP Arms Green','Armor','Arms','94e46e68-570d-4cc6-abae-a9f719e23786','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(1883,'Carryable_1H_CY_weight_dumbbell_1_40kg_a','Misc','UNDEFINED','55bb0851-7708-4327-9cfc-b103779b734d','','',NULL), +(1884,'display_components_s2_modular','ShopDisplay','UNDEFINED','89b7c8ee-b49a-4602-a41b-3b75300fd261','','',NULL), +(1885,'Bo-Go (Hot and Sweet)','Food','Tin','05fa4991-d81c-4cf5-a901-30a56a76276b','','','NDR: 30\nEffects: None\n\nCroshaw’s signature meat and seafood stew is now available the Empire over! \'Hot and Sweet\' flavor brings layers of spice and rich molasses to the traditional recipe.'), +(1886,'Projector_HUD_StructuralSalvage_Reclaimer','Display','UNDEFINED','7770931b-bcdf-4832-9b5e-99904a5087f7','','',NULL), +(1887,'Door Control','Door','UNDEFINED','f60bb3e6-7ce6-4dff-9192-b050cae028e4','','',NULL), +(1888,'Testudo Legs Earthshake','Armor','Legs','7bc5259c-6462-4c30-84ab-2ac895895ba3','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4K µSCU\n\nThe Testudo armor for Quirinus Tech blends battlefield durability with everyday comfort. It weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort.'), +(1889,'Remote Turret','Turret','TopTurret','9964b83a-08bc-48ee-bf29-f52ac0b8c550','','','Remote Turret'), +(1890,'Demeco \"Red Alert\" LMG','Weapon','Medium','78300945-3145-4747-9b71-893a37152048','','','Manufacturer: Klaus & Werner\nItem Type: LMG\nClass: Energy (Laser)\n\nBattery Size: 100\nRate Of Fire: 400 rpm\nEffective Range: 40 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S3)\n\nKlaus & Werner has created an iconic weapon with tried and true Demeco laser LMG. Used extensively in military engagements, this short-to-mid-range infantry favorite has been constructed with stability and accuracy at the forefront. The \"Red Alert\" edition mixes grey and a vibrant red for a bold and dynamic design.'), +(1891,'Internal Tank','FuelTank','Fuel','c42d6b06-83bd-4c0d-b776-cc71e4b97cd3','','',NULL), +(1892,'Odyssey II Undersuit Pink/Black','Armor','Undersuit','a715ba06-4cee-47a2-8ee5-e6664d93d480','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe latest generation of RSI\'s classic Odyssey undersuit features a new rugged design capable of withstanding the harshest of conditions in space or planetside. Built using the latest microweave technology, the Odyssey II undersuit provides hours of comfort in locations that are anything but comfortable.'), +(1893,'Holiday Butcher Helmet','Armor','Helmet','d628a920-cdfe-40f3-b2c2-9298a484ff18','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nCelebrate the season with the festive Holiday Butcher helmet. Doomsday designed this twisted bit of armor to withstand a firefight, raucous holiday party, and everything in between. The snout\'s custom armor plating provides protection while remaining lightweight, and the synthetic spiral horns are more durable than the real deal. The Holiday Butcher adds to Doomsday\'s reputation as the universe\'s premiere engineer of warped gear. Visor is AR crosshair compatible.'), +(1894,'Mustang Polar Livery','Paints','UNDEFINED','172daf7d-60b6-48ac-a43a-0de8f76155bd','','','Modify your Mustang with this white and grey livery specifically designed for the 2951 IAE.'), +(1895,'Caterpillar Mistwalker Livery','Paints','UNDEFINED','3882f047-8ffb-4e61-abb9-c0f6c22cf57c','','','Become one with the clouds with the Caterpillar Mistwalker livery and its grey camo pattern.'), +(1896,'P6-LR \"Archangel\" Sniper Rifle','Weapon','Medium','01fd5799-233a-4151-93c8-5977b6be77a3','','','Manufacturer: Behring\nItem Type: Sniper Rifle\nClass: Ballistic\n\nMagazine Size: 8\nRate Of Fire: 20 rpm\nEffective Range: 120 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nThe Behring P6-LR ballistic sniper rifle more than makes up for its slow rate of fire with a high powered round that\'s effective from long range. Featuring a scope with variable zoom modes and a barrel composed of a proprietary high-strength alloy, the P6-LR was designed to deliver when needed most.'), +(1897,'box_fabric_1_005x005x005_a','Cargo','UNDEFINED','da049cee-e276-4e5c-bb4f-36c11186110d','','',NULL), +(1898,'MRAI_Guardian_Thruster_Main_MX','MainThruster','JointThruster','40b859b2-f5d9-8204-09a0-ad47375109aa','','',NULL), +(1899,'SHIELDS','ShieldController','UNDEFINED','b8df1aa5-953c-40b2-89c1-a8ead095169f','','',NULL), +(1900,'Door Control','Door','UNDEFINED','22923ed3-b658-4f36-a6e0-69687639b582','','',NULL), +(1901,'Silnex','Cargo','Cargo','10406e96-3f14-4b43-ab35-011fecbd9b86','','',NULL), +(1902,'Seat','SeatAccess','UNDEFINED','345bcddd-3c78-4154-bb96-b03d96d25d69','','',NULL), +(1903,'Ares Star Fighter Lovestruck Livery','Paints','UNDEFINED','a6e4de77-54ec-486a-9210-c3f4a4d970dc','','','Inspired by the colors of Coramor, the Lovestruck livery is a stylish metallic pink and black look for your Ares Star Fighter.'), +(1904,'mre_food_1_a','Food','Bar','f243a5ff-208b-4746-906c-0165aae7a2c6','','',NULL), +(1905,'Carryable_2H_FL_crate_weapon_3_075x045x00375_b','Misc','UNDEFINED','4a5f5e36-3cf7-4406-9a3f-82ae1c6498e0','','',NULL), +(1906,'AEGS_Sabre_Thruster_Main','MainThruster','FixedThruster','36362a18-f26c-490b-88cf-4fe553499a83','','',NULL), +(1907,'Vehicle_Screen_MFD_Holographic_MISC_Reliant_RR','Display','UNDEFINED','fa2618d4-350d-406b-b25c-9cb9f8696e68','','',NULL), +(1908,'Quantum Fuel','Cargo','Cargo','c5079ee4-767a-4698-9f41-7a874eb0158a','','',NULL), +(1909,'Ignaz Surgical Gloves','Char_Clothing_Hands','UNDEFINED','99c2ef40-b340-4337-8254-7cab8f758bae','','','The Ignaz surgical gloves are sterile and strong without sacrifice the manual dexterity necessary for delicate surgeries. Made with a special anti-puncture material and featuring a beaded cuff that guarantees a snug fit, the inside of the glove is also coated with a special gel to keep your hands from drying and cracking.'), +(1910,'890 Jump Skyline Livery','Paints','UNDEFINED','ce0e1baa-7357-45bd-8427-192f73745c81','','','The Skyline livery for the 890 Jump is a beautiful blue with red highlights.'), +(1911,'ClipVest Work Harness Dark Green','Char_Clothing_Torso_1','UNDEFINED','f7fc35b9-2980-41bd-948c-cd3483c42245','','','Carrying Capacity: 2K µSCU\n\nStegman\'s ClipVest is a multi-purpose work harness that keeps your tools handy when and where you need them. Built from industrial strength materials, this harness offers a back piece to help alleviate strain and provide counterbalance.'), +(1912,'Alban Shirt Striker','Char_Clothing_Torso_0','UNDEFINED','b8e7f555-36f7-4b4f-bec3-83c0fbc48de8','','','The Alban is a long sleeve shirt made from comfortable, natural fabrics. Featuring a deep V-neck, its asymmetrical patchwork design provides it with a bit of texture and a two-toned look.\n\nThe Striker edition is a worn grey with dark grey patches.'), +(1913,'Flight Blade','FlightController','UNDEFINED','28ec05bc-52c1-445e-91a3-c4025be63ad1','','',NULL), +(1914,'PAB-1 Legs Black','Armor','Legs','1ffe9071-a197-4bb6-811c-fbf617514036','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(1915,'Reliant Tana Livery','Paints','UNDEFINED','3a174a93-5264-4b5e-9491-e1eb419f02e6','','','Standard livery for the MISC Reliant Tana.'), +(1916,'Seat','Usable','UNDEFINED','f5ca595a-0fa7-4542-bbe1-0818dd7212da','','',NULL), +(1917,'Carryable_1H_CY_artefact_hadesian_1_a','Misc','UNDEFINED','dbae3b0d-087f-4543-8d03-14b9f5343d97','','',NULL), +(1918,'Manned Turret','TurretBase','MannedTurret','b269383b-df0d-45ed-8977-f7dbd01d0b0b','','',NULL), +(1919,'ANVL_Terrapin_BathroomDoor','Player','UNDEFINED','8a5cfe19-67a8-486d-949a-1de8c66bc895','','',NULL), +(1920,'ASD Lab Sample','Misc','UNDEFINED','fff7ce37-9c5f-4af3-9f11-37b7a0265d8f','','','Caution: Do Not Open Unless Wearing PPE. This container is made for the transport of laboratory samples produced at the ASD Onyx Facility.'), +(1921,'Door Control','ControlPanel','DoorPart','fa4cf544-54f2-441a-abf2-618138a6ef2c','','',NULL), +(1922,'Bibiana Shirt','Char_Clothing_Torso_0','UNDEFINED','452886b0-90dd-4b79-b865-3975844d9d64','','','Part of their Essential Professional line, Fiore designed the Bibiana for those who want that retro look but with modern durability. The top features a refined pinpoint Oxford long sleeve shirt woven into a dark grey vest and suspenders adorned with gold clips as colorful accents. Additional eye-catching accessories include a black bow tie and sleeve garters.'), +(1923,'BEHR_BallisticGatling_PowerArray_S4','WeaponAttachment','PowerArray','0bd7b53e-3519-4799-84fe-d8ae3a04d46c','','',NULL), +(1924,'Aves Starchaser Legs','Armor','Legs','96a868c8-8d8a-48a4-b77d-d772d10b1e27','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nHonor and embody the Tevarin aesthetic with the Aves Starchaser armor; manufactured with white, purple, and grey plating to perfectly evoke the shape language imbued into their iconic ships. This medium armor from CC\'s Conversions is both sensational and practical, providing solid protection without sacrificing your mobility. When paired with the Aves Starchaser helmet, the suit combines for a striking and unforgettable look.'), +(1925,'Fuse','Misc','Fuse','3e4429cb-fb98-420b-aed2-648dad6144e0','','','This safety device provides protection to relays and other power systems from excessive current. Once tripped, fuses need to be replaced before normal operation can resume.'), +(1926,'Aslarite','Cargo','Cargo','60faf682-8595-44e4-98fb-5eb950f5da2d','','',NULL), +(1927,'MISC_Hull_A_Thruster_Aux','MainThruster','FixedThruster','5ed12063-a7bc-40f3-baa5-ca7804f3e63b','','',NULL), +(1928,'OMNI-AFS-Sapphire Armored Flight Suit Slate','Armor','Undersuit','dd669aaa-7cc4-4ac9-99a2-4ed7ddb59f60','','','Item Type: Armored Flight Suit\nDamage Reduction: 20%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nInspired by the armored flight suit worn by UEE Navy pilots, the OMNI-AFS-Sapphire has been battle tested and refined for centuries to become the ultimate wear for any pilot. Its sturdy yet comfortable construction can not only withstand hostile environments, but comes with integrated arm, core, and leg armor for combat encounters. The only way a pilot can get closer to the real thing is by enlisting.'), +(1929,'Morozov-SH Helmet Iceflow','Armor','Helmet','e5c78cf7-bac6-412b-92ca-e3ba047ef20a','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(1930,'Morozov-SH Helmet Snowdrift','Armor','Helmet','6728738c-6b2f-487f-a71c-11005f1144ab','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(1931,'INTK_RSI_Constellation_Taurus','FuelIntake','Fuel','f81b3137-06fd-434f-96c0-1f720bf30fa5','','',NULL), +(1932,'Morozov-SH Helmet','Armor','Helmet','92b7a470-5842-48fe-bd53-dc9df9bb5271','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(1933,'Campo Shoes Moss','Char_Clothing_Feet','UNDEFINED','2d2bf13c-4f72-4679-a9ec-368898082193','','','Slip into comfort with the Campo shoes, which have a supportive midsole, cushioned footbed, and a molded, slip-resistant outsole. These ankle high slip-ons deliver an ideal fit thanks to two adjustable straps with metal clasps.'), +(1934,'GME 338-10 Medical Gown','Char_Clothing_Torso_1','UNDEFINED','e3abb0e4-1f84-4bae-bc50-179129c7c554','','','Carrying Capacity: 0.4K µSCU\n\nThe GME 338-10 Medical Gown is the de facto medical gown assigned to in-patients at hospitals and other care facilities across the Empire. This standard gown was designed so that patients could be dressed or undressed easily, and made with antibacterial fabric to help facilitate keeping wounds clean, lowering the risk of infection.'), +(1935,'Odyssey II Undersuit White/Black','Armor','Undersuit','b4795b32-99bd-4f93-88bf-0b5fcc101457','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe latest generation of RSI\'s classic Odyssey undersuit features a new rugged design capable of withstanding the harshest of conditions in space or planetside. Built using the latest microweave technology, the Odyssey II undersuit provides hours of comfort in locations that are anything but comfortable.'), +(1936,'Morozov-SH Helmet Scorched-X','Armor','Helmet','45402114-63a5-4ac6-8465-9949ec7198ac','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(1937,'Dominator II-G Missile','Missile','GroundVehicleMissile','5bf375c8-d4b8-4bb1-91e7-b6350fea4ad9','','','Manufacturer: Talon \nTracking Signal: Electromagnetic \nSize: 2 \n\nDesigned to track an opponent’s electromagnetic signature, the Dominator strike missile is a precision ordnance package designed to establish tactical battlefield dominance. Note: This missile may only be launched by ground vehicles.'), +(1938,'Mahoney Nurse Scrub Pants','Char_Clothing_Legs','UNDEFINED','6808c1ae-430b-4c1e-8a7d-137b8db82ab9','','','Carrying Capacity: 0.5K µSCU\n\nThe Mahoney Nurse Scrub Pants are made for medical professionals looking for a comfortable but durable fit. They feature two front pockets and a stretch waistband. Moisture wicking and anti-stain fabric makes these pants ready to withstand long shifts and repeated washing.'), +(1939,'Railing_Straight_4m_LT_Delta_a','Usable','UNDEFINED','27f73d25-9058-49fa-a815-ffdad33a97ac','','',NULL), +(1940,'Remote Turret','Turret','GunTurret','11e88847-2825-4ed2-9821-6e489b59081a','','','Remote Turret'), +(1941,'TEST STRING NAME','Armor','Torso','ea79179a-a92e-43eb-9520-88cafd91d7f3','','',NULL), +(1942,'ORC-mkV Core Hurston Edition','Armor','Torso','fee6494b-5b5e-472b-87ee-7917c7fa653a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement. The Hurston Edition was made specifically for the company\'s security services.'), +(1943,'Door Control','Door','UNDEFINED','5e73cc33-0857-4110-ad82-b8817c597735','','',NULL), +(1944,'ARGO_MPUV_Thruster_Main','MainThruster','FixedThruster','69944f8c-00e3-4e04-a191-67bf5f8094ca','','',NULL), +(1945,'BEHR_LaserCannon_Barrel_S2','WeaponAttachment','Barrel','e30a0379-e9c7-47e2-9e9a-0f6e916cb3a3','','',NULL), +(1946,'Door_NoRoomConnector_ARGO_MOTH_CargoDoor_Right','Door','UNDEFINED','be325812-524b-455b-9154-2270034b0a14','','',NULL), +(1947,'Krig_l22_alphawolf_Pilot_Dashboard','SeatDashboard','UNDEFINED','143ea693-552b-4cbd-bb12-9bcf3bee9043','','',NULL), +(1948,'Drink_bottle_tequila_01_a','Drink','Bottle','32d0a2c9-81b3-4a15-ae03-3b35dfb2cf94','','',NULL), +(1949,'Inquisitor Legs Roughshod','Armor','Legs','69aff2c2-dc52-41b9-9308-85a13d073b34','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(1950,'XIAN_Nox_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','da2f4ca8-de56-473c-a189-862fac739db7','','',NULL), +(1951,'Carryable_1H_SQ_medical_bag_1_blood_a','Misc','UNDEFINED','baa32de3-68be-4ecf-94b0-8a1747a9b65e','','',NULL), +(1952,'Scorpius PHB Flight Blade','FlightController','UNDEFINED','a60acd60-5a23-4700-952d-655a8ae1b656','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your RSI Scorpius with the PHB Flight Blade from Broad & Rabiee. By re-allocating forward thrust resources, you can expect your ship deliver increased precision handling during tight maneuvers.'), +(1953,'Internal Tank','FuelTank','Fuel','f0ee6e4c-9295-430d-b345-79c3910b4701','','',NULL), +(1954,'CF-447 Rhino Repeater','Weapon','Gun','ecac1df2-4f6f-49df-9cce-f188d118a789','','','Manufacturer: Klaus & Werner\nItem Type: Laser Repeater\nSize: 4\n\nWhen a ship comes charging at you with a CF-447 Rhino strapped on, it is an experience few pilots will ever forget. This formidable size four laser repeater from Klaus & Werner is well suited for medium-range engagements, but packs a wallop up close.'), +(1955,'Radar','Radar','MidRangeRadar','06de143e-4e28-4cb7-8e1d-e04017aae514','','','@LOC_PLACEHOLDER'), +(1956,'Mercury','Cargo','Cargo','113a22d3-81e5-4051-abc4-a8b8892d3c72','','',NULL), +(1957,'TRGT. STATUS','Seat','UNDEFINED','946666c6-d71c-4cc1-94ee-6cc78a68d049','','',NULL), +(1958,'ARGO_ATLS_GEO_Thruster_Large','Misc','UNDEFINED','291d8082-98ad-426e-b159-5dce406dacba','','',NULL), +(1959,'Ma\'s Ready to Eat Chicken Patty Dinner','Food','Sachet','a8b8db91-ab89-45f1-912d-6b21459239b6','','','NDR: 40\nEffects: Dehydrating, Hyper-Metabolic\n\nMa\'s Ready to Eat Chicken Patty Dinner has the classic taste you love and the convenience your busy life demands.'), +(1960,'Manned Turret','TurretBase','MannedTurret','976582c1-0858-49f0-aab6-04d7a54059ba','','',NULL), +(1961,'Freelancer Stock Missile Rack','MissileLauncher','MissileRack','5d33e01a-e400-41a1-853d-d2b2c2992ab8','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 4\nMissiles: 8xS1\n\nBehring’s MSD-481 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 4 hardpoint for the reliable and effective launch of eight S1 missiles.'), +(1962,'expo_display_shirts_and_hats_drake','ShopDisplay','Default','429cac82-acdc-49f3-9041-088be2953c13','','',NULL), +(1963,'Internal Tank','FuelTank','Fuel','b4c950a4-c49e-4b62-8a60-d6bd99c0ff4c','','',NULL), +(1964,'Controller_Salvage_ARGO_SRV','SalvageController','UNDEFINED','d640bad1-fe08-441f-8eb9-ed9d93d0eb42','','',NULL), +(1965,'ORC-mkV Arms Black','Armor','Arms','5678c265-729d-4963-87a2-660d558d5c95','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(1966,'HeatSafe','Cooler','UNDEFINED','b4be7e39-8cd9-4d38-af89-61ace9c67796','','','Item Type: Cooler\nManufacturer: Tyler Design & Tech \nSize: 1\nGrade: C\nClass: Stealth\n\nPilots looking to keep their IR signature low rely on Tyler Design & Tech. As an entry level cooler, the HeatSafe not only limits emissions, it is built with Tyler’s satisfaction guarantee.'), +(1967,'tool_manual_1_ratchet_a','Misc','UNDEFINED','19785c81-f788-4dcd-8e53-f9021d776bb4','','',NULL), +(1968,'IndVest Jacket Dark Green','Char_Clothing_Torso_1','UNDEFINED','e33c7622-154c-4d53-b9c7-c076ad306ced','','','Carrying Capacity: 5K µSCU\n\nKeep your tools within easy reach with Stegman\'s IndVest. Made from industrial strength materials, this is a rare jacket that\'s both stylish and sensible.'), +(1969,'Silverton Jacket Tan','Char_Clothing_Torso_1','UNDEFINED','c9eb28ff-e673-4942-86df-1858401d7034','','','Carrying Capacity: 1K µSCU\n\nWhen you\'re on the frontier, you need reliable clothing that won\'t fray when the going gets tough. That\'s why DMC made the Silverton jacket with double-stitched, element-resistant leather and plenty of roomy pockets so you can keep your supplies on hand. With the Silverton, you\'ll be prepared for anything.'), +(1970,'Remote Turret','Turret','GunTurret','bbde5f53-3923-4b20-b40f-cdc17cacf053','','','Remote Turret'), +(1971,'Door Control','Door','UNDEFINED','02ef9d20-b17f-48e8-972d-501047f5122b','','',NULL), +(1972,'Reliance','PowerPlant','Power','122c86dc-9d78-445d-9ebe-d2194ab94d4c','','','Item Type: Power Plant\nManufacturer: Juno Starwerk\nSize: 3\nGrade: B\nClass: Industrial\n\nHaulers have been a fan of the Reliance power plant for years. The component’s clean design and Juno Starwerk’s lauded customer support have made this power plant a fixture on ships around the Empire.'), +(1973,'Door','Door','UNDEFINED','07af82e1-74ec-4273-bd81-f1c12041b954','','',NULL), +(1974,'Hydrogen Fuel','Cargo','Cargo','e6b14720-8dfc-4446-a080-621b981bfffa','','',NULL), +(1975,'Gold (Ore)','Cargo','Cargo','c73f4d64-592e-4192-9248-3060656a53ec','','',NULL), +(1976,'Seat','Usable','UNDEFINED','b9e5f52c-a1c9-4574-9b35-49de2a08228b','','',NULL), +(1977,'Aves Core Epoque','Armor','Torso','945fab49-c444-411d-afe1-7f79f207ef65','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nHonor and embody the Tevarin aesthetic with the Aves armor. Cutting edge manufacturing techniques were used to apply plating perfectly to fit the Human form and evoke the shape language imbued into the Tevarin\'s iconic ships. This medium armor from CC\'s Conversions provides solid protection while keeping you light on your feet. When paired with the Aves helmet, the suit combines for a striking and unforgettable look.\n\nThe Epoque edition features a navy and black coloring, finished with baroque gold detailing.'), +(1978,'ORIG_100i_Cover_Back','Door','UNDEFINED','c0672cb4-61af-42d3-a54f-4737f548eb8e','','',NULL), +(1979,'VariPuck S1 Gimbal Mount','Turret','GunTurret','c41a73ef-4bac-4890-a0fe-476a9e89325b','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 1\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. This special VariPuck will accept any weapon the same size as the hardpoint it is mounting to.'), +(1980,'TMBL_Storm_Dashboard_Pilot_AA','SeatDashboard','UNDEFINED','5ea8e319-4330-4554-a267-c7528310e7b3','','',NULL), +(1981,'TRGT. STATUS','Seat','UNDEFINED','ed29f2ac-0589-47c1-911a-d28bda2b3e91','','',NULL), +(1982,'SafeCore Boots','Char_Clothing_Feet','UNDEFINED','c1454b56-c40e-45b4-86a7-374d3112d355','','','The SafeCore boots are a soft-shelled offering from Grindstone intended to provide more flexibility while traversing in adverse conditions.'), +(1983,'Riccite (Ore)','Cargo','Cargo','bf3253f5-fd3f-4a50-b6c6-70e71ccb4057','','',NULL), +(1984,'CargoBox_050x050x050_Metal_Stacked_3','Cargo','Cargo','96230ff4-3d3b-436f-9399-d140f4917187','','',NULL), +(1985,'Bed','Usable','UNDEFINED','2314bf95-b219-49fb-9193-28987ce88c02','','',NULL), +(1986,'INTK_ANVL_Valkyrie','FuelIntake','Fuel','8ece13d8-57c4-43ae-a7a7-c8908f9e6ac4','','',NULL), +(1987,'Vehicle_Screen_MFD_Holographic_MRAI_Guardian_L','Display','UNDEFINED','ede103af-e1e8-4a0a-8e0e-8e8beee4ea26','','',NULL), +(1988,'fruit_alien_6_c','Misc','UNDEFINED','c6f570ec-c385-43ad-9d8c-02df1fdebe34','','',NULL), +(1989,'Pulse Dominion Livery','Paints','UNDEFINED','43f7c505-eca6-4afb-9340-b6c9b548e9f2','','','Primarily black with sumptuous bronze highlights, the Dominion livery is a prestigious Pulse tint that displays a striking but understated elegance.'), +(1990,'fruit_alien_4_c','Misc','UNDEFINED','e2d8fa87-865e-48a6-a9a5-c880b94b1111','','',NULL), +(1991,'ForceFlex Undersuit Black/Seagreen','Armor','Undersuit','06cab33d-4e95-4aa2-901c-0cb2f0eb4350','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nVirgil\'s ForceFlex is the next generation in undersuit technology. Rated for combat as well as industrial work, you can rest assured that the comboweave will keep you protected in whatever situation you put it through.'), +(1992,'fruit_alien_5_c','Misc','UNDEFINED','6f3f72d0-aee9-42e0-990f-75713143fdc0','','',NULL), +(1993,'fruit_alien_2_c','Misc','UNDEFINED','f3e12f93-195d-4f7a-a4b3-86a42267f46c','','',NULL), +(1994,'fruit_alien_3_c','Misc','UNDEFINED','8a069176-b7cb-4f32-8164-741c432f767a','','',NULL), +(1995,'Bed_Mattress_AEGS_Med_Bay','Seat','UNDEFINED','23edb9ff-28e5-4a1b-ad27-f0e140954d78','','',NULL), +(1996,'Door Control','Door','UNDEFINED','e24abc9f-e271-4579-963b-b91bbdd65cdb','','',NULL), +(1997,'KRIG_l22_AlphaWolf_Thruster_Mav_Pipe_Right','ManneuverThruster','UNDEFINED','b2fbac49-062c-4de8-9fea-0cc74418e2e4','','',NULL), +(1998,'PH - hdh_pants_02_01_07','Char_Clothing_Legs','UNDEFINED','f1fb048a-3c31-4714-9156-eb33ab28ee28','','','Carrying Capacity: 7.3K µSCU\n\nStay warm and dry on rainy days in the Zelena pants and the Bisbee boots. Both made with water-repellant materials and built-in sweat-wicking technology, they\'ll be your go-to choice for adventures on even the most hostile worlds.'), +(1999,'Riccite','Cargo','Cargo','f0557125-1e7b-48bf-847b-88dd1bcf18ab','','',NULL), +(2000,'test_PowerCore','Cargo','Small','87a9dc2b-c52b-4ac3-8a6a-976c71877494','','',NULL), +(2001,'Fresh Food','Cargo','Cargo','49150a01-2e19-47f6-ae7a-db73b3b6a842','','',NULL), +(2002,'DoorProximitySensor_1x1x3','Sensor','DoorPart','c8e4227d-46c2-4242-8b1e-70efff97c8b0','','',NULL), +(2003,'Quantainium (Raw)','Cargo','Cargo','120cd24f-d3b2-4059-ba72-262357050c7f','','',NULL), +(2004,'P8-SC \"Midnight\" SMG','Weapon','Medium','c65903b1-82da-4da8-aed9-ee05a7610fe2','','','Manufacturer: Behring\nItem Type: SMG\nClass: Ballistic\n\nMagazine Size: 45\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nWhen the top fighting force in the universe chooses a weapon as their standard, it pays to stand up and take notice. The Behring-crafted P8-SC has been the ballistic submachine gun of choice for the UEE Marines since it first came off the production line, but since then, many have come to rely on this weapon for their own personal safety and protection.'), +(2005,'TRGT. STATUS','Seat','UNDEFINED','968481b3-4953-424b-a21d-049ad7b9a819','','',NULL), +(2006,'Lamb Tagine Combat Ration','Food','Sachet','1f55bacf-8182-44ae-be1c-ca72c6f0cc03','','','NDR: 80\nEffects: Hypertrophic, Hypo-Metabolic, Cognitive Boosting\n\nA full meal combat ration specially formulated to provide complete high-performance nutrition for UEE Army personnel.'), +(2007,'55-GR Pants','Char_Clothing_Legs','UNDEFINED','268dc38b-55aa-43c4-abe8-920110dbc24e','','','Carrying Capacity: 1K µSCU\n\nWith the help of iconic designer Ubaid, Escar Limited created these crop pants for the fashion forward who don\'t want to be overly flashy. The 55-GR features a subtle tartan pattern and baggy cuffs. \n\nWomen\'s sizes currently out of stock.'), +(2008,'300 Series Imperial Red Paint','Paints','UNDEFINED','99cbe3b1-e153-4ebb-bb24-5cc48af5f21d','','','Imperial Red paint job for the Origin 300i.'), +(2009,'ELD - shirt (04) - name','Char_Clothing_Torso_0','UNDEFINED','9bc21b79-5d2b-480e-acc0-133cba41eb70','','','ELD - shirt (04) - description'), +(2010,'Seat','Usable','UNDEFINED','f8676884-988c-44f1-8577-da9d3301fd5b','','',NULL), +(2011,'Custodian \"Desert Shadow\" SMG','Weapon','Medium','eb2d231f-cbdb-4342-b60b-1ce448b7fbc8','','','Manufacturer: Kastak Arms\nItem Type: SMG\nClass: Energy (Laser)\n\nBattery Size: 60\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe Custodian SMG from Kastak Arms focuses on a high rate of fire over damage and accuracy making it an ideal choice for sweeping through tight environments and close quarters combat.'), +(2012,'Shiv Earthquake Livery','Paints','UNDEFINED','3c1d3efb-e714-4036-b33a-25461c5b6e53','','','Upgrade the patchwork look of the Shiv with the Earthquake livery, which artfully mixes shades of beige and black.'), +(2013,'Seat','SeatAccess','UNDEFINED','3684e7aa-4c91-4a92-b767-d503bcde2f2e','','',NULL), +(2014,'ADP Arms Dark Red','Armor','Arms','59d58bc0-e998-4ff1-8709-5ee0ef44d355','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(2015,'Carryable_TBO_FL_16SCU_Commodity_Organic','Cargo','Cargo','1df43415-81ff-4fca-9432-465da8f3d9c0','','',NULL), +(2016,'MISC_Hull_C_CentralWalkway_PHYSICS','Misc','UNDEFINED','37b635b9-e83d-45aa-bfe9-3c8104afefb5','','',NULL), +(2017,'Weapon_Ship_Cz_002','Usable','UNDEFINED','dd0a6fc8-54b1-4ab9-8571-e736997e2a22','','',NULL), +(2018,'facial_hair_008','Char_Head_Beard','UNDEFINED','6c77f900-4da0-4378-891a-387d4c2572d2','','',NULL), +(2019,'300 Series Sagebrush Paint','Paints','UNDEFINED','f869a4da-b777-4cbb-9300-68ee55b3092e','','','Sagebrush paint job for the Origin 325a.'), +(2020,'un_medical_box_1_glove_a','Misc','UNDEFINED','852953bd-4abe-4950-82fb-5d7c40131039','','',NULL), +(2021,'RSI_Polaris_SeatAccess_Turret_SideLeft','SeatAccess','UNDEFINED','05918cba-b7b5-4bb4-881e-d70c8121d9c3','','',NULL), +(2022,'Deadrig Shotgun','Weapon','Medium','7b17e697-ad38-4999-87e4-14f5a6bee3ac','','','Manufacturer: Unknown\nItem Type: Shotgun\nClass: Ballistic\n\nMagazine Size: 8\nRate Of Fire: 120 rpm\nEffective Range: 0-10 m\n\nAttachments: N/A\n\nThe Deadrig is a high powered, double-barreled shotgun with a simple design pieced together from junkyard scraps. Prioritizing power above all else, the Deadrig lacks the refinement of mass-produced weapons and suffers from heavy recoil.'), +(2023,'Venture Arms Envy','Armor','Arms','e6b1eb33-77b1-4bbb-aea9-f4b2fd738dd4','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRobert Space Industries’ Venture Explorer Suit provides exceptional protection against the dangers of space. Designed for those who don\'t know where their next adventure might go, the suit combines comfort and safety without sacrificing mobility. This special Envy edition inspired by the Coramor festival features a vibrant pink and purple color scheme for the most enthusiastic of lovers.'), +(2024,'Yebira I','Weapon','Rocket','4d3e0757-eec3-44ec-b603-5eaafa6c80ac','','','Item Type: Rocket Pod\nManufacturer: Firestorm Kinetics\nSize: 1\nRockets: 3xS3\n\nThe Yebira I rocket pod is the perfect system for efficient deployment of S3 ordnance. Manufactured by Firestorm Kinetics, this rocket pod carries three rockets and attaches to any size one hardpoint.'), +(2025,'A03 \"Lodestone\" Sniper Rifle','Weapon','Medium','9257ba8a-e27f-4f6d-9a37-6da4f3955724','','','Manufacturer: Gemini\nItem Type: Sniper Rifle\nClass: Ballistic\n\nMagazine Size: 15\nRate Of Fire: 120 rpm\nEffective Range: 80 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nDevastate at distance with the A03 sniper rifle. Masterfully designed by Gemini\'s Tevarin co-founder Clem, the weapon balances a stylish and ergonomic design with a powerful ballistic punch. The A03 delivers an impressive rate of fire for a sniper rifle that sacrifices accuracy for urgency when successive shots are required. Considering its renowned design and unique features, it\'s easy to see why the A03 has become a favorite of security professionals across the empire.'), +(2026,'Cargo_Slot_RSI_Lynx_1Slot','Usable','UNDEFINED','0ae7e87c-8245-4306-8d35-549a99beffe3','','',NULL), +(2027,'MISC_Starlancer_Seat_Access_Pilot','SeatAccess','UNDEFINED','dbf181fd-cc33-4ea9-b943-ba69da8f9412','','',NULL), +(2028,'ANVL_Centurion_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','b7dd9e51-d9f6-443b-8555-6159c4621bad','','',NULL), +(2029,'utensil_tray_1_food_a_with_loadout','Misc','UNDEFINED','2b15b245-88bd-483e-beba-8521b840982b','','',NULL), +(2030,'VNCL_Blade_Thruster_Aux_Fixed_Bottom','ManneuverThruster','FixedThruster','2a6feae6-4626-462b-9db6-b3bb0758357b','','',NULL), +(2031,'Mala','Cargo','Cargo','5ba847c7-6c58-4757-bce5-85a870042e71','','',NULL), +(2032,'Chokehold Gloves Molten','Char_Clothing_Hands','UNDEFINED','424e65a6-88da-4913-b621-67a7cdd5cb16','','','When you can\'t afford to fumble. Flexible polyweave provide excellent grip plus ablative ceramic demi-gaunt reinforcement and close-fit cuffs. The Molten version is dyed a deep red to keep you subtle, but not unsightly.'), +(2033,'PH - scu_service_shirt_01_kelto01_01','Char_Clothing_Torso_0','UNDEFINED','8215d211-c654-4743-9468-067a95c233ea','','','PH - scu service shirt 01'), +(2034,'Seat','SeatAccess','UNDEFINED','349bc19b-f645-4bb8-b77c-454f8c61ef26','','',NULL), +(2035,'Inquisitor Core Green','Armor','Torso','33090eaf-b61e-4ffb-b398-040c7b88129e','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(2036,'ArmorStand_CLDA_hazmat_Tan','Misc','UNDEFINED','76dbd71b-54b9-4b14-88ae-6c4bc39d1a70','','',NULL), +(2037,'drug_packet_4_open_a','Cargo','UNDEFINED','08172348-0caa-4756-8c3a-54539d20822a','','',NULL), +(2038,'Tungsten','Cargo','Cargo','0c10e676-7f54-43d5-b5a1-4a5479d90d2e','','',NULL), +(2039,'DockingTube_Fuel_Ports_CRUS_Starlifter','DockingCollar','UNDEFINED','05243514-64e9-43bb-a0ac-f7e0dd2cbdbf','','',NULL), +(2040,'Bed_MISC_Starfarer_Crew','Usable','UNDEFINED','52a6a0f6-3556-46f2-a59a-5e937834136a','','',NULL), +(2041,'Taberna Jacket Arctic','Char_Clothing_Torso_1','UNDEFINED','424d7ac4-a5c0-46b2-b50f-728c4aa71cf8','','','Carrying Capacity: 5K µSCU\n\nThe Taberna jacket delivers refined design for rugged conditions. It features a weather resistant outer shell with additional paneling on the torso and arms. An integrated hood and shawl provide extra protection from the elements while a spacious toolbelt ensures gear remains within reach.'), +(2042,'ANVL_Carrack_Thruster_Mav_Top','ManneuverThruster','FixedThruster','514d62e4-5319-4390-81fa-c8b1eef8afb9','','',NULL), +(2043,'Custodian \"Foundry\'s Fire\" SMG','Weapon','Medium','dee0596c-b07a-4b16-bc2e-c7d550b3ff99','','','Manufacturer: Kastak Arms\nItem Type: SMG\nClass: Energy (Laser)\n\nBattery Size: 60\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe Custodian SMG from Kastak Arms focuses on a high rate of fire over damage and accuracy making it an ideal choice for sweeping through tight environments and close quarters combat.'), +(2044,'Torite','Cargo','Cargo','64f68fa3-cac5-4937-ba96-02a1189010d8','','',NULL), +(2045,'MOTH Dolomite Livery','Paints','UNDEFINED','67a22871-aa24-4a33-b59e-1b4f8cad1aa9','','','The Dolomite livery turns the MOTH white and grey with orange highlights.'), +(2046,'Aslarite (Raw)','Cargo','Cargo','0a0eb78e-6ef8-4899-9182-44e6f3bee40a','','',NULL), +(2047,'RADR_WLOP_S03_Lephari','Radar','MidRangeRadar','462c1e37-6259-4942-91e1-9c4de47ef0e4','','',NULL), +(2048,'OneMeal Nutrition Bar (Grilled Steak)','Food','Bar','b63510ef-b886-42a9-beb9-5d1cfe0ad085','','','NDR: 21\nEffects: Hypo-Metabolic\n\nOneMeal optimal nutrition bars are a scientifically balanced and complete meal replacement that\'s \"ready when you are.\"'), +(2049,'Cumulus Pants Yellow','Char_Clothing_Legs','UNDEFINED','f0341939-97c7-46d9-8423-ad11adbcaa8a','','','Temp. Rating: -35 / 15 °C\nCarrying Capacity: 3K µSCU\n\nBe bold and brave the cold with Cumulus pants. Designed with a synthetic fabric that insulates the inside and wicks away moisture from the outside, these pants provide protection against temperature drops to -35 °C.'), +(2050,'Door Control','Door','UNDEFINED','debc637f-6170-460d-a8ab-63b2ae75b054','','',NULL), +(2051,'Odyssey II Helmet Violet','Armor','Helmet','43112e68-7b11-4c73-86ef-43fb9f7df884','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(2052,'PH - hdh_boots_01_01_16','Char_Clothing_Feet','UNDEFINED','bbd3bfcf-d7b1-4d25-8db6-a93d0e7cfbba','','','Built to last, the Paradan boots from Habidash are simple, sturdy, and reliable. The outer layer of the boots is made from a thick synthetic material that will protect the wearer from water, sand, or snow, while the inside features a pliable foam that ensures the boots will remain comfortable for years to come.'), +(2053,'DockingTube_Fuel_Ports_AEGS_Sabre_Firebird','DockingCollar','UNDEFINED','4d6afee8-dc5a-4b86-bdcd-86a9ca2aaf39','','',NULL), +(2054,'S-38 Pistol','Weapon','Small','1f3400e1-0aa3-48bf-8595-38f4f4218df9','','','Manufacturer: Behring\nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 20\nRate Of Fire: 450 rpm\nEffective Range: 25 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThanks to a streamlined design and a lightweight polymer frame that helps to minimize recoil, it\'s easy to see why the versatile and dependable S-38 from Behring has become a trusted sidearm across the Empire for both citizens and law enforcement officers.'), +(2055,'INTK_AEGS_Avenger_Stalker','FuelIntake','Fuel','d35b073e-e69b-46da-a10d-b46f8ddb901e','','',NULL), +(2056,'Counter_Shop_DumpersDepot_b','Usable','UNDEFINED','2c8a6267-3fe1-4572-ac67-aefe5989673c','','',NULL), +(2057,'Deep-Space Undersuit','Armor','Undersuit','e1edb8e9-7287-4ff2-8425-bd505288e892','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nConfidently venture into the unknown with the Deep-Space undersuit. Smartly designed with several overlapping sections to guarantee the suit\'s integrity, Gyson has created an affordable and fashionable undersuit that helps make space travel more accessible to all.'), +(2058,'CRUS_Starlifter_Thruster_Mav','ManneuverThruster','JointThruster','35d015d2-1606-4ad5-8ca1-efca47032ddd','','',NULL), +(2059,'Bed','Usable','UNDEFINED','aace3ba1-9859-405a-afe4-fd9533149b00','','',NULL), +(2060,'Internal Tank','QuantumFuelTank','QuantumFuel','b5ed2da5-7fed-4366-9373-68d8f9604473','','',NULL), +(2061,'Weapon Rack','Usable','UNDEFINED','f47070e4-bdef-4582-b62d-0084d28a1c02','','',NULL), +(2062,'Pepper','Misc','UNDEFINED','8438070e-24ce-42e0-8df0-5690a10683bf','','',NULL), +(2063,'Medical Bed','Usable','UNDEFINED','009acfbf-afd3-4062-ada9-d792ccba5b96','','',NULL), +(2064,'Piecemeal Armor Arms','Armor','Arms','21e26536-0dfd-4d43-8247-679ce76ce06a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nThis armor was created using repurposed parts from a Caldera armor set to provide the wearer with an extra layer of protection against aggressors and harsh environments.'), +(2065,'Cutter Deck the Hull Livery','Paints','UNDEFINED','e9a5a74d-e263-4daa-82f8-ca3674c98536','','','Express your holiday spirit with the Deck the Hull livery, which uses the traditional Luminalia colors of green and red to celebrate the popular Banu festival that\'s become beloved by Humans.'), +(2066,'TRGT. STATUS','Seat','UNDEFINED','8a389875-cf37-466f-8a30-5ea98ffeb86c','','',NULL), +(2067,'Lamont Arroyo Undersuit','Armor','Undersuit','e1132d63-9907-4960-b40b-7e00caf6a248','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe Lamont looks so good you won\'t want to wear armor over it. Seamlessly blending lightweight plating with durable synthetic weaves, the Lamont will be as comfortable in the cockpit as it is stylish in the streets. Embrace personal protection gear suitable for both work and play, and gain the Hardin Tactical advantage.'), +(2068,'bar_box_energy_karoby_cranberry','ShopDisplay','Default','e4a14865-ad61-4d42-a4f9-b56199cd2066','','',NULL), +(2069,'TRGT. STATUS','Seat','UNDEFINED','8bc29759-775e-47be-97d6-3a69b4d6639a','','',NULL), +(2070,'RSI_Zeus_ES_Thruster_Mav_Top','ManneuverThruster','UNDEFINED','c1f3da4b-40d0-4dc0-b0b1-47b615d457d9','','',NULL), +(2071,'ArcCorp Hat','Char_Clothing_Hat','UNDEFINED','69c1c388-67b3-490d-a022-b4fcea81812f','','','A red and gray cadet hat with ArcCorp\'s name and logo emblazoned across the front panel.'), +(2072,'Lynx Core Twilight','Armor','Torso','5483e12a-ea5a-4f33-ba5b-aebeab803c8e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(2073,'Internal Tank','QuantumFuelTank','QuantumFuel','4d11dc4c-eb54-48bf-bca6-18aa41ea9dcf','','',NULL), +(2074,'Door Control','ControlPanel','DoorPart','282d498d-bcc0-4287-b4b5-7344b71187b9','','',NULL), +(2075,'Internal Tank','QuantumFuelTank','QuantumFuel','bd31c660-5dda-4e02-be7c-37c387074215','','',NULL), +(2076,'Seat','Usable','UNDEFINED','23ff624c-e833-45af-b616-5a62d639aac2','','',NULL), +(2077,'Barrymore Pumps','Char_Clothing_Feet','UNDEFINED','3b511237-26ea-4e5b-98d1-2bfcf9577c97','','','The Barrymore pumps are part of the Dyna Lei essentials collection. The shoes feature classic yet subtle curves and supportive insoles for an ultra-comfortable fit ideal for all day wear.\n\nMen sizes are currently unavailable.'), +(2078,'Door Control','Door','UNDEFINED','627efc4c-20f6-4b1b-8e7f-b799b2be7f1f','','',NULL), +(2079,'Alban Shirt Smoke','Char_Clothing_Torso_0','UNDEFINED','d08f5da8-f8b1-42d3-b24e-a71799891dbf','','','The Alban is a long sleeve shirt made from comfortable, natural fabrics. Featuring a deep V-neck, its asymmetrical patchwork design provides it with a bit of texture and a two-toned look.\n\nThe Smoke edition features a worn gray color.'), +(2080,'Carryable_TBO_FL_4SCU_Commodity_ProcessedGoods_EvidenceBox','Cargo','Cargo','978cc64a-ad8f-4521-b875-b4f10279bc75','','',NULL), +(2081,'Sharud Wrap and Arm Bands','Char_Clothing_Torso_1','UNDEFINED','e24a7029-05b4-4998-bb4d-f18a73ba5d7c','','','Carrying Capacity: 1K µSCU\n\nThe Sharud is an ideal top for staying cool in hot weather. Advanced production techniques allow Habidash to make a light yet absorbent shawl that looks and feels like handspun natural cotton but at a fraction of the cost. The three arm band pieces provide stylish accents and come embedded with microchips that tracks body temperature and other vitals.'), +(2082,'Door Control','Usable','UNDEFINED','54127adc-37d4-45e0-9956-c038f42e2737','','',NULL), +(2083,'Door','Door','UNDEFINED','d134b58b-ad0b-42f1-b9aa-0c97675a92de','','',NULL), +(2084,'Pyro RYT Multi-Tool','Weapon','Gadget','3a2dacbb-45ce-419e-b587-b9237b41e373','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier.'), +(2085,'Door Control','ControlPanel','DoorPart','83f7bd90-7bb3-4475-a57d-f5ed6ee01442','','',NULL), +(2086,'Raw Silicon','Cargo','Cargo','1cf32b3b-d2b5-49ab-8c61-554314babdc2','','','A strong and brittle element with good thermal conductivity. Crystalizes in a diamond form.'), +(2087,'Ares Star Fighter Outrider Livery','Paints','UNDEFINED','aa2b54d0-1423-49f0-8d3d-efbb49d2f401','','','The Outrider livery blends black with dark military green to highlight the Ares Star Fighter\'s warrior spirit.'), +(2088,'Seat','Usable','UNDEFINED','433d57a1-045e-48f7-849a-5050b89a7553','','',NULL), +(2089,'facial_hair_030','Char_Head_Beard','UNDEFINED','31de0f7c-a059-4a5c-8917-d699a79af303','','',NULL), +(2090,'XNAA_SanTokYai_Thruster_Main','MainThruster','JointThruster','e33c55dc-1b62-4fae-b876-ee829ef67601','','',NULL), +(2091,'Morozov-CH Backpack Crusader Edition','Armor','Backpack','f19807b9-521e-413d-9b19-618bfa748b1a','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nComfortably carry vital gear with the Morozov-CH backpack. This softshell bag is made with an advanced duraweave that\'s lightweight yet ready for battlefield action. It also features several easy to access pockets and a plethora of straps to keep supplies secure and tight to your back. The Crusader Edition was made specifically for the company\'s security services.'), +(2092,'Kopion Horn','Cargo','Cargo','8a52ac8f-1068-48d8-a7a6-69d843b9252b','','',NULL), +(2093,'SubItem_FuseCover','Misc','UNDEFINED','8b344343-5242-4b50-a7b8-b5a40209dc42','','',NULL), +(2094,'Pampero Boots Teal','Char_Clothing_Feet','UNDEFINED','a9c07f97-d02f-4b11-9c93-c8c1dba063e8','','','The Pampero are sleek ankle high boots feature lightweight yet durable soles to make it feel like you\'re walking on clouds even when trekking across the most unforgiving terrain.'), +(2095,'ORIG_325a_Intake','FuelIntake','UNDEFINED','690e3bee-83d4-40de-93d2-684c9e735f35','','',NULL), +(2096,'Seat','Usable','UNDEFINED','1ea09e37-b76e-4f30-90da-ca85dcf431f5','','',NULL), +(2097,'Molina Mold Samples','Cargo','Cargo','444eb565-f2d3-4dbf-8872-5d66190bcffe','','','Samples of the deadly Molina Mold securely sealed in biohazard containers to ensure its toxic fungal spores can\'t get airborne.'), +(2098,'Brocius Waist Apron','Char_Clothing_Torso_1','UNDEFINED','147536d0-7697-48cf-afd2-9abd7f879434','','','Habidash\'s Brocius Waist Apron features a quilted front panel paired with side skirting to protect the wearer from any overspills or other dirtying work while still providing freedom of movement.'), +(2099,'AEGS_Retaliator_SCItem_Seat_Bed_Rear_Right','Seat','UNDEFINED','9c9e4830-2c4b-4da0-abf1-2c4da2e85cee','','',NULL), +(2100,'Remote Turret','Turret','TopTurret','42344479-bde5-5ffc-b03c-6c092ec8fdb9','','','Remote Turret'), +(2101,'Wanderer Boots Rocky','Char_Clothing_Feet','UNDEFINED','ceb4434a-0c5d-41fc-bfa4-07bd68bd8a30','','','Grindstone\'s Wanderer line is an all-purpose boot designed to take any punishment you throw at it.'), +(2102,'DockingTube_Fuel_Ports_ANVL_Pisces_Expedition','DockingCollar','UNDEFINED','51cf2003-7f74-4b17-874e-e7a3ec74f77e','','',NULL), +(2103,'Carryable_2H_CY_furniture_pillow_1_b','Misc','UNDEFINED','ebfb36a8-e1bc-4917-ae32-ef21609cac01','','',NULL), +(2104,'F&V Blend Smoothie','Drink','Bottle','cd1e84dd-0b29-417e-b05e-6610829ec3d0','','','HEI: 35\nNDR: 14\nEffects: Immune Boosting\n\nA smoothie made with a fresh blend of fruits and vegetables.'), +(2105,'Yaluk','QuantumDrive','UNDEFINED','2f4b842b-6261-402d-ab6d-f49c2770c011','','','Item Type: Quantum Drive\nManufacturer: Juno Starwerk\nSize: 2\nGrade: D\nClass: Industrial\n\nThe bigger the haul, the harder your quantum drive has to work. With Juno Starwerk’s Yaluk onboard, you’ll know that you have a quantum drive that is up to the challenge of getting the job done.'), +(2106,'Carbon','Cargo','Cargo','c87348e5-281a-4d8d-b5fe-a7931e60a094','','',NULL), +(2107,'INTK_ANVL_Hornet_F7A','FuelIntake','Fuel','0402d021-733d-4756-aab4-16a6e31446a7','','',NULL), +(2108,'RSI_Polaris_Fake_Door_Hangar','Misc','UNDEFINED','6a77265b-4d6e-4833-9e5c-e65b5742ea71','','',NULL), +(2109,'Stirling Exploration Backpack Alkaline Edition','Armor','Backpack','b58d295c-0ac5-49cd-ba74-708f566fc845','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nThis heavy duty backpack is compatible with the Stirling suit and provides a convenient storage solution. Influenced by refined ores, the Alkaline Edition fuses black, bronze, and gray accents.'), +(2110,'Flight Blade','FlightController','UNDEFINED','af5c2d90-5297-4fd5-b1c5-8122577b1878','','',NULL), +(2111,'Borase','Cargo','Cargo','36f7c60e-cbdf-4b2a-9fd0-ea33307a1d11','','',NULL), +(2112,'Bed','SeatAccess','UNDEFINED','680a6215-41fc-4fb8-a115-3b8dd7c5016a','','',NULL), +(2113,'Navoi Boots and Pants Veritas','Char_Clothing_Legs','UNDEFINED','5ef4deda-6da8-45aa-a2f2-159071532468','','','Carrying Capacity: 0.4K µSCU\n\nBe ready to take on whatever the day brings when wearing the Navoi. This unique piece integrates the pants perfectly into knee high boots. Made from a combination of synthetic materials to be tough yet comfortable, the Navoi also comes with shin pads and pouches strapped onto each leg.\n\nThe Veritas edition is a bloody red, with black belts and leather straps.'), +(2114,'INTK_DRAK_Cutlass_Red','FuelIntake','Fuel','b68a1ff1-d225-48a3-b9a6-64c8c162e7d3','','',NULL), +(2115,'Door Control','ControlPanel','DoorPart','a1f0a473-3392-4878-b7e1-1c4e43dbb84d','','',NULL), +(2116,'Lynx Legs Olive','Armor','Legs','f6d4f561-6919-44ae-9d07-21d52d67022b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(2117,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','c592aa78-4153-4af4-9cf8-1523c7e209d7','','','Joker Defcon - Noise Launcher'), +(2118,'Carryable_TBO_FL_2SCU_Commodity_ProcessedGoods_AceInterceptorHelmet','Cargo','Cargo','51fb5d35-749d-47b2-98f8-81f5143b27d7','','',NULL), +(2119,'Flight Blade','FlightController','UNDEFINED','9abb9f19-ffdc-403b-9666-bd4ff0746c26','','',NULL), +(2120,'ORC-mkX Core Righteous','Armor','Torso','995f29cf-2038-4076-bf74-ab3341a72966','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nThis version of CDS\' ORC-mkX combat armor has been modified from its original form. The mark X is part of CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(2121,'Freelancer Crusader Livery','Paints','UNDEFINED','c9f9a3ca-a1e5-4d37-9791-f79442ba3820','','','The Crusader livery for the Freelancer features the company\'s logo atop a light blue base paint with black and white highlights.'), +(2122,'Monde Arms Delta Camo','Armor','Arms','ba8e1c12-5923-4a03-a717-6e450b582105','','','tem Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints. \n\nThis edition features a brown, gray, and tan camo pattern with brass accents.'), +(2123,'Bed','Usable','UNDEFINED','d084ee58-a2b8-49f1-a7b0-3e9cb2299799','','',NULL), +(2124,'Turret','Turret','BallTurret','569d2030-1362-43e7-8589-080fad7b9042','','','Item Type: Turret\nManufacturer: Crusader Industries\nSize: 3\n\nThis pilot-controlled, dual-linked nose turret is mounted to the belly of the Mercury Star Runner. Bespoke to the ship, the turret is outfitted with two size-3 laser repeaters ready to help keep your flight path clear.'), +(2125,'FR-76','Shield','UNDEFINED','be9729fb-c973-4c49-93cb-6a6f7c877408','','','Item Type: Shield Generator\nManufacturer: Gorgon Defender Industries\nSize: 2\nGrade: A\nClass: Military\n\nRefined by years of extensive, real world testing by the military, Gorgon Defender Industries FR-76 is the ultimate shield generator. Perfect for everyone from folks defending the frontline to those exploring the frontier.'), +(2126,'AEGS_Door_Decal_Avenger_Pod_6','Decal','DoorPart','261373de-19c2-4ab7-8d82-50d58b2edc58','','',NULL), +(2127,'350r Ship Armor','Armor','Medium','b699ab2c-f5ad-4f14-a46f-5620d12d525d','','','350r Ship Armor'), +(2128,'Cutter Central Tower Livery','Paints','UNDEFINED','a2b48d42-5798-4e2f-b610-198538a70b6e','','','Give the Cutter a dramatic new look with the Central Tower livery. The orange and black color scheme is inspired by the furnaces of industry powering Lorville, and also features a representation of the landing zone\'s iconic Central Headquarters and Shared Services Center, aka Central Tower.'), +(2129,'VaporBlock','Cooler','UNDEFINED','5f474dec-75e8-4626-9c0a-f5a48f841f33','','','Item Type: Cooler\nManufacturer: Tyler Design & Tech \nSize: 1\nGrade: B\nClass: Stealth\n\nFew coolers can match the stealth performance of the VaporBlock. The team at Tyler Design & Tech have crafted a cooler that keeps your ship’s signature low while delivering acceptable durability and performance.'), +(2130,'GVSR Repeater','Weapon','Gun','bcbd3b7e-4d12-448f-8866-cafd8e53b91d','','','Manufacturer: Behring\nItem Type: Laser Repeater\nSize: 2\n\nAegis commissioned Behring to design a laser repeater specifically for their Vanguard line-up. The result was the GVSR, which met Aegis exacting standards by delivering a steady rate of fire without overtaxing the ship\'s power plant.'), +(2131,'Table_Bar_2_Seat_High_Watertank_a','Usable','UNDEFINED','5f5b6e0d-83c3-456f-95c6-bfbee3461c0a','','',NULL), +(2132,'Hadanite','Cargo','Cargo','a239c05f-4536-4c9d-9455-bbc0fe4cc2c2','','',NULL), +(2133,'AIModule_Unmanned_PU_PIR','AIModule','UNDEFINED','77338d02-f321-45ab-997e-85eb7582e99b','','',NULL), +(2134,'fusepanel_col_a','Cargo','UNDEFINED','9eef4d55-5fbb-42c8-ae5e-d24f848615e8','','',NULL), +(2135,'Seat','Usable','UNDEFINED','b633778c-97d9-4d03-8db8-1b134aa320c6','','',NULL), +(2136,'Ventra Gloves Black','Char_Clothing_Hands','UNDEFINED','2fd2a3ae-e74c-4dd5-8513-8192887f1d22','','','Keep your hands warm and dry with Fiore\'s Ventra gloves. Microstitching creates a snug, tailored fit to keep you looking stylish and warm.'), +(2137,'ANVL_Spartan_SCItem_Dashboard_Driver','SeatDashboard','UNDEFINED','2fb62910-ac97-4caa-b6f7-281bf6f26161','','',NULL), +(2138,'facial_hair_019','Char_Head_Beard','UNDEFINED','547dcea1-2559-4f54-af6a-e7f025552e96','','',NULL), +(2139,'Drink_bottle_cognac_01_a','Drink','Bottle','9d7c6c8c-979b-4c16-bdd5-1a3776aeb89e','','',NULL), +(2140,'Flight Blade','FlightController','UNDEFINED','b204b115-8178-40ce-9959-cd5bddb06ffc','','',NULL), +(2141,'Seat','SeatAccess','UNDEFINED','10579633-fb78-4144-b0ac-77f1027d0943','','',NULL), +(2142,'TroMag Burst Generator','EMP','UNDEFINED','6557820b-a5d1-4630-80aa-44d41058e488','','','Manufacturer: MaxOx\nItem Type: Burst Generator\nSize: 1\nDamage Type: EMP\n\nThe TroMag from MaxOx is a well-designed and reliable EMP-focused burst generator. Its popularity has risen over the years as pilots look for alternatives to Behring’s REP-8. The TroMag boasts a faster charge time than their main competitor but has a smaller effective radius, leaving pilots to decide whether they prefer speed or size.'), +(2143,'Flight Blade','FlightController','UNDEFINED','5c453707-7c9d-44e9-a0d4-61fbeb7dc323','','',NULL), +(2144,'TS-25 Basara (2.5x Telescopic)','WeaponAttachment','IronSight','d2da6df5-7f4f-4ef3-ada2-92de87d7487a','','','Manufacturer: Klaus & Werner\nType: Telescopic\nAttachment Point: Optic\nMagnification: 2.5x - 5x\nAim Time: +5%\nParallax: Low\nSize: 2\n\nUtilizing the precise and immaculately crafted lenses that Klaus & Werner are known for, the TS-25 Basara provides unparalleled clarity and accuracy when equipped.'), +(2145,'Col Head Cover Teal','Char_Clothing_Hat','UNDEFINED','a8fef630-d37a-4e7e-afd7-58bcd57d5798','','','Temp. Rating: -30 / 15 °C\n\nThe Col is an insulated yet lightweight head cover that keeps heat from escaping. The large, chip-resistant faceplate features a cutting-edge GX coating to ensure the purest light quality for viewing the surrounding environs.'), +(2146,'Sabre Ashcloud Livery','Paints','UNDEFINED','cbd82715-40b5-48f1-9d3c-5597383c1b81','','','Equip the Sabre in this dark and discreet Ashcloud livery that\'s predominantly black with beautiful carbon fiber and copper details.'), +(2147,'Weapon_Rack_Cz_005','Usable','UNDEFINED','66d76e24-ffea-4573-9ce3-c70eabd27336','','',NULL), +(2148,'ARMR_ANVL_Paladin','Armor','Medium','e087882e-e595-4be9-9453-010962e20fbc','','',NULL), +(2149,'AAT-34 Turret','Turret','MannedTurret','a34be69f-2a83-4c98-bc01-9e9190128d17','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(2150,'TrueDef-Pro Core Silver/Gold/Grey','Armor','Torso','10851381-2c03-48e0-a6b2-cb84fd3a34ec','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(2151,'MacFlex Core Blue','Armor','Torso','3d80dd93-4f5c-472a-bf51-25e683f7ca7b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(2152,'Door Control','Door','UNDEFINED','852098d2-6fcc-4128-af35-48158ddcc76b','','',NULL), +(2153,'Door Control','Door','UNDEFINED','96780aaa-6f9e-4ff9-a039-5598cd9f7273','','',NULL), +(2154,'un_can_drink_2_a','Misc','UNDEFINED','3b1b92f9-e59f-4c23-a4fd-b48a20358044','','',NULL), +(2155,'Vehicle_Screen_Physical_L21_L','Display','UNDEFINED','8ae5736b-eceb-407a-85a1-32a0689ca10e','','',NULL), +(2156,'INTK_ORIG_85x','FuelIntake','Fuel','351aeb24-e455-4767-99ed-887d2f59cf4f','','',NULL), +(2157,'Aurora Mk II Cloudbuster Livery','Paints','UNDEFINED','c8ca15b3-5e3d-4d6a-b606-3e0f1cfed3e2','','','The Cloudbuster livery utilizes a contrasting pale gray against a rich blue, finished with playful yellow highlights.'), +(2158,'AAT-34 Turret','Turret','MannedTurret','b0329c6c-5a8d-41be-8baf-ad80e605c63c','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(2159,'Internal Tank','FuelTank','Fuel','c36f6a0e-4f4a-4335-b788-f76fd9e998a6','','',NULL), +(2160,'RangeFinder Jacket Aqua','Char_Clothing_Torso_1','UNDEFINED','4ceb0ca3-1ebd-41be-a5ff-bd1e57db89c0','','','Carrying Capacity: 3K µSCU\n\nThis insulation outdoor jacket from DMC is lined with reinforced padding to provide durable comfort for everyday wear.'), +(2161,'Corundum','Cargo','Cargo','f8822a2b-d7db-4556-98d3-a94fae02ceb7','','',NULL), +(2162,'Impulse','QuantumDrive','UNDEFINED','cbcfa21a-a9b8-4932-945a-ad2a93971157','','','Item Type: Quantum Drive\nManufacturer: ArcCorp\nSize: 3\nGrade: B\nClass: Civilian\n\nLegend claims an inaccurate lathe cut materials thinner than expected on the Impulse prototype. When its test performance exceeded expectations, engineers adopted the changes, and ArcCorp\'s premiere size three quantum drive was born.'), +(2163,'Agure','Radar','MidRangeRadar','94e97499-375e-4c63-a2ea-c605a4d3f461','','','Item Type: Radar\nManufacturer: Groupe Nouveau Paradigme\nSize: 0\nGrade: D\nClass: Military\n\nTrusted by many security firms for their vehicles, this reliable and consistent radar will keep your operation on track.'), +(2164,'Amaris Shirt Ochre','Char_Clothing_Torso_0','UNDEFINED','6400df60-19b1-4c4b-97ba-809da6fc99a2','','','The rugged Amaris Shirt is a breathable long-sleeve shirt reinforced by raised fabric on the shoulders to create an elegant but industrial look.'), +(2165,'Access','SeatAccess','UNDEFINED','6df5bcdd-fd7f-40e5-9d71-a0bb0dd961f1','','',NULL), +(2166,'Inquisitor Legs Earthwork','Armor','Legs','ff37159c-c703-4ec1-bb06-670929105e56','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(2167,'BEHR_LaserCannon_FiringMechanism_S7','WeaponAttachment','FiringMechanism','df8259d1-ae3e-4d10-bfd0-60807ac88b3e','','',NULL), +(2168,'Pulverizer \"Mustard\" LMG','Weapon','Medium','a8a23362-79b1-44bf-b7a8-d5c91ffc9a82','','','Manufacturer: Unknown\nItem Type: LMG\nClass: Ballistic\n\nMagazine Size: 120\nRate Of Fire: 355 rpm\nEffective Range: 100 m\n\nNothing like ripping through a huge mag of .50 cal bullets to scare away unwanted guests. Based on a modified FS9, the Pulverizer LMG wastes no time with pleasantries, instead lends itself to a more direct confrontational approach. \n\nThe Mustard version features a yellow paintjob.'), +(2169,'GATS_BallisticCannon_PowerArray_S1','WeaponAttachment','PowerArray','672d036b-ffbd-4dab-8a64-7bd7f0595f0b','','',NULL), +(2170,'GAMA_Syulen_Thruster_Mains_Small','MainThruster','FixedThruster','f4cc5500-1dc5-4eb3-affa-cbbfa6d500fe','','',NULL), +(2171,'Seat','Usable','UNDEFINED','1574f133-7688-4caa-a233-136716fff86a','','',NULL), +(2172,'Hephaestanite','Cargo','Cargo','caccaebe-1830-4bd5-b034-62484431255f','','',NULL), +(2173,'Agricultural Supplies','Cargo','Cargo','6e9e8d41-2b26-41ef-ad34-40511ee253da','','',NULL), +(2174,'CRUS_Star_Runner_Thruster_Retro','ManneuverThruster','UNDEFINED','74ce0251-2f06-48c6-9ff2-929503a4cdc3','','',NULL), +(2175,'Remote Turret','Turret','GunTurret','ddef5a65-6ba0-458a-8345-077de298cd15','','','Remote Turret'), +(2176,'Anvil F7A Hornet Mk I Nose Turret','Turret','CanardTurret','61c0e15d-9219-4d8b-ad78-51a2bd0a78cb','','','Item Type: Turret\nManufacturer: Anvil Aerospace\nSize: 3\n\nThis nose turret was designed specifically for Anvil\'s F7A Hornet Mk I to allow for mounting two Size-2 weapons and precise gimbaled tracking of targets.'), +(2177,'Seat','SeatAccess','UNDEFINED','3f8ff318-91ae-4772-8f70-3cd006156efd','','',NULL), +(2178,'Bed_RSI_Phoenix_Left','Usable','UNDEFINED','9f431446-e016-4f4e-b6b4-c4bf47b594b0','','',NULL), +(2179,'Tempest II Missile','Missile','Missile','a655616b-772f-4760-b6a1-404497eb10ec','','','Manufacturer: Firestorm Kinetics\nTracking Signal: Cross Section\nSize: 2\n\nThe Tempest was designed with nothing but annihilation in mind. Utilizing FireStorm Kinetics\' targeting technology, this proximity missile locks onto a target\'s cross section to draw conflicts to a swift conclusion.'), +(2180,'Carrack Citizens for Prosperity Garnet Livery','Paints','UNDEFINED','70534a42-fc5e-4006-856b-f64b2b4d77ab','','','Join the Citizens for Prosperity in their mission to bring peace to the frontier with this dark grey and burgandy livery featuring the group\'s signature logo.'), +(2181,'KRIG_l22_AlphaWolf_Thruster_Mav_Capsule_Top','ManneuverThruster','UNDEFINED','204ffee1-11f3-4499-8567-9ed83b744621','','',NULL), +(2182,'Mantis Skullcrusher Livery','Paints','UNDEFINED','75d33e03-5647-476d-88b1-e495abece87b','','','Exude attitude with the Skullcrusher livery for the Mantis, which features a massive skull decal across the top.'), +(2183,'MSD-313 Missile Rack','MissileLauncher','MissileRack','f8d3a1e1-0d75-45bb-a453-898a7cf83382','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 3\nMissiles: 1xS3\n\nBehring’s MSD-313 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 3 hardpoint for the reliable and effective launch of one S3 missile.'), +(2184,'TRGT. STATUS','Seat','UNDEFINED','7b34c656-dbc9-438d-a20d-b65e484b11b1','','',NULL), +(2185,'Lamont Corvus Undersuit','Armor','Undersuit','d2c7edff-63ae-4b69-971d-a4a03db6dfc8','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe Lamont looks so good you won\'t want to wear armor over it. Seamlessly blending lightweight plating with durable synthetic weaves, the Lamont will be as comfortable in the cockpit as it is stylish in the streets. Embrace personal protection gear suitable for both work and play, and gain the Hardin Tactical advantage.'), +(2186,'Human Food Bars','Cargo','Small','172e5211-6eed-4dc7-8fa6-1e7cabd0460f','','','Despite what the label on the packaging declares, the Banu manufactured \"Human Food Bars\" have been shown to contain multiple additives deemed unsafe for Human consumption.'), +(2187,'Year of the Rooster Envelope','Cargo','Cargo','9ebd94f1-9523-4e50-b2de-0fa5397b1899','','',NULL), +(2188,'RSI_Perseus_Seat_Access_Gunner','SeatAccess','UNDEFINED','93a623b0-4122-4a51-aed8-efa2f5e142e4','','',NULL), +(2189,'Pink QuikFlare','Weapon','Gadget','96ceb011-ae61-45eb-85c3-21093623b4b8','','','Manufacturer: Shubin Interstellar\n\nIlluminate the way forward or signal for help with the Pink QuikFlare from Shubin Interstellar. For centuries, miners have counted on this flare as part of their core toolkit, thanks to its tried and true design and durability that ensures it stays ablaze in the various harsh weather and difficult atmospheric conditions encountered across the \'verse.'), +(2190,'Regulus','PowerPlant','Power','688aab9c-bc62-4774-be7d-065dee7e2187','','','Item Type: Power Plant\nManufacturer: Aegis Dynamics\nSize: 1\nGrade: C\nClass: Military\n\nThe Regulus is the power plant you can count on when everyone is counting on you. Made to exceed exacting military standards, Aegis’ design team has made sure that you have the extra power you need, when you need it most.'), +(2191,'F55 \"Deadlock\" LMG','Weapon','Medium','fd510860-a431-42fd-8648-ac86b4d58368','','','Manufacturer: Gemini\nItem Type: LMG\nClass: Ballistic\n\nMagazine Size: 150\nRate Of Fire: 1000 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S2), Barrel (N/A), Underbarrel (S3)\n\nFeaturing an explosive rate of fire that tops at a 1000 rpm and Gemini\'s sleek and professional styling, the F55 is a light machine gun for discerning clientele who want the \'verse to know that they are not to be trifled with. \n\nThe Deadlock variant features a grey camo pattern.'), +(2192,'Lt_B_Door_Override','Misc','UNDEFINED','f3878004-716a-4d3f-8911-ac92f048e165','','',NULL), +(2193,'Pite','Char_Head_Piercings','UNDEFINED','4c5a18d6-cb25-4750-9edd-ec01961f470f','','',NULL), +(2194,'facial_hair_001','Char_Head_Beard','UNDEFINED','3df7bdc3-ea80-47db-bbb7-8a6f28701c3e','','',NULL), +(2195,'RSI Decoy Ammo Box','WeaponDefensive','CountermeasureLauncher','ab68559a-4ef5-446b-9e13-efd92924911d','','','RSI Decoy Ammo Box'), +(2196,'Zeta-Prolanide','Cargo','Small','be9dfde4-55e4-421b-8d00-2274082f91cb','','','This chemical is an industrial reactant that has found widespread use neutralizing irradiated materials. Because of how volatile it is, it must be kept in an electrically charged state or else a rapid exothermic reaction may occur before desired.'), +(2197,'ExerciseSpot_With_Mat','Usable','UNDEFINED','06fd30e9-d054-4bd8-88c4-d0092409e3aa','','',NULL), +(2198,'LH86 \"Warhawk\" Pistol','Weapon','Small','e0a377a8-c275-4c88-9885-3746f50caf9e','','','Manufacturer: Gemini \nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 25\nRate Of Fire: 1200 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe LH86 from Gemini is a compact kinetic handgun designed for personal defense and close-quarter combat. A keen eye on ergonomics and balance coupled with hardy construction makes this pistol a natural fit for any shooter in any number of hostile conditions. The LH86 also comes with Tritium low-light sight and a twenty-five round magazine.'), +(2199,'Desert Quasi Grazer Egg','Misc','Harvestable','b3f97a24-b941-4551-ba4b-161b5af139e8','','','A gourmet egg that is renowned for its complex flavor, it is always in demand from restauranteurs and gourmands alike. The flavor of the egg can vary depending on diet and environment. After the eggs are laid, their shells chemically bond to specialized pouches located on the Quasi grazer\'s belly, where they are carried until they hatch.'), +(2200,'Salt','Misc','UNDEFINED','d4c6464e-b7d6-4987-baa8-f2fef51553f6','','',NULL), +(2201,'Lynx Legs Ferrum','Armor','Legs','269611ac-9ad2-4b4d-b564-47158e31a76a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(2202,'DRAK_Golem_OX_Thruster_Main_VTOL_R','MainThruster','FixedThruster','24619995-b3dc-4c28-be3c-419d15483eb1','','',NULL), +(2203,'Manned Turret','TurretBase','MannedTurret','0808fb16-e925-4b7b-bcdb-3aafe7c1e51d','','',NULL), +(2204,'Lost Plague Helmet Explosive Orange','Armor','Helmet','6f6c2153-0e56-4f89-b958-2818538e343b','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -40 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nInfect your friends with your Day of the Vara spirit when you wear this helmet inspired by the hit vid Lost Plague. The helmet perfectly replicates the horrific death of xenoarchaeologist Diane Wu, first victim of the ancient alien virus she unwittingly unleashes on an unsuspecting galaxy. CC\'s Conversions utilized a proprietary lightweight yet sturdy rubber to accurately reproduce the deadly plague\'s signature spines so you can enjoy hours of wear without straining your neck.'), +(2205,'LH86 \"Luckbringer\" Pistol','Weapon','Small','4ead50b4-ffef-46b1-8f2d-e4c5e489786b','','','Manufacturer: Gemini \nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 25\nRate Of Fire: 1200 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe LH86 from Gemini is a compact kinetic handgun designed for personal defense and close-quarter combat. A keen eye on ergonomics and balance coupled with hardy construction makes this pistol a natural fit for any shooter in any number of hostile conditions. The LH86 also comes with Tritium low-light sight and a twenty-five round magazine. This special green and grey Luckbringer edition released for Stella Fortuna 2954 is a great way to get luck on your side.'), +(2206,'Taos Balaclava and Goggles','Char_Clothing_Hat','UNDEFINED','3bb81f10-c0a1-4096-be19-e785d02b9fbf','','','Fearlessly face any weather with the Taos balaclava and goggles. An ultra-soft inner lining provides warmth and comfort while a special exterior coating repels precipitation. The adjustable headband ensures an ideal fit, and the padding of the anti-fog goggles is integrated directly into the fabric to seal out the elements.'), +(2207,'ORIG_300i_Seat_Bed','Seat','UNDEFINED','05f30fb7-2aa4-497a-8e30-9b07f2993460','','',NULL), +(2208,'ARGO_SRV_Thruster_Mav_Top','ManneuverThruster','UNDEFINED','e14330aa-6469-40a2-8dfb-51ee671df2c7','','',NULL), +(2209,'Bed','Usable','UNDEFINED','5876e76f-d77b-4b07-a496-546db54fe2d4','','',NULL), +(2210,'PAB-1 Legs Red','Armor','Legs','1d6987f1-51c0-4a3a-b564-0e599d24f905','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(2211,'Ardent Boots Orange','Char_Clothing_Feet','UNDEFINED','3baa5546-317b-4540-9734-e270f09c85c3','','','Who says NorthStar can\'t keep it pro? The Ardent boot features a molded rubber sole and all-weather construction to withstand a constant battery from the elements.\n\nWomen\'s sizes currently out of stock.'), +(2212,'Spirit Radiant Livery','Paints','UNDEFINED','3e4776bd-4a76-43cb-a599-a4051b7fa95f','','','Let the sight of the Spirit burn brightly with the Radiant livery, which is a vibrant yellow with black highlights.'), +(2213,'Odyssey II Undersuit Sunset','Armor','Undersuit','c5d3c332-9bca-4818-b1b6-603054bc543d','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe latest generation of RSI\'s classic Odyssey undersuit features a new rugged design capable of withstanding the harshest of conditions in space or planetside. Built using the latest microweave technology, the Odyssey II undersuit provides hours of comfort in locations that are anything but comfortable.'), +(2214,'Antium Helmet Midnight Sun','Armor','Helmet','6e0b78ef-3bab-49d1-abb0-aa8f092918de','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -85 / 115 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(2215,'Weapon_Rack_MISC_Starlancer_TAC','Usable','UNDEFINED','c8ae14ec-eb96-43a6-bea7-4c6493d20422','','',NULL), +(2216,'Invictus Flyby Hat Blue','Char_Clothing_Hat','UNDEFINED','18efa5a5-38f5-4ef5-82c6-77658b554b90','','','A classic blue cadet hat commemorating Invictus Launch Week and featuring the silhouette of a ship across the front.'), +(2217,'Antium Helmet','Armor','Helmet','8821103e-f5fa-46d9-99c4-f3d6b5e5cb24','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -85 / 115 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(2218,'Borase (Ore)','Cargo','Cargo','78099b08-6768-4dba-a27c-bc8d395d23b9','','',NULL), +(2219,'HEX','Shield','UNDEFINED','2de33b34-afaf-40ec-ab30-0a5039946866','','','Item Type: Shield Generator\nManufacturer: Seal Corporation\nSize: 1\nGrade: B\nClass: Civilian\n\nPrepare your ship for any circumstance by installing a HEX from Seal Corporation. Balanced performance and durability make this an ideal, versatile choice for those who don’t know where their next adventure may take them.'), +(2220,'Morozov-SH Helmet Smokescreen','Armor','Helmet','b2cc5f92-d8c3-43d2-8ca6-cf05dfc38f9f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(2221,'Xanthule Sehya Helmet','Armor','Helmet','a672f906-b927-415e-959a-b558b0d43b6e','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nAdapted by Syang Fabrication to meet the unique requirements of the Human physique, the Xanthule helmet faithfully recreates the bold silhouette preferred by Xi\'an. When paired with the Xanthule suit, it creates a distinct and eye-catching look.'), +(2222,'PowerSuit_SCItem_Dashboard','SeatDashboard','UNDEFINED','123e66a3-816f-4a87-8381-c9be0d1bfc38','','',NULL), +(2223,'Door Control','ControlPanel','DoorPart','e79cd97e-4e55-4749-9242-90692b572ac0','','',NULL), +(2224,'V880','Radar','MidRangeRadar','5fd1c4a5-853e-4643-ae44-606d03a8edd8','','','Item Type: Radar\nManufacturer: Groupe Nouveau Paradigme\nSize: 3\nGrade: A\nClass: Military\n\nProviding useful assistance when detecting hostiles, the V880 brings the power of military technology to the consumer market.'), +(2225,'Organics','Cargo','Cargo','ef4dc5cb-6201-4434-96a9-bf7bd6fe0dea','','',NULL), +(2226,'ANVL_Hornet_F7_Mk2_Thruster_Mav_Front_1','ManneuverThruster','JointThruster','687d5f53-61bd-4dab-ae29-f1604bbe01b5','','',NULL), +(2227,'AEGS_Vanguard_SCItem_Seat_Bed_Lower','Seat','UNDEFINED','5505bf9e-225e-4cfc-9c23-594537f86d9d','','',NULL), +(2228,'Arden-SL Arms Coramor Edition \"Fate\"','Armor','Arms','fade1db1-e166-4e5d-bc7c-332a83019817','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics. The special Coramor Fate edition been updated with vibrant pink and light grey coloring.'), +(2229,'KRIG_P72_Archimedes_Thruster_Retro_01','ManneuverThruster','FixedThruster','2cbcbfe7-f4a2-46e1-a9cc-fa7d552dbaae','','',NULL), +(2230,'Wolf Heatsink Livery','Paints','UNDEFINED','c3e7a9e5-9782-4fdb-849f-86f8eb40e1a0','','','The Heatsink livery features a two-tone striped blue base paint with bold yellow and red highlights.'), +(2231,'Defender Platinum Livery','Paints','UNDEFINED','5ccd4753-7127-48f6-9699-867ea22f6817','','','The Platinum livery uses several shades of silver to accentuate the Defender\'s unique look.'), +(2232,'Locker_Suit_RSI_Polaris_Captain','Usable','UNDEFINED','6a462d34-a369-4f21-aa40-1d21cbab5757','','',NULL), +(2233,'Iodine','Cargo','Cargo','1d18a4a6-57d2-44a7-a798-32aea920877a','','',NULL), +(2234,'Hadanite','Cargo','Cargo','5e34efbb-54df-4d3e-a12f-14c06675d1c8','','',NULL), +(2235,'Door Control','Door','UNDEFINED','9d1b1887-6e31-44dd-94fc-f77681bfb142','','',NULL), +(2236,'Seat','Usable','UNDEFINED','22418767-3104-4659-be14-cf3329ecc8fa','','',NULL), +(2237,'MISC_Freelancer_SCItem_Seat_Bed_Lower_Right','Seat','UNDEFINED','f6e4ade8-7b7a-4bb9-91e6-dbccec421e57','','',NULL), +(2238,'DRAK_Clipper_Thruster_Retro_Left','ManneuverThruster','UNDEFINED','c4c39ace-92a7-46a7-8d62-096c3feac067','','',NULL), +(2239,'Castillo Jacket Fog','Char_Clothing_Torso_1','UNDEFINED','f2c5162c-e026-469c-beca-bacc7bec4a38','','','Carrying Capacity: 1K µSCU\n\nRefined enough for day, but ready for night, this jacket is essential for any young professional\'s collection. Notched lapels and a center back seam provide a tailored look at the Spar Van Miles price.\n\nWomen\'s sizes currently out of stock.'), +(2240,'Carryable_1H_CY_bottle_alcohol_01_beer_smoltz_anim_a','Drink','Bottle','9031314a-b76d-4e60-bce8-b61706be4ce3','','',NULL), +(2241,'Bed','Usable','UNDEFINED','6b8d99d0-cd74-4e89-8dd9-a3bf2a32269a','','',NULL), +(2242,'Giotto Jacket Teal','Char_Clothing_Torso_1','UNDEFINED','4e62dc1a-c7da-4170-a482-c5e5e4270355','','','Carrying Capacity: 1K µSCU\n\nFiore elevates the typical suit jacket with the Giotto. Subtle and stylish flourishes include light lines running down the left lapel and a strip of accent fabric along the arm seams that connect across the back of the jacket. The end result is an elegant and inspired addition to any wardrobe.'), +(2243,'Atlasium','Cargo','Cargo','9bd39a36-4c9f-47c2-b0c4-c0a2019922b4','','',NULL), +(2244,'ANVL_Hornet_F7A_Mk2_Thruster_Retro','ManneuverThruster','JointThruster','9116dc5d-28f2-487b-90ba-dc0739f0610d','','',NULL), +(2245,'SCItemDisplayScreen_NewsScreen_Orison','Display','Default','b0e6f56b-4e07-4c81-80ad-4d73776df4cd','','',NULL), +(2246,'Morozov-SH Legs Scorched','Armor','Legs','5982a672-c426-4537-b76d-10076a837cc2','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5K µSCU\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(2247,'Weapon Rack','Usable','UNDEFINED','7bdce088-6a90-4ab9-a2f7-5a2956170768','','',NULL), +(2248,'Omnitrek Jacket Permafrost','Char_Clothing_Torso_1','UNDEFINED','0ad851e9-678a-4a36-9af9-1f3818f1f142','','','Carrying Capacity: 1K µSCU\n\nBe ready for anything with DMC’s Omnitrek, the survival jacket designed for maximal performance in adverse weather conditions with the addition of the water-resistant collapsible collar. The Omnitrek also provides numerous storage options across both sleeve and chest pockets.'), +(2249,'DockingTube_Fuel_Ports_AEGS_Retaliator','DockingCollar','UNDEFINED','ed03914c-e710-4ce9-8c60-7ed33d5892ad','','',NULL), +(2250,'Retaliator Torpedo Front Module','Module','UNDEFINED','e336f444-1d23-4707-8ec1-570b7205e83b','','','Standard equipment for most UEE military Retaliators, this front module can carry 4x S9 torpedoes.'), +(2251,'RSI_Zeus_ES_Thruster_Mav_Bottom','ManneuverThruster','UNDEFINED','d861295e-0455-4c61-8aca-52fd998be3aa','','',NULL), +(2252,'VariPuck S6 Gimbal Mount','Turret','GunTurret','b9663f1c-c365-4c87-9086-1fdf626ede64','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 6\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(2253,'Year of the Horse Envelope','Misc','UNDEFINED','c5a6b5c4-5773-4020-bd6a-479b7f69cc34','','','A gilded red envelope celebrating the Year of the Horse. Exchanging gilded red envelopes is one of the most popular ways of celebrating Red Festival. Often the envelope may include a small amount of credits inside to help those you care about have a strong start in the upcoming cycle. Growing in popularity is the newer tradition of hiding the envelopes as a way of spreading good fortune and prosperity to those that fate has deemed in need. '), +(2254,'MISC_Freelancer_Thruster_DUR_Main','MainThruster','FixedThruster','1af82257-3ff6-4489-b2a6-06f6e08db483','','',NULL), +(2255,'Ball','Char_Head_Piercings','UNDEFINED','d8145c08-5e71-46b5-a205-1fbdb56b4380','','',NULL), +(2256,'Util_A_Bulkhead_Airlock_Large','Usable','UNDEFINED','178cd7a4-a55d-4949-9beb-b741a3039787','','',NULL), +(2257,'DRAK_Vulture_Component_Computer','Player','UNDEFINED','75a56aed-79d7-4a54-9a58-de4024580b3d','','',NULL), +(2258,'MISC_Starlancer_OuterBtn','Elevator','UNDEFINED','63d5bca2-b9fa-49fc-bb21-6e3552beb16d','','',NULL), +(2259,'Adiva Jacket Tan','Char_Clothing_Torso_1','UNDEFINED','faa0a963-75b8-4f1c-9806-57f9c52d1d92','','','Carrying Capacity: 1K µSCU\n\nDefine your ultimate you. The Adiva is an asymmetrical pullover with bold mixed-materials and solid reinforced trim.'), +(2260,'Beradom','Cargo','Cargo','7bf152c5-b916-4673-becc-b1ca9e8387b7','','','Formed when sap from the Beraber Fir is crystalized during forest fires, this transparent deep blue \"gemstone\" is often polished smooth and used in jewelry. While it can be manufactured by growing trees and then doing a controlled burn, the time investment for the trees to reach the proper maturity still make this a rare commodity.'), +(2261,'Sabine Undersuit Red Festival','Armor','Undersuit','6bd949ad-cb9d-41d1-b6a5-2ac931bc61d5','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThe Sabine embodies the advanced look and performance you expect from Quirinus Tech. This cutting edge undersuit integrates strong, yet flexible microweaves with strategically placed plating to provide protection while remaining lightweight. Featuring a sleek design, the Sabine undersuit will ensure you stay safe and stylish no matter the path ahead. \n\nThis special Red Festival variant features deep red and gleaming gold accents to help give your lunar new year an auspicious start.'), +(2262,'Turret','Container','Cargo','31964656-baa7-4a9f-af1c-9ede79fdb0df','','',NULL), +(2263,'H_Dashboard_Projector_HUD_RSI_Zeus_CP_L','Display','UNDEFINED','c555b750-f66d-47da-a72a-9db3e099f5eb','','',NULL), +(2264,'RSI_Polaris_SeatAccess_Turret_SideRight','SeatAccess','UNDEFINED','48755b6d-4340-4250-a50a-cd14c1ead281','','',NULL), +(2265,'Libio Jacket Dark Red','Char_Clothing_Torso_1','UNDEFINED','d5c52258-f451-4b5b-a126-f754ba4085e8','','','Carrying Capacity: 1K µSCU\n\nOne of OpalSky\'s classic pullovers, the Libio features a two-tone asymmetrical pattern and polyweave blend to keep it elegant and striking every time you wear it.\n\nWomen\'s sizes currently out of stock.'), +(2266,'Body','Char_Clothing_Hands','Medical','6fcf184d-6751-4b1c-8a3d-d3a5810da2a8','','',NULL), +(2267,'Seat','SeatAccess','UNDEFINED','fe9e7689-75da-4a87-a7d9-e7ee6ca6b4bd','','',NULL), +(2268,'F_Holo_Briefing_Idris','Display','UNDEFINED','d0d13a55-2ce8-481b-87ae-e9890b47e190','','',NULL), +(2269,'Paint_Prospector_NineTails','Paints','UNDEFINED','00cfceea-952f-48f6-b3e7-4939109a8c6a','','',NULL), +(2270,'Cutter Aspire Livery','Paints','UNDEFINED','de4b8008-b8a6-4714-b0d8-e25c4b0c1744','','','With the Aspire livery, blue and white combine to evoke both the colors and frigid temperatures of New Babbage. In honor of the landing zone that inspired it, the livery also features a depiction of the Aspire Grand building that dominates the city\'s skyline.'), +(2271,'Origin Black Rook','Gadget','UNDEFINED','cc59d92a-a095-44c5-b4c5-e59735149f88','','','Made exclusively for Origin Jumpworks and included with the 890 Jump, this black chess piece is a modern version of a classic set.'), +(2272,'Small Artifact Fragment (Pristine)','Misc','UNDEFINED','d81691b2-10ef-4f51-b611-d6060b58b451','','','A small artifact fragment of unknown origin and made of an unidentified material. Though broken, it\'s otherwise considered in pristine condition, and features intricate etchings that subtly glow green.'), +(2273,'Quartz \"Crusader\" Energy SMG','Weapon','Medium','81cd000c-69a7-4125-848a-e91c649a61c1','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: SMG\nClass: Energy (Electron)\n\nBattery Size: 45\nRate of Fire: Beam\nEffective Range: 15-20 m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nManufacturer VOLT\'s Quartz SMG utilizes exciting new weapon technology that fires a short range beam that fractures into multiple beams the longer it fires, making it an extremely effective close quarter weapon. This special edition features Crusader branding.'), +(2274,'Corundum','Cargo','Cargo','31f95b2e-7284-4a4f-94d7-3deccbc6b367','','',NULL), +(2275,'Davin Work Gloves Purple','Char_Clothing_Hands','UNDEFINED','c748ae44-143b-4673-b87e-d4e47fc83147','','','Field-tested for over fifty years, you can find Davin work gloves at numerous sites and ships around the Empire. Stegman\'s rugged construction and comfort lining have made them a customer favorite.'), +(2276,'RSI_Polaris_Thruster_Retro','ManneuverThruster','FixedThruster','645d99e9-ae6b-4b09-aad8-61f9ccfc5f98','','',NULL), +(2277,'Morozov-SH Core Spitfire','Armor','Torso','05a35240-10d0-4468-a143-bdc900edf1cf','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12K µSCU\nBackpacks: All\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(2278,'AEGS_Idris_SCItem_Dashboard_ATC_Left','SeatDashboard','UNDEFINED','9b63c0b8-9b5e-45dd-98d5-768050648292','','',NULL), +(2279,'Nyman Jacket Dark Red','Char_Clothing_Torso_1','UNDEFINED','2673f6cb-3092-41f9-97e5-bc76637499d1','','','Carrying Capacity: 1K µSCU\n\nOpalSky\'s Nyman light pullover is perfect to have on hand when lounging poolside or on those chilly nights.'), +(2280,'Screen','Usable','UNDEFINED','272f05f5-ba0d-4d4b-9bd3-c401fd907c6b','','',NULL), +(2281,'Tungsten','Cargo','Cargo','f50f3cf3-388a-43cf-bbba-50fc567827bf','','',NULL), +(2282,'MISC_Fortune_Thruster_Mav_Fixed_02','ManneuverThruster','FixedThruster','ff030d2c-2e17-425a-9dc0-b4c5baa582dc','','',NULL), +(2283,'Weapon_Rack_1_BEHR_Shotgun_Common_001','Usable','UNDEFINED','769694ca-2b04-4429-a998-8a61f4b18364','','',NULL), +(2284,'MacFlex Arms Grey','Armor','Arms','3472e32e-1ad4-4411-9760-d61c62a298f2','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(2285,'ARMR_ANVL_Hurricane','Armor','Medium','2a4871cf-1b60-4979-9c47-1801f10855bb','','',NULL), +(2286,'ControlPanel_Screen_AirlockControl','ControlPanel','DoorPart','aff49a61-e46e-4803-9fc7-380304365ea3','','',NULL), +(2287,'Singe Cannon (S3)','Weapon','Gun','f15b742b-1457-4eb7-b7aa-078816297d29','','','Manufacturer: Banu\nItem Type: Tachyon Cannon\nSize: 3\n\nMade popular by a Banu souli, the Singe tachyon cannon consistently delivers devastating energy damage across vast distances. Though slow to fire, the lightning-fast tachyon projectile strikes targets almost instantaneously, making the Singe a favorite choice for Banu security ships. Although the Banu have long forgotten the origin of this high tech weapon, several unique design choices have led scholars to suspect that the Banu might have appropriated the tech into their culture, instead of inventing it themselves.'), +(2288,'CRUS_Starlifter_Thruster_Main_M2','MainThruster','FixedThruster','4d17b1c3-df8f-47b5-b1cd-0b86b6246e81','','',NULL), +(2289,'TRGT. STATUS','Seat','UNDEFINED','a4651f5c-1d51-429f-bda8-9591a87486a4','','',NULL), +(2290,'Anvil Lightning F8C Turret','Turret','BallTurret','537e8385-4679-41e1-9fe3-b5cfc0f48a93','','','This remote turret provides mounts for two Size 2 weapons, an expansive field of fire, and precise control to give F8C pilots a comprehensive weapon system to get out of any situation.'), +(2291,'Door Control','ControlPanel','DoorPart','e75b9a43-2a87-44bc-837c-d2ba66936ee1','','',NULL), +(2292,'PersonalMobiGlas_PU','Display','Personal','f92ef99d-1488-4001-89c7-82d713be0587','','',NULL), +(2293,'orig_bedding_duvet_4_k','Seat','UNDEFINED','f9b15163-200d-445b-8cbe-9c2b132ff28b','','',NULL), +(2294,'AEGS_Sabre_Peregrine_RADR_Display','Display','UNDEFINED','08bebde8-4d8a-4514-bd88-ce65fb93c5d8','','',NULL), +(2295,'Seat','SeatAccess','UNDEFINED','54303e36-6821-44f2-abee-163e08b46f71','','',NULL), +(2296,'IceBox','Cooler','UNDEFINED','e6ad7280-57d0-4222-942e-6c2a23e78bf6','','','Item Type: Cooler\nManufacturer: Tyler Design & Tech \nSize: 2\nGrade: B \nClass: Stealth\n\nThe IceBox is an upgrade to the company’s standard medium cooler, as the team at Tyler Design & Tech made a number of subtle modifications and material upgrades that lowered the component’s signatures without greatly affecting its durability.'), +(2297,'Personal Storage','Cargo','UNDEFINED','cf5b2d17-4b32-43c3-83b7-c9963803325d','','',NULL), +(2298,'PC2 Dual S3 Mount','Turret','GunTurret','500a82b0-3c76-443d-b302-1b0ccf15071f','','','PC2 Dual S3 Mount'), +(2299,'Salluq Mask Brown','Char_Clothing_Hat','UNDEFINED','5eb44c18-aef1-469d-9a43-ef822db9a182','','','Made for hostile environments, the Salluq Mask keeps dirt, dust, and grit out of your eyes while providing you with a wide field of vision. Please note that this mask is not space-rated and should only be worn in naturally breathable environments.'), +(2300,'Flight Blade','FlightController','UNDEFINED','8d56a7c1-ba4c-468b-9e25-ae4e3b8cc7a2','','',NULL), +(2301,'TRGT. STATUS','Seat','UNDEFINED','99bb3f78-6117-4e2d-988c-cca2b3a382ae','','',NULL), +(2302,'OptiMax','Gadget','Gadget','1a6b9b13-d3f8-4f32-b7db-146b90aad2da','','','Manufacturer: Greycat Industrial\nItem Type: Mining Gadget\n\nResistance: -30%\nCluster Modifier: +60%\n\nOptimal Charge Window Size: -30%\n\nCommonly found on industrial sites across the empire, the OptiMax reduces the loss of valuable resource through a special process that keeps them clustered together. This technology does impose drawbacks on the gadget though, most notably a reduced optimal charge window. \n\nManufacturer Warning! Using more than one mining gadget per deposit can result in a catastrophic explosion.'), +(2303,'Day One Shirt \"Voyager\"','Char_Clothing_Torso_0','UNDEFINED','60c2f32a-d5e8-4dee-9dc0-c66cf99051a8','','','The Voyager edition of this Henley shirt is red with black trim and gold sleeves. It features Stegman\'s famous AirFlow technology, a stain-resistant, air-cooled fabric that keeps you comfortable and dry.\n\nWomen\'s sizes currently out of stock.'), +(2304,'Colonialism_Outpost_RN_Multi_Fuel_Tank_Unit','FuelTank','UNDEFINED','d614406d-d0c0-4ef4-b285-871f90a0161a','','',NULL), +(2305,'Elespo','Cargo','Cargo','980a8f2c-d66a-4f28-b498-89a3a9015b51','','',NULL), +(2306,'Carbide Jacket Sandpiper','Char_Clothing_Torso_1','UNDEFINED','ccb97cb5-70c5-4977-b50a-ca27a40fce91','','','Carrying Capacity: 1K µSCU\n\nThe rugged, all-weather Carbide jacket from DMC features diamond-quilt detailing, stretch-comfort cuffs, and numerous attachment points for versatile storage options.'), +(2307,'Recycled Material Composite','Cargo','Cargo','2318741d-5231-4f0e-9376-074de79dd8fc','','',NULL), +(2308,'Relay','Relay','UNDEFINED','a1c1bb89-b476-4293-8898-d324ca44d681','','',NULL), +(2309,'Fresnel \"Deepwater\" Energy LMG','Weapon','Medium','123f7dff-f340-48f9-af35-86f986ec86d2','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: LMG\nClass: Energy (Electron)\n\nBattery Size: 165\nRate of Fire: 550 rpm - 220 rpm\nEffective Range: 50m\n\nAttachments: Optics (S3), Underbarrel (S3)\n\nThe engineers at VOLT crafted the Fresnel LMG to bring a powerful energy weapon to the frontlines, one that can initiate a fight with a rapid spray of deadly blasts. As the weapon heats up, the shots become slower and more powerful, but be careful of overheating. A weapon of this magnitude demands a strong foundation; operators are encouraged to fire from a crouching position to allow for better recoil management.\n\nThe Deepwater edition combines a weathered blue with profound black features.'), +(2310,'DRAK_Cutter_Roof_Expo_Nose','Misc','UNDEFINED','7d400e7a-bc43-4eff-972a-412e765172fa','','',NULL), +(2311,'WEAPONS','WeaponController','UNDEFINED','9316c060-265a-44c1-acd0-bdeca41f3548','','',NULL), +(2312,'Paint_125a','Paints','UNDEFINED','87273803-63a1-4f31-b711-34d37ba1af40','','',NULL), +(2313,'Debnam Gloves Twilight','Char_Clothing_Hands','UNDEFINED','af97fead-bd65-4aff-b43d-7622bdb71945','','','Named after the influential Terran tailor, Debnam gloves incorporate that famous tailor\'s classic design to keep your hands comfortable in colder temperatures.'), +(2314,'Internal Tank','FuelTank','Fuel','d3ea8a34-e2f2-46b3-8cb5-925be5d2c34d','','',NULL), +(2315,'Carryable_2H_FL_cinderblock','Misc','UNDEFINED','ac10e6f5-5d79-4840-b9cd-1900ee58f2c1','','',NULL), +(2316,'Grammercy Food Service Pants','Char_Clothing_Legs','UNDEFINED','b2bae259-e5c1-4a99-8ec0-3f6eb432778b','','','Carrying Capacity: 0.5K µSCU\n\nThe Grammercy Food Service Pants are a standard food service accessory produced by Code Blue Apparel\'s professional division. Designed to merge style and functionality, the pants offer support for all members of a food service team and are constructed from a patented stain-resistant material that can be quickly cleaned.'), +(2317,'Door Control','Door','UNDEFINED','a2ff1272-897a-4a0e-8f86-37934b975817','','',NULL), +(2318,'XIAN_Scout_CML_Chaff','WeaponDefensive','CountermeasureLauncher','b6ac2a47-bb88-4c40-ba1b-8e5d49d65a7a','','','@LOC_PLACEHOLDER'), +(2319,'MASTER_un_box_carryable_2h','Cargo','UNDEFINED','555d9566-baa4-4ced-b702-a58980d64c60','','',NULL), +(2320,'AEGS_Hammerhead_SCItem_Seat_Captain_Room','Seat','UNDEFINED','278d19fe-1ec3-46c6-bc3b-e809940b6157','','',NULL), +(2321,'Atavi Shirt White Gold','Char_Clothing_Torso_0','UNDEFINED','f25f7977-7675-4249-8d4c-37a14d5dc157','','','MuyMuy\'s Atavi line of casual shirts are comfortable enough to wear at home, but stylish enough for a night out. They are made with EasyCare technology to maintain the colors during repeated washes.'), +(2322,'DRAK_Corsair_Thruster_Retro_B','ManneuverThruster','UNDEFINED','c4d7ff39-96ce-4e93-a4fb-8ec8d6a9d2b5','','',NULL), +(2323,'Remote Turret','Turret','Utility','e4d17bcd-6b55-4e7e-b66d-0a53c710030a','','','Remote Turret'), +(2324,'MRAI_Guardian_Thruster_Mav_Bottom_MX','ManneuverThruster','FixedThruster','4043a8af-f73c-e074-e42d-9c5d1f067e83','','',NULL), +(2325,'Charger','PowerPlant','Power','913a1e91-896a-483f-a5e0-34865d4ceee1','','','Item Type: Power Plant\nManufacturer: Aegis Dynamics \nSize: 1\nGrade: D\nClass: Military\n\nThe Aegis Charger has powered military fighters for generations. Tried and tested in the most demanding of situations, the Charger can handle sudden or sustained power draws with ease.'), +(2326,'TRGT. STATUS','Seat','UNDEFINED','daf6da19-6a16-4b07-83b2-f45fab831699','','',NULL), +(2327,'TrueDef-Pro Legs Black/Pink/Purple','Armor','Legs','fe103ec5-a4aa-4bf8-af45-f4f1b0256341','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.\"'), +(2328,'Utensil_Plate_EggsBeansHash','Misc','UNDEFINED','8542d3fd-cb65-4465-a733-1e1d976b875f','','',NULL), +(2329,'Ajax Security Uniform Shoes','Char_Clothing_Feet','UNDEFINED','26929685-659d-460c-b6c9-d3286ff9ab44','','','Ajax Security Uniform Shoes are a standard security accessory produced by Code Blue Apparel\'s professional division. The boot-styled shoes feature a unique thick-body construction that increases durability in exchange for overall bulk. A heavy-duty rubberized exterior protects the shoes from weather and general day-to-day wear.'), +(2330,'Armor_Crate_CZ_Horizon_L_001','Usable','UNDEFINED','dd44eee3-8e4b-4c0f-85d7-58810236c28f','','',NULL), +(2331,'Seat','Usable','UNDEFINED','03321e62-779e-4d48-8525-777f1d699eba','','',NULL), +(2332,'CBH-3 Helmet Dark Green','Armor','Helmet','bb7c704d-b9e0-4748-ab18-3ceb602a1788','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. Visor is AR crosshair compatible.'), +(2333,'Door Control','ControlPanel','DoorPart','3cc8dfa6-cc91-4ffc-b432-e1935204fd36','','',NULL), +(2334,'Uncut SLAM','Cargo','Cargo','4a61fde7-b7b6-4ae6-8fc8-3aeaab9f874c','','',NULL), +(2335,'Distilled Spirits','Cargo','Cargo','7655d13a-54ce-4627-97b5-87fe3be0b6f8','','',NULL), +(2336,'box_plastic_3_005x005x005_a','Cargo','UNDEFINED','3dc1d51d-54cb-4b9b-9207-6e1c1519261b','','',NULL), +(2337,'Seat','Usable','UNDEFINED','72228c22-93d8-4122-b251-86b6ba75a42c','','',NULL), +(2338,'Tumbler Glass','Drink','UNDEFINED','b5ab0a94-cecd-4b95-8129-42c793cd7ff0','','','A short and wide drinking vessel made from tempered glassware.'), +(2339,'Ponos Boots Yellow','Char_Clothing_Feet','UNDEFINED','3f4af48b-5d66-4e7d-a208-13b0670307db','','','Quite simply, R6 Pro\'s Ponos boots were built for backbreaking work. Constructed out of Thermosulate technology, these waterproof and insulated workboots are rated for sub-arctic environments while the composite outsole ignores hazards to maintain traction when you need it most.'), +(2340,'100 Series Melrose Livery','Paints','UNDEFINED','3d92e380-e6c8-49f3-8ef4-465815452a30','','','Customize your Origin 100 series ship with this teal and pink livery.'), +(2341,'ESPR_BallisticCannon_Barrel_S4','WeaponAttachment','Barrel','2d9f0c10-961c-477f-b34e-4c84908fcb82','','',NULL), +(2342,'Access','SeatAccess','UNDEFINED','28bd3ee1-be9c-42c3-9126-095cdafdbce0','','',NULL), +(2343,'Internal Tank','FuelTank','Fuel','77397e13-86c8-491c-879b-df474de1e18f','','',NULL), +(2344,'Internal Tank','FuelTank','Fuel','6f09c622-6711-43ea-b79b-8f7a197f4277','','',NULL), +(2345,'Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','b7f4770a-4774-4ce5-ad20-00a0bb5d6bdb','','','Live in comfort with MuyMuy\'s Davlos line of cotton-synthetic shirts. The durable, yet soft, fabric contains a patented SweatGuard technology that not only whisks away perspiration but helps prevent stains.'), +(2346,'RSI_Bengal_Thruster_Main_Small','MainThruster','JointThruster','1dfadc88-6e74-42cf-895b-8bf03deb3089','','',NULL), +(2347,'Chokehold Gloves Molehill Brown','Char_Clothing_Hands','UNDEFINED','dd9cd32c-7b68-4522-9d8c-493fc555db61','','','When you can\'t afford to fumble. Flexible polyweave provide excellent grip plus ablative ceramic demi-gaunt reinforcement and close-fit cuffs. The Molehill version is dyed a neutral brown to keep you subtle, but not unsightly.'), +(2348,'Liar T-Shirt','Char_Clothing_Torso_0','UNDEFINED','5b5d8165-6147-49bb-830d-2aaaa345aa40','','','Most may believe in Admiral Bishop, but you\'re not most people. You prefer to address him as Admiral Bullsh*t, so flaunt your intellectual independence with this shirt from CBD.\n\nWomen\'s sizes currently out of stock.'), +(2349,'Seat','Usable','UNDEFINED','545737fc-2c3c-47cc-befc-19d8d6c46fc7','','',NULL), +(2350,'Door Control','ControlPanel','DoorPart','071fc2e1-c6a7-435f-9d80-f1c573990aae','','',NULL), +(2351,'Seat','SeatAccess','UNDEFINED','79d837d2-c5d0-43af-8f65-e59d7553706f','','',NULL), +(2352,'R97 \"Crimson Camo\" Shotgun','Weapon','Medium','cf0864b2-687c-4f1a-b722-974dcb5d29df','','','Manufacturer: Gemini\nItem Type: Shotgun\nClass: Ballistic\n\nMagazine Size: 18\nRate Of Fire: 120 rpm / 60 rpm\nEffective Range: 15 m / 35 m\n\nAttachments: Optics (S1), Barrel (N/A), Underbarrel (S2)\n\nThe R97 combines sleek design and stopping power for an elegant and effective close quarters weapon. This ballistic shotgun from Gemini features two distinct fire modes — a semi-auto wide spread mode ideal for dealing quick damage and a focused mode that offers increased range at the expense of some power. This combat flexibility has made the R97 a popular personal defense weapon across the Empire. \n\nThis edition features a bold red digital camo pattern.'), +(2353,'RSI_Zeus_Cargo_CargoGrid_Left','CargoGrid','UNDEFINED','983b69f8-c95a-4d19-97bd-0712619586d1','','',NULL), +(2354,'un_jar_glass_2_berries_d','Misc','UNDEFINED','777309bc-7d37-4fdb-ba44-b96e443a2927','','',NULL), +(2355,'Door Control','Door','UNDEFINED','7fe0456d-8a09-4c90-9b70-0c28db614d5d','','',NULL), +(2356,'un_can_drink_2_i','Misc','UNDEFINED','951178dd-72de-41aa-bc94-bbf4965635e0','','',NULL), +(2357,'Weapon_Rack_Cz_011','Usable','UNDEFINED','371c0f17-405e-480c-aa9d-5cbb72fe750f','','',NULL), +(2358,'H_Dashboard_Projector_HUD_MISC_Freelancer','Display','UNDEFINED','b3c7bbbe-4ff3-4d77-b428-fa35a8805c5c','','',NULL), +(2359,'MISC_Prospector_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','52948a52-f280-4265-8168-95e760c1203f','','',NULL), +(2360,'Seat','Usable','UNDEFINED','a232fe8c-c6c4-4916-b824-df7fa85e04c4','','',NULL), +(2361,'INTK_DRAK_Clipper','FuelIntake','Fuel','7706e161-f290-41e7-81b0-8a5eeeb08a82','','',NULL), +(2362,'Morozov-SH Helmet Terrene','Armor','Helmet','e81e28b4-83f9-403b-956f-28f934c0260e','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(2363,'Cardona Jacket Sand','Char_Clothing_Torso_1','UNDEFINED','37d289d8-c7f9-4b04-96d3-647465eb4146','','','Carrying Capacity: 1K µSCU\n\nDMC’s Cardona is a utility jacket designed for performance in cold weather environments. Featuring a high collar for better wind protection and numerous pockets to store any survival essentials.'), +(2364,'hightech_airlock_small_drugs_lghtgrp','Lightgroup','AirlockPart','62f08b76-0545-4a27-89c6-de06b73b538e','','',NULL), +(2365,'GATS_BallisticGatling_FiringMechanism_S3','WeaponAttachment','FiringMechanism','ba55cc3d-336c-42ee-a5cf-f691fc75062a','','',NULL), +(2366,'ORC-mkV Legs Greycat Edition','Armor','Legs','ace93f5a-ec11-4a8c-9158-8c4ff5dfaa8d','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement. The Greycat Edition was made specifically for the company.'), +(2367,'Seat','SeatAccess','UNDEFINED','56743244-eb4c-44f0-9426-dc3eebf1b49c','','',NULL), +(2368,'Meteor Bolide Livery','Paints','UNDEFINED','08f304e1-522e-4403-99ae-38350ce97d39','','','Make the Meteor a striking metallic red and black with the Bolide livery.'), +(2369,'Manned Turret','TurretBase','MannedTurret','072d286f-046b-49db-8230-ab21777249f3','','',NULL), +(2370,'TRGT. STATUS','Seat','UNDEFINED','122006e3-69bd-4ccd-8d69-bab5e0317cac','','',NULL), +(2371,'DRAK_Cutlass_Steel_Thruster_Main','MainThruster','FixedThruster','a716cf57-128f-4ac7-8924-55dc50ff9df5','','',NULL), +(2372,'Bengal_BallisticGatling_FiringMechanism_S6','WeaponAttachment','FiringMechanism','cf7b01ad-9a1d-4fa7-88c2-1090072e9921','','',NULL), +(2373,'Lynx Legs Green','Armor','Legs','ad06a0c7-98ff-4f95-8cee-f4922e18253f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(2374,'Morozov-CH Backpack Pyrotechnic Horizon','Armor','Backpack','8cd029aa-27fe-4846-b527-594817ad3487','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nComfortably carry vital gear with the RRS Morozov-CH backpack. This softshell bag is made with an advanced duraweave that\'s lightweight yet ready for all manner of industrial work. It also features several easy to access pockets and a plethora of straps to keep supplies secure and tight to your back. The Gold Horizon Edition was made specifically for the company\'s operations in Pyro during the 26th century.'), +(2375,'Station','SeatAccess','UNDEFINED','e8b9fe1a-1a3f-4a6e-ac1f-6a34e54f41fd','','',NULL), +(2376,'CRUS_Intrepid_CargoGrid','CargoGrid','UNDEFINED','7a85969c-c09f-462b-b081-52df6c36e7a3','','',NULL), +(2377,'Hammerhead Ship Armor','Armor','Medium','089f66d8-5ccf-41ee-a816-c8ead96cf2f4','','','Hammerhead Ship Armor'), +(2378,'Door Control','ControlPanel','DoorPart','cb66f139-7619-4605-bd12-6c1f64dab0b5','','',NULL), +(2379,'Hornet Icebound Livery','Paints','UNDEFINED','5983db70-464d-4de8-8622-3f3822ee1233','','','The Icebound livery covers the Hornet Mk2 in crisp white with light blue highlights.'), +(2380,'Aranda Shirt Purple/Ivory','Char_Clothing_Torso_0','UNDEFINED','eed876cf-4d93-4f5e-9d20-77290e8c9876','','','Fiore makes it easy to be fashionable with the Aranda. This unique top combines a dress shirt and waistcoat styled in complementary colors. The shirt comes with short sleeves cuffed at the elbows while the waistcoat features a small geometric flourish on the front pockets that\'s mirrored across the back.'), +(2381,'MISC_Starfarer_Gemini_Thruster_Main','MainThruster','FixedThruster','b8924198-bfe6-46cc-8666-f11d12eef4bf','','',NULL), +(2382,'Asgard Last Light Livery','Paints','UNDEFINED','d4236dde-81e6-489f-be03-c1fc09b5e8df','','','Wrap your Asgard in a black base with yellow accents with the Last Light livery.'), +(2383,'Finley the Stormwal Large Plushie','Misc','Personal','4376fce2-c6fd-40fa-b42c-9b9ad80428e9','','','Finley the Stormwal loves sailing through the clouds in Crusader\'s atmosphere. Much like Crusader\'s ships, Finley is big, graceful, and quite the sight to behold. Now this majestic blue stormwal can accompany you on a journey through the stars with this large, soft, and squeezable plushie.'), +(2384,'Yormandi Tongue','Misc','Harvestable','6d8c8c22-12ce-4433-af1e-5c38f54ced1b','','','The yormandi uses its sensitive tongue to taste its surroundings and detect prey from great distances. Renowned for its complex, subtle flavor, the tip of this organ is sought after by culinary enthusiasts throughout the Empire.'), +(2385,'600i Foundation Fest Livery','Paints','UNDEFINED','1782c749-a756-4244-96f9-26362c81abeb','','','Foundation Festival is an opportunity for Citizens and Civilians to come together and strengthen the foundation of our community. Show your commitment to a better universe with this custom livery.'), +(2386,'ORIG_300i_Thruster_Mav_Fixed_01_Front_Top','ManneuverThruster','FixedThruster','cb1e21ea-131d-4984-9112-30e1369e9258','','',NULL), +(2387,'Door Control','Door','UNDEFINED','41d1a1c5-4e7b-4b13-b50c-2fa8f512c5b2','','',NULL), +(2388,'m_human_mannequin_base_armor_Collector_AD','ShopDisplay','UNDEFINED','c3d704a0-c90f-439d-b801-7690e36fb0ef','','',NULL), +(2389,'tray_medal_1','Misc','UNDEFINED','6ab8fe74-3465-490f-ade6-56170c0be903','','',NULL), +(2390,'Argon','Cargo','Cargo','b88f4ba3-ccfe-4e31-a345-82778f2ee045','','',NULL), +(2391,'Seat','Usable','UNDEFINED','7f6837a1-95c6-47c6-8a5f-490636c54714','','',NULL), +(2392,'Union Pants Blue','Char_Clothing_Legs','UNDEFINED','8f2abcfc-4206-45e9-a693-7aa390993102','','','Carrying Capacity: 0.5K µSCU\n\n987 delivers comfort, durability, and style with the Union pants. Designed with a special, next-gen blend of high-performance synthetic fabrics, these pants are enduringly fashionable in these modern times.'), +(2393,'Slickdry Waders','Char_Clothing_Legs','UNDEFINED','28e937a8-6d94-408f-bac2-e9f61b5484f1','','','Carrying Capacity: 400 µSCU\n\nThe popular Slickdry Waders by Alejo Brothers are a combination of pants and boots made of a synthetic hydrophobic material and ensure the wearer will stay dry even if just stepping out of a river.'), +(2394,'K7 Pants Aqua','Char_Clothing_Legs','UNDEFINED','62f7b4b0-7737-46a8-9dc6-446ad0dd66e6','','','Carrying Capacity: 3K µSCU\n\nDMC\'s K7 are an all-purpose cargo pants. Four easy access pockets provide extra storage while the triple-stitched polymer weave fabric is designed to withstand all kinds of weather conditions.'), +(2395,'ARGO_RAFT_SCItem_Seat_Cargo','Seat','UNDEFINED','de655aea-53fa-4fdb-b256-a42671789ce4','','',NULL), +(2396,'Elevator','Elevator','UNDEFINED','fc0cc84d-4822-4ca5-a05d-ce1fe8934240','','',NULL), +(2397,'STV Electric Green Livery','Paints','UNDEFINED','1e12fe16-0a1e-40c0-96d3-e35d915219bd','','','Style and a striking color combine with the Electric Green livery. It gives the STV a vivid green look with black accents.'), +(2398,'FirmWear Hard Hat','Char_Clothing_Hat','UNDEFINED','348449dc-8aef-4ee4-b885-12a3eab2ed84','','','The FirmWear helmet is ready to go to work with you. Stegman\'s use of armor-rated plastic will keep it light on your head while still delivering top-of-the-line protection.'), +(2399,'Corundum (Raw)','Cargo','Cargo','59866f2d-49aa-4303-b323-4e024b5a9e55','','',NULL), +(2400,'tank_gas_1_005x005x005_a','Cargo','UNDEFINED','81b99e31-02e2-4b21-a6a0-9ae52795b1ab','','',NULL), +(2401,'Carryable_1H_CY_personal_flare_2_a','Misc','UNDEFINED','bfd42dc6-9a3b-4e0e-92df-d9d1affb189b','','',NULL), +(2402,'FirmWear Hard Hat','Char_Clothing_Hat','UNDEFINED','da1ed836-9174-4a3a-abfe-2ffca21e396f','','','The FirmWear helmet is ready to go to work with you. Stegman\'s use of armor-rated plastic will keep it light on your head while still delivering top-of-the-line protection.'), +(2403,'IFR-532 Missile Rack','MissileLauncher','MissileRack','24ad5462-6265-4c8e-b627-1d237a7a3e7b','','','Item Type: Missile Rack\nManufacturer: Aegis Dynamics\nSize: 5\nMissiles: 3x32\n\nDesigned to bolster the offensive capabilities of the Idris, this missile rack was made by Aegis Dynamics specifically for the famed frigate.'), +(2404,'Seat','SeatAccess','UNDEFINED','6c673b26-ee1f-427b-8298-ebc02c945e10','','',NULL), +(2405,'Crusader Black Bishop','Misc','UNDEFINED','c76d7240-d73f-435c-8073-ff4c7287ea9e','','','Included with the Mercury Star Runner from Crusader Industries, this minimalist black chess piece has a marble base.'), +(2406,'Screen','Display','UNDEFINED','0aa027fc-75f9-4bb3-8979-e3f4c58095c3','','',NULL), +(2407,'Intrepid Fusion Livery','Paints','UNDEFINED','9eaab991-f532-471a-9def-e399f7726f82','','','Sporting two distinct and vibrant shades of green with black highlights, the Fusion livery gives the Intrepid an utterly unique look.'), +(2408,'Comb','Misc','UNDEFINED','0c024832-3400-460f-8c59-0ff912ecac7f','','',NULL), +(2409,'Flight Blade','FlightController','UNDEFINED','f00f589f-6992-49eb-bea8-66fc321bc59b','','',NULL), +(2410,'100 Series Blue Ametrine Livery','Paints','UNDEFINED','b9019a07-0ace-4cf5-927b-3d58c2800235','','','Customize your Origin 100 series ship with this blue and yellow livery.'), +(2411,'f_human_mannequin_locker','ShopDisplay','UNDEFINED','d43154d2-a85e-4233-8355-71882bff71c6','','',NULL), +(2412,'Typhoon IX Torpedo','Missile','Torpedo','e26d0f6d-4ada-4eb0-9843-1b4d03178f90','','','Manufacturer: Talon\nTracking Signal: Infrared\nSize: 9\n\nDesigned by Talon, the Typhoon heat seeking strike torpedo delivers a heavy payload sure to serve as a deterrent from any further hostile actions.'), +(2413,'Geist Armor Helmet Forest','Armor','Helmet','e56c096e-33c7-487c-8cea-b479d7dbc58e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(2414,'SHIELDS','ShieldController','UNDEFINED','0308e0ec-c6c5-4424-ae5d-bbd4cd77007e','','',NULL), +(2415,'Atlasium','Cargo','Cargo','0e9c5496-adcb-4b89-a790-fef797d9a6ab','','',NULL), +(2416,'ANVL_Hornet_CargoGrid_F7C_Mk2','CargoGrid','UNDEFINED','2e32c134-5d48-4b8f-9e7e-7a3d679f21f4','','',NULL), +(2417,'Bantam Hat Stor*All','Char_Clothing_Hat','UNDEFINED','8f3d228d-c1d8-4b0e-8428-5de925370c8c','','','The Bantam hat from 987 offers a large bill and cushioned banding for all-day comfort. This version features a Stor*All logo on the front with an orange back and gray bill.'), +(2418,'Door Control','ControlPanel','DoorPart','04c27fcb-6cc7-48dc-b459-3324f59e9599','','',NULL), +(2419,'ANVL_Door_Decal_Carrack_Eng','Decal','DoorPart','70842011-41c2-4702-b823-f4b822ae1eba','','',NULL), +(2420,'Test_OutpostMission_DataPad_KeyCode_4x3_Screen_5','Display','UNDEFINED','c0d69f7c-339d-45aa-bf96-41c9f11629f5','','',NULL), +(2421,'TE_weapon_box__behr_rifle_ballistic_01','Misc','UNDEFINED','4c3cebd1-d8f4-461b-83df-94a68983c474','','',NULL), +(2422,'RSI_Constellation_SCItem_Seat_CoPilot_Right','Seat','UNDEFINED','f3ff4f67-f968-4f35-9e07-eb9ed574c6cf','','',NULL), +(2423,'Cumulus Jacket Yellow','Char_Clothing_Torso_1','UNDEFINED','fe0e531c-7e92-495b-a82b-faa9a7a453c6','','','Temp. Rating: -35 / 10 °C\nCarrying Capacity: 5K µSCU\n\nBe bold and brave the cold in frigid conditions up to -35 °C with the Cumulus\'s special thermal lining. An oversized, insulated hood provides additional protection around the head, while the distinct quilted torso stops snow, ice, and wind from seeping in, ensuring the wearer remains warm and dry.'), +(2424,'Novikov \"Expo\" Exploration Suit','Armor','Undersuit','5fcc0203-a02e-4e44-bfe0-dbf6b089fff0','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -225 / 75 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nConfidently explore cold environments while wearing the Novikov \"Expo\". Caldera built the exploration suit with an advanced sensor suite that intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. Also featuring a cutting edge life support system and spacious carryall, those venturing across unknown terrain can count on the Novikov to help them survive the journey. The \"Expo\" edition celebrates CitizenCon 2949 by blending orange and purple for an eye catching look that\'s highly visible against the elements.'), +(2425,'Strata Core Heatwave','Armor','Torso','4d2ecda6-83dc-4236-9e54-bdd0afd2056a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 15k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpack Compatibility: Light & Medium \n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Heatwave edition is primarily black with glowing red highlights.'), +(2426,'Taranite (Raw)','Cargo','Cargo','fba3ec7f-6f14-486b-a089-855558f684b6','','',NULL), +(2427,'Seat','SeatAccess','UNDEFINED','3cebdef5-17f9-4c17-a48e-a5ef20bed181','','',NULL), +(2428,'wall_display_cabinet_large_right_14x03x03_a','ShopDisplay','Default','894ec57e-55f0-4492-ad9a-7e50e7efd517','','',NULL), +(2429,'KLWE_MassDriver_FiringMechanism_S2','WeaponAttachment','FiringMechanism','84a917b6-ac68-4314-a402-8a185cc5bfbc','','',NULL), +(2430,'Ouratite','Cargo','Cargo','012b4a4e-2e87-4593-a287-fdc611634038','','',NULL), +(2431,'Carryable_1H_CY_bottle_bar_14_mixer_e','Misc','UNDEFINED','08f8e225-29d8-4ae0-bd23-b559c15773fc','','',NULL), +(2432,'AEGS_Avenger_PrisonPod_5','Usable','UNDEFINED','976b416d-0b20-4495-8c87-bcc0a4feaae9','','',NULL), +(2433,'RN_WindTurbine','Weapon','UNDEFINED','5c847555-077b-4f3c-b757-f9ebce947f44','','',NULL), +(2434,'M2C \"Swarm\"','Weapon','Gun','18b795c5-25f1-444a-86c0-b5edd7cf0118','','','Item Type: Laser Turret\nManufacturer: Behring\n\nThe latest generation of point-defense technology, the M2C \"Swarm\" utilizes advanced search, detection, and tracking software to unleash a swift barrage of laserfire, protecting ships from incoming missiles, torpedoes, and other high-speed threats.'), +(2435,'Door Control','ControlPanel','DoorPart','5bf7d81f-db50-4c74-ad14-a5d7773da381','','',NULL), +(2436,'100 Series Sand Wave Livery','Paints','UNDEFINED','ee3bd1ab-ed48-4944-87aa-543320c4193f','','','Customize your Origin 100 series ship with this sandstone, grey and orange livery.'), +(2437,'Jumping Limes','Cargo','Cargo','337a03ef-5733-4253-9c9b-8c1f3ce71abd','','',NULL), +(2438,'AAT-34 Turret','Turret','MannedTurret','31e097e5-dd40-4d53-a57c-90fe879914eb','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(2439,'Drake Hat Yellow Logo','Char_Clothing_Hat','UNDEFINED','95b716b0-d87c-4ed0-9ced-ea723a5dff92','','','Embody the boldness of Drake Interplanetary by wearing this black hat with the company\'s name in strong yellow lettering.'), +(2440,'Seat','Usable','UNDEFINED','7271002f-ead8-4900-90c0-7771a70adc79','','',NULL), +(2441,'Water Bottle','Drink','Bottle','d7ebbe21-e107-4aae-979e-00db7d3627d4','','','HEI: 44\nEffects: Hydrating\n\nWater filtered to the highest UEE standards.'), +(2442,'One Light Undersuit Red','Armor','Undersuit','b989ed06-0037-4949-b247-603770d2c267','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nFeaturing durable poly-fiber fabric, a comfortable fit, and a special holiday design, this undersuit is the perfect thing to wear to any Luminalia party.'), +(2443,'Laranite','Cargo','Cargo','b89812b9-775e-4c34-935b-0bf91037ebc8','','',NULL), +(2444,'RSI_Hermes_LightCap','AttachedPart','UNDEFINED','40c437d5-7d3b-4bbb-a9d7-8459f7d47fbd','','',NULL), +(2445,'Door Control','Door','UNDEFINED','34d8aa4c-a4ce-41ea-936c-b468ddacd562','','',NULL), +(2446,'INTK_ARGO_SRV','FuelIntake','Fuel','82204c3c-7715-4c14-91f5-e7b3289b1ddf','','',NULL), +(2447,'Seat','Usable','UNDEFINED','2899f069-be38-4853-bf08-01ebd191eebd','','',NULL), +(2448,'Controller_Salvage_TractorBeamOnly_PowerSuit','SalvageController','UNDEFINED','99b1d580-8fd8-4716-af13-c2e4287977f1','','',NULL), +(2449,'Debnam Gloves Purple','Char_Clothing_Hands','UNDEFINED','f7c53896-fc72-4c78-bc84-6a5916cfdcf1','','','Named after the influential Terran tailor, Debnam gloves incorporate that famous tailor\'s classic design to keep your hands comfortable in colder temperatures.'), +(2450,'INTK_MISC_Fury_LX','FuelIntake','Fuel','f9cf62bb-2ff9-4d39-ba22-a33faeafa5d1','','',NULL), +(2451,'Mining Arm','ToolArm','UNDEFINED','d2185125-70a1-4f51-a149-527828e9df9e','','',NULL), +(2452,'Pembroke Exploration Suit','Armor','Undersuit','13a8f1c2-9679-4e0f-8281-f88c20925a1a','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nDesigned to extend the limits of Human endurance, the Pembroke was built to withstand the extreme heat of inhospitable high temperature environments. Based off of Caldera\'s best-in-class exploration armor platform, an advanced sensor suite intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. Also featuring a cutting edge life support system, those seeking to cross bold new horizons can depend on the Pembroke to see them to the journey\'s end.'), +(2453,'Geist Armor Arms Epoque','Armor','Arms','8586a1f1-2bdd-46a8-b40c-0d6ec6de91ed','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them harder to detect, and specialized tubing built into the soles of the boots dampens the sound of footsteps.\n\nThe Epoque edition features a navy and black coloring, finished with baroque gold detailing.'), +(2454,'Carryable_1H_SQ_noodle_box_4_a','Misc','UNDEFINED','e8c573c3-1f96-456f-9d5e-773d6f537df8','','',NULL), +(2455,'DRAK_Golem_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','133b928f-20b7-4544-9283-6106ee3481ca','','',NULL), +(2456,'SafeCore Boots Westar','Char_Clothing_Feet','UNDEFINED','423341dc-1bba-4c4d-8470-9ad71187c8b0','','','The SafeCore boots are a soft-shelled offering from Grindstone intended to provide more flexibility while traversing in adverse conditions.'), +(2457,'Pite','Char_Head_Piercings','UNDEFINED','f3006217-7ca6-486c-9fca-2381394eef4e','','',NULL), +(2458,'MISC_FuelRefinery_L','FuelTank','Fuel','af55bd96-fa03-4139-ba09-aae46aa89a9a','','',NULL), +(2459,'SHIELDS','ShieldController','UNDEFINED','16d4329b-50fd-4623-9111-f9265e2e1f4b','','',NULL), +(2460,'Strata Arms Crusader Edition','Armor','Arms','ffb072df-980c-4a52-856c-af6ca1f84030','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Crusader Edition was made specifically for the company.'), +(2461,'hooks_legs_02x01x04_01Port_1','ShopDisplay','Default','72dd43e4-68e1-4292-ba9d-3351731446da','','',NULL), +(2462,'Uncut SLAM','Cargo','Small','5b656b7e-e462-4b96-9971-8de5d76564a1','','','Initially developed for athletes before being outlawed, SLAM acts as a combat performance enhancer, targeting the user\'s nervous system as a fear-inhibitor and painkiller. Uncut SLAM is the concentrated form of the drug, and must be diluted to non-lethal dosages before it can be packaged into dispersal vials and consumed.'), +(2463,'ForceFlex Undersuit DigiCamo','Armor','Undersuit','bec98aaf-d7f8-476f-98e3-5d86babe9896','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nVirgil\'s ForceFlex is the next generation in undersuit technology. Rated for combat as well as industrial work, you can rest assured that the comboweave will keep you protected in whatever situation you put it through.'), +(2464,'Carryable_1H_CY_baton_marshalling_1_a','Misc','UNDEFINED','d69d2638-417d-4c92-b82c-62073eb5d4ab','','',NULL), +(2465,'Caterpillar Stormbringer Livery','Paints','UNDEFINED','aeeee893-16e0-4624-955c-d16e75f0ec5b','','','This custom Caterpillar livery was created to celebrate the 2950 IAE on microTech. It blends black and electric blue with white accents to give the ship a cool new look.'), +(2466,'AEGS_Redeemer_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','b0c94338-d58c-4632-a96d-9befca61bf95','','',NULL), +(2467,'Borase','Cargo','Cargo','937639ac-7e83-47fa-88db-8ff2298f6824','','',NULL), +(2468,'counter_components_center_b_01x01x01','ShopDisplay','UNDEFINED','6157e289-e967-48d6-82ee-5376baaf37b6','','',NULL), +(2469,'Union Pants Black','Char_Clothing_Legs','UNDEFINED','28236e4c-d685-412a-b007-ac11ed3c4df9','','','Carrying Capacity: 0.5K µSCU\n\n987 delivers comfort, durability, and style with the Union pants. Designed with a special, next-gen blend of high-performance synthetic fabrics, these pants are enduringly fashionable in these modern times.'), +(2470,'KLWE_MassDriver_FiringMechanism_S1','WeaponAttachment','FiringMechanism','5fb45e1a-4417-4fb3-871b-073ca128f3bb','','',NULL), +(2471,'Manned Turret','TurretBase','MannedTurret','924d9ad7-9c18-41dd-8b8c-c65dcf0da3e5','','',NULL), +(2472,'FBL-8a Core Justified','Armor','Torso','07f0b793-c414-4771-9f66-09c8afaa5621','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -32 / 62 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nBased on CDS\' FBL-8a combat armor, this set has been modified from its original form. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible.'), +(2473,'Armor_Crate_CZ_Horizon_M_001','Usable','UNDEFINED','522a27f5-b4c3-44a6-8014-dc8127d05384','','',NULL), +(2474,'ANVL_Pisces_BayDoor_Frame','Container','UNDEFINED','121a37ca-2312-4e4d-aa9a-45b120f171a7','','',NULL), +(2475,'Internal Tank','QuantumFuelTank','QuantumFuel','c18b2900-2259-4a94-bc76-8566ee183740','','',NULL), +(2476,'Brocius Waist Apron Finch','Char_Clothing_Torso_1','UNDEFINED','08fbac01-4b7b-4553-9ef4-878a0b0d84f1','','','Habidash\'s Brocius Waist Apron features a quilted front panel paired with side skirting to protect the wearer from any overspills or other dirtying work while still providing freedom of movement.'), +(2477,'display_ship_components_pillar_s0_4ports','ShopDisplay','UNDEFINED','b2e0e462-5495-4f7a-a189-bc0622eb0214','','',NULL), +(2478,'Cargo_Comm_125x3_Agricultural_Supplies_a','Cargo','Cargo','7e1efa35-25fe-4147-a3f7-e6d3e5535f69','','',NULL), +(2479,'YellowJacket GT-210 Gatling','Weapon','Gun','823a99bb-e1c6-46af-9ae5-6a047f46b17e','','','Manufacturer: Gallenson Tactical Systems\nItem Type: Ballistic Gatling\nSize: 1\n\nWhile the GT-210 YellowJacket may be small, it packs a mighty sting. This high-speed ballistic weapon is perfect for targeting smaller, more mobile targets and its DTX-8 ammo supply system almost completely eliminates weapon jams due to bad rounds.'), +(2480,'lt_light_electric_1_suspended_a','Light','UNDEFINED','fbaaeba6-f7e1-43c8-af85-b6402145cd43','','',NULL), +(2481,'RSI Polaris Torpedo Rack','MissileLauncher','MissileRack','b6205a2d-563c-415d-9e8f-7873283aea8b','','','Item Type: Torpedo Rack\nManufacturer: RSI\nSize: 10\nTorpedo: 7xS10 \n\nBring the impressive firepower of the Polaris to bear with this bespoke torpedo rack holding seven massive S10 torpedoes.'), +(2482,'Seat','Usable','UNDEFINED','eb0e6d96-ddca-4555-9633-c9df1e102e30','','',NULL), +(2483,'Bracewell Boots Blue and Grey','Char_Clothing_Feet','UNDEFINED','0d7ab0b1-d9af-40a7-897f-a48340410c29','','','Durable, dependable, and comfortable. The Bracewell are high ankle boots designed to thrive amidst unpredictable weather conditions with a water-resistant finish, high-traction soles, and a toggle-locked top enclosure to help keep out any precipitation.'), +(2484,'Monde Legs Keystone','Armor','Legs','bc44d29e-1569-4ca3-b36b-fdacdcc5163c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints. \n\nThe Keystone edition features a white, gray and blue finish with URW logos.'), +(2485,'Door Control','Door','UNDEFINED','13663f69-2c9c-487e-9ac2-a5cf8f217631','','',NULL), +(2486,'SecureShield','Shield','UNDEFINED','c8b42a1b-2000-4d7e-8888-208480c739b6','','','Item Type: Shield Generator\nManufacturer: Gorgon Defender Industries\nSize: 2\nGrade: D\nClass: Military\n\nGet military-grade protection for your ship with the SecureShield from Gorgon Defender Industries. Their cutting edge emitter tech allows for superior shield absorption across the spectrum of damage types.'), +(2487,'Utensil_Plate_Farfalle','Misc','UNDEFINED','66efd7ab-e69d-4abd-ab7b-833ff48ed8f1','','',NULL), +(2488,'Door Control','ControlPanel','DoorPart','87ca55d7-741a-4a67-8ccd-6f321f221c99','','',NULL), +(2489,'J-5 Helmet','Armor','Helmet','319812c0-5a35-41fe-b905-375a556c081c','','','Item Type: Light Helmet\nDamage Reduction: 20%\nTemp. Rating: -25 / 65 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nGyson delivers another unique softshell helmet with the J-5. Large optic sensors and an oversized breathing apparatus deliver a striking visage. The distinct design is space-rated and provides a modicum of protection, while keeping the helmet lightweight and affordable.'), +(2490,'PowerSuit_SCItem_Seat_Driver','Seat','UNDEFINED','9389bfa6-76c2-4ee9-8c50-948e6a1051c1','','',NULL), +(2491,'Aril Backpack','Armor','Backpack','173269f1-e6fe-494a-99df-e390a63dac84','','','Item Type: Medium Backpack\nCarrying Capacity: 85K µSCU\nCore Compatibility: Medium & Heavy\n \nOriginally designed for miners, the Aril armor comes with an attachable backpack that can accommodate a variety of tools and supplies to keep your hands free. The Aril backpack is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(2492,'Torreto Pants Scarlet','Char_Clothing_Legs','UNDEFINED','10ef6de6-f333-41c8-8c8b-e01d87a19625','','','Carrying Capacity: 0.5K µSCU\n\n987 redefines classic slacks with the Torreto. These mid-rise, straight cut pants incorporate a section of fabric studding along the side seam to provide a pop of personality.'), +(2493,'Frontier 11 Classic Navy','Char_Clothing_Legs','UNDEFINED','c5a5cd6a-0087-44b2-8e4b-9a13ebc73245','','','Carrying Capacity: 2k µSCU\n\nConstructed with large pockets and made from durable synth-cloth, the Frontier 11 Classic pants from DMC are a rugged garment designed to handle whatever life might throw your way.'), +(2494,'AEGS_Redeemer_RADR_Display','Display','UNDEFINED','c4ce5dd9-3bfe-4949-8a69-b8608ba944a3','','',NULL), +(2495,'MISC_Freelancer_Base_Kitchen_Door','Door','UNDEFINED','8127f1cc-30dc-4bca-8902-def6226525de','','',NULL), +(2496,'Cobalt','Cargo','Cargo','e1a730b8-d765-4cd5-8965-5317a9cc391e','','',NULL), +(2497,'TRGT. STATUS','Seat','UNDEFINED','71c39962-dc8f-46e9-b9e4-b25ddd5f6774','','',NULL), +(2498,'Hercules Starlifter Dryad Livery','Paints','UNDEFINED','70c4fde7-0e86-4499-8de1-ecd6b8817162','','','A woodland camo inspired design distinguishes the Dryad livery from other options for the Hercules Starlifter.'), +(2499,'e1c04s02f_box_plastic_8_a','Cargo','UNDEFINED','0a807019-60a6-48cc-8ef9-bc87d3f43c2e','','',NULL), +(2500,'Seat','Usable','UNDEFINED','27ebd5c2-c1a0-400d-8fc4-a7c9d5161bc4','','',NULL), +(2501,'FlashFreeze','Cooler','UNDEFINED','96860a78-4b34-4888-93a5-12efb259a5ff','','','Item Type: Cooler\nManufacturer: Lightning Power Ltd. \nSize: 1\nGrade: B\nClass: Civilian\n\nWith the FlashFreeze, Lightning Power makes sure that no matter how hot things get, you can rely on its proven cooling technology to keep you flying.'), +(2502,'Davin Work Gloves Dark Green','Char_Clothing_Hands','UNDEFINED','7f87be5e-875e-4174-8c8b-6d2d3ff8c2a3','','','Field-tested for over fifty years, you can find Davin work gloves at numerous sites and ships around the Empire. Stegman\'s rugged construction and comfort lining have made them a customer favorite.'), +(2503,'Cordimon Jacket Orange','Char_Clothing_Torso_1','UNDEFINED','66ad0738-dcfe-45ad-85c9-b848338fffa1','','','Carrying Capacity: 3K µSCU\n\nStegman\'s classic worker\'s jacket has been a staple of job sites for over seventy years. This duotone pattern is cut from the toughest material meaning you can wear it anywhere, anytime. It may not be armor, but it damn sure feels like it.'), +(2504,'Remote Turret','Turret','TopTurret','7676edfb-e035-4bb2-9e37-a5e23441d068','','','Multitask on the battlefield with this remote turret system. Featuring precise controls and a wide field of fire, the turret allows pilots to add combat support to their resume.'), +(2505,'Door Control','Door','UNDEFINED','062c6737-da4d-4254-a048-8e76545b0e24','','',NULL), +(2506,'glsn_shotgun_ballistic_01_mag','WeaponAttachment','Magazine','0b501ac3-57ff-4fe1-be90-faed3467c4b8','','',NULL), +(2507,'Door','Door','UNDEFINED','9ecd97ed-c42a-4354-9178-7d23c92bb299','','',NULL), +(2508,'Carryable_1H_SQ_Datapad_Fluff_Orb_GenericGang_002','Misc','UNDEFINED','5d589bd8-99c9-4f35-9bf8-2e733b16ae50','','',NULL), +(2509,'VNCL_Glaive_Thruster_Aux_Fixed','ManneuverThruster','FixedThruster','6b99466f-8649-4cc4-894c-43637bf3569e','','',NULL), +(2510,'MISC_Hull_A_Thruster_Main','MainThruster','FixedThruster','bbafd30d-51cb-45c7-85c4-d496e58f0f12','','',NULL), +(2511,'Sorel Hat Westar','Char_Clothing_Hat','UNDEFINED','5d3b30f8-d101-4c35-811a-43da919ff23c','','','The wide-brim bucket-style design of Habidash\'s Sorel hat provides the wearer with lots of cover from any overbearing rain or sunshine.'), +(2512,'ANVL_Carrack_Thruster_Retro_Back','ManneuverThruster','FixedThruster','6bb0d330-e344-46c6-94b6-027ffa4aaff1','','',NULL), +(2513,'ANVL_Pisces_Thruster_Mav_Joint_C8X','ManneuverThruster','JointThruster','6f7d73fa-cf75-4ec6-bd2a-c845307180f1','','',NULL), +(2514,'Artimex Legs Wildwood','Armor','Legs','8d57ed44-08f2-420b-9a35-deac7e6b09f9','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.'), +(2515,'ANVL_Arrow_Thruster_Mav','ManneuverThruster','JointThruster','e0996fcd-d171-4d9e-97a6-50c3e9b56117','','',NULL), +(2516,'RSI_Aurora_Thruster_Retro_Right','MainThruster','FixedThruster','e468f902-ea95-4fa1-b107-abca572b05e7','','',NULL), +(2517,'DRAK_Clipper_Thruster_Fin_Aux_Left','Misc','UNDEFINED','79cadc54-b91e-42bf-b0b3-cb39d5402139','','',NULL), +(2518,'Door','Door','UNDEFINED','3ccfbee4-babd-48a3-ad22-5bdafe5731bd','','',NULL), +(2519,'HRST_LaserRepeater_Ventilation_S2','WeaponAttachment','Ventilation','41581324-24e9-4e90-8e1b-3d2d71c26b7f','','',NULL), +(2520,'Jericho XL','Weapon','Rocket','4312c1a5-f575-4e06-9892-2c5270982e9e','','','Item Type: Rocket Pod\nManufacturer: Hurston Dynamics\nSize: 3\nRockets: 18xS1\n\nThe Jericho XL rocket pod from Hurston Dynamics is compatible with any size three hardpoint and capable of carrying eighteen S1 rockets.'), +(2521,'ANVL_Door_Decal_Carrack_CargoPod','Decal','DoorPart','937ef0a7-a183-464c-ac8f-ed5619eb64bb','','',NULL), +(2522,'Door','Door','UNDEFINED','0a731c37-7ad3-4f7e-95be-06b00d44c508','','',NULL), +(2523,'facial_hair_013','Char_Head_Beard','UNDEFINED','ee80bd3d-3b43-4ca3-b2de-e519efd4c9d7','','',NULL), +(2524,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','1dca9cda-43ba-49a9-a93c-16366c81c666','','','Joker Defcon - Noise Launcher'), +(2525,'srvl_combat_heavy_core_03_01_01','Armor','Torso','d491d293-a7d9-4cb6-af21-e42dcbdabe06','','',NULL), +(2526,'ORC-mkV Legs White','Armor','Legs','ee473fc2-9edd-4c01-adff-2f97a14a9d9c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(2527,'Door','Door','UNDEFINED','6c9ec12b-fd8f-4ecb-9ea1-374317a643fb','','',NULL), +(2528,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','a64fb6e2-eced-47b1-8358-e89adef5bca4','','','Aegis Gladius - Decoy Launcher'), +(2529,'Destroyer Mass Driver Cannon','Weapon','Gun','3e507f17-6725-40d6-aad0-acdb97e1d115','','','Manufacturer: Klaus & Werner\nItem Type: Mass Driver Cannon\nSize: 10\n\nMade for the Aegis Idris utilizing railgun technology to accurately fire high damage ballistic projectiles over long distances, the Destroyer mass driver from Klaus & Werner has made it\'s presence known on the battlefield time and again with devastating impact.'), +(2530,'Sorel Hat Tosca','Char_Clothing_Hat','UNDEFINED','65dcfefd-0cb2-4db6-8fae-7b6028d06ad4','','','The wide-brim bucket-style design of Habidash\'s Sorel hat provides the wearer with lots of cover from any overbearing rain or sunshine.'), +(2531,'RSI_Zeus_CL_Thruster_Mav_Top','ManneuverThruster','UNDEFINED','981dff72-ca1a-4a18-9ac7-cbc3a59894d8','','',NULL), +(2532,'Edgewear Pants Tan','Char_Clothing_Legs','UNDEFINED','ace14a02-b505-4b2d-90d7-5fb100316ae2','','','Carrying Capacity: 4K µSCU\n\nStegman\'s Edgewear utility clothes are made from reinforced nylon weaves and lined with temperature-rated quilted technology to provide you with a little extra protection while on the jobsite. Double knees, reinforced joint pads and extra pockets add comfort and durability to this field-tested and worker-approved clothing line.'), +(2533,'Piercings_helix_01','Char_Head_Piercings','UNDEFINED','0dc1f54a-91c0-4153-933e-69017de64633','','',NULL), +(2534,'Fuel_Port_PLACEHOLDER_Mule','Door','UNDEFINED','04f426d2-f414-4dfc-b214-39e111b69163','','',NULL), +(2535,'ORC-mkV Arms Desert','Armor','Arms','ef2d8746-0dbd-4022-90ac-d2a9453f2242','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(2536,'ClipVest Work Harness Sienna','Char_Clothing_Torso_1','UNDEFINED','aa29ed02-cb9c-47a5-a589-2db28a9df925','','','Carrying Capacity: 2K µSCU\n\nStegman\'s ClipVest is a multi-purpose work harness that keeps your tools handy when and where you need them. Built from industrial strength materials, this harness offers a back piece to help alleviate strain and provide counterbalance.'), +(2537,'Internal Tank','QuantumFuelTank','QuantumFuel','b1f1a267-17b4-425d-8b1a-3967df2c1b38','','',NULL), +(2538,'ControlPanel_Screen_CustomButtons_WeaponWallLabel','ControlPanel','DoorPart','b7b556f9-7362-40db-bfd1-9f5d9dfd2a8b','','',NULL), +(2539,'Ati Jacket Yellow','Char_Clothing_Torso_1','UNDEFINED','3f28d3a6-db30-4519-a1d7-620091e497ab','','','Carrying Capacity: 2K µSCU\n\nFiore\'s is a modern update of traditional Earth design. Slim tailoring, a high collar, and striking asymmetrical design make this overcoat a must-have item for any wardrobe.'), +(2540,'ADP Core Red','Armor','Torso','d1be54f2-e270-4aa1-8b14-9560711a39ae','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(2541,'ADP Arms Grey','Armor','Arms','aa589dc1-2cb7-4c58-9062-4810ad134844','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(2542,'AEGS_Vanguard_Harbinger_Baydoor','Misc','UNDEFINED','7c6e1454-42d6-48fe-a527-8e3b173cbe0c','','',NULL), +(2543,'Access','SeatAccess','UNDEFINED','31b7455a-ce30-48df-ad3b-4636dda4826b','','',NULL), +(2544,'CNOU_HoverQuad_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','290474c6-8365-4190-b546-84fedde7894e','','',NULL), +(2545,'INTK_ORIG_350r','FuelIntake','Fuel','7e3e94ca-a24c-4f9c-8caf-333c007a259e','','',NULL), +(2546,'Scimitar V-G Missile','Missile','GroundVehicleMissile','e191151d-bb78-401d-8a3d-7b3406155245','','','Manufacturer: Talon \nTracking Signal: Electromagnetic \nSize: 5 \n\nThe Scimitar missile tracks targets via their EM signature to deliver a devastating size five payload. Note: This missile may only be launched by ground vehicles.'), +(2547,'Seat','SeatAccess','UNDEFINED','ace022fb-f3d9-4778-a9a2-8b4d50985711','','',NULL), +(2548,'Test_Clovis_Datapad_Safe_Contents01_4x3_Screen','Display','UNDEFINED','d17aa1c4-1054-405a-9dfb-9bb88cb7c3e6','','',NULL), +(2549,'Cutter 2955 Auspicious Red Pig Livery','Paints','UNDEFINED','90cc7c4d-62c9-4f1c-af31-baae573c78a4','','','Seek peace and prosperity in the new year with the Auspicious Red Pig livery. Outfit your ship with this bold red base paint complemented by gold accents and a stylized graphic of a pig.'), +(2550,'game_chess_1_knight_b','Misc','UNDEFINED','b137c6c8-4300-4069-8de0-e066940d8c56','','',NULL), +(2551,'Screen','SeatDashboard','UNDEFINED','ac463935-15d0-451a-94e8-ac6f17ce7dcb','','',NULL), +(2552,'BEHR_BallisticGatling_PowerArray_S6','WeaponAttachment','PowerArray','9f29019f-3ecf-4867-ad32-c1886973b4a7','','',NULL), +(2553,'SHIELDS','ShieldController','UNDEFINED','8463c9f3-82eb-48db-ae4c-d783cec4301e','','',NULL), +(2554,'Borase','Cargo','Cargo','f21c2d5a-cd33-4264-869c-57b1acd3287a','','',NULL), +(2555,'ThermoWeave Boots ASD Edition','Char_Clothing_Feet','UNDEFINED','bcd5f19d-6ddc-43e8-9e64-214956c215fc','','','The ThermoWeave boots receive a special dual-coat to achieve the same fire-rating as the rest of the suit. The boots also have reinforced high ankle support and ultra durable, anti-slip outsoles.\n\nWorn by employees who require an extra level of protection in their field, the ASD Edition showcases the reds and greens of the ASD branding.'), +(2556,'Bed','Usable','UNDEFINED','bf1ff6b5-ae3c-4cc9-91bb-74405cbbcf29','','',NULL), +(2557,'SHIELDS','ShieldController','UNDEFINED','59c2e053-4006-4b70-89d0-d28fbca04752','','',NULL), +(2558,'Weapon_Rack_DRAK_4slots','Usable','UNDEFINED','23d97c7e-5700-414c-8e20-1410fae7e8c2','','',NULL), +(2559,'Seat','SeatAccess','UNDEFINED','5db2b197-9723-4085-8c1e-59a914205058','','',NULL), +(2560,'DockingTube_Fuel_Ports_RSI_Apollo','DockingCollar','UNDEFINED','4d7f3134-85b4-909f-979e-f1da8beb6b9f','','',NULL), +(2561,'Wikelo Favor','Misc','Harvestable','3b1cf59f-1e6b-4a91-9edb-f8c5ddf791ae','','','A system brought over from the Banu Protectorate, favors are a form of currency given out by artisans and soulis to acknowledge work done in the past. These favors indicate successful completion of work done for Wikelo and can be exchanged for his goods and services.'), +(2562,'Salt','Misc','UNDEFINED','b29a4909-7d3d-4b59-a341-f8985555361e','','',NULL), +(2563,'Stampede Module','MiningModifier','Gun','1bb6ee6d-3930-4c03-b6c6-38aad3a4703b','','','Manufacturer: Thermyte Concern\nItem Type: Mining Module (Active)\n\nLaser Instability: -10\nMining Laser Power: 135%\nShatter Damage: -10%\n\nExtraction Laser Power: 85%\n\nDuration: 30 seconds\nUses: 6\n\nThe Stampede uses a state of the art lens to increase mining laser power and reduce potential hazard associated with the deposit shattering. These improvements do come at the expense of a less powerful extraction laser.'), +(2564,'DockingTube_Fuel_Ports_RSI_Lynx','DockingCollar','UNDEFINED','3bf276dd-263d-4237-a85c-475e3355a070','','',NULL), +(2565,'Hephaestanite (Raw)','Cargo','Cargo','485441dd-addc-4d83-8726-6a154993f861','','',NULL), +(2566,'Odyssey II Undersuit Autumn','Armor','Undersuit','7656f045-c284-4a29-9348-0b4e1ebfcdbb','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe latest generation of RSI\'s classic Odyssey undersuit features a new rugged design capable of withstanding the harshest of conditions in space or planetside. Built using the latest microweave technology, the Odyssey II undersuit provides hours of comfort in locations that are anything but comfortable.'), +(2567,'TRGT. STATUS','Seat','UNDEFINED','c0c1e39f-39bb-442d-9f45-ba7e137723df','','',NULL), +(2568,'Personal Storage','Cargo','UNDEFINED','f567df51-6a11-434a-81af-db44aa99a220','','',NULL), +(2569,'Carryable_1H_SQ_artificial_skin_1_a','Misc','UNDEFINED','1ec47cc1-7a87-4858-91ea-3d7d7be9fc16','','',NULL), +(2570,'Safe_Keypad_ASDDelve','Cargo','UNDEFINED','04963eb6-0258-4622-a3c0-4b9eb3eb420d','','',NULL), +(2571,'ORIG_350r_Cargo_Cover_Front','Door','UNDEFINED','b5f17f39-13d1-40d2-b1ca-7760b558241c','','',NULL), +(2572,'mobiGlas Original Casing','MobiGlas','Personal','f047c8ed-7f5e-4bfa-81c2-c4c58e419314','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(2573,'Paladin Galahad Livery','Paints','UNDEFINED','6ee86b45-0502-4c86-88f5-32c6b573e0ad','','','Blend into the clouds until ready to strike with the Galahad livery for the Paladin, which features a white base paint with black and grey highlights.'), +(2574,'Testudo Legs Combustion','Armor','Legs','c7af38cb-0172-49bb-b075-2815349ce59c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4K µSCU\n\nThe Testudo armor for Quirinus Tech blends battlefield durability with everyday comfort. It weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort.'), +(2575,'Access','SeatAccess','UNDEFINED','6c7b6b60-e907-41de-93cc-33b9ac4af08a','','',NULL), +(2576,'BEHR_LaserCannon_Barrel_S6','WeaponAttachment','Barrel','94b0417e-c295-4478-93cd-0634210d2aa2','','',NULL), +(2577,'Black Mountain Sujin Tea (Medium Blend)','Drink','Can','e040cb26-8ea0-44ae-bac4-00bee0f55dd5','','','HEI: 21\nEffects: Immune Boosting, Cognitive Boosting\n\nSujin root tea, native to Elysium IV, is a traditional Tevarin beverage and has been produced for thousands of years. Black Mountain steeps only premium roots to make their delicious brew.'), +(2578,'Pyro RYT \"microTech\" Multi-Tool','Weapon','Gadget','14c13be2-7752-4cca-902d-f5afd51a3929','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier. This special edition features microTech branding.'), +(2579,'Killshot \"Payback\" Rifle','Weapon','Medium','4c9ea09f-acce-44e5-af8e-f9101c8eb7cd','','','Manufacturer: Unknown\nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 45\nRate Of Fire: 525 rpm\nEffective Range: 50 m\n\nBeauty is in the eye of the beholder, and if you aim just right, so will a round from the Killshot assault rifle. What it lacks in grace, this classic design has its own scrappy charm. \n\nThe Payback version is sprayed with red paint and anointed with bone fragments.'), +(2580,'Bed','Usable','UNDEFINED','4fd83976-ed1c-45f8-9672-a0fa9858aa1a','','',NULL), +(2581,'Remote Turret','Turret','GunTurret','aa481cf0-992b-44f5-8d48-beef15bbae6e','','','Remote Turret'), +(2582,'Seat','Usable','UNDEFINED','3c7859b5-b2e0-40dc-ae83-6be19d28096e','','',NULL), +(2583,'VariPuck S5 Gimbal Mount','Turret','GunTurret','f06339c0-1977-4c84-8d12-557c119f1056','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 5\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(2584,'Colonialism_Outpost_RN_Refinery','Sensor','UNDEFINED','4a3fb339-41a0-42f0-8c7b-614af0153008','','',NULL), +(2585,'Remote Turret','Turret','GunTurret','65fc908e-b7e3-432d-ac9d-aef6906906e4','','','Remote Turret'), +(2586,'Bacon Club Sandwich','Food','Junk','f243d9b6-39c3-43e0-beb1-ca267a122a23','','','NDR: 41\nEffects: None\n\nTwo kinds of bacon - one thick cut and heavily smoked, the other crisp and sweet – join creamy aioli, roasted zucchini and bitter greens on white bread. At Twyn\'s, it\'s what\'s inside that counts.'), +(2587,'MSD-442 Missile Rack','MissileLauncher','MissileRack','df4b25a2-c27b-4c2f-b3eb-36a4d767c3eb','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 4\nMissiles: 4xS2\n\nBehring’s MSD-442 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 4 hardpoint for the reliable and effective launch of four S2 missiles.'), +(2588,'Deri Gloves Ash','Char_Clothing_Hands','UNDEFINED','4f5f518e-1438-43a8-9feb-0fae2d2b48f7','','','Maintain a tactile sense of the world while also keeping your hands safe and dry with the Deri fingerless gloves. Featuring a comfortable inner lining, lightweight plating on the back of the hand and slip resistant palm padding, the Deri gloves are an ideal choice for a wide variety of tasks.'), +(2589,'Processed Food','Cargo','Cargo','2dca842f-04f8-4c7d-9d85-d6358e67eda9','','',NULL), +(2590,'Personal Care Product','Misc','UNDEFINED','0e81351d-b2c6-4230-b75a-490d3ec75804','','',NULL), +(2591,'Carryable_TBO_FL_24SCU_Commodity_ProcessedGoods_OrganHarvesting','Cargo','Cargo','d822f6d4-49ee-4af2-a04e-5461d9baa46e','','',NULL), +(2592,'Overlord Helmet Switchback','Armor','Helmet','3f428b0b-1f9e-419b-8f95-79b0385496e4','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord helmet delivers heavy armor protection while using a special lightweight composite plating that makes it feel like nothing\'s there. Repurposed ocular sensors normally found on ships keep you attuned to your surroundings and, when worn with the full Overlord suit, the high neck collar provides the helmet extra support and protection. Visor is AR crosshair compatible.'), +(2593,'Door Control','Door','UNDEFINED','1a61f654-22c6-43fb-b30b-0ff36c420f93','','',NULL), +(2594,'AEGS_Eclipse_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','3652af3b-f729-4c7c-b5c2-e7c2f3dd4d26','','',NULL), +(2595,'Mustang Murray Cup Livery','Paints','UNDEFINED','859943a7-fb06-486f-9187-e22227d43418','','','With a deep blue base and a bright yellow finish with chevron accents, this lively Murray Cup livery shows spectators that you\'ve got a true competitor\'s spirit.'), +(2596,'Seat','Usable','UNDEFINED','62d7f7d1-b140-491d-b217-3a6b59052276','','',NULL), +(2597,'Star Kitten Sally Helmet','Armor','Helmet','f68d0f94-b843-44ba-ac94-ee54a2f218d5','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nCelebrate your love of Genady Kuzo\'s classic Star Kitten cartoon with this commemorative helmet from Sakura Sun. The custom molding for this medium helmet faithfully recreates the show\'s icon character design without sacrificing its defensive capabilities. Integrated accent lights provide pops of color and highlight the helmet\'s unique silhouette. The helmet is sure to be a collectible among fans of the show and unusual armor enthusiasts. The Star Kitten Sally edition is white to look like the show\'s good-natured main character.'), +(2598,'F8C Lightning Shock Wave Livery','Paints','UNDEFINED','8078adce-1b5b-48b6-a8fa-c3a1ae83e592','','','Turn heads and the tides of battle with the Shock Wave livery for the F8C Lightning. Featuring a striking green color with black highlights, the livery provides a dramatic and distinct look to a ship that\'s both a beauty and a beast.'), +(2599,'TCS-4 Undersuit Arctic','Armor','Undersuit','aa63b636-4870-4470-8507-309a883a4c5c','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThis comprehensive Tactical Combat Suit provides a complete sealed suit against vacuum, free range of motion, and interfaces seamlessly with compatible armor systems.'), +(2600,'Door Control','ControlPanel','DoorPart','17f34e52-4d32-4961-90cd-bd29eeb7b877','','',NULL), +(2601,'ADP-mk4 Helmet Big Boss','Armor','Helmet','5f8f99e3-a9e1-438b-92c3-074fb5a474e8','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhen there\'s a difficult job at hand, you want to ensure that you can see it through to the end. Clark Defense Systems\' ADP-mk4 heavy armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers.'), +(2602,'Projector_HUD_Mining_MOLE_Side','Display','UNDEFINED','b5066a63-1764-436f-83fe-b7b85c3f5cbf','','',NULL), +(2603,'ESPR_BallisticCannon_Ventilation_S3','WeaponAttachment','Ventilation','e5f181c5-8170-4062-872a-02b82c9a0d22','','',NULL), +(2604,'PAB-1 Legs Executive','Armor','Legs','d8d3a498-68ff-4505-a05e-1107628cb66b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(2605,'Corbel Arms Halcyon','Armor','Arms','3c69369e-d63b-45de-bfc7-5b6bf5d8c72d','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nOriginally designed as a strength enhancement suit to give factory workers better lifting power, CDS found wider application in utilizing its defensive capabilities. It\'s triple-enforced armor plating provides extreme physical protection, with deliberate placing of materials to protect the most vulnerable parts of the body. A series of pneumatic levers offer increased flexibility in the joints, alleviating pressure and weight in key areas to create an accessible and highly protective armor despite its heavy weight.\n\nThe Halcyon edition displays a sharp contrast of bold yellow and muted black.'), +(2606,'Cal-O-Meal \"Chocolate Deluxe\" Protein Bar','Food','Bar','05a35905-a308-40d3-8977-8df9ada007af','','','NDR: 20\nEffects: Hypertrophic\n\nCal-O-Meal bars are loaded with high quality protein and packed with a concentrated dose of vitamins, minerals, and rich chocolate flavor, making it a convenient way to maintain nutrition and lean muscle mass on the go.'), +(2607,'Avalanche','Cooler','UNDEFINED','a52245d7-a95e-46d5-a933-32267371e156','','','Item Type: Cooler\nManufacturer: Aegis Dynamics\nSize: 2\nGrade: A\nClass: Military\n\nShowcasing the best of mil-spec cooler technology, the Aegis Avalanche thermal management unit has been built from the ground up to endure the demanding needs of the battlefield.'), +(2608,'Zeus microTech Livery','Paints','UNDEFINED','316244e4-dd72-4435-8000-a3cca0952a54','','','The microTech livery for the Zeus features the company\'s logo atop a white base paint with light blue and grey highlights.'), +(2609,'Weapon Rack','Door','UNDEFINED','68f6b3ae-e9f0-4a06-a19c-eb9affa536a2','','',NULL), +(2610,'R97 \"Kismet\" Shotgun','Weapon','Medium','1564c96a-2af8-46ec-bea6-70e9cc0ee4a5','','','Manufacturer: Gemini\nItem Type: Shotgun\nClass: Ballistic\n\nMagazine Size: 18\nRate Of Fire: 120 rpm / 60 rpm\nEffective Range: 15 m / 35 m\n\nAttachments: Optics (S1), Barrel (N/A), Underbarrel (S2)\n\nThe R97 combines sleek design and stopping power for an elegant and effective close quarters weapon. This ballistic shotgun from Gemini features two distinct fire modes — a semi-auto wide spread mode ideal for dealing quick damage and a focused mode that offers increased range at the expense of some power. This combat flexibility has made the R97 a popular personal defense weapon across the Empire. Protect yourself and your loved one with the special Kismet edition of the R97, which features pink and black coloring reminiscent of the ship Yuri Ilyin flew to track down his lost lover Corazon Tan in the classic vid Coramor.'), +(2611,'Slacker T-Shirt','Char_Clothing_Torso_0','UNDEFINED','abeddda6-93c6-42a8-b10a-167039e9bc22','','','Announce your apathy in this Gutterwash tee. Or don\'t. Like it\'ll really make a difference either way. CBD out.\n\nWomen\'s sizes currently out of stock.'), +(2612,'Colonialism_Outpost_RN_Geothermal_Powerplant','Sensor','UNDEFINED','6e56d96c-d1b1-4624-84c9-32e1a5951029','','',NULL), +(2613,'Perseus Deadfire Livery','Paints','UNDEFINED','5cc6fca4-c1ef-473e-83dc-d8e8d3812af0','','','Maintain your cover and an air of mystique with the Deadfire livery with its inky black base paint and red highlights.'), +(2614,'RSI_Scorpius_Thruster_Main_Top_Left','MainThruster','FixedThruster','19c33b93-c225-4df2-9752-992edc98bf1f','','',NULL), +(2615,'Day One Shirt Green','Char_Clothing_Torso_0','UNDEFINED','20e85e8f-cc78-44b0-9232-bcd15d5b72cd','','','This Henley shirt from Stegman\'s is made with AirFlow technology, a stain-resistant, air-cooled fabric that keeps you comfortable and dry.'), +(2616,'Dopple','Cargo','Cargo','3642e17d-ef51-4a8a-9cf5-6e04d3f72fa3','','',NULL), +(2617,'TRGT. STATUS','Seat','UNDEFINED','5d92d2eb-a580-433b-9b98-9e905737f087','','',NULL), +(2618,'RSI Constellation Side Missile Rack','MissileLauncher','MissileRack','67d955e2-38b2-497d-8c88-72ffe4ebdd19','','','RSI Constellation Side Missile Rack'), +(2619,'orig_bedding_duvet_4_d','Seat','UNDEFINED','2b4ca23b-447c-40c8-b069-aef3d2174820','','',NULL), +(2620,'CRUS_Starlifter_Door_Decal_Sealed_XL_A','Decal','DoorPart','d5dc6b37-8c29-4d00-b6b2-3d78764fb573','','',NULL), +(2621,'Deadhead Helmet Dust','Armor','Helmet','f9f9b7d3-4118-41c7-af74-67cd1c6c8485','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\n\nRemind your enemies that death is coming with the Deadhead helmet. In place of a visor, the ghastly visage of a Human skull, lit from within by an infernal glow, is sure to send any opponent running.'), +(2622,'Chernykh','Radar','MidRangeRadar','5b0d1308-b34a-4b55-94f5-7270e03ca82a','','','Item Type: Radar\nManufacturer: WillsOp\nSize: 2\nGrade: C\nClass: Civilian\n\nThe Chernykh is named after the famed 26th century engineer who designed some of the most prized radars of that era. This medium radar from WillsOp celebrates both the look and performance of those classic components.'), +(2623,'Carryable_1H_CY_tool_manual_socket_3_a','Misc','UNDEFINED','cefdb56f-a236-47fb-8451-2cc663914daf','','',NULL), +(2624,'CRUS_Starlifter_Door_Decal_Armory','Decal','DoorPart','fafff448-bdaf-49c6-8b4d-e499774d1fec','','',NULL), +(2625,'VNCL_Glaive_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','8f7f47d0-f9ff-46cc-84da-62bd7537c774','','',NULL), +(2626,'Spark I Missile','Missile','Missile','b86bd2f2-1f5e-4731-a286-74faa8cde646','','','Manufacturer: Firestorm Kinetics\nTracking Signal: Cross Section\nSize: 1\n\nThose that believe size doesn’t matter would do well to stay clear of the Firestorm Kinetics Spark. Using cross section targeting, this lightweight proximity missile packs a considerable punch.'), +(2627,'Microid Battle Suit Core','Armor','Torso','c9d14082-2ac7-464b-a772-7e48e086e865','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(2628,'Lynx Core Olive','Armor','Torso','fd4e81b9-ebbc-4bde-9f90-672ce6ba52c4','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(2629,'ORC-mkV Legs Grey','Armor','Legs','6909c564-75b1-4b76-8673-efec8e7c3374','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(2630,'ForceFlex Undersuit Black/Purple','Armor','Undersuit','fd392d0a-e400-43ff-acd0-a3fcefc31b2b','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nVirgil\'s ForceFlex is the next generation in undersuit technology. Rated for combat as well as industrial work, you can rest assured that the comboweave will keep you protected in whatever situation you put it through.'), +(2631,'Tulsi Jacket Conifer','Char_Clothing_Torso_1','UNDEFINED','32353619-acc9-41b4-b75e-9ca7d679906b','','','Carrying Capacity: 1K µSCU\n\nThis Tulsi jacket features an outer shell designed to cut down on wind shear and an inner shell made to retain warmth without sacrificing comfort. For ease of use, it also features an gentle-glide zipper with a secure top stop and roomy pockets that guarantee you\'ll always have what you need on hand.'), +(2632,'Locker_Shallow_WallLeft_AEGS','Misc','UNDEFINED','1d9a7984-42b6-4371-b056-c489eb3dd882','','',NULL), +(2633,'DRAK_Cutlass_Red_Thruster_Maneuver_Front_Bot','ManneuverThruster','JointThruster','5bc9f1a7-e847-4df5-8dc9-571da8e05c57','','',NULL), +(2634,'Edgewear Pants Green','Char_Clothing_Legs','UNDEFINED','3faada6d-35f7-4372-9f34-f5b8e111f32f','','','Carrying Capacity: 4K µSCU\n\nStegman\'s Edgewear utility clothes are made from reinforced nylon weaves and lined with temperature-rated quilted technology to provide you with a little extra protection while on the jobsite. Double knees, reinforced joint pads and extra pockets add comfort and durability to this field-tested and worker-approved clothing line.'), +(2635,'m_human_mannequin_odyssey_suit_01','ShopDisplay','UNDEFINED','f6ed1263-1623-47c6-a90d-289f6c19ab59','','',NULL), +(2636,'Lunes (Spiral Fruit)','Cargo','Cargo','c4773374-3ea9-4947-a90a-e25195a70d58','','',NULL), +(2637,'facial_hair_015','Char_Head_Beard','UNDEFINED','e7eeecde-9633-481e-8b4c-f0e45a1a7e03','','',NULL), +(2638,'ANVL_Terrapin_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','4017ec8f-05a7-4d14-9caf-78b78ba02fa0','','',NULL), +(2639,'RSI_Constellation_PH_BayWall_Right','Container','UNDEFINED','9fa31592-ff04-476c-a7d9-e5f7938fc89b','','',NULL), +(2640,'Redeemer 2953 Best in Show Livery','Paints','UNDEFINED','3c9c1fe2-4d2c-4ac0-9faa-f8ce2c9a95a8','','','Celebrate the Aegis Redeemer being voted a Best in Show finalist for 2953 with this pearlescent purple and cyan livery.'), +(2641,'Seat','SeatAccess','UNDEFINED','662eb64c-b24f-4134-90d0-7ec193a942d0','','',NULL), +(2642,'Vehicle_Screen_MFD_Holographic_Talon_TR','Display','UNDEFINED','5cc9661d-b162-422c-a95e-f9504145cefe','','',NULL), +(2643,'P-52 Merlin IceBreak Livery','Paints','UNDEFINED','5d83b277-c025-493a-b312-878cd7351c9b','','','Equip your P-52 Merlin with a paint scheme cooler than a snow storm. The IceBreak livery mixes crisp, cool white with a frostbitten blue for an exciting look suitable for any season.'), +(2644,'RSI_Aurora_LN_Thruster_Main','MainThruster','FixedThruster','e28a26b3-6f95-432c-be9b-cc479dc1459c','','',NULL), +(2645,'TRGT. STATUS','Seat','UNDEFINED','a7cf58bf-2272-47fc-9ed4-5cebe99cd23d','','',NULL), +(2646,'Ranta Dung','Cargo','Cargo','4842f390-2d60-4a72-b5f6-a1f77a72fe99','','',NULL), +(2647,'mobiGlas Amber Casing','MobiGlas','Personal','5037230a-a941-4233-b056-0bc53055d02f','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(2648,'Stinger Black Widow Livery','Paints','UNDEFINED','efdd048a-7c29-4601-b2b6-d8a5990a7a1e','','','Sink your claws into your prey with the black and deep reds of the Esperia Stinger\'s Black Widow livery.'), +(2649,'Personal Storage','Cargo','UNDEFINED','45f69f04-b7f5-01f4-7aac-4a068c8cedbe','','',NULL), +(2650,'Scourge \"Nightstalker\" Railgun','Weapon','Large','517834f4-9343-4aaa-907c-6d911d221936','','','Manufacturer: Apocalypse Arms\nItem Type: Railgun\nClass: Ballistic\n\nMagazine Size: 5\nRate Of Fire: 60 rpm\nEffective Range: 200 m\n\nAttachments: Optics (N/A), Barrel (N/A), Underbarrel (S4)\n\nEqually devastating to larger threats and hostile vehicles, this shoulder mounted railgun from Apocalypse Arms uses electromagnets to deliver its payload accurately over great distances, making it the Scourge of land, air and space.'), +(2651,'Parvat Jacket Stony Brae','Char_Clothing_Torso_1','UNDEFINED','a8918f8f-4862-4eec-8b1a-243d9b0c7d6b','','','Carrying Capacity: 2K µSCU\n\nWeather the cold with this waterproof and insulated jacket from Escar Limited. Featuring a stylish design and unique dual-layer collar, the Parvat will keep you warm when you need it most.'), +(2652,'TRGT. STATUS','Seat','UNDEFINED','2e245243-99e0-4e65-b8fd-8642de7abe70','','',NULL), +(2653,'Tray','Cargo','UNDEFINED','33de5679-d98c-4459-a46c-e3dd1ed50a90','','',NULL), +(2654,'ANVL_Hornet_F7CR_Mk2_Thruster_Retro_Right','ManneuverThruster','Retro','e5f428be-4f7c-49eb-9a66-ef4b530d1ea6','','',NULL), +(2655,'HRST_LaserBeam_Barrel_S10','WeaponAttachment','Barrel','4538b32c-6ad3-48e5-98b4-85688870e9a0','','',NULL), +(2656,'ORIG_890_Jump_Thruster_Mav_VTOL','ManneuverThruster','FixedThruster','0df2d3ba-1d0d-4eb6-9f02-3912fffcdd30','','',NULL), +(2657,'game_chess_1_pawn_a','Misc','UNDEFINED','58f884bb-361f-41e2-8fd8-1831eee0f535','','',NULL), +(2658,'Concept Shirt Olive','Char_Clothing_Torso_0','UNDEFINED','4357b059-b6cd-48d7-9ece-948308ecd101','','','This crisp, versatile button-front shirt from Fiore is made with cutting edge stain resistant and wrinkle-free technology, guaranteeing that you stay professional at all times.'), +(2659,'Morningstar Helmet (Modified)','Armor','Helmet','3645918b-e7ec-498a-9836-65a52e4a1471','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThis version of Kastak Arms\' Morningstar helmet has been modified from its original form. Show no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(2660,'Microid Battle Suit Arms Badland','Armor','Arms','34950651-daef-4a72-a4cd-c45c5c1003b8','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(2661,'Large Container','Container','UNDEFINED','f5bdad7a-3fa5-4e52-8290-44babf945e08','','','A large container used to hold various items.'), +(2662,'rod_torso0_03x01x04_10Ports','ShopDisplay','Default','07e71b8a-fb2a-4bf8-8acf-7eb15bceaf4d','','',NULL), +(2663,'MagnaBloom','PowerPlant','Power','098603e0-7866-47d3-a4f2-dbc98b653971','','','Item Type: Power Plant\nManufacturer: Sakura Sun\nSize: 1\nGrade: B\nClass: Civilian\n\nThe MagnaBloom power plant achieves above average performance and durability with minimal excess emissions, making it another exquisitely designed component from Sakura Sun.'), +(2664,'Vanguard Invictus Blue and Gold Livery','Paints','UNDEFINED','7a614151-6b3f-4119-9cba-9df617e7dce0','','','Featuring a vibrant blue base color and gold highlights, the Invictus Blue and Gold livery will give your Vanguard a striking style.'), +(2665,'Remote Turret','Turret','Utility','24546504-58cb-40a5-b6b5-db20a3bb959d','','','Remote Turret'), +(2666,'rack_gun_size_1_005x0075x00375_1_a','Misc','UNDEFINED','0d902ce5-b18a-441f-a56e-434b9d6c1b6e','','',NULL), +(2667,'Medical Bed','Usable','UNDEFINED','ddcd1692-8388-406e-ae0c-b594fd0ef6d5','','',NULL), +(2668,'Door Control','Door','UNDEFINED','79cb9790-2794-4f2a-a31a-d32cb3804174','','',NULL), +(2669,'Distilled Spirits','Cargo','Cargo','67c17f8d-9307-4fa1-88e8-244243f42f7a','','',NULL), +(2670,'Door Control','ControlPanel','DoorPart','2bf97fa1-53b3-492e-bff8-3875e7672a1a','','',NULL), +(2671,'Hornet Mk II Heartseeker Livery','Paints','UNDEFINED','4dba686d-b68d-410b-bcd5-08346e061002','','','Made for pilots whose true love is the thrill of a harrowing dogfight, the Heartseeker livery for the Hornet Mk II features a white base paint, red highlights, and a heart decal near the cockpit.'), +(2672,'Bed_Pillow_Idris_AEGS','Seat','UNDEFINED','e519033f-9664-4559-a996-ffda2c1d3a33','','',NULL), +(2673,'Oracle Helmet Grey','Armor','Helmet','53f51fd5-b913-4d28-8464-8ad0ebfa1ecf','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(2674,'San\'tok.yāi Missile Rack','MissileLauncher','MissileRack','905e351c-ee72-4034-81c2-a56cfc8c2a16','','','Item Type: Missile Rack\nManufacturer: Aopoa\nSize: 3\nMissiles: 2xS2\n\nBuilt to hold two S2 missiles, Aopoa designed these missile racks specifically to work in harmony with the unique design of the San\'tok.yāi.'), +(2675,'Razor Fortuna Livery','Paints','UNDEFINED','43382029-445a-4e18-a2eb-464ccb9ab685','','','Make luck your co-pilot. Boldly set your sights on the stars and adventure forth in style with the Fortuna livery. This Stella Fortuna themed paint scheme is primarily green with grey accents.'), +(2676,'Adiva Jacket Purple','Char_Clothing_Torso_1','UNDEFINED','c56fe43b-b69d-46d5-92d2-6538d8e0e6e5','','','Carrying Capacity: 1K µSCU\n\nDefine your ultimate you. The Adiva is an asymmetrical pullover with bold mixed-materials and solid reinforced trim.'), +(2677,'Venture Arms Orange','Armor','Arms','e93eefac-f051-4acd-9022-0293cbccd653','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(2678,'AEGS_Raven_CML_Chaff','WeaponDefensive','CountermeasureLauncher','687a7e98-6229-4072-bedd-ea90b2c2597f','','','@LOC_PLACEHOLDER'), +(2679,'Defiance Core (Modified)','Armor','Torso','03c1fed3-ff9b-449f-966e-fabf9ae310b8','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nThis version of CDS\'s Defiance core has been modified from its original form. Incorporating the same manufacturing know-how and expertise that the UEE Marines have come to rely on, Clark Defense Systems has designed their civilian-line of Defiance heavy armors to stand firm in the face of even the most adverse combat scenarios with its three-star rated protective plating and fully integrated mobility framework.'), +(2680,'AEGS_Idris_CargoGrid_CargoRoom_Medium','CargoGrid','UNDEFINED','ec00c253-d87c-4849-8dc8-c7116efa8a2d','','',NULL), +(2681,'Chlorine','Cargo','Cargo','03303537-4d90-46b6-9cfd-7dda08fba575','','',NULL), +(2682,'TBF-4 \"Sunspike\" Combat Knife','Weapon','Knife','db9f62ba-509f-4e50-a0d6-293662c6f0eb','','','Manufacturer: Roussimoff Rehabilitation Systems\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nBuilt for combat but ready for everyday use, the TBF-4 combat knife will get the job done. Built with an ultrastrong 1055 carbon steel blade, this tactical knife ends with a tanto point perfect for stabbing and penetrating hard surfaces while the serrated spine can be used to slice and shred. Beautifully balanced, the TBF-4 also features a grip with two finger grooves to ensure your hand stays in place during use. The special \"Sunspike\" edition features an orange grip and an aged finish.'), +(2683,'Stratus Pants Maroon','Char_Clothing_Legs','UNDEFINED','34927b3d-ca77-48d1-8fee-04fbaa598f5a','','','Carrying Capacity: 0.5K µSCU\n\nCasual comfort that you can wear anywhere. The Stratus pants feature a soft comfort waistband that perfectly embraces your hips, and distinct reinforced paneling to ensure long wear and supreme style.'), +(2684,'Lynx Legs Blue','Armor','Legs','fd9686a2-c248-4c2e-9333-9eae507d6f56','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(2685,'HRST_LaserRepeater_PowerArray_S4','WeaponAttachment','PowerArray','b78037d8-b7c3-4434-acee-186110eba41b','','',NULL), +(2686,'Lynx Legs Dark Green','Armor','Legs','87d2313a-20fb-4b52-9e80-405b71008b64','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(2687,'Kino Shoes Seagreen','Char_Clothing_Feet','UNDEFINED','d1692bba-95d3-4a05-b893-3dcc4864382f','','','These two-tone slip-on shoes are comfortable enough for casual wear, but stylish enough for the workplace.'), +(2688,'SHIELDS','ShieldController','UNDEFINED','2b0d4544-cb77-4b8e-9900-27b6ebbafa52','','',NULL), +(2689,'ANVL_Pisces_C8R_Siren_Small','Container','UNDEFINED','57e093f5-f407-4904-8c8a-e81a5132fbf2','','',NULL), +(2690,'Molina Mold Samples','Cargo','Cargo','15c2a907-118a-40d1-a3e4-374d7bc6a53f','','','Samples of the deadly Molina Mold securely sealed in biohazard containers to ensure its toxic fungal spores can\'t get airborne.'), +(2691,'Pressurized Ice','Cargo','Cargo','7a9583c4-5661-4a61-8527-efeba876cef9','','',NULL), +(2692,'Ball','Char_Head_Piercings','UNDEFINED','0d317b0f-8771-4e56-8c6b-d09f39e0d4a8','','',NULL), +(2693,'ParaMed Refill','WeaponAttachment','Magazine','f10cba0e-bb94-4438-a628-5128913bb995','','','Item Type: MedGel Refill\n\nThis vial is used to refill the ParaMed Medical Device with CureLife Pancea MedGel.'), +(2694,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','f865997a-d4e3-492e-9284-9871fb63c57f','','','Joker Defcon - Noise Launcher'), +(2695,'Frontier 05 Pants Classic','Char_Clothing_Legs','UNDEFINED','40d587f0-3929-4fef-b46b-4c3585f81a2e','','','Carrying Capacity: 0.5K µSCU\n\nDMC\'s Frontier collection has been a staple of frontier living for centuries. These heavy denim workpants have double-stitched reinforcement and stainguard technology, making them dependable pants for any environment day in and day out.'), +(2696,'Savrilium','Cargo','Cargo','9e5087b2-6011-4d9e-84e2-cec0acae409c','','',NULL), +(2697,'Door','Door','UNDEFINED','32818d61-7bd8-4430-802a-3c8954f864e7','','',NULL), +(2698,'Lynx Core Pariah','Armor','Torso','be161018-5142-4f44-8929-9ba409abb509','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(2699,'MSD-442 Missile Rack','MissileLauncher','MissileRack','5a11b62b-8771-4e57-a1a0-32e11f073f82','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 4\nMissiles: 4xS2\n\nBehring’s MSD-442 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 4 hardpoint for the reliable and effective launch of four S2 missiles.'), +(2700,'Flight Blade','FlightController','UNDEFINED','88870563-16fc-47e1-a2ab-21b8cdb82cca','','',NULL), +(2701,'Voidripper Helmet (Modified)','Armor','Helmet','a9f7a2f3-7f65-4f3d-94e0-6041f539c9ba','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThis version of Sakura Sun\'s Voidripper helmet has been modified from its original form. Embrace your inner beast by equipping the Voidripper helmet. Layers of heavy armor plating provide premium protection and an unforgettable visage featuring a heavy brow and piercing turquoise eyes. Sakura Sun designers complimented this striking form with supreme function, including a state of the art sensor suite attached to the helmet\'s right side. Visor is AR crosshair compatible.'), +(2702,'Utensil_Plate_Burger','Misc','UNDEFINED','a034fe72-459f-4ae0-90fc-3099dfeff98f','','',NULL), +(2703,'Interstellar Transport Guild Container Model','Misc','Flair_Wall_Picture','42a36e9a-8ef2-430c-90a0-5b8125684a1e','','','There\'s no need for a tractor beam to move this cargo container. This finely detailed model features Interstellar Transport Guild branding with the guild\'s logo and black and grey color scheme.'), +(2704,'H_Dashboard_Projector_HUD_AEGS_Redeemer','Display','UNDEFINED','f1cf46c9-783e-4f35-a78d-980d4c43f584','','',NULL), +(2705,'Nyman Jacket Green','Char_Clothing_Torso_1','UNDEFINED','b7c7a5e4-702a-4368-8564-9ca677d3e199','','','Carrying Capacity: 1K µSCU\n\nOpalSky\'s Nyman light pullover is perfect to have on hand when lounging poolside or on those chilly nights.'), +(2706,'Tona Shoes','Char_Clothing_Feet','UNDEFINED','2af84e58-ee56-41f9-9c0a-6415ee1fa15d','','','Perfect for hiking or fieldwork, the Tona from R6 Pro is a low-top sneaker built out of breathable Cheofreme materials which not only provide extra protection against impacts, but keep your feet dry.'), +(2707,'DockingTube_Fuel_Ports_DRAK_Buccaneer','DockingCollar','UNDEFINED','2cff1ebd-af66-4fcb-a1fe-253ef495cf77','','',NULL), +(2708,'MISC_Starfarer_Base_SCItem_Dashboard_CoPilot','SeatDashboard','UNDEFINED','d3e24039-3cb2-45b9-a729-5f2f335b88b3','','',NULL), +(2709,'Gladius Foundation Fest Livery','Paints','UNDEFINED','e9d4463d-69ec-4e55-a14b-e42386690617','','','Foundation Festival is an opportunity for Citizens and Civilians to come together and strengthen the foundation of our community. Show your commitment to a better universe with this custom livery.'), +(2710,'Laranite (Raw)','Cargo','Cargo','40436aa4-b757-4eea-8a79-c028d6c16953','','',NULL), +(2711,'Overlord Legs Riptide','Armor','Legs','d838c170-efe0-4cea-8fc8-015a80243a38','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.'), +(2712,'Prism \"Deep Sea\" Laser Shotgun','Weapon','Medium','ca19298f-a111-46ed-bc88-870148c6d2b7','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Shotgun\nClass: Energy (Laser)\n \nBattery Size: 20\nRate of Fire: 200 - 450 rpm\nEffective Range: 10m\n \nAttachments: Optics (S2), Underbarrel (S2)\n \nFiring powerful shortrange bursts of energy, engineers at Verified Offworld Laser Technologies have developed the Prism laser shotgun so that as the weapon\'s heat-levels rise, the pellets begin fusing together into slug-like projectiles that inflict higher damage on targets. The Deep Sea Edition is mostly black with dark blue highlights.'), +(2713,'Door Control','Door','UNDEFINED','cdf0aa80-26a5-4595-b630-496357c93eba','','',NULL), +(2714,'shelf_magazines_04x01x01_09Ports','ShopDisplay','UNDEFINED','e226b29b-bdd0-45db-8e72-75d497c062d7','','',NULL), +(2715,'Cumulus Pants Purple','Char_Clothing_Legs','UNDEFINED','29a1a3b7-ee1c-4884-9b7b-b7acd98623a8','','','Temp. Rating: -35 / 15 °C\nCarrying Capacity: 3K µSCU\n\nBe bold and brave the cold with Cumulus pants. Designed with a synthetic fabric that insulates the inside and wicks away moisture from the outside, these pants provide protection against temperature drops to -35 °C.'), +(2716,'Cambrio SRT Battery','WeaponAttachment','Magazine','680e69e1-4bf5-4647-92bc-989d1e4a5faa','','','Item Type: Battery\n\nThis replacement battery powers Greycat\'s Cambrio salvage and repair tool, allowing your work to continue unabated.'), +(2717,'VNCL_Glaive_Thruster_Retro_Fixed_Right','ManneuverThruster','FixedThruster','41fdbafb-8357-4d69-8536-5b1bcf22d37a','','',NULL), +(2718,'TRGT. STATUS','Seat','UNDEFINED','0c5c6710-1359-4908-a088-d8a298c8de56','','',NULL), +(2719,'Door','Door','UNDEFINED','07a6b512-55ba-4ad9-8349-55e49aa018f2','','',NULL), +(2720,'RSI_Apollo_Canister_Storage_Shelf_Child','Misc','UNDEFINED','7289340f-7807-4612-9ecd-478f48ad50fe','','',NULL), +(2721,'Inquisitor Arms Outcrop','Armor','Arms','f4c9efd5-2a80-45f1-95e6-7d89d35aa915','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(2722,'Lynx Arms Purple','Armor','Arms','1e48d009-30aa-4657-8e7e-b90105868b02','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(2723,'DockingTube_Fuel_Ports_MRAI_Guardian_MX','DockingCollar','UNDEFINED','4b9d315e-ff05-4139-6542-b7595b85fc98','','',NULL), +(2724,'DockingTube_Fuel_Ports_AEGS_Vanguard','DockingCollar','UNDEFINED','cd91e853-5da1-4a07-b7b4-3eedfa78fe3d','','',NULL), +(2725,'IAE 2954 Hat Purple','Char_Clothing_Hat','UNDEFINED','071b9a8a-0069-452e-af79-dee28f556a99','','','The official hat of the 2954 Intergalactic Aerospace Expo is a vibrant purple with the logo across the front.'), +(2726,'Sarilus','Cargo','Cargo','fab3f02c-f973-4d29-a45e-6dcf8e2ea0f8','','',NULL), +(2727,'Station','SeatAccess','UNDEFINED','9e584db4-1e42-4aa6-b3c3-57d0efe781ef','','',NULL), +(2728,'Processed Food','Cargo','Cargo','1f4ff5eb-3919-4d05-b0d4-306df5bc9360','','',NULL), +(2729,'SunFire','QuantumDrive','UNDEFINED','f0790cc0-4ebd-45b9-8419-668635c7f04b','','','Item Type: Quantum Drive\nManufacturer: Ace Astrogation\nSize: 2\nGrade: B\nClass: Competition\n\nGreat performance and elegant design makes the Ace Astrogation SunFire quantum drive a favorite among race fans and enthusiasts.'), +(2730,'Deep-Space Undersuit Lucky Break','Armor','Undersuit','07b0a604-f09b-4c12-9650-73cd35cc362d','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nConfidently venture into the unknown with the Deep-Space undersuit. Smartly designed with several overlapping sections to guarantee the suit\'s integrity, Gyson has created an affordable and fashionable undersuit that helps make space travel more accessible to all.'), +(2731,'Quantity','Misc','UNDEFINED','542fdeef-8bc6-4b37-9119-5ab8749d8473','','',NULL), +(2732,'ORIG_890_Jump_Thruster_Mav_BRL','ManneuverThruster','FixedThruster','20a3b199-d183-4497-883a-ed26344e89d0','','',NULL), +(2733,'Dymantium','Cargo','Cargo','055ce41a-973a-42f2-bdc7-e5700ef320f9','','',NULL), +(2734,'SoftLock_Terminal_Standard_Starfarer_Fuel_Pods_Ship_R2','Display','UNDEFINED','f8d58f6b-88b3-481f-a251-0128d14145aa','','',NULL), +(2735,'Vehicle_Screen_MFD_Holographic_MISC_Reliant_ML','Display','UNDEFINED','78d6adb0-68b7-46af-8616-2c259663703e','','',NULL), +(2736,'Bed_Sheets_No_Mattress','Seat','UNDEFINED','ead5bc58-c3ca-4b15-9e5b-67b15a43ecd2','','',NULL), +(2737,'MASTER_screen_16x9_MiningKiosk_large','Display','UNDEFINED','b025660b-344a-4194-8543-e325699a5f5b','','',NULL), +(2738,'Treadlight Shoes','Char_Clothing_Feet','UNDEFINED','c9842901-8d78-4273-8bc5-2297f4389171','','','Make business casual with Octagon\'s elite Treadlight line of shoes. Elegant but unassuming for the truly independent operator, the Treadlight\'s premium construction looks as at home in the boardroom as it does at the spaceport. Extremely durable rubber-mesh soles and an easy-to-clean artificial leather exterior allow for extended use without the usual wear and tear.'), +(2739,'Carryable_1H_SQ_Datapad_Fluff_Orb_HathorGroup_002','Misc','UNDEFINED','03d7f182-b363-4e7c-998d-e6d6900723ab','','',NULL), +(2740,'C54 SMG','Weapon','Medium','8e3e44bd-d289-4a8c-b2e6-289746b02d27','','','Manufacturer: Gemini\nItem Type: SMG\nClass: Ballistic\n\nMagazine Size: 50\nRate Of Fire: 1,100 rpm\nEffective Range: 35m\n\nAttachments: Barrel (S1), Optics (S1), Underbarrel (S1)\n\nEasy to handle and a beauty to behold with its purple accented styling, the C54 is a sleek and precisely balanced SMG from Gemini. Its lightweight polymer frame and ergonomic design makes it ideal for close quarter engagements. The C54 is capable of firing 10mm rounds on full auto to provide maximum support and target saturation to ensure that any engagement ends quick.'), +(2741,'Day One Shirt Violet','Char_Clothing_Torso_0','UNDEFINED','7072dd96-18b1-4207-995d-7858edc97e2c','','','This Henley shirt from Stegman\'s is made with AirFlow technology, a stain-resistant, air-cooled fabric that keeps you comfortable and dry.'), +(2742,'Prota','Cargo','Cargo','57c72284-2d5a-4ac5-9647-eb573f9cd5ae','','',NULL), +(2743,'PAB-1 Core Covalex Edition','Armor','Torso','54d3bbea-24d7-44b2-9bc1-7f0034c83116','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile. The Covalex Edition was made specifically for the company.'), +(2744,'Door Control','Door','UNDEFINED','32be052c-49ca-4ba0-b279-d0ba91d9714b','','',NULL), +(2745,'game_checker_piece_double_a','Gadget','UNDEFINED','9518437e-9f7c-4ae3-8b1f-af9df81e21f0','','',NULL), +(2746,'Weapon_Rack_1_NONE_Rifle_Common_001','Usable','UNDEFINED','8537114b-ead3-4797-80b1-2c3a5fce7c38','','',NULL), +(2747,'Seat','Usable','UNDEFINED','dc52f6c0-e581-4009-a5c9-c85372a03911','','',NULL), +(2748,'Internal Tank','FuelTank','Fuel','34a88af2-0df1-48bf-a68a-9eb6e2814b07','','',NULL), +(2749,'600i 2951 Best in Show Livery','Paints','UNDEFINED','03caed87-84be-4674-ad09-8c4afcfa419c','','','Celebrate the 600i being voted a Best in Show finalist for 2951 with this special blue and black livery.'), +(2750,'H_Dashboard_Projector_HUD_RSI_Polaris_S_L','Display','UNDEFINED','5f14c43c-9b2e-4f2d-9a10-14bd225c00e0','','',NULL), +(2751,'ROC Aphorite Livery','Paints','UNDEFINED','9165cb44-d419-42d4-ae53-dd894f209f81','','','Decorate your ROC with the Aphorite livery, which gets its name and color from the precious purple gemstone prized for its multi-hued tones.'), +(2752,'CRUZ Pulse','Drink','Bottle','9d8be587-4081-48c4-bd3e-39e334689df1','','','HEI: 38\nNDR: 30\nEffects: Hypertrophic, Hypo-Metabolic\n\nRestore, refuel, and recharge with CRUZ Optimal Nutrition Drink. CRUZ Pulse features the cutting edge compounds that increase your digestive well-being.'), +(2753,'TRGT. STATUS','Seat','UNDEFINED','aa49dcfc-831a-41a0-bd98-58e51a8289d7','','',NULL), +(2754,'Carryable_Bucket','Misc','UNDEFINED','b9e34597-b8b6-4414-937d-a26850390e29','','',NULL), +(2755,'Strata Core microTech Edition','Armor','Torso','10ff7a53-3400-46f1-bec2-c2876861a59c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 15k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpack Compatibility: Light & Medium \n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The microTech Edition was made specifically for the company.'), +(2756,'Sedulity','PowerPlant','Power','bd423b9c-4115-4785-909a-77d621fd2bc4','','','Item Type: Power Plant\nManufacturer: Juno Starwerk\nSize: 2\nGrade: B\nClass: Industrial\n\nWhen you need a power plant that’s as reliable as you are, then snag yourself a Sedulity. This component has been a staple of the Juno Starwerk line for years, making it truly worthy of the name.'), +(2757,'Vehicle_Screen_Physical_Holo','Display','UNDEFINED','89d12a4d-4327-45ba-954f-d81d91a6fd13','','',NULL), +(2758,'PAB-1 Core Violet','Armor','Torso','dbae4e2e-410d-4d60-a5a4-a484a33c61cb','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(2759,'SHIELDS','ShieldController','UNDEFINED','dcb7ef02-fff2-460f-bea0-fab5dd11e186','','',NULL), +(2760,'sc_nvy_pilot_light_core_01_01_02','Armor','Torso','529dde0a-34ca-4e8e-b5ae-aa2dabd8318f','','','@LOC_PLACEHOLDER'), +(2761,'Pampero Boots Brown','Char_Clothing_Feet','UNDEFINED','903c737a-9cda-4967-a72e-f47f8040d110','','','The Pampero are sleek ankle high boots feature lightweight yet durable soles to make it feel like you\'re walking on clouds even when trekking across the most unforgiving terrain.'), +(2762,'Counter_Shop_Aparelli','Usable','UNDEFINED','a23ea953-553f-4407-8be6-7df2b1112b44','','',NULL), +(2763,'Venture Arms Violet','Armor','Arms','ba2da8a3-d586-4441-bfd2-66e2784ae2d6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(2764,'Camion Jacket','Char_Clothing_Torso_1','UNDEFINED','5bdc9e1a-537b-4378-a7c0-33b839b2e9fb','','','Carrying Capacity: 1K µSCU\n\nCome prepared with the Camion. This button up blue jacket delivers on style with complimentary dark brown synthetic leather around the neck, shoulders, and arms. A cross-shoulder sling bag and integrated utility belt allows you to carry plenty of gear and keep it organized.'), +(2765,'ESPR_Talon_Thruster_Main_TL','MainThruster','FixedThruster','2cb93b8e-8a56-4614-9afd-6b0f85f699f2','','',NULL), +(2766,'Radar_Display_VNCL_Glaive','Display','UNDEFINED','971a92c4-70f7-4124-bf08-be1e1378ab3a','','',NULL), +(2767,'colonialism_airlock_tube_small_default_lghtgrp','Lightgroup','AirlockPart','f4a62434-216c-4e43-9ef2-6754c1869a48','','',NULL), +(2768,'Bed','Usable','UNDEFINED','8007f4e7-7f58-447b-9df9-2d5fd1c568f3','','',NULL), +(2769,'Gasping Weevil Eggs','Cargo','Cargo','7b33c34c-7cf5-47db-9e9a-717290b64040','','',NULL), +(2770,'MISC_Razor_Thruster_Vertical_Top','ManneuverThruster','FixedThruster','a8daecbc-90ba-40c3-a31c-ac73575e5144','','',NULL), +(2771,'IndVest Jacket \"Pathfinder\"','Char_Clothing_Torso_1','UNDEFINED','1642e539-d07c-41c8-b832-8d9d84eabc1f','','','Carrying Capacity: 5K µSCU\n\nKeep your tools within easy reach with Stegman\'s IndVest. The exclusive Pathfinder edition is made from black industrial strength materials that includes both purple and silver highlights. A rare jacket that\'s both stylish and sensible. \n\nWomen\'s sizes currently out of stock.'), +(2772,'Seat','SeatAccess','UNDEFINED','cb1ef4ec-890c-457e-b424-66ba4bbc79c5','','',NULL), +(2773,'RADR_AntiPersonnel_Turret','Radar','MidRangeRadar','c818ab50-4350-42dc-b285-388adec321ec','','','@LOC_PLACEHOLDER'), +(2774,'lowtech_levski_airlock_lghtgrp','Lightgroup','AirlockPart','3f3b491d-560e-4ccb-ad65-4205760faa89','','',NULL), +(2775,'ControlPanel_Screen_LiftControl','ControlPanel','DoorPart','4040a7d2-3aba-4bdd-a67a-88be2c9a0aed','','',NULL), +(2776,'Carryable_1H_CY_Flashlight_Medical','Misc','UNDEFINED','4f1a7ae9-530f-472f-9ed4-a2e8f6aa2577','','',NULL), +(2777,'Hammerhead PHB Flight Blade','FlightController','UNDEFINED','539caf3f-0894-4587-915f-1648374d9ab7','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Aegis Hammerhead with the PHB Flight Blade from Broad & Rabiee. By re-allocating forward thrust resources, you can expect your ship deliver increased precision handling during tight maneuvers.'), +(2778,'Artimex Helmet Chairman\'s Club','Armor','Helmet','11b32878-7b39-4854-8598-ec5120c1e570','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape. Visor is AR crosshair compatible. The Chairman\'s Club edition is clad in black with rich gold highlights.'), +(2779,'display_box_plastic_4_weapon_opened_015x01x0025_rundown_a_1Port','ShopDisplay','UNDEFINED','9d8eb925-8fdd-46c5-915b-12f8cf801445','','',NULL), +(2780,'Seat','SeatAccess','UNDEFINED','d923e76d-b5a6-4601-ba19-49a176f190de','','',NULL), +(2781,'f_human_mannequin_utility_heavy','ShopDisplay','UNDEFINED','6b3db219-1f55-4590-958a-fce3dd51fcb3','','',NULL), +(2782,'Cargo_Slot_Grin_MTC_1Slot','Usable','UNDEFINED','611cc358-5f35-4ab3-8312-a5a38d6a6f2b','','',NULL), +(2783,'Inquisitor Core Rager','Armor','Torso','1324b3d7-77cc-4fc3-9e0b-f87ac3cbb219','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(2784,'Inquisitor Core Icefall','Armor','Torso','d8cb0851-17f3-407d-9420-dfbd5e7278fd','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(2785,'Weapon_Rack_3_Slot_AEGS_Idris_Armory','Usable','UNDEFINED','76555696-9f20-4269-97a2-da06fb88fe92','','',NULL), +(2786,'AEGS_Hammerhead_CargoGrid_Main','CargoGrid','UNDEFINED','70c8bcd5-73dd-4f3e-b81f-68cda2bfc199','','',NULL), +(2787,'Railing_Straight_4m_Lowtech_Open_Ext_B','Usable','UNDEFINED','2f913fdc-7d22-4e11-af5f-bd4f43bd4468','','',NULL), +(2788,'Silverton Pants Indigo','Char_Clothing_Legs','UNDEFINED','d73fc595-1268-47fc-a965-c86522928e37','','','Carrying Capacity: 1K µSCU\n\nMade with a sturdy blend of tough and flexible materials, the Silverton pants are the perfect fit for someone who needs heavy-duty workwear without sacrificing mobility. Got a job to do? We\'ve got you covered.'), +(2789,'ORIG_400i_Dashboard_Bridge_Left','SeatDashboard','UNDEFINED','37a81a9f-c0b3-4c10-84d4-f857dd2836de','','',NULL), +(2790,'Clipper Holt Camo Livery','Paints','UNDEFINED','14727164-e71f-4dad-baf7-9780e0daf221','','','The swirling green and khaki camo pattern of the Holt Camo livery makes it an ideal choice when you want to make the Clipper a bit more inconspicuous.'), +(2791,'Internal Tank','QuantumFuelTank','QuantumFuel','1e4a2793-18bf-46d0-a58a-32d87f98fd35','','',NULL), +(2792,'XTR Module','MiningModifier','Gun','37d62503-f13e-4f41-8ba1-7a3a692dd79f','','','Manufacturer: Greycat Industrial\nItem Type: Mining Module (Passive)\n\nOptimal Charge Window Size: +15%\nInert Material Level: -5%\n\nExtraction Laser Power: 85%\n\nThe XTR Module creates a wider mining window for deposits. It also makes the extraction laser less powerful so it can filter out more inert materials.'), +(2793,'Party Favors','Cargo','Cargo','31c9f31f-6fbf-43e8-98fc-617f8380507d','','',NULL), +(2794,'Tuvois Jacket Dark Green','Char_Clothing_Torso_1','UNDEFINED','3a201894-d25e-4869-b327-bb604848ae62','','','Carrying Capacity: 1K µSCU\n\nCreated in collaboration with legendary designer Avon, OpalSky is proud to unveil the Tuvois, an open vest featuring stark, bold styling that\'s destined to make an impression. \n\nWomen\'s sizes currently out of stock.'), +(2795,'Seat','SeatAccess','UNDEFINED','cfbd440f-b8e1-4a06-a6dd-1f3cd2cf136d','','',NULL), +(2796,'Ponos Boots Black','Char_Clothing_Feet','UNDEFINED','94dadfef-0c9f-47cc-96f6-9fa81fe6de12','','','Quite simply, R6 Pro\'s Ponos boots were built for backbreaking work. Constructed out of Thermosulate technology, these waterproof and insulated workboots are rated for sub-arctic environments while the composite outsole ignores hazards to maintain traction when you need it most.'), +(2797,'Aegis Gladius - Noise Launcher','WeaponDefensive','CountermeasureLauncher','2aafa166-65f4-49ea-90e2-8f1196ce0ea6','','','Aegis Gladius - Noise Launcher'), +(2798,'Omnapoxy','Cargo','Cargo','eb290cd2-bc6e-47fa-9bc8-a040bd67d103','','',NULL), +(2799,'Ramp Control','Usable','UNDEFINED','8f7b012e-173f-4bd1-aa32-17b6ba6f235b','','',NULL), +(2800,'IAE 2952 T-shirt Red','Char_Clothing_Torso_0','UNDEFINED','5d09f182-57a0-456f-a263-36634d76744d','','','Commemorate the 2952 Intergalactic Aerospace Expo with this red t-shirt featuring the event\'s logo across the front.'), +(2801,'Seat','SeatAccess','UNDEFINED','c178a712-98ff-4d18-a54f-2ed3c2e98fea','','',NULL), +(2802,'Radar_Display_25cm','Display','UNDEFINED','f6fffe15-54ce-498b-b877-9649b139b858','','',NULL), +(2803,'Quartz \"Lumen\" Energy SMG','Weapon','Medium','64bbccfd-dac2-456e-b25f-a695e58bc121','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: SMG\nClass: Energy (Electron)\n\nBattery Size: 45\nRate of Fire: Beam\nEffective Range: 15-20 m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nManufacturer VOLT\'s Quartz SMG utilizes exciting new weapon technology that fires a short range beam that fractures into multiple beams the longer it fires, making it an extremely effective close quarter weapon.\n\nThe \"Lumen\" edition mixes crisp white base with black highlights.'), +(2804,'Oracle Helmet Aqua','Armor','Helmet','f6ceb4df-7a12-4224-b172-ca1a7b55ff69','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(2805,'Libio Jacket Dark Green','Char_Clothing_Torso_1','UNDEFINED','f29d1c9f-5256-4128-b19a-27589efe0d77','','','Carrying Capacity: 1K µSCU\n\nOne of OpalSky\'s classic pullovers, the Libio features a two-tone asymmetrical pattern and polyweave blend to keep it elegant and striking every time you wear it.\n\nWomen\'s sizes currently out of stock.'), +(2806,'Door Control','ControlPanel','DoorPart','719d9ff3-845a-4aab-b286-cf4793c560fa','','',NULL), +(2807,'ControlPanel_Screen_LightControl_9x16_ht','ControlPanel','DoorPart','312bd957-1503-44aa-9588-c2de1310f832','','',NULL), +(2808,'Door','Door','UNDEFINED','cc34c203-84e7-4095-ac6f-a0c3c742657b','','',NULL), +(2809,'ATLS Auspicious Red Livery','Paints','UNDEFINED','9358d406-b626-4fe6-986b-52dda526e5fe','','','The Auspicious Red livery brings a bold red base paint and striking gold accents to the ATLS power suit.'), +(2810,'Ardent Boots Black','Char_Clothing_Feet','UNDEFINED','b3717896-ee23-4b0b-a2a7-0c0b959f6e54','','','Who says NorthStar can\'t keep it pro? The Ardent boot features a molded rubber sole and all-weather construction to withstand a constant battery from the elements.\n\nWomen\'s sizes currently out of stock.'), +(2811,'Medical Bed','Usable','UNDEFINED','3a206fce-dfc0-48f3-94e7-f089f38ccbe6','','',NULL), +(2812,'Corundum (Raw)','Cargo','Cargo','ce7a79a4-1bbd-4b9d-83fc-139ff56e2479','','',NULL), +(2813,'Coconut Curry Kacho','Food','Box','daeec25f-f3cc-44d3-97bf-1f8e4b3d3c55','','','NDR: 30\nEffects: None\n\nBig Benny\'s kacho is based on traditional family recipes straight from Corel, combining springy noodles and a rich, warm broth to create a taste enjoyed the \'verse over. The Coconut Curry flavor blends the sweetness of coconut milk with a secret recipe Big Benny\'s green curry blend.'), +(2814,'Flight Blade','FlightController','UNDEFINED','a4d82edd-82e2-4c4a-916a-b2fca2096e6b','','',NULL), +(2815,'Tussock Boots Coal','Char_Clothing_Feet','UNDEFINED','2f1d6822-e9d9-48d0-bfdf-b98f9f27058e','','','A proprietary blend of natural and artificial leather provides the Tussock Boot with unbeatable toughness, making it the perfect fit for both work and leisure.'), +(2816,'Chile Birria Burrito','Food','Junk','e5d0e1cf-4960-4cfc-970c-397d1d31760d','','','NDR: 34\nEffects: Dehydrating\n\nThis satisfying burrito features a tortilla wrapper filled with rich and spicy stewed mutton.'), +(2817,'Caterpillar ArcCorp Livery','Paints','UNDEFINED','70b2d32e-77b5-47ba-8073-93e07c2d90f9','','','The ArcCorp livery for the Caterpillar features the company\'s logo atop a maroon base paint with black and yellow highlights.'), +(2818,'SHIELDS','ShieldController','UNDEFINED','20883ae0-a49c-41df-834d-2d7fd8ddd412','','',NULL), +(2819,'ANVL_Hornet_F7CS_Mk2_Thruster_Retro_Left','ManneuverThruster','Retro','a99c80d0-efcb-4b6c-9019-16f6d049b3f0','','',NULL), +(2820,'Cleo Pants Dark Blue','Char_Clothing_Legs','UNDEFINED','fe208346-a046-4942-b4aa-9fd035ea7af0','','','Carrying Capacity: 0.5K µSCU\n\nElegantly simple, the intriguing design of Cleo becomes more apparent upon closer inspection thanks to a mock fall front lined with subtle diagonal pleats that provide extra texture and detail to the design.'), +(2821,'Nyman Jacket Dark Green','Char_Clothing_Torso_1','UNDEFINED','45058ef0-f8f3-43dc-a237-9eb118dfd5ed','','','Carrying Capacity: 1K µSCU\n\nOpalSky\'s Nyman light pullover is perfect to have on hand when lounging poolside or on those chilly nights.'), +(2822,'Morozov-SH Helmet Vesper','Armor','Helmet','7a848ebd-d54b-48ce-95e3-dd331a0bdf0f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(2823,'PAB-1 Legs Violet','Armor','Legs','e76d0e26-cd03-4b93-8abd-e94813ccec43','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(2824,'Lindinium','Cargo','Cargo','73319937-bd6e-4398-ace6-a94352688955','','',NULL), +(2825,'X1 Scarlet Livery','Paints','UNDEFINED','725b2bc7-57b5-49cd-806c-0110433eab65','','','Infinity Custom worked closely with Origin to develop the exclusive Scarlet livery, which enhances the striking look of the X1 with bold red accents.'), +(2826,'Demeco \"Ultraviolet\" LMG','Weapon','Medium','e2ed4699-48d7-46f8-9970-1bb95d86d1e1','','','Manufacturer: Klaus & Werner\nItem Type: LMG\nClass: Energy (Laser)\n\nBattery Size: 100\nRate Of Fire: 400 rpm\nEffective Range: 40 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S3)\n\nKlaus & Werner has created an iconic weapon with tried and true Demeco laser LMG. Used extensively in military engagements, this short-to-mid-range infantry favorite has been constructed with stability and accuracy at the forefront. The Ultraviolet edition features eye-catching violet and orchid coloring.'), +(2827,'Table_2_Booth_ORIG_400i','Usable','UNDEFINED','a2f7b542-3a45-4a4e-aa3a-55dabc21a122','','',NULL), +(2828,'Manned Turret','TurretBase','MannedTurret','910a7b83-1c3b-477d-8645-556ad4b7bfbf','','',NULL), +(2829,'Aego Pants','Char_Clothing_Legs','UNDEFINED','1c210a4d-dbeb-4d09-a4c6-1158dbe389ee','','','Carrying Capacity: 3K µSCU\n\nFeaturing a slim fit for a stunning silhouette, the Aego pants from Spar Van Miles keep you looking top dollar without sacrificing comfort.'), +(2830,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','894fa1cc-9734-44be-b4c1-f6895f9389a4','','','Aegis Gladius - Decoy Launcher'), +(2831,'MacFlex Core Orange','Armor','Torso','ffcd9cee-d115-42b8-89e4-fed10d5fa314','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(2832,'collector_teeth_01','Char_Accessory_Head','UNDEFINED','6b8ceaec-a935-40eb-a71f-c3cce14bb991','','',NULL), +(2833,'IndVest Jacket Olive','Char_Clothing_Torso_1','UNDEFINED','fbf9a767-e7eb-405b-aeb5-f1ebbe8a15da','','','Carrying Capacity: 5K µSCU\n\nKeep your tools within easy reach with Stegman\'s IndVest. Made from industrial strength materials, this is a rare jacket that\'s both stylish and sensible.'), +(2834,'MISC Prospector - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','9c90e6ab-f95b-4e07-a15d-aed5d50a944c','','','MISC Prospector - Decoy Launcher'), +(2835,'Kaswal Jacket Brick','Char_Clothing_Torso_1','UNDEFINED','05b4566e-8979-4269-ae7f-37babd08889d','','','Carrying Capacity: 1K µSCU\n\nDMC’s Kaswal is a cold-weather jacket designed with additional lining throughout the chest and sleeves for added warmth and comfort.'), +(2836,'Seat','SeatAccess','UNDEFINED','f1c2ed61-99b9-4efa-a1c1-cfb0f2de1009','','',NULL), +(2837,'Riccite','Cargo','Cargo','d1a8d99d-baea-4846-bbc0-715053a9fd24','','',NULL), +(2838,'Monde Arms','Armor','Arms','6467d7c1-a303-4ed6-9f6a-7c5a796258eb','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints.'), +(2839,'AD5B Ballistic Gatling','Weapon','Gun','f52975b5-d621-4c08-9dcc-3c4bd8170383','','','Manufacturer: Behring\nItem Type: Ballistic Gatling\nSize: 5\n\nThe AD5B, Behring\'s take on the classic ballistic gatling, includes a crystal cycle firing mechanism in the the high speed rotary system to maximize efficiency for sustained engagements with minimal misfires. Next time an aggressor escalates a hostile situation, make them regret the decision by spinning up this overwhelming and effective weapon.'), +(2840,'m_human_mannequin_marine_light','ShopDisplay','UNDEFINED','2f909d90-ee6b-4500-a672-2c22e67b8a9c','','',NULL), +(2841,'Locker_Shallow_WallRight_AEGS','Misc','UNDEFINED','d73bf674-9283-42c5-904b-bd4a17cf3b10','','',NULL), +(2842,'Prowler Silverado Livery','Paints','UNDEFINED','9c08388f-6969-4a2b-95cc-540f1d509f1e','','','Elevate the Prowler above the ordinary with the Silverado livery featuring striking silver with black and gold highlight.'), +(2843,'BEHR_LaserCannon_FiringMechanism_S8','WeaponAttachment','FiringMechanism','318f9e2b-430e-417a-a8db-b9376f7f95af','','',NULL), +(2844,'KRIG_L21_Wolf_Thruster_Pipe_Left','AttachedPart','UNDEFINED','ee776107-2232-4674-aa4b-46f8ae89dc0b','','',NULL), +(2845,'RemoteConnectionReceiver','RemoteConnection','UNDEFINED','d13323d7-afb8-405c-a810-a2faf7350f01','','',NULL), +(2846,'ADP Legs Executive','Armor','Legs','adeaa62d-2ddf-46b3-baad-44aa7e643dd4','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(2847,'M50 Ship Armor','Armor','Medium','4206486c-eb66-4462-b259-9d23a4483129','','','M50 Ship Armor'), +(2848,'Chiron Arms Lifesaver','Armor','Arms','7e51d901-339e-4326-b474-d3939ad2f096','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBe the first on the scene with the Chiron armor. Designed to provide the essential protection that combat medics need, the armor features ultra-lightweight paneling to keep the wearer quick on their feet without compromising on safety. Crucial, high-impact sections have been reinforced with raised carbon plating on top of a highly durable polyfiber for maximum flexibility.\n\nThe Lifesaver edition was styled for first responders to be highly visible. The teal, white, and red color scheme features a medical cross symbol across the chest and helmet.'), +(2849,'Kopion Horn','Cargo','Cargo','9edd431b-1248-46f2-a189-b8b088c49416','','',NULL), +(2850,'MacFlex Backpack Grey','Armor','Backpack','3802599d-c685-49a3-b174-cd4c6f29b6cc','','','Item Type: Light Backpack\nCarrying Capacity: 50K µSCU\nCore Compatibility: All\n\nThe MacFlex Backpack is a back-mounted hard-shell case that provides extra commodity storage options. Whether bringing extra supplies on a long excursion or filling it with ore after a successful mining run, the MacFlex Backpack will be there to carry the load.'), +(2851,'Rockridge Boots Stonewall','Char_Clothing_Feet','UNDEFINED','494768a3-e905-40c9-a826-7c798155db9a','','','With the Rockridge, Grindstone has created a comfortable boot with a wide laced collar that allows wearers to adjust the fit to their level of comfort while still keeping the elements out.'), +(2852,'Coda \"Ultraviolet\" Pistol','Weapon','Small','0338e1a7-10a6-4397-99a8-d9f214380612','','','Manufacturer: Kastak Arms\nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 6\nRate Of Fire: 180 rpm \nEffective Range: 100 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nOften called the Kastak Arms \"hand cannon,\" the Coda can end an engagement with a single .50 caliber round, although the substantial power can make the Coda\'s recoil hard to handle. Considering its limited magazine size and substantial kick, sustained fire is discouraged in favor of more accurate single shots. The Ultraviolet edition features eye-catching violet and orchid coloring.'), +(2853,'Degnous Root','Cargo','Cargo','4e5abe32-e821-473c-9218-089674efbd8b','','',NULL), +(2854,'Gladius Deck the Hull Livery','Paints','UNDEFINED','9242a0d1-0519-450d-aad2-b6230841ab15','','','Express your holiday spirit with the Deck the Hull livery, which uses the traditional Luminalia colors of green and red to celebrate the popular Banu festival that\'s become beloved by Humans.'), +(2855,'Tempo Jacket Chocolate Mint','Char_Clothing_Torso_1','UNDEFINED','cb1c403e-2718-43ed-af58-b634d0d806c3','','','Carrying Capacity: 1K µSCU\n\nFashionable, fun and flashy, the Tempo is a quilt studded jacket featuring a unique metallic finish to make you stand out from the crowd. 987 balanced this bold design with sections of synthetic leather and complementary colors ringing the waistband and inner collar.'), +(2856,'Carbide Jacket Outback','Char_Clothing_Torso_1','UNDEFINED','c4a34e0d-5716-4341-a6bc-580b9b04375e','','','Carrying Capacity: 1K µSCU\n\nThe rugged, all-weather Carbide jacket from DMC features diamond-quilt detailing, stretch-comfort cuffs, and numerous attachment points for versatile storage options.'), +(2857,'Medical Bed','Usable','UNDEFINED','0c1379cf-6bce-42f9-8ef3-b9045bc12a0d','','',NULL), +(2858,'Dashboard','SeatDashboard','UNDEFINED','ff99d168-9428-4bbe-84ac-4033e6bd46ae','','',NULL), +(2859,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','8981c8aa-3cfc-40e4-9db1-469eb131184b','','','Joker Defcon - Noise Launcher'), +(2860,'\'WHIP\' Cannon','Weapon','Gun','e350773c-9131-4974-b624-e6b9e7c7200d','','','\'WHIP\' Cannon'), +(2861,'RSI_Polaris_Fake_Doors','Misc','UNDEFINED','762fe7f4-3b5d-4ef3-b332-720494521ebf','','',NULL), +(2862,'Aves Legs','Armor','Legs','1d1e2e3c-f7af-44fb-b788-32da136db275','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nHonor and embody the Tevarin aesthetic with the Aves armor. Cutting edge manufacturing techniques were used to place white, red, grey, and black plating perfectly to fit the Human form and evoke the shape language imbued into the Tevarin\'s iconic ships. This medium armor from CC\'s Conversions is both sensational and practical, providing solid protection while keeping you light on your feet. When paired with the Aves helmet, the suit combines for a striking and unforgettable look.'), +(2863,'countertop_display_rotating_12Ports_test','ShopDisplay','UNDEFINED','e1caf230-72da-43c6-a82f-60a98324e422','','',NULL), +(2864,'Internal Tank','FuelTank','Fuel','edbd623a-8190-4483-bc94-98a61d088a47','','',NULL), +(2865,'Door Control','ControlPanel','DoorPart','f67b5707-df1e-45d6-9197-b1ac32d113ea','','',NULL), +(2866,'Koya Pants Dark Teal','Char_Clothing_Legs','UNDEFINED','2ab53264-4365-4285-926a-96b5f8e698d2','','','Carrying Capacity: 1K µSCU\n\nThe Koya are stylish slim cut pants featuring color accents on the pockets and cuffs. Made from a special stain resistant, soft fabric blend, they are paired with a brown belt featuring a gold buckle.'), +(2867,'Gamma Plus (3x Holographic)','WeaponAttachment','IronSight','fd9d06a9-5cf8-4325-9149-538d576e5146','','','Manufacturer: NV-TAC \nType: Projection\nAttachment Point: Optic \nMagnification: 3x\nAim Time: +15%\nSize: 1\n\nNV-TAC\'s Gamma Plus is a 3x magnifier sight that utilizes ReadyBrite projection for quick target acquisition. Its durable design makes it perfect for any tactical situation.'), +(2868,'Classic Dog','Food','Junk','bf832a70-cbed-4be4-a867-af6715bdb57f','','','NDR: 34\nEffects: Dehydrating, Hyper-Metabolic\n\nNothing fancy here, just your classic hot dog in a classic bun. Simple but satisfying.'), +(2869,'Seat','SeatAccess','UNDEFINED','1fe9b12f-9fa1-4382-9743-729eed9ded34','','',NULL), +(2870,'MASTER_screen_16x9_2_0094x0054_a','Display','UNDEFINED','6a1ae763-0bc7-483e-b69b-7a4cc249a6d9','','',NULL), +(2871,'AEGS_Sabre_Firebird_bombay_door_right_inner','Misc','UNDEFINED','5b6e3f1f-eb87-405e-ad02-95ea957ce5be','','',NULL), +(2872,'TrueDef-Pro Legs Aqua/Black','Armor','Legs','16139d5f-fce5-4ed6-90fe-9c813e51e08c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.\"'), +(2873,'Carryable_TBO_FL_32SCU_Commodity_ProcessedGoods_EvidenceBox','Cargo','Cargo','d306c93b-7314-4afd-acf4-8c4dc7e7734a','','',NULL), +(2874,'SECURITY','DoorController','UNDEFINED','d87f99d4-5bcd-4411-92e0-abdf656c87a0','','',NULL), +(2875,'Compboard','Cargo','Cargo','ee30f79e-a0a4-4fd8-93f5-a6c90b9f1560','','',NULL), +(2876,'DRAK_Herald_Thruster_Mav_Fixed_Left','ManneuverThruster','FixedThruster','18d7c845-323c-452f-98be-0dbd2afd1988','','',NULL), +(2877,'ARGO_MPUV_1T_SCItem_SeatAccess','SeatAccess','UNDEFINED','ac368e03-e273-4200-b3ee-504b31fbbf48','','',NULL), +(2878,'Door Control','Door','UNDEFINED','76aac220-9243-4c73-81b3-fb467ccd3fe3','','',NULL), +(2879,'Internal Tank','FuelTank','Fuel','6b8d998c-7089-4353-8875-17290172a751','','',NULL), +(2880,'Frontier 11 Classic Brick','Char_Clothing_Legs','UNDEFINED','bb55b431-8793-44fc-b5df-f424c6a72f6e','','','Carrying Capacity: 2k µSCU\n\nConstructed with large pockets and made from durable synth-cloth, the Frontier 11 Classic pants from DMC are a rugged garment designed to handle whatever life might throw your way.'), +(2881,'M50 Stormbringer Livery','Paints','UNDEFINED','743286c7-ff38-49fc-8791-44b7a3418c65','','','This custom M50 livery was created to celebrate the 2950 IAE on microTech. It blends black, electric blue, and white to give the ship a cool new look.'), +(2882,'Invictus Flight Jacket Steel','Char_Clothing_Torso_1','UNDEFINED','b9b8af89-265a-40a8-94a1-bba1340348cf','','','Carrying Capacity: 2K µSCU\n\nCelebrate Launch Week in iconic style with this commemorative flight jacket featuring a Navy patch on the front and a large Invictus patch on the back. This synthetic leather jacket comes with two front pockets and ribbed waistband and cuffs that guarantee a good fit.'), +(2883,'ADP Legs Dark Green','Armor','Legs','86968efd-3f2f-460e-947f-10f8d5de22ef','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(2884,'Haruspec Goggles','Char_Accessory_Eyes','UNDEFINED','87db75c5-67bc-410a-b7be-96227d36b716','','','Supremely comfortable yet light as a feather, the Haruspec goggles also provide excellent protection against the elements thanks to their sturdy side shields. Stegman\'s fitted the goggles with polycarbonate performance lenses and a special slip-resistant nose pad to ensure they stay in place.'), +(2885,'Horizon Helmet Dark Red','Armor','Helmet','b97cb8af-5c2b-4d88-bdec-02c01457d72b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Horizon helmet is a durable and robust environmental enclosed work helmet. The single sheet laminate dome gives you an extremely wide field of view. A pair of side-mounted LED light modules provide additional illumination to make sure you can see what you\'re doing.'), +(2886,'SCItemDisplayScreen_NewsScreen_Levski','Display','Default','4f918a2f-0d21-485a-8930-748de9b06f49','','',NULL), +(2887,'Door_Default_Keypad_StormBreaker','Door','UNDEFINED','248b6f7f-d03d-4203-842c-b5364f8d400e','','',NULL), +(2888,'StrikeForce II Missile','Missile','Missile','9b2c25cb-fc57-42b5-95cd-1ae89a622bd7','','','Manufacturer: Thermyte Concern\nTracking Signal: Cross Section\nSize: 2\n\nThe StrikeForce is the latest culmination of Thermyte Concern\'s expansion into the missile industry, showcasing notable design and cross-section targeting improvements.'), +(2889,'Perth Pants Maroon','Char_Clothing_Legs','UNDEFINED','81b7daa5-7ce5-401f-aa74-021aef0e31b8','','','Carrying Capacity: 1K µSCU\n\nThese straight-leg pants from City Lights are essential for everyday work and play. Both the front and back pockets feature metallic button accents to provide that perfect amount of flair.\n\nWomen\'s sizes currently out of stock.'), +(2890,'Manned Turret','UtilityTurret','MannedTurret','3287181a-04f0-44c9-8bb0-865ae24e7451','','',NULL), +(2891,'Oracle Helmet Frostline','Armor','Helmet','acb16b1e-6f95-42d3-a05d-4792e501e273','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(2892,'Carrion Legs Stalker','Armor','Legs','99a2951b-6fbd-48d1-be7d-7a1bf79e55eb','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4K µSCU\n\nForged from scavenged metals and ragged clothes, the Carrion armor is a crude concoction of repurposed materials that demonstrates you\'ll do anything it takes to survive. \n\nThe Stalker variant has been tagged with orange paint, and features a long cape and integrated pieces of Vanduul armor plating.'), +(2893,'Door Control','Door','UNDEFINED','9d4ba2ed-8f35-4056-ab39-64d1f8a5d764','','',NULL), +(2894,'Morozov-CH Backpack Aftershock','Armor','Backpack','72284e09-4347-472c-81cd-d95166304b8c','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nComfortably carry vital gear with the Morozov-CH backpack. This softshell bag is made with an advanced duraweave that\'s lightweight yet ready for battlefield action. It also features several easy to access pockets and a plethora of straps to keep supplies secure and tight to your back.'), +(2895,'AAT-34 Turret','Turret','MannedTurret','2bc8c72a-dcc4-4f08-8775-11971058595d','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(2896,'Internal Tank','FuelTank','Fuel','11976bf7-975a-4df6-81e4-13d12edaa72c','','',NULL), +(2897,'Silicon','Cargo','Cargo','a74787c3-3d67-4f4b-b9d6-83293b0aaf8f','','',NULL), +(2898,'ARGO_ATLS_Headlights','Misc','UNDEFINED','de9491ea-a5ef-463c-bf3f-252d74c54da1','','',NULL), +(2899,'Cambio-Lite SRT Canister','WeaponAttachment','Magazine','c1de56e1-e20f-4c8c-bbb8-c0584e38725d','','','Item Type: RMC Canister (Small)\n\nCanister used in conjunction with the Pyro RYT Multi-Tool and Cambio-Lite SRT attachment to store recycle material composite (RMC) reclaimed from scrap. Contents can be sold or used to make repairs.'), +(2900,'PAB-1 Legs Seagreen','Armor','Legs','286d9720-cdf9-48c3-b07b-12317153cf31','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(2901,'Cliffback T-Shirt Yellow','Char_Clothing_Torso_0','UNDEFINED','91288bdc-44ee-4125-8f0b-cc95ed7ffa1e','','','Alejo Brothers\' classic loop tee with a spatter pattern.'), +(2902,'f_human_mannequin_marine_undersuit','ShopDisplay','UNDEFINED','8bfb33fa-0098-492d-97cb-f194f33f121c','','',NULL), +(2903,'LegacyMobiGlas','Display','Personal','f5a0d2f6-74fb-4247-aa3f-1fc61bcc2f49','','',NULL), +(2904,'Personal Storage','Cargo','UNDEFINED','c7d08e83-71f1-4894-9e43-d5fb20efae7b','','',NULL), +(2905,'Amioshi Plague','Cargo','Cargo','bc626b5c-12ba-4d72-8a79-6677abf8f2b1','','',NULL), +(2906,'Scorpius TSB Flight Blade','FlightController','UNDEFINED','761c25cf-fac6-4ad3-aab3-7e000e977040','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your RSI Scorpius with the TSB Flight Blade from Broad & Rabiee. By re-allocating lateral thrust resources, you can expect your ship deliver increased top speeds in the straightaway.'), +(2907,'Door Control','ControlPanel','DoorPart','c383f98b-851b-4c4c-bfb9-728a62252df3','','',NULL), +(2908,'Tigersclaw','FPS_Consumable','Hacking','3b1d33fb-aaca-4056-a28f-74da168e4070','','','A standard tool in many IT and CompSec kits, Blue Triangle\'s Tigersclaw is considered a go-to cryptokey for good reason. With decent speed and reliability, in the hands of a trained operator it can be used to gain admin-level repair privileges to most systems.'), +(2909,'AEGS_Sabre_Thruster_Mav_Joint_02','ManneuverThruster','JointThruster','65881bd8-69c4-4416-a47d-aa180714f0f9','','',NULL), +(2910,'Gadget_Cabinet_kegr_fire_extinguisher_01_NoRN_hightech_med_high','Usable','UNDEFINED','b64d9060-676b-465e-8459-7bc74d63b822','','',NULL), +(2911,'VNCL_Blade_Thruster_Aux_Fixed_02','ManneuverThruster','FixedThruster','0215e147-e5df-4d91-b4bc-575c56c1bea7','','',NULL), +(2912,'Carryable_2H_Vent','Misc','UNDEFINED','0c227456-d41c-458d-b682-301629d84306','','',NULL), +(2913,'Spirit Allegiant Livery','Paints','UNDEFINED','07470862-1827-4fe9-bd9b-6e109b2994b5','','','The Allegiant livery for the Spirit is a crisp white with black and red highlights.'), +(2914,'OreBit Mining Attachment','WeaponAttachment','Utility','da55ce5e-25dd-4160-9f04-fee8796c0b43','','','MUST BUY BASE MULTI-TOOL TO USE: \"Pyro RYT Multi-Tool\"\n\nManufacturer: Greycat Industrial\nItem Type: Multi-Tool Attachment\nClass: Mining\n\nThe OreBit attachment turns Greycat\'s Pyro RYT Multi-Tool into a handheld mining machine. It can scan rocks to find worthwhile deposits and then liberate the lode with its powerful mining laser. Next time you\'re planetside, be sure you bring this attachment or risk leaving easy credits behind.'), +(2915,'Starlancer Bonfire Livery','Paints','UNDEFINED','d1878e46-a35e-4857-8928-10a6743fca5c','','','The Starlancer gets a cool grey top and vivid red bottom with the subtle yet striking Bonfire livery.'), +(2916,'RSI_Polaris_Thruster_Main_Outer','MainThruster','UNDEFINED','dd27bdcf-4044-495b-a247-c6236c8d7ce8','','',NULL), +(2917,'Seat','SeatAccess','UNDEFINED','58f47630-995b-402b-9848-bf601e4fe5dc','','',NULL), +(2918,'Carryable_1H_CY_glass_tumbler_tequila_1_a','Misc','UNDEFINED','bf1fb55a-29c8-47e7-8a17-c8348740fccf','','',NULL), +(2919,'Clipper Regatta Livery','Paints','UNDEFINED','44d3658f-7bb5-4f38-9af3-83404f95285a','','','The dynamic stylings of the Regatta livery features a white base paint with black highlights and stripes plus bold red accents.'), +(2920,'Personal Storage','Cargo','UNDEFINED','3bd0c4d2-7b2c-4cf9-9734-c6cbfd9c819e','','',NULL), +(2921,'Carryable_1H_CY_tool_crowbar_2_a','Misc','UNDEFINED','dcfb85b1-6b1f-4064-b1cb-de696c15e62e','','',NULL), +(2922,'food_ration_pack_g','Misc','UNDEFINED','f17296c3-67ba-4ce7-a62b-da45ca2cc9b6','','',NULL), +(2923,'Seat','SeatAccess','UNDEFINED','6f944179-41c3-4a33-9616-51696d12ee3d','','',NULL), +(2924,'Fortifier Helmet Outcrop','Armor','Helmet','e9777e72-752e-4fdd-90ba-db6b7038cc56','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nProtect your most valuable asset with the Fortifier. Intended for extremely hostile environments, this heavy helmet makes up for its limited visibility with extra plating that protects the neck and back of the head.'), +(2925,'Seat','Usable','UNDEFINED','b7d3386a-9dec-4f22-9806-78033d4e158e','','',NULL), +(2926,'Door','Door','UNDEFINED','6dc24490-8030-479f-88bf-bf8b0a37ac41','','',NULL), +(2927,'Fortune Hightide Livery','Paints','UNDEFINED','51bfc345-7263-4db3-ba20-2e06c59dc7a0','','','Oceanic blues drench the Hightide livery, with strong blacks and greys deepening the Fortune\'s impact further.'), +(2928,'Avenger Nightbreak Livery','Paints','UNDEFINED','9a34e061-eedf-47c3-8157-b5e751d5cef9','','','Discreetly soar through the night sky in the Avenger with the Nightbreak livery, which is primarily black with red highlights.'), +(2929,'VNCL_Glaive_Thruster_side_left','ManneuverThruster','FixedThruster','8cfb26cb-6896-4c26-85c4-bf5ce53db984','','',NULL), +(2930,'Saldynium (Ore)','Cargo','Cargo','ea78ac2d-9bfb-4081-a770-90ac9e2293b5','','','A rare metal that has traditionally been extremely difficult to find in large quantities owing to the particular environmental requirements for its formation. It is sought after for its use in the production of high-powered lasers. It also shows some antimicrobial properties though its scarcity has seen it used less for medical purposes.'), +(2931,'RSI_Aurora_Thruster_Retro','MainThruster','FixedThruster','8d7aacd0-c156-4e2a-91fe-535656926c9f','','',NULL), +(2932,'Luminalia Gift','Misc','Harvestable','d8b59f64-677d-48f6-945b-d770f82f4d8d','','','A small, wrapped package meant to get you in the Luminalia spirit. Banu merchants celebrating the holiday used to hide small gifts aboard their ship to encourage revelers to explore all their wares. As the holiday grew in popularity within the UEE, Human merchants modified this tradition by hiding empty gift-wrapped packages around a space station or landing zone that could be exchanged for credits if returned unopened. The increased foot traffic into their stores spurned holiday sales and became a tradition in its own right. \n\nStow this gift for sentimental value, or sell it at a commodities terminal and spend the credits on a holiday gift for yourself.'), +(2933,'ESPR_Prowler_Thruster_Mav_02_Utility','ManneuverThruster','UNDEFINED','cc04c05a-b970-41ab-943e-86b637f754eb','','',NULL), +(2934,'Zeus Mk II Obsidian Livery','Paints','UNDEFINED','cb3c6f8d-a856-4c65-86c0-7fa9271a5cfa','','','The Obsidian livery uses black, white, and a metallic finish to give the Zeus Mk II a distinctly bold look.'), +(2935,'Weapon_Rack_1_Slot_ARGO_GadgetLarge','Usable','UNDEFINED','57ad2ab0-3116-40ff-84e7-0ec89510f424','','',NULL), +(2936,'Durus Tractor Beam','TractorBeam','UNDEFINED','83b3857b-d7d5-40bd-b79c-058026f29ec6','','','Manufacturer: Argo Astronautics\nItem Type: Tractor Beam\nMax Angle: 60°\nMax Range: 150 m\nFull Strength Distance: 75 m\n\nMade specifically for the ATLS power suit, the Durus tractor beam from Argo Astronautics has been carefully tuned for loading and unloading cargo.'), +(2937,'Mivaldi Pants (Modified)','Char_Clothing_Legs','UNDEFINED','102a8b5c-7b4a-4740-91ad-b1a6dc6c889f','','','Carrying Capacity: 0.5K µSCU\n\nThis version of OpalSky\'s Mivaldi pants has been modified from its original form. Cut to a narrow fit, OpalSky\'s Mivaldi pants feature bold asymmetrical design with smart yet casual dual material styling, making it the perfect addition to any wardrobe.'), +(2938,'TrueDef-Pro Arms Red/Silver','Armor','Arms','ae4acdd4-0224-4f71-8e65-d8bb5e89cbc6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(2939,'Cal-O-Meal \"Vanilla\" Protein Bar','Food','Bar','1270bfd1-f22f-4f48-8a23-e626db5cb668','','','NDR: 20\nEffects: Hypertrophic\n\nCal-O-Meal bars are loaded with high quality protein and packed with a concentrated dose of vitamins, minerals, and rich vanilla flavor, making it a convenient way to maintain nutrition and lean muscle mass on the go.'), +(2940,'ADP Legs Platinum','Armor','Legs','e80ebc00-69b1-4320-b85b-f36dcaf1d860','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(2941,'RSI_Hermes_Thruster_Main_Nacelle','MainThruster','FixedThruster','455024ae-b65b-39ad-c89a-6670fc5d7d8d','','',NULL), +(2942,'Dragonfly Overdrive Livery','Paints','UNDEFINED','405f24dc-0fbd-4b1a-acbe-000f27386ddd','','','Blast past other racers in style on your Dragonfly with the Overdrive livery, which blends red and silver coloring.'), +(2943,'Microid Battle Suit Arms Lowland','Armor','Arms','ea203dc7-9445-4560-95f7-ace39f232e5d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(2944,'Matiese Shoes','Char_Clothing_Feet','UNDEFINED','46e80a29-191c-4e64-8c64-4d45970e12cb','','','Embody timeless elegance with the Matiese shoes from Hawksworth\'s. Made with fine artificial leather, the detailed upper design gives the shoes a clean, sleek profile suited to any occasion.'), +(2945,'DRAK_Vulture_Component_Shield','Player','UNDEFINED','cd373b41-e910-4feb-b15a-68b2abed0399','','',NULL), +(2946,'Prota','Cargo','Cargo','13fef5cb-ee61-4c61-b177-47f15c9c1e4b','','',NULL), +(2947,'GLSN_Shiv_Seat_CoPilot','Seat','UNDEFINED','9700c55d-ffb2-45e3-be5a-0575b40a598c','','',NULL), +(2948,'Missile Rack','MissileLauncher','MissileRack','cd4b5f66-56e1-4878-b0f4-7ae1ca8dc53d','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 1\nMissiles: 1xS1\n\nBehring’s MSD-111 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 1 hardpoint for the reliable and effective launch of one S1 missile.'), +(2949,'Door Control','ControlPanel','DoorPart','a15f0e9f-3311-4886-ad42-d8b248585018','','',NULL), +(2950,'Internal Tank','FuelTank','Fuel','4a9ed578-ef2d-4d58-b3c8-e45259916276','','',NULL), +(2951,'Weapon_Rack_3_Slot_RSI_Aurora_GS','Usable','UNDEFINED','ab996bdd-7c31-4df3-9dc4-21f3d865d0ce','','',NULL), +(2952,'Elevator Control','Door','UNDEFINED','ccb62380-013d-47f0-a4c0-6468da36b8a3','','',NULL), +(2953,'ControlPanel_Screen_LightControl','ControlPanel','DoorPart','72d53db1-f1c0-4515-b675-8eb0e6584777','','',NULL), +(2954,'Bed_DRAK_Cutlass_Black_Lower','Usable','UNDEFINED','51cc5bb9-827d-4b22-bb37-0689108f1287','','',NULL), +(2955,'HydroJet','Cooler','UNDEFINED','866c76c0-8c22-44ad-b1dc-167ee5fbe347','','','Item Type: Cooler\nManufacturer: Juno Starwerk \nSize: 2\nGrade: D\nClass: Industrial\n\nWhen your ship overheats, it makes just about any task not only more difficult, but potentially dangerous for you and your crew. With the entry-level HydroJet from Juno Starwerk installed, you can be confident that your heat levels are being controlled by a cooler designed by one of the most trustworthy names in the industry.'), +(2956,'GAMA_Syulen_DockingTube','DockingCollar','UNDEFINED','96f558a5-a8f5-4e2c-ab05-8cf3d0d537a1','','',NULL), +(2957,'\'WEAK\' Repeater','Weapon','Gun','00ab31a0-7de2-44f7-a567-7ff88fdbad49','','','Manufacturer: Vanduul / Esperia\nItem Type: Laser Repeater\nSize: 1\n\nThis laser repeater is typically found on Vanduul war ships and is commonly known by its UEE Navy designation of \'WEAK\'.'), +(2958,'Piecemeal Armor Arms Olive','Armor','Arms','e2a3988b-ab16-4769-9704-469438f37763','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nThis armor was created using repurposed parts from a Caldera armor set to provide the wearer with an extra layer of protection against aggressors and harsh environments.'), +(2959,'Door Control','ControlPanel','DoorPart','b75961c5-64f7-4aa1-be12-b9d2e53c15a0','','',NULL), +(2960,'Seat','SeatAccess','UNDEFINED','2bfbaec7-7d16-4bf4-8187-45fffc5af3df','','',NULL), +(2961,'CRUS_Starlifter_SCItem_Dashboard_CoPilot','SeatDashboard','UNDEFINED','802f2950-44c2-423f-aca1-79661bf25911','','',NULL), +(2962,'Perth Pants','Char_Clothing_Legs','UNDEFINED','eb34de82-ec46-4d5d-90db-f34318c2e8cd','','','Carrying Capacity: 1K µSCU\n\nThese straight-leg pants from City Lights are essential for everyday work and play. Both the front and back pockets feature metallic button accents to provide that perfect amount of flair.\n\nWomen\'s sizes currently out of stock.'), +(2963,'CRUS_Star_Runner_CargoGrid_Large','CargoGrid','UNDEFINED','54140373-4893-4e2d-a383-2a43e9535efb','','',NULL), +(2964,'Day One Shirt','Char_Clothing_Torso_0','UNDEFINED','e70f1e58-6781-43ea-82af-99bf3e59c0ff','','','This Henley shirt from Stegman\'s is made with AirFlow technology, a stain-resistant, air-cooled fabric that keeps you comfortable and dry.'), +(2965,'TE_weapon_box__ksar_shotgun_energy_01','Misc','UNDEFINED','a13ca94a-ee05-4e48-bb0a-741b7821d311','','',NULL), +(2966,'Testudo Arms Nightveil','Armor','Arms','ffe92800-4681-4d22-ac4d-5a664b16d016','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Testudo armor for Quirinus Tech blends battlefield durability with everyday comfort. It weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort.'), +(2967,'ADP Core Green','Armor','Torso','0d59459b-a1bc-4922-8531-169f271013f5','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(2968,'Seat','SeatAccess','UNDEFINED','21b1b1c8-51c7-4be7-885b-f300ec53f56b','','',NULL), +(2969,'Arcus Gloves Gray','Char_Clothing_Hands','UNDEFINED','3b134baa-1125-4695-a590-4d74651646d7','','','Temp. Rating: -35 / 25 °C\n\nThe Arcus gloves are thin enough to wear on everyday excursions, yet capable of keeping your hands warm in frigid conditions. Textured touch fingertips even allow you to easily access your mobi and other touch screens without removing your gloves.'), +(2970,'SCItemDisplayScreen_ScreenSize_BedBunks','Display','Default','092824c5-a60c-45fd-b789-69db363cd6a6','','',NULL), +(2971,'INTK_ANVL_Pisces','FuelIntake','Fuel','9b6c1de9-5168-4236-b6f4-bec6fe47b1ce','','',NULL), +(2972,'Lightstrike IV Cannon','Weapon','Gun','060aac99-514a-4689-b6f9-4a1461723427','','','Manufacturer: Esperia\nItem Type: Laser Cannon \nSize: 4\n\nThe Lightstrike IV takes the attack to distant targets by delivering focused, high damage blasts that will make any aggressor think twice before coming too close. Capable of providing powerful overwatch options during troop deployments or engaging targets in outer space, it\'s easy to see why the Lightstrike IV was feared by UPE forces during the First Tevarin War.'), +(2973,'Door Control','Door','UNDEFINED','3e16a1fd-ed27-46ab-a96a-f5b1193c7f86','','',NULL), +(2974,'Weapon_Rack_6_Slot_Animated','Usable','UNDEFINED','2e9edfd4-8052-4c25-a437-2bb21f652bcf','','',NULL), +(2975,'DockingTube_Fuel_Ports_AEGS_Eclipse','DockingCollar','UNDEFINED','4106a5f7-e930-4e84-aa37-a286148222b3','','',NULL), +(2976,'Starfarer Storm Surge Livery','Paints','UNDEFINED','34441b1a-33dc-4e66-9fbc-551e58265bd1','','','Customize your Starfarer with this fragmented blue livery.'), +(2977,'SCItemDisplayScreen_VC_3DRender','Display','Default','5288da0e-8408-4da9-abf4-048ce8ff735f','','',NULL), +(2978,'Argus Helmet Gold/Grey/Black','Armor','Helmet','319b0548-e9a5-44f5-b912-9029f39bd12e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s Argus helmet utilizes advanced multi-layered composite construction to provide incredible protection from weapon fire as well as environmental hazards. The tinted visor offers a wide field-of-view to improve situational awareness and unrestricted movement.'), +(2979,'DockingTube_Fuel_Ports_XIAN_Scout','DockingCollar','UNDEFINED','7002acb1-1303-4a7b-92b9-b542ffb479f2','','',NULL), +(2980,'Door Control','Door','UNDEFINED','a9140cda-2dd0-416d-b164-b636aa8207fb','','',NULL), +(2981,'ORIG_600i_Seat_Bridge_Left','Seat','UNDEFINED','3e3c227c-e7b4-45b0-b457-9091106c399d','','',NULL), +(2982,'MISC_Prospector_Thruster_Mav_Fixed_04','ManneuverThruster','FixedThruster','8f63aa04-c870-4825-9099-1cf081771290','','',NULL), +(2983,'Lynx Legs Firebrick','Armor','Legs','9fe4afb0-284a-48b4-bd9a-5fdc873d86a2','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(2984,'RSI_Com_Brig_3StateTray','Misc','UNDEFINED','a6f1bb5d-a8b0-4dd3-8bf9-0d2e8a62a5a2','','',NULL), +(2985,'Door','Door','UNDEFINED','1a22468e-b9ac-41fc-8870-c946364a9cba','','',NULL), +(2986,'Viper III-G Missile','Missile','GroundVehicleMissile','69c9701d-53e2-4377-ac94-f65edfe4c63f','','','Manufacturer: Nova Pyrotechnica \nTracking Signal: Infrared \nSize: 3 \n\nNova has worked hard to insure that their infrared tracking Viper strike missile lives up to its name by delivering agile and lethal attacks against hostile targets. Note: This missile may only be launched by ground vehicles.'), +(2987,'Compboard','Cargo','Cargo','419b8e17-56f4-4e15-94da-0450da1b0f14','','',NULL), +(2988,'DRAK_Corsair_CargoGrid_Main','CargoGrid','UNDEFINED','bdd81e5c-c374-453c-82f2-deba02629862','','',NULL), +(2989,'Remote Turret','Turret','GunTurret','39d8368b-380c-4be6-8a5c-cf83a3c8cf4a','','','Remote Turret'), +(2990,'ANVL_Asgard_CargoGrid','CargoGrid','UNDEFINED','d052ebfc-552f-453a-9870-303d801c3b00','','',NULL), +(2991,'Controller_Fuel','FuelController','UNDEFINED','9925488b-127a-4fc3-b7bb-9e4f5a46bbbd','','',NULL), +(2992,'Paladin Carmine Livery','Paints','UNDEFINED','6c507205-7599-4e75-add1-3b51b8b993dd','','','Equip the Carmine livery with its bold red highlights atop a grey base paint to make the Paladin easier to spot amidst the fog the war.'), +(2993,'BEHR_LaserCannon_Barrel_S8','WeaponAttachment','Barrel','2b551675-e44e-487b-9c0a-73e7f45dac04','','',NULL), +(2994,'Seat','SeatAccess','UNDEFINED','b8be4134-cbca-4d45-a3ea-d70808702ddd','','',NULL), +(2995,'AEGS_Sabre_Thruster_Mav_Left','ManneuverThruster','JointThruster','319b0822-8983-4e89-bac9-4f0e37f6ecbb','','',NULL), +(2996,'Lynx Legs Red','Armor','Legs','60d89692-e306-46fb-8259-7bcca61f7deb','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(2997,'Overlord Core Predator','Armor','Torso','2222b2d3-34dc-4797-878c-9b3b5a38f61b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12.0 µSCU\nBackpacks: All\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.'), +(2998,'Door','Door','UNDEFINED','678e6fd4-9fd4-42eb-a09b-237376947fcc','','',NULL), +(2999,'Access','SeatAccess','UNDEFINED','a15eea20-170e-4793-aa93-b96391fedaf2','','',NULL), +(3000,'facial_hair_023','Char_Head_Beard','UNDEFINED','8ce83349-a151-4d98-ab07-d710bb8bc5fc','','',NULL), +(3001,'INTK_MISC_Freelancer','FuelIntake','Fuel','6d69820b-762b-4d48-a125-3acdbdea4b23','','',NULL), +(3002,'Francis the Stormwal Large Plushie','Misc','Personal','d39fbbd5-1f33-4047-a75b-161889229bd2','','','Francis the Stormwal loves sailing through the clouds in Crusader\'s atmosphere. Much like Crusader\'s ships, Francis is big, graceful, and quite the sight to behold. Now this majestic purple stormwal can accompany you on a journey through the stars with this large, soft, and squeezable plushie.'), +(3003,'Flight Blade','FlightController','UNDEFINED','51cd5acd-d235-4b1e-8e78-f47bf6641c32','','',NULL), +(3004,'Venture Legs Pathfinder','Armor','Legs','708be659-3f3d-4742-8ea4-fb69a1aa743b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRobert Space Industries combines elegance and effectiveness with the Venture Explorer Suit. The exclusive Pathfinder edition features all the safety features necessary for the vacuum of space plus a striking purple design with tasteful gold highlights. After wearing a suit that looks and perform this well, you may never want to take it off.'), +(3005,'Door','Door','UNDEFINED','9a0e4839-906e-4091-b2a9-c1cbd47e07d0','','',NULL), +(3006,'Door Control','Door','UNDEFINED','89a0da73-cc36-4bd6-b619-f519fbfff9bd','','',NULL), +(3007,'ARGO_MPUV_Thruster_Main_Fixed','MainThruster','FixedThruster','c254b8d9-e8c3-4f86-a881-12c5971fead9','','',NULL), +(3008,'screen_4x3_cz_datapad','Display','UNDEFINED','471e1036-a88d-4f2c-8d14-5a4c1332d045','','',NULL), +(3009,'Tuvic Outerwear Jacket Arctic','Char_Clothing_Torso_1','UNDEFINED','c30ab793-03d7-4322-a894-429182c28b69','','','Carrying Capacity: 2K µSCU\n\nAlejo Brothers have seamlessly blended functionality and style with the Tuvic line of outerwear. These rugged jackets feature reinforced leather padding to offer additional protection and support while still maintaining a modern aesthetic.\n\nWomen\'s sizes currently out of stock.'), +(3010,'weapon_underbarrel_light_narrow_red_01','WeaponAttachment','Light','187726a9-3eb5-48f7-96b5-b7419b1c0a49','','',NULL), +(3011,'Carnita-ritas Burrito','Food','Junk','82706d17-3eba-4d0a-b1ab-e679c858c8cf','','','NDR: 38\nEffects: Dehydrating\n\nTorpedo Burrito crams a full payload of flavor into their devastatingly delicious Carnita-rita burrito, featuring sweet and tangy pulled pork wrapped in their signature size-4 multi-grain tortilla.'), +(3012,'universal_necksock_01','Char_Flair','UNDEFINED','77d6e8ea-e07c-4f53-9c59-6217d7451f11','','',NULL), +(3013,'Railing_Straight_3m_LT_Delta_a','Usable','UNDEFINED','c8047d55-97df-4138-ae57-fbf80b78955f','','',NULL), +(3014,'m_human_mannequin_odyssey_suit_13','ShopDisplay','UNDEFINED','fed31cd8-a8f4-4097-980b-66253240bcfa','','',NULL), +(3015,'Datapad','Misc','UNDEFINED','9f9ac9e7-842a-4270-9246-fd11e373aa2c','','','A portable tablet computing device featuring a touchscreen display.'), +(3016,'AEGS_Sabre_Thruster_Mav_BottomRR','ManneuverThruster','JointThruster','6ad093fc-0448-426e-ac1e-6d1a296f720c','','',NULL), +(3017,'CRUS_Star_Runner_CargoGrid_Small','CargoGrid','UNDEFINED','128185a7-cab1-48a4-9af5-656e4f3e8809','','',NULL), +(3018,'Door Control','Door','UNDEFINED','bbbc5f3a-be49-48fe-967e-ea17b199e4dd','','',NULL), +(3019,'Ready-Up Helmet Green','Char_Clothing_Hat','UNDEFINED','81b14905-be2c-4bde-89c2-db64f3e56a70','','','The Ready-Up is a dependable, affordable softshell helmet alternative. Built from space-age plastic, the Ready-Up provides a vacuum-ready seal to keep you breathing for longer.'), +(3020,'Flair_Hologram_Wikelo_1_a','Usable','UNDEFINED','914f91b4-3177-4a9b-91f5-8a166c1ceae9','','',NULL), +(3021,'AEGS_Retaliator_SCItem_Dashboard_Esc_Pod','SeatDashboard','UNDEFINED','d0cd559d-a5cd-48d3-a210-273972afcda1','','',NULL), +(3022,'MISC_Starlancer_Thruster_Mav_Bottom','ManneuverThruster','FixedThruster','4294bbc7-1e48-4540-813b-21fbfb95d447','','',NULL), +(3023,'Seat','Usable','UNDEFINED','1b0666a8-a3fa-4aca-9221-82f1551bef0b','','',NULL), +(3024,'Chamar Pants','Char_Clothing_Legs','UNDEFINED','06bcc9c3-1137-4f72-aabd-efa5aa3ea5f0','','','Carrying Capacity: 1K µSCU\n\nDecades of design experience helped DMC make the Chamar pants ready for any adventure. The pants utilize a unique seam design to deliver durability while maintaining flexibility. A built-in belt ensures an ideal fit, while leather front pockets and a padded back-panel provide rugged reinforcement where needed most.'), +(3025,'Gladius IceBreak Livery','Paints','UNDEFINED','11a6e31d-02df-403d-8d92-49d24c71d79f','','','Equip your Gladius with a paint scheme cooler than a snow storm. The IceBreak livery mixes crisp, cool white with a frostbitten blue for an exciting look suitable for any season.'), +(3026,'Personal Storage','Cargo','UNDEFINED','301a568b-60ab-4d44-80bd-b92192ef684d','','',NULL), +(3027,'Carryable_1H_CY_garnish_mint_1_a','Misc','UNDEFINED','d0eb3f9e-0048-4aee-8d83-6ea65f2e3cf3','','',NULL), +(3028,'Internal Tank','FuelTank','Fuel','42a51157-e518-4ce4-b3a1-1ddb5757823b','','',NULL), +(3029,'Lynx Arms','Armor','Arms','48609392-c78c-4909-8714-387900059785','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(3030,'INTK_ANVL_Hornet_F7CM','FuelIntake','Fuel','7532d2a8-791d-418b-b805-0d817e58aae6','','',NULL), +(3031,'Gamma (1x Holographic)','WeaponAttachment','IronSight','e812e76a-4068-4e91-8511-45a26039aa12','','','Manufacturer: NV-TAC\nType: Projection \nAttachment Point: Optic\nMagnification: 1x\nAim Time: +15%\nSize: 1\n\nWhether under the blazing sun or on the dark side of a moon, the NV-TAC Gamma projects an easy to see reticle to help ensure your shot finds its mark.'), +(3032,'Carryable_1H_SQ_MissionItem_Delivery_SmallBox_01','Misc','Utility','f11c1618-3b8c-4f73-8fd7-9848fa2720e8','','',NULL), +(3033,'Tritium','Cargo','Cargo','4b84cde6-cb5d-4891-979f-b78263aa94d0','','',NULL), +(3034,'Maintenance_Workzone_Damaged','Usable','UNDEFINED','e337da30-5b4c-4f5a-a96a-0505784ef0e1','','',NULL), +(3035,'box_mining_1_005x005x005_a','Cargo','UNDEFINED','8c0638e5-641e-41ea-b886-5f00a418a73f','','',NULL), +(3036,'Day One Shirt Yellow','Char_Clothing_Torso_0','UNDEFINED','381bceca-7d0c-42a4-996f-e289d2963ae1','','','This Henley shirt from Stegman\'s is made with AirFlow technology, a stain-resistant, air-cooled fabric that keeps you comfortable and dry.'), +(3037,'Food_box_noodle_02_open_b','Food','Box','af55c448-edf3-4557-a486-cc3fdf0c29e8','','',NULL), +(3038,'Chiron Legs AA Support','Armor','Legs','705c47ec-7b0f-41c0-b7c6-6d316f3ea714','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.5 µSCU\n\nBe the first on the scene with the Chiron armor. Designed to provide the essential protection that combat medics need, the armor features ultra-lightweight panelling to keep the wearer quick on their feet without compromising on safety. Crucial, high-impact sections have been reinforced with raised carbon plating on top of a highly durable polyfiber for maximum flexibility.\n\nThe AA Support edition uses sharp red coloring and bright yellow detailing, ensuring that Alliance Aid Support Units remain visible while assisting the people of Levski through their crisis.'), +(3039,'Aril Helmet Red Alert','Armor','Helmet','c486f51f-7557-457b-9314-9286f0771aed','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(3040,'Origin Jumpworks Noise Launcher','WeaponDefensive','CountermeasureLauncher','d6e0229a-f18e-4dc6-a590-942089da7a2d','','','Origin Jumpworks Noise Launcher'), +(3041,'orig_bedding_duvet_4_c','Seat','UNDEFINED','921d5f3b-b555-48a8-adcf-ab450ed1ce4d','','',NULL), +(3042,'Bed_RSI_Phoenix_Right','Usable','UNDEFINED','58858d35-99b3-465a-9735-734a6a53ac60','','',NULL), +(3043,'CRUS_Starlifter_Thruster_VTOL_Side_Left','MainThruster','FixedThruster','32a793b5-f0de-4cc8-90c1-72fd92962172','','',NULL), +(3044,'Zeus Exploration Suit Backpack Solar','Armor','Backpack','70188e91-7947-4e1a-897e-ae743362603c','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K SP\nCore Compatibility: Heavy\n\nThe Zeus Exploration Suit has been designed to honor some of the earliest space pioneers, the RSI crews who developed and tested the Zeus, the first commercial spacecraft. While the suit is styled to match those used centuries ago with attachments for a helmet and backpack, it contains all of the modern technology and conveniences expected by present-day explorers. The Zeus offers good resistance to harsh environments and excellent storage space for sample-collecting during EVAs. The Solar variant honors the orange color scheme worn by RSI test pilots.'), +(3045,'Ridgely Jacket Mafic','Char_Clothing_Torso_1','UNDEFINED','06f1e34a-fead-41f7-a4dd-24b5a8bcfb89','','','Carrying Capacity: 1K µSCU\n\nThe extra-thick high collar of DMC’s Ridgely is part of a removable hood that makes the jacket surprisingly versatile and is a major reason why the Ridgely jacket is a perennial favorite amongst customers that live in, or venture through, cold environments.'), +(3046,'Helium','Cargo','Cargo','5ed5e4f3-9edc-4d60-922e-005ff8bbaf9b','','',NULL), +(3047,'DRAK_Cutlass_Steel_Thruster_Maneuver_Right','ManneuverThruster','JointThruster','1faea90a-34c5-4053-8684-a191ca9d200b','','',NULL), +(3048,'Aves Core','Armor','Torso','d3c22aee-6473-466a-975c-ecde2eaba580','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nHonor and embody the Tevarin aesthetic with the Aves armor. Cutting edge manufacturing techniques were used to place white, red, grey, and black plating perfectly to fit the Human form and evoke the shape language imbued into the Tevarin\'s iconic ships. This medium armor from CC\'s Conversions is both sensational and practical, providing solid protection while keeping you light on your feet. When paired with the Aves helmet, the suit combines for a striking and unforgettable look.'), +(3049,'Crusader Black King','Misc','UNDEFINED','a53de68b-2840-4866-b772-f1fc8d24618b','','','Included with the Mercury Star Runner from Crusader Industries, this minimalist black chess piece has a marble base.'), +(3050,'Seat','SeatAccess','UNDEFINED','82dc9e5e-57ec-40f1-b14c-6597e26b3167','','',NULL), +(3051,'Aranda Shirt Crusader Edition','Char_Clothing_Torso_0','UNDEFINED','cbb13aa7-acea-4e50-8526-372fcbcf6bac','','','Fiore makes it easy to be fashionable with the Aranda. This unique top combines a dress shirt and waistcoat styled in complementary colors. The shirt comes with short sleeves cuffed at the elbows while the waistcoat features a small geometric flourish on the front pockets that\'s mirrored across the back. \n\nThe Crusader Edition was made specifically for employees of Crusader Industries.'), +(3052,'Carryable_1H_CY_tool_manual_screwdriver_1_a','Misc','UNDEFINED','0383493a-8f60-412a-9dd5-fa7186aa01c1','','',NULL), +(3053,'Aranda Shirt Crusader Edition Blue/Beige','Char_Clothing_Torso_0','UNDEFINED','a79a4fc8-acb2-458e-bc58-4ed9c9807b55','','','Fiore makes it easy to be fashionable with the Aranda. This unique top combines a dress shirt and waistcoat styled in complementary colors. The shirt comes with short sleeves cuffed at the elbows while the waistcoat features a small geometric flourish on the front pockets that\'s mirrored across the back. \n\nThe Crusader Edition was made specifically for employees of Crusader Industries.'), +(3054,'Aranda Shirt Crusader Edition Purple Plaid/Blue Pinstripe','Char_Clothing_Torso_0','UNDEFINED','f80504b7-5a13-4529-b7a4-dfdb1193ece3','','','Fiore makes it easy to be fashionable with the Aranda. This unique top combines a dress shirt and waistcoat styled in complementary colors. The shirt comes with short sleeves cuffed at the elbows while the waistcoat features a small geometric flourish on the front pockets that\'s mirrored across the back. \n\nThe Crusader Edition was made specifically for employees of Crusader Industries.'), +(3055,'M3A Cannon','Weapon','Gun','42e2ddb1-7397-4299-88ee-2ddfaa0efc67','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 1\n\nThe M3A is Behring\'s entry level laser autocannon. The autocannon configuration offers modest damage per projectile and a fairly low rate of fire. As the most basic offering in Behring\'s weapons lineup, it features low power consumption, but poor power efficiency. It makes up ground for its shortcomings by being cheap, a feature many pilots are looking for when outfitting their ships on a budget.'), +(3056,'ARGO_MPUV_1T_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','48019d2f-2dda-46c4-8086-e2fe18197e7d','','',NULL), +(3057,'AEGS_Door_Decal_Hangar_02','Decal','DoorPart','a2f3dcef-af4a-468f-bc67-1f1fe74d835a','','',NULL), +(3058,'TRGT. STATUS','Seat','UNDEFINED','01f2c81a-4a78-46e1-951a-ff4a060b40c0','','',NULL), +(3059,'XNAA_SanTokYai_SeatAccess_Nacelle_Right','SeatAccess','UNDEFINED','cfdb0f91-23cd-4e0b-96da-ca34c859add6','','',NULL), +(3060,'AEGS_Reclaimer_SCItem_Engineer_Console','Seat','UNDEFINED','5b8b28e3-acbd-4b1d-9e72-7dece71b05ed','','',NULL), +(3061,'Door Control','ControlPanel','DoorPart','ea6b3292-85e7-456d-8e92-bd4a2acdf447','','',NULL), +(3062,'Paint_Idris_Pirate','Paints','UNDEFINED','a188beb6-c67c-4995-a204-64699b3fdf84','','',NULL), +(3063,'AEGS_Javelin_Thruster_Main_02','MainThruster','FixedThruster','10822059-b181-49a9-b552-82ed316b6d9b','','',NULL), +(3064,'un_box_plastic_2_berries_b','Misc','UNDEFINED','e44675c0-2e8d-4bfd-9a0e-805fab1ffc4c','','',NULL), +(3065,'Door_Ship_Sensor_Proximity_0_5x1_5x1','Sensor','DoorPart','ed5eb4c8-7a05-4de9-99dc-411c91c6e1e2','','',NULL), +(3066,'Door Control','DockingAnimator','UNDEFINED','86f97031-73fa-46bf-b077-ab28c065e9b5','','',NULL), +(3067,'Fortune Outcast Livery (Modified)','Paints','UNDEFINED','82f2f53e-763c-4733-be8d-db1e73334696','','','This version of the livery has been modified from its original form with the addition of graffiti. Embrace chaos with the Outcast livery. It features rough splashes of neon green against black to give the Fortune an aggressively chaotic appearance.'), +(3068,'Wolf Rosso Livery','Paints','UNDEFINED','485001d5-fbba-4135-8f52-2ed401a673ea','','','Live bright and bold with the stark red of the Rosso livery and ensure that everyone will see the unique beauty of the Kruger Wolf.'), +(3069,'Demeco LMG Battery (100 cap)','WeaponAttachment','Magazine','b62224ba-5c56-4306-857a-70de7d570767','','','Item Type: Battery\nCapacity: 100\n\nThis is a replacement battery for Klaus & Werner\'s iconic light machine gun, the Demeco.'), +(3070,'Carnifex Armor Core','Armor','Torso','a27c00b7-9eea-4025-bec7-395e3edf3ee9','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -5 / 38 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpack Compatibility: Light\n\nThis homemade armor provides a marginal amount of protection but maximum attitude. It\'s aggressively styled with skulls and other intimidating accessories associated with those living on the edge. Wearing such a distinct look may either keep people away... or draw them to you.'), +(3071,'Seat','Usable','UNDEFINED','0af71b4d-7f22-4e68-b1b3-5b637ac35ad7','','',NULL), +(3072,'Heart of the Woods','Cargo','Cargo','0f4fa69b-fcb1-450c-a3a9-eda04374ac5d','','',NULL), +(3073,'ARMR_CRUS_Starfighter_Ion','Armor','Medium','970d0305-849d-4fa9-a23e-46e8c14184b7','','',NULL), +(3074,'CRUS_Starlifter_chin_turret_cap','Misc','UNDEFINED','1890da19-dbe3-44ae-80f1-46cb1e407a1f','','',NULL), +(3075,'Beacon Undersuit Green/White','Armor','Undersuit','8b140ff6-0a64-42d8-a821-9e09e3599e5d','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRSI\'s Beacon undersuit is a general use utility designed to provide total protection against environments and vacuum. Built out of a durable but flexible polymers, the Beacon provides a wide freedom of motion for a variety of body types.'), +(3076,'Manned Turret','TurretBase','MannedTurret','171c3bcf-ec19-4a36-b60a-701dbfebc17b','','',NULL), +(3077,'Chiron Legs','Armor','Legs','669b94eb-4d05-4e81-9eee-009bbd17dea8','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.5 µSCU\n\nBe the first on the scene with the Chiron armor. Designed to provide the essential protection that combat medics need, the armor features ultra-lightweight panelling to keep the wearer quick on their feet without compromising on safety. Crucial, high-impact sections have been reinforced with raised carbon plating on top of a highly durable polyfiber for maximum flexibility.'), +(3078,'Enkel Shirt Saddle','Char_Clothing_Torso_0','UNDEFINED','dd8d8a58-385d-4db2-a8ab-edb71af814e3','','','Habidash\'s Enkel is a simple, no-frills shirt designed to be comfortable, first and foremost.'), +(3079,'Molina Mold Samples','Cargo','Cargo','b0fe2485-f189-482a-88a0-9bc66dce3f1f','','','Samples of the deadly Molina Mold securely sealed in biohazard containers to ensure its toxic fungal spores can\'t get airborne.'), +(3080,'Venture Core Dark Red','Armor','Torso','26a2947e-3b31-40ad-ac41-da6807ea0a98','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(3081,'Hornet Mk II Silva Livery','Paints','UNDEFINED','1dd696f0-676c-4ff5-8e47-daac833e0255','','','Featuring various shades of green, the Silva livery brings a bold and distinct look to the Hornet Mk II.'), +(3082,'RSI_Perseus_Thruster_Main','MainThruster','UNDEFINED','70c5c168-7d8b-4522-8123-56c688e4bb3d','','',NULL), +(3083,'Davin Work Gloves Black','Char_Clothing_Hands','UNDEFINED','6e1ba640-6953-4609-b2bc-2e8002c64fcc','','','Field-tested for over fifty years, you can find Davin work gloves at numerous sites and ships around the Empire. Stegman\'s rugged construction and comfort lining have made them a customer favorite.'), +(3084,'Warden Backpack Epoque','Armor','Backpack','568c481b-bb7c-4e36-be46-787eceedfa7a','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nThis hard backpack from Virgil, Ltd. makes travel easy. Whether you need a place to carry your weapons or you\'ve decided to bring some extra rations along for a long journey, this backpack was designed to handle any occasion. The interior features a generous, closeable pocket to keep your small items from falling out of place.\n\nThe Epoque edition features a navy and black coloring, finished with baroque gold detailing.'), +(3085,'ANVL_Hornet_F7CR_Mk2_Thruster_Mav_1','ManneuverThruster','JointThruster','7faea001-fd31-4348-9ff4-3318fe03bec6','','',NULL), +(3086,'Odyssey II Helmet Alpha','Armor','Helmet','3a0319f9-ebf0-477b-87c4-9d14552a0b2e','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(3087,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','aa7fb24f-5173-4b41-a5a4-139a24eb4e86','','','Aegis Gladius - Decoy Launcher'), +(3088,'Ice-Flush','Cooler','UNDEFINED','41ac4e69-f4f8-4efe-b499-0257bdf1aba3','','','Item Type: Cooler\nManufacturer: Juno Starwerk\nSize: 3\nGrade: B\nClass: Industrial\n\nThe Juno Starwerk Ice-Flush cooler is built to withstand the heat demands and thermal strains that many industrial ships deal with as part of their average workday.'), +(3089,'Edgewear Pants','Char_Clothing_Legs','UNDEFINED','88ba53e2-b7f6-4866-9671-e6df9e6db7e1','','',NULL), +(3090,'Helium','Cargo','Cargo','ec37d0df-2368-4430-9439-ebf4f52b7977','','',NULL), +(3091,'Seat','SeatAccess','UNDEFINED','ea2e7f56-feed-4b30-8d4a-894a7eef6fa3','','',NULL), +(3092,'Ginzel','PowerPlant','Power','96244ab6-8819-47c3-87af-78124661c725','','','Item Type: Power Plant\nManufacturer: Juno Starwerk\nSize: 3\nGrade: C\nClass: Industrial\n\nThe unique name for this stalwart industrial power plant was inspired by the nickname of a Juno Starwerk junior engineer who helped design it.'), +(3093,'Seat','SeatAccess','UNDEFINED','cd7bbb85-684e-47bd-971c-78f7cd329379','','',NULL), +(3094,'Stratus Pants Brown','Char_Clothing_Legs','UNDEFINED','cc3ce841-eb78-476c-bcee-1b000fe464b6','','','Carrying Capacity: 0.5K µSCU\n\nCasual comfort that you can wear anywhere. The Stratus pants feature a soft comfort waistband that perfectly embraces your hips, and distinct reinforced paneling to ensure long wear and supreme style.'), +(3095,'HRST_LaserRepeater_Ventilation_S6','WeaponAttachment','Ventilation','a961e622-2317-4efa-98b3-fa94a1ffad74','','',NULL), +(3096,'Door Control','Door','UNDEFINED','2ade9278-25be-4839-9353-cafed7c2982c','','',NULL), +(3097,'Weapon Rack','Usable','UNDEFINED','ec614728-4b4e-49dc-81ae-0fb865ff0a0f','','',NULL), +(3098,'Strode Pants Molten','Char_Clothing_Legs','UNDEFINED','af49445f-eb7f-438b-8200-3a8f968b6525','','','Carrying Capacity: 3K µSCU \n\nWhen you need to move like your life depends on it. Made from loose-fit tear-resistant polyweave with rigid greaves, these pants won\'t tie you up when things get tight. The Molten version is dyed a deep red to keep you subtle, but not unsightly.'), +(3099,'Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','4fa93d65-ea5f-40d6-9d60-55e2eb5bfab0','','','Live in comfort with MuyMuy\'s Davlos line of cotton-synthetic shirts. The durable, yet soft, fabric contains a patented SweatGuard technology that not only whisks away perspiration but helps prevent stains.'), +(3100,'Toughlife Boots Purple','Char_Clothing_Feet','UNDEFINED','8cc29b89-44d7-4b31-8229-4c10173b78cb','','','Grindstone\'s done it again. The Toughlife is an all-purpose workboot designed to provide comfort, durability and quality. Featuring a reinforced composite toe and lasercut sole to maximize traction on all surfaces, Toughlife is sure to be your dependable boot, day in and day out.'), +(3101,'Ixonia Helmet Verdant Steel','Armor','Helmet','d9e65aa3-d49e-400b-b94e-428499603ecc','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nMade to withstand the heaviest hits, the Ixonia helmet was crafted with the needs of on-the-ground combat in mind. It features a hybrid composite shell and foam inner core that work in tandem to ensure stability and high impact-reisistance. An optional hood and camo cape provide protection from the wind when worn with the matching jacket. Please note that this mask is not space-rated and should only be worn in naturally breathable environs.'), +(3102,'Medical Supplies','Cargo','Cargo','dddd1d03-5e95-41da-9009-d5a52b43fb3b','','',NULL), +(3103,'Skellig Pants Dark','Char_Clothing_Legs','UNDEFINED','c34bc189-440b-4abe-b257-2663f09ec833','','','Carrying Capacity: 2K µSCU\n\nGet down and dirty with CBD\'s Skellig-wear. These utility pants feature durable vinyl-composite material with reinforced ridged kneepads.'), +(3104,'Hammerhead Ship Armor','Armor','Medium','bf515942-b108-42af-8003-da3134d082c0','','','Hammerhead Ship Armor'), +(3105,'PLACEHOLDER','Char_Clothing_Hands','UNDEFINED','964b3a81-4724-451f-ab9d-56da37ad03da','','','PLACEHOLDER'), +(3106,'Stoneskin Helmet Desert','Armor','Helmet','d3889502-12dd-47a9-b4f4-72e9543e79b7','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nKastak Arms\' Stoneskin series of combat undersuits are built upon CDS\' famous TCS-4 system based on extensive feedback from the operators who rely on this technology in the field. Offering a myriad of options for armor and EVA capabilities, the Stoneskin is set to rival CDS as a rugged and reliable undersuit.'), +(3107,'A2 Hercules Starlifter Plushie','Misc','Personal','399b5aa4-90ab-4c3c-9232-be6f6b2fa702','','','Get your hands on Crusader\'s devastating gunship and bomb delivery platform with this plushie version of the A2 Hercules Starlifter.'), +(3108,'ORC-mkV Core Cry-Astro Edition','Armor','Torso','47bbf85b-5063-4238-871e-6c757b2e4a65','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement. The Cry-Astro Edition was made specifically for the company.'), +(3109,'RSI_Bengal_Aux_Hangar_Door','Misc','UNDEFINED','89330287-9510-413b-8cd3-a3b1d2be0b44','','',NULL), +(3110,'Seat','Usable','UNDEFINED','2a49f520-0c2c-4339-9721-3d08f01bbdc9','','',NULL), +(3111,'Seat','Usable','UNDEFINED','1c634dc5-36be-4f23-b3cb-4d3fa7a3d86f','','',NULL), +(3112,'Venture Undersuit Envy','Armor','Undersuit','613dc9ec-858f-46ec-98c4-424376a97a80','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement. This special Envy edition inspired by the Coramor festival features a vibrant pink and purple color scheme for the most enthusiastic of lovers.'), +(3113,'P4-AR \"Fortuna\" Rifle','Weapon','Medium','d1ee5dad-55aa-4442-8527-99abd7a73ef6','','','Manufacturer: Behring\nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 40\nRate Of Fire: 550 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nBehring\'s classic P4-AR rifle features a collapsible stock and shortened barrel, making it an ideal choice for close-quarter firefights. Its accuracy and general ease of use make it universally valued among security, military and civilian users. \n\nThe \"Fortuna\" edition is green with a four-leaf clover embossed on the side.'), +(3114,'un_can_drink_2_b','Misc','UNDEFINED','cec65525-6d77-4a0f-9618-9a4cb68a0a82','','',NULL), +(3115,'ORIG_890_Jump_Thruster_Retro','ManneuverThruster','FixedThruster','b258989b-3481-4490-8255-9c4d249237f4','','',NULL), +(3116,'AEGS_Idris_SCItem_Seat_Security','Seat','UNDEFINED','4bb23c22-43f3-45f6-aedf-d5666a600668','','',NULL), +(3117,'Feynmaline','Cargo','Cargo','71e93d63-49a2-47fd-aa44-08b0f69ef9c5','','','The paramorphic crystalline structure of this mineral is extremely volatile. When extra energy is introduced, as is typical with modern mining, the ore will often explosively degrade into the more stably structured Janalite. This instability makes Feynamline very dangerous to acquire but also extremely valuable as an industrial anti-matter precursor if it can be properly harvested.'), +(3118,'Chiron Legs Heartthrob','Armor','Legs','e1e24075-a34c-4905-a4f6-99ae97e9dd4d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.5 µSCU\n\nBe the first on the scene with the Chiron armor. Designed to provide the essential protection that combat medics need, the armor features ultra-lightweight panelling to keep the wearer quick on their feet without compromising on safety. Crucial, high-impact sections have been reinforced with raised carbon plating on top of a highly durable polyfiber for maximum flexibility.\n\nThe Heartthrob edition is a dreamy, shimmering violet adorned with bright digital hearts; perfect for making friends and foes weak in the knees.'), +(3119,'TARGET SELECTOR','TargetSelector','UNDEFINED','620a5db4-92c8-4841-984e-1dc9e81f8e67','','',NULL), +(3120,'Borase','Cargo','Cargo','be7081d2-3dcc-438c-b0ad-41a46864d86c','','',NULL), +(3121,'Walesko','FPS_Consumable','Hacking','6b1beae0-5c39-478f-9d26-dd2139baf4db','','','Instructions for how to build this simple cryptokey were first published publicly in 2887 by political activist Aris Walesko who had hoped that it would lead to greater governmental transparency. Though not up to the standards of most modern security protocols, this slow and unreliable device it is still in use today owing to its ease of construction and wide availability from numerous small manufacturers.'), +(3122,'MASTER_screen_16x9_3_0064x0036_a','Display','UNDEFINED','e1985410-2aaf-4805-8399-2c0107392d7c','','',NULL), +(3123,'Door Control','Door','UNDEFINED','373c11a3-c8b3-4e50-a323-1957bf5fcd58','','',NULL), +(3124,'Quartz (Raw)','Cargo','Cargo','77ad9677-5f61-474e-a9f2-3115d73488fb','','',NULL), +(3125,'VariPuck S3 Gimbal Mount','Turret','GunTurret','8197c45b-eaf4-4836-a8f0-837d1875cd9c','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 3\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(3126,'Stirling Hazard Backpack','Armor','Backpack','204ccbc6-b28c-4edb-a2eb-251ebf7ea328','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nThis heavy duty backpack is compatible with the Stirling suit and provides a convenient storage solution. The Hazard Edition is safety yellow with diagonal black stripes and has a tinted visor for enhanced eyesight protection.'), +(3127,'MASTER_bag_carryable_2h','Cargo','UNDEFINED','6dd77f8a-fcdb-4fb3-b28e-255dd5822b00','','',NULL), +(3128,'AEGS_Door_Decal_Main_Airlock','Decal','DoorPart','417f2d19-c5b5-4615-8843-799a67fee929','','',NULL), +(3129,'Book','Misc','UNDEFINED','0ba0d44f-1f7d-4231-8492-10c200a39717','','',NULL), +(3130,'MISC_Fortune_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','267a9417-79f0-4bbc-aa4d-cfdf9a0e9c86','','',NULL), +(3131,'CRUS_Spirit_Thruster_VTOL_Aux','MainThruster','UNDEFINED','3aa750df-c964-46ae-97ff-613190cf6341','','',NULL), +(3132,'Vera Compensator2','WeaponAttachment','Barrel','9e8ce68b-7f29-48cb-87a0-5c5db4c72b91','','','Manufacturer: ArmaMod\nType: Compensator\nAttachment Point: Barrel\nSize: 2\n\nAim Time: +30%\nSpread: +40%\nAim Recoil: -30%\nVisual Recoil: -30%\nRecoil Time: -6%\nFire Rate: +6%\n\nThe heavy-duty materials utilized in the Vera Compensator2 reduce recoil and increase aim time for precise, controlled bursts.'), +(3133,'Stud','Char_Head_Piercings','UNDEFINED','345e4b4d-2350-42cf-bef8-c301af3a4399','','',NULL), +(3134,'helmet_temp','Misc','UNDEFINED','17636caa-7e32-4cc4-8107-ee911ed0b38d','','',NULL), +(3135,'MacFlex Arms Sienna','Armor','Arms','6b5c9d74-8880-4698-89b6-981af0e3f5ff','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(3136,'Retaliator Calico Livery','Paints','UNDEFINED','c71f1ab5-acd1-475c-af51-18ee453f900a','','','Inspired by the subtle shifts in color when sunlight strikes desert sands, the Calico livery for the Retaliator features shades of tan and brown with red highlights.'), +(3137,'RSI_Polaris_Cargo_Addon_Left','AttachedPart','UNDEFINED','d797cc55-b724-413d-be78-dd25479e29bc','','',NULL), +(3138,'Silnex','Cargo','Cargo','19cdc820-513e-455f-b6e1-10dd758725dd','','',NULL), +(3139,'Seat','Usable','UNDEFINED','2a03b85e-cef6-4022-8560-e8dd6047e267','','',NULL), +(3140,'ANVL_Terrapin_Thruster_Mav_Joint_Medic','ManneuverThruster','FixedThruster','2c037f1c-e677-4247-9963-275628eaee41','','',NULL), +(3141,'Mercury Star Runner Red Alert Livery','Paints','UNDEFINED','719676e2-9baa-409b-b4b8-62bc93b92284','','','Stand out from the crowd of conventional courier ships with the Red Alert livery, which makes the Mercury Star Runner metallic red and black.'), +(3142,'VariPuck S4 Gimbal Mount','Turret','GunTurret','42651386-1c6a-489e-8755-1e3f93fa6b83','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 4\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(3143,'Access','SeatAccess','UNDEFINED','f3a5c951-f86c-404d-b119-2803d6672ec2','','',NULL), +(3144,'Molina Mold','Misc','Harvestable','492f7df7-e055-4e71-8623-68f3f670e019','','','This aggressive fungus was first discovered growing within faulty air filters installed in Levski. The spores, when inhaled in high enough concentrations, can make Humans fatally ill.'), +(3145,'ComfortAir','LifeSupportGenerator','UNDEFINED','e947b002-e65e-4637-90b7-c894925d6625','','','Item Type: Life Support\nManufacturer: Tyler Design & Tech \nSize: 1\nGrade: C\nClass: Civilian\n\nDesigned to be able to process atmosphere to above UEE standards, the ComfortAir life support system from Tyler Design & Tech provides you and your crew with a clean and comfortable environment.'), +(3146,'M9A Cannon','Weapon','Gun','8d333eed-3042-4093-90f4-d1ba41fb46a3','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 7\n\nStrike at the very heart of your enemies with the devastating impact of Behring\'s M9A energy autocannon. When fully charged, the massive stopping power of this laser weapon has the potential to halt even capital ships in their tracks.'), +(3147,'ARMR_ANVL_Arrow','Armor','Medium','2c99ef3c-d73a-4539-beac-6765b6254773','','',NULL), +(3148,'DRAK_Cutter_Scout_Radar_Console','Seat','UNDEFINED','4707a311-d731-40d2-92d1-215189fd146c','','',NULL), +(3149,'Comb','Misc','UNDEFINED','35dfd8fe-361e-4eec-aa74-9e59beaad3c7','','',NULL), +(3150,'Copper (Ore)','Cargo','Cargo','b1766cb5-6210-42b7-9e57-45b9c51f9faa','','',NULL), +(3151,'2954 Tempt Fate Tankard','Drink','UNDEFINED','31142a63-5179-48e5-b382-a705d8d01672','','','Featuring a clover motif with an antique finish, this pewter and brass tankard is perfect for making a traditional Stella Fortuna toast to \"Tempt Fate.\"'), +(3152,'ORIG_890_Jump_Thruster_Mav_RSR','ManneuverThruster','FixedThruster','e3a93564-39d4-42e6-a889-72a561fc0703','','',NULL), +(3153,'Flight Blade','FlightController','UNDEFINED','c5f57b5f-86f3-4f33-9fb6-bfc0bdc4dc73','','',NULL), +(3154,'Wooden Rooster Charm (Small)','Misc','UNDEFINED','5fb960fe-9f38-4c1c-ae01-0116cc0fc8d1','','','Give the gift of good fortune and prosperity with this charm, handcarved by frontier settlers in honor of the Year of the Rooster. This considerate gift is crafted from wood to represent one\'s efforts to put down roots in a new world while the rooster design represents hard work and resourcefulness.'), +(3155,'Aurora Mk I ArcCorp Livery','Paints','UNDEFINED','5a7ec97b-e358-4c9a-af54-8f5819a9efd4','','','The ArcCorp livery for the Aurora features the company\'s logo atop a maroon base paint with black and yellow highlights.'), +(3156,'CRUS_Starfighter_Ballistic_Nacelle_Left','Misc','UNDEFINED','4008ac13-ae45-40c9-a1a5-63a6934c0561','','',NULL), +(3157,'Sabre Firebreak Livery','Paints','UNDEFINED','5ef44e8f-f0d7-4405-933b-2b481454d46d','','','Ignite envy in others with the Sabre Firebreak livery, featuring vibrant red highlights against the black base paint.'), +(3158,'AEGS_Sabre_Peregrine_Thruster_Mav_Joint_02_Top','ManneuverThruster','JointThruster','8b75cfe8-74b2-47bb-9886-a412f9cf62bf','','',NULL), +(3159,'ARGO_MOTH_SCItem_Dashboard_CoPilot','SeatDashboard','UNDEFINED','41123152-f066-4db3-9fd3-01dfe6518462','','',NULL), +(3160,'Weapon_Rack_1_VOLT_Sniper_Uncommon_003','Usable','UNDEFINED','ba7c0d48-2d65-445d-bb8a-ec980c388ca5','','',NULL), +(3161,'Redeemer Underworld Livery','Paints','UNDEFINED','ab86f582-5349-48ca-8ab0-6d0b5ec7d3ea','','','Apply the Underworld livery to the Redeemer and it will be pitch black and ready to attack.'), +(3162,'Plastic Cup','Misc','UNDEFINED','0f9611a2-7382-4522-a8ba-9b4d02358113','','',NULL), +(3163,'ht_crate_dry_2_0125x0125x0125_a','Cargo','UNDEFINED','90619e40-72aa-4095-b1ee-c1318f2271ae','','',NULL), +(3164,'Mustard','Misc','UNDEFINED','6a43191c-3a7b-4e11-8c07-1fc3e8c71fca','','',NULL), +(3165,'Neon','Cargo','Cargo','e6543c66-d79a-4ead-b14e-f3856df49c84','','',NULL), +(3166,'Bed_Mattress_Utili_Capsule','Seat','UNDEFINED','e7969ccb-0cb8-4d42-9f15-5005ab71169c','','',NULL), +(3167,'TRGT. STATUS','Seat','UNDEFINED','17a2b467-c221-492a-b25f-0ac752e6850c','','',NULL), +(3168,'Coloma Coat Iron and Silver','Char_Clothing_Torso_1','UNDEFINED','175c8c1c-0b57-4db9-9b40-1b1b6b3fb637','','','Carrying Capacity: 1K µSCU\n\nStuffed with water-resistant gilly down, the Coloma coat blocks wind, traps body heat, and allows the wearer to move freely, making it the perfect choice for changeable weather conditions. Additionally, its roomy pockets provide plenty of storage.'), +(3169,'GCD-Army Undersuit','Armor','Undersuit','39ace1a3-3ed2-41a6-ad6f-788c2fe8e300','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nUsing materials made with orb-weave technology, CDS has created a lightweight, durable undersuit that has been designed to meet the needs of on-the-ground combatants. It was made to match the limited-edition GCD-Army medium armor, but is compatible with a wide range of other sets.'), +(3170,'Internal Tank','FuelTank','Fuel','57c90b8e-5575-4df7-8f01-8a323e36fc0c','','',NULL), +(3171,'INTK_CRUS_Spirit','FuelIntake','Fuel','2b5274d0-2b7c-4ca0-b9ec-251aa683ab2a','','',NULL), +(3172,'un_jar_glass_1_berries_a','Misc','UNDEFINED','bcb5691b-4493-4ec6-9acc-dcc1b5dcd910','','',NULL), +(3173,'Door Control','Door','UNDEFINED','df26667f-2d37-4097-a158-99d632b2e51e','','',NULL), +(3174,'ANVL_Pisces_RADR_Display','Display','UNDEFINED','a23515fc-6a72-48ce-93ba-a265a93a2685','','',NULL), +(3175,'Mercury Star Runner Foundation Fest Livery','Paints','UNDEFINED','70bcbdcb-6969-4bfc-932e-13d146a88f61','','','Foundation Festival is an opportunity for Citizens and Civilians to come together and strengthen the foundation of our community. Show your commitment to a better universe with this custom livery.'), +(3176,'DockingTube_Fuel_Ports_AEGS_Sabre','DockingCollar','UNDEFINED','e128980d-1a21-4359-a044-efb785175c8a','','',NULL), +(3177,'CRUS_Spirit_Thruster_Main_A','MainThruster','UNDEFINED','78cdcebb-5676-43bb-99f7-24ca0f0ecdb9','','',NULL), +(3178,'Ponos Boots Orange','Char_Clothing_Feet','UNDEFINED','83127ccc-80ff-4e38-8e92-59bf6cd2167a','','','Quite simply, R6 Pro\'s Ponos boots were built for backbreaking work. Constructed out of Thermosulate technology, these waterproof and insulated workboots are rated for sub-arctic environments while the composite outsole ignores hazards to maintain traction when you need it most.'), +(3179,'ARGO_MOLE_Thruster_VTOL_Rear','MainThruster','FixedThruster','8f905755-85a3-4131-b22f-b4cc4d442e78','','',NULL), +(3180,'Carryable_2H_FL_EighthSCU_Commodity_Mineral','Cargo','Cargo','c925cc0c-2a8c-40ad-8cf9-07c8a99992dd','','',NULL), +(3181,'Finley the Stormwal Luminalia Plushie','Misc','Personal','a641bcd0-f0c4-426b-8f4b-dbc3e8ce6281','','','Finley the Stormwal loves Luminalia so much they even gets dressed up for the occasion. This festive Finley plushie is decked out in red and green, making them an excellent guest for any Luminalia celebration.'), +(3182,'TRGT. STATUS','Seat','UNDEFINED','c846cd51-43a9-45c1-9642-fa395897c705','','',NULL), +(3183,'Cambio \"Heartthrob\" SRT','Weapon','Gadget','48008537-1526-4712-9daf-ce57fdca18cb','','','Manufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nCanister Size: Large\nRate of Fire: N / A (Beam)\nEffective Range: 5 m\n\nStrip salvage and make repairs with the Cambio, a dual purpose salvage and repair tool (SRT) designed to collect and convert alloys and polymers found in scrap into recycled material composite that can either be sold or used to make quick repairs. The Cambio SRT features rapid stripping speeds and an impressive battery life, making it an essential gadget for mechanics and spacefarers.\n\nThe \"Heartthrob\" edition is a dreamy, shimmering violet; perfect for making friends and foes weak in the knees.'), +(3184,'FS-9 LMG','Weapon','Medium','6f1674b1-fb58-4661-9114-f418862751d2','','','Manufacturer: Behring\nItem Type: LMG\nClass: Ballistic\n\nMagazine Size: 75\nRate Of Fire: 800 rpm\nEffective Range: 40 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S3)\n\nBehring designed the FS-9 to be an overwhelming battlefield force. This light machine gun features a full auto mode that makes it ideal for laying down covering fire or holding back advancing enemies. The FS-9 is also acclaimed for its ability to maintain accuracy while unleashing sustained fire.'), +(3185,'Door','Door','UNDEFINED','29cba01d-1da5-4256-896c-5a098134652e','','',NULL), +(3186,'TRGT. STATUS','Seat','UNDEFINED','8e7c5bec-31f1-4617-a1a8-70b781d016f7','','',NULL), +(3187,'CRUS_Starlifter_Door_Decal_Radar_A','Decal','DoorPart','bb3d18dd-6c4b-4c1e-830f-8b00b9b2c26f','','',NULL), +(3188,'improvised_tray_1_b','ShopDisplay','Default','5dfb838a-385c-4e5a-9dbc-d8ac8dcdfa00','','',NULL), +(3189,'RSI_Ursa_CargoGrid_Rear','Cargo','UNDEFINED','b039d7b6-6f63-413a-9175-43964d3a334f','','',NULL), +(3190,'RSI_Constellation_Phoenix_SCItem_Seat_CoPilot_Left','Seat','UNDEFINED','8f00569b-f358-4e98-8920-b0fc24e42c6c','','',NULL), +(3191,'Freelancer Black Livery','Paints','UNDEFINED','e5243581-914b-4eca-bf9a-b05168a531b9','','','Customize your Freelancer with this black chrome livery.'), +(3192,'ORIG_600i_Seat_Expl_Module_Left','Seat','UNDEFINED','8a19958a-a95e-4342-99be-da1091ce8a26','','',NULL), +(3193,'Weapon Rack','Usable','UNDEFINED','8ba21b48-774f-45ed-8f0f-3a5a7907fd23','','',NULL), +(3194,'Seat','Usable','UNDEFINED','0cdd2773-a7b0-47ce-8cbe-d652d7b06295','','',NULL), +(3195,'Chiron Core Lifesaver','Armor','Torso','7a06556d-5a4a-4e94-a395-7e793fe2cd77','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -32 / 62 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\nBackpacks: Light\n\nBe the first on the scene with the Chiron armor. Designed to provide the essential protection that combat medics need, the armor features ultra-lightweight paneling to keep the wearer quick on their feet without compromising on safety. Crucial, high-impact sections have been reinforced with raised carbon plating on top of a highly durable polyfiber for maximum flexibility.\n\nThe Lifesaver edition was styled for first responders to be highly visible. The teal, white, and red color scheme features a medical cross symbol across the chest and helmet.'), +(3196,'Aurora Mk I CL Ship Armor','Armor','Medium','5fc0aeba-7397-4487-a2cb-07670aaa994e','','','Aurora Mk I CL Ship Armor'), +(3197,'LH86 \"Executive Edition\" Pistol','Weapon','Small','c4242150-6580-4305-9e4f-8fc5379bcb42','','','Manufacturer: Gemini \nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 25\nRate Of Fire: 1200 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe LH86 from Gemini is a compact kinetic handgun designed for personal defense and close-quarter combat. A keen eye on ergonomics and balance coupled with hardy construction makes this pistol a natural fit for any shooter in any number of hostile conditions. The LH86 also comes with Tritium low-light sight and a twenty-five round magazine.'), +(3198,'Omnitrek Jacket Frost Point','Char_Clothing_Torso_1','UNDEFINED','c1132860-1c02-407c-a600-607bc44d605f','','','Carrying Capacity: 1K µSCU\n\nBe ready for anything with DMC’s Omnitrek, the survival jacket designed for maximal performance in adverse weather conditions with the addition of the water-resistant collapsible collar. The Omnitrek also provides numerous storage options across both sleeve and chest pockets.'), +(3199,'Door Control','ControlPanel','DoorPart','8fe6bbad-d9a5-40b7-935f-2667ea2a221f','','',NULL), +(3200,'Carryable_1H_CY_drug_inhaler_1_a_box','Misc','UNDEFINED','6e1c91ff-4c7b-4ff1-b0b4-5a1785d1f30b','','',NULL), +(3201,'Bed','Usable','UNDEFINED','41456d73-99ba-4a32-9558-9a4382b761e8','','',NULL), +(3202,'AEGS_Hammerhead_Thruster_Retro','ManneuverThruster','FlexThruster','eb8a3e01-8574-4c7f-96c7-156a18fdd990','','',NULL), +(3203,'RSI_Zeus_Cargo_CargoGrid_Right','CargoGrid','UNDEFINED','55e0bd24-cce2-4844-88e2-f120536bea19','','',NULL), +(3204,'Calva Helmet Daybreaker','Armor','Helmet','5f7c3f05-c351-4dcb-bd0e-e98b2b4e3ffe','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nGet a clear view of everything around you with the Calva helmet from Quirinus Tech. The large face shield made from proprietary synthetic sapphire provides scratch resistance while remaining just as thin and light as typical materials. The Daybreaker edition features a promenient gold faceplate and highlights.'), +(3205,'Quartz \"Deadfall\" Energy SMG','Weapon','Medium','beffa2d9-b633-452c-91d3-ed852e3e1014','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: SMG\nClass: Energy (Electron)\n\nBattery Size: 545\nRate of Fire: Beam\nEffective Range: 15-20 m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nManufacturer VOLT\'s Quartz SMG utilizes exciting new weapon technology that fires a short range beam that fractures into multiple beams the longer it fires, making it an extremely effective close quarter weapon.\n\nThe \"Deadfall\" edition is primarily muted green with black highlights.'), +(3206,'Internal Tank','FuelTank','Fuel','bd985eb3-b2ae-495b-b776-2e955cfb324c','','',NULL), +(3207,'Calva Helmet','Armor','Helmet','57386b72-68c8-4d08-ab87-2e2c9e1380e5','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nGet a clear view of everything around you with the Calva helmet from Quirinus Tech. The large face shield made from proprietary synthetic sapphire provides scratch resistance while remaining just as thin and light as typical materials.'), +(3208,'Quantum Fuel','Cargo','Cargo','24344104-8f61-40e2-8d59-346a7eb0c1f1','','',NULL), +(3209,'ANVL_Door_Decal_Carrack_Captains_Quaters','Decal','DoorPart','f209514d-1797-4be9-81cb-6bd346306120','','',NULL), +(3210,'Stratus Pants Green','Char_Clothing_Legs','UNDEFINED','7911e8b2-06b3-4d81-a2f4-11ef40269f19','','','Carrying Capacity: 0.5K µSCU\n\nCasual comfort that you can wear anywhere. The Stratus pants feature a soft comfort waistband that perfectly embraces your hips, and distinct reinforced paneling to ensure long wear and supreme style.'), +(3211,'Col Head Cover Purple','Char_Clothing_Hat','UNDEFINED','03003f2e-578d-49fa-897c-48d659beefec','','','Temp. Rating: -30 / 15 °C\n\nThe Col is an insulated yet lightweight head cover that keeps heat from escaping. The large, chip-resistant faceplate features a cutting-edge GX coating to ensure the purest light quality for viewing the surrounding environs.'), +(3212,'Seat','SeatAccess','UNDEFINED','626f8e96-71e2-410a-bb6e-d84dc673a7b4','','',NULL), +(3213,'Table_1_Seat_ANVL_Paladin','Usable','UNDEFINED','65099834-cb60-4055-9f8e-be8414de5a31','','',NULL), +(3214,'Pyro RYT Multi-Tool','Weapon','Gadget','6b5469c0-8fdb-4062-8e7d-8c59ad324faf','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier.'), +(3215,'Agricium','Cargo','Small','ad671bda-e44f-44b5-b5a6-de0bacccd61e','','','A rare and valuable silvery metal with a blue-green sheen. Malleable, ductile, and largely non-reactive.'), +(3216,'Seat','SeatAccess','UNDEFINED','28944222-13a3-4d57-9e93-67bd1dd3cab5','','',NULL), +(3217,'WorkLife Pants Straw','Char_Clothing_Legs','UNDEFINED','4d74bedb-69e3-473f-bad8-7444355d73d1','','','Carrying Capacity: 2K µSCU\n\nWith Stegman\'s, you know you\'re getting clothes made for workers, by workers. Featuring multiple external pockets with easy access tabs, WorkLife pants are rugged, functional and professional. Just like you.'), +(3218,'Calister Pants','Char_Clothing_Legs','UNDEFINED','90f48522-b1b5-4afe-b672-b03d6f296c80','','','Carrying Capacity: 1000 µSCU\n\nThe Calister Pants by Habidash are made with thick synthetic fabric intended to ensure coverage of the wearer\'s legs even in adverse environmental conditions.'), +(3219,'Weapon_Rack_TMBL_Storm_1Slot','Usable','UNDEFINED','1b248191-4b26-4a6f-a38f-c97c8f71e2a4','','',NULL), +(3220,'Defender Stormbringer Livery','Paints','UNDEFINED','05c8b395-cfa6-4e12-bf3b-ba62b76e1ed0','','','Celebrate the 2951 IAE with this custom Defender livery. Blending blue and black with white accents, the paint scheme gives the ship an electric new look.'), +(3221,'TEST_shelf_MissionBlackBoxDropOff','ShopDisplay','UNDEFINED','d8f8a5d5-b8bb-4e86-9494-f6a995aefc22','','',NULL), +(3222,'T.A.B.A. Cargo Plushie','Misc','Flair_Wall_Picture','1581e12a-b162-40c1-ae28-0adf5edc15ad','','','Here\'s a haul you can hug. This plushie shaped like a cargo container features T.A.B.A. Freightline branding with the company\'s logo and black and grey color scheme.'), +(3223,'Controller_Salvage_Crus_C1','SalvageController','UNDEFINED','b12b25de-1a75-41b4-9f62-2aba705f92e6','','',NULL), +(3224,'ThermalFoam','Cargo','Cargo','4d490d39-e260-44a9-80c2-7bd407be0f81','','',NULL), +(3225,'Arden-CL Backpack Rime','Armor','Backpack','fdf82c64-ae1d-45cb-b907-2f61ac634a96','','','Item Type: Light Backpack\nCarrying Capacity: 40K µSCU\nCore Compatibility: All\n\nWhether carrying supplies into a combat zone or simply hauling extra gear, the Arden-CL backpack is battle ready and tested. Roussimoff Rehabilitation Systems designed the backpack with a universal core connector allowing it to attach to a wide variety of armors.'), +(3226,'AEGS_Idris_SCItem_Seat_Bridge_Rear_Left_Back','Seat','UNDEFINED','ac04f999-6965-41d9-a986-5efe664fc1f3','','',NULL), +(3227,'ARMR_ESPR_Prowler_Utility','Armor','Medium','1c32466b-2841-4658-b49b-0b5a829710a4','','',NULL), +(3228,'Internal Tank','FuelTank','Fuel','f546d7d5-e577-491d-92e2-eca3818c0659','','',NULL), +(3229,'ORC-mkV Legs Cry-Astro Edition','Armor','Legs','7b5c4a78-e680-42ee-9aa8-266ab4ba8060','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement. The Cry-Astro Edition was made specifically for the company.'), +(3230,'f_human_mannequin_sandNomad','ShopDisplay','UNDEFINED','26fff138-dd16-4790-b5a5-a7d8782ce784','','',NULL), +(3231,'Door_Ship_Sensor_Proximity_2x5x3','Sensor','DoorPart','ae0798d0-bd53-47bf-a059-83e121aa44c1','','',NULL), +(3232,'Door Control','Door','UNDEFINED','6c62f813-ac08-4b87-a506-a67b5de4a031','','',NULL), +(3233,'Animus Missile Launcher Magazine (3 cap)','WeaponAttachment','Magazine','2308fcbc-cc02-41c1-9a5e-3a14507fc4f4','','','Item Type: Magazine\nCapacity: 3\n\nThis magazine for the Animus missile launcher holds three missiles.'), +(3234,'ANVL_Hornet_CargoGrid_F7C','CargoGrid','UNDEFINED','4a08dec7-9544-4d3b-9e01-0e7ed83793cf','','',NULL), +(3235,'Scourge Railgun Magazine (5 cap)','WeaponAttachment','Magazine','92f958c7-71c5-4997-a575-d6ea3a6e304b','','','Item Type: Magazine\nCapacity: 5\n\nThis magazine holds the large specially designed .937 caliber tungsten sabot rounds fired by the Apocalypse Arms Scourge railgun.'), +(3236,'TRGT. STATUS','Seat','UNDEFINED','e4aafcec-62e0-4643-97cc-e0fc453d7506','','',NULL), +(3237,'Kaswal Jacket Iron','Char_Clothing_Torso_1','UNDEFINED','a0f45272-8dcd-45b7-850a-ed4160d435c6','','','Carrying Capacity: 1K µSCU\n\nDMC’s Kaswal is a cold-weather jacket designed with additional lining throughout the chest and sleeves for added warmth and comfort.'), +(3238,'ARMR_TMBL_Cyclone','Armor','Light','a59b5acf-ea30-4177-a292-d990af708d3e','','',NULL), +(3239,'Bokto Arms','Armor','Arms','8bbb69d3-9233-4a6d-b23c-53694de7e08b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nThis Antium Armor was modified from its original version. Carefully-selected fangs and bones were mounted to the set to give it a primal look.'), +(3240,'KRIG_Merlin_LandingGearSystem','LandingSystem','UNDEFINED','77ce531a-e398-4d7e-bb05-a77b8caca600','','',NULL), +(3241,'Flight Blade','FlightController','UNDEFINED','c2bacfcb-6610-468c-82c4-f8c2abe3a6d8','','',NULL), +(3242,'Ajax Security Uniform Hat','Char_Clothing_Hat','UNDEFINED','36b4bc1f-88cf-470c-b23b-cd30d99aa9d9','','','This black soft-domed, billed hat from Code Blue Apparel features eye-catching bronze accents and is imprinted boldly with \"Security\" across the front. Comfortable and distinct, it makes for an ideal accessory to any security professional\'s uniform.'), +(3243,'Seat','Usable','UNDEFINED','5272c1ef-3e66-4b9a-8445-e20240b6f2fb','','',NULL), +(3244,'Vulture Foundation Fest Livery','Paints','UNDEFINED','350277c7-d1a4-485f-9046-a99cfcaa1611','','','Foundation Festival is an opportunity for Citizens and Civilians to come together and strengthen the foundation of our community. Show your commitment to a better universe with this custom livery.'), +(3245,'AEGS_Redeemer_Blankingplate','Misc','UNDEFINED','1de1443d-5de8-4191-ad30-dca031305daf','','',NULL), +(3246,'ORC-mkX Legs Justified','Armor','Legs','84c76b3b-7011-4b32-b7b1-1219e2ba8d2d','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nThis version of CDS\' ORC-mkX combat armor has been modified from its original form. The mark X is part of CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(3247,'SHIELDS','ShieldController','UNDEFINED','5d916f4e-1e13-40d0-afe8-9c1b2d7c934a','','',NULL), +(3248,'Carryable_TBO_FL_16SCU_Commodity_ProcessedGoods_ProcyonCanister_Quantum','Cargo','Cargo','2c18edf2-b3c3-4a05-b3e9-0d43c1401c4b','','',NULL), +(3249,'Ermer Family Farms Fat Free Ice Cream','Food','Junk','7441f131-fa39-452c-89a7-ef23b41fee52','','','NDR: 10\nEffects: Energizing, Hyper-Metabolic\n\nThis premium 100% fat free, real dairy ice cream blended with natural vanilla is handcrafted by the skilled artisans at Ermer Family Farms.'), +(3250,'Door Control','Door','UNDEFINED','eaf58daa-0939-4f09-baad-5a3e479806cd','','',NULL), +(3251,'Inquisitor Core Brimstone','Armor','Torso','c9d44046-13f2-4882-9db3-dd89eed1728d','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(3252,'Gasping Weevil Eggs','Cargo','Cargo','86c08380-24e5-4637-8ae9-d352e94b8fcf','','',NULL), +(3253,'Radar_Display_1_5m','Display','UNDEFINED','b45f9b47-ac61-42e4-83fc-89b561337077','','',NULL), +(3254,'DockingTube_Fuel_Ports_RSI_Aurora_CL','DockingCollar','UNDEFINED','e7228e20-6135-4e63-9999-d821f859840a','','',NULL), +(3255,'CNOU_Mustang_Delta_Thruster_Retro','ManneuverThruster','FixedThruster','41e4a686-7119-4701-9906-5f8e82711115','','',NULL), +(3256,'Manned Turret','TurretBase','MannedTurret','d7488d3c-fae9-479c-91ee-70382f6eb8cc','','',NULL), +(3257,'TRGT. STATUS','Seat','UNDEFINED','fc9c27a1-3941-4806-96b7-947039f830bf','','',NULL), +(3258,'Mercury Star Runner Flight Jacket','Char_Clothing_Torso_1','UNDEFINED','42f20a21-f22b-4303-baca-d36ad7878aff','','','Carrying Capacity: 2K µSCU\n\nThe Mercury Star Runner is more than a memorable silhouette. Crusader\'s beloved asymmetrical ship gets it own comfortable flight jacket made of high quality synthetic leather. Complete with Crusader\'s logo on the front and a patch with the ship mid-flight on the back.'), +(3259,'Bed','Usable','UNDEFINED','0c01a1e4-643a-4042-a9b0-f129e7d292bd','','',NULL), +(3260,'RSI_Apollo_Medivac_Thruster_Main_Nacelle','MainThruster','FixedThruster','43899839-921d-64ae-8d5d-237d774d90b8','','',NULL), +(3261,'DRAK_Vulture_Locker_Door','Player','UNDEFINED','43f399a5-6f59-4288-9100-e798710a5602','','',NULL), +(3262,'MASTER_screen_16x9_1_004x00255_RefineryScreen','Display','UNDEFINED','cf3b45eb-bde4-4136-a1b3-6fdfb6427f0c','','',NULL), +(3263,'Fresnel Energy LMG Battery (165 Cap)','WeaponAttachment','Magazine','923fcb3c-ad02-4a9a-96c2-1fb61fb6c794','','','Item Type: Battery\nCapacity: 165\n\nThis battery for the Fresnel Energy LMG holds enough energy for 165 shots.'), +(3264,'Origin Black Knight','Gadget','UNDEFINED','2268f514-0089-499f-93a6-78156974217e','','','Made exclusively for Origin Jumpworks and included with the 890 Jump, this black chess piece is a modern version of a classic set.'), +(3265,'Paint_300_SeatTrim_GlossYellow','Misc','UNDEFINED','d0cf1bc4-ce1f-482f-86e2-24dc1e249f1e','','',NULL), +(3266,'JOKR_DistortionCannon_Barrel_S1','WeaponAttachment','Barrel','7f31d915-b0f2-4237-b2bd-13091b0fbf23','','',NULL), +(3267,'Fortifier Helmet Earthwork','Armor','Helmet','e0f3070a-4f62-4983-bcd8-f1a22f734af7','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nProtect your most valuable asset with the Fortifier. Intended for extremely hostile environments, this heavy helmet makes up for its limited visibility with extra plating that protects the neck and back of the head.'), +(3268,'Quartz \"Lumen\" Energy SMG','Weapon','Medium','397b9aab-4bde-4aae-a70d-d6604a69aa01','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: SMG\nClass: Energy (Electron)\n\nBattery Size: 45\nRate of Fire: Beam\nEffective Range: 15-20 m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nManufacturer VOLT\'s Quartz SMG utilizes exciting new weapon technology that fires a short range beam that fractures into multiple beams the longer it fires, making it an extremely effective close quarter weapon.\n\nThe \"Lumen\" edition mixes crisp white base with black highlights.'), +(3269,'CNOU_Mustang_Gamma_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','63c24488-246f-4bdd-ac29-82ec52a9baeb','','',NULL), +(3270,'Celestial Sextant','Misc','UNDEFINED','9f7eeb87-55f3-4733-9498-38dac7bca090','','','High tech innovators microTech pay homage to the past with this sextant, an ancient Earth instrument used for celestial navigation. It was designed with modern materials that help stabilize the device and stop warping due to extreme weather conditions.'), +(3271,'Clipper Cerulean Livery','Paints','UNDEFINED','374becfb-7f28-488b-b7d5-2d26096b1035','','','Bring a beautiful blue with black and white accents to the Clipper with the Cerulean livery.'), +(3272,'Vehicle_Screen_MFD_Holographic_MISC_Hull_C_R','Display','UNDEFINED','a1c401a4-3030-4396-af9d-44b5a1b84073','','',NULL), +(3273,'Ventra Gloves Green','Char_Clothing_Hands','UNDEFINED','b896c933-d555-4091-8ce2-61b497444b00','','','Keep your hands warm and dry with Fiore\'s Ventra gloves. Microstitching creates a snug, tailored fit to keep you looking stylish and warm.'), +(3274,'Ready-Up Helmet Yellow','Char_Clothing_Hat','UNDEFINED','6ccdf264-4fcb-4810-afca-ffa7cca71c3a','','','The Ready-Up is a dependable, affordable softshell helmet alternative. Built from space-age plastic, the Ready-Up provides a vacuum-ready seal to keep you breathing for longer.'), +(3275,'CRUS_Spirit_C1_CargoGrid','CargoGrid','UNDEFINED','99644e5d-1c63-4803-a95f-57009d2999c7','','',NULL), +(3276,'Diamond Laminate','Cargo','Cargo','661b3d7b-81cf-4cd5-a2e1-c8fcb55ffe0f','','',NULL), +(3277,'Door Control','ControlPanel','DoorPart','ffeae9b0-6371-498a-abf9-469849f2fa32','','',NULL), +(3278,'Day One Shirt Orange','Char_Clothing_Torso_0','UNDEFINED','a4e22473-cf14-46e4-abb1-5b0d09e1d4be','','','This Henley shirt from Stegman\'s is made with AirFlow technology, a stain-resistant, air-cooled fabric that keeps you comfortable and dry.'), +(3279,'Field Recon Suit Helmet','Armor','Helmet','36857ba1-a4c3-4ee7-b67d-5d8538d8dd5c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nCDS’ Field Recon Suit is the perfect solution for the combat operator who wants a little extra protection without compromising any of their situational agility. EdgeCore composite plating is strategically sewn into the nano-weave suit to cover vital organs while keeping the suit flexible.'), +(3280,'Chamar Pants','Char_Clothing_Legs','UNDEFINED','1333f5ea-0253-4787-abef-a3e914ab9a67','','','Carrying Capacity: 1K µSCU\n\nDecades of design experience helped DMC make the Chamar pants ready for any adventure. The pants utilize a unique seam design to deliver durability while maintaining flexibility. A built-in belt ensures an ideal fit, while leather front pockets and a padded back-panel provide rugged reinforcement where needed most.'), +(3281,'Tungsten (Ore)','Cargo','Cargo','20fac62e-05a0-42bd-b857-e143dd09996c','','',NULL), +(3282,'display_cabinet_small_16x03x0150','ShopDisplay','Default','e619c603-5b57-4563-a138-2b5e10255703','','',NULL), +(3283,'AEGS_Idris_CargoGrid_MissileRoom_Front','CargoGrid','UNDEFINED','8ece66bc-0c5e-4c8d-9843-1c9c101c1227','','',NULL), +(3284,'Microid Battle Suit Legs','Armor','Legs','98aeb87d-3583-4a4a-b342-20b596c8eae7','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(3285,'Seat','Usable','UNDEFINED','fc0382c6-121c-48ed-860a-bc53673e94e2','','',NULL), +(3286,'VariPuck S2 Gimbal Mount','Turret','GunTurret','1ba3ba1d-f619-445c-994c-c6e8b52cc207','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 2\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(3287,'Corbel Arms Crush','Armor','Arms','ad41bd3f-b1a6-4b01-84e5-6cf2f7bab8a4','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nOriginally designed as a strength enhancement suit to give factory workers better lifting power, CDS found wider application in utilizing its defensive capabilities. It\'s triple-enforced armor plating provides extreme physical protection, with deliberate placing of materials to protect the most vulnerable parts of the body. A series of pneumatic levers offer increased flexibility in the joints, alleviating pressure and weight in key areas to create an accessible and highly protective armor despite its heavy weight.\n\nThe Crush edition consists of a polished black metal with brushed bronze detailing.'), +(3288,'The Hill Horror Helmet','Armor','Helmet','a75d3d97-cff2-4a27-a8fe-ea6bb27bcf61','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nHaunt your friends with a helmet inspired by the terrifying appearance adopted by famed serial killer Neville Lott. The classic slasher vid \'The Hill Horror\' helped make this look a staple at Day of the Vara festivals, and this high-quality reproduction replicates the iconic movie look down to every last devious stitch. The Hill Horror helmet is made with an actual gunny sack sealed with a special finish that can withstand a wide variety of environmental conditions, and covering a comfortable space-rate helmet. Become a walking nightmare and celebrate Day of the Vara in sinister style with this helmet.'), +(3289,'Door Control','Door','UNDEFINED','3eeddcfc-d15b-4035-9f50-3e426149790d','','',NULL), +(3290,'Table_1_Seat_DRAK_Clipper','Usable','UNDEFINED','6a808a20-35d5-4ebb-a714-c79d2e2b6234','','',NULL), +(3291,'RAFT Alliance Aid Green Livery','Paints','UNDEFINED','e28322f4-3fc1-415c-870f-4acac52e607a','','','Showcase your dedication to helping Alliance Aid assist the people of Levski during their time of need with this green livery with yellow accents.'), +(3292,'Remote Turret','Turret','GunTurret','de0cf016-d36f-4a8c-9ab6-0d9ebad6ec89','','','Remote Turret'), +(3293,'MacFlex Core \"Rust Society\"','Armor','Torso','c4a68f08-1939-4f06-b656-c35ebf61545e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible. The Rust Society edition celebrates blue-collar workers with an exclusive red and tan coloration that hides dirt and wear and tear well.'), +(3294,'AEGS_Door_Decal_WC_M','Decal','DoorPart','0084abf0-d884-4c17-8649-3df9e1909ccc','','',NULL), +(3295,'Torite','Cargo','Cargo','4bafd0d6-4de2-4c89-a798-65513f59214d','','',NULL), +(3296,'Door Control','Door','UNDEFINED','5a12c222-b120-45d6-961b-74bd7cb66038','','',NULL), +(3297,'San\'tok.yai Tuiping Livery','Paints','UNDEFINED','be03db26-d0ec-42db-8bee-a919bbf27ddc','','','Make the San\'tok.yai pristine white with red trim with the Tuiping livery.'), +(3298,'Pembroke Helmet','Armor','Helmet','b4545643-195c-4b70-977c-55d680ec34c2','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nDesigned to extend the limits of Human endurance, the Pembroke was built to withstand the extreme heat of inhospitable high temperature environments. Based off of Caldera\'s best-in-class exploration armor platform, an advanced sensor suite intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. Also featuring a bespoke helmet that integrates with the cutting edge life support system, those seeking to cross bold new horizons can depend on the Pembroke to see them to the journey\'s end.'), +(3299,'JS-300','PowerPlant','Power','b1c89d89-d408-4998-9b17-76986d78a9dd','','','Item Type: Power Plant\nManufacturer: Amon & Reese Co.\nSize: 1\nGrade: A \nClass: Military\n\nThis high-end, military-grade component from A&R delivers excellent performance and solid durability at the expense of slightly increased emission levels. However with the JS-300 pedigree, it’s easy to see why this small power plant has many fans in the military.'), +(3300,'un_glass_wine_1_a','Misc','UNDEFINED','db4e1a04-3e7e-4215-b9f0-7f728ff0cb7b','','',NULL), +(3301,'Stirling Exploration Helmet Granite Edition','Armor','Helmet','6edb6cce-863e-4b25-ae08-63d27fe4ecad','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nDesigned to withstand inhospitable environments, the Stirling Exploration Suit provides a base level of protection from environmental hazards including radiation. Combining Caldera\'s advanced insulation fabrics with sophisticated polymers, the Stirling is able to safeguard the wearer whilst minimizing disruption to movement. Additionally, a self-cleaning system automatically activates after radiation exposure to expunge dangerous excess down to nominal levels. This helmet is only compatible with the Stirling Exploration Suit. The Granite Edition uses blacks, beiges, and grays inspired by dark stones and excavated rocks.'), +(3302,'Snapback Boots','Char_Clothing_Feet','UNDEFINED','611405ed-1968-498b-9b71-bd2a97cf8136','','','Vibrant light green leather and bold metallic accents bring an eye catching look to the Snapback boots. Grindstone Boots\' classic thick, cushioned sole and an odor absorbing insole are complemented by a steel toe, magnetic clasps protecting the laces, and a metallic counter for additional support.'), +(3303,'MXC Cadet Livery','Paints','UNDEFINED','2e44fa78-2e8c-45b0-b015-92defd8fbe72','','','Make the MXC light grey with red highlights by equipping the Cadet livery, which can also be applied to other Greycat M-Series vehicles.'), +(3304,'Six-Sided Rotating Die Orange','Misc','Utility','d2f0e07a-5c64-4e63-a256-59c894b90e31','','','This orange six-sided die houses a rotating core that features the numbers one through six. When rolled along a surface, a random number will display on the upper face of the die as the rotating core comes to rest.'), +(3305,'CRUS_Starlifter_Thruster_Retro','ManneuverThruster','FixedThruster','066e8800-ba83-43d6-82eb-40fc40bf81df','','',NULL), +(3306,'AEGS_Door_Decal_Escapepods_Large_03','Decal','DoorPart','ac88e5a3-2839-41bc-84d9-35c5021a3758','','',NULL), +(3307,'Seat','Usable','UNDEFINED','fd6f139e-a37e-4b26-bb74-257a2798b64c','','',NULL), +(3308,'Enkel Shirt Valencia','Char_Clothing_Torso_0','UNDEFINED','9ee82184-16d8-42c3-bace-bc743379a53f','','','Habidash\'s Enkel is a simple, no-frills shirt designed to be comfortable, first and foremost.'), +(3309,'RSI_Aurora_GS_Pilot_Dashboard','SeatDashboard','UNDEFINED','954737c5-ba7b-4383-bff3-d5efd00f527b','','',NULL), +(3310,'ATLS Granite Livery','Paints','UNDEFINED','9ac499d9-d402-4fc1-b8ee-b239832fce42','','','A base of grey is elevated with lime lettering across the side of the ATLS Granite livery.'), +(3311,'MSD-481 Missile Rack','MissileLauncher','MissileRack','e92cb56d-1574-4569-b7ab-719ecbc4dec0','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 4\nMissiles: 8xS1\n\nBehring’s MSD-481 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 4 hardpoint for the reliable and effective launch of eight S1 missiles.'), +(3312,'Radar_Display_CRUS_Intrepid','Display','UNDEFINED','69af9a79-6620-4c3d-b5c7-1d5ff0cacd42','','',NULL), +(3313,'Seat','SeatAccess','UNDEFINED','2c2a8f9d-1ea2-4684-aeb6-1c64c3d66430','','',NULL), +(3314,'Seat','Usable','UNDEFINED','869cf626-8402-40b5-a41c-035cfa3a45a8','','',NULL), +(3315,'Door Control','ControlPanel','DoorPart','f2ee708b-c918-4fee-b2df-a584c12691e2','','',NULL), +(3316,'Davin Work Gloves Dark Red','Char_Clothing_Hands','UNDEFINED','74d6db6e-8847-402b-bb4e-54b2d2fee164','','','Field-tested for over fifty years, you can find Davin work gloves at numerous sites and ships around the Empire. Stegman\'s rugged construction and comfort lining have made them a customer favorite.'), +(3317,'AEGS_Gladius_Thruster_Retro','ManneuverThruster','JointThruster','37670506-d57e-4dbe-be92-cbe85f1fe9ad','','',NULL), +(3318,'Red Wind Container Model','Misc','Flair_Wall_Picture','6db7bafc-dfa4-4ce5-ad52-de1be2de2855','','','There\'s no need for a tractor beam to move this cargo container. This finely detailed model features Red Wind Linehaul branding with the company\'s logo and grey and red color scheme.'), +(3319,'Carryable_1H_SQ_Harddrive_1','Misc','Utility','a6716581-de06-4401-b9dd-7ef3c514407f','','',NULL), +(3320,'ORIG_400i_Thruster_Mav_Side','ManneuverThruster','FlexThruster','7294e8d1-432d-4e59-a96a-f35f0e91152f','','',NULL), +(3321,'Pisces Citizens for Prosperity Garnet Livery','Paints','UNDEFINED','a97abf1c-2f61-43f3-8330-113aa4d03f64','','','Join the Citizens for Prosperity in their mission to bring peace to the frontier with this dark grey and burgandy livery featuring the group\'s signature logo.'), +(3322,'Aphorite','Cargo','Cargo','ff27f0b4-2293-430b-b90f-d8458dcdaae8','','',NULL), +(3323,'Beryl','Cargo','Cargo','bb8b4dad-104c-4e6b-9edb-817e29b43d90','','',NULL), +(3324,'RSI_Apollo_Medivac_Thruster_Main','MainThruster','FixedThruster','41fbfb8e-75e7-9fda-9a55-df771b4773bc','','',NULL), +(3325,'Sadaryx','Cargo','Cargo','869ee2cd-bfe3-4026-b35a-1d3385832552','','',NULL), +(3326,'RSI_Polaris_Platform','Elevator','UNDEFINED','e85f359c-ea94-4683-b448-a0dec197ad26','','',NULL), +(3327,'Savrilium','Cargo','Cargo','cc37f091-7707-47c8-b2bc-4e29bac2ae4e','','',NULL), +(3328,'Stirling Hazard Suit','Armor','Undersuit','9978e476-921c-4e4d-9a3e-3692c1943ce6','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nDesigned to withstand inhospitable environments, the Stirling Exploration Suit provides a base level of protection from environmental hazards including radiation. Combining Caldera\'s advanced insulation fabrics with sophisticated polymers, the Stirling is able to safeguard the wearer whilst minimizing disruption to movement. Additionally, a self-cleaning system automatically activates after radiation exposure to expunge dangerous excess down to nominal levels. The Hazard Edition is safety yellow with diagonal black stripes and has a tinted visor for enhanced eyesight protection.'), +(3329,'Hair Care Product','Misc','UNDEFINED','40644aef-61e6-4c56-bdda-ecc8fc19f707','','',NULL), +(3330,'ExoGen','PowerPlant','Power','d49cced4-ee82-4a98-8690-93ac432c891a','','','Item Type: Power Plant\nManufacturer: Amon & Reese Co. \nSize: 2\nGrade: D\nClass: Military\n\nSimple and direct, the ExoGen generates power in traditional A&R style: no fuss, just solid craftsmanship.'), +(3331,'G-Loc T-Shirt','Char_Clothing_Torso_0','UNDEFINED','e60ea44a-642d-4957-b6ea-38028b4879d1','','','Raise a glass to the expert drink-slingers at the G-Loc Bar with this t-shirt. Area18\'s finest watering hole is known for their heavy pours on classic cocktails, like the Wingman\'s Hangover and Nick\'s Mistake. Snag this shirt to celebrate their generosity and help you remember where the night started.'), +(3332,'CNOU_Mustang_Gamma_Thruster_Retro','ManneuverThruster','FixedThruster','1508f2ba-d1e6-4c92-a502-1a22e76b7b46','','',NULL), +(3333,'ORC-mkX Helmet Singularity','Armor','Helmet','464c599a-8bcf-482f-9ff9-60d12c133641','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology that maximizes protection against projectiles, explosives and the elements without hindering the operator\'s agility. Visor is AR crosshair compatible.'), +(3334,'display_components_s2_modular_shield','ShopDisplay','UNDEFINED','884a425b-d9e8-490b-a1c9-c5195d707a5d','','',NULL), +(3335,'Ammonia','Cargo','Cargo','30a1c0ce-6917-454d-8e4c-1d3bf6201d88','','',NULL), +(3336,'Calister Pants Shuttle Gray','Char_Clothing_Legs','UNDEFINED','73639b78-2bf1-40cf-9470-74335a3fe53f','','','Carrying Capacity: 1000 µSCU\n\nThe Calister Pants by Habidash are made with thick synthetic fabric intended to ensure coverage of the wearer\'s legs even in adverse environmental conditions.'), +(3337,'DRAK_Cutlass_Blue_Thruster_Maneuver_Left','ManneuverThruster','JointThruster','505428a0-80d4-4e7c-b28b-f28fa3a948ec','','',NULL), +(3338,'MISC_Razor_EX_Thruster_Retro','ManneuverThruster','FixedThruster','7bc09347-73f4-4b0e-85aa-2ed7bf89f219','','',NULL), +(3339,'mobiGlas Plum Casing','MobiGlas','Personal','5a48ba91-3ef7-45a3-a77b-cefb59be1648','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(3340,'Bed_Pillow_Utili_Capsule','Seat','UNDEFINED','5c0e671d-60dc-4a9f-be21-67679d78f149','','',NULL), +(3341,'RSI Hat','Char_Clothing_Hat','UNDEFINED','c74fb9b8-e3de-40e5-8a26-1d6f02be2f37','','','The iconic RSI logo graces the front panel of this black hat featuring a burnt orange accent stripe.'), +(3342,'ANVL_Gladiator_Thruster_Mav_Joint_01','ManneuverThruster','FlexThruster','734ff92a-963e-444d-a46c-d77ae56362aa','','',NULL), +(3343,'Adroit Gloves Charcoal','Char_Clothing_Hands','UNDEFINED','868f8e45-f712-48a3-95d3-a4826782ca4a','','','Lightweight, quick-drying, and durable, the Adroit fingerless gloves keep your hands warm while giving your fingers the freedom to perform delicate work. The material on the wrist extends to meet long-sleeved apparel, cutting down on places that might be exposed to the elements.'), +(3344,'Lynx Arms Green','Armor','Arms','bb24483b-8822-4325-9368-0507d45e1be8','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(3345,'Adroit Gloves CFP','Char_Clothing_Hands','UNDEFINED','eb6f6b5d-9fc2-4db2-b61e-d53d829b6839','','','Lightweight, quick-drying, and durable, the Adroit fingerless gloves keep your hands warm without sacrificing agility to perform delicate work. The material on the wrist extends to meet long-sleeved apparel, cutting down on places that might be exposed to the elements.\n\nThe CFP edition is a deep fjord blue with black accents.'), +(3346,'AEGS_Door_Decal_Escapepods','Decal','DoorPart','b1c96d2d-9eb5-415a-a825-7d205fd33e29','','',NULL), +(3347,'Irradiated Valakkar Fang (Juvenile)','Misc','Harvestable','72eca4eb-23b8-43b0-94b0-72d31b6ba358','C','','The valakkar continually sheds its teeth throughout its lifetime. As the animal burrows through the sand and catches prey, its teeth are frequently damaged. Once a new tooth finishes forming, it severs the connective tissue that was holding the old tooth in place, causing it to break off and fall to the ground. The fangs of the valakkar can also be extracted from the animal\'s mouth after its death. This fang was exposed to radiation over a long period of time and has developed unusual coloration.'), +(3348,'Walesko','FPS_Consumable','Hacking','9b71ffec-2bc6-4d48-bc13-a03f233312de','','','Instructions for how to build this simple cryptokey were first published publicly in 2887 by political activist Aris Walesko who had hoped that it would lead to greater governmental transparency. Though not up to the standards of most modern security protocols, this slow and unreliable device it is still in use today owing to its ease of construction and wide availability from numerous small manufacturers.'), +(3349,'Bed_ORIG_600i_Crew_A','Usable','UNDEFINED','62e13af5-8f91-4d90-bd81-e673c2747453','','',NULL), +(3350,'Stoic Suppressor3','WeaponAttachment','Barrel','a3d3ce39-37f1-41a7-827d-ae83aded1285','','','Manufacturer: ArmaMod\nType: Suppressor\nAttachment Point: Barrel\nSize: 3\n\nAim Time: -10%\nSpread Max: -50%\nAim Recoil: -25%\nAudible Range: -33%\n\nAs the largest suppressor in the series, the Stoic Suppressor3\'s heavy duty design reduces noise and recoil, while tightening shot spread.'), +(3351,'Seat','Usable','UNDEFINED','f166358e-34fe-4b81-9c4d-b2604c08c393','','',NULL), +(3352,'Sinkhole Backpack','Armor','Backpack','4a8738c7-c9dc-4e35-b8d6-05ed5c891812','','','Item Type: Medium Backpack\nCarrying Capacity: 105K µSCU\nCore Compatibility: Medium & Heavy\n\nStop lugging all your loot by hand. The Sinkhole backpack gives you plenty of space to store everything you need, while leaving your hands free for whatever mischief you have in mind.'), +(3353,'Door Control','Door','UNDEFINED','5c36f7ba-d33f-45cd-9a7f-1acba005a57c','','',NULL), +(3354,'Cargo_Comm_125x3_Metal_Gold_a','Cargo','Cargo','3a3f1f3a-b89a-428e-9ad8-73b49c588098','','',NULL), +(3355,'Flight Blade','FlightController','UNDEFINED','8b00b27b-32e2-446f-b6b4-4436f266bab5','','',NULL), +(3356,'Aegis Gemini Missile Launcher','MissileLauncher','MissileRack','173f3798-f260-4629-a559-0acfbcf9d60a','','','Aegis Gemini Missile Launcher'), +(3357,'MISC_Hull_C_Thruster_VTOL_Front','ManneuverThruster','JointThruster','79635050-10df-4637-9533-ba8be044d5be','','',NULL), +(3358,'ARGO_RAFT_CargoGrid_192','CargoGrid','UNDEFINED','90b012ac-f963-4023-92da-f4389a0fd497','','',NULL), +(3359,'Ventra Gloves Imperial','Char_Clothing_Hands','UNDEFINED','bf71167b-debd-4252-96de-0c24ccdd6acd','','','Keep your hands warm and dry with Fiore\'s Ventra gloves. Microstitching creates a snug, tailored fit to keep you looking stylish and warm.'), +(3360,'Geist Armor Legs Forest','Armor','Legs','ea4937fb-b502-41fd-83de-b967e99a6007','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(3361,'rack_wood_1_highend_b_rod_shoe_6Ports','ShopDisplay','Default','b9934649-371f-4fe1-b120-5d58ae5d9719','','',NULL), +(3362,'Fieldsbury Dark Bear Helmet Grape','Armor','Helmet','cd23a5c4-f027-4a49-baf4-40993a6b13ff','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -40 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nCelebrate Day of the Vara in sinister style with this officially licensed Fieldsbury Dark Bear helmet. This twisted version of the Fieldsbury Bear mascot launched a seasonal soda flavor before being co-opted into a series of high-profile pranks. Ever since, the bear\'s big, toothy grin and off-set flickering eyes have become a standard sight at Day of the Vara celebrations. Now CC\'s Conversions has designed and delivered an official, high quality reproduction of this iconic mascot, available in six striking colors.'), +(3363,'Arrow Citizens for Prosperity Liberation Livery','Paints','UNDEFINED','7ceb996f-a110-48c4-90b9-6a93741f4cd4','','','Be a beacon of hope by equipping the Citizens for Prosperity Liberation livery, which features the group\'s name and symbol atop a green, black, and grey paint job.'), +(3364,'Seat','SeatAccess','UNDEFINED','638a02bd-1047-4fbb-ad9c-f9a4cb2c8c51','','',NULL), +(3365,'Bo-Go (Langoustine and Lamb)','Food','Tin','a18d85c0-4dc6-439a-a5c9-5b62b8e1c022','','','NDR: 30\nEffects: None\n\nCroshaw’s signature meat and seafood stew is now available the Empire over! \'Langoustine and Lamb\' flavor combines succulent langoustine tail meat with rich and hearty pieces of lamb in a lighter sauce that highlights them both.'), +(3366,'Access','SeatAccess','UNDEFINED','16170188-4882-4a2b-add1-925d540cbe05','','',NULL), +(3367,'Anvil Hornet Mk II S2 Nose Turret','Turret','CanardTurret','8b896a16-2f1f-4c1a-9a91-cad86863004d','','','Item Type: Turret\nManufacturer: Anvil Aerospace\nSize: 2\n \nThis nose turret was designed specifically for Anvil\'s F7C Hornet Mk II to allow for mounting two S2 weapons and precision target tracking.'), +(3368,'Guerra Pants Daylight','Char_Clothing_Legs','UNDEFINED','4944bb64-99d0-42e1-b735-bc24948f23d7','','','The Guerra pants by Alejo Brothers are a staple for daily wear. The synthetic fabric ensures adequate protection from the general wear and tear of frontier life while remaining easy to patch up if the need arises.'), +(3369,'Titanium','Cargo','Cargo','90db1341-f302-43a0-b597-0986fa554585','','',NULL), +(3370,'INTK_DRAK_Golem','FuelIntake','Fuel','785e25e4-8933-4176-9f3f-61c29129d22a','','',NULL), +(3371,'Weapon_Rack_GRIN_STV_1Slot_Right','Usable','UNDEFINED','930572f8-5cdf-4b81-95fc-e3684ca00e51','','',NULL), +(3372,'Venture Helmet Purple','Armor','Helmet','38438c64-646a-4555-8beb-8f82c437a81c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover.'), +(3373,'Armor_Crate_CZ_Firerat_006','Usable','UNDEFINED','e0130be4-aa25-47c9-84e5-6cfadc86a31a','','',NULL), +(3374,'Buccaneer Stormbringer Livery','Paints','UNDEFINED','3c68a192-6518-4c6b-959a-a247e987935f','','','Celebrate the 2951 IAE with this custom Buccaneer livery. Blending blue and black with white accents, the paint scheme gives the ship an electric new look.'), +(3375,'LoadingPlatformFrontGate','Door','UNDEFINED','323fe170-8a3d-4d27-9b0f-6ab46345ba04','','',NULL), +(3376,'PIN','Shield','UNDEFINED','ffede9a8-3c50-4b9e-be0f-9d93e5a26f29','','','Item Type: Shield Generator\nManufacturer: Seal Corporation\nSize: 0\nGrade: C\nClass: Civilian\n\nWith the PIN vehicle shield generator you can now trust Seal Corp to protect you whether you’re in space or atmosphere.'), +(3377,'Terrapin IceBreak Livery','Paints','UNDEFINED','53740116-8e1e-44eb-9e61-8b9f28bb35a5','','','Equip your Terrapin with a paint scheme cooler than a snow storm. The IceBreak livery mixes crisp, cool white with a frostbitten blue for an exciting look suitable for any season.'), +(3378,'Zenith \"Golden Blossom\" Laser Sniper Rifle','Weapon','Medium','e6d3ccde-1a9d-4a10-965a-202982afc778','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Sniper Rifle\nClass: Energy (Laser)\n\nBattery Size: 22\nRate of Fire: 60-300 rpm\nEffective Range: 80 m\n\nAttachments: Optics (S3), Underbarrel (S2)\n\nThe Zenith Laser Sniper Rifle from VOLT offers operational flexibility on the battlefield as it can fire lower-energy shots rapidly, or be allowed time to automatically charge to fire a much more powerful energy blast that also generates significantly more noise and heat.\n\nThe Golden Blossom version is mostly black, embelished with intricate golden flowers, giving your enemies one final glimpse of life before death.'), +(3379,'Combat Readiness Uniform Trousers','Char_Clothing_Legs','UNDEFINED','8f4d11af-2fd3-4c66-a36a-041caa2db90c','','','Made to military specification, the Combat Readiness Uniform pants are made from tough nylon synthetics to make them durable and comfortable enough for any kind of field operations. They also feature several multi-stitched pouches to keep small items secure, but accessible.'), +(3380,'Carryable_1H_SQ_MissionItem_Delivery_SmallBox','Misc','Utility','d756b02a-4843-4425-9ec4-41400817e966','','',NULL), +(3381,'Seat','Usable','UNDEFINED','9f4ad98e-50f2-450b-8a3d-0d463d481550','','',NULL), +(3382,'DuraWork Pants Bayoux','Char_Clothing_Legs','UNDEFINED','fdad9109-5abe-4ca2-8491-27c92b5bb129','','','Carrying Capacity: 2000 µSCU\n\nMade of a durable synthetic material, Stegman\'s designed the DuraWork to provide a comfortable and reliable clothing option to workers around the \'verse.'), +(3383,'Food_hotdog_01_bun_a','Food','Junk','7dc83e52-3c71-421c-8fa8-b0e51c6299a3','','',NULL), +(3384,'CRUS_Starlifter_Door_Decal_Recreation','Decal','DoorPart','ba5d9a5e-7e43-4103-be5f-1a591a4104cb','','',NULL), +(3385,'Ripper \"Sunblock\" SMG','Weapon','Medium','4c1892db-cc94-41f2-a513-0b7e1cba8f26','','','Manufacturer: Unknown\nItem Type: SMG\nClass: Energy (Laser)\n\nBattery Size: 60\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nScrapped together from whatever parts and pieces were available, the Ripper SMG can probably do enough damage to get you out of a tight spot. Just be ready for things to get messy. The Sunblock edition feature a yellow finish.'), +(3386,'Door_Ship_Sensor_Proximity_RN','Sensor','DoorPart','ea077b93-ff3b-4f23-b93f-cf28ceb2d70b','','',NULL), +(3387,'Internal Tank','FuelTank','Fuel','abaac1d0-234e-4a5a-b3eb-6664604f025e','','',NULL), +(3388,'F1S-Fireshot','Suit','ThrusterPack','d82e2c4a-f2f2-4c06-b577-e2842e2f3585','','','Designed to attach to most light combat armor sets, the Fireshot is an EVA upgrade system that provides added control in vacuum while the understated components maintain your profile, so you don\'t sacrifice mobility or combat effectiveness.'), +(3389,'AEGS_Javelin_Thruster_Main_01_Invulnerable','MainThruster','FixedThruster','0d6af72c-cd83-41ae-b017-a70bcf7581ea','','',NULL), +(3390,'Seat','SeatAccess','UNDEFINED','5a234d74-5ffa-47eb-9fe3-d757a622662d','','',NULL), +(3391,'Morozov-SH-S Helmet Iceflow','Armor','Helmet','d1648563-e1a3-4642-9f53-f8f2b263afda','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -97 / 121 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(3392,'ANVL_Hornet_F7CM_Mk2_Thruster_Mav_1_Top','ManneuverThruster','JointThruster','f6f637a9-cb16-48f0-a24e-c9fd92047267','','',NULL), +(3393,'Morozov-SH Helmet Redshift','Armor','Helmet','75a9f76a-0cb1-4a25-acda-263aad0deb5e','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -97 / 121 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(3394,'INTK_FuelIntake_CRUS_Intrepid','FuelIntake','Fuel','f5752e45-8770-44ca-9587-ba58f823e069','','',NULL), +(3395,'ANVL_Lightning_RADR_Display','Display','UNDEFINED','48651dee-12d8-41a3-a14b-84cce21dd5bf','','',NULL), +(3396,'Seat','Usable','UNDEFINED','8cb87b08-4902-451f-9c0e-17dcde88bc47','','',NULL), +(3397,'RSI_Perseus_SeatAccess_Turret_Top','SeatAccess','UNDEFINED','6f77da58-fe14-4d22-9d6d-c9eaef07ffbc','','',NULL), +(3398,'LeMarque Pants Violet','Char_Clothing_Legs','UNDEFINED','4b6c615e-f196-476b-9639-580430587af0','','','Carrying Capacity: 0.5K µSCU\n\nClassic cuts never go out of style. A staple of any wardrobe, Derion\'s LeMarque are built for work or play and feature microseam pleats and wrinkle-free material that will guarantee that you\'ll get years out of this classic.\n\nWomen\'s sizes currently out of stock.'), +(3399,'AEGS_Retaliator_Esc_Pod_Decal_05','Decal','DoorPart','681cbe0a-3d56-4690-a9c9-27b5570e7f49','','',NULL), +(3400,'Beradom','Cargo','Cargo','6e11d75e-70c4-408a-9aff-eb2af5d9317e','','','Formed when sap from the Beraber Fir is crystalized during forest fires, this transparent deep blue \"gemstone\" is often polished smooth and used in jewelry. While it can be manufactured by growing trees and then doing a controlled burn, the time investment for the trees to reach the proper maturity still make this a rare commodity.'), +(3401,'Door Control','ControlPanel','DoorPart','75ad72ca-6716-42af-9009-8056d147a310','','',NULL), +(3402,'BEHR_LaserCannon_FiringMechanism_S2','WeaponAttachment','FiringMechanism','a8af051f-f2ca-457c-9276-bb0438ba8d5f','','',NULL), +(3403,'Marshal Sleeveless Vest Horizon','Char_Clothing_Torso_1','UNDEFINED','5f9f69de-7e80-49e0-99e5-91d462bea6e0','','','The durable Marshal sleeveless vest by Alejo Brothers is made to endure life on the frontier while distinct stylings like shoulder straps, bold cross-chest placket, and a high-collar make sure the wearer stands out on any far flung world.'), +(3404,'C54 \"Luminalia\" SMG','Weapon','Medium','1b652f9f-812b-4bb5-827a-aa96f41160ab','','','Manufacturer: Gemini\nItem Type: SMG\nClass: Ballistic\n\nMagazine Size: 50\nRate Of Fire: 1,100 rpm\nEffective Range: 35m\n\nAttachments: Barrel (S1), Optics (S1), Underbarrel (S1)\n\nEasy to handle and a beauty to behold, the C54 is a sleek and precisely balanced SMG from Gemini. Its lightweight polymer frame and ergonomic design makes it ideal for close quarter engagements. The C54 is capable of firing 10mm rounds on full auto to provide maximum support and target saturation to ensure that any engagement ends quick. The Luminalia edition sports a festive red and green design.'), +(3405,'Gadget_Cabinet_kegr_fire_extinguisher_01_nogeo_med_high','Usable','UNDEFINED','d5873764-99da-4acb-a3c4-b666e10108e6','','',NULL), +(3406,'Ermer Family Farms Chocolate Ice Cream','Food','Junk','ff44929e-c067-4a2d-95cf-41809d61dde0','','','NDR: 10\nEffects: Energizing, Hyper-Metabolic\n\nThis premium 100% real dairy ice cream blended with rich creamy chocolate is handcrafted by the skilled artisans at Ermer Family Farms.'), +(3407,'Silverton Jacket Onyx','Char_Clothing_Torso_1','UNDEFINED','d48cdbef-41da-48e5-bd8b-4323216b6e2e','','','Carrying Capacity: 1K µSCU\n\nWhen you\'re on the frontier, you need reliable clothing that won\'t fray when the going gets tough. That\'s why DMC made the Silverton jacket with double-stitched, element-resistant leather and plenty of roomy pockets so you can keep your supplies on hand. With the Silverton, you\'ll be prepared for anything.'), +(3408,'Clempt Pants Blue','Char_Clothing_Legs','UNDEFINED','3127a95b-ab41-4048-a80a-2dd9fdf9edc2','','','Carrying Capacity: 2K µSCU\n\nStegman\'s factory pants have been taken to the next level with the Clempt line. These rugged all-purpose pants come with double knees for extra comfort and protection and are made from tough composite weave fabric to last as long as the work needs.'), +(3409,'SCItemDisplayScreen_ScreenSize_W64_H36_H74_Transit','Display','Default','482b82ee-29c6-4d1d-b778-7f757a208b62','','',NULL), +(3410,'Door','Door','UNDEFINED','79bdaef0-0b27-45c2-a499-519afa2896a2','','',NULL), +(3411,'Seat','SeatAccess','UNDEFINED','32136dce-22e5-41cd-ad9c-f57da9882e20','','',NULL), +(3412,'Door Control','Door','UNDEFINED','08476dae-4a57-4013-9bff-d9ab374a2654','','',NULL), +(3413,'AEGS_Avenger_Thruster_Retro','ManneuverThruster','JointThruster','0b7228f7-7d92-4943-a898-8716946da280','','',NULL), +(3414,'Corundum','Cargo','Cargo','c2f21883-b2db-4e47-8301-474554bc2871','','',NULL), +(3415,'Door Control','Door','UNDEFINED','57b335f8-40b6-4621-b96c-7c8e49b5a6a8','','',NULL), +(3416,'ORIG_100i_Thruster_Retro_Left','ManneuverThruster','JointThruster','61ed4215-bb03-47cc-979f-e1bc7951f204','','',NULL), +(3417,'Seat','Usable','UNDEFINED','5c97679e-eaa6-418e-bdc8-d43048fceb1a','','',NULL), +(3418,'Bed','Seat','UNDEFINED','c0e9ba8d-6ee6-4f12-b61b-d209f89e994c','','',NULL), +(3419,'Bottle','Misc','UNDEFINED','096adc5a-50b6-4485-bb91-42b6ebe4f754','','',NULL), +(3420,'INTK_RSI_Salvation','FuelIntake','Fuel','aa42257e-ae13-4024-8846-79242568a2b7','','',NULL), +(3421,'Flight Blade','FlightController','UNDEFINED','3cb0e1b3-04fe-4083-a9fd-5b91447ddaa9','','',NULL), +(3422,'Remote Turret','Turret','GunTurret','4aacb927-f8b9-4769-bff3-af16c25e9e4b','','','Remote Turret'), +(3423,'Seat','Usable','UNDEFINED','b5a17f3d-4254-4855-afdf-7ddc29dad9c6','','',NULL), +(3424,'Ouratite','Cargo','Cargo','2a7b989c-7111-4d1a-a932-169197adc02a','','',NULL), +(3425,'Golem Rockfall Livery','Paints','UNDEFINED','986fa034-1259-43b9-9244-75c2509c8a0d','','','The Rockfall livery blends green and grey earth tones with black to give the Golem a look fitting for a ship made to rip apart rocks.'), +(3426,'ARGO_SRV_Thruster_Mav','ManneuverThruster','UNDEFINED','4e9f70e0-2b80-4c8f-b826-47854b896f40','','',NULL), +(3427,'shelf_02_b_01x007x00375_1ports','ShopDisplay','Default','c582cf0a-ae35-47b9-99ab-d7257b29ac5c','','',NULL), +(3428,'Blue Bilva','Misc','Harvestable','e07a1429-28df-43bf-be7f-959bca939ef1','','','NDR: 23\nHEI: 10\nEffects: Hydrating, Energizing\n\nThe Blue Bilva is known for its distinctive rich flavor; which is highly astringent, aromatic and very high in fructose. The fruit can also be identified by its slightly pointed, ovoid shape, and dark blue to indigo skin. The fibrous flesh of the bilva clings firmly to its large stone which is so hard that it can only be cracked through mechanical means. It takes about 11 months to ripen on the tree. It is commonly eaten dried or turned into brandy.'), +(3429,'WarmingSpot_FireBarrel','Usable','UNDEFINED','38033c16-9047-46b4-a678-2d8ad56b8f00','','',NULL), +(3430,'TrueDef-Pro Core Black/Silver/Yellow','Armor','Torso','4f74af9f-c629-4ee8-adcd-2baf969bb93d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(3431,'AEGS_Avenger_Titan_Thruster_Retro','ManneuverThruster','JointThruster','2b89db9d-c300-4245-be4c-7e7b4861232d','','',NULL), +(3432,'Parallax \"Fun Military Skull\" Energy Assault Rifle','Weapon','Medium','c384575f-a3f8-4a1d-84a4-1fe467093004','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Assault Rifle\nClass: Energy (Electron)\n\nBattery Size: 80\nRate of Fire: 200 rpm - Beam\nEffective Range: 30 m\n\nAttachments: Optics (S2), Underbarrel (S2)\n\nWith the Parallax, VOLT offers consumers a rugged assault rifle design with features like a larger-than-average battery and a unique actuator that enables the weapon to scale up into a persistent beam as it fires.\n\nThis modified version of the original rifle consists of a lunar surface inspired camo pattern and a small kopion fang strapped to the muzzle.'), +(3433,'display_ship_components_02x0075x0275_a_s0_coolers','ShopDisplay','UNDEFINED','3875999c-0864-40c2-935e-7d28efb8538e','','',NULL), +(3434,'Gold','Cargo','Cargo','afa3cd14-e1d1-4490-a21b-76bf4a2fa110','','',NULL), +(3435,'Starlancer Atlantic Livery','Paints','UNDEFINED','30d459d6-7df9-43ef-9dbe-83df97d90bb0','','','Become one with the sky with the Atlantic livery for the Starlancer, which is dark blue with ribbons of yellow.'), +(3436,'Leyland\'s Tortoise','Misc','Harvestable','0e19caaa-44b9-4708-a86e-e4301ecdd0f8','','','Leyland’s tortoise is a species of tortoise indigenous to Earth (Sol III). Extremely docile, they are kept as pets by Humans, especially long-haul spacers. Over-collection and habitat destruction have made them nearly extinct in the wild.'), +(3437,'Salvo Frag Pistol Magazine (8 cap)','WeaponAttachment','Magazine','aa9edf82-8a45-4088-b5de-14c646252f79','','','Item Type: Magazine\nCapacity: 8\n\nThis magazine for the Salvo Frag Pistol holds eight .50 caliber rounds.'), +(3438,'P4-AR Rifle','Weapon','Medium','02d4cd2e-fa98-4086-aee1-6b2dfce8ea27','','','Manufacturer: Behring\nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 40\nRate Of Fire: 550 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nBehring\'s classic P4-AR rifle features a collapsible stock and shortened barrel, making it an ideal choice for close-quarter firefights. Its accuracy and general ease of use make it universally valued among security, military and civilian users.'), +(3439,'Weapon Rack','Door','UNDEFINED','1a4f6556-5aac-4fed-b06d-a4f5a5caa0c8','','',NULL), +(3440,'Davin Work Gloves Tan','Char_Clothing_Hands','UNDEFINED','1db2bfce-918b-4e66-b9d5-8819d2003128','','','Field-tested for over fifty years, you can find Davin work gloves at numerous sites and ships around the Empire. Stegman\'s rugged construction and comfort lining have made them a customer favorite.'), +(3441,'Seat','Usable','UNDEFINED','7aecfe25-f734-4f3f-ab64-0a24aebbba0d','','',NULL), +(3442,'Flair_Hologram_ShatteredBlade_Banner_1_a','Usable','UNDEFINED','01302206-2ec9-4843-9914-ced444b13249','','',NULL), +(3443,'m_teeth_vlk_adult','Char_Accessory_Head','Vanduul','d0471700-1d79-4cee-880c-133a86972c7e','','',NULL), +(3444,'BroadSpec','Radar','MidRangeRadar','42fb9080-c177-466a-b843-d3f0e82e1633','','','Item Type: Radar\nManufacturer: Chimera Communications\nSize: 2\nGrade: B\nClass: Industrial\n\nThe Chimera Communications BroadSpec radar has an important job to do and does it well, detecting a wide range of emissions and signatures with a dependability you can count on.'), +(3445,'Murray Cup Racing Helmet','Armor','Helmet','74303c6a-d9f3-4249-996a-775aa918f3ad','','','Item Type: Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThe Murray Cup racing helmet was made to match the flight suit of the same name. Neon yellow, blue, and packed full of logos from official race sponsors, the helmet is both lightweight and supremely comfortable.'), +(3446,'Carryable_1H_SQ_Datapad_Fluff_Orb_GenericGang_003','Misc','UNDEFINED','9b8d6f07-8eb2-4760-a62f-72b363169aec','','',NULL), +(3447,'Bengal_BallisticCannon_FiringMechanism_S7','WeaponAttachment','FiringMechanism','443d5e57-bc52-49a0-872e-e81f664b7be1','','',NULL), +(3448,'Seat','SeatAccess','UNDEFINED','9650cfaa-1af6-40e4-bce1-709e58931f03','','',NULL), +(3449,'Borase','Cargo','Cargo','52e2772a-2e58-4055-b497-a134a63e5e89','','',NULL), +(3450,'Seat','Usable','UNDEFINED','e170cdbc-298b-4677-a1d5-20f84a18a58c','','',NULL), +(3451,'Venture Helmet Dark Red','Armor','Helmet','9ecd35a4-6866-4f3e-81a9-a6bbd52f08d7','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover.'), +(3452,'Artimex Legs Lodestone','Armor','Legs','559b8809-100e-4d9c-852d-ff40b9503939','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.'), +(3453,'VCK-1 Blade','Weapon','Knife','dc9d5f24-013f-4925-b06d-4a4102956e69','','','Manufacturer: UltiFlex\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nRenowned as Humanity\'s fiercest enemy, the weapons wielded by the Vanduul are some of the most feared in the universe. Taking inspiration from those brutal knives, the VCK-1 from UltiFlex features a split blade, ceremonial detailing, and has been finished with a unique patina that closely resembles the Vanduul\'s own bespoke alloys.'), +(3454,'Fotia Seedpod','Cargo','Cargo','9faad8e9-3489-4a64-9bb3-1cc36259142b','','',NULL), +(3455,'DRAK_Golem_Thruster_Front_Retro','ManneuverThruster','Retro','82708ed8-2128-4d35-bbcc-7b7cadbd1dbc','','',NULL), +(3456,'Torite (Ore)','Cargo','Cargo','06263712-d90a-494d-a9ca-502d507826ab','','',NULL), +(3457,'One Light Shirt Teal','Char_Clothing_Torso_0','UNDEFINED','d58002fa-7cb6-4af2-93d1-e9e1327eaef3','','','During Luminalia, we\'re all one family. Celebrate with your loved ones in immense joy with this festive shirt from City Lights, crafted with high-quality, ultra soft fabric that\'s made to last.'), +(3458,'Lynx Arms Bloodstorm','Armor','Arms','faf830ac-82ec-438e-ba21-7c85a292c788','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(3459,'Dragonfly Slipstream Livery','Paints','UNDEFINED','0d6a92c6-f6b7-4b40-ae26-f4050dc2c651','','','The Slipstream livery will have your Dragonfly ready and raring to race with this sleek blue and white paint scheme.'), +(3460,'ARMR_AEGS_Vanguard_Hoplite','Armor','Medium','443252d0-295e-40b3-9502-b5ebe166d809','','',NULL), +(3461,'facial_hair_010','Char_Head_Beard','UNDEFINED','184e3d83-9a08-4a6a-afd0-311836cc760e','','',NULL), +(3462,'DRAK_Cutter_Roof_Scout','Misc','UNDEFINED','a2d770d8-10e0-4d6e-bf11-7a74bdc0a6d5','','',NULL), +(3463,'Allpa Pants Brown','Char_Clothing_Legs','UNDEFINED','6d0a9de6-5b40-461c-8221-b4358594befc','','','Carrying Capacity: 400 µSCU\n\nIf you\'re in the adventure business, you\'ll need clothing that can take the heat. The Allpa Pants were made with heavyweight cotton that features AlejoFlex technology, providing the wearer with a wide range of movement during tough jobs while maintaining its durability.'), +(3464,'Railing_Straight_6m_Hurston_Lorville_Glass_A','Usable','UNDEFINED','9779a0cd-e7d4-472d-87e1-fb146a4ffbed','','',NULL), +(3465,'DRAK_Cutter_Thruster_Mav_Fixed_Bottom','ManneuverThruster','FixedThruster','e6fbff12-2b58-473e-beb2-c51c53a72228','','',NULL), +(3466,'tool_power_1_torch_a','Misc','UNDEFINED','bc275b6c-7b6f-4a50-8134-17fdc9f1a51a','','',NULL), +(3467,'TrueDef-Pro Legs Yellow/Grey','Armor','Legs','af9650d0-2688-4118-992f-224d511c005b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.\"'), +(3468,'Drink_bottle_radegast_01_a','Drink','Bottle','5580c09e-37f0-4f06-a85b-b610c72b5b7b','','',NULL), +(3469,'Scrap','Cargo','Cargo','f021d4d1-795d-48ff-b627-dd9b838d436b','','',NULL), +(3470,'Quartz','Cargo','Cargo','c1a66029-7e8d-4209-8e9e-e54a0902ef08','','',NULL), +(3471,'Carryable_2H_CY_toy_volleyball_1_b','Misc','UNDEFINED','cfffffeb-ebe2-466a-a185-1d919ec27ac5','','',NULL), +(3472,'Vehicle_Screen_MFD_Holographic_Nox_R','Display','UNDEFINED','06734348-3908-4f81-9952-8d3964e73934','','',NULL), +(3473,'Diluthermex','Cargo','Cargo','c6da94df-346e-4d03-a9dc-5e93251bab49','','','An extremely heat resistant epoxy often used in the mounting and repair of ship thrusters. It is considered very difficult to transport in its uncured state as it becomes explosively unstable when exposed to Chan-Eisen fields during quantum travel. Specialized containers must be used to safely transport the epoxy long distances. Once set and cured, the Diluthermex is no longer reactive.'), +(3474,'Seat','Usable','UNDEFINED','76ec7e70-38d2-4432-b75f-b9aa9de79c94','','',NULL), +(3475,'H_Dashboard_Projector_HUD_ORIG_600i','Display','UNDEFINED','4bddbe4b-021b-44b1-8ccb-2cc288be3515','','',NULL), +(3476,'Ursa Aja Livery','Paints','UNDEFINED','1705a08b-b6d5-44ad-8265-8671d12fe3c0','','','Inspired by the hue of a medicinal plant found on Terra, the Aja livery for the Ursa is dark blue with white and grey highlights.'), +(3477,'AEGS_Retaliator_Thruster_Main_Right','MainThruster','FixedThruster','398db9a9-8b8a-47d1-8503-2879fc4b3a1e','','',NULL), +(3478,'ADP Legs Imperial','Armor','Legs','85318886-74c4-484f-80ad-7482d4cea1a1','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(3479,'Door Control','ControlPanel','DoorPart','66c1caa0-3987-457a-9ed9-f81b76067a03','','',NULL), +(3480,'Testudo Legs Clanguard','Armor','Legs','d9602c31-f133-44bc-a749-3e6bf77c5815','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4K µSCU\n\nThe Testudo armor for Quirinus Tech blends battlefield durability with everyday comfort. It weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort. The Clanguard version has been modified with Vanduul materials and alien artifacts.'), +(3481,'Bed','Usable','UNDEFINED','af309cef-66a1-4447-a2d9-beb5fc1ce318','','',NULL), +(3482,'Internal Tank','QuantumFuelTank','QuantumFuel','7ac2f7af-10bb-4cec-ab79-7965874b0c4f','','',NULL), +(3483,'Maintenance_Workzone_MiddleDown_Inspect','Usable','UNDEFINED','753d38e7-2c85-48f2-b2f8-77288b063006','','',NULL), +(3484,'Ares Star Fighter Flint Livery','Paints','UNDEFINED','d2a71f8e-c7bf-4db0-b87b-beb2867e8ed5','','','Cut through the clouds with the Flint livery for the Ares Star Fighter. The livery uses several shades of grey and dark blue accent lines to give the ship its sharp look.'), +(3485,'RSI_Polaris_SCItem_SeatAccess_Turret_Side_Left','SeatAccess','UNDEFINED','a13d1dd6-dba7-47cd-9735-6f1effca3619','','',NULL), +(3486,'HG-15 Jaeger (1.5x Holographic)','WeaponAttachment','IronSight','73e2eda1-b0a5-46ba-ab12-cb170b3d0b84','','','Manufacturer: Klaus & Werner\nType: Holographic\nAttachment Point: Optic\nMagnification: 1.5x - 3x\nAim Time: +5%\nParallax: Low\nSize: 1\n\nHG-15 Jaeger\'s features a low power variable magnification providing flexibility when engaging hostiles at close and longer ranges.'), +(3487,'Weapon_Rack_1_KSAR_Shotgun_Energy_01_AmmoOnly_001','Usable','UNDEFINED','6a31110a-55b9-49c3-a827-75e1e7c78f9a','','',NULL), +(3488,'Tekaw Pants Tactical','Char_Clothing_Legs','UNDEFINED','f77ec3e0-bc04-4acc-9edc-dfb538101a7c','','','Carrying Capacity: 1K µSCU\n\nComfortable enough to wear all day yet designed to thrive under harsh conditions, the Tekaw pants are perfect whether you\'re on or off duty. Their stylish yet durable design includes a water-wicking coating and padded shins guards with wrappings that ensure a snug fit.'), +(3489,'m_human_mannequin_sandNomad_undersuit','ShopDisplay','UNDEFINED','8c1194d1-5b49-45b7-a33f-77bcc3a403b2','','',NULL), +(3490,'Leyland\'s Tortoise','Misc','Harvestable','a0a4e1f8-8c68-486f-b828-5b241d02337a','','','Leyland’s tortoise is a species of tortoise indigenous to Earth (Sol III). Extremely docile, they are kept as pets by Humans, especially long-haul spacers. Over-collection and habitat destruction have made them nearly extinct in the wild.'), +(3491,'Tipper Hat Ellroy\'s','Char_Clothing_Hat','UNDEFINED','b94eb351-72a8-40a3-b6d6-f65c09e2c73f','','','The Tipper hat from Stegman\'s features a pre-curved bill for comfortable wear from day one.'), +(3492,'XNAA_SanTokYai_SeatAccess_Pilot','SeatAccess','UNDEFINED','3bf4f175-ceb3-4f40-9032-28d3145ddbbe','','',NULL), +(3493,'Door Control','Door','UNDEFINED','6dde5d5a-5877-4a8b-a0b4-66170d3d4641','','',NULL), +(3494,'MissileRack_Medium','Usable','UNDEFINED','8b5bfacc-fce2-4e63-9e80-3e72dde5048b','','',NULL), +(3495,'Edgewear Pants White','Char_Clothing_Legs','UNDEFINED','81dbaf76-2972-4850-982a-d1966531795d','','','Carrying Capacity: 4K µSCU\n\nStegman\'s Edgewear utility clothes are made from reinforced nylon weaves and lined with temperature-rated quilted technology to provide you with a little extra protection while on the jobsite. Double knees, reinforced joint pads and extra pockets add comfort and durability to this field-tested and worker-approved clothing line.'), +(3496,'display_box_plastic_4_weapon_opened_005x010x0025_rundown_a_1Port','ShopDisplay','UNDEFINED','7e391e5f-a693-4537-a4c6-de4b1604786a','','',NULL), +(3497,'nonusable_col_tech_unit_1_a','Sensor','UNDEFINED','fba24e58-95d6-4a0d-92e4-0a1b98526933','','',NULL), +(3498,'GAMA_Syulen_Headlight_Left','Misc','UNDEFINED','1f4d6c00-8825-4b54-a251-7d92ef3e4b6a','','',NULL), +(3499,'Arclight \"Desert Shadow\" Pistol','Weapon','Small','258dda8b-e0f4-4313-8ab1-a25eeea974cf','','','Manufacturer: Klaus & Werner\nItem Type: Pistol\nClass: Energy (Laser)\n\nBattery Size: 30\nRate Of Fire: 300 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nA handheld laser made famous as Kyle Fenris’ sidearm on the hit vid show The Frontier, the Klaus & Werner Model II Arclight has become extremely popular on the civilian market. Despite its media appeal, the Model II offers a higher rate of fire than any of its ballistic counterparts. While that may diminish the weapon\'s stopping power, its power cell offers more than enough shots to finish the job.'), +(3500,'MRAI_Guardian_QI_Dashboard_Btn','Misc','UNDEFINED','df3af64e-d73e-4cf8-9035-8fd57a9cdbd8','','',NULL), +(3501,'f_human_mannequin_legacy_outlaw_heavy','ShopDisplay','UNDEFINED','e6daf81d-8cb1-4cbb-8809-432eb118b41e','','',NULL), +(3502,'Door Control','ControlPanel','DoorPart','82df0fee-d840-4c43-8194-32fd1101c965','','',NULL), +(3503,'Door Control','Door','UNDEFINED','e6e9df57-3ec0-48cd-8373-e37911d22728','','',NULL), +(3504,'SHIELDS','ShieldController','UNDEFINED','f65a9cd0-2627-4486-b5d7-163c77d6e8e4','','',NULL), +(3505,'Seat','SeatAccess','UNDEFINED','8fd98dfd-2dc7-4cda-8b76-58287ce2e581','','',NULL), +(3506,'Flight Blade','FlightController','UNDEFINED','50e32c1c-fae7-43e6-9a9f-3667f4ad3468','','',NULL), +(3507,'CRUS_Spirit_Thruster_VTOL_Main','MainThruster','UNDEFINED','97154f7f-3203-4480-8039-9773b9d65ac4','','',NULL), +(3508,'Hardline Hard Hat Black','Char_Clothing_Hat','UNDEFINED','196c4f6b-367e-4823-b346-9b54c3e38eab','','','Stegman\'s Hardline 7800 is the latest in a proud line of safety wear. The Hardline is constructed from the same high-density plastics used in some body armor.'), +(3509,'Kamar Jacket','Char_Clothing_Torso_1','UNDEFINED','16c9511b-cbcd-4ce5-887b-a0c5d2ec2777','','','Carrying Capacity: 1K µSCU\n\nThe Kamar is a modern update on a classic style featuring a truly unique design and silhouette. Centered around an ultra-soft velvet front panel, it features a fitted collar, wide pleated waistband, and bishop sleeves cinched by extra long cuffs. The result is a formal top that\'s bold yet timeless.'), +(3510,'Seat','SeatAccess','UNDEFINED','a080203b-0628-4640-b08d-e06ef5027321','','',NULL), +(3511,'Bed','Usable','UNDEFINED','eaef7bbb-6b8e-4065-aaf0-8e8bd1e7327e','','',NULL), +(3512,'Table_2_Seat_High_Lowtech_1_a_Eckhart','Usable','UNDEFINED','e6597cea-a356-4c63-af97-aeaa8c32465b','','',NULL), +(3513,'Cutlass T-Shirt','Char_Clothing_Torso_0','UNDEFINED','c054c520-2074-4278-a4fc-9399e8914dca','','','Don\'t judge a ship by its reputation. Show that pilots of all ilk love the Cutlass line of ships because of their versatility, affordability, and general bad-assery. The front of this black t-shirt features the iconic ship swooping before of the Drake logo and has the ship\'s name proudly displayed on the back.'), +(3514,'Counter_Food_HotDrinkDispenser_CoffeeShop','Misc','UNDEFINED','68c895a2-d88b-4aac-9800-fb5e4341fea7','','',NULL), +(3515,'DuraWork Pants','Char_Clothing_Legs','UNDEFINED','66e5bb04-35c5-454d-abeb-50efec6b9191','','','Carrying Capacity: 2000 µSCU\n\nMade of a durable synthetic material, Stegman\'s designed the DuraWork to provide a comfortable and reliable clothing option to workers around the \'verse.'), +(3516,'CRUS_Starlifter_CargoGrid_Personal_Large','Cargo','UNDEFINED','1681575c-d425-45d3-a697-d301d1139370','','',NULL), +(3517,'Medical Bed','Usable','UNDEFINED','a56f848f-e860-4fd0-b5f2-c4e32d83b545','','',NULL), +(3518,'MISC_Fortune_Thruster_Main','MainThruster','FixedThruster','23002bfc-d1ad-4d48-83db-d3a0a9d70823','','',NULL), +(3519,'Oza','Cargo','Cargo','403a018a-1803-4044-acfe-36833e8abcd7','','',NULL), +(3520,'Monde Legs Delta Camo','Armor','Legs','61dab9b9-cabf-4dad-b5d5-c7306b056a56','','','tem Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints. \n\nThis edition features a brown, gray, and tan camo pattern with brass accents.'), +(3521,'Merguez Sandwich','Food','Junk','a1ebd3de-aa8d-46f6-a3c1-6a66737a4435','','','NDR: 41\nEffects: None\n\nCrunchy Bremen-style bread is topped with bright torshi liteh, pickled pink onions, and richly spiced lamb sausage. At Twyn\'s, it\'s what\'s inside that counts.'), +(3522,'ORIG_300i_Thruster_Mav_Fixed_01_Bottom','ManneuverThruster','FixedThruster','b650ba4b-a058-4e88-9fa5-6b1e7d638f67','','',NULL), +(3523,'Reynie QED','QuantumInterdictionGenerator','UNDEFINED','06cc3878-1310-4ada-9c7a-97feecb47fb4','','','Item Type: Quantum Enforcement Device\nManufacturer: Wei-Tek\nSize: 3\nGrade: C\nClass: Military\n\nThis combination Quantum Enforcement Device from Wei-Tek contains both a Quantum Snare for pulling crafts out of quantum travel and a Quantum Dampener for preventing the engaging of quantum drives. With the ability to catch and hold, the Reynie offers an ideal all-in-one solution for security personnel.'), +(3524,'AEGS_Door_Decal_ControlRm','Decal','DoorPart','0c1bca68-bb7f-4ad9-89f9-3933fbc5010c','','',NULL), +(3525,'DockingTube_Fuel_Ports_MRAI_Guardian','DockingCollar','UNDEFINED','c81af99c-3e24-49b2-9a9b-2cf9af40224a','','',NULL), +(3526,'SHIELDS','ShieldController','UNDEFINED','7d518e47-6565-4a4d-975f-d62ac929cbc4','','',NULL), +(3527,'Restored Pants Blue','Char_Clothing_Legs','UNDEFINED','9203bbf7-3b55-48c5-9a5b-e7e60bc0280e','','','Carrying Capacity: 1K µSCU\n\nThese pants may have seen better days, but they\'ve got a lot of life left in them yet. Years of use have made them more comfortable than the day they were purchased.'), +(3528,'AEGS_Door_Decal_Airlock_03','Decal','DoorPart','6a0f4f93-9d79-4a1b-96da-f1c700a62795','','',NULL), +(3529,'Access','SeatAccess','UNDEFINED','6f6e04ca-236d-47aa-9d97-9e1d427dcd74','','',NULL), +(3530,'Colonialism_Outpost_RN_Large_Ore_Extractor','Sensor','UNDEFINED','82ec88bf-650d-405d-9f56-e4ee569275e3','','',NULL), +(3531,'Carryable_2H_FL_crate_weapon_3_075x045x00375_c','Misc','UNDEFINED','d51a02b8-f1ce-4a66-ad75-9b057634af5b','','',NULL), +(3532,'Door Control','ControlPanel','DoorPart','db0be2cc-a9ce-4e02-967d-e361d6b1275c','','',NULL), +(3533,'TrueDef-Pro Legs Black/Silver','Armor','Legs','8e38d63c-a639-4976-abe6-0dc2b260ad06','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.\"'), +(3534,'SHIELDS','ShieldController','UNDEFINED','09889d9b-b69a-4865-b674-868a32377129','','',NULL), +(3535,'ESPR_BallisticCannon_PowerArray_S1','WeaponAttachment','PowerArray','fe5d8493-efe6-4b99-a196-bbf41195dd19','','',NULL), +(3536,'KRON_LaserCannon_Barrel_S3','WeaponAttachment','Barrel','9a0f26d5-f4c5-4c69-8b21-44334469a481','','',NULL), +(3537,'Clempt Pants Sienna','Char_Clothing_Legs','UNDEFINED','c8fc1bff-f6ae-4758-b7d1-361334e9e1c1','','','Carrying Capacity: 2K µSCU\n\nStegman\'s factory pants have been taken to the next level with the Clempt line. These rugged all-purpose pants come with double knees for extra comfort and protection and are made from tough composite weave fabric to last as long as the work needs.'), +(3538,'Government Cartography Agency Medal (Worn)','Misc','Trophy','0336cacb-2ff5-41a8-8ff7-511c2f35971e','','','This medal was awarded by United Planets of Earth (UPE) to members of the Government Cartography Agency who flew or supported missions involving the discovery, exploration, or scanning of new systems. It features a star woven with one large and three smaller interlocking circles that was the central symbol on the UPE flag. The aged ribbon and corroded metal has left this one in worn condition.'), +(3539,'Arden-SL Helmet Red Alert','Armor','Helmet','b20e69a0-5fe6-4d85-8ff7-2a2cb3b3efa9','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics. It also features a fully enclosed helmet with an integrated cowl. Visor is AR crosshair compatible.'), +(3540,'Weapon_Rack_1_GMNI_LMG_AmmoOnly_001','Usable','UNDEFINED','d51ac03f-770e-467b-af0d-f4b41516936f','','',NULL), +(3541,'Internal Tank','QuantumFuelTank','QuantumFuel','a3121e6c-dd70-4b4a-b158-935cf3d8fa9a','','',NULL), +(3542,'AEGS_Vanguard_Harbinger_Thruster_Main_02','MainThruster','FixedThruster','05a58687-abf0-44a9-8e7a-3247d95fb86d','','',NULL), +(3543,'Lillo Pants Dark Red','Char_Clothing_Legs','UNDEFINED','d87d68f4-d74a-4f2b-9d0e-185c8bc0f19f','','','Carrying Capacity: 0.5K µSCU\n\nThese slim cut pants from Fiore give you a tailored feel at a fraction of the cost. Built from space-age weaves, the Lillo are a low maintenance, high impact addition to your office wardrobe.'), +(3544,'AEGS_Javelin_SeatAccess_Pilot_Blocked','SeatAccess','UNDEFINED','c0fe2add-d381-4770-b709-36f5901a2607','','',NULL), +(3545,'Inquisitor Arms Green','Armor','Arms','ff0ae2cc-1f3b-472f-a2d7-ff0df50eae74','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(3546,'Balor HCH Helmet Sienna','Armor','Helmet','7431edb4-b0f1-4e2e-a42c-6a1fc05477a5','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. Visor is AR crosshair compatible.'), +(3547,'Laranite','Cargo','Cargo','1c095e44-208a-4924-aa68-5e9de3c6c0b0','','',NULL), +(3548,'fruit_alien_6_a','Misc','UNDEFINED','73a3ff52-70cc-4dde-897f-44e5f4e5619f','','',NULL), +(3549,'LowTechAirlockTerminalStatusScreen','StatusScreen','AirlockPart','e0835ef7-35c8-45c5-8bab-bd240456bb55','','',NULL), +(3550,'DRAK_Buccaneer_Thruster_Main','MainThruster','FixedThruster','38400533-b609-4dd1-8f7d-99646f666b3e','','',NULL), +(3551,'stand_shop_small_PowerPlant','ShopDisplay','UNDEFINED','b5332f7d-33f9-44d3-9e19-6f9ae5e08862','','',NULL), +(3552,'Curser T-Shirt','Char_Clothing_Torso_0','UNDEFINED','223fb006-5deb-4350-9de8-43f39e23c9a6','','','Be crass and comfortable with this swearing skull shirt from CBD made from 100% ring-spun cotton.\n\nWomen\'s sizes currently out of stock.'), +(3553,'fruit_alien_4_a','Misc','UNDEFINED','cc1b801e-0421-4e5c-b593-d577d262fe9a','','',NULL), +(3554,'TrueDef-Pro Arms Black/Pink/Purple','Armor','Arms','c9916420-1610-447f-8c6a-03d51f094408','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(3555,'fruit_alien_5_a','Misc','UNDEFINED','4ef93eef-6875-49ed-bc83-1b04d9aa2f04','','',NULL), +(3556,'fruit_alien_2_a','Misc','UNDEFINED','b7c6f7b5-5e0d-4056-b9bb-2746b9904f0e','','',NULL), +(3557,'fruit_alien_3_a','Misc','UNDEFINED','827c8fc6-dff5-4794-b6c9-514b8154b758','','',NULL), +(3558,'ORC-mkX Legs (XenoThreat)','Armor','Legs','29b8275f-edfc-45d0-8802-0580d1de3872','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nThis version of CDS\' ORC-mkX combat armor has been modified from its original form. The mark X is part of CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(3559,'Armory_WorkBench','AIModule','UNDEFINED','c4277145-6b1e-4ea4-b3d5-30255cb4db04','','',NULL), +(3560,'display_guns_02x01x01_2Ports','ShopDisplay','UNDEFINED','b7f6b8fb-d466-4815-b060-856ff1a5903f','','',NULL), +(3561,'ShipSelectorDisplay_Outposts','Display','UNDEFINED','4ae5a636-ab5a-427d-9e74-16c72e881b69','','',NULL), +(3562,'DustUp Arms Scorched','Armor','Arms','c84c935d-a85f-476a-9ea7-d72b0cf8d604','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -60 / 90 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe DustUp has your back if you’re looking to get into some trouble. The body plating is built off of the same CDS undersuit used by the UEE Marines, it adds reconstructed Omni-Role mkII pieces to give you solid protection against incoming fire, but the real gem is the modified helmet. That thing was built to withstand explosions, so it should totally protect you against some shots. The whole thing’s been reasonably tested against vacuum too, so you can feel free to EVA all you want without worrying about dying.'), +(3563,'LowTechAirlockExteriorStatusSign','StatusScreen','AirlockPart','dee6dcab-af6a-4466-a9b0-05accd8da52d','','',NULL), +(3564,'Savrilium','Cargo','Cargo','812ee08c-5df1-40e2-a0fa-31cc9a42a755','','',NULL), +(3565,'bautista_outfit_01','Char_Clothing_Torso_1','Male','99089462-5f46-4d56-9da1-c307e9fc51ec','','','@LOC_PLACEHOLDER'), +(3566,'Morningstar Helmet Seagreen','Armor','Helmet','f68200bd-c850-4d9d-b9fc-ef31ba272597','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(3567,'S71 \"Justified\" Rifle','Weapon','Medium','9e2aa597-8e3a-472e-926e-b1ba6acf32c5','','','Manufacturer: Gemini\nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 30\nRate Of Fire: 300 rpm / 900 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nWith the S71, Gemini designed an ergonomic assault rifle ideal for mid-range engagements. Chambered with a smaller caliber round than other weapons in its class, the S71 has become popular among private military professionals for its sleek aesthetics and precise accuracy. The \"Justified\" edition features a cool grey and bright red highlights.'), +(3568,'CBH-3 Helmet Cry-Astro Edition','Armor','Helmet','df7d2881-7962-4ebd-b68e-e23e57684a11','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. The Cry-Astro Edition was made specifically for the company. Visor is AR crosshair compatible.'), +(3569,'Aegis Gladius - Noise Launcher','WeaponDefensive','CountermeasureLauncher','3d7266a3-8ad9-4392-ae6d-1d4bb2c11b60','','','Aegis Gladius - Noise Launcher'), +(3570,'shelf_shoe_3_highend_a','ShopDisplay','Default','3d945bf4-9504-4971-b26f-4b388c638fef','','',NULL), +(3571,'Agricium (Ore)','Cargo','Cargo','d362827b-cf4a-498e-ae22-5ea3f02eff1a','','',NULL), +(3572,'Seat','Usable','UNDEFINED','9ffb09a1-84e1-4b47-bb5e-285e39d1a959','','',NULL), +(3573,'Oza','Misc','Harvestable','64269b5a-f8c7-4307-8cfa-e5db32e156ee','','','NDR: 09\nHEI: 07\nEffects: Hydrating\n\nA hybrid citrus first grown in Croshaw, it\'s hardiness, ease of transport, and juice yield has seen it rapidly spread across the Empire. It features thick, bumpy dark green skin, bright orange flesh ribbed with heavy pithing, and no seeds. \n\nTart, sweet and bitter, the taste of Oza often described as being a combination of all the other citrus types rolled into one fruit. Difficult to peel and fibrous, its pulp is not often eaten. Typically it is split open and sucked on, its flesh being discarded. It is also popularly used in many cocktail recipes.'), +(3574,'Ares Star Fighter Scrubland Camo Livery','Paints','UNDEFINED','a69882d3-021e-4dfe-90a9-f2297efd9737','','','Use the Scrubland Camo livery to outfit the Ares Star Fight in green camo. A classic and commanding look that\'s also ideal for excursions across forests and grasslands.'), +(3575,'Aslarite','Cargo','Cargo','dbfad77e-814a-4617-8f83-ff4bc828e63b','','',NULL), +(3576,'Clempt Pants Twilight','Char_Clothing_Legs','UNDEFINED','e77cb123-af48-45f2-8b0b-64ec3e867a2d','','','Carrying Capacity: 2K µSCU\n\nStegman\'s factory pants have been taken to the next level with the Clempt line. These rugged all-purpose pants come with double knees for extra comfort and protection and are made from tough composite weave fabric to last as long as the work needs.'), +(3577,'Herald Stormbringer Livery','Paints','UNDEFINED','d5f35092-e5fe-40fe-b080-03cdc38e6d5b','','','Celebrate the 2951 IAE with this custom Herald livery. Blending blue and black with white accents, the paint scheme gives the ship an electric new look.'), +(3578,'Seat','Usable','UNDEFINED','8d4f58f8-ea15-4390-889a-fd3d810e6e5f','','',NULL), +(3579,'Virus Cultures','Cargo','Cargo','0abbd0a3-9d53-44c9-9542-518ec4d3c212','','',NULL), +(3580,'Artimex Arms Lodestone','Armor','Arms','be146639-a34c-4280-89db-36e8a4d9f4da','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.'), +(3581,'SHIELDS','ShieldController','UNDEFINED','e742b290-9c3d-45b2-9e12-af11a96cda41','','',NULL), +(3582,'display_3guns_9scopes_04x01x01','ShopDisplay','UNDEFINED','0e49f320-e0cc-4c55-8d23-bb524b7c303c','','',NULL), +(3583,'Construction Pieces','Cargo','Cargo','98a1a5d8-7e75-4a6c-969d-ae2f886caa89','','','Can be processed at refineries into Construction Material.'), +(3584,'CNOU_Mustang_Thruster_Mav_Fixed_01_Down','ManneuverThruster','FixedThruster','7faaa7ac-4659-434b-89b9-3b83d14d0f2a','','',NULL), +(3585,'Lunes (Spiral Fruit)','Cargo','Cargo','dde7ddf8-e8c7-4c77-aeb0-40c0780cfb0c','','',NULL), +(3586,'Carryable_1H_CY_bottle_bar_14_mixer_c','Misc','UNDEFINED','3bc61a73-9cc3-463c-a249-67a267390275','','',NULL), +(3587,'Carryable_2H_FL_MissionItem_Organ_Harvesting_a','Misc','UNDEFINED','b65d0e61-ff41-4ea5-9916-e0c6a86509c7','','',NULL), +(3588,'Party Favors','Cargo','Cargo','55f4d0a1-95ef-45ca-a148-638143f9a3c6','','',NULL), +(3589,'Defiance Helmet Sunchaser','Armor','Helmet','fe8b684e-e215-444c-89eb-91414a2604c0','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Defiance features a fully enclosed battle helmet constructed with two layers of composite weaves underneath armor plating, providing you maximum protection against penetrating and concussive attacks. Visor is AR crosshair compatible.'), +(3590,'Morozov-CH Backpack Pyrotechnic','Armor','Backpack','7db071b7-1285-4cdf-ad28-13adc6e2192e','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nComfortably carry vital gear with the RRS Morozov-CH backpack. This softshell bag is made with an advanced duraweave that\'s lightweight yet ready for all manner of industrial work. It also features several easy to access pockets and a plethora of straps to keep supplies secure and tight to your back. The Pyrotechnic Amalgamated Edition was made specifically for the company\'s mining efforts in Pyro during the 26th century.'), +(3591,'MacFlex Legs Grey','Armor','Legs','bc7fbd95-c07c-42b0-ad49-8d8a8fd2382d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(3592,'Inquisitor Legs Black Steel','Armor','Legs','db1d1700-8ec0-43cf-9cfb-8bb68e191647','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(3593,'Flair_Dashboard_Bobblehead_01','Flair_Cockpit','Flair_Static','88b20684-0888-444f-a805-39113fb7f6a4','','',NULL), +(3594,'GPI_Relay_1slot_001_CZ_Degradation','Relay','UNDEFINED','a4938628-ccc1-4b8d-bad9-990dd4bff4c8','','',NULL), +(3595,'Captor QD','QuantumInterdictionGenerator','UNDEFINED','08f46049-5b2a-4b43-9055-16a6d090a41f','','','Item Type: Quantum Dampener\nManufacturer: RSI\nSize: 3\n\nDesigned by Roberts Space Industries in partnership with Mirai exclusively for the Guardian QI, the carefully crafted Captor Quantum Dampener generates a field that prevents quantum drive activation.'), +(3596,'Beryl','Cargo','Cargo','fa917cef-bd60-4181-884d-8dddbd45226e','','',NULL), +(3597,'Gale Head Cover Yellow','Char_Clothing_Hat','UNDEFINED','6569b675-955e-40ed-b431-371b1d3b3e62','','','Temp. Rating: -30 / 15 °C\n\nProtect your head from the wind and cold with the Gale. Code Blue Apparel paired a wide-view visor with a dynamic synthetic fabric to create an excellent thermal barrier to keep heat from escaping without sacrificing your visibility.'), +(3598,'Arden-SL Legs Coramor Edition \"Kismet\"','Armor','Legs','1711a48d-0c96-46e1-bfa7-17d1d55251f6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics. The special Kismet edition of this armor features black and pink coloration in honor of the ship Yuri Ilyin flew in the classic vid \'Coramor\' while he searched for his lost lover Corazon Tan.'), +(3599,'AEGS_Hammerhead_Side_Turret_Lighting','Room','UNDEFINED','be2fb35b-80ea-4baa-934c-fde6982ed111','','',NULL), +(3600,'Bed','SeatAccess','UNDEFINED','d5e59252-7dc4-4bcf-a97f-c3664003b68d','','',NULL), +(3601,'Methane','Cargo','Cargo','c312ea03-698d-4b43-b57d-0de92fbf50de','','',NULL), +(3602,'ORC-mkV Arms Imperial','Armor','Arms','4bc3c1c6-4a23-41d1-a4c0-9f40786d8631','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(3603,'AirlockTerminalTemplate','ControlPanel','AirlockPart','f81b3f70-fc7f-4ab7-8fc0-e340ba8cabc6','','',NULL), +(3604,'RSI_Aurora_GS_CL_Thruster_Mav_Joint','ManneuverThruster','JointThruster','b5c23001-879f-44b3-a360-c91d265c0ffb','','',NULL), +(3605,'Vanduul Noise Launcher','WeaponDefensive','CountermeasureLauncher','3787ba3c-d50d-48ec-8a35-b2ea620dc1d1','','','Vanduul Noise Launcher'), +(3606,'AEGS_Idris_SCItem_Dashboard_ATC_Right','SeatDashboard','UNDEFINED','32bec067-b696-4303-a98b-a8bd804cad05','','',NULL), +(3607,'Scaleweave Undersuit Whetstone','Armor','Undersuit','b2b59bdb-c646-4f39-a17b-fd596e12c038','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThis baseline undersuit from Kastak Arms offers complete protection seal from the elements and compatibility with multiple armor types.'), +(3608,'facial_hair_037','Char_Head_Beard','UNDEFINED','c3e3799d-916d-4294-9596-5514f82ebf3a','','',NULL), +(3609,'Door Control','ControlPanel','DoorPart','d06527ec-58c1-4160-bf71-a5964531dc48','','',NULL), +(3610,'Radar_Display_XNAA_Scout','Display','UNDEFINED','5ace978d-750d-47d4-9eb7-054bebd3b9a5','','',NULL), +(3611,'DockingTube_Fuel_Ports_ORIG_135c','DockingCollar','UNDEFINED','e57097f9-9d11-4e3f-963c-ed6fe062cbd8','','',NULL), +(3612,'K7 Pants Purple','Char_Clothing_Legs','UNDEFINED','055c3ff0-e24c-4d87-ab0d-274440b74be7','','','Carrying Capacity: 3K µSCU\n\nDMC\'s K7 are an all-purpose cargo pants. Four easy access pockets provide extra storage while the triple-stitched polymer weave fabric is designed to withstand all kinds of weather conditions.'), +(3613,'Venture Core Imperial','Armor','Torso','81008939-1c72-4f18-a5fb-4cd30416f4c2','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(3614,'ORIG_600i_Seat_Expl_Module_Right','Seat','UNDEFINED','23d63543-44df-4cba-8314-610ca9083416','','',NULL), +(3615,'Gladius Standard Flight Blade','FlightController','UNDEFINED','e77f778b-4931-4f99-b41c-097e17c065e8','','','Manufacturer: Aegis Dynamics\nType: Flight Blade\n\nThis is the standard issue flight blade for the Aegis Gladius.'), +(3616,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','272328f0-326f-4461-ad55-cb6ddb490795','','','Joker Defcon - Noise Launcher'), +(3617,'display_ship_components_03x0075x0275_a_coolers','ShopDisplay','UNDEFINED','ae4d67dc-9f3c-41ba-a94d-5bd72f6efb75','','',NULL), +(3618,'MISC_Razor_Dashboard_EX','SeatDashboard','UNDEFINED','f47637e6-41c3-4f5c-940d-c3737494b4eb','','',NULL), +(3619,'Door','Door','UNDEFINED','597db3b5-fb10-446a-a279-e2f3b7454c7e','','',NULL), +(3620,'IonWave','PowerPlant','Power','f27e87f6-5075-470f-83f3-358424a14e7c','','','Item Type: Power Plant\nManufacturer: Lightning Power Ltd.\nSize: 0\nGrade: B\nClass: Civilian\n\nThe IonWave vehicle power plant can help you confidently summit the heights of most peaks without overheating thanks to the incredible technology inside designed by the folks at Lightning Power Ltd.'), +(3621,'SHIELDS','ShieldController','UNDEFINED','b9a162dd-0537-46ae-a9f2-715b8b11114e','','',NULL), +(3622,'Treat Injuries','FPS_Consumable','MedPack','3f945a3e-8e82-43d3-b68d-8c3d47945685','','','Manufacturer: CureLife\nItem Type: Medical Consumable\n\nFrom the Empire’s most trusted medical company, the CureLife MedPen can rapidly dispense doses of the coagulant Hemozal during emergency situations to help relieve bleeding and improve a patient’s overall vitals. Use only as recommended.'), +(3623,'Prim Shoes Violet','Char_Clothing_Feet','UNDEFINED','d23be257-e6f2-41bb-a296-16c213bf8bc5','','','Professional yet casual, the Prim utilizes cutting-edge synthetic construction to provide maximum comfort and a shine that won\'t fade.'), +(3624,'fruit_plant_3_b_6003','Misc','UNDEFINED','527b67b2-b093-4965-bb64-bf6010e33243','','',NULL), +(3625,'fruit_plant_3_b_5003','Misc','UNDEFINED','24f83365-b980-422f-8371-994e227ea410','','',NULL), +(3626,'fruit_plant_3_b_4003','Misc','UNDEFINED','c9b50e59-db31-4160-bc01-77e7c53afae3','','',NULL), +(3627,'fruit_plant_3_b_3003','Misc','UNDEFINED','0976d8dc-593e-4b81-98f2-4e9daeda59b7','','',NULL), +(3628,'fruit_plant_3_b_2003','Misc','UNDEFINED','fcab3639-8579-4808-8d72-3adf08159ddb','','',NULL), +(3629,'Redfin Energy Modulators','Cargo','Cargo','aee33cdd-d218-4575-8010-8a32724c9851','','',NULL), +(3630,'Internal Tank','QuantumFuelTank','QuantumFuel','1c0c3456-0af0-450d-9d49-d030cc7dc602','','',NULL), +(3631,'ARGO_MPUV_Thruster_Aux_Side_Rear','ManneuverThruster','FixedThruster','cd725a73-e024-450a-8133-e2849e6aea56','','',NULL), +(3632,'ARGO_MOTH_CargoGrid','CargoGrid','UNDEFINED','82fdf75c-3f55-4565-a845-512d0347b41e','','',NULL), +(3633,'Internal Tank','FuelTank','Fuel','36831d5c-7d1c-4e18-bf58-3d2b2b582cf8','','',NULL), +(3634,'Carryable_1H_kitchenware_spoon_b','Misc','UNDEFINED','7a301f52-3313-4d9d-93c0-3cf57253f63c','','',NULL), +(3635,'Hornet F7A Ship Armor','Armor','Medium','1f3e5067-eb3f-43ee-b3b3-8d7ed80a84b2','','','Hornet F7A Ship Armor'), +(3636,'ARMR_CRUS_Starlifter','Armor','Medium','1ba52cfb-e162-48a5-bf90-a8b28b169507','','',NULL), +(3637,'Debnam Gloves Dark Green','Char_Clothing_Hands','UNDEFINED','b1a5da75-67bb-417f-85bd-7f97102afa68','','','Named after the influential Terran tailor, Debnam gloves incorporate that famous tailor\'s classic design to keep your hands comfortable in colder temperatures.'), +(3638,'SecurityTerminal_ANVL_Valkyrie','ControlPanel','DoorPart','3572b11a-1fa3-4937-ac8a-44091719084c','','',NULL), +(3639,'AEGS_Idris_SCItem_Dashboard_Brig','SeatDashboard','UNDEFINED','678cbb16-2340-42b4-b5d4-aa3d9bb9b2ab','','',NULL), +(3640,'Fury Black Star Livery','Paints','UNDEFINED','5fc8bdb8-c5d3-4d3e-a7db-e00f518d92a6','','','The Black Star livery gives the Fury a classic black finish with bold brand decals in silver.'), +(3641,'Tablet_Small','Weapon','Gadget','f8f38c51-c248-4cf7-aaa6-eb1a539019a1','','',NULL), +(3642,'display_guns_02x01x01_3Ports','ShopDisplay','UNDEFINED','25b50df5-b5cf-441b-8ab4-373175c4b27e','','',NULL), +(3643,'ANVL_Arrow_RADR_Display','Display','UNDEFINED','b997d0ab-4738-4eab-b243-90f4ee6f52f6','','',NULL), +(3644,'Pulse \"Greycat\" Laser Pistol','Weapon','Small','0fc8d058-2c9f-41c8-b0f3-5dc62718dea3','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Pistol\nClass: Energy (Laser)\n\nBattery Size: 60\nRate of Fire: 500 rpm (1000 rpm rapid)\nEffective Range: 15m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nThe Pulse Laser Pistol is a fully automatic pistol intended for close quarter combat. VOLT designed the weapon with a unique capacitor that condenses the pistol\'s laser energy, increasing its rate of fire at the cost of greater inaccuracy and a higher risk of overheating. This special edition features Greycat branding.'), +(3645,'ControlPanel_LightSwitch_Generic','ControlPanel','DoorPart','406d1253-568b-4cd6-9708-b459903a23d8','','',NULL), +(3646,'DoorProximitySensor_8x3x3_Directional_Proximity','Sensor','DoorPart','a3f2140f-2757-4f99-a0c0-3e29e6b6ccf1','','',NULL), +(3647,'Lillo Pants Tan','Char_Clothing_Legs','UNDEFINED','a8309e5f-c7c3-401d-a5bd-5b2a0bb94da1','','','Carrying Capacity: 0.5K µSCU\n\nThese slim cut pants from Fiore give you a tailored feel at a fraction of the cost. Built from space-age weaves, the Lillo are a low maintenance, high impact addition to your office wardrobe.'), +(3648,'Weapon_Rack_1_NONE_SMG_AmmoOnly_001','Usable','UNDEFINED','15eed807-7c20-4ea2-89ad-d2c2703a20e9','','',NULL), +(3649,'Detatrine','Cargo','Cargo','1e18d292-a2bc-4df3-9680-c64c7afc272b','','','Refined from the natural toxin found within the rare detatium fruit, this chemical has numerous medical applications.'), +(3650,'Flight Blade','FlightController','UNDEFINED','ffb72337-3b60-4a4e-8631-07dd45d529d7','','',NULL), +(3651,'Kareah_Hostility_DisplayScreen_01','Display','UNDEFINED','446a77f3-36c0-4841-9e8f-dd1bd0f96e81','','',NULL), +(3652,'Door Control','Door','UNDEFINED','f990f2af-3775-429a-a3e9-07b3c3e4a9c7','','',NULL), +(3653,'ORIG_890Jump_LandingGearSystem','LandingSystem','UNDEFINED','f5fc67b4-8da2-40ad-8c68-d4685f0eebbb','','',NULL), +(3654,'Internal Tank','FuelTank','Fuel','1eeccfa3-7df6-4519-9de1-4d6cc466f8fd','','',NULL), +(3655,'un_box_plastic_1_berries_c','Misc','UNDEFINED','94e12bab-6571-4980-b2d6-2db41c1611fe','','',NULL), +(3656,'Tungsten','Cargo','Cargo','deca4829-f365-4781-9a72-4657c7608848','','',NULL), +(3657,'Vivant Shoes','Char_Clothing_Feet','UNDEFINED','c79300f5-c4e3-4c0c-b468-448c43e19e1d','','','Slip into style and comfort with the Vivant shoes from Hawksworth\'s. These synthetic leather loafers feature an accentuated cap toe, metallic inlay atop the vamp, and a lightweight yet durable outsole made from a unique blend of rubber nanocomposites.'), +(3658,'Seat','SeatAccess','UNDEFINED','e5800049-1c26-411c-9f91-6802a67ba58f','','',NULL), +(3659,'Mustang Delta Livery','Paints','UNDEFINED','8b2e5ff0-ee59-41c6-b4dd-5606bc7cce3c','','','Standard livery for the C.O. Mustang Delta.'), +(3660,'Access','SeatAccess','UNDEFINED','2b5ae9ee-a264-47b2-8cda-17f1daa39fed','','',NULL), +(3661,'F55 \"Starchaser\" LMG','Weapon','Medium','9e05507f-e472-47cb-9b08-6fd70de9d178','','','Manufacturer: Gemini\nItem Type: LMG\nClass: Ballistic\n\nMagazine Size: 150\nRate Of Fire: 1000 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S2), Barrel (N/A), Underbarrel (S3)\n\nFeaturing an explosive rate of fire that tops at a 1000 rpm and Gemini\'s sleek and professional styling, the F55 is a light machine gun for discerning clientele who want the \'verse to know that they are not to be trifled with. Created to celebrate the 2954 IAE, the Starchaser edition is a vivid purple with white and black highlights.'), +(3662,'Goliath','QuantumDrive','UNDEFINED','fc3fadaa-cd29-4ac5-a2f5-51d4988d3def','','','Item Type: Quantum Drive\nManufacturer: Juno Starwerk \nSize: 1\nGrade: C\nClass: Industrial\n\nThe Goliath was designed to be more durable than other quantum drives in its class. That’s made it a staple of industrial ship since Humanity first started to explore the stars.'), +(3663,'ORIG_100i_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','314da384-d14e-4820-979d-3a15d597e12d','','',NULL), +(3664,'ORC-mkV Arms Hurston Edition','Armor','Arms','c158930e-d8e5-469c-9d5e-a509f4002158','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement. The Hurston Edition was made specifically for the company\'s security services.'), +(3665,'Mixed Mining','Cargo','Cargo','d67d7b9b-bce6-4cfc-bf2b-3289cf2f7844','','',NULL), +(3666,'Gadget_Cabinet_kegr_fire_extinguisher_01_Nozzle_med','Usable','UNDEFINED','e341ae56-5002-43be-b84f-d1e43d0f5c8b','','',NULL), +(3667,'AEGS_Idris_CargoGrid_AdditionalStorage','CargoGrid','UNDEFINED','d946868b-aa6f-45ba-94a1-08003f25424b','','',NULL), +(3668,'Degnous Root','Cargo','Cargo','99fa4805-42bd-44f6-a890-1eec22d31e99','','',NULL), +(3669,'Inquisitor Arms Twilight','Armor','Arms','003c7a4d-1874-42ef-ba5d-11c7dd89e423','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(3670,'Internal Tank','FuelTank','Fuel','ac3687d7-7092-4c75-b73c-738cb82afe4c','','',NULL), +(3671,'Ravager-212 Twin Shotgun Magazine (16 cap)','WeaponAttachment','Magazine','3326f182-d089-45d5-b090-f438d6f65f17','','','Item Type: Magazine\nCapacity: 16\n\nThis magazine for the Kastak Arms Ravager-212 Twin Shotgun holds sixteen 12-gauge shells.'), +(3672,'Artimex Arms Wildwood','Armor','Arms','922bb8a8-e61a-4ff1-93c8-557ece576d69','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.'), +(3673,'Flight Blade','FlightController','UNDEFINED','dcbcceb3-ae74-4104-88ae-7d21497939ef','','',NULL), +(3674,'Carryable_2H_FL_05x05x05_MissionItem_pizzabox_1_b','Misc','UNDEFINED','e3ce82a5-c7d2-4a7c-8627-8585a0869a71','','',NULL), +(3675,'ORC-mkV Legs Dark Green','Armor','Legs','8e324694-2487-4ac2-83c0-63adea162d6b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(3676,'MRAI_Pulse_Dashboard_Pilot','SeatDashboard','UNDEFINED','d8b883e9-e5a0-44a8-820a-c2367a6f3e30','','',NULL), +(3677,'Lynx Legs Abyss','Armor','Legs','54d19c1c-d538-4111-bcb5-ee117b8c4c16','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(3678,'Tundra Quasi Grazer Egg','Misc','Harvestable','9bb33649-430c-45e5-b210-958e33af2c89','','','A gourmet egg that is renowned for its complex flavor, it is always in demand from restauranteurs and gourmands alike. The flavor of the egg can vary depending on diet and environment. After the eggs are laid, their shells chemically bond to specialized pouches located on the Quasi grazer\'s belly, where they are carried until they hatch.'), +(3679,'MSD-616 Missile Rack','MissileLauncher','MissileRack','7c5c89d7-0999-43e4-b7e3-317cdcf800a9','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 6\nMissiles: 1xS6\n\nBehring’s MSD-616 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 6 hardpoint for the reliable and effective launch of one S6 missile.'), +(3680,'Door','Door','UNDEFINED','ac17dc73-0262-4ebc-9631-2746a0eacbab','','',NULL), +(3681,'Weapon_Rack_1_APAR_Special_01_Common_001','Usable','UNDEFINED','fd0627ba-da57-4881-b6e1-5a1a4dcfa9f4','','',NULL), +(3682,'Morozov-SH Legs Smokescreen','Armor','Legs','b524d212-81c5-4560-8e8b-459566c8ec34','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5K µSCU\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(3683,'Monde Legs Daimyo','Armor','Legs','59e43548-46ad-434e-b2ff-f9ac9b4019c2','','','tem Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints. \n\nThe Daimyo edition is colored brown and gray with polished steel plating.'), +(3684,'Lavelle Pants (Modified)','Char_Clothing_Legs','UNDEFINED','a459ce52-9acd-42cc-8679-26463fc44bf2','','','Carrying Capacity: 0.5K µSCU\n\nThis version of OpalSky\'s Lavelle pants has been modified from its original form. Part of the OpalSky Essentials collection, the Lavelle are classic dress pants with a timeless cut and look that make them an indispensable part of any wardrobe.'), +(3685,'Geist Armor Helmet ASD Edition','Armor','Helmet','92eac214-942c-4b1c-8f2e-2a1288a9992e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.\n\nThe ASD Edition features a hooded cloak printed with a dark urban camo pattern alongside ASD\'s signature logo.'), +(3686,'Tona Shoes Olive','Char_Clothing_Feet','UNDEFINED','5fb0b2f2-e8c2-4d01-8ad8-f8663f23bf37','','','Perfect for hiking or fieldwork, the Tona from R6 Pro is a low-top sneaker built out of breathable Cheofreme materials which not only provide extra protection against impacts, but keep your feet dry.'), +(3687,'Monde Core HighSec','Armor','Torso','3df0ec40-8f02-4db3-b3c2-dcc03ce498f7','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12.0 µSCU\nBackpacks: All\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints. \n\nThe HighSec edition features a carbon fiber finish with red accents.'), +(3688,'Seat','Usable','UNDEFINED','5fa45b50-b934-4e88-b820-1fd93b7cf469','','',NULL), +(3689,'Door Control','Door','UNDEFINED','bfb98d31-1f5f-4d88-9d3d-3e367bcb17ce','','',NULL), +(3690,'Renegade Vest Cargo','Char_Clothing_Torso_1','UNDEFINED','316dc5d5-e3a6-4659-83e1-42983b3e1dd9','','','Carrying Capacity: 3K µSCU\n\nEnjoy the open road and courier goods with the Renegade Cargo vest. A special synthetic weave bestows the vest with incredible tensile strength that can support the custom 0.375 SCU pannier, while reinforced straps keep it secured to your back even while traversing rugged terrain.'), +(3691,'Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','edb94452-733a-4d6c-a3ec-12c1af0372b9','','','Joker Defcon Flares Ammo'), +(3692,'Aurora Mk I microTech Livery','Paints','UNDEFINED','7397b797-5e4c-4423-acfe-ef14faebc22b','','','The microTech livery for the Aurora features the company\'s logo atop a white base paint with light blue and grey highlights.'), +(3693,'hanger_clamp_torso1_01Port','ShopDisplay','Default','2ff62b3e-df5a-4fb6-9aa7-eef52f8edf17','','',NULL), +(3694,'GLSN_Shiv_Thruster_Retro','MainThruster','FixedThruster','d18d435b-9a00-4fb4-b185-8cae5ec7f923','','',NULL), +(3695,'DockingTube_Fuel_Ports_RSI_Aurora_LN','DockingCollar','UNDEFINED','3b283e5f-b6ba-46b5-a687-9d35084455c5','','',NULL), +(3696,'Manned Turret','TurretBase','MannedTurret','d73e604b-72ec-4310-a21d-83beae6f65df','','',NULL), +(3697,'StorageCage','Cargo','UNDEFINED','cc30aeb1-21c8-4b85-848a-2e82e51decf2','','',NULL), +(3698,'wall_display_cabinet_large_12x04x04_a','ShopDisplay','Default','edb5ed76-c0ef-49c4-9f33-f269b6e21b11','','',NULL), +(3699,'Seat','Usable','UNDEFINED','e57685bc-646a-46a5-b7c9-0a63e5d459ce','','',NULL), +(3700,'Door Control','Door','UNDEFINED','ea365590-18ef-4016-b849-32784e9f3cdb','','',NULL), +(3701,'ORC-mkX Core (XenoThreat v2)','Armor','Torso','18b9dd5d-b093-4d1d-adcc-9ba048bfbdc6','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nThis version of CDS\' ORC-mkX combat armor has been modified from its original form. The mark X is part of CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(3702,'Carryable_1H_SQ_datapad_tablet_2_a','Misc','UNDEFINED','77eb9d24-2858-48d4-a04c-20b9d6b5137d','','',NULL), +(3703,'E\'tam','Cargo','Cargo','a49f6b35-5522-44ff-aff7-07ef0959bcf1','','',NULL), +(3704,'Vehicle_Screen_MFD_Holographic_MISC_Fortune_MR','Display','UNDEFINED','9c822235-e156-49d0-a62d-feac025937d8','','',NULL), +(3705,'Arcus Gloves Teal','Char_Clothing_Hands','UNDEFINED','2985a5c0-9908-41d3-b125-108b95b9fa32','','','Temp. Rating: -35 / 25 °C\n\nThe Arcus gloves are thin enough to wear on everyday excursions, yet capable of keeping your hands warm in frigid conditions. Textured touch fingertips even allow you to easily access your mobi and other touch screens without removing your gloves.'), +(3706,'sc_marine_bdu_boots_01_01_01','Char_Clothing_Feet','UNDEFINED','76eff75d-bd5b-46cd-a2ab-3690583017f0','','',NULL), +(3707,'Counter_Food_HotDrinkDispenser','Misc','UNDEFINED','b9ae9581-2cf6-4f9e-822b-4c5d68aa2a6f','','',NULL), +(3708,'RSI_Constellation_Rear_DockingTube','DockingCollar','UNDEFINED','decf0946-b073-41b6-aff6-e076cedfd3f1','','',NULL), +(3709,'Lastaprene','Cargo','Cargo','7b218719-e278-4174-902e-4e004391899d','','',NULL), +(3710,'SLAM','Cargo','Cargo','90d0ecbd-7163-4c99-a981-9e6ed8c555de','','',NULL), +(3711,'Internal Tank','QuantumFuelTank','QuantumFuel','460823e2-8420-3f89-03e6-6948a4ddf9ba','','',NULL), +(3712,'ARGO_RAFT_Thruster_Mav_Top','ManneuverThruster','FixedThruster','3ab659b6-a7b3-42ca-ad42-00e179c5ed6a','','',NULL), +(3713,'MRAI_Guardian_MX_Ground_Refueling_Port','Door','UNDEFINED','46dd1447-9287-24bd-f996-19aa8490f58d','','',NULL), +(3714,'Door Control','Door','UNDEFINED','54316577-908d-4ca6-b24d-ff42fd2e2143','','',NULL), +(3715,'Seat','Usable','UNDEFINED','7bcd14de-bc7e-4692-8512-8f96dc1737a1','','',NULL), +(3716,'Door Control','Door','UNDEFINED','6aa7802b-d460-4de0-84e9-1bbd4cfe6e26','','',NULL), +(3717,'Atzkav \"Mirage\" Sniper Rifle','Weapon','Medium','e5d03198-b83c-4da2-b51e-f7d5337be50e','','','Manufacturer: Lightning Bolt Co. \nItem Type: Sniper Rifle\nClass: Electron\n\nBattery Size: 5\nRate Of Fire: 30 rpm\nEffective Range: 150m+\n\nAttachments: Optics (S3), Underbarrel (S2)\n\nThe Atzkav is a unique precision sniper rifle from Lightning Bolt Co. Once the charging handle is engaged, it accurately fires a charged electron to deal significant energy damage that spreads to nearby conductive targets. This special pulse effect also leaves a residual charge in the strike area that increases damage delivered by subsequent electron shots. Alongside the rifle\'s special firing capabilities, the Atzkav is best known for its distinct barrel that crackles with energy when powering its next shot. A special pearlescent coating has been applied to the Mirage edition to make the weapon gleam a range of colors based on how you look at it.'), +(3718,'DoorProximitySensor_2_5x2x2','Sensor','DoorPart','7b6ec412-b99c-4421-be37-119d367dd34f','','',NULL), +(3719,'ORIG_400i_Thruster_Mav_Top','ManneuverThruster','FlexThruster','3277c3ec-85ee-40cf-9879-1365bbce5442','','',NULL), +(3720,'HLX99 Hyperprocessors','Cargo','Cargo','4921130c-5a2a-471d-8ddf-dd920f45c375','','',NULL), +(3721,'Cassidy Shirt Finch','Char_Clothing_Torso_0','UNDEFINED','a1b7348b-5208-448f-9f25-91a87a5ae0ac','','','Habidash\'s Cassidy short-sleeved henley t-shirt features a lightweight, breathable fabric blend paired with a neck covering and separated arm sleeves for a stylish look that remains practical in dustier climates.'), +(3722,'Remote Turret','Turret','GunTurret','317cca98-d0f6-4b1e-b43f-de72e3f78c93','','','Remote Turret'), +(3723,'Varhey Boots Fogforest','Char_Clothing_Feet','UNDEFINED','b75c61f6-4069-44b0-ad98-4af84daf930a','','','The Varhey by R6Pro is a widely popular lightweight workboot made of a durable, but flexible, polyweave that ensures a safe, snug fit.'), +(3724,'Devastator \"Pathfinder\" Shotgun','Weapon','Medium','1a929345-8ecb-4489-af43-152378e5fd06','','','Manufacturer: Kastak Arms\nItem Type: Shotgun\nClass: Energy (Plasma)\n\nBattery Size: 12\nRate Of Fire: 60 rpm\nEffective Range: 20 m\n\nAttachments: Optics (S1), Barrel (S3), Underbarrel (S2)\n\nKastak Arms’ Devastator is a pump-action plasma shotgun capable of delivering sustained medium range, high-impact plasma blasts for close combat, room clearances and other combat operations. If the situation requires a high-power presence, look no further than the Devastator.'), +(3725,'Datapad','Misc','UNDEFINED','08478ec0-6222-40fd-882c-5f5aefded4c6','','','A portable tablet computing device featuring a touchscreen display.'), +(3726,'Dopple','Cargo','Cargo','d8d81989-a7e7-4ff1-80c7-39728668f21a','','',NULL), +(3727,'Galen Surgical Scrub Top','Char_Clothing_Torso_1','UNDEFINED','bb51768f-5a1f-4164-bfae-04d4e3ad60d1','','','Carrying Capacity: 0.4K µSCU\n\nYou can count on Code Blue Apparel to deliver professional and comfortable medical clothing. The Galen Surgical Scrub Top features a large pocket and a wide wrap across the mid-section for a secure fit. Made with a special anti-bacterial fabric that\'s 99% effective while also being lightweight and wrinkle free.'), +(3728,'Origin Jumpworks T-Shirt','Char_Clothing_Torso_0','UNDEFINED','2a88c528-7062-4abe-a240-089a0cf08de8','','','Origin Jumpworks ships have been described as a symphony in motion. That elegant aesthetic extends to the circular logo gracing the front of this light grey t-shirt.'), +(3729,'MISC_Hull_C_SCItem_Copilot_Seat','Seat','UNDEFINED','a77065ba-043d-4e5a-bac4-54d2a71f393c','','',NULL), +(3730,'MacFlex Arms Violet','Armor','Arms','b4007f8d-ba9f-4a04-8287-79adcffc47f7','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(3731,'Day One Shirt Sienna','Char_Clothing_Torso_0','UNDEFINED','0d3f2b8d-04c9-455c-a902-8abdf4101ef0','','','This Henley shirt from Stegman\'s is made with AirFlow technology, a stain-resistant, air-cooled fabric that keeps you comfortable and dry.'), +(3732,'Bexalite (Raw)','Cargo','Cargo','1acfc253-e1d5-48f0-9930-ff8534155079','','',NULL), +(3733,'Aril Helmet Red Alert','Armor','Helmet','7422ea55-36f5-49a5-bb0b-69c6756f6602','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(3734,'simpod_1_military_a','Usable','UNDEFINED','be0b3924-35b2-4327-bb26-14b6b7a402cd','','',NULL), +(3735,'Deadhead Helmet Bruiser','Armor','Helmet','94318b9b-f15f-440f-831f-e34e235469e6','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\n\nRemind your enemies that death is coming with the Deadhead helmet. In place of a visor, the ghastly visage of a Human skull, lit from within by an infernal glow, is sure to send any opponent running.\n\nThe Bruiser version features dark crimson and midnight blue coloring with polished metal accents.'), +(3736,'Elespo','Cargo','Cargo','c46d8d27-0bb6-46c7-91cd-bfa66da5b202','','',NULL), +(3737,'Palatino Backpack Shadow Gild','Armor','Backpack','2146dce8-da07-4c37-adda-4ea98b5ab1d0','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. The associated backpack seamlessly integrates into the armor, matching its silhouette while also providing ample storage. The Shadow Gild variant is dark gray and features stylish gold highlights.'), +(3738,'MISC_Razor_Thruster_Retro','ManneuverThruster','FixedThruster','b6886e23-9b36-4f4e-a439-aef3e0c55f01','','',NULL), +(3739,'rod_torso0_02x01x04_05Ports','ShopDisplay','Default','c1bcfdfb-be0f-4920-a3c2-e11f9d2e29e0','','',NULL), +(3740,'Francis the Party Animal Plushie','Misc','Personal','dd2b2955-a2b5-47d9-80e5-c91545aadca4','','','There\'s only one thing Francis the Stormwal loves more than sailing through the clouds in Crusader\'s atmosphere and that\'s a good party. Make Francis the featured guest at your next event with this soft and squeezable plushie that\'s already wearing a hat fit for the occasion.'), +(3741,'Lt_A_AIrlock_Door_Ext','Door','AirlockPart','6b09fc8e-4e0c-46a3-9f97-7c912abc1aed','','',NULL), +(3742,'Advocacy Interceptor Helmet','Armor','Helmet','e02ff738-464c-40e4-b140-fae0c0a7b2e0','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe unique open-faced design makes the Advocacy Interceptor helmet a lightweight and liberating option for operating in atmosphere. It features precisely layered plating to protect the head from a variety of combat and environmental hazards and an impact resistant, anti-glare visor over the eyes. Visor is AR crosshair compatible.'), +(3743,'Carryable_2H_FL_Vlk_Pearl_Super_01','Misc','Harvestable','f0920bf8-e0c6-4045-a6ca-2c57a37bc1eb','','',NULL), +(3744,'Hephaestanite (Raw)','Cargo','Cargo','d602a6b6-53b8-4a47-97c1-63cf914c901e','','',NULL), +(3745,'RSI Default JetPack','Suit','ThrusterPack','e76a3608-3ea4-4d85-84b1-5c2c6c1f49cc','','','<-=MISSING=->'), +(3746,'Prevenir','Radar','MidRangeRadar','d8a9b395-4438-4995-a797-9d984c7fd4c0','','','Item Type: Radar\nManufacturer: GNP\nSize: 0\nGrade: C\nClass: Military\n\nThe Prevenir has been refined by extensive military field testing, making it the go-to vehicle radar for many across the UEE.'), +(3747,'LightFire','QuantumDrive','UNDEFINED','f3ceefa2-670f-47c5-8c13-a80c8cf93c52','','','Item Type: Quantum Drive\nManufacturer: Ace Astrogation\nSize: 1\nGrade: C\nClass: Competition\n\nAce Astrogation built the LightFire for pilots who like to push the edge, but not break the bank. Its focused design provides solid performance at the expense of the component’s durability and stealth.'), +(3748,'Door','Door','UNDEFINED','2a9b82ca-0668-4aef-9ed9-38cb58fcd8b5','','',NULL), +(3749,'Stirling Exploration Helmet Sandstorm Edition','Armor','Helmet','d35482d9-48f0-4f3e-81f8-6b683436014e','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nDesigned to withstand inhospitable environments, the Stirling Exploration Suit provides a base level of protection from environmental hazards including radiation. Combining Caldera\'s advanced insulation fabrics with sophisticated polymers, the Stirling is able to safeguard the wearer whilst minimizing disruption to movement. Additionally, a self-cleaning system automatically activates after radiation exposure to expunge dangerous excess down to nominal levels. This helmet is only compatible with the Stirling Exploration Suit. The Sandstorm Edition merges tans, beiges, and grays providing a sandy appearance.'), +(3750,'DockingTube_Fuel_Ports_MISC_Freelancer_MIS','DockingCollar','UNDEFINED','5b05c025-3da7-4056-a3af-9c7b42e646d2','','',NULL), +(3751,'RSI_Hermes_Thruster_VTOL','ManneuverThruster','FixedThruster','9be9901b-d3e8-4a38-8c99-285291f987e4','','',NULL), +(3752,'Corsair 2953 Best in Show Livery','Paints','UNDEFINED','18de7edf-2b9b-4058-b148-68e578f4c07b','','','Celebrate the Drake Corsair being voted a Best in Show finalist for 2953 with this pearlescent purple and cyan livery.'), +(3753,'Trailblazer Boots','Char_Clothing_Feet','UNDEFINED','276cd707-7a2d-4d65-9d2e-3bc509d8a225','','','These leather ankle-high boots feature a dura-tread sole, reinforced metal eyeholes for secure lacing, and a soft-stretch ankle to make taking them on and off a breeze. A classic design from Grindstone that can easily go from the office to the trail.'), +(3754,'Seat','Usable','UNDEFINED','0d644c04-a019-4f58-ae5e-3a8640db944e','','',NULL), +(3755,'Drivetrain','WheeledController','UNDEFINED','77e73716-61e1-4c32-85f5-80d5ec1e48a1','','',NULL), +(3756,'Medium Artifact Fragment (Pristine)','Misc','UNDEFINED','2b97bad0-3e80-4a77-9633-3ee764dbf466','','','A medium-sized artifact fragment of unknown origin and made of an unidentified material. Though broken, it\'s otherwise considered in pristine condition. The fragment features intricate etchings that subtly glow green and is overlaid with dark-colored metallic banding.'), +(3757,'Seat','SeatAccess','UNDEFINED','03faea11-a0c5-443c-bcba-90528483698a','','',NULL), +(3758,'Ursa Red Livery','Paints','UNDEFINED','f9a6a6b9-4ff0-4670-a8c6-3aa2f34f7e01','','','Customize your RSI Ursa Rover with this red livery.'), +(3759,'display_item_noGeo_01Port_Hat','ShopDisplay','UNDEFINED','00ccb88e-1ae2-4a5d-9e5f-980786c57cc3','','',NULL), +(3760,'Remote Turret','Turret','GunTurret','9b6917f4-9505-4393-8993-6c8f8fb16b4c','','','Remote Turret'), +(3761,'un_box_plastic_2_berries_c','Misc','UNDEFINED','e22a646c-e4a3-402f-a929-a458bc8b2ccf','','',NULL), +(3762,'United Nations of Earth Mini-Flag','Flair_Cockpit','Flair_Static','3de40834-b47a-4740-801b-b7344ef433e0','','','Fly the flag of the first united Human government, the United Nations of Earth (UNE). First revealed in 2380, the inaugural flag design features interlocking circles symbolizing Humanity\'s three main populations centers (Earth, Mars, and Croshaw system) and six stars representing the ambition to continue expanding into space. This small metal stand flies a holographic version of the UNE flag, making it an ideal accessory for history buffs to place on their desk or aboard their ships.'), +(3763,'FullSpec-Go','Radar','MidRangeRadar','a4412aa5-2593-4139-b2d8-88b6bd05df07','','','Item Type: Radar\nManufacturer: Chimera Communications\nSize: 0\nGrade: A\nClass: Industrial\n\nChimera Communications knows that for a high quality radar, consistency is key. The FullSpec-Go, specifically designed to offer clarity in the most hazardous of terrain, guarantees you\'ll get where you need to go without any surprises.'), +(3764,'Silicon','Cargo','Cargo','df60e19f-df96-4d26-b404-d03866b02108','','',NULL), +(3765,'MSD-524 Missile Rack','MissileLauncher','MissileRack','3677de9d-b92f-42f1-a34e-0c0fe6cdfcd0','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 5\nMissiles: 2xS4\n\nBehring’s MSD-524 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 5 hardpoint for the reliable and effective launch of two S4 missiles.'), +(3766,'SHIELDS','ShieldController','UNDEFINED','eec5cecf-91ce-444f-b64a-1a1f40d3eab9','','',NULL), +(3767,'Scrap Cable Coil','Misc','UNDEFINED','11271ec5-264f-473a-8ebe-adf481b3638d','','','A coiling loop of broken cables, serving no particular purpose.'), +(3768,'Carryable_1H_CY_utensil_spork_disposable','Misc','UNDEFINED','bb3a1932-1b65-45dc-9d70-3fc069f7a023','','',NULL), +(3769,'Geist Armor Arms Desert','Armor','Arms','8efe48dd-e730-440e-9526-cbc87443e357','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(3770,'Aphorite','Cargo','Cargo','fc2618b6-349a-43c6-8728-6d4f18d538f3','','',NULL), +(3771,'Seat','SeatAccess','UNDEFINED','7a18fffd-157c-4e2d-b85c-f7c412ce6d54','','',NULL), +(3772,'AEGS_Idris_SCItem_Seat_Bridge_Rear_Right_Blocked','Seat','UNDEFINED','8b4e522e-be04-42d9-90d3-71e2b4d2ba81','','',NULL), +(3773,'Freelancer Foundation Fest Livery','Paints','UNDEFINED','677696da-f227-42ae-8b46-be5c0009de18','','','Foundation Festival is an opportunity for Citizens and Civilians to come together and strengthen the foundation of our community. Show your commitment to a better universe with this custom livery.'), +(3774,'ARGO_MPUV_Thruster_Aux_Front','ManneuverThruster','FixedThruster','00b1ddce-8fcf-42ac-854d-e8ef14875817','','',NULL), +(3775,'WowBlast Desperado Toy Pistol Magazine (10 cap)','WeaponAttachment','Magazine','db3a7de3-3e4c-49f6-98fd-7541c963f380','','','Item Type: Magazine \nCapacity: 10\n\nThis magazine for the WowBlast Desperado holds ten darts.'), +(3776,'H_Dashboard_Projector_HUD_ARGO_SRV','Display','UNDEFINED','108bc4ad-835b-4fe7-ab76-1c6bce74c1f0','','',NULL), +(3777,'Exterior_FreightElevator_CargoGrid','CargoGrid','UNDEFINED','52b05758-e01a-492a-adbb-7979a62b0b86','','',NULL), +(3778,'Bracer','Cooler','UNDEFINED','4ec3037b-4b6f-4837-b00d-cd9b4836a82a','','','Item Type: Cooler\nManufacturer: Aegis Dynamics \nSize: 1\nGrade: C\nClass: Military\n\nFor those looking for a solid, dependable mid-line cooler, you can’t do much better than Aegis’ Bracer. This small-frame cooler system offers solid performance and durability to keep your ship firing on all cylinders.'), +(3779,'Year of the Rooster Envelope','Cargo','Cargo','ffbeac48-de3b-4411-a464-feffde2aa1d5','','',NULL), +(3780,'Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','023d292b-e2f5-402b-85f5-8a48cf1f458a','','','Live in comfort with MuyMuy\'s Davlos line of cotton-synthetic shirts. The durable, yet soft, fabric contains a patented SweatGuard technology that not only whisks away perspiration but helps prevent stains.'), +(3781,'250-E Laser Pointer','WeaponAttachment','BottomAttachment','6bbaa189-c154-4524-b2c1-6df305bb9533','','','Manufacturer: NV-TAC\nType: Laser Pointer\nAttachment Point: Underbarrel\nSize: 1\n\nSpread: -12.5%\n\nThe 250-E is an intuitive aiming aid that produces a laser visible to you and others. NV-TAC built the attachment to be lightweight yet durable so it won\'t add extra weight to your weapon.'), +(3782,'Door Control','Door','UNDEFINED','92f73487-046f-421a-8cd5-1070679c5cf4','','',NULL), +(3783,'IndVest Jacket','Char_Clothing_Torso_1','UNDEFINED','444f1ec9-251e-4e7b-ba1e-92b7d1b524a3','','',NULL), +(3784,'Door Control','Door','UNDEFINED','29f52e35-a6af-4949-9e9b-3e919a314910','','',NULL), +(3785,'Plasma Battery','Cargo','Cargo','40ca027e-77a4-4bcc-b367-86efbac54150','','','A small plasma battery developed for use in ASD facilities.'), +(3786,'BEHR_LaserCannon_Ventilation_S4','WeaponAttachment','Ventilation','1870cc6d-d05c-4278-ab52-d5783e18c433','','',NULL), +(3787,'Colonialism_Outpost_RN_AV_Turret','Turret','UNDEFINED','8d0aeaf2-9850-4bd3-a7e2-962927ce9b36','','',NULL), +(3788,'MISC Prospector - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','1b77d16e-3a8f-4dbe-97e8-a61caa7dfbbf','','','MISC Prospector - Decoy Launcher'), +(3789,'VariPuck S3 Gimbal Mount','Turret','GunTurret','6345ae6c-20ff-4d2b-8438-781cb02fa651','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 3\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(3790,'Carryable_2H_Tablet_16x9_Drake_Anniversary','Misc','Gadget','8ec9a7f4-9f67-4eb1-a5f0-d5fb758f264d','','',NULL), +(3791,'Arrow Foundation Fest Livery','Paints','UNDEFINED','6d364eb6-97fc-42ba-8f2d-ed14943268da','','','Foundation Festival is an opportunity for Citizens and Civilians to come together and strengthen the foundation of our community. Show your commitment to a better universe with this custom livery.'), +(3792,'Weapon_Rack_Cz_007','Usable','UNDEFINED','ded0776a-6be3-4b64-9e9e-e169c001a974','','',NULL), +(3793,'Glow','Cargo','Cargo','c2600184-53bd-4c71-b7f7-0d1ec4c0280b','','',NULL), +(3794,'Carryable_1H_CY_party_canape_3_a','Misc','UNDEFINED','fe611ce0-e5ae-4fb1-a795-407fcbc66268','','',NULL), +(3795,'Decari Pod','Cargo','Cargo','2fc44c1e-cab0-4a28-80cb-49c49f2f03bd','','',NULL), +(3796,'Dashboard','SeatDashboard','UNDEFINED','4d313488-36e0-4db1-b320-4b39b737e4a9','','',NULL), +(3797,'Relay','Relay','UNDEFINED','663ab023-2655-4c4b-b60d-620ba14ed572','','',NULL), +(3798,'Pingala Seeds','Cargo','Cargo','9f0d0f18-54d7-4ba7-a23c-158c3af24502','','',NULL), +(3799,'R97 \"Scorched\" Shotgun','Weapon','Medium','2e15ad7c-79d0-48fc-91a1-bda4fbd45c6a','','','Manufacturer: Gemini\nItem Type: Shotgun\nClass: Ballistic\n\nMagazine Size: 18\nRate Of Fire: 120 rpm / 60 rpm\nEffective Range: 15 m / 35 m\n\nAttachments: Optics (S1), Barrel (N/A), Underbarrel (S2)\n\nThe R97 combines sleek design and stopping power for an elegant and effective close quarters weapon. This ballistic shotgun from Gemini features two distinct fire modes — a semi-auto wide spread mode ideal for dealing quick damage and a focused mode that offers increased range at the expense of some power. This combat flexibility has made the R97 a popular personal defense weapon across the Empire. The Scorched edition features a unique flame patina.'), +(3800,'Bed','Usable','UNDEFINED','b2b27d17-8e4e-4b09-a905-a8640a39ec7c','','',NULL), +(3801,'Drink_bottle_eff_01_a','Drink','Bottle','1ec79288-4c18-4cb7-aa8b-ab92d86912d5','','',NULL), +(3802,'H_Dashboard_Projector_HUD_ANVL_C8_Pisces','Display','UNDEFINED','dc3bef33-1527-4577-a525-d5e703554f34','','',NULL), +(3803,'Uncut SLAM','Cargo','Cargo','cfdada56-45b7-44c2-9c4a-ddfc47023473','','',NULL), +(3804,'ORC-mkV Core Twilight','Armor','Torso','84b54d13-592e-48d8-8f0b-3ea78d467e32','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(3805,'UltraFlux','PowerPlant','Power','f549b612-0be0-41fe-91d1-12a479af2ac8','','','Item Type: Power Plant\nManufacturer: Amon & Reese Co.\nSize: 2\nGrade: B\nClass: Military\n\nInitially designed under a military contract, A&R\'s UltraFlux medium power plant decimated the required performance milestones and enjoyed a storied career as a dependable military asset. When the military’s exclusive rights to this high quality component lapsed, A&R eagerly released this to the commercial market.'), +(3806,'Venture Legs Grey','Armor','Legs','ef59bc92-3b46-49c3-9064-e9ffe3310e90','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(3807,'ReadyMeal (Vegetarian)','Food','Sachet','d9290fb6-3b8a-45bd-ac1e-c6f41d182951','','','NDR: 60\nEffects: None\n\nThe classic taste that\'s all you need, this Vegetarian option from ReadyMeal features a mixture of freshly picked vegetables in a citrus herb sauce all ready-to-eat in seconds.'), +(3808,'RSI_Bengal_SCItem_Seat_Captain','Seat','UNDEFINED','a5686835-3230-447e-b6fa-aad718062c29','','',NULL), +(3809,'AEGS_Reclaimer_Dashboard_TractorBeam_Left','SeatDashboard','UNDEFINED','c5bc18f2-5641-44a5-a2ea-fb1ec681db99','','',NULL), +(3810,'rack_gun_size_3_005x00375x01125_1_a','Misc','UNDEFINED','e553e7e3-90e3-49ae-ba07-b0a1660278b8','','',NULL), +(3811,'Fleming','Radar','MidRangeRadar','5b8750fa-a271-4b5a-a8fd-53c8d06841c9','','','Item Type: Radar\nManufacturer: WillsOp\nSize: 1\nGrade: D\nClass: Civilian\n\nThe Fleming is WillsOp’s base small radar. What it lacks in bells and whistles, it makes up for with consistent performance.'), +(3812,'400i Afterglow Livery','Paints','UNDEFINED','f05afbb9-4a11-4db0-b16f-dedf73dfb421','','','Black envelopes most of the Afterglow livery for the 400i while orange accent lines provide a pop of color.'), +(3813,'Door Control','ControlPanel','DoorPart','9868c797-f5f0-418c-bae9-adbbd845c103','','',NULL), +(3814,'RSI_Aurora_Intake_Top_LN','AttachedPart','UNDEFINED','298fa68e-4f44-41fa-a271-0deea36dbc6f','','',NULL), +(3815,'Seat','Usable','UNDEFINED','83781a0d-4920-450a-870e-08673f434548','','',NULL), +(3816,'Fortifier Helmet Icefall','Armor','Helmet','a91f41b3-1a29-44b2-b2c8-6780793d783a','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nProtect your most valuable asset with the Fortifier. Intended for extremely hostile environments, this heavy helmet makes up for its limited visibility with extra plating that protects the neck and back of the head.'), +(3817,'Lt_A_Airlock_Door_Int','Door','AirlockPart','a4722336-6788-4b17-b3f5-f69e3b794cdd','','',NULL), +(3818,'Piconalia Sweater','Char_Clothing_Torso_0','UNDEFINED','cea7e7ae-9531-48c7-82cb-7b8deee62a57','','','Light up the night this Luminalia with a little help from Pico the Penguin. Designed by MuyMuy in collaboration with microTech, the Piconalia Sweater was made with a blend of wools optimized to create long-lasting softness while preventing wear and tear.'), +(3819,'facial_hair_041','Char_Head_Beard','UNDEFINED','69889aed-7954-403d-8e97-b8a69a26ac83','','',NULL), +(3820,'RSI_Hermes_Thruster_Retro_Nacelle','ManneuverThruster','FixedThruster','4be0015e-2d8d-470f-b5ec-39d3beb7498d','','',NULL), +(3821,'DRAK_Golem_Thruster_VTOL_Retro_Right','ManneuverThruster','Retro','ac930f3b-8ca8-40a2-bd29-3c864fafc8df','','',NULL), +(3822,'Strata Helmet Crusader Edition','Armor','Helmet','46108452-8462-4fa0-9b32-f0d93090ac28','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design features high quality materials and a next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Crusader Edition was made specifically for the company.'), +(3823,'Zelena Pants and Tall Bisbee Boots','Char_Clothing_Legs','UNDEFINED','53fb58e0-dba4-4d35-9f7f-133b5ab575d8','','','Carrying Capacity: 7.3K µSCU\n\nStay warm and dry on rainy days in the Zelena pants and the Bisbee boots. Both made with water-repellant materials and built-in sweat-wicking technology, they\'ll be your go-to choice for adventures on even the most hostile worlds.'), +(3824,'Radar_Display_15cm','Display','UNDEFINED','2e47954e-a13b-4bd6-ae2e-f7baa7bf068b','','',NULL), +(3825,'Cutter Carnival Livery','Paints','UNDEFINED','7fda08c3-7742-494c-b8ba-6ce971c7d4b3','','','The Carnival livery gives the Cutter distinctive pink stripes that stand out against the ship\'s grey hull.'), +(3826,'Pembroke Exploration Suit RSI Sunburst Edition','Armor','Undersuit','37f72bbd-9f5f-4018-80a6-4ef5d25886f0','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nDesigned to extend the limits of Human endurance, the Pembroke was built to withstand the extreme heat of inhospitable high temperature environments. Based off of Caldera\'s best-in-class exploration armor platform, an advanced sensor suite intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. The special RSI Edition of the Pembroke ensures those seeking to cross bold new horizons do so in style.'), +(3827,'Ketchum Beanie Grey','Char_Clothing_Hat','UNDEFINED','a5ee22fd-009a-4a6a-9f47-a3e4ddc09167','','','Complete your cool-weather wardrobe with the classic Ketchum beanie from Alejo Brothers.'), +(3828,'mobiGlas Cedar Casing','MobiGlas','Personal','f78c8bdb-bf3a-40f0-a676-6eec3883a94c','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(3829,'display_expo_hall_armour_rack_1_curved_backwall_b_11Ports','ShopDisplay','UNDEFINED','293f62a4-c36e-489c-b784-6eb1ee799552','','',NULL), +(3830,'Lynx Arms Sandstorm','Armor','Arms','00c35078-4161-468c-8cd2-7bad6ba58992','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(3831,'Seat','Usable','UNDEFINED','12999fd5-52ec-49a4-9eee-cceb36570b88','','',NULL), +(3832,'Venture Undersuit Olive/Black','Armor','Undersuit','a4e9e211-7b2b-4ddc-89db-4c6f5ff8a0be','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(3833,'Rampart','Shield','UNDEFINED','a4ce7916-5eeb-4b40-af71-8558f246e5e5','','','Item Type: Shield Generator\nManufacturer: Basilisk\nSize: 2\nGrade: A\nClass: Industrial\n\nBasilisk understands that escape isn’t always an option. That’s why they built the Rampart industrial shield generator to take an incredible amount of damage before it’s depleted.'), +(3834,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','3ab1bb55-b5ef-452b-a36d-0dfe21819709','','','Joker Defcon - Noise Launcher'), +(3835,'ORIG_400i_Thruster_Mav_Bottom','ManneuverThruster','FlexThruster','48df152c-795a-4677-b8a8-9c35cf52e4fb','','',NULL), +(3836,'MISC Ore Pod','Container','Cargo','e4ed9d11-9a8e-4e08-83d4-a877eca31464','','','Capacity: 8 SCU\n\nMade to work with any compatible mining ship, the MISC Ore Pod boasts several unique features, including anti-abrasion paint inside the pod that ensures it can withstand hefty payloads for years to come.'), +(3837,'MISC_Starfarer_Gemini_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','8def1897-d0d7-4f91-bc7e-59a6b6ea7195','','',NULL), +(3838,'Venture Helmet Red','Armor','Helmet','8b4937e6-fceb-41dc-bfa0-2a8eeae72786','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover.'), +(3839,'Mustang Stormbringer Livery','Paints','UNDEFINED','b77920bc-3885-421a-a2da-e7019ff1d469','','','Celebrate the 2951 IAE with this custom Mustang livery. Blending blue and black with white accents, the paint scheme gives the ship an electric new look.'), +(3840,'ADP Arms Imperial','Armor','Arms','7d30bd19-ae8f-4415-bdca-7202901387ea','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(3841,'Door Control','Door','UNDEFINED','b2f8cb82-ef2d-429e-8506-f0fa0ba81fde','','',NULL), +(3842,'FBL-8a Arms Arctic Digital','Armor','Arms','091fc83c-aa96-44af-a850-45c381af311b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nCDS\'s quest to create the ideal light armor continues with the FBL-8a. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible.'), +(3843,'AEGS_Sabre_Raven_Thruster_Mav_Joint_02','ManneuverThruster','JointThruster','c9ea2333-14f8-4f56-8d5f-c6c90905a020','','',NULL), +(3844,'BEHR_LaserCannon_Ventilation_S2','WeaponAttachment','Ventilation','1444c11a-5f61-47ad-9c1a-b0dbc40c4c39','','',NULL), +(3845,'HRST_LaserRepeater_FiringMechanism_S6','WeaponAttachment','FiringMechanism','ba941e80-4803-45c3-8831-9725a5fa4ef1','','',NULL), +(3846,'Door Control','Door','UNDEFINED','cea11ea4-bc71-4cc6-839b-e3d7338e1f8a','','',NULL), +(3847,'Testudo Core Earthshake','Armor','Torso','a7d15d5d-ccbc-4f22-bc73-aa449a9827cf','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Medium, Light\n\nThe Testudo armor for Quirinus Tech blends battlefield durability with everyday comfort. It weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort.'), +(3848,'Corbel Legs Crush','Armor','Legs','922b899e-9464-4411-9a6b-09785f744605','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nOriginally designed as a strength enhancement suit to give factory workers better lifting power, CDS found wider application in utilizing its defensive capabilities. It\'s triple-enforced armor plating provides extreme physical protection, with deliberate placing of materials to protect the most vulnerable parts of the body. A series of pneumatic levers offer increased flexibility in the joints, alleviating pressure and weight in key areas to create an accessible and highly protective armor despite its heavy weight.\n\nThe Crush edition consists of a polished black metal with brushed bronze detailing.'), +(3849,'ANVL_Pisces_BayDoor_Bot','Container','UNDEFINED','87f8e92b-e55a-436a-8889-9f3c997a4647','','',NULL), +(3850,'Internal Tank','QuantumFuelTank','QuantumFuel','e98368a6-db4e-4ff9-9c1c-6eadabc1d239','','',NULL), +(3851,'Citrus Blend Smoothie','Drink','Bottle','785251ee-29d2-496e-920e-ea072ce8193f','','','HEI: 35\nNDR: 14\nEffects: Immune Boosting\n\nA smoothie made with a fresh blend of citrus.'), +(3852,'ARGO_SRV_Thruster_VTOL_Small','MainThruster','UNDEFINED','91b8e43b-4313-480f-baac-13bbe65bc2f6','','',NULL), +(3853,'Seat','Usable','UNDEFINED','f13a458f-4fb9-40f3-b758-b38b1cb9bd99','','',NULL), +(3854,'Lynx Core Firebrick','Armor','Torso','cac6f8a0-6305-47a2-b169-8ebae08a0901','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(3855,'Paint_Arrow_Procyon','Paints','UNDEFINED','278741d8-8aff-418b-bb31-63f8c1867284','','',NULL), +(3856,'Sabre 2952 Auspicious Red Monkey Livery','Paints','UNDEFINED','963d7a97-a4a3-4ab1-8e49-cde15f90728c','','','Seek peace and prosperity in the new year with the Auspicious Red Monkey livery. Outfit your ship with this bold red base paint complemented by gold accents and a stylized graphic of a monkey\'s head.'), +(3857,'FullBlock','Shield','UNDEFINED','6a4d4eb2-dacd-4b04-b17f-e7a02ea7e744','','','Item Type: Shield Generator\nManufacturer: Gorgon Defender Industries\nSize: 3\nGrade: B\nClass: Military\n\nCrafted by former residents of Caliban, Gorgon’s FullBlock large shield generator has been repeatedly put to the test by members of the military and public. That means you can count on it regardless of what you come up against.'), +(3858,'Emod \"Tweaker\" Stabilizer2','WeaponAttachment','Barrel','bf838dcb-31d5-4c8d-8550-90f09a581619','','','Manufacturer: ArmaMod\nType: Energy Stabilizer\nAttachment Point: Barrel\nSize: 2\n\nHeat: -80%\nAim Recoil: +40%\nVisual Recoil: -15%\nDamage: +12.5%\nAmmo Consumption: +100%\n\nArmaMod designed the Emod Stabilizer2 attachment to improve heat distribution and visual stability allowing for a more precise shot. This \"Tweaker\" version has been unofficially modified to do more damage at the cost of expending more energy.'), +(3859,'GLSN_Shiv_Thruster_Maneuver_Top','ManneuverThruster','JointThruster','e5dba05d-30d4-427e-8218-b45e37fcac06','','',NULL), +(3860,'Door Control','ControlPanel','DoorPart','5c5600a3-d034-4f1d-bf99-c24b273667a1','','',NULL), +(3861,'RSI_Aurora_GS_ES_Thruster_Retro','MainThruster','FixedThruster','f3253cd9-86cd-4937-9c11-5ccd0560fdd8','','',NULL), +(3862,'TwoStateAnimator_Control_SingleButton','Misc','Default','ff5ef785-0fc3-4139-a0d2-7febc1067f72','','',NULL), +(3863,'ColonialismAirlockInteriorStatusSign','StatusScreen','AirlockPart','82a6abbd-7422-4b15-b9d2-c48d16b20ef7','','',NULL), +(3864,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','32b6d76e-3d40-4c62-8676-b6b3f2226b5f','','','Joker Defcon - Noise Launcher'), +(3865,'Paint_Vanguard_Sentinel','Paints','UNDEFINED','ac7e8a3d-5ae2-4903-a95c-233280f80f29','','',NULL), +(3866,'BC-Grey Hat','Char_Clothing_Hat','UNDEFINED','70122ec2-892f-48c6-a4b4-ee0bdae3e023','','','A comfortable grey cadet hat.'), +(3867,'Chiron Legs Lifesaver','Armor','Legs','cc594239-b217-44ac-a80c-457cb6c253dc','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.5 µSCU\n\nBe the first on the scene with the Chiron armor. Designed to provide the essential protection that combat medics need, the armor features ultra-lightweight panelling to keep the wearer quick on their feet without compromising on safety. Crucial, high-impact sections have been reinforced with raised carbon plating on top of a highly durable polyfiber for maximum flexibility.\n\nThe Lifesaver edition was styled for first responders to be highly visible. The teal, white, and red color scheme features a medical cross symbol across the chest and helmet.'), +(3868,'AEGS_Door_Decal_Airlock_02','Decal','DoorPart','262a4d82-d690-462d-8b49-43e11f1ef565','','',NULL), +(3869,'Door','Door','UNDEFINED','af8569e8-c1f7-47d5-a4bc-2dec0134a845','','',NULL), +(3870,'CRUS_Spirit_Thruster_Mav_Front','ManneuverThruster','UNDEFINED','b4f2541e-d6b7-4c9e-a85c-bff84d2f6bf1','','',NULL), +(3871,'AAT-34 Turret','Turret','MannedTurret','a9a32fce-b615-40a8-b06e-2850484b2341','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(3872,'ANVL_Hornet_F7C_Thruster_Main','MainThruster','FixedThruster','d77bfb0e-976e-4ecc-9949-a4d4be91f47a','','',NULL), +(3873,'Clempt Pants Violet','Char_Clothing_Legs','UNDEFINED','fe1d5689-24ed-43ae-8b92-260dbf5268db','','','Carrying Capacity: 2K µSCU\n\nStegman\'s factory pants have been taken to the next level with the Clempt line. These rugged all-purpose pants come with double knees for extra comfort and protection and are made from tough composite weave fabric to last as long as the work needs.'), +(3874,'Hi&Tight Shoes','Char_Clothing_Feet','UNDEFINED','f7ae1654-4eae-4627-a276-169fa67d40aa','','','Take your next step in these versatile high-tops from NorthStar. The Hi&Tight\'s cut an intriguing profile by blending nylon and microweave fabric with a vulcanized rubber soul, padded collar, and cross foot fastening strap.'), +(3875,'Golden Medmon','Cargo','Cargo','70679112-0cca-4af6-9740-51b9f2a146a7','','',NULL), +(3876,'Diamond','Cargo','Cargo','3887400b-3d5c-4888-afcf-3aca71969e37','','',NULL), +(3877,'MISC_Hull_C_FoldingStrut_2B','Cargo','UNDEFINED','9015695b-3ad1-4960-a7fb-bc66d3d522d8','','',NULL), +(3878,'Beacon Undersuit Orange/Black','Armor','Undersuit','d37d2a59-4d6f-4d0c-8fce-658037418382','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRSI\'s Beacon undersuit is a general use utility designed to provide total protection against environments and vacuum. Built out of a durable but flexible polymers, the Beacon provides a wide freedom of motion for a variety of body types.'), +(3879,'Inquisitor Legs Neon Pink','Armor','Legs','415b30c0-9c1c-4a11-82fc-410e0ca50d5b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(3880,'counter_office_1_straight_02x0075x01_a','Misc','UNDEFINED','7fdb845b-424d-451d-b018-9c4ac86cb690','','',NULL), +(3881,'Corbel Legs Mire','Armor','Legs','f9c95695-1aff-4963-8432-f43fe65249be','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nOriginally designed as a strength enhancement suit to give factory workers better lifting power, CDS found wider application in utilizing its defensive capabilities. It\'s triple-enforced armor plating provides extreme physical protection, with deliberate placing of materials to protect the most vulnerable parts of the body. A series of pneumatic levers offer increased flexibility in the joints, alleviating pressure and weight in key areas to create an accessible and highly protective armor despite its heavy weight.\n\nThe Mire edition features natural greens and industrial grays.'), +(3882,'Mustang Delta Livery','Paints','UNDEFINED','411a40cb-c19b-4893-9a98-ecca2023e311','','','Standard livery for the C.O. Mustang Delta.'), +(3883,'KRON_LaserCannon_Barrel_S2','WeaponAttachment','Barrel','66e05cc5-64e5-412b-8620-607f27ba4e5a','','',NULL), +(3884,'Clempt Pants Tan','Char_Clothing_Legs','UNDEFINED','8de158da-dba4-4bb4-930f-79c48ce432ef','','','Carrying Capacity: 2K µSCU\n\nStegman\'s factory pants have been taken to the next level with the Clempt line. These rugged all-purpose pants come with double knees for extra comfort and protection and are made from tough composite weave fabric to last as long as the work needs.'), +(3885,'Mala','Cargo','Cargo','7479eefc-35e1-4608-9a08-9dc80a5bc0b0','','',NULL), +(3886,'Tevarin War Service Marker (Worn)','Misc','Trophy','2bd06ca1-5b8b-4480-a349-f871a3c5688c','','','A service marker awarded by the United Planets of Earth (UPE) to all members of the military who served during the First Tevarin War. Though many were produced in their time, those numbers have dwindled significantly and collectors are eager to pick up any found. This marker is considered in worn condition due to the corroded state of the metal and etchings.'), +(3887,'Carryable_1H_CY_bottle_bar_14_mixer_a','Misc','UNDEFINED','eaf7bf35-86e6-4373-a0d5-f8ed2cf9de49','','',NULL), +(3888,'ORC-mkV Core (Modified)','Armor','Torso','2cb38f8b-1e7a-4be9-b5b0-000fc1e5bd28','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nThis version of CDS\' ORC-mkV core has been modified from its original form. Dependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(3889,'Lillo Pants White','Char_Clothing_Legs','UNDEFINED','44139e7a-2b48-413f-b42e-9797b2dbda6e','','','Carrying Capacity: 0.5K µSCU\n\nThese slim cut pants from Fiore give you a tailored feel at a fraction of the cost. Built from space-age weaves, the Lillo are a low maintenance, high impact addition to your office wardrobe.'), +(3890,'DockingTube_Fuel_Ports_AEGS_Javelin','DockingCollar','UNDEFINED','a70b02e0-8aec-4e06-9b54-2512c91eb1e9','','',NULL), +(3891,'Quartz','Cargo','Cargo','ab76b57c-692c-4de5-a917-eefd2ea4ccbd','','',NULL), +(3892,'Concept Shirt Sienna','Char_Clothing_Torso_0','UNDEFINED','f4bc642d-fdce-4f7b-b7fa-cc0ce0e49208','','','This crisp, versatile button-front shirt from Fiore is made with cutting edge stain resistant and wrinkle-free technology, guaranteeing that you stay professional at all times.'), +(3893,'Seat','Usable','UNDEFINED','be897cd5-1aab-4d72-8256-de90c0a758f2','','',NULL), +(3894,'Balor HCH Helmet Tan','Armor','Helmet','6c8e29e3-a183-443f-9b8f-47275b689600','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. Visor is AR crosshair compatible.'), +(3895,'ANVL_Pisces_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','209d1e68-5c23-44ef-9f24-09213df1cbc4','','',NULL), +(3896,'Red Wind Hat','Char_Clothing_Hat','UNDEFINED','0d94a5a8-a282-41bb-a898-c04acb4b9da3','','','A gray cadet hat with Red Wind Linehaul\'s name and logo emblazoned across the front and back panels.'), +(3897,'Internal Tank','QuantumFuelTank','QuantumFuel','2a5facb1-6bc2-4b7c-95cd-59f665929eb6','','',NULL), +(3898,'AcryliPlex Composite','Cargo','Cargo','fdb8babe-470b-49be-b5b4-034ea606cc22','','','This composite is a moldable material used in the construction of explosives. In addition to being commonly used in demolition applications for heavy industry and mining, it is also used to create small potent warheads. Care must be taken while transporting larger quantities of the composite as it is impact and heat sensitive.'), +(3899,'Strata Helmet ArcCorp Edition','Armor','Helmet','ebd17800-785d-4743-a52b-27dabc6faf64','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design features high quality materials and a next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The ArcCorp Edition was made specifically for the company.'), +(3900,'Li-Tok Boots White','Char_Clothing_Feet','UNDEFINED','20b0fb2e-fe01-4099-948b-69414127a08e','','','Stylish yet rugged, NorthStar\'s Li-Tok boots are made from a composite nylon fabric, vulcanized rubber grips that hold fast to a variety of surfaces, and reinforced ankle support making these perfect for hanging out or on the job.\n\nWomen\'s sizes currently out of stock.'), +(3901,'Musaka Burrito','Food','Junk','2a4ca069-db0b-4f54-bbdc-087c488d87b8','','','NDR: 34\nEffects: Dehydrating\n\nThis satisfying burrito features a tortilla wrapper filled with spiced vegetables and lentils in a creamy sauce.'), +(3902,'ASAD_DistortionRepeater_Ventilation_S1','WeaponAttachment','Ventilation','1c4acda3-bf69-40a9-bf9e-5b302485888f','','',NULL), +(3903,'Scorpius IceBreak Livery','Paints','UNDEFINED','99e3d509-40b8-4918-a264-754b928ea7e5','','','Equip your Scorpius with a paint scheme cooler than a snow storm. The IceBreak livery mixes crisp, cool white with a frostbitten blue for an exciting look suitable for any season.'), +(3904,'Seat','Usable','UNDEFINED','f2465ae9-0cb6-4425-990e-cf383514f30d','','',NULL), +(3905,'Weapon_Ship_Cz_007','Usable','UNDEFINED','9ce11781-40ca-4199-9a3a-8f8b852eb1ae','','',NULL), +(3906,'Chiron Arms','Armor','Arms','0ab89717-e3bc-42e4-b610-f01895d0f2dc','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBe the first on the scene with the Chiron armor. Designed to provide the essential protection that combat medics need, the armor features ultra-lightweight paneling to keep the wearer quick on their feet without compromising on safety. Crucial, high-impact sections have been reinforced with raised carbon plating on top of a highly durable polyfiber for maximum flexibility.'), +(3907,'Torreto Shirt','Char_Clothing_Torso_0','UNDEFINED','b08f6c29-ca06-4b37-99fd-d9cebb1dee07','','','A versatile addition to your wardrobe, this classic button down has double breast pockets, a spread collar, and pairs beautifully with an simple black tie.\n\nWomen\'s sizes currently not available.'), +(3908,'ORIG_890_Jump_Thruster_Retro_L','ManneuverThruster','FixedThruster','60b40cc3-939a-4ebd-b6fc-79f557c5fe92','','',NULL), +(3909,'Cyclone Slipstream Livery','Paints','UNDEFINED','4d1be26a-7b77-4f6a-b787-78e7c1f268d8','','','The Slipstream livery will have your Cyclone ready and raring to race with this sleek blue and white paint scheme.'), +(3910,'MissileRack_Medium_Rattler_NOVP','Usable','UNDEFINED','767f7956-1040-4284-b81d-35173dd41366','','',NULL), +(3911,'MISC_Hull_C_Thruster_Mav_Fixed','ManneuverThruster','JointThruster','997fd938-ff55-4dce-a86b-8bee78c43f01','','',NULL), +(3912,'Weapon_Rack_1_BEHR_Rifle_1_AmmoOnly_001','Usable','UNDEFINED','8bbe73c3-1f64-4068-84a8-377a210452e0','','',NULL), +(3913,'Door Control','Door','UNDEFINED','273e9538-11cf-424b-8692-c664ed5b4911','','',NULL), +(3914,'Access','SeatAccess','UNDEFINED','971927a8-9768-42ba-9908-a47ba98b49c0','','',NULL), +(3915,'FP_Visor','Visor','UNDEFINED','b48e460e-6809-4547-a7b1-3ebb3c5930ac','','',NULL), +(3916,'VariPuck S6 Gimbal Mount','Turret','GunTurret','40e08fff-cc9f-4cc6-9194-6f70a7f261d6','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 6\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(3917,'Deadbolt I Cannon','Weapon','Gun','3727a5ce-bf98-43a7-a96e-c0ffedd071d0','','','Manufacturer: Esperia\nItem Type: Ballistic Cannon \nSize: 1\n\nSpread dread with the Deadbolt I ballistic cannon. Feared for its firepower at short range, this notorious Tevarin weapon earned its intimidating reputation during the First Tevarin War as part of the Tevarin fleet\'s devastating arsenal. Esperia has painstakingly recreated the Deadbolt I out of respect to the original weapon and warriors who used it so effectively.'), +(3918,'Guardian MX Missile Rack','MissileLauncher','MissileRack','4dabd575-d029-c1dc-b7bf-f308bf5e8bb3','','','Item Type: Missile Rack\nManufacturer: Mirai\nSize: 2\nMissiles: 12x S02\n \nBespoke missile rack for the Mirai Guardian MX that fires twelve S2 missiles.'), +(3919,'facial_hair_025','Char_Head_Beard','UNDEFINED','88c8eee7-42cf-4baf-8286-c736a2c1bd93','','',NULL), +(3920,'Vehicle_Screen_MFD_Holographic_MISC_Reliant_MR','Display','UNDEFINED','36a10b83-7380-4289-986f-6513de18aafe','','',NULL), +(3921,'Radar_Display_XNAA_Nox','Display','UNDEFINED','ae18fef4-e273-4668-8b40-d96131a669a9','','',NULL), +(3922,'Avenger Kepler Livery','Paints','UNDEFINED','c5d95f90-5523-436f-ba60-1ee3fc188736','','','To honor the brave explorers that brought us to space and support those currently seeking new frontiers, the Interstellar Cartography Center (ICC) commissioned this special livery for the Avenger. Named in honor of famed astronomer Johannes Kepler, the livery mixes dark blue and orange with black highlights. All proceeds from the sale of the Kepler livery goes directly to the ICC to support their efforts in \"Charting the Way Ahead.\"'), +(3923,'ReadyMeal (Chicken Dinner)','Food','Sachet','be45144f-da39-4897-a695-7a7a7712fb6b','','','NDR: 60\nEffects: None\n\nThe classic taste that\'s all you need, this Chicken Dinner from ReadyMeal features roast-flavor chicken paired with ferns and cassava mash all ready-to-eat in seconds.'), +(3924,'ARMR_MISC_Fury_LX','Armor','Medium','4858c2a1-d9be-4ef6-81f6-7d1f5228af78','','',NULL), +(3925,'RSI Default JetPack','Suit','ThrusterPack','3a03f47d-45a0-41d9-9891-3bda551913a0','','','<-=MISSING=->'), +(3926,'Omarof (16x Telescopic)','WeaponAttachment','IronSight','60cf7fd7-9e89-4e00-be45-74afc00890a2','','','Manufacturer: Lightning Bolt Company \nType: Telescopic\nAttachment Point: Optic \nMagnification: 16x\nAim Time: +0%\nSize: 3\n\nGet a crystal clear view of distant targets with this powerful telescopic scope from Lightning Bolt Company. Designed specifically for the Atzkav Sniper Rifle, the Omarof uses ultra-precise laser etched lenses that are then multi-coated to allow for high light transmission, wide sight picture and crisp colors, providing strikingly sharp images across significant distances.'), +(3927,'RSI_Bengal_SCItem_Seat_Remote_Turret_Phalanx','Seat','UNDEFINED','1dd10d60-4d8c-41ab-b90e-6ad3bd8b3f54','','',NULL), +(3928,'un_box_plastic_1_berries_d','Misc','UNDEFINED','5fa51a64-50f3-4c8c-b2e8-0bb2a4da4edb','','',NULL), +(3929,'Carryable_1H_CY_garnish_sugarcube_1_a','Misc','UNDEFINED','94d05040-59ee-483d-aaf9-c45eb5140091','','',NULL), +(3930,'Alban Shirt Sage','Char_Clothing_Torso_0','UNDEFINED','bee7f1ef-3e54-4522-a4ff-fa48581fb8bc','','','The Alban is a long sleeve shirt made from comfortable, natural fabrics. Featuring a deep V-neck, its asymmetrical patchwork design provides it with a bit of texture and a two-toned look.'), +(3931,'RAFT Hazard Livery','Paints','UNDEFINED','ca68467f-43ef-4b34-8764-17a1373deeab','','','Black with yellow highlights, the Hazard is another great livery option for the Argo RAFT.'), +(3932,'ORC-mkV Core Black','Armor','Torso','da4b51b9-b8c1-457a-a146-cbee110bb9e6','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(3933,'MISC Reliant - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','6dfc8798-6296-4d37-976a-9ef9edb67b05','','','MISC Reliant - Decoy Launcher'), +(3934,'Hawk Invictus Blue and Gold Livery','Paints','UNDEFINED','9c9da622-ff3f-4d62-b322-681fc6e6ceb0','','','Featuring a vibrant blue base color and gold highlights, the Invictus Blue and Gold livery will give your Hawk a striking style.'), +(3935,'Apollo Frontline Livery','Paints','UNDEFINED','3dd89b6c-69f5-4826-97b2-e493f89c051c','','','Make the Apollo more discreet with the Frontline livery, which turns the front half grey with a white back half and red highlights.'), +(3936,'Morningstar Helmet Black Steel','Armor','Helmet','a8d6d619-15f8-4f9e-9bee-28f9ea0b2dce','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(3937,'SNS-R6','Radar','MidRangeRadar','809c5792-ae9b-4a09-8fd2-0001296dfc9b','','','Item Type: Radar\nManufacturer: Nav-E7\nSize: 1\nGrade: C\nClass: Competition\n\nIncreased power and performance makes the SNS-R6 stand out from other radars in its class. Get yours today to see why pilots the Empire over love components from Nav-E7 Gadgets.'), +(3938,'Barbican','Shield','UNDEFINED','e538a97f-d9cd-4997-9f43-11450e364af1','','','Item Type: Shield Generator\nManufacturer: Basilisk\nSize: 3\nGrade: B\nClass: Industrial\n\nBarricade your ship against external forces with the Basilisk Barbican. Originally fabricated for large industrial vessels, this shield generator has became quite popular due to its high damage absorption.'), +(3939,'MISC_Fury_MX_Thruster_FixedMav','ManneuverThruster','FixedThruster','eb3df482-b9db-4c37-85f1-59e542cea69d','','',NULL), +(3940,'9-Series Longsword Cannon','Weapon','Gun','85fd75f8-6c6c-4d3f-839f-988ae7660617','','','Manufacturer: KnightBridge Arms\nItem Type: Ballistic Cannon\nSize: 1\n\nThe entry level autocannon of the KnightBridge Arms Sword-line, the 9-Series Longsword fires a ballistic round designed for use against a variety of armored hostiles while allowing pilots to keep a healthy distance from targets.'), +(3941,'Remote Turret','Turret','GunTurret','b0d5b5ee-6397-4133-81ba-5c35ff8d110a','','','Remote Turret'), +(3942,'Fortifier Helmet Dark Green','Armor','Helmet','57a903e4-44a7-4af1-aebe-939af5718ab2','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nProtect your most valuable asset with the Fortifier. Intended for extremely hostile environments, this heavy helmet makes up for its limited visibility with extra plating that protects the neck and back of the head.'), +(3943,'ORC-mkV Legs Green','Armor','Legs','004c9406-31c4-45d4-a052-2d2453315726','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(3944,'Vehicle_Screen_MFD_Holographic_MISC_Razor_R','Display','UNDEFINED','f711cddb-4036-43f2-80eb-183305c60b5a','','',NULL), +(3945,'Door Control','ControlPanel','DoorPart','5b0835d5-32e8-46a7-8018-44ef744fbe94','','',NULL), +(3946,'AEGS_Sabre_Raven_Thruster_Main','MainThruster','FixedThruster','3b6c544c-8c35-48cb-9366-8948444fe00b','','',NULL), +(3947,'Pite','Char_Head_Piercings','UNDEFINED','f2d7de1c-c0fc-444e-a68d-e072238ce7c9','','',NULL), +(3948,'Radar_Display_Lighning_F8','Display','UNDEFINED','32825158-05c7-4ad3-914c-4671a8f145e1','','',NULL), +(3949,'Seat','SeatAccess','UNDEFINED','f41074e0-750b-47a0-9a2a-9d3000e06b68','','',NULL), +(3950,'One Light Cap Red','Char_Clothing_Hat','UNDEFINED','58f93ac5-24c5-4e87-a016-0622938bc869','','','Are you looking for the perfect Luminalia gift? City Lights has you covered with this soft and snug woven cap that not only keeps your head warm but shows off your holiday spirit.'), +(3951,'Weapon_Rack_1_Slot_ARGO_GadgetSmall','Usable','UNDEFINED','b6ed15bc-7042-4832-9467-ca287d5ef9a3','','',NULL), +(3952,'Door Control','Door','UNDEFINED','1846dd91-7cc5-42cb-a863-273e698d2967','','',NULL), +(3953,'Pulverizer LMG','Weapon','Medium','bca92494-a6de-4a81-880c-a9f7bb10427a','','','Manufacturer: Unknown\nItem Type: LMG\nClass: Ballistic\n\nMagazine Size: 120\nRate Of Fire: 355 rpm\nEffective Range: 100 m\n\nNothing like ripping through a huge mag of .50 cal bullets to scare away unwanted guests. Based on a modified FS9, the Pulverizer LMG wastes no time with pleasantries, instead lends itself to a more direct confrontational approach.'), +(3954,'BEHR_LaserCannon_SF7E_Ventilation_S7','WeaponAttachment','Ventilation','f796a210-e6cd-4aae-a63f-4d681cb947e7','','',NULL), +(3955,'Bed','Usable','UNDEFINED','daf5fe7f-a175-4061-bfc8-8ce1a1a7ad7f','','',NULL), +(3956,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','fd1d366c-7154-4bf1-a2ba-1f0445073224','','','Joker Defcon - Noise Launcher'), +(3957,'Seat','SeatAccess','UNDEFINED','8f709892-c99d-4b4b-93eb-846b831cf877','','',NULL), +(3958,'ESPR_LaserCannon_FiringMechanism_S2','WeaponAttachment','FiringMechanism','461705a6-0835-4f9f-beae-443ab67b0d98','','',NULL), +(3959,'Aslarite (Raw)','Cargo','Cargo','bd1093ce-b47d-4447-92e7-55de23746de5','','',NULL), +(3960,'Parallax \"Hurston\" Energy Assault Rifle','Weapon','Medium','5e6640fc-f841-4335-b09a-2e95633a5f69','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Assault Rifle\nClass: Energy (Electron)\n\nBattery Size: 80\nRate of Fire: 200 rpm - Beam\nEffective Range: 30 m\n\nAttachments: Optics (S2), Underbarrel (S2)\n\nWith the Parallax, VOLT offers consumers a rugged assault rifle design with features like a larger-than-average battery and a unique actuator that enables the weapon to scale up into a persistent beam as it fires. This special edition features Hurston branding.'), +(3961,'FBL-8a Legs Justified','Armor','Legs','07429259-869a-492f-9580-ac277381cf53','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nBased on CDS\' FBL-8a combat armor, this set has been modified from its original form. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible.'), +(3962,'Door Control','ControlPanel','DoorPart','ade68cdb-6381-4341-9e45-2ae8de03b49e','','',NULL), +(3963,'Argos IX-G Torpedo','Missile','GroundVehicleMissile','ace7d6e1-63d3-484a-a707-a88f240d40e5','','','Manufacturer: Talon \nTracking Signal: Cross Section \nSize: 9 \n\nThe Talon Argos strike torpedo features a classic, straightforward design that relies on exacting manufacturing standards and a classic cross section targeting system. Note: This missile may only be launched by ground vehicles.'), +(3964,'Seat','SeatAccess','UNDEFINED','9aaa3ef3-4742-401e-987b-f89aaf29db1c','','',NULL), +(3965,'PH - eld_shirt_04_01_fleetweek2022','Char_Clothing_Torso_0','UNDEFINED','5c389744-d866-4d9f-9e56-c2db595b77db','','','PH - eld_shirt_04_01_fleetweek2022'), +(3966,'Anvil Decoy Launcher','WeaponDefensive','CountermeasureLauncher','431c475f-fde9-4191-a3e0-c8c6f994c2e5','','','Anvil Decoy Launcher'), +(3967,'Carryable_TBO_FL_8SCU_Commodity_ProcessedGoods_EvidenceBox','Cargo','Cargo','d136429d-616a-47fd-a402-c6b15b091887','','',NULL), +(3968,'rack_gun_size_1_01x0075x00375_1_a','Misc','UNDEFINED','d265f5fb-5559-440a-9dfd-8b4babf51e4f','','',NULL), +(3969,'ORIG_300i_Dashboard_Pilot','SeatDashboard','UNDEFINED','655e4c1d-ed22-442e-a6f0-4c657a334c3e','','',NULL), +(3970,'BEHR_LaserCannon_Ventilation_S8','WeaponAttachment','Ventilation','b88f06c0-c87f-423b-b789-be56bc7b6bb1','','',NULL), +(3971,'Seat','Usable','UNDEFINED','94f802da-7ca6-4d89-8edb-bc5ab99231f7','','',NULL), +(3972,'resource_relay_switch_col','ControlPanel','Utility','fe57234e-e3ca-466c-846a-6ab4b255a99f','','',NULL), +(3973,'Pite','Char_Head_Piercings','UNDEFINED','abbd0492-dde2-449e-8bbe-767578152b4c','','',NULL), +(3974,'Seat','SeatAccess','UNDEFINED','3aacfb12-02e3-4ea8-8881-1cf3c3ec4e0c','','',NULL), +(3975,'Chiron Helmet Heartthrob','Armor','Helmet','65186f45-991f-4fd1-90a0-799032766c8f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nUtilizing a crystal clear protective glass treated with a specialist hydrophobic glaze, the Chiron light helmet was purpose built to protect against fogging and glare, guaranteeing that first responders will retain complete vision in emergency situations.\n\nThe Heartthrob edition is a dreamy, shimmering violet adorned with bright digital hearts; perfect for making friends and foes weak in the knees.'), +(3976,'VariPuck S3 Gimbal Mount','Turret','GunTurret','bdf30572-299e-476a-a552-bfcfa9619f0a','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 3\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(3977,'RSI_Apollo_Docking_Collar_Small','Door','UNDEFINED','4f4583f7-6317-d409-861d-32a872c52a8f','','',NULL), +(3978,'XTR-XL Module','MiningModifier','Gun','a0595561-6252-4340-bd02-c9a748e2fe7b','','','Manufacturer: Greycat Industrial\nItem Type: Mining Module (Passive)\n\nOptimal Charge Window Size: +25%\nInert Material Level: -6%\n\nExtraction Laser Power: 95%\n\nThe XTR-XL Module creates a wider mining window for deposits. It also makes the extraction laser less powerful so it can filter out more inert materials.'), +(3979,'VariPuck S2 Gimbal Mount','Turret','GunTurret','7fedca61-dfeb-4ecb-b421-e7c3ba55a584','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 2\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(3980,'Iodine','Cargo','Cargo','fb219d2e-4a77-4dfb-91c3-a1df01b3e8ac','','',NULL), +(3981,'Weapon_Rack_Cz_009','Usable','UNDEFINED','4a7de8b3-14a0-4ce5-a43e-8979ee7b4e79','','',NULL), +(3982,'MISC_Door_Decal_Hull_A_Bridge','Decal','DoorPart','af3d2f5a-9269-4355-8edf-20ab30a13558','','',NULL), +(3983,'tool_hacksaw_1_a','Misc','UNDEFINED','ab03bf41-6133-4950-8f29-cec5ea59d5be','','',NULL), +(3984,'MacFlex Arms Yellow','Armor','Arms','24d0f59a-85a1-427e-b905-28f054f54295','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(3985,'Party Favors','Cargo','Cargo','c7e29cc3-97ff-46b4-a7bf-f8a4a8a4d2ba','','',NULL), +(3986,'Door Control','Door','UNDEFINED','c7441b35-dbce-45c1-a31c-bcaf2e78152f','','',NULL), +(3987,'Syulen Thlun Livery','Paints','UNDEFINED','727599b7-effe-411a-b848-3eb596389ef3','','','Make your Syulen stand out from the crowd with the Thlun livery that?s purple marbled with bronze accents.'), +(3988,'ESPR_Prowler_Ground_Refueling_Port','Door','UNDEFINED','41adb6bf-b552-428c-a8dd-6cf7520309cb','','',NULL), +(3989,'Animus \"Quite Useful\" Missile Launcher','Weapon','Large','577b8e82-5302-495b-b704-a78d11b7e77b','','','Manufacturer: Apocalypse Arms\nItem Type: Missile Launcher\nClass: Ballistic\n\nMagazine Size: 3\nRate Of Fire: 300 rpm (3 shot burst)\nEffective Range: 2 km\n\nAttachments: Optics (N/A), Barrel (N/A), Underbarrel (N/A)\n\nLift the Animus onto your shoulder and level the opposition on the battlefield. This missile launcher from Apocalypse Arms features a rotating barrel that quickly fires three missiles, making it the perfect weapon to obliterate ground forces or damage vehicles and small ships. When you need to sow destruction to save yourself, you can trust Apocalypse Arms to deliver. One of the many items Wikelo has acquired in his travels, the \'Quite Useful\' edition is a must have for any serious collector.'), +(3990,'SHIELDS','ShieldController','UNDEFINED','6ef70cc0-ad68-4d96-bad0-3d5ee87e12be','','',NULL), +(3991,'Anvil Lightning F8 Turret','Turret','BallTurret','338d10af-9b8f-4a4b-b0e2-a0ca99bb3781','','','Anvil Lightning F8 Turret'), +(3992,'display_box_plastic_4_weapon_opened_015x01x0025_a_1Port','ShopDisplay','UNDEFINED','75f57d97-6244-4d3d-af83-27af174fd954','','',NULL), +(3993,'ORIG_135c_Thruster_Main_Left','MainThruster','FixedThruster','2f622f4e-9ed2-4e10-a936-3acb9ac6dc8d','','',NULL), +(3994,'Gadget_Cabinet_kegr_fire_extinguisher_01_ground','Usable','UNDEFINED','87ad4758-f874-43e9-baf0-c3537686af13','','',NULL), +(3995,'Cutlass 2949 Best In Show Livery','Paints','UNDEFINED','9dff641f-1951-4ae6-bad5-59c5807f7c27','','','Customize your Cutlass with this special 2949 Best in Show livery.'), +(3996,'Seat','SeatAccess','UNDEFINED','3d29ad1d-b418-48c8-bd71-09c2a4422fbf','','',NULL), +(3997,'UNE Unification War Medal (Pristine)','Misc','Trophy','dc6265dd-c8f5-4d4e-a0c5-39a9d655a616','','','A campaign medal from the United Nations of Earth (UNE) military that commemorates meritorious service during the Unification Wars (2380-2384). Considered to be in pristine condition thanks to the bright colors still present in the ribbon and well-preserved etching on the medal itself.'), +(3998,'GP-33 MOD Grenade Launcher','Weapon','Medium','a6688dce-f8c7-4b73-b657-bd1e17f951d3','','','Manufacturer: Behring\nItem Type: Grenade Launcher\nClass: Ballistic\n\nMagazine Size: 6\nRate Of Fire: 40 rpm\nEffective Range: Variable (80m)\n\nAttachments: Optics (S1), Barrel (N/A), Underbarrel (S1)\n\nThe military-grade GP-33 MOD launcher fires 40mm grenades to clear rooms and flush out enemies behind cover thanks to Behring\'s precision design that primes each grenade to explode on impact.'), +(3999,'Lorville Blues T-Shirt','Char_Clothing_Torso_0','UNDEFINED','0a8662f7-3dac-49a0-8f12-c5c0eed60209','','','Lorville, come for the low wages and leave with a lethal respiratory condition. The Lorville Blues shirt celebrates the iconic, corporate-owned landing zone best seen with a plastic bag over your head.'), +(4000,'Torite','Cargo','Cargo','48044ce5-51fb-4a14-8505-58f158d43931','','',NULL), +(4001,'Eos','QuantumDrive','UNDEFINED','08a5bfdb-1972-421f-83fe-be03b7ac5222','','','Item Type: Quantum Drive\nManufacturer: RSI \nSize: 1\nGrade: C\nClass: Civilian\n\nThe Eos quantum drive has been a staple in the RSI product line for centuries. Its original design was so perfectly fine-tuned that it has remained basically unchanged since.'), +(4002,'Carryable_1H_CY_drug_painkillers_1_a','Misc','UNDEFINED','80782004-cc93-4b1f-a831-39c0d8f77b10','','',NULL), +(4003,'Aegis Gladius - Noise Launcher','WeaponDefensive','CountermeasureLauncher','ee1680f8-cb7b-4141-b354-7959642e8474','','','Aegis Gladius - Noise Launcher'), +(4004,'AirlockChipsetTemplate','Usable','UNDEFINED','90f98449-9389-4264-bc58-b5a9478a98c3','','',NULL), +(4005,'ANVL_Terrapin_Ground_Refueling_Port','Door','UNDEFINED','0b1bbc30-8ba0-4119-bbcd-9c2675b8aa53','','',NULL), +(4006,'LifeCure Medsticks','Cargo','Cargo','2a2888d5-bfd2-4428-bfd3-5e3ba02d5af8','','',NULL), +(4007,'Citadel Core Base','Armor','Torso','0b78eb45-6529-4646-aaa6-e052551301da','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure.'), +(4008,'MISC_Freelancer_CargoGrid_Mid','CargoGrid','UNDEFINED','87261520-ec8b-4dc7-987f-0fa510f8bd58','','',NULL), +(4009,'SoftLock_Terminal_Standard_Refueling_Ship','Display','UNDEFINED','15bf7725-f823-45e0-a775-262d2ab6e6e9','','',NULL), +(4010,'Door Control','Door','UNDEFINED','93e5e32b-cff9-416f-a788-e8e790be9488','','',NULL), +(4011,'Seat','SeatAccess','UNDEFINED','40f1dcd2-2ec1-441a-a0b1-06b295ed627a','','',NULL), +(4012,'RSI_Aurora_GS_LN_Thruster_Mav_Joint','ManneuverThruster','JointThruster','3942f020-ea8f-4f96-b9fc-66197f359d46','','',NULL), +(4013,'bottle_drink_1_sports_shop_3x5_a','ShopDisplay','Default','a4a486ef-a4e4-4232-a36e-833d5ed917f6','','',NULL), +(4014,'VNCL_Blade_Thruster_Retro_Fixed','ManneuverThruster','FixedThruster','514e1ff4-2813-41c8-b971-8aa1495ce688','','',NULL), +(4015,'un_box_plastic_2_berries_d','Misc','UNDEFINED','cdba87ce-cc0d-49a5-9045-3d3333abbe05','','',NULL), +(4016,'Railing_Straight_7m_Hurston_Lorville_Glass_A','Usable','UNDEFINED','c3144755-d634-4f08-b5a0-be06e7c1fa6a','','',NULL), +(4017,'Ravager-212 \"Scorched\" Twin Shotgun','Weapon','Medium','5eefc5ce-90e4-452f-81d2-d3b35e416c25','','','Manufacturer: Kastak Arms\nItem Type: Shotgun\nClass: Ballistic\n\nMagazine Size: 16\nRate Of Fire: 105 rpm\nEffective Range: 15 m\n\nAttachments: Optics (S1), Barrel (N/A), Underbarrel (S2)\n\nThe Kastak Arms Ravager-212 Twin shotgun earns its name from its unique dual-barrels that allow for multiple ammo types to be used in conjunction with each other for maximum tactical possibilities. The Scorched edition features a unique flame patina.'), +(4018,'Hephaestanite (Raw)','Cargo','Cargo','0ba01545-6338-47f9-912e-721db26e966e','','',NULL), +(4019,'Seat','Usable','UNDEFINED','34556cb1-7f42-4e6d-acab-4089e7a27ea3','','',NULL), +(4020,'MISC_Freelancer_MAX_Derelict_SCItem_Seat_Esc_Pod_Lower_Right','Seat','UNDEFINED','f484e2ea-91f3-420a-8519-fa5476ed4482','','',NULL), +(4021,'Novikov Helmet','Armor','Helmet','924ac206-9122-4584-8682-af7d61f56929','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -225 / 75 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nConfidently explore cold environments while wearing the Novikov. Caldera built the exploration suit with an advanced sensor suite that intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. Also featuring a bespoke helmet that integrates with the cutting edge life support system, those venturing across unknown terrain can count on the Novikov to help them survive the journey.'), +(4022,'Anvil Ballista S07 Missile Rack','MissileLauncher','MissileRack','af009bac-1965-402a-a922-0bf1d7e334af','','','Item Type: Missile Rack\nManufacturer: Anvil Aerospace\nSize: 7\nMissiles: 1xS7 \n\nBespoke missile rack for the Anvil Ballista that fires an S7 missile capable of massive destruction.'), +(4023,'Slickdry Waders Horizon','Char_Clothing_Legs','UNDEFINED','4eceb130-96be-4028-b0e5-6762df5f0321','','','Carrying Capacity: 400 µSCU\n\nThe popular Slickdry Waders by Alejo Brothers are a combination of pants and boots made of a synthetic hydrophobic material and ensure the wearer will stay dry even if just stepping out of a river.'), +(4024,'ORC-mkV Core Violet','Armor','Torso','317c1bbf-9a74-4ab9-b4fb-ed94e885b93f','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(4025,'Internal Tank','QuantumFuelTank','QuantumFuel','82e04230-ca72-4968-9ce5-bc5730ca0cba','','',NULL), +(4026,'AAT-34 Turret','Turret','MannedTurret','05c86e93-d70c-4e13-93c4-101035fab0de','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(4027,'Seat','SeatAccess','UNDEFINED','225962f4-5c35-4bbc-8221-e820bf7c76e6','','',NULL), +(4028,'Carryable_2H_CY_weight_barbell_bumperplate_1_10kg_b','Misc','UNDEFINED','a7d37039-b4fb-4cf4-a8a1-a5476262cac7','','',NULL), +(4029,'Avenger Ironweave Livery','Paints','UNDEFINED','e1500841-3547-4708-a6f6-1b1eb75e2a05','','','The Ironweave livery gives the Avenger a black hull with chrome highlights.'), +(4030,'Manned Turret','TurretBase','MannedTurret','c2d1b008-c900-4d59-bc8f-b10f5b46cdf0','','',NULL), +(4031,'San\'tok.yai Ocellus Livery','Paints','UNDEFINED','a0de8a47-6cc4-4aae-b615-b00f55f25f2a','','','The Ocellus livery adapts and updates the iconic colors and design used on some Tevarin ships to bring a striking new look to the San\'tok.yai. The livery adds a distinct red pattern to the fuselage while shimmering green covers the rest of the ship. Grey lines swoop across the entire ship to help break up its silhouette.'), +(4032,'Colonialism_Outpost_RN_Single_Fuel_Tank_Unit','FuelTank','UNDEFINED','8d4a1ddf-5f76-4466-9f1d-64d3e8fd32f5','','',NULL), +(4033,'LifeCure Medsticks','Cargo','Small','0dbe4f25-b0a7-4ec8-be91-d062ead3cc3d','','','The use of these imitation CureLife Medpens has resulted in numerous deaths.'), +(4034,'Internal Tank','FuelTank','Fuel','e7e4320c-205d-4364-8b02-73d2f22ab5b8','','',NULL), +(4035,'Seat','SeatAccess','UNDEFINED','ab8099a2-136c-44d1-9950-7e759314d6c8','','',NULL), +(4036,'BEHR_BallisticGatling_Barrel_S5','WeaponAttachment','Barrel','f60327a2-8069-4869-88ec-73f302b5e451','','',NULL), +(4037,'CBH-3 Helmet Covalex Edition','Armor','Helmet','ad7d541d-27b1-4b69-ade2-3d38802066eb','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. The Covalex Edition was made specifically for the company. Visor is AR crosshair compatible.'), +(4038,'Manned Turret','TurretBase','MannedTurret','602edd53-525b-4e8a-96b3-6c28ac5011b1','','',NULL), +(4039,'Seat','Usable','UNDEFINED','d69d2dd9-a852-4aa4-af96-27e085248e6b','','',NULL), +(4040,'Bed_MISC_Starfarer_Captain','Usable','UNDEFINED','10216bf0-6748-4894-b423-747a3502e30a','','',NULL), +(4041,'sw_heavy_cold_helmet','Armor','Helmet','4d798f46-77a3-4891-99c2-0e4a3b95f1ce','','',NULL), +(4042,'INTK_RSI_Scorpius','FuelIntake','Fuel','b7260a81-e1e0-44db-a446-26c0b89b74e1','','',NULL), +(4043,'ORIG_300i_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','dcb2b2db-14bc-47a7-8246-e50bb1c92f08','','',NULL), +(4044,'can_drink_1_pips_d','Cargo','UNDEFINED','2a6515f2-48b9-451e-81bb-b0f4756209bf','','',NULL), +(4045,'MISC_Reliant_Mako_Seat_Station_Rear','Seat','UNDEFINED','698a7754-ee18-4390-8e5c-a2b83a5d4595','','',NULL), +(4046,'Salluq Mask Brown','Char_Clothing_Hat','UNDEFINED','960bf462-4df1-4179-8ae3-11b6835dc1fb','','','Made for hostile environments, the Salluq Mask keeps dirt, dust, and grit out of your eyes while providing you with a wide field of vision. Please note that this mask is not space-rated and should only be worn in naturally breathable environments.'), +(4047,'Geist Armor Core Forest','Armor','Torso','5d366ec5-3d1e-4434-b6c1-856527f2a1eb','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(4048,'Observer-Go','Radar','MidRangeRadar','f28b4e31-b9a2-4b39-8ede-7023985e6cf9','','','Item Type: Radar\nManufacturer: Chimera Communications\nSize: 1\nGrade: D\nClass: Industrial\n\nDesigned to be as accessible as possible, the Observer-Go is a strong entry-level radar for those that want to keep themselves informed without breaking the bank.'), +(4049,'400i Stormbringer Livery','Paints','UNDEFINED','fe83f9f3-32fc-4d06-aa43-9692b1e2a50e','','','Celebrate the 2951 IAE with this custom 400i livery. Blending blue and black with white accents, the paint scheme gives the ship an electric new look.'), +(4050,'Roughneck','PowerPlant','Power','9a5c71d4-12c0-4994-a41f-98b6e6018151','','','Item Type: Power Plant\nManufacturer: Juno Starwerk\nSize: 1\nGrade: D\nClass: Industrial\n\nFor its class, the Roughneck power plant from Juno Starwerk is an ideal component for haulers looking for maximum performance.'), +(4051,'Palatino Legs Daystar','Armor','Legs','c7fb0fc2-20b5-4c23-9a22-de9c7d5052d9','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower.'), +(4052,'Freeze','Cargo','Cargo','8dc26e83-f2b9-4f5d-a6d3-e30ad56c1905','','',NULL), +(4053,'Radar_Display_MISC_Fortune','Display','UNDEFINED','f0226a8e-ef96-4ea1-a366-36b5fab6b33d','','',NULL), +(4054,'Aril Arms Black Cherry','Armor','Arms','484908e5-38c3-432c-8600-233237b1f875','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(4055,'Carryable_1H_SQ_Datapad_Fluff_ContestedZone_FireRat_Prayer','Misc','UNDEFINED','c413d93e-c39b-4019-8845-474fa0a08957','','',NULL), +(4056,'Aurora Mk I IceBreak Livery','Paints','UNDEFINED','7ac0644e-6cf3-404a-a0bf-6feee7f1f469','','','Equip your Aurora with a paint scheme cooler than a snow storm. The IceBreak livery mixes crisp, cool white with a frostbitten blue for an exciting look suitable for any season.'), +(4057,'Door','Door','UNDEFINED','89f57cf2-786f-4739-a336-498584e7dd98','','',NULL), +(4058,'Seat','SeatAccess','UNDEFINED','6c32da61-061d-4ac7-a91f-35c3627f9123','','',NULL), +(4059,'Booth_Table_6Spots_01','Usable','UNDEFINED','16e79581-0a8d-4bbf-96ce-c5009bd9bf04','','',NULL), +(4060,'CRUS_Starlifter_Thruster_Mav_Front','ManneuverThruster','JointThruster','3e3a0224-e5dc-433a-b2a7-93c27b8110b5','','',NULL), +(4061,'GATS_BallisticGatling_Ventilation_S1','WeaponAttachment','Ventilation','5b1dc45f-10fb-4cb4-ad33-d4a416cf90a0','','',NULL), +(4062,'TrueDef-Pro Arms Silver/Gold/Grey','Armor','Arms','de20695c-eb2f-4b68-be6f-9806cbd205a7','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(4063,'Lindinium','Cargo','Cargo','490fc9fe-0b52-442e-964b-b91212aa9eba','','',NULL), +(4064,'Deadbolt II Cannon','Weapon','Gun','92f60837-933a-42dc-a7b0-473a337ffc13','','','Manufacturer: Esperia\nItem Type: Ballistic Cannon \nSize: 2\n\nSpread dread with the Deadbolt II ballistic cannon. Feared for its firepower at short range, this notorious Tevarin weapon earned its intimidating reputation during the First Tevarin War as part of the Tevarin fleet\'s devastating arsenal. Esperia has painstakingly recreated the Deadbolt II out of respect to the original weapon and warriors who used it so effectively.'), +(4065,'GAMA_Syulen_Thruster_Mav_Bottom','ManneuverThruster','FlexThruster','fdc4c280-3cb2-4d95-affb-8d787d965ccb','','',NULL), +(4066,'Size 4 Fixed Mount','Turret','GunTurret','c2af3f67-3ad7-4214-b502-4d00bb3df0b8','','','Size 4 Fixed Mount'), +(4067,'Fresnel Energy LMG','Weapon','Medium','af55f514-d7fd-49fd-89c8-6aee01f25859','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: LMG\nClass: Energy (Electron)\n\nBattery Size: 165\nRate of Fire: 550 rpm - 220 rpm\nEffective Range: 50m\n\nAttachments: Optics (S3), Underbarrel (S3)\n\nThe engineers at VOLT crafted the Fresnel LMG to bring a powerful energy weapon to the frontlines, one that can initiate a fight with a rapid spray of deadly blasts. As the weapon heats up, the shots become slower and more powerful, but be careful of overheating. A weapon of this magnitude demands a strong foundation; operators are encouraged to fire from a crouching position to allow for better recoil management.'), +(4068,'Bed','Usable','UNDEFINED','7f6297f8-e5b3-467a-b8b1-9f005b0b1fa7','','',NULL), +(4069,'Balor HCH Helmet microTech Edition','Armor','Helmet','0e5a402d-b8d1-41fb-9da8-a61719b6cfe5','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. The microTech Edition was made specifically for the company\'s security services. Visor is AR crosshair compatible.'), +(4070,'ORC-mkV Arms Covalex Edition','Armor','Arms','3d1c919f-a17b-4e58-9b4f-33634b50b292','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement. The Covalex Edition was made specifically for the company.'), +(4071,'Hurricane Polar Camo Livery','Paints','UNDEFINED','b8f1919c-bb4c-4ab6-a3c8-e124e2190f1b','','','Modify your Hurricane with this white and grey camo livery specifically designed for the 2950 IAE event on microTech.'), +(4072,'Quartz \"Hunter Camo\" Energy SMG','Weapon','Medium','ab93ef85-493c-4fb7-a9ff-bfc790f46ae3','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: SMG\nClass: Energy (Electron)\n\nBattery Size: 45\nRate of Fire: Beam\nEffective Range: 15-20 m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nManufacturer VOLT\'s Quartz SMG utilizes exciting new weapon technology that fires a short range beam that fractures into multiple beams the longer it fires, making it an extremely effective close quarter weapon.\n\nTan, dark brown, and black combine for the \"Hunter Camo\" edition of the weapon.'), +(4073,'RSI_Zeus_Wing_Bottom_Left','AttachedPart','UNDEFINED','d4f1fae8-b50c-400f-aea6-e7282df4e3b3','','',NULL), +(4074,'Door Control','Door','UNDEFINED','1d899c07-6a47-4427-b4d5-70564c3f9f64','','',NULL), +(4075,'ESPR_BallisticCannon_FiringMechanism_S1','WeaponAttachment','FiringMechanism','b4ffea3e-c321-491a-ba8b-086110c562c4','','',NULL), +(4076,'Gallant \"Red Alert\" Rifle','Weapon','Medium','4a1b92d4-103b-42b5-97b1-8dee5479e770','','','Manufacturer: Klaus & Werner\nItem Type: Assault Rifle\nClass: Energy (Laser)\n\nBattery Size: 45\nRate Of Fire: 450 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nDependable assault weapons never go out of style. Klaus & Werner maintains that tradition by unveiling the Gallant. This energy-based assault rifle is capable of providing accurate and sustained fire at targets up to medium range, while its high-capacity power system allows operators to fire considerably more shots per battery. The \"Red Alert\" edition mixes grey and a vibrant red for a bold and dynamic design.'), +(4077,'Morozov-SH Legs','Armor','Legs','805b6ef1-ee22-4a65-90fb-3ff610b843f4','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5K µSCU\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(4078,'volume_undersuit_01','Armor','Undersuit','cc27ee54-1638-4a97-afdd-3382c55fa8ef','','','@LOC_PLACEHOLDER'), +(4079,'Door Control','ControlPanel','DoorPart','d1ccddf6-f89e-47a8-82c7-46667350dfda','','',NULL), +(4080,'RSI_Meteor_Thruster_Main','MainThruster','FixedThruster','4bd15302-7f8d-43a7-a9af-c8862531ec6e','','',NULL), +(4081,'RangeFinder Jacket Arctic','Char_Clothing_Torso_1','UNDEFINED','228eef67-ec80-44ca-a6c8-dd962fe7d6b9','','','Carrying Capacity: 3K µSCU\n\nThis insulation outdoor jacket from DMC is lined with reinforced padding to provide durable comfort for everyday wear.'), +(4082,'GCD-Army Arms','Armor','Arms','2dc1d01b-1d2f-4b0a-b4b1-036fe5eaef4d','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nIn honor of the soldiers who protect the Empire, CDS has crafted this limited-edition armor that proudly displays the seal of the UEE Army. Its shell is composed of a durable composite on the outside and a soft core on the inside, designed to absorb the types of impacts associated with on-the-ground combat. The matching helmet features a UV-blocking faceplate that protects the wearer\'s eye sight as they fight on the front lines under strange suns.'), +(4083,'un_clock_1_a','Cargo','UNDEFINED','6783922c-017c-45f1-b977-6c5ad51a156d','','',NULL), +(4084,'ORC-mkV Core Dark Red','Armor','Torso','b570d867-d9be-4946-acca-a5d785cf06bd','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(4085,'Cutlass Coalfire Livery','Paints','UNDEFINED','39baa551-d593-4f6c-acb6-735bea4b124b','','','Keep your Cutlass looking sharp with the Coalfire livery that\'s primarily grey with red highlights.'), +(4086,'Razor Central Tower Livery','Paints','UNDEFINED','cdc8582e-e32d-49a8-9fb6-22d674b6fbf0','','','Give the Razor a dramatic new look with the Central Tower livery. The orange and black color scheme is inspired by the furnaces of industry powering Lorville, and also features a representation of the landing zone\'s iconic Central Headquarters and Shared Services Center, aka Central Tower.'), +(4087,'Defiance Helmet Charcoal','Armor','Helmet','6fa313c5-6259-4b6f-9a09-a8e84e9ab109','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Defiance features a fully enclosed battle helmet constructed with two layers of composite weaves underneath armor plating, providing you maximum protection against penetrating and concussive attacks. Visor is AR crosshair compatible.'), +(4088,'SNSR7','Radar','MidRangeRadar','c91b0d85-f839-4450-95a4-f98c00ea5e37','','','Item Type: Radar\nManufacturer: Nav-E7 Gadgets\nSize: 1\nGrade: B\nClass: Competition\n\nEngineered to give your vehicle the edge, the SNSR7 provides real-time tracking information on all surrounding emissions.'), +(4089,'fruit_tray_1_a','Misc','UNDEFINED','10e4700f-1184-4eb8-a214-5940bc5e9298','','',NULL), +(4090,'SalvageInternalStorage_RSI_Salvation','SalvageInternalStorage','UNDEFINED','8405e12d-52eb-4fb2-8093-865e1fce8dd6','','',NULL), +(4091,'Bannock Jumpsuit Green','Char_Clothing_Torso_1','UNDEFINED','edc6b651-1bf9-492d-b7e4-dd7d3abf8c45','','','Carrying Capacity: 1K µSCU\n\nThe Bannock jumpsuit combines comfort and durability. It features reinforced padding in critical areas, plenty of storage, and an adjustable belt to ensure a snug fit. Its unique design also includes a built-in secondary layer, allowing the wearer to unzip and cool down without fear of damaging their everyday clothes.'), +(4092,'Harvestable_Meat_1H_KopionMeat','Misc','Harvestable','3f78ffc3-40fb-46cb-aa65-21f61478736b','','',NULL), +(4093,'ORC-mkV Legs Red','Armor','Legs','99202bc9-5db7-4e0d-b8c6-7c038e8053ab','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(4094,'CRUS_Intrepid_Thruster_Main_Large','MainThruster','UNDEFINED','6a669d9e-8f26-468f-99a8-f89b9a19ba38','','',NULL), +(4095,'Weapon_Rack_MISC_Starlancer_TAC_1Slot','Usable','UNDEFINED','e9fefad1-3085-4be8-b4fd-233f99b0dc25','','',NULL), +(4096,'Compboard','Misc','Harvestable','46368312-37e3-4fb9-9eea-d8c3ac46b776','','','A main processing unit used inside various computers and electronics.'), +(4097,'Pite','Char_Head_Piercings','UNDEFINED','fbcae520-17d1-4a8e-817d-bbe864b8d1ad','','',NULL), +(4098,'Booth_Table_3Spots_01','Usable','UNDEFINED','a94e084e-7e53-4ef9-beba-54bfaf62d0e2','','',NULL), +(4099,'X1 Supersonic Livery','Paints','UNDEFINED','4acefded-90e4-4308-a923-1f364dc135f9','','','Infinity Custom worked with Origin to design the Supersonic livery for the X1. It is grey with orange highlights to accent the vehicle\'s streamlined design.'), +(4100,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','78b9fc9b-c496-4a1b-8f96-757d6fcab6a0','','','Joker Defcon - Noise Launcher'), +(4101,'GATS_BallisticGatling_Barrel_S1','WeaponAttachment','Barrel','c10d8c2d-44f5-4733-98d4-11fa1742f08b','','',NULL), +(4102,'Venture Arms Sienna','Armor','Arms','c70526fd-e4ac-4fd7-a62e-7fb1ea55f003','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(4103,'Remote Turret','Turret','GunTurret','cd9b2c2f-10cf-4fb4-bfd2-d425f7c74c9a','','','Remote Turret'), +(4104,'ANVL_Hornet_F7A_Dashboard_Pilot','SeatDashboard','UNDEFINED','0a7a5404-d004-47bf-b1c7-d6cf3e297349','','',NULL), +(4105,'Seat','SeatAccess','UNDEFINED','5ae6e0ab-91ad-497f-81cf-a6f3563bcba2','','',NULL), +(4106,'ANVL_Hornet_F7A_Mk1_Thruster_Retro','ManneuverThruster','JointThruster','d0dc6dfc-057b-4330-b0c8-0d60f74ff551','','',NULL), +(4107,'TaskForce I-G Missile','Missile','GroundVehicleMissile','ff25aeea-8b13-4502-80c5-7f065ab9a313','','','Manufacturer: Thermyte Concern \nTracking Signal: Electromagnetic \nSize: 1 \n\nVenturing into the weapons market, Thermyte Concern have pooled their extensive knowledge of demolition explosives to create the TaskForce. A lightweight EM tracking strike missile with a top-in-class propulsion system provides an efficient mixture of speed and firepower to establish battlefield dominance. Note: This missile may only be launched by ground vehicles.'), +(4108,'BEHR_BallisticGatling_FiringMechanism_S6','WeaponAttachment','FiringMechanism','c482ad77-f1da-4e74-938f-43f796bd6426','','',NULL), +(4109,'MISSILES','MissileController','UNDEFINED','36afeec1-61e5-4c02-9dc5-8e04474363d4','','',NULL), +(4110,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','0cc6bb0e-3178-4463-8f48-0e21ab3e0e31','','','Joker Defcon - Noise Launcher'), +(4111,'f_human_mannequin_environment_heavy','ShopDisplay','UNDEFINED','f600d351-bbfa-46b8-973e-6ab5f5d0d335','','',NULL), +(4112,'Tona Shoes Tan','Char_Clothing_Feet','UNDEFINED','94781c8f-eafc-4351-9bcb-b757502d96ec','','','Perfect for hiking or fieldwork, the Tona from R6 Pro is a low-top sneaker built out of breathable Cheofreme materials which not only provide extra protection against impacts, but keep your feet dry.'), +(4113,'MPUV-1T Standard Flight Blade','FlightController','UNDEFINED','ea32bd43-280d-4674-b3cd-920326245f9d','','','Manufacturer: Argo Astronautics\nType: Flight Blade\n\nThis is the standard issue flight blade for the Argo MPUV-1T.'), +(4114,'ARGO_MPUV_Thruster_Aux_Side','ManneuverThruster','FixedThruster','f75cef79-8ef2-4d29-9b90-a81a2e1a275e','','',NULL), +(4115,'ESPR_LaserCannon_FiringMechanism_S1','WeaponAttachment','FiringMechanism','efd33f90-38b7-47a9-a2da-4e47572e26d0','','',NULL), +(4116,'Theta Pro (8x Telescopic) ','WeaponAttachment','IronSight','fb88b0a1-b9f3-40cb-a683-509cf0e3641c','','','Manufacturer: NV-TAC \nType: Telescopic\nAttachment Point: Optic  \nMagnification: 8x\nAim Time: +0%\nSize: 3\n\nCarefully crafted and calibrated, the Theta Pro delivers precise and effective long distance combat engagement capabilities thanks to its powerful 8x telescopic sight.'), +(4117,'POWR_Carryable_JUST_S02_SCItem','Cargo','Small','54b2ca1a-2d59-4a0a-838d-40ef7199a6bd','','',NULL), +(4118,'INTK_ANVL_Asgard','FuelIntake','Fuel','c593cfe0-f1cd-4571-bbd3-1e89073acba3','','',NULL), +(4119,'MISC_Hull_A_Thruster_Retro','ManneuverThruster','FixedThruster','cf30f42b-3b95-4d2b-8463-935d01e7dfc4','','',NULL), +(4120,'DockingTube_Fuel_Ports_DRAK_Golem','DockingCollar','UNDEFINED','14c66267-8d11-4f21-91ef-c7a9d2a1271f','','',NULL), +(4121,'Iodine','Cargo','Cargo','efb6c7f4-ce53-433b-b782-968e663969a1','','',NULL), +(4122,'Argus Helmet Black/Grey','Armor','Helmet','eff1fe07-a393-44f1-a096-bd6df57c3350','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s Argus helmet utilizes advanced multi-layered composite construction to provide incredible protection from weapon fire as well as environmental hazards. The tinted visor offers a wide field-of-view to improve situational awareness and unrestricted movement.'), +(4123,'TruBarrier Hazard Suit Hi-Vis Yellow','Char_Clothing_Torso_1','UNDEFINED','a870e97f-75c7-4ba1-8ae0-7cd9ff975472','','','Carrying Capacity: 1K µSCU\nTemp. Rating: -5 / 32 °C\n\nGuard yourself from toxic environmental hazards with the TruBarrier Hazard Suit, constructed from industrial-grade fabric and coated with a multi-layered, laminated polymer that offers a broad range of chemical protection without sacrificing mobility. The encapsulated design provides full-body protection from direct contact with dangerous materials when worn with its accompanying mask.'), +(4124,'MOLE Carbon Livery','Paints','UNDEFINED','672152ba-394e-43ac-a368-16c50a3d16ee','','','The Carbon livery offers the MOLE\'s revered mining ability with a distinctive all-black finish.'), +(4125,'Paint_Hammerhead_NineTails','Paints','UNDEFINED','965dac76-6628-4496-a5fe-8bf15dff5017','','',NULL), +(4126,'Lynx Moonshadow Livery','Paints','UNDEFINED','6904b3fb-cb53-4845-aa53-d79e793b65f9','','','Switch up the look of the Lynx with the Moonshadow livery, which is primarily white with blue highlights.'), +(4127,'Seat','Usable','UNDEFINED','99eb0ad2-b87e-43b7-8221-fbdce56a18b2','','',NULL), +(4128,'SRV Lovestruck Livery','Paints','UNDEFINED','a979dbc0-1549-42d9-aec0-686a1b2e68c5','','','Inspired by the colors of Coramor, the Lovestruck livery is a stylish metallic pink and black look for your SRV.'), +(4129,'Mala','Cargo','Cargo','3f790519-270d-40ac-9e90-0bc56ee612b3','','',NULL), +(4130,'DRAK_Dragonfly_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','203d7b4e-69b2-465f-9dea-6f13077ec022','','',NULL), +(4131,'H_Dashboard_Projector_HUD_AEGS_Avenger','Display','UNDEFINED','813630ff-1c3c-4b4d-9939-eafee9ac54df','','',NULL), +(4132,'Paint_Cutlass_Black_Procyon','Paints','UNDEFINED','67d9ef3f-913b-46d0-b9b8-bc3898c012aa','','',NULL), +(4133,'Anvil Aerospace Hat','Char_Clothing_Hat','UNDEFINED','e3c42e35-2d1c-495f-baa5-226f662b4ab4','','','A dark green Anvil Aerospace cap that features metal eyelets on the side.'), +(4134,'Seat','SeatAccess','UNDEFINED','c4e20341-add8-47ff-bcbe-764648cf3835','','',NULL), +(4135,'Quarreler Cannon','Weapon','Gun','cfacea3e-afbc-405c-b220-2d1d3b6e20b1','','','Manufacturer: Kruger Intergalactic\nItem Type: Laser Cannon\nSize: 3\n\nCrafted with precision manufactured parts forged to extremely tight tolerances, designed for top-of-class heat management and assembled to exceed all industry standards, the Quarreler laser autocannon was created by Kruger Intergalactic for true defensive dependability.'), +(4136,'DRAK_Cutlass_Tractor_Carriage','Misc','UNDEFINED','e4ae90dc-dcc7-4731-8b29-379c4f478886','','',NULL), +(4137,'ANVL_Lightning_F8_Thruster_Main_White','MainThruster','FixedThruster','0258daca-4650-497e-838f-10506f8e2ddc','','',NULL), +(4138,'LeMarque Pants Imperial','Char_Clothing_Legs','UNDEFINED','6553d84f-d20e-42e5-84e5-77c91b9434b8','','','Carrying Capacity: 0.5K µSCU\n\nClassic cuts never go out of style. A staple of any wardrobe, Derion\'s LeMarque are built for work or play and feature microseam pleats and wrinkle-free material that will guarantee that you\'ll get years out of this classic.\n\nWomen\'s sizes currently out of stock.'), +(4139,'ARGO_ATLS_IKTI_ARGOS_Blanking_Plate','Misc','UNDEFINED','f5a2e579-3521-42b3-be80-4fc3025fb84a','','',NULL), +(4140,'BEHR_LaserCannon_FiringMechanism_S1','WeaponAttachment','FiringMechanism','ea6804c5-60b3-4118-a1d4-888571e57ec5','','',NULL), +(4141,'un_bowl_emptyl_1_a','Food','Consumable','60ccf7f0-9005-41c3-9ceb-c62bd2c75b40','','',NULL), +(4142,'AEGS_Door_Decal_Bridge_Brig','Decal','DoorPart','9b4ba8c5-8e4d-4261-82d2-7f2b7fd3d4ae','','',NULL), +(4143,'Helium','Cargo','Cargo','81a2c023-ade4-437c-a79e-d59a466f852c','','',NULL), +(4144,'Remote Turret','Turret','GunTurret','5ef2234d-bb9c-4730-bb00-416f0b0067de','','','Remote Turret'), +(4145,'Bed_ORIG_600I_Touring_Pod','Usable','UNDEFINED','133e9c64-ac3f-4809-9e39-b934d44f3aa6','','',NULL), +(4146,'SHIELDS','ShieldController','UNDEFINED','7aa59efc-1247-4728-a1bb-bdae52aa0cd4','','',NULL), +(4147,'IndVest Jacket Twilight','Char_Clothing_Torso_1','UNDEFINED','dbe68a17-ffdc-4ae0-96f3-260a7d22a40a','','','Carrying Capacity: 5K µSCU\n\nKeep your tools within easy reach with Stegman\'s IndVest. Made from industrial strength materials, this is a rare jacket that\'s both stylish and sensible.'), +(4148,'GATS_BallisticGatling_Mounted_FiringMechanism_S1','WeaponAttachment','FiringMechanism','d1035606-ed3b-415d-9a67-081b8810f87d','','',NULL), +(4149,'Clempt Pants Aqua','Char_Clothing_Legs','UNDEFINED','0d4f9ecf-e9df-47ac-88a3-e914b72e172e','','','Carrying Capacity: 2K µSCU\n\nStegman\'s factory pants have been taken to the next level with the Clempt line. These rugged all-purpose pants come with double knees for extra comfort and protection and are made from tough composite weave fabric to last as long as the work needs.'), +(4150,'Ermer Family Farms Chibanzoo Ice Cream','Food','Junk','30afcb8f-3afc-42c7-a860-34c630729823','','','NDR: 10\nEffects: Energizing, Hyper-Metabolic\n\nThis premium 100% real dairy ice cream blended with all natural chunks of Chibanzoo fruit is handcrafted by the skilled artisans at Ermer Family Farms.'), +(4151,'UNE Silver Ingot (Damaged)','Misc','UNDEFINED','fb9672f8-8f25-47ea-b90e-9f0702958375','','','A heavily damaged silver ingot cast by the United Nations of Earth (UNE). These ingots were used in areas of the UNE where technological issues often hampered secure and instant money transfers. Broken but still rare, an elaborate, textured pattern is still apparent on the ingot.'), +(4152,'Lillo Pants Black','Char_Clothing_Legs','UNDEFINED','c090a184-a48d-4706-b907-379ffdb81f4e','','','Carrying Capacity: 0.5K µSCU\n\nThese slim cut pants from Fiore give you a tailored feel at a fraction of the cost. Built from space-age weaves, the Lillo are a low maintenance, high impact addition to your office wardrobe.'), +(4153,'Door','Door','UNDEFINED','03b35358-4298-43bc-b29a-1675dd936d59','','',NULL), +(4154,'Agricium','Cargo','Cargo','6b701a3c-d5f0-4816-a143-f3af654b3f51','','',NULL), +(4155,'Morozov-SH Core (Modified)','Armor','Torso','c200f971-9e42-4f95-bdfb-498b493d13f2','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12K µSCU\nBackpacks: All\n\nThis version of Roussimoff Rehabilitation Systems\' Morozov-SH core has been modified from its original form. Featuring fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(4156,'Inquisitor Arms Yellow','Armor','Arms','52e9f375-3ff6-40a8-be01-4967e2db8db6','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(4157,'Ball','Char_Head_Piercings','UNDEFINED','aec75a05-516c-495a-a73f-47bfbc2acca3','','',NULL), +(4158,'Door','Door','UNDEFINED','334c7d8d-d80d-4d63-9e6a-a80c2c4de58e','','',NULL), +(4159,'RSI Constellation Side Missile Rack','MissileLauncher','MissileRack','4d2b4f8c-1f5c-4f17-8c84-24f52b43d01b','','','RSI Constellation Side Missile Rack'), +(4160,'Zeus MK II Solar Livery','Paints','UNDEFINED','c51a2f70-145d-4a28-83f3-c9262dc963f7','','','Primarily orange with a grey central line and highlights, the Solar livery for the Zeus Mk II was designed to match the colors of the iconic Zeus suit variant of the same name.'), +(4161,'SHIELDS','ShieldController','UNDEFINED','d9664edb-76aa-4136-8b05-023aea9b5b1f','','',NULL), +(4162,'100 Series Invictus Blue and Gold Livery','Paints','UNDEFINED','57f14363-ce4b-4b48-968e-451709a69ede','','','Featuring a vibrant blue base color and gold highlights, the Invictus Blue and Gold livery will give your 100 series ship a striking style.'), +(4163,'Li-Tok Boots Black','Char_Clothing_Feet','UNDEFINED','622465b1-7b08-4005-a063-67de13ea65be','','','Stylish yet rugged, NorthStar\'s Li-Tok boots are made from a composite nylon fabric, vulcanized rubber grips that hold fast to a variety of surfaces, and reinforced ankle support making these perfect for hanging out or on the job.\n\nWomen\'s sizes currently out of stock.'), +(4164,'CK13-GID Seed Blend','Cargo','Cargo','437ee7e4-5b68-44c3-bc8e-16bbe056323c','','',NULL), +(4165,'Testudo Helmet Turfwar','Armor','Helmet','9b8cd51e-a5f4-4b09-83cd-5ff6e729c8f3','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nKeep your eyes on the prize and your head protected with the Testudo helmet. It features a wide faceplate and a durable outer shell that protrudes above the forehead in a way specifically designed to absorb and efficiently disperse the energy of impacts.'), +(4166,'Helium','Cargo','Cargo','8e7313ba-d1e4-40d3-a232-f8addc9488ca','','',NULL), +(4167,'Venture Arms Olive','Armor','Arms','c2827125-8ac9-4135-a54c-800474257686','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(4168,'Seat','SeatAccess','UNDEFINED','0d7d1152-33fa-446e-9d62-6abe83fe16bc','','',NULL), +(4169,'Weapon_Ship_Cz_001','Usable','UNDEFINED','c68b2fff-2200-41d2-ad4e-ef7d219aa1a2','','',NULL), +(4170,'Morningstar Helmet Purple','Armor','Helmet','a8a95e72-157d-415d-bbe4-08fad4445c85','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(4171,'Manned Turret','TurretBase','MannedTurret','2d29e585-c5c4-4e75-a4e1-847461d9bb32','','',NULL), +(4172,'Vanquisher X-IR Torpedo','Missile','Torpedo','f513c4cc-964b-429f-b245-f89c6154ad79','','','Manufacturer: Talon\nTracking Signal: Infrared\nSize: 10\n\nDesigned by Talon, the Vanquisher heat seeking strike torpedo delivers a heavy payload sure to serve as a deterrent from any further hostile actions.'), +(4173,'Medical Bed','Usable','UNDEFINED','a7410890-94f8-4436-b372-34819f1bcb34','','',NULL), +(4174,'HoverQuad Lovestruck Livery','Paints','UNDEFINED','7e936fa7-2fad-4918-a955-b678123641f7','','','Inspired by the colors of Coramor, the Lovestruck livery is a stylish metallic pink and black look for your HoverQuad.'), +(4175,'F55 \"Scorched\" LMG','Weapon','Medium','4a98ac2d-1bd6-42c9-a2a4-e617a9ec120f','','','Manufacturer: Gemini\nItem Type: LMG\nClass: Ballistic\n\nMagazine Size: 150\nRate Of Fire: 1000 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S2), Barrel (N/A), Underbarrel (S3)\n\nFeaturing an explosive rate of fire that tops at a 1000 rpm and Gemini\'s sleek and professional styling, the F55 is a light machine gun for discerning clientele who want the \'verse to know that they are not to be trifled with. The Scorched edition features a unique flame patina.'), +(4176,'Box_050x050x025','Cargo','Small','96f7d3df-92a9-4e9a-bde7-5eabd4fec7d6','','',NULL), +(4177,'Vagabond Jacket Grime Blue','Char_Clothing_Torso_1','UNDEFINED','9259f630-3947-4d9c-bbdd-3a46a684067c','','','Carrying Capacity: 2K µSCU \n\nWhen you need to move like your life depends on it. This lightweight layered jacket-and-poncho combination won\'t tie you up when things get tight. Finished with a hooded cowl, cross straps, and kit-webbing, the Vagabond is ready for whatever your day may have in store.'), +(4178,'TrueDef-Pro Core Base','Armor','Torso','b6317788-ec10-44c1-a457-d9400670c962','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(4179,'Drift','QuantumDrive','UNDEFINED','c933bab5-5eec-42fe-ae83-b2c5ff91502f','','','Item Type: Quantum Drive\nManufacturer: RAMP Corporation \nSize: 1\nGrade: C\nClass: Stealth\n\nBuilt to keep heat and signature levels low, the Drift quantum drive from RAMP Corporation helps to minimize emissions generated while spooling.'), +(4180,'Waylite Shoes Cobalt','Char_Clothing_Feet','UNDEFINED','e43abcf9-4cfa-4587-a5b4-66dcd0e652e0','','','Stay on your feet all day with Northstar\'s Waylite. These slip resistant shoes utilize comfortable memory foam and shock absorbent technology to make these casual sneakers perfect for the office or home.\n\nWomen\'s sizes currently out of stock.'), +(4181,'AAT-34 Turret','Turret','MannedTurret','8acb6ddc-9f7e-4d19-867a-af6aa9156ae1','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(4182,'Prism \"Irradiated\" Laser Shotgun','Weapon','Medium','979be032-a7e7-472c-9322-dbde7537ac25','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Shotgun\nClass: Energy (Laser)\n \nBattery Size: 20\nRate of Fire: 200 - 450 rpm\nEffective Range: 10m\n \nAttachments: Optics (S2), Underbarrel (S2)\n \nFiring powerful shortrange bursts of energy, engineers at Verified Offworld Laser Technologies have developed the Prism laser shotgun so that as the weapon\'s heat-levels rise, the pellets begin fusing together into slug-like projectiles that inflict higher damage on targets. The Irradiated edition features a valakkar spraying it\'s toxic venom.'), +(4183,'Inquisitor Core Yellow','Armor','Torso','c5b10269-79b0-46b0-bb1a-f245ba66f5d3','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(4184,'Gladiator 2955 Ship Showdown Poster','Misc','Utility','d4d865f2-8de1-4ac5-8c4a-bac74a4c4ddc','','','A poster commemorating the Gladiator making the final four of the 2955 Ship Showdown. A stalwart of fighter squadrons, this versatile ship walks the line between fighter and bomber.'), +(4185,'Reclaimer 2954 Ship Showdown Poster','Misc','Utility','b616a32d-79df-4f32-92e4-704e40bbb018','','','Celebrate the Reclaimer, Aegis Dynamics\' industrial salvage ship, making the final four of the 2954 Ship Showdown with this poster. Equipped with a reinforced cargo bay, a long-range jump drive and launch pods for unmanned drones, the Reclaimer is an ideal ship for taking advantage of deep space wrecks.'), +(4186,'600i 2953 Ship Showdown Poster','Misc','Utility','e66e8cf2-ce8b-4518-b283-54b76e593a8b','','','Combining exquisite style and cutting-edge technology, it\'s easy to understand why Origin\'s 600i sailed into the final four of 2953\'s Ship Showdown. This poster celebrates the accomplishment with an image of the multi-role luxury liner soaring through the clouds.'), +(4187,'Custodian \"Citizen\'s Pride\" SMG','Weapon','Medium','57d2c022-6489-4565-9661-9db82c1a3ef9','','','Manufacturer: Kastak Arms\nItem Type: SMG\nClass: Energy (Laser)\n\nBattery Size: 60\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe Custodian SMG from Kastak Arms focuses on a high rate of fire over damage and accuracy making it an ideal choice for sweeping through tight environments and close quarters combat.'), +(4188,'Medical Bed','Usable','UNDEFINED','1e13ee6d-3cff-4c66-b152-536b870e942b','','',NULL), +(4189,'Remote Turret','Turret','GunTurret','31ee9a74-3f52-48d2-8b31-fbb4e4535822','','','Remote Turret'), +(4190,'Door Control','Door','UNDEFINED','64b5db2a-0a9e-45ad-a134-9d84ac90bfaa','','',NULL), +(4191,'test_PlayerRadar','Radar','ShortRangeRadar','a107d68a-769f-4247-b388-42e18d0f328f','','',NULL), +(4192,'SCItemDisplayScreen_NewsScreen_Area18','Display','Default','4828fb1f-7306-4b50-a97f-c51e31651595','','',NULL), +(4193,'Internal Tank','FuelTank','Fuel','b59528b8-7208-4ae2-a2f0-f38578cc0fad','','',NULL), +(4194,'VNCL_Glaive_Thruster_bottom_front','ManneuverThruster','JointThruster','ed7aacf1-0ea5-4482-adee-b60175b37157','','',NULL), +(4195,'SHIELDS','ShieldController','UNDEFINED','b69a2569-3dcf-4428-bc25-2006553da73a','','',NULL), +(4196,'RSI_Polaris_Dashboard_TurretSeat_Left','SeatDashboard','UNDEFINED','c10929ac-2208-44fa-bfa0-a50985d4bfdf','','',NULL), +(4197,'Cup','Drink','UNDEFINED','059846ac-a297-490a-9839-6c470720af22','','','A drinking vessel.'), +(4198,'Door Control','ControlPanel','DoorPart','3bfd562a-6119-4808-b0bc-ae5a3d391990','','',NULL), +(4199,'Door Control','Door','UNDEFINED','0660f1a4-46ba-46c8-8a14-11598a0f80c8','','',NULL), +(4200,'Zephyr','QuantumDrive','UNDEFINED','94b56098-d5c0-4796-a502-790cbccf34c6','','','Item Type: Quantum Drive\nManufacturer: RAMP Corporation\nSize: 1\nGrade: B\nClass: Stealth\n\nBy minimizing emissions through an advanced reduced outflow filtration process, the RAMP Zephyr quantum drive helps ensure privacy while traveling wherever you go.'), +(4201,'ESPR_BallisticCannon_Ventilation_S1','WeaponAttachment','Ventilation','03b1b646-26ef-4fd5-98b8-7dec31b29d28','','',NULL), +(4202,'Inmate Work Helmet','Armor','Helmet','73bb82df-2fd1-489d-9037-c99c43065b94','','','Item Type: Worksuit Helmet\nDamage Reduction: 10%\nTemp. Rating: -75 / 75 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThe Inmate Work Helmet features a highly visible design for easy visual tracking, alongside an anti-fogging, crack resistant faceplate sealed into reinforced plating that\'s rated to withstand falling debris, which helps minimize costly accidents to your labor pool.'), +(4203,'Defender Ocellus Livery','Paints','UNDEFINED','04a3695c-cf61-4bec-a008-9f89302fd2ed','','','The Ocellus livery adapts and updates the iconic colors and design used on some Tevarin ships to bring a striking new look to the Defender. The livery gives the fuselage a prominent red section while shimmering green covers the rest of the ship. Thick grey lines swoop through both colors to provide a unique geometric pattern.'), +(4204,'H_Dashboard_Projector_HUD_ANVL_Hornet_F7CM','Display','UNDEFINED','eafb12a1-f068-4fe9-b94a-fef722ec4e78','','',NULL), +(4205,'f_human_mannequin_marine_heavy','ShopDisplay','UNDEFINED','f45bd3a6-8518-4c2f-8e84-57238ffc7d08','','',NULL), +(4206,'ANVL_Door_Decal_Carrack_Shower','Decal','DoorPart','5dc649b0-04df-44a1-8e1a-6e99601cca68','','',NULL), +(4207,'Carryable_2H_FL_MissionItem_Stolen_Goods_a','Misc','UNDEFINED','0c245ee8-998d-4df2-8353-cd4915bec295','','',NULL), +(4208,'Carrack Plushie','Misc','Personal','7b6db9c4-826f-4d39-bc32-3b39d82e6aff','','','Encourage an adventurous spirit with this soft and squeezable Carrack plushie modeled after Anvil\'s classic exploration ship.'), +(4209,'sc_nvy_bdu_jumpsuit_02_01_11','Char_Clothing_Torso_1','UNDEFINED','5251a8f6-4513-4191-9123-378ad981dcb6','','',NULL), +(4210,'SHIELDS','ShieldController','UNDEFINED','64aee44a-6dc0-468c-b5bc-3588ffca06ae','','',NULL), +(4211,'Cutlass Red Plushie','Misc','Personal','9305a03f-8abc-421e-9d15-14af222b02e5','','','This soft plushie is modeled after Drake Interplanetary\'s Cutlass Red, a variant designed for emergency response. Whereas the real ship contains a med bay to help heal physical wounds, this plushie might just help heal emotional ones.'), +(4212,'Bottle','Bottle','Default','11a25740-0cda-462b-b802-023326936b8a','','','Bottle'), +(4213,'Coda \"Ascension\" Pistol','Weapon','Small','1c3b19d9-6e60-4ec6-8fe2-968079e6edbc','','','Manufacturer: Kastak Arms\nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 6\nRate Of Fire: 180 rpm \nEffective Range: 100 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nOften called the Kastak Arms \"hand cannon,\" the Coda can end an engagement with a single .50 caliber round, although the substantial power can make the Coda\'s recoil hard to handle. Considering its limited magazine size and substantial kick, sustained fire is discouraged in favor of more accurate single shots. Designed in honor of IAE 2953, the Ascension edition has steel and copper accents inspired by Gatac Manufacture\'s Syulen.'), +(4214,'VariPuck S6 Gimbal Mount','Turret','GunTurret','a02c039e-1efe-4a75-891f-dc08b6b60d26','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 6\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(4215,'Veil Flash Hider1','WeaponAttachment','Barrel','04f546d6-651a-47f4-b0ae-64ed2b37557b','','','Manufacturer: ArmaMod\nType: Flash Hider\nAttachment Point: Barrel\nSize: 1\n\nRecoil Stability: +15%\nRecoil Smoothness: +15%\n\nThe Veil Flash Hider1 is an S1 flash hider from ArmaMod. Designed to reduce muzzle flash, it will help keep your position hidden once the action begins.'), +(4216,'Seat','SeatAccess','UNDEFINED','3e87f1c9-e729-4628-a589-97f0638b01d1','','',NULL), +(4217,'DCP Armor Arms Cobalt Camo','Armor','Arms','2ca63637-dad8-41f3-b3bd-2443b76b81fa','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(4218,'RSI_Bengal_Thruster_Retro_Top_Right','ManneuverThruster','JointThruster','9a7e2c54-38bd-45d9-81f3-4e86d5399a2a','','',NULL), +(4219,'Esperia Prowler Turret','Turret','BallTurret','92d6e85c-e59a-4826-bcfa-f96e580164b1','','','Item Type: Turret\nManufacturer: Esperia\n\nThis faithful recreation of the original Tevarin design features modern mounts for precise target acquisition.'), +(4220,'Marhsal Sleeveless Vest Hunter Green','Char_Clothing_Torso_1','UNDEFINED','64e7b9fd-1e81-46fc-9079-a0faf470c1f4','','','The durable Marshal sleeveless vest by Alejo Brothers is made to endure life on the frontier while distinct stylings like shoulder straps, bold cross-chest placket, and a high-collar make sure the wearer stands out on any far flung world.'), +(4221,'Monde Legs','Armor','Legs','3f638756-9a20-4e2c-a6cb-1bd7118ca54c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints.'), +(4222,'Custodian \"Nightstalker\" SMG','Weapon','Medium','dba2eef6-a4eb-4021-befc-d67d0ad19f35','','','Manufacturer: Kastak Arms\nItem Type: SMG\nClass: Energy (Laser)\n\nBattery Size: 60\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe Custodian SMG from Kastak Arms focuses on a high rate of fire over damage and accuracy making it an ideal choice for sweeping through tight environments and close quarters combat.'), +(4223,'Seat','Usable','UNDEFINED','09e4cf11-5844-4d85-921f-cf21c9f99852','','',NULL), +(4224,'300 Series Citron Paint','Paints','UNDEFINED','c14d3896-cb42-43a2-a773-ad40b37fed71','','','Citron?paint job for the Origin 300 Series.'), +(4225,'Weapon_Rack_1_BEHR_LMG_Common_001','Usable','UNDEFINED','09dd0b8d-0a81-4ffc-a322-d6284a7bf270','','',NULL), +(4226,'Second Tevarin War White Dress Jacket','Char_Clothing_Torso_1','UNDEFINED','7a7348b2-d68d-4234-ae67-7807a9eddc02','','','Carrying Capacity: 1K µSCU\n\nHonor the heroes that served in the Second Tevarin War by wearing a replica Navy uniform. Historically accurate down to every last stitch, period appropriate materials were used to make these uniforms match military specifications of the era. The white Dress Jacket features a sash adorned with metals and was worn for formal occasions and ceremonies.'), +(4227,'Door Control','ControlPanel','DoorPart','37d95f6b-8f82-4259-b58b-71fc13663c29','','',NULL), +(4228,'Seat','SeatAccess','UNDEFINED','6a0dba8e-a38c-4fc6-a21b-43fd761b93ca','','',NULL), +(4229,'C8X Pisces TSB Flight Blade','FlightController','UNDEFINED','7a9eab58-3244-4719-98b3-8f8ec573d754','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Anvil C8X Pisces Expedition with the TSB Flight Blade from Broad & Rabiee. By re-allocating lateral thrust resources, you can expect your ship deliver increased top speeds in the straightaway.'), +(4230,'Venture Arms Red','Armor','Arms','551aa937-41f0-4862-8e30-c303a5c0af2e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(4231,'Seat','Usable','UNDEFINED','36736e03-9094-4596-9f43-68fc1c8453aa','','',NULL), +(4232,'Cargo Hat','Char_Clothing_Hat','UNDEFINED','1897a39f-f9b3-4ac3-86a3-8336d4500ad7','','','The front panel of this grey cadet hat features Cargo written in yellow and purple. A bright band of yellow also rings the hat to make it highly visible from a distance.'), +(4233,'Carryable_2H_CY_furniture_pillow_1_a','Misc','UNDEFINED','e18cfdb2-b16a-4f7c-9fca-26213f071db9','','',NULL), +(4234,'Door Control','ControlPanel','DoorPart','f1306e85-4f30-42c1-8ebc-a501981325e6','','',NULL), +(4235,'Spark I-G Missile','Missile','GroundVehicleMissile','dd3a17c3-cfac-49b4-990a-64ac2efa22e1','','','Manufacturer: Firestorm Kinetics \nTracking Signal: Cross Section \nSize: 1 \n\nThose that believe size doesn’t matter would do well to stay clear of the Firestorm Kinetics Spark. Using cross section targeting, this lightweight proximity missile packs a considerable punch. Note: This missile may only be launched by ground vehicles.'), +(4236,'Cargo_Comm_125x3_Vice_DistilledSpirits','Cargo','Cargo','0b4d2a19-785e-4af6-a22a-a4453199861b','','',NULL), +(4237,'Starlancer Tellus Livery','Paints','UNDEFINED','f1e73572-ede3-4d7e-9ee1-45124fd94016','','','The Tellus livery features a distinct orange line that separates the light green top of the Starlancer from the black bottom.'), +(4238,'Head_Teeth','Char_Accessory_Head','UNDEFINED','8011c1ea-de55-4a23-9c1b-553ef3017aea','','',NULL), +(4239,'Radar_Display_10cm','Display','UNDEFINED','a835bda2-a91d-4c05-938c-7170e471e78e','','',NULL), +(4240,'Remote Turret','Turret','Utility','109cb42f-54b2-4e3c-914f-9baca40b3a22','','','Remote Turret'), +(4241,'Hermes Missile Rack','MissileLauncher','MissileRack','d747f530-c24a-48c0-921b-6ebff6420406','','','Item Type: Missile Rack\nManufacturer: Roberts Space Industries\nSize: 2\nMissiles: 8xS2\n \nBespoke missile rack for the RSI Hermes that fires eight S2 missiles.'), +(4242,'Gamma Duo LL (2x Holographic)','WeaponAttachment','IronSight','c1d28932-267f-4867-9d29-2d6f0aa50dd2','','','Manufacturer: NV-TAC\nType: Projection \nAttachment Point: Optic\nMagnification: 2x\nAim Time: +15%\nSize: 1\n\nNV-TAC extensively tested the Gamma Duo across a range of extreme temperatures to assure that thermal drift doesn\'t affect the accuracy of this 2x magnifier sight. This version of the scope includes low-light functionality suitable for operations in dim environments.'), +(4243,'Stileron','Cargo','Cargo','0aef5277-d2e9-48b2-a2b7-9e58cfbd8b0f','','',NULL), +(4244,'Laranite (Raw)','Cargo','Cargo','91b47a8b-23c7-4949-97f4-2518282808d8','','',NULL), +(4245,'Avenger Copernicus Livery','Paints','UNDEFINED','05694347-4761-446b-8305-78e8af4b911a','','','To honor the brave explorers that brought us to space and support those currently seeking new frontiers, the Interstellar Cartography Center (ICC) commissioned this special livery for the Avenger. Named in honor of famed astronomer Nicolaus Copernicus, the livery mixes two shades of blue with black highlights. All proceeds from the sale of the Copernicus livery goes directly to the ICC to support their efforts in \"Charting the Way Ahead.\"'), +(4246,'FBL-8a Core Righteous','Armor','Torso','7a407dec-173c-4767-a783-d3218fe80377','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -32 / 62 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nBased on CDS\' FBL-8a combat armor, this set has been modified from its original form. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible.'), +(4247,'BANU_TachyonCannon_Ventilation_S1','WeaponAttachment','Ventilation','678e23e3-b06f-40a1-9e20-c3664ffc0ab1','','',NULL), +(4248,'Grav Lev 1','ManneuverThruster','JointThruster','27422988-06ff-4472-87a0-7f347392ccbf','','','Grav Lev 1'), +(4249,'VariPuck S3 Gimbal Mount','Turret','GunTurret','5700db93-a193-4e4e-b3e8-e1500b60168f','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 3\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(4250,'Stims','Cargo','Small','921e1e5d-c2ee-4dc8-8133-92574a15e96d','','','Composed of various combinations of tobacco, caffeine, and mood-enhancer, stims are smoked as a cigarette.'), +(4251,'Carbon-Silk','Cargo','Cargo','9d421bbe-bb2b-48e2-a2b5-6fcd13432dab','','',NULL), +(4252,'Flight Blade','FlightController','UNDEFINED','9cdf411e-8253-414f-a6f1-2c37a5e1081f','','',NULL), +(4253,'Revenant Tree Pollen','Cargo','Cargo','5b8eb60d-0d36-4138-b874-5304f228420f','','',NULL), +(4254,'LeMarque Pants Tan','Char_Clothing_Legs','UNDEFINED','da3a0745-38eb-464f-af0b-4969ab5ee02e','','','Carrying Capacity: 0.5K µSCU\n\nClassic cuts never go out of style. A staple of any wardrobe, Derion\'s LeMarque are built for work or play and feature microseam pleats and wrinkle-free material that will guarantee that you\'ll get years out of this classic.\n\nWomen\'s sizes currently out of stock.'), +(4255,'BEHR_LaserCannon_PowerArray_S1','WeaponAttachment','PowerArray','cec4b036-0004-4742-a5f0-e32a217b6b3d','','',NULL), +(4256,'Inquisitor Arms Sienna','Armor','Arms','98451bdd-049b-47ce-9d7e-d4d236bf6601','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(4257,'Paint_300_SeatTrim_Wood','Misc','UNDEFINED','76990719-bd50-4ce5-ab11-98074a1b0e58','','',NULL), +(4258,'Ball','Char_Head_Piercings','UNDEFINED','06f4b625-b388-4420-a86e-018412ab07f8','','',NULL), +(4259,'ORIG_125a_Thruster_Mav_Fixed_Bottom','ManneuverThruster','FixedThruster','6f98375d-c208-42a2-89d7-9df9ec9fcc41','','',NULL), +(4260,'Ardor-1 Salvaged Repeater','Weapon','Gun','ebf157d4-5b04-4f0c-95a4-ad22b34b0cce','','','Manufacturer: Hurston Dynamics\nItem Type: Laser Repeater\nSize: 1\n\nThis Ardor-1 laser repeater was salvaged in the Pyro system. First manufactured in 2724, the Ardor series became popular for its split barrel design that helped mitigate heat when sustaining fire. Hurston eventually stopped manufacturing the weapon in favor of the Attrition line of laser repeaters. Despite the effects of time and constant usage, the weapon is still sought after because of the consistent performance delivered by Hurston Dynamic\'s expert design and solid construction.'), +(4261,'Loscha Work Vest Horizon','Char_Clothing_Torso_1','UNDEFINED','97591280-4c49-4b2a-8e1f-bde0da440a95','','','Carrying Capacity: 400 µSCU\n\nThe heavy-duty Loscha Work Vest by Alejo Brothers is designed for people who want to be prepared for anything at any time.'), +(4262,'MRAI_Pulse_LX_Thruster_Retro','ManneuverThruster','FixedThruster','56c78647-4e37-483b-aa0a-f752503e4a6d','','',NULL), +(4263,'Railing_Straight_1m_LowTech_Util_Stairs_01x01_a','Usable','UNDEFINED','915a1294-6d90-4eca-8471-00dce6f92e34','','',NULL), +(4264,'Surveyor-Max','Radar','MidRangeRadar','d055fbff-ec64-4a81-8d0b-c6ffcbd2b83e','','','Item Type: Radar\nManufacturer: Chimera Communications\nSize: 3\nGrade: C\nClass: Industrial\n\nThe Surveyor-Max radar system is designed to effectively identify nearby objects so that you can stay focused on what matters.'), +(4265,'Door Control','Door','UNDEFINED','18793090-7ea9-4a40-89d5-f928dce0cfa2','','',NULL), +(4266,'MASTER_SurfaceOutpost_PowerModule_Screen','Misc','UNDEFINED','ed55f19c-6aec-4dad-aae5-a14809206ede','','',NULL), +(4267,'Landlite Boots Sienna','Char_Clothing_Feet','UNDEFINED','8007dc34-fdae-4acd-9f45-c8bca11ad719','','','Who says work boots can\'t be comfortable? Grindstone\'s Landlite boots are built with a breathable synth-leather material to keep your feet dry, a contoured, memory footbed, and a slip-resistant outsole, making it perfect for whatever worksite you throw at it.'), +(4268,'Animus Missile','WeaponAttachment','Missile','ccaa28df-74dd-4ecb-87ae-40e04195a4aa','','','Item Type: Ammo\n\nBallistic missile ammo for the Animus missile launcher.'), +(4269,'SHIELDS','ShieldController','UNDEFINED','3e6fcf88-f86e-4388-a3e7-b55ef390652a','','',NULL), +(4270,'Morningstar Helmet Twilight','Armor','Helmet','2b12c637-eb2d-4f1c-8531-d559f4e787a1','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(4271,'Cargo_Comm_125x3_Vice_Altruciatoxin_Unprocessed','Cargo','Cargo','682f89bb-546d-4892-97d7-057e376a886e','','',NULL), +(4272,'Chili Dog','Food','Junk','2d7b0668-af02-41ed-b712-ef553c79a99a','','','NDR: 34\nEffects: Dehydrating, Hyper-Metabolic\n\nA hot dog topped with well-spiced ground chili.'), +(4273,'Internal Tank','FuelTank','Fuel','ec4ea0fe-a811-4f8a-8924-22f16ca5a335','','',NULL), +(4274,'Door Control','ControlPanel','DoorPart','f9ad0aad-c2ab-41f1-a44e-cfc14b0db57f','','',NULL), +(4275,'Station','SeatAccess','UNDEFINED','ef777936-aa24-4078-b63d-8492650b54d1','','',NULL), +(4276,'TrueDef-Pro Core Aqua/Black','Armor','Torso','97ea41f0-52d1-4360-b466-9340efd9c394','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(4277,'Strata Arms Hurston Black','Armor','Arms','e17c69d2-a50e-467d-8baa-b923b010faf2','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Hurston Black variant was made specifically for the company.'), +(4278,'Scrap','Cargo','Cargo','73b7c014-c8f1-468c-a263-e4e51234e0d6','','',NULL), +(4279,'RSI_Aurora_MR_Thruster_Main','MainThruster','FixedThruster','627f6ac8-b4e3-4c73-821d-b755c00e0c07','','',NULL), +(4280,'ORIG_890_Jump_Thruster_Retro_R','ManneuverThruster','FixedThruster','dc4b3693-497c-4a70-a7e2-108a64a65cf0','','',NULL), +(4281,'Door Control','ControlPanel','DoorPart','6e7b685c-921a-47af-a605-20032ad33a65','','',NULL), +(4282,'Argon','Cargo','Cargo','d644b3d2-f33f-4b1c-a2ee-062af6c50bfa','','',NULL), +(4283,'game_chess_1_queen_b','Misc','UNDEFINED','59d20381-98b8-4584-90a9-9339ab297835','','',NULL), +(4284,'Table_2_Seat_High_Lowtech_2_a','Usable','UNDEFINED','5be1c101-7011-437a-8dcb-a81a082f8bcb','','',NULL), +(4285,'Seat','SeatAccess','UNDEFINED','afc7ce75-6924-401a-8a78-b14232b429a4','','',NULL), +(4286,'Col_A_Airlock_Rooftop_Small','Usable','UNDEFINED','5c40836a-8af8-4145-b84a-dbfcf02d5ae9','','',NULL), +(4287,'ORIG_100i_Thruster_Mav_Right','ManneuverThruster','FixedThruster','a483dab2-ddc3-4837-a487-dbf46ecaab72','','',NULL), +(4288,'Personal Storage','Cargo','UNDEFINED','a93b2061-918f-4485-8db5-adfa7229d576','','',NULL), +(4289,'Inquisitor Core Purple','Armor','Torso','f33dfc36-2a5c-441b-af16-f8d56f93c589','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(4290,'TRGT. STATUS','Seat','UNDEFINED','bd7ebaab-43ad-4fa9-95e7-f235e6fee293','','',NULL), +(4291,'Odyssey II Helmet Alpha','Armor','Helmet','b64c83b1-9269-4f94-a29a-55f8d06b8a2f','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(4292,'Internal Tank','FuelTank','Fuel','ed17c68a-47ff-4ac5-a0b0-02f922bddd77','','',NULL), +(4293,'MSD-543 Missile Rack','MissileLauncher','MissileRack','3510bfe7-fb3e-42bf-88d8-7a6d02822b36','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 5\nMissiles: 4xS3\n\nBehring’s MSD-543 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 5 hardpoint for the reliable and effective launch of four S3 missiles.'), +(4294,'display_wall_hero01_centermass_24x01x06_a','ShopDisplay','UNDEFINED','fe785ced-2588-49fe-85d7-474d61ca78ea','','',NULL), +(4295,'Small Artifact Fragment (Damaged)','Misc','UNDEFINED','b0517e28-d542-41a1-9cb8-81937107fbc5','','','A small artifact fragment of unknown origin and made of an unidentified material. Broken and considered damaged, it features intricate etchings that subtly glow.'), +(4296,'Door Control','ControlPanel','DoorPart','9d354660-5e53-40bb-b697-4d9b4fbcb72a','','',NULL), +(4297,'Diamond (Raw)','Cargo','Cargo','bad10b1f-83a6-476d-bbd4-1b8e05406bb6','','',NULL), +(4298,'Radar_Display_Nova','Display','UNDEFINED','2637317d-fcbe-43a2-aa2b-7f2d4b87b1d1','','',NULL), +(4299,'hooks_torso0_02x01x04_01Port','ShopDisplay','Default','4a3c5df1-de92-40a3-bfd9-5e6d926a8f81','','',NULL), +(4300,'H_Dashboard_Projector_HUD_AEGS_Eclipse','Display','UNDEFINED','2082427a-9d01-46a7-b8c7-0ae35e20f4ee','','',NULL), +(4301,'SLAM','Cargo','Cargo','c17e01a8-43d7-4f7f-ad2e-354a56673063','','',NULL), +(4302,'DockingTube_Fuel_Ports_VNCL_Glaive','DockingCollar','UNDEFINED','3a0f3b33-74ab-4abb-ae40-86a73e4fa1ae','','',NULL), +(4303,'sc_nvy_bdu_jumpsuit_02_01_01','Char_Clothing_Torso_1','UNDEFINED','e79c7a0e-420a-47e7-9221-8e71f7d952fc','','',NULL), +(4304,'Nomad 2951 Auspicious Red Ram Livery','Paints','UNDEFINED','8aef237a-ba65-4e36-9924-15fa2d9679d8','','','Seek peace and prosperity in the new year with the 2951 Auspicious Red Ram livery. Outfit your ship with this bold red base paint complimented by gold accents and a silhouette of a ram\'s head.'), +(4305,'MISC_Prospector_Thruster_Aux','MainThruster','FixedThruster','c86e7c9a-5662-4727-96fd-f473eb93f595','','',NULL), +(4306,'bench_table_showroom_1_b','Usable','UNDEFINED','298ea547-16a0-4e0c-8506-53c6c30cc8d4','','',NULL), +(4307,'TRGT. STATUS','Seat','UNDEFINED','832b2f7b-b000-4711-86c2-ba69398a4531','','',NULL), +(4308,'AImodule_ATC_OrisonATC01','AIModule','UNDEFINED','1f477c17-2182-4888-8cf7-d7420ce66f5d','','',NULL), +(4309,'Door','Door','UNDEFINED','e1d40703-48c3-400a-95d4-59cb5ef43af7','','',NULL), +(4310,'Arclight \"Stormfall\" Pistol','Weapon','Small','d1d33afb-779f-4d4d-977a-5ce26f384cf0','','','Manufacturer: Klaus & Werner\nItem Type: Pistol\nClass: Energy (Laser)\n\nBattery Size: 30\nRate Of Fire: 300 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nA handheld laser made famous as Kyle Fenris’ sidearm on the hit vid show The Frontier, the Klaus & Werner Model II Arclight has become extremely popular on the civilian market. Despite its media appeal, the Model II offers a higher rate of fire than any of its ballistic counterparts. While that may diminish the weapon\'s stopping power, its power cell offers more than enough shots to finish the job.'), +(4311,'FS-9 \"Blacklist\" LMG','Weapon','Medium','19c405b8-8b59-44fa-9bf9-a378aeb6e3bd','','','Manufacturer: Behring\nItem Type: LMG\nClass: Ballistic\n\nMagazine Size: 75\nRate Of Fire: 800 rpm\nEffective Range: 40 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S3)\n\nBehring designed the FS-9 to be an overwhelming battlefield force. This light machine gun features a full auto mode that makes it ideal for laying down covering fire or holding back advancing enemies. The FS-9 is also acclaimed for its ability to maintain accuracy while unleashing sustained fire. The Blacklist edition features a dark black finish.'), +(4312,'Bed','Usable','UNDEFINED','31b03513-a0a3-4014-801e-bdf19025b98c','','',NULL), +(4313,'RSI_Zeus_ES_Thruster_Mav','ManneuverThruster','UNDEFINED','c4e5e99f-5585-4d3c-b917-8337caaa0d4f','','',NULL), +(4314,'Internal Tank','FuelTank','Fuel','f0aa0286-b2d8-40e1-b4d3-acbe328876a6','','',NULL), +(4315,'ANVL_Pisces_Thruster_Mav_Fixed_C8R','ManneuverThruster','FixedThruster','bb98b41f-fdc3-4e21-8148-97868b3c60f1','','',NULL), +(4316,'ORIG_600i_Dashboard_Expl_Module_Right','SeatDashboard','UNDEFINED','acd22483-21be-42d8-93d6-69d7b9495cc3','','',NULL), +(4317,'Inquisitor Core Grey','Armor','Torso','2a86c2e0-26f5-49e7-b009-96ba7eee1739','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(4318,'Opus Gloves','Char_Clothing_Hands','UNDEFINED','24439606-8c70-40a5-87ed-51a9fef0dcfa','','','Give any outfit that final elegant touch with the Opus opera gloves from Dyna Lei. Contrasting black velvet and rich leather impeccably trimmed with gold satin to create an understated impact that\'s sure to liven any evening.\n\nMen sizes are currently unavailable.'), +(4319,'300 Series Nightshade Paint','Paints','UNDEFINED','afe01fed-5882-49cb-82c3-a0bc065803cb','','','Nightshade paint job for the Origin 315p.'), +(4320,'box_plastic_4_weapon_opened_015x01x0025_a_apar_special_ballistic_01','Misc','UNDEFINED','8c9bada6-a8a7-4df5-ad2e-d1a52e5c326e','','',NULL), +(4321,'Door Control','ControlPanel','DoorPart','714d51cd-26a2-41b4-9379-8d3ed9f6c23a','','',NULL), +(4322,'Construction Rubble','Cargo','Cargo','86a9223f-af16-4b7c-beef-f0f20e72a491','','','Can be processed at refineries into Construction Material.'), +(4323,'Sion Compensator1','WeaponAttachment','Barrel','2d559b31-cf5f-4963-b276-c687f49601de','','','Manufacturer: ArmaMod\nType: Ballistic Compensator\nAttachment Point: Barrel\nSize: 1\n\nAim Recoil: -30%\nVisual Recoil: -20%\nAudible Range: +20%\n\nMaintain accuracy by countering muzzle rise with the Sion Compensator1. ArmaMod\'s expertly designed S1 barrel attachment efficiently expels gasses to keep every shot on target.'), +(4324,'Bed','Usable','UNDEFINED','919a7a19-3d3f-417a-9fcd-9dc50a45d1a5','','',NULL), +(4325,'PAB-1 Core Cry-Astro Edition','Armor','Torso','534caecf-9f27-4ef4-a1f2-177995e95e20','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile. The Cry-Astro Edition was made specifically for the company.'), +(4326,'Hardean Jacket and Shirt Ash','Char_Clothing_Torso_1','UNDEFINED','d2585b66-0aa1-4f0a-b894-a31ef46cb687','','','Carrying Capacity: 2K µSCU\n\nThis gray and brown collarless synth-leather jacket from Escar Limited features quilted detailing around the opening and down the sleeves, and pairs effortlessly with a bold button-down, tropical-print shirt in light blue.'), +(4327,'rod_torso0_03x01x04_18Ports','ShopDisplay','Default','5cafd2e3-5e0b-4340-8834-3e7546c27a6e','','',NULL), +(4328,'SynergySport','Drink','Bottle','ecca3c6e-224b-4094-bc79-ceb223f90ab7','','','HEI: 48\nNDR: 06\nEffects: Energizing, Hydrating\n\nSynergySport is formulated to deliver balanced active rehydration to replenish and restore so that you can get back to your body\'s peak performance sooner.'), +(4329,'MedGel','Cargo','Cargo','d185dd9a-09fd-490b-a344-7e8e76aad587','','',NULL), +(4330,'G-2 Helmet Crusader Edition','Armor','Helmet','5bad52f0-3c9e-40b1-b624-74cad3f5936c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. The Crusader Edition was made specifically for the company\'s security services.'), +(4331,'ANVL_Hawk_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','d2bc2437-d4ae-43c7-b9ce-90a2253e85dd','','',NULL), +(4332,'Corbel Core Crush','Armor','Torso','f6de17fd-cacf-4841-b1b3-412151558e88','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nOriginally designed as a strength enhancement suit to give factory workers better lifting power, CDS found wider application in utilizing its defensive capabilities. It\'s triple-enforced armor plating provides extreme physical protection, with deliberate placing of materials to protect the most vulnerable parts of the body. A series of pneumatic levers offer increased flexibility in the joints, alleviating pressure and weight in key areas to create an accessible and highly protective armor despite its heavy weight.\n\nThe Crush edition consists of a polished black metal with brushed bronze detailing.'), +(4333,'Table_Desk_1_Seat_CNOU_Nomad','Usable','UNDEFINED','b8e12270-c826-456a-8f6b-f2b5f915b1bc','','',NULL), +(4334,'Orison Shipyards T-Shirt Black','Char_Clothing_Torso_0','UNDEFINED','31509d6a-2a2f-4d48-9b24-39a1e2a5ca29','','','The massive Orison shipyards are a sight unlike any other in the UEE. This shirt features a floating ring platform flanked by blossoms from the Hosanna tree, which was specifically cultivated to grow in the gardens of Orison.'), +(4335,'Vanduul Decoy Launcher','WeaponDefensive','CountermeasureLauncher','b792f73f-d0c7-4651-b546-3127835aa1e5','','','Vanduul Decoy Launcher'), +(4336,'Door','Door','UNDEFINED','331d6500-232e-478c-ae38-c0023d9279cc','','',NULL), +(4337,'Nova Badlands Livery','Paints','UNDEFINED','5d5bf916-ef0a-454b-8d81-0c3034dd8cef','','','Featuring a tan paint scheme ideal for desert environments, the Nova Badlands livery offers a devastating combination of weaponry to eliminate threats on the ground and in the air.'), +(4338,'Souvenirs','Cargo','Cargo','51677282-a942-4e6d-aac3-50d4b5bacfbc','','',NULL), +(4339,'Seat','Usable','UNDEFINED','fad4fd8f-8394-417b-98ac-06dffccc00b8','','',NULL), +(4340,'RSI_Zeus_CL_Thruster_Mav_Bottom','ManneuverThruster','UNDEFINED','a775b002-9890-48a8-9bd2-0fd75fed31b8','','',NULL), +(4341,'Aril Core Quicksilver','Armor','Torso','57c743cc-b7ea-4d97-81ac-5626bdb56f76','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(4342,'Bar_Table_small','Usable','UNDEFINED','aad8b68d-0d87-4e58-a1e4-ae38e6deb8eb','','',NULL), +(4343,'Bed','Usable','UNDEFINED','01970376-619c-4de9-a8a9-9a42f440b2dd','','',NULL), +(4344,'Box_Plastic_00625x00625x00625','Cargo','Small','efafd816-fb45-4988-9365-5f3ed78dcaa8','','',NULL), +(4345,'Tolo Jacket Crusader Edition Dark Teal Stripe','Char_Clothing_Torso_1','UNDEFINED','5a1253fa-f992-4d8b-8a0b-12e80f5b2c31','','','Carrying Capacity: 1K µSCU\n\nA creatively integrated dickey gives the Tolo its fashionable and unconventional look. This three quarter sleeve shirt also features small epaulettes perched atop each shoulder. The Crusader Edition was made to be worn by Crusader employees and features the company\'s sword & C logo on each shoulder.'), +(4346,'Oracle Helmet Olive','Armor','Helmet','3433646d-3d11-4125-80de-c2b2f8e9051c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(4347,'Taranite','Cargo','Cargo','ae171043-617c-458f-b67e-14f609fcea93','','',NULL), +(4348,'ATLS Carbon Black Livery','Paints','UNDEFINED','adc58623-3f7b-467c-b7f8-6034416febce','','','The Carbon Black livery gives the ATLS power suit a sleek and professional appearance.'), +(4349,'Controller_Salvage_MISC_Fortune_Secondary','SalvageController','UNDEFINED','9d4eb852-cf1e-40a3-9ac4-5a7ebbfa0379','','',NULL), +(4350,'TrueDef-Pro Legs Black/Gold/Silver','Armor','Legs','64012c1d-d762-4e5c-86af-33da8d775c2c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.\"'), +(4351,'can_drink_3_flood_shop_2x5_a','ShopDisplay','Default','61c32bca-68fa-4a8b-9158-53f1e7352fa5','','',NULL), +(4352,'rod_legs_02x01x04_09Ports','ShopDisplay','Default','8b13f01b-8632-4b85-a1d9-f18da11dc949','','',NULL), +(4353,'Strata Legs','Armor','Legs','245424cb-f2fc-4ac5-8959-a971009e8607','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 10k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres.'), +(4354,'Radar_Display_Hurricane','Display','UNDEFINED','6c35a902-2b08-428a-8841-ef69110dfa13','','',NULL), +(4355,'Dragonfly Mistwalker Livery','Paints','UNDEFINED','d91d198c-e6f4-4f34-aaeb-86803ceb7b63','','','Become one with the clouds with the Dragonfly Mistwalker livery and its grey camo pattern.'), +(4356,'Dashboard','SeatDashboard','UNDEFINED','c6da185a-53fc-4e90-a830-9b354922d49f','','',NULL), +(4357,'Overlord Arms Cardinal','Armor','Arms','4fda63e4-eb59-4c9e-8f5d-8de2a5db028b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.\n\nThe Cardinal edition is a vibrant red with purple and white accents.'), +(4358,'F8 Lightning 2956 Auspicious Red Rat Livery','Paints','UNDEFINED','3c206ab7-dcaa-4e93-b2b7-98b4dca0a19b','','','Seek peace and prosperity in the new year with the Auspicious Red Rat livery. Outfit your ship with this bold red base paint complemented by gold accents and a stylized graphic of a rat.'), +(4359,'Lillo Pants Orange','Char_Clothing_Legs','UNDEFINED','72764009-523d-4f75-bbc5-112302f2557b','','','Carrying Capacity: 0.5K µSCU\n\nThese slim cut pants from Fiore give you a tailored feel at a fraction of the cost. Built from space-age weaves, the Lillo are a low maintenance, high impact addition to your office wardrobe.'), +(4360,'MISC_Fury_Thruster_FixedMav','ManneuverThruster','FixedThruster','7bf0536b-e299-4043-a47b-bfe83e6ecdb8','','',NULL), +(4361,'Balor HCH Helmet Yellow','Armor','Helmet','43ba9e3a-ed00-42db-95ac-dd7e14f3cb18','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. Visor is AR crosshair compatible.'), +(4362,'Ouratite','Cargo','Cargo','860b8fb9-0ba3-4f04-9ab8-6f722bff28c0','','',NULL), +(4363,'Cargo_Comm_125x3_Mineral_Diamond_a','Cargo','Cargo','5483659d-5bb6-48ff-98f2-2167e8865f44','','',NULL), +(4364,'Venture Helmet Executive','Armor','Helmet','a5edeed3-b1a1-4452-8c96-1ef0907ab097','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover. And now you no longer have to choose between exceptional styling and performance thanks to the tasteful gold detailing only available with the special limited Executive Edition.'), +(4365,'ORC-mkV Core Sakura Sun Edition','Armor','Torso','b0f45c33-4fe5-444b-9604-22222a848f0b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement. The Sakura Sun Edition was made specifically for the company.'), +(4366,'Aphorite','Cargo','Cargo','d0fcc11f-3bb9-425e-ba1e-d2546e952668','','',NULL), +(4367,'Davin Work Gloves Orange','Char_Clothing_Hands','UNDEFINED','ab2bb0f4-e868-4df0-aeb1-b27099fdef22','','','Field-tested for over fifty years, you can find Davin work gloves at numerous sites and ships around the Empire. Stegman\'s rugged construction and comfort lining have made them a customer favorite.'), +(4368,'RSI_Hermes_CargoGrid_Main','CargoGrid','UNDEFINED','96e803ed-1b43-4035-b654-94b76c7b2b04','','',NULL), +(4369,'PAB-1 Legs Yellow','Armor','Legs','10bd760e-5fef-4ca4-a767-d3911549ff69','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(4370,'Seat','SeatAccess','UNDEFINED','ca5521e4-bb44-485f-863e-733946a99fdf','','',NULL), +(4371,'Cliffback T-Shirt Red','Char_Clothing_Torso_0','UNDEFINED','277913db-ceaf-4898-b792-82363aa27547','','','Alejo Brothers\' classic loop tee with a spatter pattern.'), +(4372,'Ardent Boots','Char_Clothing_Feet','UNDEFINED','198e3353-ad3e-4474-ac9a-6253ff91cb25','','','Who says NorthStar can\'t keep it pro? The Ardent boot features a molded rubber sole and all-weather construction to withstand a constant battery from the elements.\n\nWomen\'s sizes currently out of stock.'), +(4373,'Weapon_Rack_Boarding_BEHR_Rifle_Common_001','Usable','UNDEFINED','12dce52f-44c9-4fa9-bde0-ea8d20c94a6f','','',NULL), +(4374,'Quartz Energy SMG','Weapon','Medium','bf262b5e-71dc-4376-8afb-48eafe885d6d','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: SMG\nClass: Energy (Electron)\n\nBattery Size: 45\nRate of Fire: Beam\nEffective Range: 15-20 m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nManufacturer VOLT\'s Quartz SMG utilizes exciting new weapon technology that fires a short range beam that fractures into multiple beams the longer it fires, making it an extremely effective close quarter weapon.'), +(4375,'Seat','SeatAccess','UNDEFINED','4e7b6050-90b8-4065-ae30-6bc81468da7f','','',NULL), +(4376,'Caterpillar 2949 Best In Show Livery','Paints','UNDEFINED','7cfda00c-7823-4581-8f8c-7a651106a440','','','Customize your Caterpillar with this special 2949 Best in Show livery.'), +(4377,'Guardian Harlequin Livery','Paints','UNDEFINED','f0a22a74-8e12-4142-bf0e-cd6710e1b6e5','','','Primarily a sharp green with black accents, the Harlequin livery proudly displays the Mirai name and logo.'), +(4378,'Door Control','ControlPanel','DoorPart','acdb64ab-020c-41f3-95d4-4518cbebac05','','',NULL), +(4379,'Odyssey II Undersuit Grey/Black','Armor','Undersuit','5276214f-ab90-4619-ba76-4a0d5fc30166','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe latest generation of RSI\'s classic Odyssey undersuit features a new rugged design capable of withstanding the harshest of conditions in space or planetside. Built using the latest microweave technology, the Odyssey II undersuit provides hours of comfort in locations that are anything but comfortable.'), +(4380,'sc_nvy_bdu_jumpsuit_01_01_01','Char_Clothing_Torso_1','UNDEFINED','6f9dbc34-c566-4c69-8c74-16b40fd69de5','','',NULL), +(4381,'Railing_Straight_4m_LT_Delta_b','Usable','UNDEFINED','c8cd5365-a295-4a87-9711-088b2b4b2064','','',NULL), +(4382,'Paladin Helmet White/Black','Armor','Helmet','ab817896-50f8-416b-9ed7-5f2505cea11a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Paladin came out of Virgil\'s industrial division as a prototype helmet for salvage and repair operations. Yet its striking design so impressed company executives that they integrated it into their personal armor line. While the helmet\'s look stayed the same, Virgil reworked the design to use a combat rated, durable alloy for its distinct frame and reinforced the plating protecting the back of the head.'), +(4383,'AEGS_Firebird_CML_Chaff','WeaponDefensive','CountermeasureLauncher','f1002aa4-8650-4e86-8dbf-1c7495f01abb','','','@LOC_PLACEHOLDER'), +(4384,'Door Control','ControlPanel','DoorPart','7cc97ad8-855b-4a04-8fab-a292f8d167c1','','',NULL), +(4385,'DockingTube_Fuel_Ports_GLSN_Shiv','DockingCollar','UNDEFINED','0796d9fd-4ade-4ad2-9d87-0629803c1a42','','',NULL), +(4386,'Deo Shirt Red','Char_Clothing_Torso_0','UNDEFINED','c23979ae-40db-4951-bd24-ce1bbf6c718f','','','Fiore\'s Deo is a slim cut work shirt that\'s as practical as it is timeless. Featuring a high collar and metal neck clasp, the Deo has been a mainstay in business attire.\n\nWomen\'s sizes currently out of stock.'), +(4387,'Campo Shoes Slate','Char_Clothing_Feet','UNDEFINED','49403491-b488-4fce-8008-aff53c725ba7','','','Slip into comfort with the Campo shoes, which have a supportive midsole, cushioned footbed, and a molded, slip-resistant outsole. These ankle high slip-ons deliver an ideal fit thanks to two adjustable straps with metal clasps.'), +(4388,'mobiGlas Blush Casing','MobiGlas','Personal','d7c85567-a8a0-4aca-bc4c-1de88cd4c722','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(4389,'Avenger Stalker PHB Flight Blade','FlightController','UNDEFINED','c4e95e93-0f73-436b-b70a-98a07fea330c','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Aegis Avenger Stalker with the PHB Flight Blade from Broad & Rabiee. By re-allocating forward thrust resources, you can expect your ship deliver increased precision handling during tight maneuvers.'), +(4390,'Cryo-Star XL','Cooler','UNDEFINED','d36feefd-7377-4188-9271-355709039a39','','','Item Type: Cooler\nManufacturer: J-Span\nSize: 3\nGrade: B\nClass: Civilian\n\nWith its well-crafted design and dependable performance, the Cryo-Star XL cooler proves from the moment you use it that no one understands heat management better than J-Span.'), +(4391,'Elevator Control','Elevator','UNDEFINED','af2edd4e-465b-4bea-8993-ee8422fd7d52','','',NULL), +(4392,'Door Control','Door','UNDEFINED','eedfcb7a-a1c9-4c47-b4ad-c2ad4835304d','','',NULL), +(4393,'Seat','SeatAccess','UNDEFINED','9d2f3b9c-4149-4ca9-9dd7-712e6e517bbb','','',NULL), +(4394,'MISC_Starfarer_CargoGrid_Center','CargoGrid','UNDEFINED','f98ff545-f162-495a-9dfb-4c7809b2ee5e','','',NULL), +(4395,'Inquisitor Legs Brimstone','Armor','Legs','6a42da28-8905-4639-af9d-ce9f2c368d98','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(4396,'RSI_Apollo_OC_Left','Room','UNDEFINED','452867d0-9b12-503c-9360-e3cd96c56a90','','',NULL), +(4397,'Test_OutpostMission_DataPad_KeyCode_4x3_Screen_3','Display','UNDEFINED','275d7296-9ee1-4ef0-887c-b4196874483d','','',NULL), +(4398,'A03 \"Luckbringer\" Sniper Rifle','Weapon','Medium','c98e422d-7380-4c96-b47e-679551699ed4','','','Manufacturer: Gemini\nItem Type: Sniper Rifle\nClass: Ballistic\n\nMagazine Size: 15\nRate Of Fire: 120 rpm\nEffective Range: 80 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nDevastate at distance with the A03 sniper rifle. Masterfully designed by Gemini\'s Tevarin co-founder Clem, the weapon balances a stylish and ergonomic design with a powerful ballistic punch. The A03 delivers an impressive rate of fire for a sniper rifle that sacrifices accuracy for urgency when successive shots are required. Considering its renowned design and unique features, it\'s easy to see why the A03 has become a favorite of security professionals across the empire. This special green and grey Luckbringer edition released for Stella Fortuna 2954 is a great way to get luck on your side.'), +(4399,'Radar_Display_Valkyrie','Display','UNDEFINED','79f39839-43c2-4f57-bba8-f0ce30eefaeb','','',NULL), +(4400,'Arclight \"Warhawk\" Pistol','Weapon','Small','20d6478d-2cf5-4fe7-8f24-4d29e2ae1b88','','','Manufacturer: Klaus & Werner\nItem Type: Pistol\nClass: Energy (Laser)\n\nBattery Size: 30\nRate Of Fire: 300 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nA handheld laser made famous as Kyle Fenris’ sidearm on the hit vid show The Frontier, the Klaus & Werner Model II Arclight has become extremely popular on the civilian market. Despite its media appeal, the Model II offers a higher rate of fire than any of its ballistic counterparts. While that may diminish the weapon\'s stopping power, its power cell offers more than enough shots to finish the job.'), +(4401,'ESPR_LaserCannon_Ventilation_S2','WeaponAttachment','Ventilation','39583983-c209-4677-bb16-68fcd04350f4','','',NULL), +(4402,'Overlord Core Polarity','Armor','Torso','5b47b51a-5285-4e54-ae68-a6f6a38d3e2a','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12.0 µSCU\nBackpacks: All\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.\n\nThe Polarity edition pairs a deep purple with rusted brown accents.'), +(4403,'Seat','SeatAccess','UNDEFINED','caeb2320-a228-476c-aec4-2782cc0976b6','','',NULL), +(4404,'ORIG_400i_Thruster_Retro_Left','ManneuverThruster','Retro','8145be5f-0e93-4a68-8a81-adefd97ec3cf','','',NULL), +(4405,'Zeta-Prolanide','Cargo','Cargo','6c5efd60-805f-4dbf-8df4-255f03604e21','','','This chemical is an industrial reactant that has found widespread use neutralizing irradiated materials. Because of how volatile it is, it must be kept in an electrically charged state or else a rapid exothermic reaction may occur before desired.'), +(4406,'SHIELDS','ShieldController','UNDEFINED','4a29eada-c35b-45dd-8d02-06a494009641','','',NULL), +(4407,'Arrow Twilight Livery','Paints','UNDEFINED','c166a7d1-2bc4-4ed3-a2ca-253967511607','','','Customize your Arrow with this fragmented grey livery.'), +(4408,'Large Container','Container','UNDEFINED','06b6fb5f-ad7a-437f-9e03-ddbd6e96abde','','','A large container used to hold various items.'), +(4409,'Door Control','Door','UNDEFINED','27c7d8f1-56ea-4b86-b4fd-3e7f2902a4b6','','',NULL), +(4410,'Door Control','Door','UNDEFINED','c316f081-6d7c-425c-a4c7-2a1e68b552ca','','',NULL), +(4411,'Utensil_Plate_Noodles','Misc','UNDEFINED','6d0dcddd-f29c-4409-87d0-732b2cd11c52','','',NULL), +(4412,'Door_Ship_Sensor_Proximity_SpawnCloset_2x2x2_5','Sensor','DoorPart','4653b0aa-25ca-476e-a142-8a6fe5a89560','','',NULL), +(4413,'Internal Tank','QuantumFuelTank','QuantumFuel','c8b68ae3-7b12-4bc5-adf0-2afa1401c2f6','','',NULL), +(4414,'Tolo Jacket Crusader Edition Teal Stripe','Char_Clothing_Torso_1','UNDEFINED','78baaa52-f072-42a0-bece-19085ff2095a','','','Carrying Capacity: 1K µSCU\n\nA creatively integrated dickey gives the Tolo its fashionable and unconventional look. This three quarter sleeve shirt also features small epaulettes perched atop each shoulder. The Crusader Edition was made to be worn by Crusader employees and features the company\'s sword & C logo on each shoulder.'), +(4415,'SCItemDisplayScreen_ATLS_TractorBeam','Display','Default','291ce260-25ec-49c2-9acb-fb36041e5a9d','','',NULL), +(4416,'Diamond Laminate','Cargo','Cargo','53b9b51d-c7d1-4626-bd3c-4b98686ad6aa','','',NULL), +(4417,'table_bar_booth_4_seat_1_a','Usable','UNDEFINED','a7843513-d268-4d0a-a48b-e5971a8de2ca','','',NULL), +(4418,'bottle_alcohol_1_beer_smoltz_100_e','Cargo','UNDEFINED','6332cf67-1443-46ca-96e4-243c106008ad','','',NULL), +(4419,'Pulse Star Kitten Livery','Paints','UNDEFINED','4231964d-0ab6-664b-8a4b-15b75c5b49a3','','','Embody Sally the Star Kitten\'s racing spirit with this custom Mirai Pulse livery. Combining the bright pinks and pale blues of the beloved cartoon mascot, this livery\'s smiling decals bring a playfulness your competitors are sure to enjoy.'), +(4420,'m_human_mannequin_legacy_marine_light','ShopDisplay','UNDEFINED','f85d3e10-3e59-4e2f-9f22-4c5930f24fcc','','',NULL), +(4421,'Door','Door','UNDEFINED','a230509d-8a57-4c2f-87e4-cbd32e2abda5','','',NULL), +(4422,'Maris Cannon','Weapon','Gun','61d5e767-fcee-4e70-ae9e-7671b6692404','','','Manufacturer: Roberts Space Industries\nItem Type: Ballistic Cannon\nSize: 6\n\nThis powerful ballistic cannon was designed by RSI as a bespoke armament for their Polaris corvette.'), +(4423,'Door Control','ControlPanel','DoorPart','f4fdec5d-896d-48d5-98e5-7a5a96ceb019','','',NULL), +(4424,'Door Control','DockingAnimator','UNDEFINED','2673eb4a-afac-4f86-b7b8-658a292e7450','','',NULL), +(4425,'Overlord Arms Gilded','Armor','Arms','6256f60d-0803-4917-b0aa-2ba2328405ce','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.\n\nThe Gilded edition is an opulent gold with worn edges and black joints.'), +(4426,'GATS_BallisticGatling_Mounted_PowerArray_S1','WeaponAttachment','PowerArray','f2479c83-b1bf-44fc-9a13-4ff4b9f5c057','','',NULL), +(4427,'Seat','Usable','UNDEFINED','33d7931f-c622-472f-b0aa-54643b1260e0','','',NULL), +(4428,'Seat','SeatAccess','UNDEFINED','1af147fc-7e8f-4b09-8d96-dd71b074e8f1','','',NULL), +(4429,'EE04 (4x Telescopic)','WeaponAttachment','IronSight','a392c30b-5798-4b35-a70c-01264c6a083e','','','Manufacturer: Behring\nType: Telescopic \nAttachment Point: Optic\nMagnification: 4x\nZoom: 4x-5.5x\nAim Time: +25%\nSize: S2\n\nGet a clear view of your target from afar with the EE04. Behring craftsmanship produced a 4x scope that\'s lightweight, durable, and deadly accurate. A rigorous 22-step testing process ensures the EE04 can deliver precision targeting even after encountering extreme weather or surviving battlefield wear and tear.'), +(4430,'Morningstar Helmet Violet','Armor','Helmet','44cd257f-5443-45ac-a1ee-a3c75c521445','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(4431,'AEGS_Door_Decal_WC','Decal','DoorPart','6e9de40a-97e2-418c-ad0a-d5afd36b164a','','',NULL), +(4432,'Internal Tank','QuantumFuelTank','QuantumFuel','ee2e8fa7-0fa9-4ee6-ad26-1172e5773f02','','',NULL), +(4433,'Door_NoRoomConnector_CSV_ComponentBay_Radar','Door','UNDEFINED','b3ee5d7d-3be4-4df0-9b3f-7668854a73a2','','',NULL), +(4434,'Testudo Helmet Earthshake','Armor','Helmet','6514f103-dc40-4f90-ba79-f1a041c7dfac','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nKeep your eyes on the prize and your head protected with the Testudo helmet. It features a wide faceplate and a durable outer shell that protrudes above the forehead in a way specifically designed to absorb and efficiently disperse the energy of impacts.'), +(4435,'TMSB-5 Gatling','Weapon','Gun','cfbd1437-b6aa-480a-b3a2-5d3ad001c726','','','Manufacturer: Behring\nItem Type: Ballistic Gatling (x2)\nSize: 5\n\nThese twin ballistic gatling was designed in conjunction with Anvil Aerospace for use on the F7C Hornet Mk II and are intended to be gimbal mounted onto a ball turret for adaptive targeting.'), +(4436,'OMNI-AFS-Sapphire Helmet','Armor','Helmet','c7f1c9e8-1265-406d-a982-c9b6b729eed5','','','Item Type: Light Helmet\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nSimilar to the helmet worn by UEE Navy pilots, the OMNI-AFS-Sapphire helmet delivers excellent protection and visibility. Multilayered plating protects against impacts while its wide faceplate ensures clear, unobstructed views whether in the cockpit or on foot.'), +(4437,'battaglia_jacket_01','Char_Clothing_Torso_1','Female','847a9725-f115-44e1-b25e-a6d857940623','','','@LOC_PLACEHOLDER'), +(4438,'ARGO_ATLS_IKTI_ARGOS_Shoulder_Shield_R','Misc','UNDEFINED','e78389c9-14ab-4dab-84a0-68e3a58b94b4','','',NULL), +(4439,'Internal Tank','QuantumFuelTank','QuantumFuel','5adc7f64-210f-4bbd-816a-3f15e1b119ee','','',NULL), +(4440,'ArcCorp Cog Sphere Replica','Misc','Flair_Wall_Picture','c5a497f6-bc7e-43c4-8dcc-7c64632dcc68','','','A miniaturized version of Memphis Avery\'s iconic sculpture displayed in Area18\'s plaza, representing the innovative and aesthetic nature of ArcCorp\'s technology.'), +(4441,'ht_glass_champagne_1_a','Misc','UNDEFINED','4426879f-ec95-4c9d-a742-8ccf0cb5fe16','','',NULL), +(4442,'Year of the Dog Coin','Misc','Utility','f343cd34-ccd8-48cd-9843-4b1891a24e84','','','A gilded red coin celebrating the Year of the Dog. Said to bring good fortune and prosperity in the upcoming cycle, coins like these have become a popular gift during the annual Red Festival.'), +(4443,'Seat','SeatAccess','UNDEFINED','da031036-7cb1-4beb-bba1-8350b483a3b1','','',NULL), +(4444,'Seat','SeatAccess','UNDEFINED','444119b3-0cde-45a2-b15f-b1c8391c8e30','','',NULL), +(4445,'Defiance Legs Hailstorm','Armor','Legs','09c87d53-c66b-4d07-bae0-4808f015fb5f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nIncorporating the same manufacturing know-how and expertise that the UEE Marines have come to rely on, Clark Defense Systems has designed their civilian-line of Defiance heavy armors to stand firm in the face of even the most adverse combat scenarios with its three-star rated protective plating and fully integrated mobility framework.'), +(4446,'RSI_Zeus_CL_Thruster_Retro_Right','ManneuverThruster','Retro','0642b4e0-6c9e-4736-93f9-42a024c35564','','',NULL), +(4447,'Seat','SeatAccess','UNDEFINED','a50319fd-b4af-4efa-8074-e94b1d230c83','','',NULL), +(4448,'ADP-mk4 Core (Modified)','Armor','Torso','2a3ee53f-b683-4f8c-a6b2-33e52c64635a','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nBased on CDS\' ADP-mk4 heavy combat armor, this set has been modified from its original form. When there\'s a difficult job at hand, you want to ensure that you can see it through to the end. This armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers.'), +(4449,'Invictus Flyby T-Shirt Dark Green','Char_Clothing_Torso_0','UNDEFINED','a577eeb0-69f7-41fb-bdd8-67cc04204a76','','','Few things are as awe-inspiring as a UEE Navy fleet flyby. This comfortable, cotton blend Invictus Launch Week t-shirt celebrates that memorable sight.'), +(4450,'Wolf Ranger Camo Livery','Paints','UNDEFINED','91ce5cb3-3a52-49b1-a37a-511004973dbe','','','Mixing a green camo pattern on the front with a bright yellow back makes the Ranger Camo an attention-getting choice for the Wolf.'), +(4451,'Invictus Flyby T-Shirt Olive Green','Char_Clothing_Torso_0','UNDEFINED','39650719-7e97-44bb-8ff7-0b526fd2b786','','','Few things are as awe-inspiring as a UEE Navy fleet flyby. This comfortable, cotton blend Invictus Launch Week t-shirt celebrates that memorable sight.'), +(4452,'m_human_mannequin_slaver_light_02','ShopDisplay','UNDEFINED','fa8a8ccb-b81d-4422-927a-5aa53450b0af','','',NULL), +(4453,'ANVL_Lightning_F8_Thruster_Retro','ManneuverThruster','FixedThruster','4a84a3e6-7e44-4eaf-800a-da679f11ea36','','',NULL), +(4454,'Seat','Usable','UNDEFINED','e420cec8-082b-4db0-af90-dd0bf1ec973c','','',NULL), +(4455,'DRAK_Cutlass_Steel_Thruster_Maneuver_Bottom','ManneuverThruster','JointThruster','251e15fa-d67e-42c9-8432-9eb123ddfb55','','',NULL), +(4456,'Door','Cargo','UNDEFINED','30907497-d09b-488c-b9ff-f4edcea58031','','',NULL), +(4457,'Pisces Frontier Fighters Camo Livery','Paints','UNDEFINED','99083e47-0939-4303-8de5-0bd5ed302f36','','','Be ready to battle in the untamed wilds with this green camo livery featuring the logo of the Frontier Fighters vigilante group.'), +(4458,'ANVL_Hornet_F7C_Thruster_Mav_Joint_02','ManneuverThruster','JointThruster','900f3db7-e005-4734-ab22-279b4db9c648','','',NULL), +(4459,'Arden-SL Legs Red Alert','Armor','Legs','025bfe80-0781-4d9c-a437-24171d50d3a7','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics.'), +(4460,'HRST_LaserRepeater_Barrel_S3','WeaponAttachment','Barrel','b84d5dc9-308b-431d-a0b2-a5755b28c7f4','','',NULL), +(4461,'Seat','Usable','UNDEFINED','29421fbf-4c02-40e9-9465-4e8aede48ff6','','',NULL), +(4462,'DRAK_Vulture_Thruster_Maneuver','ManneuverThruster','FixedThruster','54a2b5ed-ab3f-46e4-860f-1e50844ed77d','','',NULL), +(4463,'Morozov-SH Arms Spitfire','Armor','Arms','63ee57e4-8762-465a-b08f-dc656fa5cc57','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(4464,'Morozov-SH-S Helmet Spitfire','Armor','Helmet','0a2a8c03-cce7-49ec-aa3c-aa9336f5b684','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -97 / 121 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(4465,'Absolution Distortion Scattergun','Weapon','Gun','2e0a3446-23e2-447b-8f1c-2b01516ca396','','','Manufacturer: Preacher Armaments\nItem Type: Distortion Scattergun\nSize: 5\n\nDeliver high distortion damage in close quarters with Preacher Armaments\' Absolution scattergun. This size five weapon is an ideal loadout option for those interested in capturing or boarding their target.'), +(4466,'FoxFire','QuantumDrive','UNDEFINED','dadc9318-d0f2-48c2-aad4-f2dd0c5f7fd3','','','Item Type: Quantum Drive\nManufacturer: Ace Astrogation\nSize: 1\nGrade: B\nClass: Competition\n\nThe FoxFire won\'t leave a burning trail in your wake, but this quantum drive’s strong performance leaves an equal impression. Making it another elegant and powerful component from the folks at Ace Astrogation.'), +(4467,'Spartan Ranger Livery','Paints','UNDEFINED','8de4c1b6-3124-4215-81a8-155250f275fa','','','With its camo green paint scheme, the Spartan Ranger livery is an ideal choice when traveling and deploying troops in verdant fields or forests.'), +(4468,'TRGT. STATUS','Seat','UNDEFINED','2732b600-0494-4cfd-9055-ade9184a63a1','','',NULL), +(4469,'Shipment','Misc','UNDEFINED','dc6dd811-2ea2-41f1-9fc0-fada7a0f4ec3','','',NULL); +INSERT INTO `tbl_scobjs` VALUES +(4470,'ADP-mk4 Arms Exec','Armor','Arms','9ca55e72-6065-40a7-9092-5495ff19f2bb','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhen there\'s a difficult job at hand, you want to ensure that you can see it through to the end. Clark Defense Systems\' ADP-mk4 heavy armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers. This executive edition features a brushed chrome finish with an inlaid hexagonal pattern.'), +(4471,'Door Control','Door','UNDEFINED','7cf82b2e-2438-4946-a930-525b0d4516ea','','',NULL), +(4472,'ARGO_MPUV_1T_Thruster_Aux_Top','ManneuverThruster','JointThruster','bc4cdbab-5283-4896-b089-af7ee578e381','','',NULL), +(4473,'Copper','Cargo','Cargo','c401d6ed-a9b6-40ee-9a3a-f300950823ed','','',NULL), +(4474,'Cutter Rockslide Livery','Paints','UNDEFINED','7c1bd94d-4004-469f-a8b2-2556b20242c4','','','Bring a unique style to the Cutter with the Rockslide livery, which adds orange stripes and brown highlights to compliment the ship\'s grey body.'), +(4475,'Taranite','Cargo','Cargo','15771172-aa33-46c0-a097-561161383cef','','',NULL), +(4476,'ADP Core Purple','Armor','Torso','fe6dadf7-e2e0-4004-8925-c84483454e8a','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(4477,'AEGS_Sabre_Raven_Thruster_Mav_Joint_04','ManneuverThruster','JointThruster','58de69ea-505b-41da-ae10-1c8757ddb8fb','','',NULL), +(4478,'sw_heavy_heat_helmet','Armor','Helmet','2cb25d32-9a3b-444f-b0c9-a4dfb82e0be2','','',NULL), +(4479,'Lightstrike II Cannon','Weapon','Gun','1ee01303-ce47-447b-a2b6-ba0d0787be79','','','Manufacturer: Esperia\nItem Type: Laser Cannon \nSize: 2\n\nThe Lightstrike II takes the attack to distant targets by delivering focused, high damage blasts that will make any aggressor think twice before coming too close. Capable of providing powerful overwatch options during troop deployments or engaging targets in outer space, it\'s easy to see why the Lightstrike II was feared by UPE forces during the First Tevarin War.'), +(4480,'Vehicle_Screen_MFD_TopRay','Display','UNDEFINED','f8cbae4d-cc81-47a8-8a93-1adc85e24104','','',NULL), +(4481,'ORIG_300i_Thruster_Mav_Fixed_02','ManneuverThruster','FixedThruster','49dd5ad7-3ff1-47ad-beb1-57b1e4f2bd51','','',NULL), +(4482,'Door Control','ControlPanel','DoorPart','bb94d222-695e-4130-ad8c-de4a663e0949','','',NULL), +(4483,'Door_LoadoutScanner_RCD_Warehouse','Door','UNDEFINED','36fc58b5-cc54-46e0-903d-46b2ed9f5f53','','',NULL), +(4484,'H_Dashboard_Projector_HUD_ORIG_m50','Display','UNDEFINED','d16a670e-2d71-4793-84cf-db484e55728e','','',NULL), +(4485,'Argus Helmet Grey/Green','Armor','Helmet','7d32e5cc-e45e-4165-9e95-97fc6f02a3ed','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s Argus helmet utilizes advanced multi-layered composite construction to provide incredible protection from weapon fire as well as environmental hazards. The tinted visor offers a wide field-of-view to improve situational awareness and unrestricted movement.'), +(4486,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','0e5c99f2-1dd1-43c3-80b1-d8f434a5aa4b','','','Aegis Gladius - Decoy Launcher'), +(4487,'Caudillo Helmet Burnt Orange','Armor','Helmet','d88356fe-cf40-4304-86b2-b97e4b0a66c5','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAdept at surviving firefights in both atmosphere and in space, the Caudillo helmet provides solid head protection while offering the wearer the stylish look of classical armor thanks to its visually striking metal crest. The Burnt Orange variant is being offered as a limited edition run.'), +(4488,'Manned Turret','TurretBase','MannedTurret','f6f227fa-fdcb-4a17-9814-dfa862a12046','','',NULL), +(4489,'BATT_AMRS_S01_FortCell','Battery','UNDEFINED','48da395a-ae46-410b-8325-63ec90833608','','',NULL), +(4490,'Ixonia Pants Desert Camo','Char_Clothing_Legs','Medium','c819d660-ad98-48ae-8509-ae223b1c2cbf','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDesigned in partnership with Grindstone Boots, the Ixonia pants are designed to keep you safe from hard knocks. The shin guards fits seamlessly over the Trekker boots, and are made from Tehachapi\'s proprietary polymer weave to provide a high level of protection.'), +(4491,'DoorProximitySensorItem_2x6x2_5','Sensor','DoorPart','95e07d0a-b429-48e0-81fb-4cd45792ae57','','',NULL), +(4492,'QIG_Prototype','QuantumInterdictionGenerator','UNDEFINED','b7a0347d-d683-481c-b44f-13e96f028086','','',NULL), +(4493,'Weapon_Rack_Cz_Firerat_010','Usable','UNDEFINED','cf20e63a-b0cd-4ef3-9c5e-9372d46d6ad8','','',NULL), +(4494,'DRAK_Cutlass_Red_Thruster_Maneuver','ManneuverThruster','JointThruster','0e6d7542-b3f3-4fa1-a172-5d49b80e4910','','',NULL), +(4495,'ORIG_300i_Thruster_Mav_Fixed_Front_02','ManneuverThruster','FixedThruster','a9e43090-cdce-424f-945b-aaf91c014647','','',NULL), +(4496,'Aril Arms','Armor','Arms','13814aae-488c-48c0-80a2-5501cb76343c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(4497,'Seat','Usable','UNDEFINED','ce65e50b-f4f2-4aae-ac90-fead303e9eb6','','',NULL), +(4498,'ARGO_MPUV_Thruster_Main_Joint','MainThruster','JointThruster','966f6880-0304-42cc-bd03-d0be907b5741','','',NULL), +(4499,'Agricium (Ore)','Cargo','Cargo','7664d820-d2d5-44c2-b85d-3d2e2d5766e1','','',NULL), +(4500,'Door Control','ControlPanel','DoorPart','ee53f6f1-ee26-457f-abd7-e66b01d9ca47','','',NULL), +(4501,'Seat','SeatAccess','UNDEFINED','aa9fd201-57b6-4387-9772-c9e9299adcb0','','',NULL), +(4502,'Beradom','Misc','Harvestable','38d7d7e9-819b-4351-a40e-7b764cb304e6','','','Formed when sap from the Beraber Fir is crystalized during forest fires, this transparent deep blue \"gemstone\" is often polished smooth and used in jewelry. While it can be manufactured by growing trees and then doing a controlled burn, the time investment for the trees to reach the proper maturity still make this a rare commodity.'), +(4503,'INTK_ANVL_Hawk','FuelIntake','Fuel','bef8d174-053b-4ba8-bab9-e5093cae1978','','',NULL), +(4504,'Self Destruct Unit','SelfDestruct','UNDEFINED','55f62c57-b7ea-4ed7-b72e-2e99fc6c5486','','','Self Destruct Unit'), +(4505,'HRST_LaserRepeater_Barrel_S5','WeaponAttachment','Barrel','5b58db79-ce3f-406f-95e0-2b69d624b45d','','',NULL), +(4506,'Flight Blade','FlightController','UNDEFINED','f5296290-309d-4863-9bd7-0ca33e9f4cea','','',NULL), +(4507,'Door Control','ControlPanel','DoorPart','9701e88b-07b7-48f3-8458-8c15f22f22b7','','',NULL), +(4508,'ORC-mkX Legs Twilight','Armor','Legs','b43d3e2f-952a-4970-a4bd-b12018a3c80b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(4509,'MISC_Reliant_Seat_Bed_Upper','Seat','UNDEFINED','02b4067e-78cf-4ad5-8c5a-12718a54d3e0','','',NULL), +(4510,'Ready-Up Helmet Twilight','Char_Clothing_Hat','UNDEFINED','fc582b88-b58a-42b5-a9d4-5eae62a9cca0','','','The Ready-Up is a dependable, affordable softshell helmet alternative. Built from space-age plastic, the Ready-Up provides a vacuum-ready seal to keep you breathing for longer.'), +(4511,'Armor_Crate_CZ_Horizon_H_003','Usable','UNDEFINED','3008d32c-e487-47cc-b11d-e547bcc50d49','','',NULL), +(4512,'DustUp Helmet Firestarter','Armor','Helmet','3751a609-b189-4a4e-a31d-e864459b5dcc','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -60 / 90 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe DustUp has your back if you’re looking to get into some trouble. The body plating is built off of the same CDS undersuit used by the UEE Marines, it adds reconstructed Omni-Role mkII pieces to give you solid protection against incoming fire, but the real gem is the modified helmet. That thing was built to withstand explosions, so it should totally protect you against some shots. The whole thing’s been reasonably tested against vacuum too, so you can feel free to EVA all you want without worrying about dying.'), +(4513,'TRGT. STATUS','Seat','UNDEFINED','afffe2f4-2258-4902-a572-68c79852ea6a','','',NULL), +(4514,'Get Up Coffee (Decaf)','Drink','Can','8186f14f-5872-40d8-8f43-10ea11077433','','','HEI: 15\nEffects: Dehydrating, Cognitive Boosting\n\nGet Up Coffee is roasted with care to ensure a smooth blend of rich coffee flavor brewed to perfection. Our decaf replaces the caffeine typically found in coffee with other natural and gentle stimulants.'), +(4515,'display_ship_components_03x0075x0275_a_9Ports_1','ShopDisplay','UNDEFINED','5e6c93e5-e433-4ab0-b6b7-26f18529559a','','',NULL), +(4516,'Falston Jumpsuit \"Cry-Astro Edition\"','Char_Clothing_Torso_1','UNDEFINED','55cbd999-778a-46d3-b17a-4972d036541b','','','Carrying Capacity: 1K µSCU\n\nThe Falston jumpsuit has a high collar to guard against the elements, triple-reinforced stitching, and an extra soft interior lining because everyone deserves a bit of comfort.'), +(4517,'AEGS_Escpod_Bedding','Seat','UNDEFINED','07ed4d21-c732-456f-a00c-6f91bfa6cd10','','',NULL), +(4518,'Door_Ship_Sensor_Proximity_2x1x1_3','Sensor','DoorPart','4f17998d-a3b4-4187-b303-6330696b4850','','',NULL), +(4519,'Cargo_Comm_125x3_Gas_Hydrogen_a','Cargo','Cargo','4e556545-a337-412e-9266-4aa990e28639','','',NULL), +(4520,'Door Control','Door','UNDEFINED','68237bcc-f4ac-47c8-b6df-4f41d75b336e','','',NULL), +(4521,'SCItemDisplayScreen_IAE_ShipDisplay','Display','Default','ce687d05-a24c-4f52-a8cf-8464c58b7ebd','','',NULL), +(4522,'Door Control','ControlPanel','DoorPart','71df2baf-814e-4ed8-8e76-536bed0c6066','','',NULL), +(4523,'Mivaldi Pants Dark Green','Char_Clothing_Legs','UNDEFINED','496c9877-e606-4d98-b39b-71f249c069b4','','','Carrying Capacity: 0.5K µSCU\n\nCut to a narrow fit, OpalSky\'s Mivaldi pants feature bold asymmetrical design with smart yet casual dual material styling, making it the perfect addition to any wardrobe.\n\nWomen\'s sizes currently out of stock.'), +(4524,'Builders of Tomorrow T-Shirt Black','Char_Clothing_Torso_0','UNDEFINED','52351b58-5caf-4b49-af13-7c78f9c24ec1','','','Crusader strives to be the builders of tomorrow through aerospace innovations and an unwavering commitment to philanthropy. Signal your support for Crusader\'s future-focused initiative with this shirt featuring the company logo and a cloudy Orison vista.'), +(4525,'Screen_Datapad_FW22','Display','UNDEFINED','a63ac4ce-cf67-47c2-9bd3-d98dbdd59bde','','',NULL), +(4526,'Bed','Usable','UNDEFINED','1c64f9bd-cf64-468a-8d3c-93ca053c33e5','','',NULL), +(4527,'Seat','SeatAccess','UNDEFINED','cc322599-e0dc-4879-b89a-067a4542d4a2','','',NULL), +(4528,'Locked-on Lentil Burrito','Food','Junk','ddd58477-b505-4093-a0a0-7a83f67ed55f','','','NDR: 49\nEffects: Hypertrophic, Hyper-Metabolic\n\nTorpedo Burrito crams a full payload of flavor into their hearty and healthy Locked-On Lentil burrito, featuring a blend of lentils and vegetables wrapped in their signature size-4 multi-grain tortilla.'), +(4529,'Hull A Dusk Livery','Paints','UNDEFINED','728d4d6e-9d8e-4706-9454-05bf7add7563','','','For the long haul cargo captains who prefer to make a subtle statement when it comes to their freighter, MISC offers the distinguished Hull A Dusk Livery. A complete grey hull highlights the ship\'s classic silhouette with tasteful gold trim.'), +(4530,'KRIG_l21_Wolf_Thruster_Mav_Capsule','ManneuverThruster','UNDEFINED','91bccc79-3f82-440c-be63-d575038ec50f','','',NULL), +(4531,'BEHR_BallisticGatling_PowerArray_S7','WeaponAttachment','PowerArray','e6beaa69-902c-4ffb-bed8-3e0ef5a0271d','','',NULL), +(4532,'PAB-1 Legs Tan','Armor','Legs','ba835a71-1bdb-4bac-9c59-e7105837ad3f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(4533,'ARGO_RAFT_SCItem_Dashboard_CoPilot','SeatDashboard','UNDEFINED','a53ee028-2629-40cb-b5ce-dcfec09d8cda','','',NULL), +(4534,'Door','Door','UNDEFINED','4c6a57ae-3133-4f3e-bf50-35944c5e9686','','',NULL), +(4535,'Tidelock QD','QuantumInterdictionGenerator','UNDEFINED','02450eb8-6294-4bb1-aa7a-ceab6d2e7e1d','','','Item Type: Quantum Dampener\nManufacturer: RSI\nSize: 3\n\nInternally designed by Roberts Space Industries for the Scorpius Antares, the carefully crafted Tidelock Quantum Dampener generates a field that prevents quantum drive activation.'), +(4536,'Manned Turret','TurretBase','MannedTurret','460303b8-2c17-4522-9630-1965f2f3b722','','',NULL), +(4537,'Odyssey II Helmet Dark Green','Armor','Helmet','073fca3a-e7a3-40b0-b32e-b7b1667306c5','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(4538,'Harlowe Shirt Dark Green','Char_Clothing_Torso_0','UNDEFINED','ed791706-62f6-415c-8729-e96b90a5ffd0','','','Capable as being worn on its own or as a base for layers, this long-sleeve henley style shirt from Alejo Brothers keeps you stylish and comfortable.'), +(4539,'Diamond','Cargo','Cargo','28b50096-fc6e-4253-bc29-f998146bc780','','',NULL), +(4540,'AEGS_Sabre_Thruster_Mav_TopRR','ManneuverThruster','JointThruster','30c4fa02-b631-478f-83bc-463a86563eb9','','',NULL), +(4541,'Altimont Pants Blue','Char_Clothing_Legs','UNDEFINED','23e1e6d2-4d53-4fd0-9817-7f759aa6d759','','','Carrying Capacity: 1K µSCU\n\nOctagon embraces a classic look and makes it boldly modern with the Altimont. These jodhpur style pants feature a slightly flared hip that becomes snug under the knees thanks to built-in garters. A uniquely shaped front seam secured by silver clips on the waist and shin provide further detailing that\'s both subtle and stylish.'), +(4542,'ORC-mkX Arms Justified','Armor','Arms','c5dee096-247f-4251-8304-43c4e482bdb4','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThis version of CDS\' ORC-mkX combat armor has been modified from its original form. The mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(4543,'Tripledown \"Ridgeback\" Pistol','Weapon','Small','32f71a63-7937-482a-809c-7e9909bffe9e','','','Manufacturer: Unknown\nItem Type: Pistol\nClass: Ballistic\n \nMagazine Size: 12\nRate Of Fire: 185 rpm\nEffective Range: 10 m\n \nAttachments: Optics (S1), Barrel (NA), Underbarrel (S1)\n\nFiring three shotgun shells with each pull of the trigger thanks to it\'s triple-barrel construction, the bolt-action Tripledown pistol is ready to blast its way through anything from the smallest disagreements to massive dustups.\n\nThe Ridgeback version features a blue finish and an orange accent on the grip.'), +(4544,'UNE Silver Ingot (Pristine)','Misc','UNDEFINED','402c93b8-c991-49f2-9971-faa7c71bd87a','','','A silver ingot cast by the United Nations of Earth (UNE) that has remained in pristine condition. These ingots were considered official currency and used in areas of the UNE where technological issues often hampered secure and instant money transfers. This rare item features the three ring, six star logo used by the UNE within a circular recess and an elaborate, textured pattern across the rest of it.'), +(4545,'Carryable_2H_FL_Vlk_pearl_Common_05','Misc','Harvestable','e738c605-8ef7-4238-8170-5db0c4f9c15d','','',NULL), +(4546,'Relay','Relay','UNDEFINED','d046b6a3-84ba-4a9b-bc51-952ecb40224d','','',NULL), +(4547,'Shiv Blue Blossom Livery','Paints','UNDEFINED','f8514eb7-1258-4c77-91ab-ae389e3b5752','','','Turn the Shiv into a beauty and a brute with the Blue Blossom livery, featuring a colorful and ornate flower pattern across the top of the ship.'), +(4548,'Seat_Bed_ORIG_100','Usable','UNDEFINED','74f08b32-afd0-43c2-8780-bcfba1217b40','','',NULL), +(4549,'Ripper','FPS_Consumable','Hacking','c4581d0e-20fe-47fd-ab9d-df22f17df9f5','','','A modified version of the Tigersclaw cryptokey, the Ripper earned its name for being able to \"rip systems apart.\' Incredibly fast, what it gains in speed, it also gains in instability as the extra draws on the processor results in greater error frequency.'), +(4550,'Pembroke Backpack RSI Ivory Edition','Armor','Backpack','7217e929-f89a-4f91-9a14-1fbd0cbd7a53','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nDesigned to extend the limits of Human endurance, the Pembroke RSI Edition was built to withstand the extreme heat of inhospitable high temperature environments. Based off of Caldera\'s best-in-class exploration armor platform, an advanced sensor suite intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. Featuring a spacious backpack, the special RSI Edition of the Pembroke ensures those seeking to cross bold new horizons do so in style.'), +(4551,'BEHR_BallisticRepeater_Barrel_S1','WeaponAttachment','Barrel','5d94d9c1-d7ee-4864-8996-34293249773e','','',NULL), +(4552,'ARMR_TMBL_Storm_AA','Armor','Medium','1f4c62c2-6306-47ad-a8f3-8d5d6082b1af','','',NULL), +(4553,'Scorpius Skullcrusher Livery','Paints','UNDEFINED','4f74e487-6edf-401c-8e49-0735a874cec8','','','Exude attitude with the Skullcrusher livery for the Scorpius, which features a massive skull decal across the top.'), +(4554,'SHIELDS','ShieldController','UNDEFINED','9f8915a2-fa04-427f-aef8-171ea66078ac','','',NULL), +(4555,'300 Series Ultramarine Paint','Paints','UNDEFINED','2bcbf213-ec0b-4be0-b2f7-80934c4ef87d','','','Ultramarine paint job for the Origin 300 Series.'), +(4556,'Weapon Rack','Door','UNDEFINED','337d09e9-8bdd-49cd-9493-4d808adda7ec','','',NULL), +(4557,'Misfit Jacket Crossdraw','Char_Clothing_Torso_1','UNDEFINED','ed5e3fb1-de20-42ec-b321-05b69dac3cf1','','','Carrying Capacity: 1K µSCU\n\nEmbody the hardcore attitude with the Misfit jacket. Durable synthetic leather combines with anarchic stylings for a jacket meant to send a message. Its distinct look includes spikes across the shoulder and right arm, two buckled straps on the left arm, and a badass image on the back highlighted by three lights powered via electronic boxes affixed to the front.'), +(4558,'Venture Helmet Green','Armor','Helmet','3894f673-8a09-4d34-8722-02c09c00863e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover.'), +(4559,'Medical Bed','Usable','UNDEFINED','33eb9310-51da-4687-b4d3-5488834f88e0','','',NULL), +(4560,'Scout Ship Armor','Armor','Medium','7419e9b6-02b9-4271-8711-329b56e5583f','','','Scout Ship Armor'), +(4561,'RS1 Odysey Spacesuits','Cargo','Cargo','6ed0ed1b-2dd8-4971-a8c8-089c89ade780','','',NULL), +(4562,'TRGT. STATUS','Seat','UNDEFINED','24948a33-9417-4c1f-8227-ab28aa10d31b','','',NULL), +(4563,'RSI_Constellation_TA_BayWall_Right','Container','UNDEFINED','256dfe18-7b89-413d-82d3-4c068990386f','','',NULL), +(4564,'RSI_Aurora_GS_ES_Thruster_Mav_Joint','ManneuverThruster','JointThruster','182f853b-aec8-4a27-9638-8df7bc1e192d','','',NULL), +(4565,'he_a_wall_low_left_a_2Ports','ShopDisplay','UNDEFINED','44adfcd6-1980-470e-bf2a-fe4f8476425b','','',NULL), +(4566,'Weapon_Rack_1_Volt_Rifle_Common_001','Usable','UNDEFINED','0dc3afd5-bec9-47b8-bc8d-c9358e6f710e','','',NULL), +(4567,'Origin White Rook','Gadget','UNDEFINED','aae815c1-8b23-4ddc-996f-f23c8d912dae','','','Made exclusively for Origin Jumpworks and included with the 890 Jump, this white chess piece is a modern version of a classic set.'), +(4568,'Internal Tank','QuantumFuelTank','QuantumFuel','e9595566-4520-440c-8a82-a1545dd4a5c4','','',NULL), +(4569,'TOAG_LaserRepeater_PowerArray_S3','WeaponAttachment','PowerArray','6f39210f-f5c9-4cd7-bafe-bebb8c27d3fa','','',NULL), +(4570,'Carragio Jacket Grey','Char_Clothing_Torso_1','UNDEFINED','abf5bbf0-7ae5-4d35-a608-5a8591350edb','','','Carrying Capacity: 1K µSCU\n\nThis light grey jacket is sure to turn heads with its diamond accented sleeves and tails, geometric graphic inlay, and metallic collar accents. The finishing touch to complete the look is a deep burgundy pocket square.\n\nWomen\'s sizes currently not available.'), +(4571,'Sunset Berries','Cargo','Cargo','05c4fbfc-df66-4f1a-9139-b449bc08df52','','',NULL), +(4572,'Morozov-CH Backpack (Modified)','Armor','Backpack','4dea576d-458e-4237-aeb7-cdcb6db48d7f','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nThis version of Roussimoff Rehabilitation Systems\' Morozov-CH backpack has been modified from its original form. Comfortably carry vital gear with the Morozov-CH backpack. This softshell bag is made with an advanced duraweave that\'s lightweight yet ready for battlefield action. It also features several easy to access pockets and a plethora of straps to keep supplies secure and tight to your back.'), +(4573,'Seat','Usable','UNDEFINED','ba184aab-7f27-436a-a758-73e0cca1ed43','','',NULL), +(4574,'KRIG_l22_AlphaWolf_Thruster_Retro','ManneuverThruster','UNDEFINED','df196c48-bac7-46ca-ab06-3f2a235816b7','','',NULL), +(4575,'Mirai Racing Helmet','Armor','Helmet','52bb6c3d-003c-4c01-8517-79e910ebf7fb','','','Item Type: Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nMirai’s Racing helmets uses advanced Xi’an materials to create a comfortable, lightweight helmet durable enough to endure the stresses of high-velocity racing. Taking inspiration from traditional Saisei culture and aesthetics, the stark red highlight and bold Mirai branding results in a striking but elegant design.'), +(4576,'ORIG_890_Jump_Thruster_Mav_BMR','ManneuverThruster','FixedThruster','b61360ea-2d68-4855-b3a6-9efb28947fb2','','',NULL), +(4577,'Door Control','Door','UNDEFINED','ab43976a-3d8b-493e-8308-48b304dd582f','','',NULL), +(4578,'Carryable_1H_SQ_box_food_1_a','Misc','UNDEFINED','b37878ce-924b-4d6a-8922-db6f4ca11a0b','','',NULL), +(4579,'RSI_Perseus_CargoGrid_Main','CargoGrid','Cargo','93f56be0-6d3b-40cf-beeb-011e269e2bbb','','',NULL), +(4580,'ARMR_XIAN_Nox','Armor','Medium','7bf7ecee-86fa-49fb-9862-0616a524b611','','',NULL), +(4581,'Weapon_Rack_1_Volt_SMG_AmmoOnly_001','Usable','UNDEFINED','2b2e6e76-9310-4476-8722-0a153544e010','','',NULL), +(4582,'Bioplastic','Cargo','Cargo','b9ce965d-8d90-431b-b312-3bc0859bc6c3','','',NULL), +(4583,'Door','Door','UNDEFINED','f49b22df-2066-4257-a851-bd8ae0bbfb19','','',NULL), +(4584,'Seat','Usable','UNDEFINED','6a9bd3a9-a525-410f-9299-595896fd8851','','',NULL), +(4585,'SHIELDS','ShieldController','UNDEFINED','4e90cfa5-3b49-4169-aa28-2ad3b72cc7f6','','',NULL), +(4586,'MISC_Prospector_Thruster_Mav_FIxed_02','ManneuverThruster','FixedThruster','dff42b1f-5c13-426a-86f8-ab822b2de179','','',NULL), +(4587,'Bed','Usable','UNDEFINED','671588da-06b6-4d66-b472-bdf7a17c0e84','','',NULL), +(4588,'Spruce Cap Kel-To','Char_Clothing_Hat','UNDEFINED','84f722ce-daf9-4965-b1ae-f7e370b5d118','','','Lightweight and constructed from a sweat absorbant material that is easy to wash, Stegman\'s Spruce cap is ideal for comfortable all day wear.'), +(4589,'Internal Tank','FuelTank','Fuel','0125e83a-4657-4712-9d76-3ebaede08e28','','',NULL), +(4590,'ANVL_F7CR_NoseCap','Misc','UNDEFINED','85a0d650-05d1-4c8c-90aa-40ba2054c2be','','',NULL), +(4591,'Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','722cbb5a-0596-403d-b0e8-fb7fe6f3c8b1','','','Joker Defcon Flares Ammo'), +(4592,'Turret','Turret','MissileTurret','e6b1a0fe-8cf8-453c-8b68-92095094288e','','','Remote Turret'), +(4593,'LeMarque Pants Purple','Char_Clothing_Legs','UNDEFINED','1f74b7b3-b774-4281-ac22-f11ecb823718','','','Carrying Capacity: 0.5K µSCU\n\nClassic cuts never go out of style. A staple of any wardrobe, Derion\'s LeMarque are built for work or play and feature microseam pleats and wrinkle-free material that will guarantee that you\'ll get years out of this classic.\n\nWomen\'s sizes currently out of stock.'), +(4594,'Door Control','Door','UNDEFINED','17716e11-5149-4430-b609-8e438931d668','','',NULL), +(4595,'TrueDef-Pro Legs Black/Silver/Green','Armor','Legs','3e535b8f-9ca3-457b-aad7-ee496e7c9fd0','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.\"'), +(4596,'Flight Blade','FlightController','UNDEFINED','c686aa8a-f0f0-47fc-b22d-daaf4dadc25b','','',NULL), +(4597,'Carryable_TBO_FL_16SCU_Commodity_ProcessedGoods_ProcyonCanister_Damage','Cargo','Cargo','94ae9ee2-b45d-4a5b-a8e4-fe2884888c13','','',NULL), +(4598,'CargoBox_050x050x050_Tank_Water_Stacked_3','Cargo','Cargo','ecf08be9-9fcf-4ae5-b5d4-cd726b02f5d8','','',NULL), +(4599,'ORIG_X1_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','3f9092a2-3e1e-4b1f-9e47-6810f39d44ff','','',NULL), +(4600,'Seat','Usable','UNDEFINED','82fe4695-aed2-4c63-884a-1379ff5735c0','','',NULL), +(4601,'Carryable_1H_SQ_drug_stim_1_a','Misc','UNDEFINED','ad03c003-ddfb-45b1-b715-a48c8dd1359f','','',NULL), +(4602,'bottle_alcohol_1_beer_smoltz_100_f','Cargo','UNDEFINED','2fe98a15-0d49-43c8-8625-7209470b08e0','','',NULL), +(4603,'Zeus Lovestruck Livery','Paints','UNDEFINED','1f740502-818f-4b29-837d-24fdbc846791','','','Inspired by the colors of Coramor, the Lovestruck livery is a stylish metallic pink and black look for your Zeus.'), +(4604,'BEHR_LaserCannon_PowerArray_S2','WeaponAttachment','PowerArray','3350ad4b-e082-48a7-88f2-ee7f8e3e1253','','',NULL), +(4605,'Borase (Ore)','Cargo','Cargo','b029b2b6-2099-44dc-9e85-2e801beaf6bb','','',NULL), +(4606,'GATS_BallisticGatling_Mounted_Ventilation_S1','WeaponAttachment','Ventilation','22da60a6-5f4f-4ba2-84da-c96f9f47d273','','',NULL), +(4607,'DRAK_Cutter_Thruster_Mav_Fixed_Top','ManneuverThruster','FixedThruster','b5fe86dc-b3b6-4025-91c8-b76c81f7ae13','','',NULL), +(4608,'Medical Bed','Usable','UNDEFINED','a54432ab-6e2e-441b-847f-17ca76e5a95c','','',NULL), +(4609,'Uncut SLAM','Cargo','Cargo','f54f9f69-a1d3-4279-ac5f-b47e5d18af81','','',NULL), +(4610,'Aslarite','Cargo','Cargo','557bbc8a-50d5-445c-9e60-ca523996d99d','','',NULL), +(4611,'Carryable_TBO_FL_2SCU_Commodity_ProcessedGoods_OrganHarvesting','Cargo','Cargo','d14f608d-3285-44d0-b706-44cea3db71a9','','',NULL), +(4612,'\'Bullet\' II Missile','Missile','Missile','1754a3d4-4aa9-469d-8fb7-d8611bd3e9a1','','','Manufacturer: Vanduul\nTracking Signal: Infrared\nSize: 2\n\nPilots in the Navy have developed a healthy respect for this infrared targeting Vanduul strike missile, formally designated Bullet.'), +(4613,'Strata Legs Hurston Edition','Armor','Legs','0a76542b-f550-4b1a-a8bc-180748bdcd3d','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 10k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Hurston Edition was made specifically for the company.'), +(4614,'ANVL_Lightning_F8_Thruster_Main_LightBlue','MainThruster','FixedThruster','c54da6a1-9fa0-4342-82c2-62de11900d9d','','',NULL), +(4615,'Mustang Gamma Ship Armor','Armor','Medium','f8229594-89a6-4ae8-8d7d-6683cf7d50cf','','','Mustang Gamma Ship Armor'), +(4616,'Landlite Boots Tan','Char_Clothing_Feet','UNDEFINED','ff024029-0ef0-4250-85cf-97561958356f','','','Who says work boots can\'t be comfortable? Grindstone\'s Landlite boots are built with a breathable synth-leather material to keep your feet dry, a contoured, memory footbed, and a slip-resistant outsole, making it perfect for whatever worksite you throw at it.'), +(4617,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','6e052f56-88e1-4e80-adb1-1c679cc3f8d9','','','Joker Defcon - Noise Launcher'), +(4618,'Vehicle_Screen_MFD_Holographic_ORIG_M50_L','Display','UNDEFINED','40f4b024-46c9-46c2-9701-90ada67d3438','','',NULL), +(4619,'DRAK_Clipper_Thruster_Fin_Aux_Right','Misc','UNDEFINED','c8cc7e09-b231-46be-874a-5156f929d4cf','','',NULL), +(4620,'Morningstar Helmet Imperial','Armor','Helmet','26b97bf7-d618-4175-b1ea-484327f42e4b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(4621,'Bed','Usable','UNDEFINED','9f2e696c-8c9c-47ce-a559-644d62024485','','',NULL), +(4622,'Gold','Cargo','Cargo','124b918b-8b5f-427e-a439-6f1fdfece886','','',NULL), +(4623,'Anvil F7C-M Mk II Ball Turret','Turret','BallTurret','34121f6a-0c88-4c0d-948d-8fd5c1f24c2e','','','Item Type: Turret\nManufacturer: Anvil Aerospace\nSize: 5\n \nGive your Anvil F7C-M Super Hornet Mk II a boost in firepower with this bespoke ball turret able to equip two S3 ship weapons and eight S1 missiles.'), +(4624,'ORIG_X1_CML_Chaff','WeaponDefensive','CountermeasureLauncher','8eed19d9-064d-4f69-b985-919fbf84f2b0','','','@LOC_PLACEHOLDER'), +(4625,'Col_A_Underfloor_Hatch_A_Cuttable','Door','UNDEFINED','e0744f57-2064-4532-97f3-4bb9c6db9d3b','','',NULL), +(4626,'Sabre Harvest Livery','Paints','UNDEFINED','82198d1d-47ab-4404-8f62-f63049289b07','','','The Harvest livery for the Sabre features orange highlights that stand in bold contrast to the black base paint.'), +(4627,'Centurion Ice Storm Camo Livery','Paints','UNDEFINED','28253aa2-bfe2-4cd4-870c-b83bcd19ec88','','','The Ice Storm Camo livery will break up the silhouette of your Centurion with its white and grey camo pattern.'), +(4628,'G-2 Helmet Sienna','Armor','Helmet','f7005fb4-3c8c-42df-b759-f41b10948e71','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. Visor is AR crosshair compatible.'), +(4629,'Adiva Jacket Grey','Char_Clothing_Torso_1','UNDEFINED','e9850a9f-4f01-4cb7-bbd1-fb53f4e70b01','','','Carrying Capacity: 1K µSCU\n\nDefine your ultimate you. The Adiva is an asymmetrical pullover with bold mixed-materials and solid reinforced trim.'), +(4630,'Table_Desk_1_Seat_MISC_Starlancer','Usable','UNDEFINED','c254e23d-3226-4f55-8483-087ed0be1bb8','','',NULL), +(4631,'Bed','Seat','UNDEFINED','1ee28bf3-7cc0-49fb-b214-5b518f4d0767','','',NULL), +(4632,'DCP Armor Arms Jungle Camo','Armor','Arms','d7faaf51-b1b6-4635-b62e-203687973144','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(4633,'Personal Storage','Cargo','UNDEFINED','9a807a85-da66-4095-b09d-514ab0e78f59','','',NULL), +(4634,'Arden-SL Core','Armor','Torso','ab2c5f25-2592-47a8-a157-ab7857f58c42','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics. It also features a toolbelt for easy access to important gear.'), +(4635,'Cirrus Boots Brown','Char_Clothing_Feet','UNDEFINED','1885c7c5-0077-4f61-9aad-d99bf0de3cb8','','','Temp. Rating: -35 / 15 °C\n\nThese rugged, high ankle boots will keep your feet warm when venturing into wintry conditions. The Cirrus also integrates steel alloy links into the sole for added traction on icy surfaces.'), +(4636,'Access','SeatAccess','UNDEFINED','44fc2bd8-2797-4689-b3b4-081e3e988b0d','','',NULL), +(4637,'Warden Backpack Hemlock Camo','Armor','Backpack','c62568d1-d741-4b4d-8bd9-612b6732c37c','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nThis hard backpack from Virgil, Ltd. makes travel easy. Whether you need a place to carry your weapons or you\'ve decided to bring some extra rations along for a long journey, this backpack was designed to handle any occasion. The interior features a generous, closeable pocket to keep your small items from falling out of place.\n\nThe Hemlock edition features a green camo pattern.'), +(4638,'MRAI_Guardian_Ground_Refueling_Port','Door','UNDEFINED','1b65702d-eed4-4e24-980d-d6deca85433e','','',NULL), +(4639,'Door','Door','UNDEFINED','4209243b-b5d7-3980-76b8-ad9beb274c8d','','',NULL), +(4640,'Inquisitor Core Aqua','Armor','Torso','48f6ebad-1041-4906-8937-3ebc23a1bfb0','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(4641,'un_medical_box_1_syringe_a','Misc','UNDEFINED','80e1fe7c-149d-4780-b856-ee59cc3bd70b','','',NULL), +(4642,'Tyche','QuantumDrive','UNDEFINED','68e9b393-0b32-457b-901b-bee326c88b00','','','Item Type: Quantum Drive\nManufacturer: RSI\nSize: 3\nGrade: B\nClass: Civilian\n\nThe Tyche quantum drive harmoniously balances performance, durability, and stealth to create a well-rounded component capable of adeptly handling a variety of situations.'), +(4643,'SparkJet Pro','PowerPlant','Power','18fb77da-25b5-4599-98a3-6a6335fe3bc5','','','Item Type: Power Plant\nManufacturer: Lighting Power Ltd.\nSize: 3\nGrade: D\nClass: Civilian \n\nLooking to upgrade your power plant on a budget? Lightning Power Ltd\'s SparkJet Pro gives you reliability across the board, making it a solid choice to get you out and flying.'), +(4644,'Compboard','Cargo','Cargo','e93aba18-2fd2-4c9b-b650-ce3d4b869afa','','',NULL), +(4645,'customizer_shoes','Char_Clothing_Feet','UNDEFINED','1c6aac31-6497-4484-bf81-901eb20f8c79','','',NULL), +(4646,'Guerra Pants','Char_Clothing_Legs','UNDEFINED','5ddb14b7-d659-4fbb-8811-14a641c9f169','','','The Guerra pants by Alejo Brothers are a staple for daily wear. The synthetic fabric ensures adequate protection from the general wear and tear of frontier life while remaining easy to patch up if the need arises.'), +(4647,'Tonk T-Shirt','Char_Clothing_Torso_0','UNDEFINED','047724ce-fc19-4cde-96c6-ca1971394437','','','When Humans brought back the legendary Nova Tonk, a Banu souli excitedly made this shirt to commemorate its return.'), +(4648,'fruit_tray_2_a','Misc','UNDEFINED','226be873-f0f6-4139-a6d3-b54fa892da20','','',NULL), +(4649,'OT8-RF \"HighSec\" (8x Telescopic)','WeaponAttachment','IronSight','8335d320-36ee-48a0-8ca8-600ad88b7a1f','','','Manufacturer: Gemini\nType: Telescopic\nAttachment Point: Optic\nMagnification: 8x\nSize: 3\n\nCombining a premium 8x telescopic sight with Gemini\'s innovative echoburst rangefinder, the OT8-RF model allows you to accurately gauge the distance to your target; vital for effective precision shooting. The standard scope for Gemini\'s A03 Sniper Rifle, the OT8-RF is engineered to impress in a variety of situations and engagements.\n\nThe HighSec edition features a carbon fiber finish with red accents.'), +(4650,'MISC_Starlancer_Copilot_Seat','Seat','UNDEFINED','901e8e7a-995b-4ff4-ab70-e3b3f209095d','','',NULL), +(4651,'ESPR_Talon_Canopy_Frame','Misc','UNDEFINED','c4bb04f3-633f-4063-babb-7f3bf42d3dd8','','',NULL), +(4652,'Warden Backpack Delta Camo','Armor','Backpack','06da4100-fcb1-463f-ae8c-e1860593b64f','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nThis hard backpack from Virgil, Ltd. makes travel easy. Whether you need a place to carry your weapons or you\'ve decided to bring some extra rations along for a long journey, this backpack was designed to handle any occasion. The interior features a generous, closeable pocket to keep your small items from falling out of place.\n\nThis edition features a brown, gray, and tan camo pattern with brass accents.'), +(4653,'Carryable_1H_CY_Utensil_knife','Misc','UNDEFINED','e12fc494-164d-4ad6-b2bf-292b763f8f15','','',NULL), +(4654,'Seat','SeatAccess','UNDEFINED','a3e64036-fdfe-4fc3-8301-321098ae83d8','','',NULL), +(4655,'ADO-5 Laser Mine','Grenade','Small','555a3bf1-722e-459b-b005-52d7a9da8a65','','','Manufacturer: Behring\nItem Type: Laser Mine\n\nArea of Effect: 15 m\nDamage Type: Kinetic\n\nhe ADO-5, or commonly called ADOSS is a Laser Mine from Behring. It is a deadly tool you want to own to protect your precious goods, but you never want to accidentally step into. Where ADO stand for Area Denial Ordnance you can be sure that your property is well protected.\n\nThis deadly gadget is made of an light weight aluminum case that holds a strong explosive. It can be easily attached to any surface with our state of the art attachment technology.\n\nThe laser beam comes in predefined lengths for all your use cases, to provide a good variance for various room types, hallways or even giant hangars. \n\nHandle with care! Once activated the only way to turn it off is by destruction.'), +(4656,'Seat','Usable','UNDEFINED','0e9001ae-504c-4e37-a5b7-c013f17159cf','','',NULL), +(4657,'Hercules Starlifter 2951 Best in Show Livery','Paints','UNDEFINED','e8a0ecbc-2a03-46c7-bcd1-bfe4c117a61f','','','Celebrate the Starlifter being voted a Best in Show finalist for 2951 with this special blue and black livery.'), +(4658,'ARGO_MOTH_CargoGrid_Side','CargoGrid','UNDEFINED','9181cea7-462e-48f5-aea0-33d9f14077e8','','',NULL), +(4659,'ARGO_CSV_Roof_Cap','Misc','UNDEFINED','3fca9ae6-f90d-417d-b864-a05f3a1e6b66','','',NULL), +(4660,'Ridgely Jacket Grotto','Char_Clothing_Torso_1','UNDEFINED','82dac526-dedb-40d6-88cb-a597a82e76ba','','','Carrying Capacity: 1K µSCU\n\nThe extra-thick high collar of DMC’s Ridgely is part of a removable hood that makes the jacket surprisingly versatile and is a major reason why the Ridgely jacket is a perennial favorite amongst customers that live in, or venture through, cold environments.'), +(4661,'Internal Tank','QuantumFuelTank','QuantumFuel','973d6f75-5048-4b0b-aea1-56f2a21d6334','','',NULL), +(4662,'TRGT. STATUS','Seat','UNDEFINED','8448dfa9-0a6e-4d79-95e3-9893bea8c516','','',NULL), +(4663,'Fizzz Peach','Drink','Can','4a8aa8ca-0068-44f6-9129-0cebcdaf4c36','','','HEI: 16\nEffects: Energizing, Hyper-Metabolic\n\nA refreshing burst of fizzzy peach flavor!'), +(4664,'f_human_mannequin_explorer_undersuit','ShopDisplay','UNDEFINED','73ac9373-cdde-4f60-a88d-38aa0d021a93','','',NULL), +(4665,'MISC_Starfarer_Base_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','374998c8-3549-4704-bbb4-be4876a975d3','','',NULL), +(4666,'Door_Simple_Col_001','Door','UNDEFINED','736e644b-04d4-429a-bc87-d664a40d7937','','',NULL), +(4667,'Seat','Usable','UNDEFINED','45cf4c5f-4cf9-4345-b8c0-b8305811ddd0','','',NULL), +(4668,'Methane','Cargo','Cargo','65b58e01-13bf-4ce5-9dcc-330ba40345dc','','',NULL), +(4669,'INTK_DRAK_Cutlass_Black','FuelIntake','Fuel','17b1ef89-5c50-4d70-b351-c7eb1c1c4671','','',NULL), +(4670,'Sunset Berries','Cargo','Cargo','7c6cd8c6-6d89-496b-a125-bc3c529b3a4f','','',NULL), +(4671,'Guardian Eventide Livery','Paints','UNDEFINED','1221bff3-96e9-4ce6-b27f-0e2700ba99c1','','','The white lettering of the Mirai name and logo pop against the midnight blue and crimson red of the Eventide livery.'), +(4672,'Elevator Control','Elevator','UNDEFINED','2bef9cb3-3b1d-4198-bb30-66ecae04c8e9','','',NULL), +(4673,'Morozov-SH Arms Vesper','Armor','Arms','04452eea-1acc-47e5-9757-44a8a97efdd3','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(4674,'Bed','Usable','UNDEFINED','37951566-b86d-4ea0-b4ab-5c1a8ccbcfbb','','',NULL), +(4675,'Carryable_1H_CY_heater_portable_1_a','Misc','UNDEFINED','1f7c7f97-c840-4d82-8092-6257fd0e685d','','',NULL), +(4676,'Harlowe Shirt','Char_Clothing_Torso_0','UNDEFINED','8cc236dc-c8c3-4053-892f-603059ee3820','','','Capable as being worn on its own or as a base for layers, this long-sleeve henley style shirt from Alejo Brothers keeps you stylish and comfortable.'), +(4677,'Glacier','Cooler','UNDEFINED','5748cdbc-5a26-477a-a4ad-b20a593bde59','','','Item Type: Cooler\nManufacturer: Aegis Dynamics\nSize: 1\nGrade: A\nClass: Military\n\nYour weapons, your shields, your thrusters. All vital during combat, all generating heat. Enter the Glacier cooler from Aegis Dynamics. A best-in-class heat management system designed to keep you cool as the pressure mounts.'), +(4678,'KRIG_P72_Archimedes_Thruster_Main','MainThruster','FixedThruster','c6539328-61b0-492e-bbc4-d0ebe363b7c8','','',NULL), +(4679,'Carryable_1H_CY_bottle_bar_08_vodka_a','Misc','UNDEFINED','af397652-f5ea-4491-a139-00354884081b','','',NULL), +(4680,'XDL \"Snowfall\" Monocular Rangefinder','Weapon','Gadget','9bfcc85e-9595-4858-853f-ec2530f6db40','','','The highly accurate XDL Monocular Rangefinder from Behring is as suitable on an expedition as it is on the battlefield. Ruggedly constructed with high-quality lenses, easy-to-read display, and a light-amplification mode, the XDL provides 10x magnification to reliably provide exact-distance laser measurements on faraway targets.\n\nThe Snowfall edition features a pristine white finish.'), +(4681,'Constellation Andromeda Ship Armor','Armor','Medium','1abd192b-0c87-4ea5-99d2-5dadee7bf275','','','Constellation Andromeda Ship Armor'), +(4682,'Seat','Usable','UNDEFINED','6fecef04-9629-4925-98cb-977c425e4465','','',NULL), +(4683,'Lastaprene','Cargo','Cargo','76f7d848-ce5d-46ee-89ab-bdc8b6c46c15','','',NULL), +(4684,'Pite','Char_Head_Piercings','UNDEFINED','2be8f7ce-c24f-4389-b858-13e0382b35ef','','',NULL), +(4685,'TrueDef-Pro Arms Black/Silver','Armor','Arms','cc98f2a9-5fb5-4c5f-834e-efcba92e45a6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(4686,'Neoni Yuki Onna Helmet','Armor','Helmet','815e69f2-d0e3-4bca-b8a7-a000c53d33dd','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nShow that you serve no master with the Neoni helmet. Drawing inspiration from monster myths and warrior cultures of old, this menacing visage courtesy of CC\'s Conversions features a dramatic paint job, fang-filled grin, and pointed holographic horns, providing protection and intimidation in one memorable helmet. Visor is AR crosshair compatible.'), +(4687,'Seat','SeatAccess','UNDEFINED','168befc1-123b-4df3-b13c-bab5d131e81b','','',NULL), +(4688,'ESPR_Talon_Wing_Glass','Misc','UNDEFINED','29eee6e3-ff40-4f69-9455-2bcbdf5936a5','','',NULL), +(4689,'Remote Turret','Turret','GunTurret','f4cbc8a8-4efd-4fb2-a1cf-7595d52ab334','','','Remote Turret'), +(4690,'Seat','Usable','UNDEFINED','a606285b-fcd1-407b-900e-5fe8418eeaed','','',NULL), +(4691,'Overlord Arms Tempered','Armor','Arms','5cebc487-7340-4691-a9fb-f9b6e6499668','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.\n\nThe Tempered edition is mostly steel gray with prominent black sections.'), +(4692,'ANVL_Hornet_F7CM_Dashboard_Copilot','SeatDashboard','UNDEFINED','091658e1-c3bc-4d2b-8623-f5c2f50fc144','','',NULL), +(4693,'Seat','SeatAccess','UNDEFINED','a526bcb7-d6e1-49b2-b7a5-a7879929286a','','',NULL), +(4694,'Laranite','Cargo','Cargo','1a3f672f-495f-4924-baed-36a82b0988c2','','',NULL), +(4695,'SNS-R6x','Radar','MidRangeRadar','d048771d-6001-4176-9b48-2788927f5d30','','','Item Type: Radar\nManufacturer: Nav-E7 Gadgets\nSize: 2\nGrade: C\nClass: Competition\n\nThe SNS-R6x provides certainty when detecting electromagnetic emissions, as well as offering reasonable levels of energy efficiency.'), +(4696,'RSI_Perseus_Thruster_Mav_Bottom','ManneuverThruster','UNDEFINED','39896fbd-e0a5-4ebb-910c-1f510efb92d7','','',NULL), +(4697,'MISC_Fortune_Salvage_Arm','ToolArm','UNDEFINED','fddf6a6a-e0df-465e-ba4a-6af41045dafb','','',NULL), +(4698,'Scimitar V Missile','Missile','Missile','ffcf3d55-bc12-4244-b3c9-ebd709c5cd2e','','','Manufacturer: Talon\nTracking Signal: Electromagnetic\nSize: 5\n\nThe Scimitar missile tracks targets via their EM signature to deliver a devastating size five payload.'), +(4699,'un_plate_burger_1_a','Misc','Consumable','eae7a6cb-f2a1-4c92-bb12-10cff443de9d','','',NULL), +(4700,'Carryable_cleaning_sponge_2_a','Misc','UNDEFINED','5952e70d-0a9f-48cf-8575-c76ae251cf07','','',NULL), +(4701,'Degnous Root','Misc','Harvestable','d8676266-51a0-47f6-badf-99afc69ea29a','','','Degnous root is a macroalgae that was discovered in the shallow coastlines of Prime on Terra. Once harvested, degnous can be utilized as an ingredient in medical and health products thanks to its unique blend of amino acids.'), +(4702,'Bed','Usable','UNDEFINED','3f3e9303-aa4a-4725-b20f-586760cca0e3','','',NULL), +(4703,'Stud','Char_Head_Piercings','UNDEFINED','f213bd16-f3fd-4f1e-826f-911e59b1fe10','','',NULL), +(4704,'Seat','SeatAccess','UNDEFINED','344a67f4-566f-4fef-bfb1-7647c1d0269c','','',NULL), +(4705,'Seat','Usable','UNDEFINED','6fe69fa8-8d31-4f0e-9346-fd0f158017e9','','',NULL), +(4706,'Guardian Downpour Livery','Paints','UNDEFINED','1e0ec198-7659-4886-9b07-7b2ab309f625','','','A bold blue and grey combination that bellows with the power of a storm, the Downpour livery demands attention.'), +(4707,'Feynmaline','Cargo','Cargo','1502ef65-babc-4156-a98b-7da764fb8641','','','The paramorphic crystalline structure of this mineral is extremely volatile. When extra energy is introduced, as is typical with modern mining, the ore will often explosively degrade into the more stably structured Janalite. This instability makes Feynamline very dangerous to acquire but also extremely valuable as an industrial anti-matter precursor if it can be properly harvested.'), +(4708,'PH - cbd_hat_03_01_fleetweek2022','Char_Clothing_Hat','UNDEFINED','e4be6b9b-cc87-4651-af9c-599c6f72c113','','','PH - cbd_hat_03_01_fleetweek2022'), +(4709,'ORC-mkX Legs (Modified)','Armor','Legs','bc079d07-34ff-46c1-938b-d8a617118760','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nThis version of CDS\' ORC-mkX legs has been modified from its original form. The mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(4710,'Salvation Disco Livery','Paints','UNDEFINED','2ebd6bbe-b670-4194-bd0a-60c61a4bbe59','','','Equip the ship livery used by ace pilot Disco in the classic children\'s cartoon Rory Nova. While it turns the Salvation metallic dark blue, black, and red, whether you turn into the \'dynamic, instinctive spacecraft operator\' that inspired the livery\'s name is up to you.'), +(4711,'Ursa Fortuna Livery','Paints','UNDEFINED','23d8bd97-375e-4aca-b380-4b86ad0e8417','','','Standard livery for the RSI Ursa Rover Fortuna.'), +(4712,'Remote Turret','Turret','GunTurret','d82f7efa-22fc-4502-befb-904ff9983ff1','','','Remote Turret'), +(4713,'Gelid','Cooler','UNDEFINED','5e5e363e-2ae2-455f-8062-49189906fdc9','','','Item Type: Cooler\nManufacturer: Wen/Cassel Propulsion\nSize: 1\nGrade: A\nClass: Civilian\n\nAllowing for greater thermo-dispersal and improved performance output, the top-of-the-line Gelid cooler from Wen/Cassel is an all-inclusive heat management system ideal for a variety of ships.'), +(4714,'Spirit Resolute Livery','Paints','UNDEFINED','7c4831e3-c964-4f95-8983-bc2b5c07be81','','','With a dual tone grey body and steel blue trim, this subtle livery will ensure you Crusader Spirit is worth a second look.'), +(4715,'MISC_Hull_C_SCItem_Tractor_Seat','Seat','UNDEFINED','3f5cc6a0-92b6-4250-bcdb-fd87623e8224','','',NULL), +(4716,'Door_Ship_Sensor_Proximity_1x3x3','Sensor','DoorPart','0f55a8f8-15db-4d6a-b57c-62fafeb05023','','',NULL), +(4717,'KRIG_P52_Merlin_Thruster_Mav_Lateral_R','ManneuverThruster','JointThruster','9f81f63a-2f11-4185-8474-199f76b0cec7','','',NULL), +(4718,'Table_Booth_4_Seat_MISC_Starlancer_TAC','Usable','UNDEFINED','bfc9ee20-f27e-4433-9ba5-20be1897279e','','',NULL), +(4719,'Silicon','Cargo','Cargo','9c1645ac-c040-43ec-93ca-b6aaf198540d','','',NULL), +(4720,'Oracle Helmet Lichen','Armor','Helmet','08449933-d4ef-4c85-bcd2-bdcece18e824','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(4721,'ORIG_100i_Thruster_Main_Left','MainThruster','FixedThruster','aaf441b3-49c6-4b0f-a19b-719c879aefd0','','',NULL), +(4722,'AEGS_Door_Decal_Airlock_01','Decal','DoorPart','26118f29-4f9c-4533-bd61-466bb48d9699','','',NULL), +(4723,'Internal Tank','FuelTank','Fuel','f0a8623c-4f63-413e-afd8-6d0789486f3b','','',NULL), +(4724,'Carryable_1H_SQ_drug_neon_1_a','Misc','Utility','d1f346a9-6fd1-47dd-a4ce-c4856aaaf42f','','',NULL), +(4725,'Jaclium (Ore)','Cargo','Cargo','18fee6bf-81dd-475a-aeaa-3969613cca94','','','A naturally occurring rare metal form of jahlium, it is used in the production of extremely strong alloys with incredible tensile strength. Originally confused with common jahlium when first discovered, the above average results when used lead to researchers to realize its value.'), +(4726,'weapon_underbarrel_light_narrow','WeaponAttachment','Light','2a9e98d2-38af-4658-9801-a21aebb85109','','',NULL), +(4727,'ANVL_Lightning_F8_Thruster_Retro_DarkBlue','ManneuverThruster','FixedThruster','4f06ced5-05ef-439b-840e-6d72e1b74de9','','',NULL), +(4728,'Aril Core Red Alert','Armor','Torso','2daea656-087b-4d14-8092-a1252f714bc9','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(4729,'Arden-SL Legs','Armor','Legs','16bde033-8e67-44ae-bc79-b6e4859d4a43','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics.'), +(4730,'ANVL_Terrapin_Thruster_Retro','ManneuverThruster','FixedThruster','79fd9d5d-5904-40a9-8100-3f608314cbe8','','',NULL), +(4731,'Pite','Char_Head_Piercings','UNDEFINED','cc804bff-1be4-4041-abda-eef73c86598f','','',NULL), +(4732,'Seat','SeatAccess','UNDEFINED','d1c351b7-eee6-4b8d-81f6-67978deb9ccc','','',NULL), +(4733,'TrueDef-Pro Arms Black/Grey','Armor','Arms','1f6814cc-2dc4-4d82-ba89-abfb0515bf74','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(4734,'Denning','Radar','MidRangeRadar','28e81323-a16a-4995-9da5-1aca23b4044c','','','Item Type: Radar\nManufacturer: WillsOp\nSize: 0\nGrade: C\nClass: Civilian\n\nWith the Denning, you can now equip an award winning WillsOp radar to your vehicle.'), +(4735,'Clempt Pants Dark Green','Char_Clothing_Legs','UNDEFINED','7a561768-d9e7-41f1-83de-80499d028be9','','','Carrying Capacity: 2K µSCU\n\nStegman\'s factory pants have been taken to the next level with the Clempt line. These rugged all-purpose pants come with double knees for extra comfort and protection and are made from tough composite weave fabric to last as long as the work needs.'), +(4736,'Strata Arms ArcCorp Edition','Armor','Arms','3dbb4ed7-44ba-4b78-bfc2-39782c60e5ab','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The ArcCorp Edition was made specifically for the company.'), +(4737,'Constellation Orange Heron Livery','Paints','UNDEFINED','a15d45ae-7bd5-4058-bd38-a199ccf723e3','','','Mixing orange with black and white highlights, the Orange Heron livery will help you blaze your own path through the universe.'), +(4738,'LifeCure Medsticks','Cargo','Cargo','0093bd3b-83cf-4187-a815-052c94416a4d','','',NULL), +(4739,'Concept Shirt Imperial','Char_Clothing_Torso_0','UNDEFINED','7629ed50-7a3b-4e8b-83db-9f500961ca30','','','This crisp, versatile button-front shirt from Fiore is made with cutting edge stain resistant and wrinkle-free technology, guaranteeing that you stay professional at all times.'), +(4740,'Artimex Helmet Red Alert','Armor','Helmet','ec698d54-84bb-434e-859a-0fff62426618','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape. Visor is AR crosshair compatible.'), +(4741,'display_1_25m_a_centermass_1port','ShopDisplay','Default','9efc1db3-eeec-449a-91a9-97a273f57b3f','','',NULL), +(4742,'Inquisitor Arms Blue','Armor','Arms','908dc912-937f-4b43-9741-97bfd4ba9b6c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(4743,'Balor HCH Helmet Black','Armor','Helmet','f44a56dd-522f-404f-800c-c501407252e8','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. Visor is AR crosshair compatible.'), +(4744,'ANVL_Gladiator_Thruster_Main','MainThruster','JointThruster','86646282-99e5-4ee9-ae20-5cd5f49c49ac','','',NULL), +(4745,'Novikov Backpack Mire','Armor','Backpack','0bcd0305-b5a4-4ddc-b69c-861886a6b3ee','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nConfidently explore cold environments while wearing the Novikov. Caldera designed a spacious backpack to compliment this advanced exploration suit, so those venturing across unknown terrain can bring enough supplies to survive the journey.\n\nThe Mire edition features natural greens and industrial grays.'), +(4746,'Seat','Usable','UNDEFINED','d030ce79-5608-46fa-ad85-e3bad74844bc','','',NULL), +(4747,'MSD-442 Missile Rack','MissileLauncher','MissileRack','13938ea8-d17d-429f-b467-8af4d83a889d','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 4\nMissiles: 4xS2\n\nBehring’s MSD-442 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 4 hardpoint for the reliable and effective launch of four S2 missiles.'), +(4748,'Door Control','Door','UNDEFINED','e30760e3-19b5-46dc-bd75-39fe51400cc8','','',NULL), +(4749,'Door Control','Door','UNDEFINED','46027f67-3934-464a-a50e-57b07b588d53','','',NULL), +(4750,'Internal Tank','FuelTank','Fuel','2d9a37a3-e49e-4eab-8c37-bfd97b68880b','','',NULL), +(4751,'m_human_mannequin_rsi_suit_02','ShopDisplay','UNDEFINED','fe477cd3-dd5d-494e-a6b9-a9afdf940bc0','','',NULL), +(4752,'RSI_Aurora_LN_Thruster_Mav_Joint_01','ManneuverThruster','JointThruster','80182ed5-3710-4f6f-93aa-dab00f9a2d8a','','',NULL), +(4753,'ARMR_DRAK_Caterpillar','Armor','Medium','2fdd1037-131e-4291-8a1f-204f1d8b390f','','',NULL), +(4754,'Radar_Display_Screen_Cutlass','Display','UNDEFINED','bb06f078-7af0-4b14-8d19-514ce80d1b47','','',NULL), +(4755,'MASTER_screen_16x9_1_004x00255_a','Display','UNDEFINED','ba7b0504-fde0-4c2b-b975-acec8ffa01a2','','',NULL), +(4756,'Inquisitor Legs Grey','Armor','Legs','403bd2f7-7978-4072-8603-5d5f279d4bb6','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(4757,'H_Dashboard_Projector_HUD_ESPR_Prowler','Display','UNDEFINED','83ae5d19-48db-47dc-a700-6ff0c74f8c77','','',NULL), +(4758,'IFR-BC7 Turret','TurretBase','MannedTurret','3bcd974f-1b44-4871-933f-e23d6a05e09b','','','Item Type: Turret\nManufacturer: Aegis Dynamics\nSize: 7\n\nThis manned turret, designed by Aegis to be used with ballistic cannons, is bespoke to the Idris frigate.'), +(4759,'Li-Tok Boots Violet','Char_Clothing_Feet','UNDEFINED','71bc2e14-5d75-49f8-92c9-ccf156b9a99a','','','Stylish yet rugged, NorthStar\'s Li-Tok boots are made from a composite nylon fabric, vulcanized rubber grips that hold fast to a variety of surfaces, and reinforced ankle support making these perfect for hanging out or on the job.\n\nWomen\'s sizes currently out of stock.'), +(4760,'PGR Capacitor','Battery','Cargo','ef89f05a-73a1-4a86-a503-02073d92d199','','','This high-capacity industrial capacitor features optimized voltage output to minimize power fluctuations, improving the performance of generators and heavy machinery alike.'), +(4761,'Avenger Solar Winds Livery','Paints','UNDEFINED','da42297a-24b9-4c8e-9f44-f3e86a33e263','','','Fly in style with the Solar Winds livery that gives the Avenger a metallic silver finish with maroon highlights.'), +(4762,'OMNI-AFS-Sapphire Helmet Jungle','Armor','Helmet','7c70a54a-f79e-452c-a222-9fab7069f8f0','','','Item Type: Light Helmet\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nSimilar to the helmet worn by UEE Navy pilots, the OMNI-AFS-Sapphire helmet delivers excellent protection and visibility. Multilayered plating protects against impacts while its wide faceplate ensures clear, unobstructed views whether in the cockpit or on foot.'), +(4763,'Door','Door','UNDEFINED','24df9ce0-29fc-4f11-8f71-114bcd81fdea','','',NULL), +(4764,'ORC-mkV Legs Sienna','Armor','Legs','cdf17d88-1408-42ea-8339-74e4078f80de','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(4765,'Esperia Talon','Paints','UNDEFINED','5eeb1c87-8acf-41dd-ab37-4e82348b1553','','','Manufacturer: Esperia\nFocus: Light Fighter\n\nThe Talon represents Esperia\'s continuing effort to preserve historically significant Tevarin ship designs. A maneuverable single-seat combat ship with light armor but powerful, directional \"Phalanx\" shields, the Talon is made to strike first and strike hard before using the shields to cover its escape.'), +(4766,'AEGS_Avenger_CargoGrid_Stalker','CargoGrid','UNDEFINED','c2685798-8c72-45fc-ade2-adc7d5263338','','',NULL), +(4767,'Bar_Table_MMHC','Usable','UNDEFINED','f8555960-b21b-4197-96ca-35cbc2a94d87','','',NULL), +(4768,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','694939f5-64b1-43d4-88a9-2a7248daaef5','','','Joker Defcon - Noise Launcher'), +(4769,'TRGT. STATUS','Seat','UNDEFINED','26dc163d-706b-4566-aeb6-f82d97f44cc8','','',NULL), +(4770,'RSI_Polaris_Seat_Access_Pilot_FW','SeatAccess','UNDEFINED','e760c6eb-b123-4657-b47f-ccfcb00119cf','','',NULL), +(4771,'Chiron Helmet Samaritan','Armor','Helmet','61e7a1c3-38a4-4270-b3a3-67c5a17d884a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nUtilizing a crystal clear protective glass treated with a specialist hydrophobic glaze, the Chiron light helmet was purpose built to protect against fogging and glare, guaranteeing that first responders will retain complete vision in emergency situations.\n\nThe Samaritan edition was styled for first responders to be highly visible. The red, white, and grey color scheme features a white medical cross symbol across the chest and helmet.'), +(4772,'MISC_Freelancer_Thruster_Mav_Joint_Bottom','ManneuverThruster','JointThruster','48e283e8-9dcf-406e-91e6-4bd6f13dbaae','','',NULL), +(4773,'Bed','Usable','UNDEFINED','51b420c3-3b24-4ac2-8221-78c3ab0b3b7b','','',NULL), +(4774,'sc_nvy_medical_corpsman_jacket_01_01_01','Char_Clothing_Torso_1','UNDEFINED','968b2581-cc7a-488e-974d-9486ddf70e01','','',NULL), +(4775,'Ship Showdown \'52 Coin','Misc','Utility','48577e19-954f-4095-b4aa-f6a105ef6666','','','This commemorative coin from the 2952 Ship Showdown embodies the spirit of the competition by featuring the silhouette of a Cutlass and Hornet facing off against a blue and orange background divided by a lightning bolt.'), +(4776,'INTK_MISC_Freelancer_DUR','FuelIntake','Fuel','a0afef3f-4616-4edd-970f-194e2ae87ab4','','',NULL), +(4777,'Golden Medmon','Cargo','Cargo','a3a8b127-6aed-4bd0-b4a4-ff2ec7c5bb84','','',NULL), +(4778,'AEGS_Idris_CargoGrid_MissileRoom_Back','CargoGrid','UNDEFINED','1d58c2a0-457d-4c94-90a1-0e766ad69ba5','','',NULL), +(4779,'Lynx Legs Cold Steel','Armor','Legs','02e2de94-5804-4d67-9ca9-cb70461488eb','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(4780,'RSI Polaris Missile Rack','MissileLauncher','MissileRack','f3d9f6bf-4042-49b1-b09b-223b1ba289cd','','','Item Type: Missile Rack\nManufacturer: RSI\nSize: 10\nMissiles: 8xS3\n\nThis bespoke S10 mount for the Polaris holds a missile rack carrying eight S3 missiles.'), +(4781,'Overlord Legs Cardinal','Armor','Legs','38ea3796-308f-4870-b128-6add12a032ed','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.\n\nThe Cardinal edition is a vibrant red with purple and white accents.'), +(4782,'Seat','SeatAccess','UNDEFINED','20cf6798-15d3-4027-8528-b4940a330c5c','','',NULL), +(4783,'Body','Char_Clothing_Hands','Medical','95066e6d-9470-4f70-aa0c-a6feeeff1768','','',NULL), +(4784,'DRAK_Dragonfly_Thruster_Main','MainThruster','FixedThruster','d326ec13-1935-4293-bd06-2216d6bcfbc7','','',NULL), +(4785,'Clipper Basalt Livery','Paints','UNDEFINED','486eb4f7-9612-43ed-86b3-7bc6799fd8de','','','Mainly black, the Basalt livery also brings red and cream highlights to the Clipper.'), +(4786,'Testudo Arms Deathblow','Armor','Arms','fc2b3f74-c723-441c-bdc7-aa19f82d1a2b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBased on Quirinus Tech\'s Testudo medium combat armor, the Deathblow variant has received unauthorized aftermarket modifications. This armor set weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort.'), +(4787,'DockingTube_Fuel_Ports_DRAK_Vulture','DockingCollar','UNDEFINED','4016b545-c124-463d-9937-d93b4b38de78','','',NULL), +(4788,'Salvo Frag Pistol','Weapon','Small','3b6d199f-9eaa-4bcd-b607-398f7f50482c','','','Manufacturer: Hedeby Gunworks\nItem Type: Frag Pistol\nClass: Ballistic\n\nMagazine Size: 8\nRate Of Fire: 140 rpm\nEffective Range: 80 m / 10 m (Charged)\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nWhile the Salvo can be used as a normal pistol, Hedeby didn’t stop there. With a longer trigger pull, a freezing primer is injected into the chamber and when released, the heavy firing pin hits with enough force to pulverize the supercooled casing. Accidentally developed as an attempt to mitigate overheating, this charged fire option discharges a deadly spray of high-velocity fragments followed by an ear-shattering boom.'), +(4789,'OMNI-AFS-Sapphire Armored Flight Suit Alpine','Armor','Undersuit','2319da52-b185-4e0a-b841-5f7e8795f755','','','Item Type: Armored Flight Suit\nDamage Reduction: 20%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nInspired by the armored flight suit worn by UEE Navy pilots, the OMNI-AFS-Sapphire has been battle tested and refined for centuries to become the ultimate wear for any pilot. Its sturdy yet comfortable construction can not only withstand hostile environments, but comes with integrated arm, core, and leg armor for combat encounters. The only way a pilot can get closer to the real thing is by enlisting.'), +(4790,'Datapad','Misc','Gadget','c68abc93-7c00-4053-8b6f-c451edd0061e','','','A portable tablet computing device featuring a touchscreen display.'), +(4791,'P8-AR Rifle Magazine (15 Cap)','WeaponAttachment','Magazine','dd21edb8-a0ba-42ab-a02a-bec325e96c87','','','Item Type: Magazine\nCapacity: 15\n\nThis magazine for the Behring P8-AR rifle comes pre-loaded with fifteen rounds.'), +(4792,'Weapon_Rack_1_Volt_Rifle_AmmoOnly_001','Usable','UNDEFINED','3636d470-1814-4321-84c5-52fc67ec1f2f','','',NULL), +(4793,'SureGrip PR-S3 Tractor Beam','SalvageHead','UNDEFINED','254af384-de0f-4882-9e2f-23f55f66f63a','','','Manufacturer: Greycat Industrial\nMax Angle: 80°\nMax Range: 130 m\nFull Strength Distance: 55 m\n\nThis precision variant of Greycat’s SureGrip tractor beam sacrifices some of the power and range of the base model in exchange for a wider angle of manipulation and greater tether grip, allowing for careful handling of more delicate goods.'), +(4794,'Seat','SeatAccess','UNDEFINED','0fb78ca9-480c-46d2-8fe9-1a2b3110bf5c','','',NULL), +(4795,'Ht_D_Airlock_Small','Usable','UNDEFINED','7e6e537b-5672-4f4b-8c2b-c733e1cee342','','',NULL), +(4796,'Quantainium (Raw)','Cargo','Cargo','20730b30-030d-4362-b1ba-2dc01799db7f','','',NULL), +(4797,'MISC_Starlancer_Turret_Lighting_OC','Room','UNDEFINED','ea052de3-ae4d-4f0e-9730-d854eb834936','','',NULL), +(4798,'PAB-1 Arms Covalex Edition','Armor','Arms','e1624ad3-24b9-48da-8bdb-ab20d6b807e2','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile. The Covalex Edition was made specifically for the company.'), +(4799,'Guardian Red Skies Livery','Paints','UNDEFINED','de52e8a4-f5b9-4cc6-b7d8-7b2214949cab','','','Soar into the setting sun with this sharp collection of reds and whites in the Guardian Red Skies livery.'), +(4800,'ARMR_ARGO_CSV','Armor','Medium','9ff7f902-f677-4a33-964f-4d6e3c683574','','',NULL), +(4801,'Internal Tank','FuelTank','Fuel','3c058a4d-1ce9-4b3b-80fb-f2b76770b53d','','',NULL), +(4802,'ControlPanel_Screen_LightControl_1x1','ControlPanel','DoorPart','bb585ed1-af87-49f9-85a4-9fc7651e75ee','','',NULL), +(4803,'Testudo Arms','Armor','Arms','cb8be778-fb01-4dad-85e4-aa99a7a69c9d','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Testudo armor for Quirinus Tech blends battlefield durability with everyday comfort. It weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort.'), +(4804,'ESPR_LaserCannon_PowerArray_S1','WeaponAttachment','PowerArray','b5a019a4-9ca3-48bc-9fd3-fa334871938a','','',NULL), +(4805,'Hornet Mk II Shikari Livery','Paints','UNDEFINED','f662ddb0-14db-4765-a22a-10ff6fbd9b37','','','The Shikari livery gives the Hornet Mk II a unique silver and blue camo design.'), +(4806,'PAB-1 Legs Aqua','Armor','Legs','f8537aee-df0c-4d44-bdd8-340bdf4c2a30','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(4807,'tool_scanner_1_a','Misc','UNDEFINED','d7745265-d4b1-4268-8ab8-53df6edc8e03','','',NULL), +(4808,'Carryable_1H_CY_drug_stomachmedicine_1_d','Misc','UNDEFINED','8c1b1fa8-cd62-4505-b8f9-b8ad1ea92f53','','',NULL), +(4809,'ForceWall','Shield','UNDEFINED','b66a64ca-9c53-40e7-8618-3b66b10a021c','','','Item Type: Shield Generator\nManufacturer: Gorgon Defender Industries\nSize: 1\nGrade: B\nClass: Military\n\nWant to stay in the thick of battle a bit longer? Gorgon’s ForceWall is a military-grade shield generator that’s able to absorb more damage, providing a notable uptick to your shield’s durability.'), +(4810,'Mule Ghoulish Green Livery','Paints','UNDEFINED','cf489d70-4718-4193-824c-10fb08895507','','','Embrace Day of the Vara mischievousness and mayhem any time of the year with this custom Mule livery. It combines metallic green and black for a striking look that highlights the holiday\'s classic colors.'), +(4811,'Odyssey II Undersuit Seagreen/Black','Armor','Undersuit','68920387-9d36-4c36-bc42-78922ab6ffc3','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe latest generation of RSI\'s classic Odyssey undersuit features a new rugged design capable of withstanding the harshest of conditions in space or planetside. Built using the latest microweave technology, the Odyssey II undersuit provides hours of comfort in locations that are anything but comfortable.'), +(4812,'Door','Door','UNDEFINED','b7df703b-c5bc-4108-b187-66a66a60dc4c','','',NULL), +(4813,'Harkin','DockingCollar','UNDEFINED','7f66aad7-5f59-45a6-9925-fc23a0c9f3d1','','','Manufacturer: Greycat Industrial\nItem Type: Fuel Nozzle\nSafe Flow Rate: 0.8 SCU/s\n\nBy maintaining a higher working pressure, the Harkin fuel nozzle from Greycat not only provides for a wider range of safe flow rates, but allows the attached storage to hold additional fuel albeit at a slower overall transfer rate.'), +(4814,'Antium Helmet Jet','Armor','Helmet','4ddd8283-1b5c-422b-825d-5dee1e776fcf','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -85 / 115 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(4815,'Door Control','Door','UNDEFINED','aecd636f-b9f0-4c0e-949e-ddb2eb42d6d0','','',NULL), +(4816,'Iodine','Cargo','Cargo','f9a771f3-6a75-4cd9-aaaa-9cede9e186cc','','',NULL), +(4817,'Seat','Usable','UNDEFINED','70facf21-46e5-4bc6-9697-55675f99f928','','',NULL), +(4818,'Copper (Ore)','Cargo','Cargo','c6c1951c-5c66-4cfe-90b2-15ed6a0a1880','','',NULL), +(4819,'Door Control','ControlPanel','DoorPart','45ebbf53-ce67-3873-ff51-d59a164358b4','','',NULL), +(4820,'BANU_TachyonCannon_FiringMechanism_S3','WeaponAttachment','FiringMechanism','17974c89-fc2d-4eae-bd8d-70c2509e80e8','','',NULL), +(4821,'Calamity XII-CS Torpedo','Missile','Torpedo','610b44d6-7ad5-4ea8-a1f3-f1f60d220588','','','Manufacturer: Talon\nTracking Signal: Cross Section\nSize: 12\n\nDesigned by Talon, the Calamity heat seeking strike torpedo delivers a heavy payload sure to serve as a deterrent from any further hostile actions.'), +(4822,'Retaliator Cargo Front Module','Module','UNDEFINED','4cd10ac0-2c15-4753-9284-fafe5e8fa7db','','','Retaliator owners can equip their ship with this front module to allow for storage of an additional 36 SCU of cargo.'), +(4823,'Deo Shirt Dark Red','Char_Clothing_Torso_0','UNDEFINED','4b633779-56b5-4e81-8206-a7a068e6a31b','','','Fiore\'s Deo is a slim cut work shirt that\'s as practical as it is timeless. Featuring a high collar and metal neck clasp, the Deo has been a mainstay in business attire.\n\nWomen\'s sizes currently out of stock.'), +(4824,'Talon Ocellus Livery','Paints','UNDEFINED','ff0d9d08-6852-41d0-b30d-8dd60b0b43a0','','','The Ocellus livery replicates the look of the Talon during the Second Tevarin War. It features a bold red fuselage meant to draw attention and trick aggressors into shooting at the most heavily armored part of the ship.'), +(4825,'INTK_AEGS_Reclaimer','FuelIntake','Fuel','998b41a8-7ca2-4dca-b44a-c75179c6a112','','',NULL), +(4826,'Door Control','Door','UNDEFINED','56f4b741-7aea-4c38-87f6-78f3d2273ef7','','',NULL), +(4827,'Railing_Straight_4m_Lowtech_Guardrail_B','Usable','UNDEFINED','ff98784b-db86-47d3-a76f-64e61ee7e963','','',NULL), +(4828,'ARMR_GRIN_ROC','Armor','Medium','421d50c1-4270-45be-b24d-0758462ec4fd','','',NULL), +(4829,'VNCL_Gen2_PlasmaCannon_FiringMechanism_S2','WeaponAttachment','FiringMechanism','1d18bc82-495c-4fb7-8f65-a5e67dcdbc60','','',NULL), +(4830,'CF-557 Galdereen Repeater','Weapon','Gun','35d956a4-8297-4327-bb05-415af9f6531a','','','Manufacturer: Klaus & Werner\nItem Type: Laser Repeater\nSize: 5\n\nWith a bite as fearsome as its fanged namesake, the Klaus & Werner CF-557 Galdereen laser repeater is a solid choice for a wide range of vehicles thanks to its high rate of fire and consistent efficacy.'), +(4831,'BEHR_LaserCannon_Barrel_S5','WeaponAttachment','Barrel','50b0b689-b94f-43f8-a76d-80451d548dd4','','',NULL), +(4832,'BinRummage_trashbag_standing','Usable','UNDEFINED','3bfaa552-3ba1-427c-af6c-afec2778fa38','','',NULL), +(4833,'Geist Armor Legs Snow Camo','Armor','Legs','a0518e3b-8d71-44d6-a153-05f4e0a4184b','','','Item Type: Light Armor\nDamage Reduction: 20%\nCarrying Capacity: 2.5k µSCU\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.\n\nFeaturing a hooded shawl and a white digital camo pattern, the Snow Camo edition is perfect for stalking prey in frozen environments.'), +(4834,'Citadel-SE Arms White','Armor','Arms','2d216b25-a317-49d5-888d-a28df20f3a9b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(4835,'ColonialismAirlockTerminalTemplate','ControlPanel','AirlockPart','507de0c9-89c7-4b86-912d-a4eea5d0409e','','',NULL), +(4836,'H_Dashboard_Projector_HUD_ANVL_Arrow','Display','UNDEFINED','0e72731b-3c82-4f90-a553-91514ad4f783','','',NULL), +(4837,'Carryable_1H_CY_party_canape_2_a','Misc','UNDEFINED','3df97474-ec3c-4d7f-b1eb-7d7449c6aa02','','',NULL), +(4838,'INTK_CRUS_Starfighter','FuelIntake','Fuel','bf43143a-25fd-4bc8-9d6f-5532cdf4a86f','','',NULL), +(4839,'Internal Tank','QuantumFuelTank','QuantumFuel','7c01cb38-e02d-45f6-b5f0-e7664cb5137b','','',NULL), +(4840,'Carryable_1H_SQ_datapad_tablet_2_slaver_a','Misc','UNDEFINED','9b968843-33e2-4453-8f5d-90b77987b238','','',NULL), +(4841,'Gladius Solar Winds Livery','Paints','UNDEFINED','ea77577b-d7fc-460e-939d-878843cf945d','','','Fly in style with the Solar Winds livery that gives the Gladius a metallic silver finish with maroon highlights.'), +(4842,'DoorProximitySensorItem_2_5x8x5','Sensor','DoorPart','a3def0d9-1358-42db-b5fe-330141b3d543','','',NULL), +(4843,'Hammerhead Ship Armor','Armor','Medium','d0a1f62b-9dca-4f0c-9977-fd685772ffdd','','','Hammerhead Ship Armor'), +(4844,'Paint_325a_microTech_Security','Paints','UNDEFINED','874b2903-5f28-4572-a0cc-93bfd6c6bb6e','','','@LOC_PLACEHOLDER'), +(4845,'Seat','SeatAccess','UNDEFINED','8878a977-42e2-4b89-b5e6-4637c227e369','','',NULL), +(4846,'M9A Cannon','Weapon','Gun','6bf837a5-2763-4cd3-aa9c-869b0e798cb3','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 7\n\nStrike at the very heart of your enemies with the devastating impact of Behring\'s M9A energy autocannon. When fully charged, the massive stopping power of this laser weapon has the potential to halt even capital ships in their tracks.'), +(4847,'Concept Shirt Red','Char_Clothing_Torso_0','UNDEFINED','5ad2a1f4-46d7-431d-99cd-41212397483a','','','This crisp, versatile button-front shirt from Fiore is made with cutting edge stain resistant and wrinkle-free technology, guaranteeing that you stay professional at all times.'), +(4848,'Amioshi Plague','Cargo','Cargo','8cb9b9d4-f5d5-4c34-8cab-b86f8e8638b2','','',NULL), +(4849,'SHIELDS','ShieldController','UNDEFINED','934007a1-4603-4bb9-801a-d097177e3b00','','',NULL), +(4850,'DockingTube_Fuel_Ports_DRAK_Cutter','DockingCollar','UNDEFINED','d615c848-16d7-4acd-b018-851a4f5b56c9','','',NULL), +(4851,'display_pistols_04x01x01_6Ports','ShopDisplay','UNDEFINED','82e06780-5c35-4291-b4a7-567e5d503133','','',NULL), +(4852,'BEHR_LaserCannon_PowerArray_S9','WeaponAttachment','PowerArray','8997459c-de3b-43e2-bf24-5808888d1b0d','','',NULL), +(4853,'NN-13 Cannon','Weapon','Gun','3fc83638-fbe5-4d75-8e18-678736fefbc4','','','Manufacturer: MaxOx\nItem Type: Neutron Cannon\nSize: 1\n\nMaxOx’s NN-13 neutron cannon offers a massive energy payload at the expense of speed and energy efficiency. One could argue the virtues of speed, rate of fire and distance over damage, but the argument becomes irrelevant if you only need to hit them once.'), +(4854,'Door','Door','UNDEFINED','bb169152-970f-4a3d-9f41-fde1b1ba3874','','',NULL), +(4855,'Grappler Gloves Bone','Char_Clothing_Hands','UNDEFINED','a81af902-320b-4668-813e-47d76474b901','','','Originally made for open-canopy racers, the Grappler gloves became beloved for their versatility and durability. Their mix of leather and synthetic fabrics make for a lightweight and warm wear. They also feature an adjustable strap to guarantee the perfect fit, and a special tactile fingertip design so wearers don\'t have to remove the gloves to interact with screens.'), +(4856,'Silnex','Cargo','Cargo','23520e9d-3cd2-40fa-bf42-8d7da0a6b101','','',NULL), +(4857,'Morozov-SH-I Helmet Pyrotechnic Spite','Armor','Helmet','0d6adeeb-ca90-45ab-b75b-89a96b98628f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing the same fortified armor plating, special anti-rip protective padding and ample storage, as the Morozov SH, the SH-I industrial variant was designed by RRS to protect workers employed in hostile zones while ensuring they had the full range of motion required to perform their duties. The Pyrotechnic Amalgamated Edition was made specifically for the company\'s mining efforts in Pyro during the 26th century. Visor is AR crosshair compatible.'), +(4858,'Railing_Straight_1m_LowTech_Bravo_Int_Open','Usable','UNDEFINED','9abe776e-1c53-4039-83b4-9ad9e9f770bb','','',NULL), +(4859,'Remote Turret','Turret','PDCTurret','e637dcef-fb7e-4f94-b614-3c67cf3179d0','','',NULL), +(4860,'Strata Arms Amber','Armor','Arms','1592dd21-3634-4778-a284-24ef5d393389','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres.'), +(4861,'Seat','SeatAccess','UNDEFINED','962dd710-771d-402f-878e-ef97408a3d5b','','',NULL), +(4862,'MISC_Fortune_Thruster_Retro_02','ManneuverThruster','FixedThruster','ca11ab09-1237-4195-ab79-a023bee1d964','','',NULL), +(4863,'Carryable_cleaning_sponge_7_a','Misc','UNDEFINED','d6872190-0aa3-4fc4-8579-7b3408f10432','','',NULL), +(4864,'TMBL_Cyclone_SCItem_Dashboard_Driver','SeatDashboard','UNDEFINED','5e14e32d-992b-4d86-b877-f7a1d005765f','','',NULL), +(4865,'Ares Star Fighter Central Tower Livery','Paints','UNDEFINED','1416bcd2-0524-4ce3-8bd5-be682043cd3e','','','Give the Ares Star Fighter a dramatic new look with the Central Tower livery. The orange and black color scheme is inspired by the furnaces of industry powering Lorville, and also features a representation of the landing zone\'s iconic Central Headquarters and Shared Services Center, aka Central Tower.'), +(4866,'Flair_Hologram_Lunar_Lantern_Rat_1_a','Usable','UNDEFINED','fb1da392-89de-41f0-9f73-732d89e8e71f','','',NULL), +(4867,'DockingTube_Fuel_Ports_AEGS_Sabre_Raven','DockingCollar','UNDEFINED','37a61ba6-8b1b-4cd4-ad13-48dff447537a','','',NULL), +(4868,'ARGO_MOLE_Dashboard_CoPilot','SeatDashboard','UNDEFINED','e131c59b-a644-4112-a3bd-41a7ad378ce2','','',NULL), +(4869,'Bed','Seat','UNDEFINED','fdf69d1d-0d7d-4a2f-a098-786e152630b8','','',NULL), +(4870,'DockingTube_Fuel_Ports_RSI_Aurora_Mk2','DockingCollar','UNDEFINED','55c5f812-00c7-4be4-9dea-9f3e3fd58f25','','',NULL), +(4871,'CRUS_Starlifter_Turret_Cap','Misc','UNDEFINED','58fe26bb-bfb3-4ee7-a4fe-0ef1de1f75bb','','',NULL), +(4872,'Lt_A_Airlock_Door_Double_3m_Int','Door','AirlockPart','98fcbfe5-6fd0-4fb9-a52c-bdcee0344abf','','',NULL), +(4873,'GATS_BallisticCannon_Ventilation_S1','WeaponAttachment','Ventilation','f5404669-315e-4650-862a-8f9ec3b59c5d','','',NULL), +(4874,'Construction Pieces','Cargo','Cargo','df671466-1ff7-429e-b0b6-09f9b1f545c2','','','Can be processed at refineries into Construction Material.'), +(4875,'Seat','SeatAccess','UNDEFINED','ba16561a-6528-40c8-96c4-4ba4a4249640','','',NULL), +(4876,'Flight Blade','FlightController','UNDEFINED','173de5fb-efe7-4993-89d2-dccfb9911bfa','','',NULL), +(4877,'Pulse \"Rouge\" Pistol','Weapon','Small','29c0224c-6c6a-4689-9552-ac148119f911','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Pistol\nClass: Energy (Laser)\n\nBattery Size: 60\nRate of Fire: 500 rpm (1000 rpm rapid)\nEffective Range: 15m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nThe Pulse Laser Pistol is a fully automatic pistol intended for close quarter combat. VOLT designed the weapon with a unique capacitor that condenses the pistol\'s laser energy, increasing its rate of fire at the cost of greater inaccuracy and a higher risk of overheating.\n\nThe Rouge edition features a bright red finish.'), +(4878,'P8-SC SMG Magazine (45 cap)','WeaponAttachment','Magazine','90adb28a-049e-4357-8000-a4bb75bb7f6f','','','Item Type: Magazine\nCapacity: 45\n\nThis magazine for the Behring P8-SC SMG holds forty-five 10mm rounds.'), +(4879,'Strata Helmet','Armor','Helmet','29a98f61-d24a-46de-9284-c863ee69fb26','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design features high quality materials and a next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres.'), +(4880,'Carryable_1H_SQ_Datapad_Fluff_Orb_NineTails_002','Misc','UNDEFINED','b5266756-c3d1-4bf9-aa73-10acfae27f3d','','',NULL), +(4881,'DockingTube_Fuel_Ports_AEGS_Reclaimer','DockingCollar','UNDEFINED','02622cd0-939d-4772-bd5f-b0f1dfd3ba50','','',NULL), +(4882,'sc_nvy_bdu_engineer_belt_04_01_01','Char_Clothing_Torso_2','UNDEFINED','3d2d8351-7ef0-42ee-bce7-aa1513a257c2','','',NULL), +(4883,'mobiGlas Original Casing','MobiGlas','Personal','0cdfef23-72f8-458d-bb02-226c33dadc99','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(4884,'ORIG_400i_Dashboard_Bridge_Right','SeatDashboard','UNDEFINED','e6168c53-ff75-4a15-b034-5f1013a30545','','',NULL), +(4885,'Door Control','Door','UNDEFINED','ff24e6dc-8932-4386-9126-366572226015','','',NULL), +(4886,'display_components_noGeo_01Port_s01_cooler','ShopDisplay','UNDEFINED','3cf394ce-fa3b-4124-96ff-9d7e010b205d','','',NULL), +(4887,'Kutty Jacket (Modified)','Char_Clothing_Torso_1','UNDEFINED','f1657da2-3983-4bb5-86c9-0d24f51f1ebb','','','Carrying Capacity: 1K µSCU\n\nThis version of Rambler\'s Kutty jacket has been modified from its original form. Rambler\'s Kutty two-tone jacket features a racer-strap collar and an asymmetrical button design to bring a vintage look into the modern era.'), +(4888,'ESPR_Prowler_Thruster_Mav_Down','ManneuverThruster','UNDEFINED','64c676f0-2a1a-4857-b41f-ecd007a4cab9','','',NULL), +(4889,'Carryable_1H_CY_flair_spaceglobe','Misc','UNDEFINED','60218ac9-1d57-4bbb-b8d0-2b8494be044c','','',NULL), +(4890,'Seat','SeatAccess','UNDEFINED','0df731fd-17e1-471a-8845-3345be401266','','',NULL), +(4891,'Lumin V \"Valor\" SMG','Weapon','Medium','e9b16168-3969-4865-a17b-e4f49f34a538','','','Manufacturer: Klaus & Werner\nItem Type: SMG\nClass: Laser\n\nBattery Size: 45\nRate Of Fire: 562.5 rpm\nEffective Range: 25m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nKlaus & Werner\'s expert craftsmanship is once again on full display to make the Lumin V laser compact energy rifle even more deadly and dependable. A new \"interval autofire\" mode blasts five-round barrages when the trigger is held down, utilizing the target saturation that comes with autofire while providing breaks to recompensate aim. Even when constantly on the attack, the gun\'s excellent design provides low recoil and a tight spread. The bold blue and gold color scheme gives the Valor edition a valiant and dignified appeal.'), +(4892,'Door Control','ControlPanel','DoorPart','c2d0e3b0-cbfc-4522-bf01-2f6015ad90bd','','',NULL), +(4893,'Venture Helmet White','Armor','Helmet','2a1c2646-b44d-4253-81e7-dab2c86f002c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover.'), +(4894,'SHIELDS','ShieldController','UNDEFINED','803d7e77-99c5-4119-bbcc-edd2a9262af6','','',NULL), +(4895,'H_Dashboard_Projector_HUD_CNOU_HoverQuad','Display','UNDEFINED','cc906b19-297d-49e1-94ef-08d88c15aed3','','',NULL), +(4896,'MISC_Fortune_Thruster_Main_Rear_Right','MainThruster','FixedThruster','5e57f50d-c7d8-4c42-98a2-51904c99f3e0','','',NULL), +(4897,'ADP Core Violet','Armor','Torso','5f6c37ae-8654-4d36-880b-2fae2813790d','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(4898,'AAT-34 Turret','Turret','MannedTurret','d9ed1c9e-bd8d-46cb-9aca-06ac296d71dc','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(4899,'box_metal_2_005x005x005_a','Cargo','UNDEFINED','fb86399c-c722-45c2-8d3b-b53647aef9a4','','',NULL), +(4900,'TRGT. STATUS','Seat','UNDEFINED','cd7cb839-10cc-4ee3-9464-63a1bbe65d2f','','',NULL), +(4901,'RS1 Odysey Spacesuits','Cargo','Cargo','93491fb3-4295-4b41-bdc8-192358f7351a','','',NULL), +(4902,'CargoBox_050x050x050_Metal','Cargo','Cargo','2d6a7b18-25b4-4aac-914a-ba38db5a405e','','',NULL), +(4903,'Prospector Deck the Hull Livery','Paints','UNDEFINED','fc46ee0b-cefd-4ee7-a85a-d4b3fcec59c7','','','Express your holiday spirit with the Deck the Hull livery, which uses the traditional Luminalia colors of green and red to celebrate the popular Banu festival that\'s become beloved by Humans.'), +(4904,'Seat','SeatAccess','UNDEFINED','048616ec-72d8-4392-8604-cbe1aa04a1b2','','',NULL), +(4905,'MISC_Fury_LX_Thruster_FixedMav_Top','ManneuverThruster','FixedThruster','8f4f5217-1d1b-4849-8de5-b7173e1c262b','','',NULL), +(4906,'RSI_Hermes_Thruster_Retro','ManneuverThruster','FixedThruster','444de729-b1ba-7def-4c32-9852a8729384','','',NULL), +(4907,'Screen','SeatDashboard','UNDEFINED','e169c82a-8888-4d79-afe4-e356810b00fa','','',NULL), +(4908,'Riccite','Cargo','Cargo','523da472-27f9-40c6-b9f8-beb6284356cb','','',NULL), +(4909,'ASAD_DistortionRepeater_Barrel_S3','WeaponAttachment','Barrel','91d276a5-a79c-43ec-8275-9d5eca8e75ac','','',NULL), +(4910,'Prowler Deadlock Camo Livery','Paints','UNDEFINED','71a65fca-b58c-461d-ba4b-4ed0032ae45d','','','Disguise the silhouette of the Prowler with the Deadlock Camo livery, featuring a grey camo pattern with yellow highlights.'), +(4911,'DockingTube_Fuel_Ports_MISC_Hull_C','DockingCollar','UNDEFINED','5afa805d-d354-40bf-9182-beb20b09b043','','',NULL), +(4912,'ORIG_135c_Cargo_Area','Misc','UNDEFINED','dd3b99a5-00f6-4fc9-a3b2-3682404ffaf8','','',NULL), +(4913,'Corundum (Raw)','Cargo','Cargo','bc3abc4c-3466-4c9d-9f0a-50e3e2afb76c','','',NULL), +(4914,'GATS_BallisticCannon_FiringMechanism_S3','WeaponAttachment','FiringMechanism','53933f98-7685-47f5-a7d7-e57a2ef794e0','','',NULL), +(4915,'ANVL_Door_Decal_Carrack_Repair','Decal','DoorPart','3a1d6a58-8794-4925-a418-f0c36e2858e2','','',NULL), +(4916,'MISC_Fortune_CargoGrid_Secondary','CargoGrid','UNDEFINED','6b64eaf2-01ff-4c96-b126-2ea06e03f38f','','',NULL), +(4917,'Weapon_Rack_Cz_Firerat_011','Usable','UNDEFINED','7bf27ea7-dcdb-437c-a17e-19eec13fa2f5','','',NULL), +(4918,'H_Dashboard_Projector_HUD_AEGS_Hammerhead_CP','Display','UNDEFINED','8f568440-70a9-40c7-bfac-3d872dea2e3f','','',NULL), +(4919,'Starlancer Wildcat Livery','Paints','UNDEFINED','6c430487-c74b-4cc7-8016-ace36e1720b1','','','The Wildcat livery divides the Starlancer between being orange in front and black in back.'), +(4920,'Ventra Gloves Blue','Char_Clothing_Hands','UNDEFINED','022b7d7e-85a4-4be2-b00e-c412f8e79921','','','Keep your hands warm and dry with Fiore\'s Ventra gloves. Microstitching creates a snug, tailored fit to keep you looking stylish and warm.'), +(4921,'un_can_drink_2_g','Misc','UNDEFINED','640a6935-b89e-4449-bd64-30336abbc247','','',NULL), +(4922,'Wastelander Undersuit Ransacker','Armor','Undersuit','980585cd-2025-418d-8bf9-1592efffdf84','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nRoughly sewn together from a variety of ransacked materials, the Wastelander undersuit will just about do the job.'), +(4923,'Manned Turret','TurretBase','MannedTurret','87908c36-95a1-4610-955f-24b229ee83cf','','',NULL), +(4924,'Bed_ORIG_300I','Usable','UNDEFINED','7cb75fb1-eac3-41d1-b723-e3cd8791bb0c','','',NULL), +(4925,'Manned Turret','TurretBase','MannedTurret','8dc41758-f0a3-416c-9bb5-df25ae1c7401','','',NULL), +(4926,'Artimex Arms Hurston Dynamics Executive Security','Armor','Arms','22e68459-2580-4e44-bb4e-269e0a428953','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape. The Hurston Dynamics edition was made specifically for the company\'s Executive Security team.'), +(4927,'Seat','Usable','UNDEFINED','464f2458-7615-4b25-9f6d-5e9d904d8ab0','','',NULL), +(4928,'ParaMed \"Oxide\" Medical Device','Weapon','Small','92ffd3c2-8b71-40fa-be32-997bb41afccd','','','Manufacturer: CureLife\nItem Type: Medical Device\n\nThe ParaMed from CureLife is a professional-grade emergency medical device designed to stabilize patients suffering from possible life-threatening injuries. Offering extremely accurate diagnostics and dosing, the ParaMed can treat more patients and offer longer relief with less risk of overdose. The \"Oxide\" edition features a deep red color.'), +(4929,'Carbon-Silk','Cargo','Cargo','4abcd355-497c-48f5-b5e7-0865c5e7e660','','',NULL), +(4930,'bar_box_energy_onemeal_salmon','ShopDisplay','Default','fe6ea2b1-5022-47e9-ac16-6190ba460c06','','',NULL), +(4931,'Tormenter S3 Repeater','Weapon','Gun','87d981fb-e1f3-40ad-ad6f-2f7a7a8f665e','','','Manufacturer: Unknown\nItem Type: Laser Repeater\nSize: 3\n\nScorch and torch those who dare get in your way with the Tormenter. Overhauled from an existing laser repeater, the Tormenter can somehow unleash an absolute firestorm without melting the weapon\'s barrel.'), +(4932,'fruit_plant_2_a_6001','Misc','UNDEFINED','79d7aa09-f3ba-48d1-aea3-c14396c018d8','','',NULL), +(4933,'Table_6_Seat_DRAK_Corsair','Usable','UNDEFINED','3765f398-edfa-487e-a1f0-09cc033ae752','','',NULL), +(4934,'Quartz \"Black Op\" Energy SMG','Weapon','Medium','b1a26026-5993-4b16-bf17-8bd9070853cb','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: SMG\nClass: Energy (Electron)\n\nBattery Size: 45\nRate of Fire: Beam\nEffective Range: 15-20 m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nManufacturer VOLT\'s Quartz SMG utilizes exciting new weapon technology that fires a short range beam that fractures into multiple beams the longer it fires, making it an extremely effective close quarter weapon.\n\nThe green glow of the Quartz\'s barrel pops against the all black look of the \"Black Op\" edition.'), +(4935,'fruit_plant_2_a_4001','Misc','UNDEFINED','8e0dc89c-33aa-4946-8eff-46bf9189c4c0','','',NULL), +(4936,'HT_D_Int_Door_Override','Misc','UNDEFINED','aa1df9b0-c208-4b7e-bf8e-d6454ad4cd21','','',NULL), +(4937,'fruit_plant_2_a_5001','Misc','UNDEFINED','54a7de07-7026-4d49-b268-32a23f945c47','','',NULL), +(4938,'fruit_plant_2_a_2001','Misc','UNDEFINED','46240109-a882-4214-a301-cad38a2e217b','','',NULL), +(4939,'fruit_plant_2_a_3001','Misc','UNDEFINED','94c83c49-9156-4e0a-9b1d-091aa2ccebae','','',NULL), +(4940,'Citadel Core Earthwork','Armor','Torso','6319f9f7-034a-44a9-8674-e6a981f302a8','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(4941,'Vacha Jacket Mahogany','Char_Clothing_Torso_1','UNDEFINED','3a58c1d7-d466-4300-aed9-fcc2cf15068e','','','Carrying Capacity: 400 µSCU\n\nThe Vacha jacket offers the wearer an admirable degree of comfort across a wide range of environments thanks to its sealed cuffs and utility neck collar. Additionally, the rugged design features a sealed cross closure, incorporated belt, and auxiliary ports. The garment\'s sheer durability and utility has cemented the Vacha jacket as a perennial favorite in Habidash\'s collection.'), +(4942,'fruit_plant_2_a_1001','Misc','UNDEFINED','97cdf6d5-780a-4721-849c-18e7f22f51c8','','',NULL), +(4943,'Table_2_Seat_High_RSI_Perseus','Usable','UNDEFINED','344b95da-4496-44e6-9ae4-b6e4ef580ff5','','',NULL), +(4944,'Apollo Tier 1 Module Left','Module','UNDEFINED','4adb053e-bc0a-34a1-a3bd-7c9fc2267e84','','','This module contains 1x Tier 1 medical bed.'), +(4945,'SCItemDisplayScreen_Consumer_Minimal','Display','Default','625f1c8b-8504-482b-976c-aa5bc3a5ba3c','','',NULL), +(4946,'RSI_Salvation_Salvage_Arm_Left','ToolArm','UNDEFINED','b0f5b06f-bdd9-4534-af68-b91e8cfb61c0','','',NULL), +(4947,'Door Control','Door','UNDEFINED','ec2020f1-6ece-407f-90e3-2c45c5555e99','','',NULL), +(4948,'CleaningSpot_Janitor_CleanUp_Puddle','Usable','UNDEFINED','19d12272-c8d6-4f47-b573-8670e0d98d3c','','',NULL), +(4949,'game_chess_1_bishop_b','Misc','UNDEFINED','a9fe7522-0889-4399-9700-2dcffa352640','','',NULL), +(4950,'Seat','Usable','UNDEFINED','973b1d40-55e6-4e65-a68b-cac3e938bcea','','',NULL), +(4951,'Locker_Shallow_WallLeft_AEGS_Pilot_Room','Misc','UNDEFINED','41de0db2-99dc-4ee1-a591-1c52ca10a027','','',NULL), +(4952,'Hadanite','Misc','Harvestable','125dd723-95ad-488d-830f-62c954445ca1','','','A crystal oscillator sought out for its extremely high frequency of vibration which makes it useful in various applications.'), +(4953,'Weapon_Rack_ANVL_Spartan_1Slot','Usable','UNDEFINED','37952d31-0604-4a45-a159-7eb3475dbfe4','','',NULL), +(4954,'Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','ab2179ae-90c8-46f8-9a94-af0f2b0ca71f','','','Joker Defcon Flares Ammo'), +(4955,'Processed Food','Cargo','Cargo','e055d560-1235-49a2-9564-55fc0119f4d6','','',NULL), +(4956,'YellowJacket GT-210 Gatling','Weapon','Gun','81645f3b-2c01-4fc4-aa9f-ed860b976058','','','Manufacturer: Gallenson Tactical Systems\nItem Type: Ballistic Gatling\nSize: 1\n\nWhile the GT-210 YellowJacket may be small, it packs a mighty sting. This high-speed ballistic weapon is perfect for targeting smaller, more mobile targets and its DTX-8 ammo supply system almost completely eliminates weapon jams due to bad rounds.'), +(4957,'Internal Tank','FuelTank','Fuel','3e72b06a-d819-4d7d-91eb-fa5946674326','','',NULL), +(4958,'Screen','SeatDashboard','UNDEFINED','1fd318dc-0262-4a96-97d3-10829cb8dc76','','',NULL), +(4959,'K7 Pants Imperial','Char_Clothing_Legs','UNDEFINED','09a03303-cc65-4fa3-9d23-160944399b06','','','Carrying Capacity: 3K µSCU\n\nDMC\'s K7 are an all-purpose cargo pants. Four easy access pockets provide extra storage while the triple-stitched polymer weave fabric is designed to withstand all kinds of weather conditions.'), +(4960,'MSD-582 Missile Rack','MissileLauncher','MissileRack','0a9fee0b-6ba5-447f-a907-1ab864202c9c','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 5\nMissiles: 8xS2\n\nBehring’s MSD-582 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 5 hardpoint for the reliable and effective launch of eight S2 missiles.'), +(4961,'Controller_Salvage_TractorBeamOnly','SalvageController','UNDEFINED','f974850a-2444-4771-babf-c3a2ece76c3b','','',NULL), +(4962,'VNCL_Blade_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','fcda5953-955b-45b5-95a6-a805b13fe1ba','','',NULL), +(4963,'Molina Mold Treatment','Cargo','Cargo','ef2e0da7-c4b5-4359-bd44-a65c17118b1d','','','A lifesaving treatment for those suffering from exposure to Molina Mold.'), +(4964,'TRGT. STATUS','Seat','UNDEFINED','deb359d1-c3e5-4f9d-b4a8-38e1776526aa','','',NULL), +(4965,'AEGS_Javelin_SCItem_Seat_Captain','Seat','UNDEFINED','3a2f6b10-40fe-4d26-aa4c-20f308e6711c','','',NULL), +(4966,'Yubarev \"Mirage\" Pistol','Weapon','Small','f9678f5a-3aee-4355-96fe-8bb78f49df83','','','Manufacturer: Lightning Bolt Co. \nItem Type: Pistol\nClass: Electron\n\nBattery Size: 10\nRate Of Fire: 350 rpm\nEffective Range: 35m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nEngineering excellence only scratches the surface of the distinct Yubarev pistol. Former merc turned weapon manufacturing mogul Irina Arkady oversaw every aspect of the weapon, imbuing it with power, practicality, and panache. Featuring a classic woodgrain grip and cutting edge barrel design, the Yubarev fires a charged electron shot that impacts not only your target, amplifying the charge with each hit, but can spread to additional conductive targets in range. A special pearlescent coating has been applied to the Mirage edition to make the weapon gleam a range of colors based on how you look at it.'), +(4967,'CR-60','ExternalFuelTank','UNDEFINED','c0a447a6-d081-4587-acda-fefa42b38927','','','Manufacturer: MISC\nItem Type: Fuel Pod\nFlow Rate: 1.15 SCU/s\nCapacity: 60 SCU\n\nThe standard fuel pod of the Starfarer, the CR-60 was designed by MISC to be a well balanced fuel storage option ready to tackle a wide variety of jobs.'), +(4968,'Taranite (Raw)','Cargo','Cargo','e926cc03-91fc-491f-9c2c-9b27830d907c','','',NULL), +(4969,'Weapon_Rack_1_KLWE_LMG_Common_001','Usable','UNDEFINED','f7ccaa50-0b42-4b82-a1f7-d349a967394b','','',NULL), +(4970,'TRGT. STATUS','Seat','UNDEFINED','3f1f7ac7-5eb8-4f3a-b2b8-6793ea22cea8','','',NULL), +(4971,'Weapon_Rack_6_Slot_RSI_Com_Heavy','Usable','UNDEFINED','28510ed6-3628-4d16-8c80-7f230d894956','','',NULL), +(4972,'Davlos Shirt Night','Char_Clothing_Torso_0','UNDEFINED','961a54ff-afea-4132-9e03-f1efeb162e76','','','Live in comfort with MuyMuy\'s Davlos line of cotton-synthetic shirts. The durable, yet soft, fabric contains a patented SweatGuard technology that not only whisks away perspiration but helps prevent stains.'), +(4973,'DynaFlex','Cargo','Cargo','9977b426-269b-4805-9b06-b3a828f2e891','','',NULL), +(4974,'San\'tok.yai Harmony Livery','Paints','UNDEFINED','6d950c5f-66a6-442c-aa69-a0993e5f3b2e','','','The Harmony livery is meant to showcase Humanity\'s peaceful relationship with alien species with a semi-pearlescent blue main coat marked with organic reflective red to suggest the coming together of disparate species and cultures. The Harmony livery has been designed and produced by the UEE\'s Diplomatic Corps and freely licensed to all spacecraft manufacturers. Now Aopoa San\'tok.yai owners can celebrate the UEE\'s intentions of working toward a peaceful galaxy.'), +(4975,'Stirling Exploration Backpack Olympian Edition','Armor','Backpack','5f0bf42e-95fc-479b-ac02-46ce5d0dfb5b','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nThis heavy duty backpack is compatible with the Stirling suit and provides a convenient storage solution. The Olympian Edition melds gleaming yellows and golds with a subtle hexagonal pattern, completed with a reflective visor to create an almost luminous appearance.'), +(4976,'Antium Arms Jet','Armor','Arms','caa2922b-8512-4430-9980-6238747acaab','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(4977,'Lynx Arms (Modified)','Armor','Arms','64d4fc3f-1682-43a8-bb99-d45ca9a76018','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThis version of Kastak Arms\' Lynx arms has been modified from its original form. Maintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(4978,'Prota','Cargo','Cargo','8cf31d27-742c-4832-bed4-8c3673f156fd','','',NULL), +(4979,'MissileRack_Large','Usable','UNDEFINED','f4a17f6c-f452-4c70-90c2-6cc5a01148c3','','',NULL), +(4980,'Argos IX-G Torpedo','Missile','GroundVehicleMissile','e7676087-425d-453e-932c-aaae73932dfd','','','Manufacturer: Talon \nTracking Signal: Cross Section \nSize: 9 \n\nThe Talon Argos strike torpedo features a classic, straightforward design that relies on exacting manufacturing standards and a classic cross section targeting system. Note: This missile may only be launched by ground vehicles.'), +(4981,'Testudo Arms Turfwar','Armor','Arms','796b201a-bc50-43de-b116-4b6c4179d18e','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Testudo armor for Quirinus Tech blends battlefield durability with everyday comfort. It weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort.'), +(4982,'Vanguard New Dawn Livery','Paints','UNDEFINED','6e27e43c-d5df-4012-9de5-ce101ef83c43','','','Proudly proclaim that your Vanguard is a predator with the New Dawn livery. Inspired by the patterns seen in nature, this livery mixes orange and gold with black stripes for a supremely unique look.'), +(4983,'Mahoney Nurse Scrub Top Honeycomb','Char_Clothing_Torso_1','UNDEFINED','d045a041-607e-411b-885f-c269d871af35','','','Carrying Capacity: 0.4K µSCU\n\nThe Mahoney Nurse Scrub shirt is made for medical professionals looking an accommodating and comfortable fit. This top has a pocket and strips of fabric forming subtle geometric patterns on the right shoulder. It\'s also made with moisture wicking and anti-stain fabric ready to withstand long shifts and repeated washing.'), +(4984,'Access','SeatAccess','UNDEFINED','196c6bc3-7b68-4758-ad0a-c38376e38f7b','','',NULL), +(4985,'Arcus Gloves Brown','Char_Clothing_Hands','UNDEFINED','7703d292-d9a5-4c0a-a11a-b05ed6e7f1d1','','','Temp. Rating: -35 / 25 °C\n\nThe Arcus gloves are thin enough to wear on everyday excursions, yet capable of keeping your hands warm in frigid conditions. Textured touch fingertips even allow you to easily access your mobi and other touch screens without removing your gloves.'), +(4986,'IAE 2954 Hat White','Char_Clothing_Hat','UNDEFINED','26887e82-4683-4ef2-b7e7-9e308911b069','','','The official hat of the 2954 Intergalactic Aerospace Expo is a crisp white with the logo across the front.'), +(4987,'ANVL_Hornet_F7CM_Thruster_Mav_Joint_02','ManneuverThruster','JointThruster','3dc96ab5-8c6f-4e7e-a1ec-e46c35ae55e2','','',NULL), +(4988,'Devastator \"Brimstone\" Shotgun','Weapon','Medium','45a5b5c4-043b-4bd5-9b14-4d993ff2d03c','','','Manufacturer: Kastak Arms\nItem Type: Shotgun\nClass: Energy (Plasma)\n\nBattery Size: 12\nRate Of Fire: 60 rpm\nEffective Range: 20 m\n\nKastak Arms’ Devastator is a semi-automatic electric shotgun capable of delivering sustained medium range, high-impact plasma blasts for close combat, room clearances and other combat operations. If the situation requires a high-power presence, look no further than the Devastator. The \"Brimstone\" special edition features a bold red top-trim and a dark gray finish on the lower half of the weapon.'), +(4989,'Door Control','DockingAnimator','UNDEFINED','e80af1c6-e841-42dd-8e9e-01bfab30d9b7','','',NULL), +(4990,'Ventris Jumpsuit Crusader Edition Light Blue / Grey','Char_Clothing_Torso_1','UNDEFINED','b0f37270-f685-46aa-98ca-e3a800eb6def','','','Carrying Capacity: 1K µSCU\n\nThe Ventris is a sleek jumpsuit that mixes several rip and stain resistant polymer fabrics for a dynamic design. It also features a half-zip front and adjustable belt to ensure an ideal fit while the soft inner lining makes it an ideal choice for all day wear. The special Crusader Edition was made to be worn by employees of the company and features the sword and C logo on the front.'), +(4991,'Argus Helmet','Armor','Helmet','e9812df7-f461-4ae6-94df-5e682d50ef61','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s Argus helmet utilizes advanced multi-layered composite construction to provide incredible protection from weapon fire as well as environmental hazards. The tinted visor offers a wide field-of-view to improve situational awareness and unrestricted movement.'), +(4992,'Door Control','Door','UNDEFINED','3e4fcbda-a5c1-473c-a4dc-48ea095a94ae','','',NULL), +(4993,'ORIG_400i_Seat_Bridge_Left','Seat','UNDEFINED','fcee71b9-92f6-4664-8be5-5d36d286ec68','','',NULL), +(4994,'Stud','Char_Head_Piercings','UNDEFINED','8030f5ad-09d1-4808-9de3-413a7f19a5f7','','',NULL), +(4995,'MedGel','Cargo','Cargo','bc00c18b-9939-4736-b471-94dbfaee03c7','','',NULL), +(4996,'Ardent Boots Violet','Char_Clothing_Feet','UNDEFINED','a91f0fd9-8262-4cee-929e-307f6ac703f7','','','Who says NorthStar can\'t keep it pro? The Ardent boot features a molded rubber sole and all-weather construction to withstand a constant battery from the elements.\n\nWomen\'s sizes currently out of stock.'), +(4997,'Venture Arms Pathfinder','Armor','Arms','b1fb4822-79da-49dc-8861-deb353c98356','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRobert Space Industries combines elegance and effectiveness with the Venture Explorer Suit. The exclusive Pathfinder edition features all the safety features necessary for the vacuum of space plus a striking purple design with tasteful gold highlights. After wearing a suit that looks and perform this well, you may never want to take it off.'), +(4998,'Year of the Pig Envelope','Misc','UNDEFINED','a8358b97-33d1-473f-89df-2e73bcdb4e24','','','A gilded red envelope celebrating the Year of the Pig. Exchanging these envelopes is one of the most popular ways of celebrating Red Festival. Often the envelope may include a small amount of credits inside to help those you care about have a strong start in the upcoming cycle. Growing in popularity is the newer tradition of hiding the envelopes as a way of spreading good fortune and prosperity to those that fate has deemed in need.'), +(4999,'Titanium','Cargo','Small','848c57d1-81c3-4f75-9a3b-44f8c2da74a1','','','This silver-colored chemical element is excellent at producing strong, lightweight alloys.'), +(5000,'Kareah_Datapad_MissingBenny_4x3_Screen','Display','UNDEFINED','3f5832b3-dcec-477c-b8df-d9cdae6677b5','','',NULL), +(5001,'fruit_plant_1_a_1001','Misc','UNDEFINED','7b674008-2462-4f76-8d1b-bfdcb8347609','','',NULL), +(5002,'Gold (Ore)','Cargo','Cargo','c6bc9255-5689-4cd8-bea2-d32ee5d3f234','','',NULL), +(5003,'Door Control','Door','UNDEFINED','ed51e4a6-b804-43ab-9630-d95f408e291e','','',NULL), +(5004,'fruit_plant_1_a_3001','Misc','UNDEFINED','53f69ef6-5b6d-4725-bf1c-b0f4e8431bf3','','',NULL), +(5005,'fruit_plant_1_a_2001','Misc','UNDEFINED','608acb9d-23af-42dd-b6b0-7bc125d82f78','','',NULL), +(5006,'Second Life Undersuit','Armor','Undersuit','7a985ba3-0647-42a1-803a-d31fea705bfe','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nFeaturing the same relatively reliable construction as the Why Not helmet, the Second Life takes some of those tattered old undersuits and gives them new life.'), +(5007,'fruit_plant_1_a_5001','Misc','UNDEFINED','b2d5dc9a-ce3c-49b7-9af0-3cfcb4e09ce6','','',NULL), +(5008,'fruit_plant_1_a_4001','Misc','UNDEFINED','b6b97d5d-52b7-4e64-9f45-ff019de0f65d','','',NULL), +(5009,'Railing_Straight_8m_Lowtech_Open','Usable','UNDEFINED','5b66c5e6-fd20-46d4-994f-4c8c91ff1291','','',NULL), +(5010,'fruit_plant_1_a_6001','Misc','UNDEFINED','731ebc8c-af88-4e0b-ae34-d3657b73905b','','',NULL), +(5011,'Geist Armor Helmet Whiteout','Armor','Helmet','a13542f1-e244-4cb4-a39d-54634ca0115e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(5012,'RSI_Polaris_SeatAccess_Turret_TopRight','SeatAccess','UNDEFINED','2beb3999-4678-4f8e-869a-b8e090250154','','',NULL), +(5013,'Anvil Hat Olive','Char_Clothing_Hat','UNDEFINED','cd964495-3340-4036-ae44-47c7e3c4074f','','','This dark green cadet hat is decorated with two diagonal yellow stripes, representing celebrated ship manufacturer Anvil Aerospace.'), +(5014,'Radar_Display_Gladius_PU','Display','UNDEFINED','5f89f74d-396a-4009-8f43-b2fa58d5a417','','',NULL), +(5015,'Lynx Arms Blue','Armor','Arms','e2070edb-01ac-447d-a76e-eba5ef2ad05d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(5016,'Door','Door','UNDEFINED','72cb37c7-f58e-4936-a86a-1a5dff5468b0','','',NULL), +(5017,'CargoBox_050x050x050_Plastic','Cargo','Cargo','e10dbcec-85bd-4562-9be9-bfe67930e88e','','',NULL), +(5018,'DRAK_Buccaneer_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','8aeb22a4-266b-48e0-8ace-763132deb018','','',NULL), +(5019,'Door Control','Door','UNDEFINED','ffa83671-c3d0-4202-a990-7f3decc6fa7c','','',NULL), +(5020,'Golem Keystone Livery','Paints','UNDEFINED','0cdeb891-8f22-4890-bce0-3134f28b0b12','','','Crisp white with blue accents, the Keystone livery celebrates the workers whose mining, refining, hauling, salvaging, and more have made the empire what it is today.'), +(5021,'Strata Legs Crusader Edition','Armor','Legs','bee3ecd9-d2bf-4acf-bd28-38d7e78e3c78','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 10k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Crusader Edition was made specifically for the company.'), +(5022,'H_Dashboard_Projector_HUD_ESPR_Talon','Display','UNDEFINED','f23d3bb8-4f62-4374-9813-5f6e6f414542','','',NULL), +(5023,'ESPR_BallisticCannon_FiringMechanism_S6','WeaponAttachment','FiringMechanism','c5e790dc-5e06-4194-bdf2-4ed42033793f','','',NULL), +(5024,'Door Control','Door','UNDEFINED','63191b11-ea6a-4ca1-a67e-c8eefe5c4e0d','','',NULL), +(5025,'Hellion VII-G Missile','Missile','GroundVehicleMissile','8cad8989-85f5-4a86-b074-9cbc516afb44','','','Manufacturer: Talon \nTracking Signal: Infrared \nSize: 7 \n\nCarrying a sizable payload and an advanced heat-seeking sensor suite, the Hellion missile from Talon can be effective against aggressors of all sizes. Note: This missile may only be launched by ground vehicles.'), +(5026,'Invictus Flight Jacket','Char_Clothing_Torso_1','UNDEFINED','0ebd6e10-59aa-4960-bb2c-f55d5c3d13b1','','','Carrying Capacity: 2K µSCU\n\nCelebrate launch week in iconic style with this commemorative flight jacket featuring a Navy patch on the front and a large Invictus patch on the back. This synthetic leather jacket comes with two front pockets and ribbed waistband and cuffs that guarantee a good fit.'), +(5027,'Seat','Usable','UNDEFINED','b6faa3e3-beee-46d0-b718-3b4bcf9a1624','','',NULL), +(5028,'Nova Ember Storm Livery','Paints','UNDEFINED','8316aca2-859a-43bd-b8bf-2d9b0813314c','','','Featuring a tan, red and black camo paint scheme ideal for desert environments, the Nova Ember Storm livery offers a devastating combination of weaponry to eliminate threats on the ground and in the air.'), +(5029,'DRAK_Clipper_Thruster_Main_Bottom','MainThruster','UNDEFINED','2b6f8d99-c7f1-4166-bcda-6f7f3ebb4755','','',NULL), +(5030,'IAE 2955 T-Shirt Black','Char_Clothing_Torso_0','UNDEFINED','1cef6daf-6b4c-4811-9b47-960c7094d677','','','The official shirt of the 2955 Intergalactic Aerospace Expo. This soft and supremely comfortable cotton t-shirt is black with the IAE logo on the front, the event\'s tagline across the back, and the year on the right sleeve.'), +(5031,'Internal Tank','QuantumFuelTank','QuantumFuel','397f7a30-01cc-447c-a133-74989d105523','','',NULL), +(5032,'DRAK_Cutlass_Red_Thruster_Maneuver_Front_Top','ManneuverThruster','JointThruster','9edab362-8f93-4324-9c13-aace215dd1e8','','',NULL), +(5033,'ORC-mkX Helmet Woodland','Armor','Helmet','6d7bb7cd-ad17-4711-98cb-df29fcd04d11','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(5034,'harvestable_base_PrisonStash_03','Misc','UNDEFINED','4020771f-4fa2-4a58-af58-b628fa718452','','',NULL), +(5035,'Battery','Misc','Personal','ce83f543-6233-4c20-9725-e6716cfa4fe7','','',NULL), +(5036,'Lynx Arms Aqua','Armor','Arms','7ef5780d-9ced-47ad-b70b-ba0755dacb44','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(5037,'TruHold Tractor Beam Attachment','WeaponAttachment','Utility','03b3db91-0063-4da2-99f7-16b20ede4209','','','MUST BUY BASE MULTI-TOOL TO USE: \"Pyro RYT Multi-Tool\"\n\nManufacturer: Greycat Industrial\nItem Type: Multi-Tool Attachment\nClass: Tractor Beam\n\nWhether your feet are on the floor or floating in zero-G, the TruHold attachment for the Pyro RYT Multi-Tool makes lifting and positioning items easier than ever. With its impressive and efficient pull/draw ratio and easy-to-read range finder, the TruHold can be used solo or paired with other beams to tackle heavier targets. Plus, the TruHold has the added benefit of functioning as a personal zero-G traversal device when coupled to an object with a high enough mass.'), +(5038,'Access','SeatAccess','UNDEFINED','90067b23-32b5-4c2b-83ef-1e712e1fb744','','',NULL), +(5039,'ADP Legs Black','Armor','Legs','3d57d3c4-185a-4426-8d92-239fc8f0a59a','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(5040,'Door Control','Door','UNDEFINED','c303c4c9-3126-4574-9eb4-3714b7d49bf7','','',NULL), +(5041,'TaskForce I Missile','Missile','Missile','7561e67e-bb85-4dbc-a386-0555b67b02cc','','','Manufacturer: Thermyte Concern\nTracking Signal: Electromagnetic\nSize: 1\n\nVenturing into the weapons market, Thermyte Concern have pooled their extensive knowledge of demolition explosives to create the TaskForce. A lightweight EM tracking strike missile with a top-in-class propulsion system provides an efficient mixture of speed and firepower to establish battlefield dominance.'), +(5042,'facial_hair_042','Char_Head_Beard','UNDEFINED','03301262-6787-42c1-8832-2f0ec75f565c','','',NULL), +(5043,'Access','SeatAccess','UNDEFINED','f9432877-1577-4bc1-83f2-84eb81efe2b7','','',NULL), +(5044,'Carryable_2H_FL_Vlk_Pearl_Medium_03','Misc','Harvestable','d28af3fa-e1df-4238-a9be-7623291f2c2d','','',NULL), +(5045,'Coloma Coat Navy and Sage','Char_Clothing_Torso_1','UNDEFINED','aa269a17-f49a-42c3-a1ce-6e09048cf029','','','Carrying Capacity: 1K µSCU\n\nStuffed with water-resistant gilly down, the Coloma coat blocks wind, traps body heat, and allows the wearer to move freely, making it the perfect choice for changeable weather conditions. Additionally, its roomy pockets provide plenty of storage.'), +(5046,'Turret','TurretBase','MannedTurret','d916e766-b93c-42c4-a952-7fc84ad27ae4','','',NULL), +(5047,'Bed_RSI_Aurora','Usable','UNDEFINED','9ac42c07-a53d-4379-9bdc-2bd963df35ce','','',NULL), +(5048,'Drivetrain','WheeledController','UNDEFINED','ef1b7a86-4756-47df-847a-6c158252b563','','',NULL), +(5049,'PH - scu_service_shirt_02_kelto01_01','Char_Clothing_Torso_0','UNDEFINED','f7ff6220-18bf-4194-b9be-028a9c98316e','','','PH - scu service shirt 01'), +(5050,'Detatrine','Cargo','Cargo','8dcbd3fd-e31d-45a8-802e-7e5767ee1cde','','','An extremely heat resistant epoxy often used in the mounting and repair of ship thrusters. It is considered very difficult to transport in its uncured state as it becomes explosively unstable when exposed to Chan-Eisen fields during quantum travel. Specialized containers must be used to safely transport the epoxy long distances. Once set and cured, the Diluthermex is no longer reactive.'), +(5051,'H_Dashboard_Projector_HUD_ANVL_Terrapin','Display','UNDEFINED','e1a61539-b0aa-4688-aa1d-02aabd857ff0','','',NULL), +(5052,'Strata Backpack Neptune','Armor','Backpack','79ab505c-1ee4-4111-8f53-732e9ca2e91d','','','Item Type: Medium Backpack\nCarrying Capacity: 127.5K µSCU\nCore Compatibility: Medium & Heavy\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres.'), +(5053,'Bar_Table','Usable','UNDEFINED','d9148db2-e358-45db-8231-9481b958d67e','','',NULL), +(5054,'Mivaldi Pants Olive','Char_Clothing_Legs','UNDEFINED','5f02e112-5dea-402f-9105-5eeaaa1eeb68','','','Carrying Capacity: 0.5K µSCU\n\nCut to a narrow fit, OpalSky\'s Mivaldi pants feature bold asymmetrical design with smart yet casual dual material styling, making it the perfect addition to any wardrobe.\n\nWomen\'s sizes currently out of stock.'), +(5055,'Vulture IceBreak Livery','Paints','UNDEFINED','82f191d3-0619-4d22-8b80-bba00e084e20','','','Equip your Vulture with a paint scheme cooler than a snow storm. The IceBreak livery mixes crisp, cool white with a frostbitten blue for an exciting look suitable for any season.'), +(5056,'VariPuck S3 Gimbal Mount','Turret','GunTurret','7a642c58-090a-4480-af2b-25fda4201630','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 3\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(5057,'Steel','Cargo','Cargo','90d9d03b-f7ef-4e3d-a231-3678fa6762c5','','',NULL), +(5058,'Paladin Solaris Livery','Paints','UNDEFINED','9f08c0ec-5e54-4bf6-a32d-5fc103459a3e','','','Showcasing the Paladin\'s powerful design, the wild greens, beige, and yellow of the Solaris livery demonstrate that this is not a ship to be trifled with.'), +(5059,'Piecemeal Armor Core','Armor','Torso','9b2d97da-d08f-4df8-99bb-7af97983bd5c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -32 / 62 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nThis armor was created using repurposed parts from a Caldera armor set to provide the wearer with an extra layer of protection against aggressors and harsh environments.'), +(5060,'MISC_Starfarer_Gemini_Thruster_Mav_Fixed_02','ManneuverThruster','FixedThruster','1d39fcd0-ff6d-4df7-8897-20f73c4c5f26','','',NULL), +(5061,'Prestige Murray Cup Racing Jacket','Char_Clothing_Torso_1','UNDEFINED','1ef5ffb8-c584-47cd-8f23-e41e5f63eb8a','','','Carrying Capacity: 1k µSCU\n\nPart of City Lights\' stylish collection of racewear, the Prestige Origin Racing Jacket is high-quality, durable outerwear that features a colorful asymmetric design celebrating Origin\'s line of luxury racing vehicles.'), +(5062,'Meat Skewer','Food','Consumable','37bc36b8-3b35-461e-a553-3a83130fd2e7','','','NDR: 20\nEffects: Immune Suppressing\n\nChunks of what is most definitely meat that have been skewered and roasted.'), +(5063,'MacFlex Legs \"Rust Society\"','Armor','Legs','b1057e0b-7aaa-4249-90a2-ad791074f6fe','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible. The Rust Society edition celebrates blue-collar workers with an exclusive red and tan coloration that hides dirt and wear and tear well.'), +(5064,'Balandin','QuantumDrive','UNDEFINED','a7375ca6-be9c-4155-89fb-c507e866ff03','','','Item Type: Quantum Drive\nManufacturer: Wei-Tek\nSize: 3\nGrade: B\nClass: Military\n\nWei-Tek built the Balandin with military and security personnel in mind. Following a series of test runs by veterans, engineers accelerated the spool and calibration times while also improving the component\'s precision and stability.'), +(5065,'ADP Core Aqua','Armor','Torso','7c18157e-6b94-4f5a-a6a6-bd6b0718257c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(5066,'BEHR_LaserCannon_Ventilation_S7','WeaponAttachment','Ventilation','4e70c99b-24c4-4f3e-824d-8f6f9b245463','','',NULL), +(5067,'Large Artifact Fragment (Damaged)','Misc','UNDEFINED','37f8dba1-2ead-4587-bbd6-1204619d6998','','','A large artifact fragment of unknown origin and made of an unidentified material. Broken and considered damaged, intricate etchings that subtly glow can still be seen on the fragment, though the gold-colored metallic banding is in poor condition.'), +(5068,'HRST_LaserRepeater_FiringMechanism_S3','WeaponAttachment','FiringMechanism','19125eae-289f-4012-97fa-c3176faea148','','',NULL), +(5069,'Door Control','Door','UNDEFINED','cae16cc3-98e3-4e3f-b945-1dd8bb241284','','',NULL), +(5070,'Testudo Core Nightveil','Armor','Torso','75903fea-f957-46d1-a45b-77bcb3fbf2cb','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Medium, Light\n\nThe Testudo armor for Quirinus Tech blends battlefield durability with everyday comfort. It weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort.'), +(5071,'AEGS_Javelin_CargoGrid_S','CargoGrid','UNDEFINED','cfbd2dc4-304e-4a7d-82a1-fafbf0815682','','',NULL), +(5072,'Omnitrek Jacket','Char_Clothing_Torso_1','UNDEFINED','5e2ed1ce-cc7b-4be5-9e96-cbac2fea76a9','','','Carrying Capacity: 1K µSCU\n\nBe ready for anything with DMC’s Omnitrek, the survival jacket designed for maximal performance in adverse weather conditions with the addition of the water-resistant collapsible collar. The Omnitrek also provides numerous storage options across both sleeve and chest pockets.'), +(5073,'Lunes (Spiral Fruit)','Cargo','Cargo','bb0fdb52-f524-4628-a0bf-cc2752237ba0','','',NULL), +(5074,'Seat','SeatAccess','UNDEFINED','9d868235-d0ee-46ad-851a-2e5a1cd48e7b','','',NULL), +(5075,'Revenant Tree Pollen','Cargo','Cargo','588adba6-1538-4969-96be-27dd2f2e98ac','','',NULL), +(5076,'Beryl','Cargo','Small','43893991-e1b5-49ee-aa48-61375e11ce83','','','A mineral that creates natural hexagonal crystals. Colorless in its pure form, its impure forms include the gems emerald and aquamarine.'), +(5077,'CRUS_Starlifter_SCItem_Seat_CoPilot','Seat','UNDEFINED','edc004ef-61a3-47f0-b053-d4984989d6fa','','',NULL), +(5078,'Antium Helmet Sand','Armor','Helmet','71f5e2d7-bc27-4b65-95d3-c3e928f7d44c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -85 / 115 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(5079,'Seat','Usable','UNDEFINED','71075a35-f5c7-4986-8b0b-b11ccb70c7ea','','',NULL), +(5080,'sc_nvy_bdu_engineer_belt_01_01_11','Char_Clothing_Torso_2','UNDEFINED','5ce552e7-fa2e-4db7-8235-9cbdd1e208f5','','',NULL), +(5081,'Weapon_Rack_1_NONE_Special_Ballistic_Uncommon_002','Usable','UNDEFINED','029a40f0-f963-44b4-849d-6471c2fa92bb','','',NULL), +(5082,'AEGS_Sabre_Peregrine_Thruster_Retro_Right','ManneuverThruster','FixedThruster','ed2ae456-31b6-4167-8bf0-5226736b2df0','','',NULL), +(5083,'Ammonia','Cargo','Cargo','9279af2b-e959-4247-9168-36d5a8de11b6','','',NULL), +(5084,'MISC_Starfarer_Thruster_Mav_Fixed_02','ManneuverThruster','FixedThruster','121d0d3e-d262-4b5a-bba1-93d6973b9ff1','','',NULL), +(5085,'VNCL_Blade_RADR_Display','Display','UNDEFINED','4a8ced93-47f8-4393-adcd-3c2620f3e05e','','',NULL), +(5086,'ANVL_Carrack_Thruster_Main_Large','MainThruster','FixedThruster','5e79be94-5052-4617-b5d3-c433b4401e0b','','',NULL), +(5087,'Gasping Weevil Eggs','Cargo','Small','3b46d984-2422-4d79-81cb-a855ba01c6d9','','','The eggs of this small beetle are commonly held to be an aphrodisiac, but when allowed to hatch the weevils themselves will eat through sealants used in space station construction. Transport of the insect or its eggs is banned in the UEE.'), +(5088,'Personal Storage','Cargo','UNDEFINED','d5f4e926-1002-4da3-935f-aadab330e8b0','','',NULL), +(5089,'Morningstar Helmet Outcrop','Armor','Helmet','6b6f6653-7fff-4358-9cde-82f2e2b281d7','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(5090,'alb_hat_02_01_01','Char_Clothing_Hat','UNDEFINED','331df6a7-3518-4ab7-ab3c-6a8ddffb4eaf','','',NULL), +(5091,'Vehicle_Screen_MFD_Holographic_ORIG_85X_L','Display','UNDEFINED','3516979a-9d5e-4707-a7f4-6e57529d6279','','',NULL), +(5092,'DoorProximitySensorItem_2x5x1_5','Sensor','DoorPart','359f9b4e-b90d-42a5-9d35-3680ab5a8fb7','','',NULL), +(5093,'table_booth_ht_4_seat_1_a','Usable','UNDEFINED','17ad2e51-cd16-4364-99ad-9a5a92080ac7','','',NULL), +(5094,'Door Control','Door','UNDEFINED','e173752b-a70e-4e7f-8b6d-f2af3ce1c147','','',NULL), +(5095,'Iron','Cargo','Cargo','07fa39d2-97a3-4155-9660-dcc2324a47a5','','',NULL), +(5096,'CryoPod','Cargo','Cargo','5078df42-fc7b-4098-935b-f637738df3fa','','',NULL), +(5097,'Carryable_1H_CY_drug_stomachmedicine_2_b','Misc','UNDEFINED','c8106bba-be66-4d7b-8e68-66b1685a10c7','','',NULL), +(5098,'Door_Ship_Sensor_Proximity_2x2x3','Sensor','DoorPart','b15d4461-0e28-40c5-93db-bcf82296931a','','',NULL), +(5099,'Bottle','Misc','UNDEFINED','62735fa4-0e74-4c29-9f6b-1ee4e292e544','','',NULL), +(5100,'Geist Backpack Desert','Armor','Backpack','6b526bcf-646e-4c70-86af-7f0adab11e4a','','','Item Type: Light Backpack\nCarrying Capacity: 54K µSCU\nCore Compatibility: All\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(5101,'Kaswal Jacket Taupe','Char_Clothing_Torso_1','UNDEFINED','80056f51-1cbc-4339-90b1-ce8826bd6751','','','Carrying Capacity: 1K µSCU\n\nDMC’s Kaswal is a cold-weather jacket designed with additional lining throughout the chest and sleeves for added warmth and comfort.'), +(5102,'Venture Legs Orange','Armor','Legs','97f33da3-3591-44d7-9156-b172580d0d2a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(5103,'MRAI_Pulse_LX_Thruster_Main','MainThruster','FixedThruster','d7ec1177-a2eb-4d04-a38d-b0c470f18b97','','',NULL), +(5104,'Carryable_1H_CY_bottle_bar_14_mixer_d','Misc','UNDEFINED','56836e69-a544-4a19-8a0b-a89e496b14bf','','',NULL), +(5105,'Seat','Usable','UNDEFINED','a417e0b2-084b-4652-9a8b-882f75754819','','',NULL), +(5106,'ORIG_300i_CargoGrid_Front','CargoGrid','UNDEFINED','1bddc2cc-3765-4eec-8430-31c1697c78eb','','',NULL), +(5107,'Paint_Ballista_Camo_01','Paints','UNDEFINED','6434a1d7-d9a3-4c0e-8cb5-428af8f90bb8','','',NULL), +(5108,'m_human_mannequin_base_armor_Collector_SBNav','ShopDisplay','UNDEFINED','413fc6bd-1268-404b-8e43-7c84c5caaf63','','',NULL), +(5109,'Diamond Laminate','Cargo','Cargo','c5ba6293-4af5-4106-b9a8-7f7679ea1c00','','',NULL), +(5110,'Door Control','ControlPanel','DoorPart','31d81875-5e0a-4066-afd1-42023cfd816f','','',NULL), +(5111,'Gale Head Cover Maroon','Char_Clothing_Hat','UNDEFINED','ed3d10d6-970e-4ab6-9731-4dd951de636e','','','Temp. Rating: -30 / 15 °C\n\nProtect your head from the wind and cold with the Gale. Code Blue Apparel paired a wide-view visor with a dynamic synthetic fabric to create an excellent thermal barrier to keep heat from escaping without sacrificing your visibility.'), +(5112,'CRUS_Star_Runner_Thruster_Main','MainThruster','UNDEFINED','4a486775-cee4-4589-8f4a-14d3c91e231d','','',NULL), +(5113,'Elevator Control','Door','UNDEFINED','1ca69cad-6ff3-4c0b-9fd8-91fb436ed1f2','','',NULL), +(5114,'Internal Tank','QuantumFuelTank','QuantumFuel','56c13c9f-def6-4bee-a0eb-d087c3c62b90','','',NULL), +(5115,'Neon','Cargo','Cargo','e0aa05b5-5b3f-4467-b948-ab998ada2c29','','',NULL), +(5116,'ORIG_890J_Seat_Bridge_Right','Seat','UNDEFINED','d148a9cb-0302-4568-8e55-139fd583c728','','',NULL), +(5117,'Orange QuikFlarePro','Weapon','Grenade','0a90af88-7ae3-4590-8c5a-ac6cbe2fb67f','','','Manufacturer: Shubin Interstellar\n\nIlluminate the way forward or signal for help with the Orange QuikFlarePro from Shubin Interstellar. For centuries, miners have counted on this flare as part of their core toolkit, thanks to its tried and true design and durability that ensures it stays ablaze in the various harsh weather and difficult atmospheric conditions encountered across the \'verse. The QuikFlarePro uses advanced tech to glow longer than regular flares.'), +(5118,'Carbide Jacket','Char_Clothing_Torso_1','UNDEFINED','0938581e-1fb6-4b17-bddc-898bf10160f4','','','Carrying Capacity: 1K µSCU\n\nThe rugged, all-weather Carbide jacket from DMC features diamond-quilt detailing, stretch-comfort cuffs, and numerous attachment points for versatile storage options.'), +(5119,'Defiance Arms Tactical','Armor','Arms','c5accc85-3784-40dc-b819-8949e1394f66','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nIncorporating the same manufacturing know-how and expertise that the UEE Marines have come to rely on, Clark Defense Systems has designed their civilian-line of Defiance heavy armors to stand firm in the face of even the most adverse combat scenarios with its three-star rated protective plating and fully integrated mobility framework.'), +(5120,'TMBL_Cyclone_SCItem_Seat_Passenger','Seat','UNDEFINED','fb084195-0ac2-48f0-923f-0d407182d912','','',NULL), +(5121,'HexaPolyMesh Coating','Cargo','Cargo','7e454cad-da11-4942-ba1a-f90ec9e8d410','','',NULL), +(5122,'Venture Helmet Ascension','Armor','Helmet','d59c2342-2612-4365-9ef3-e4caf4e5cda6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover. This special IAE 2953 edition is decorated with a copper and white pattern inspired by Gatac Manufacture\'s Syulen.'), +(5123,'Prim Shoes','Char_Clothing_Feet','UNDEFINED','9e85fa88-ab74-4368-a59a-f519c79a3bf6','','','Professional yet casual, the Prim utilizes cutting-edge synthetic construction to provide maximum comfort and a shine that won\'t fade.'), +(5124,'Pite','Char_Head_Piercings','UNDEFINED','6680b5dd-21dc-4f00-95e9-d2396006dec0','','',NULL), +(5125,'Ketchum Beanie Blue','Char_Clothing_Hat','UNDEFINED','d785d10e-4b77-4a3a-a35f-fba6510b5b95','','','Complete your cool-weather wardrobe with the classic Ketchum beanie from Alejo Brothers.'), +(5126,'Door Control','Door','UNDEFINED','ee20a1e4-064d-40b7-9819-d3088685f107','','',NULL), +(5127,'MSD-322 Missile Rack','GroundVehicleMissileLauncher','GroundVehicleMissileRack','684570ea-3d46-48a1-a1e1-8741957fe083','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 3\nMissiles: 2xS2\n\nBehring’s MSD-322 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 3 hardpoint for the reliable and effective launch of two S2 missiles.'), +(5128,'SRV Sky Blue Livery','Paints','UNDEFINED','327644ba-fc9d-4afa-b4b5-22b0d0663db9','','','The Sky Blue livery is a striking light blue that helps make it easily seen during space-based operations.'), +(5129,'AEGS_Reclaimer_DockingTube','DockingCollar','UNDEFINED','6f33b974-af4c-4b2b-b196-266df9f7afd7','','',NULL), +(5130,'Carryable_1H_CY_weight_dumbbell_1_6kg_b','Misc','UNDEFINED','61a852a3-e497-42fd-bd55-266c363a16cf','','',NULL), +(5131,'m_human_mannequin_base_armor_Collector_GG_Novikov','ShopDisplay','UNDEFINED','842fb520-93a4-46cc-9404-412a06f48880','','',NULL), +(5132,'f_human_mannequin_marine_light','ShopDisplay','UNDEFINED','fdecb773-b028-4add-989e-67f22ce1178b','','',NULL), +(5133,'Sorel Hat Armadillo','Char_Clothing_Hat','UNDEFINED','fc6aa72a-f8ec-43e7-b7bb-d949114171d6','','','The wide-brim bucket-style design of Habidash\'s Sorel hat provides the wearer with lots of cover from any overbearing rain or sunshine.'), +(5134,'LT_DoorPanelScreen','Misc','UNDEFINED','ef9a0788-8306-435d-a7d7-fcc3cf0437ec','','',NULL), +(5135,'Door Control','ControlPanel','DoorPart','52b64fd3-66b4-4e3a-bebb-c27c8af36e67','','',NULL), +(5136,'Venture Helmet Sienna','Armor','Helmet','12190b6b-b00c-43bc-9486-503426d4129b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover.'), +(5137,'Gladius Invictus Blue and Gold Livery','Paints','UNDEFINED','e5086306-a0f6-4031-bc93-a06483ede2a6','','','Featuring a vibrant blue base color and gold highlights, the Invictus Blue and Gold livery will give your Gladius a striking style.'), +(5138,'MacFlex Arms Olive','Armor','Arms','0294d935-eeff-43b2-97c7-879897ddb48e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(5139,'MacFlex Core Red','Armor','Torso','0a135446-a443-421f-8ed7-234f13f5064b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(5140,'MSD-616 Missile Rack','MissileLauncher','MissileRack','c113071d-02c6-4589-b503-40c3b51ab31c','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 4\nMissiles: 8xS1\n\nBehring’s MSD-481 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 4 hardpoint for the reliable and effective launch of eight S1 missiles.'), +(5141,'ARMR_ANVL_Spartan','Armor','Medium','f6088b00-f889-4a7a-bd44-1f41f6ae9012','','',NULL), +(5142,'display_item_noGeo_01Port_WeaponPersonal','ShopDisplay','UNDEFINED','5141c162-142f-4abc-826b-b92b81428f5d','','',NULL), +(5143,'Bison Military Boots','Char_Clothing_Feet','UNDEFINED','61209e6e-46da-467a-b920-0994dd6cfd73','','','Thick and robust, these black faux-leather military boots provide durable protection for your feet on a variety of terrains.'), +(5144,'Door_Ship_Sensor_Proximity_Occupied_1x1x1','Sensor','DoorPart','4dfe6465-9af1-4986-9617-c9f1ce0c8d7c','','',NULL), +(5145,'DockingTube_Fuel_Ports_MISC_Reliant','DockingCollar','UNDEFINED','c09feb62-b3a1-4780-b328-650718019451','','',NULL), +(5146,'MISC_Freelancer_SCItem_Seat_Bed_Upper_Left','Seat','UNDEFINED','dba8d81d-fb42-4159-b2b6-55d850d91999','','',NULL), +(5147,'un_can_drink_2_j','Misc','UNDEFINED','70c03343-544e-485d-b18a-3f65b96550aa','','',NULL), +(5148,'ANVL_Hawk_Thruster_Retro','ManneuverThruster','JointThruster','2b9696c2-0961-4ac5-9178-21b7a56a412f','','',NULL), +(5149,'Dashboard','SeatDashboard','UNDEFINED','9af6d8e9-a17b-41b1-8de3-063594480f66','','',NULL), +(5150,'ATC_PanelScreen_Levski_1','Misc','UNDEFINED','1b3cd5a9-0fb1-41eb-8076-c03e9a0c984c','','',NULL), +(5151,'AD6B Ballistic Gatling','Weapon','Gun','6c46b8e3-81c8-4018-bce2-740b81174a00','','','Manufacturer: Behring\nItem Type: Ballistic Gatling\nSize: 6\n\nThe AD6B, Behring\'s take on the classic ballistic gatling, includes a crystal cycle firing mechanism in the the high speed rotary system to maximize efficiency for sustained engagements with minimal misfires. Next time an aggressor escalates a hostile situation, make them regret the decision by spinning up this overwhelming and effective weapon.'), +(5152,'Drink_bottle_puree_01_peach_a','Drink','Bottle','db4fcf54-82a3-471d-8411-eaeca4c8ec19','','',NULL), +(5153,'FL-33 Cannon','Weapon','Gun','3a5bd643-3c3e-42fb-87ce-2a44b976555d','','','Manufacturer: Kroneg\nItem Type: Laser Cannon\nSize: 3\n\nDeliver massive damage from a distance with Kroneg\'s FL line of laser cannons. Embodying Kroneg\'s practical design philosophy, the FL-33 remains one of the most reliable and destructive size three laser cannons currently available.'), +(5154,'Recycled Material Composite','Cargo','Cargo','7a951bce-9329-460a-8933-126613aee232','','',NULL), +(5155,'AIModule_Unmanned_EA','AIModule','UNDEFINED','b2cbc14a-0393-4ea3-9004-61901f5881a6','','',NULL), +(5156,'Fury Wasteland Camo Livery','Paints','UNDEFINED','e532df39-c360-42dd-9ebc-dfccf6bd0964','','','Outfit the Fury in tan camo with the Wasteland Camo livery.'), +(5157,'Door Control','ControlPanel','DoorPart','4bfa03f0-15a9-43a8-81cc-6c3f90ca469c','','',NULL), +(5158,'Edgeriders Shoes Meringue','Char_Clothing_Feet','UNDEFINED','9da3c93c-24ae-4267-a20a-6a0c22564b8c','','','Nothing will take you back to the golden era club scene of Prime in the 2920s like Upsiders\' new Edgerider sneakers. These slip-on sneakers feature daz patterning and modern impact cushioning to keep you up and active for days on end.'), +(5159,'Duotone Duster','Char_Clothing_Torso_1','UNDEFINED','04d1d6d4-9e4b-48fa-8a2d-743072c67b90','','','Carrying Capacity: 2K µSCU\n\nA modern update of CBD\'s classic duster, this full-length coat features two-tone coloring and inlaid accents to make a bold statement whatever environment you\'re in.'), +(5160,'H_Dashboard_Projector_HUD_CNOU_Mustang_Alpha','Display','UNDEFINED','8fbad42d-e9dc-46c9-a883-987459e0839d','','',NULL), +(5161,'m_human_mannequin_slaver_medium','ShopDisplay','UNDEFINED','2f8bc1f0-61ee-4a0b-a046-2bd3e568c4b4','','',NULL), +(5162,'\'WRATH\' Cannon','Weapon','Gun','fde9335b-a9b7-4d7d-a4a4-69b1158de320','','','Manufacturer: Vanduul / Esperia\nItem Type: Plasma Canon\nSize: 5\n\nThis laser repeater is typically found on Vanduul war ships and is commonly known by its UEE Navy designation of \'WRATH\'.'), +(5163,'H_Dashboard_Projector_HUD_RSI_Salvation','Display','UNDEFINED','346a2c7c-eb20-4389-b46b-85a43c846028','','',NULL), +(5164,'MRAI_Pulse_Thruster_Mav','ManneuverThruster','FixedThruster','e7b782ba-f5ba-4f98-bbe6-93d293a9bc5c','','',NULL), +(5165,'SHIELDS','ShieldController','UNDEFINED','222ae134-3dce-486f-b127-dbe7bd0c0c83','','',NULL), +(5166,'ARMR_MISC_Starlancer','Armor','Medium','be981b13-863a-488f-83f4-e5e187253fb7','','',NULL), +(5167,'Seat','Usable','UNDEFINED','d76f0787-c408-401b-92d5-02156f64a520','','',NULL), +(5168,'Seat','Usable','UNDEFINED','6bcdd3b9-5331-454f-b7be-66664701f464','','',NULL), +(5169,'Microid Battle Suit Helmet Crucible','Armor','Helmet','b29afd36-4a02-4687-819f-f01146352e19','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(5170,'Microid Battle Suit Helmet Badland','Armor','Helmet','0ddf3144-5380-4f50-857a-bdcccebd7138','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(5171,'Microid Battle Suit Helmet','Armor','Helmet','cd8b1a7b-9473-47c0-b52b-e24403cceec8','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(5172,'Gladius Pirate Livery','Paints','UNDEFINED','43a9a267-8f89-42a6-967e-44efec1d28b2','','','Red and black with white highlights this special edition Gladius livery was created to celebrate those unafraid to engage pirate forces.'), +(5173,'Pingala Seeds','Misc','Harvestable','ea165f19-e4a6-4ee4-86d3-a0364a6307bd','','','Every aspect of the pingala follows the golden ratio resulting a visually arresting plant. This include its seeds which are highly sought after by plant collectors. Especially since attempts to cultivate the pingala in greenhouse environments has proven extremely difficult.'), +(5174,'DockingTube_Fuel_Ports_ANVL_Lightning','DockingCollar','UNDEFINED','91590edf-3361-49d7-aef2-e8ce6f74d4f8','','',NULL), +(5175,'Ramp Control','Usable','UNDEFINED','4616c2e2-12e2-4e90-7098-b0e247f399b8','','',NULL), +(5176,'100 Series Foundation Fest Livery','Paints','UNDEFINED','b9cab30e-8ab3-4037-b758-790eb69f502e','','','Foundation Festival is an opportunity for Citizens and Civilians to come together and strengthen the foundation of our community. Show your commitment to a better universe with this custom livery.'), +(5177,'Door Control','Door','UNDEFINED','7b8ac5fd-878b-499a-900b-26371d7dce24','','',NULL), +(5178,'78-WH Pants','Char_Clothing_Legs','UNDEFINED','b7e59bfa-b6b5-418d-9e7b-f1b2f41b7fe5','','','Carrying Capacity: 1K µSCU\n\nEmbody the Escar aesthetic of casual comfort with these classic pants. Ideal for lounging. Ideal for errands. Ideal for you.\n\nWomen\'s sizes currently out of stock.'), +(5179,'Slickdry Waders Primrose','Char_Clothing_Legs','UNDEFINED','488e8177-44c4-431b-ae9e-2b5615f37282','','','Carrying Capacity: 400 µSCU\n\nThe popular Slickdry Waders by Alejo Brothers are a combination of pants and boots made of a synthetic hydrophobic material and ensure the wearer will stay dry even if just stepping out of a river.'), +(5180,'K7 Pants Sienna','Char_Clothing_Legs','UNDEFINED','26cac158-8e28-419e-a0e5-4e7419b14a1b','','','Carrying Capacity: 3K µSCU\n\nDMC\'s K7 are an all-purpose cargo pants. Four easy access pockets provide extra storage while the triple-stitched polymer weave fabric is designed to withstand all kinds of weather conditions.'), +(5181,'Personal Storage','Cargo','UNDEFINED','88e9f165-de50-4a5d-b871-f119c0865764','','',NULL), +(5182,'Mercury Star Runner Equinox Livery','Paints','UNDEFINED','2f6fbf38-ec6c-457c-b6ca-66c606b6f2f9','','','The Mercury Star Runner Equinox livery blends orange and black for a paint scheme highlighting the unique look of this asymmetrical ship.'), +(5183,'Maintenance_Workzone_Middle_Inspect','Usable','UNDEFINED','cba42d84-23fd-4e57-b924-aa3b33a8459b','','',NULL), +(5184,'CNOU_Nomad_Locker_Armor','Player','UNDEFINED','35c7e342-11f3-44bd-bdd0-5e44006ab54c','','',NULL), +(5185,'Relay','Relay','UNDEFINED','b50ce2fd-9b1d-4daf-8bbc-e5b10d769e63','','',NULL), +(5186,'AEGS_Vanguard_SCItem_Seat_Bed_Upper','Seat','UNDEFINED','e4e16fd2-a2e3-4866-b365-84ee6bc52535','','',NULL), +(5187,'Oracle Helmet','Armor','Helmet','5512d873-28bb-4e2c-a452-f2474ec26d36','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(5188,'Loscha Work Vest Valencia','Char_Clothing_Torso_1','UNDEFINED','4b9b86da-af4d-4bc2-b9df-26977494681d','','','Carrying Capacity: 400 µSCU\n\nThe heavy-duty Loscha Work Vest by Alejo Brothers is designed for people who want to be prepared for anything at any time.'), +(5189,'SHIELDS','ShieldController','UNDEFINED','bf1613d4-5bf0-48b7-9038-ab498a6bdce9','','',NULL), +(5190,'Titanium','Cargo','Cargo','afd21283-5fb4-48a4-880d-62d181086de7','','',NULL), +(5191,'Shower_Col_a_Hab_a_01','Usable','UNDEFINED','5749f883-e201-4d0c-9493-f1c06402dfed','','',NULL), +(5192,'Scrap Bearing','Misc','Junk','1b963a99-c25a-4e57-b513-7836723a81b9','','','A circular piece of worn metal, most likely an old bearing.'), +(5193,'MISC_Hull_C_Ring_11','Room','UNDEFINED','bd42144e-508c-40d3-9596-cc805549b477','','',NULL), +(5194,'BroadSpec-Go','Radar','MidRangeRadar','ad6617d1-ccbf-45e4-9ac3-8bd0bc6b8ff5','','','Item Type: Radar\nManufacturer: Chimera Communications\nSize: 0\nGrade: B\nClass: Industrial\n\nThe BroadSpec-Go was designed with accuracy, reliability, and durability in mind. And that\'s exactly what this radar provides.'), +(5195,'ReadyMeal (Meatball Marinara)','Food','Sachet','38c1f26d-466e-4c01-9204-abf8445f5862','','','NDR: 60\nEffects: None\n\nThe classic taste that\'s all you need, this Meatball Marinara from ReadyMeal features tender balls of protein and thick tomato sauce over pasta all ready-to-eat in seconds.'), +(5196,'Luminalia Gift','Cargo','Cargo','ac6d2ed0-0128-48ee-83ad-1adce009fa05','','',NULL), +(5197,'Door Control','Door','UNDEFINED','889cd861-96b8-4e77-9b89-6fa9eb23805a','','',NULL), +(5198,'Door Control','Door','UNDEFINED','bbd5ad46-08b6-4a20-9b73-7c5686d81b9c','','',NULL), +(5199,'Arcus Gloves Purple','Char_Clothing_Hands','UNDEFINED','c4dc71ec-3335-422f-a309-33c68253c710','','','Temp. Rating: -35 / 25 °C\n\nThe Arcus gloves are thin enough to wear on everyday excursions, yet capable of keeping your hands warm in frigid conditions. Textured touch fingertips even allow you to easily access your mobi and other touch screens without removing your gloves.'), +(5200,'Attrition-4 Repeater','Weapon','Gun','8d868b78-eccd-4ba5-a4a5-57e2f20bdc35','','','Manufacturer: Hurston Dynamics\nItem Type: Laser Repeater\nSize: 4\n\nHurston Dynamics has fully integrated it\'s cascade laser technology into their Attrition-line of repeaters. The size four Attrition-4 is no exception, operating at peak performance when near its maximum thermal capacity.'), +(5201,'Inquisitor Core Ignitor','Armor','Torso','464e15a1-fa60-459c-80f1-82d6096f6b48','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(5202,'Door Control','ControlPanel','DoorPart','fc462115-7e38-41ef-9065-323524928380','','',NULL), +(5203,'TRGT. STATUS','Seat','UNDEFINED','8b254948-49fb-46cb-85d0-c153513a9a5e','','',NULL), +(5204,'Bokto Core','Armor','Torso','e5145460-e74b-4997-995c-bc322e6cf95d','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nThis Antium Armor was modified from its original version. Carefully-selected fangs and bones were mounted to the set to give it a primal look.'), +(5205,'CRUS_Starfighter_SCItem_Dashboard','SeatDashboard','UNDEFINED','d3141988-af62-45e4-9480-f9df56ae2e5a','','',NULL), +(5206,'Star Kitten Helmet','Armor','Helmet','7d74b158-27c6-49d2-b9ae-7542d087eb95','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nCelebrate your love of Genady Kuzo\'s classic Star Kitten cartoon with this commemorative helmet from Sakura Sun. The custom molding for this medium helmet faithfully recreates the show\'s icon character design without sacrificing its defensive capabilities. Integrated accent lights provide pops of color and highlight the helmet\'s unique silhouette. The pink Star Kitten helmet is sure to be a collectible among fans of the show and unusual armor enthusiasts.'), +(5207,'Mustang Fortuna Livery','Paints','UNDEFINED','de8d3153-cdca-46a2-b205-644a1180e31a','','','Make luck your co-pilot. Boldly set your sights on the stars and adventure forth in style with the Fortuna livery. This Stella Fortuna themed paint scheme is primarily green with gray accents.'), +(5208,'AEGS_Idris_SCItem_Seat_Bridge_Rear_Right_Back_Blocked','Seat','UNDEFINED','ceddeb40-4d9b-402c-a535-98982972b49a','','',NULL), +(5209,'One Light Shirt Red','Char_Clothing_Torso_0','UNDEFINED','8dbec337-9a0b-400d-887f-790e53d0b2e2','','','During Luminalia, we\'re all one family. Celebrate with your loved ones in immense joy with this festive shirt from City Lights, crafted with high-quality, ultra soft fabric that\'s made to last.'), +(5210,'Delta LL (1x Reflex)','WeaponAttachment','IronSight','495e07f0-3b09-49a7-857b-dccefca9f5d1','','','Manufacturer: NV-TAC \nType: Reflex\nAttachment Point: Optic\nMagnification: 1x\nAim Time: +15%\nSize: 1\n\nIdeal for civilians and professionals, the Delta non-magnifying reflex sight from NV-TAC provides a precise illuminated target marker, visible across a wide range of light levels. This version of the scope includes low-light functionality suitable for operations in dim environments.'), +(5211,'Radar_Display_Screen_GRIN_MDC','Display','UNDEFINED','907e4e7c-de87-4c91-b9ae-520bad2b8ccc','','',NULL), +(5212,'Torreto Pants (Modified)','Char_Clothing_Legs','UNDEFINED','2a7363c4-793a-49d9-b388-6d0d38a28816','','','Carrying Capacity: 0.5K µSCU\n\nThis version of 987\'s Torreto pants has been modified from its original form. 987 redefines classic slacks with the Torreto. These mid-rise, straight cut pants incorporate a section of fabric studding along the side seam to provide a pop of personality.'), +(5213,'Pitambu','Cargo','Cargo','5e31d988-6609-46f6-82f3-24354844c0b9','','',NULL), +(5214,'WorkLife Pants White','Char_Clothing_Legs','UNDEFINED','737084cb-6bf5-463f-b964-136ab36b0cbb','','','Carrying Capacity: 2K µSCU\n\nWith Stegman\'s, you know you\'re getting clothes made for workers, by workers. Featuring multiple external pockets with easy access tabs, WorkLife pants are rugged, functional and professional. Just like you.'), +(5215,'INTK_AEGS_Redeemer','FuelIntake','Fuel','22a8d9dc-cd68-4b84-bb53-dceb1f6c60f0','','',NULL), +(5216,'Aegis Eclipse - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','bede5123-81b4-4db3-be78-847c95f4d773','','','Aegis Eclipse - Decoy Launcher'), +(5217,'Crusader White Pawn','Misc','UNDEFINED','f6b8a64a-86e0-4b7a-b914-41635a8c6b86','','','Included with the Mercury Star Runner from Crusader Industries, this minimalist white chess piece has a marble base.'), +(5218,'Hadanite','Cargo','Cargo','33051a8e-71fc-44ab-8f7d-f42ca07d9710','','',NULL), +(5219,'Varhey Boots Falstaff','Char_Clothing_Feet','UNDEFINED','6203daf5-dead-4c68-b225-e18e0bef8875','','','The Varhey by R6Pro is a widely popular lightweight workboot made of a durable, but flexible, polyweave that ensures a safe, snug fit.'), +(5220,'DRAK_Clipper_Thruster_Mav_Bottom','ManneuverThruster','UNDEFINED','77276dee-f3fa-498c-9410-e0f5b608b6dc','','',NULL), +(5221,'Drassik','PowerPlant','Power','50643ac7-c238-4d7a-987b-fd8b1648ac1b','','','Item Type: Power Plant\nManufacturer: Aegis Dynamics \nSize: 3\nGrade: D\nClass: Military\n\nThe Drassik is a military-grade power plant from Aegis Dynamics. The large component is known for providing decent durability but unremarkable performance.'), +(5222,'Flight Blade','FlightController','UNDEFINED','2fc87e12-177e-49c9-b105-d49a2d23292b','','',NULL), +(5223,'Counter_Shop_ConscientiousObjects','Usable','UNDEFINED','49661bd8-36e4-478c-9c4b-05ccfa503a8e','','',NULL), +(5224,'Zeus Best in Show 2955 Livery','Paints','UNDEFINED','bb665a28-e501-411c-b806-8dcc5edd08fb','','','Commemorate the Zeus making the final four of the 2955 Ship Showdown with this striking metallic orange and black Best in Show livery.'), +(5225,'Access','SeatAccess','UNDEFINED','73bf8eec-4c0c-4b81-92eb-ffd16a64e4dd','','',NULL), +(5226,'MISC_Reliant_Thruster_Mav_Fixed_Main','ManneuverThruster','FixedThruster','e28f006c-50af-46c4-b8ea-b268f84cca3f','','',NULL), +(5227,'Weapon Rack','Usable','UNDEFINED','43eac534-a397-4323-9682-8287c74fd5d1','','',NULL), +(5228,'Prism \"Hurston\" Laser Shotgun','Weapon','Medium','811dad07-e8f7-4efd-8631-2c73fe3fe51a','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Shotgun\nClass: Energy (Laser)\n\nBattery Size: 10\nRate of Fire: 120 rpm\nEffective Range: 10m\n\nAttachments: Barrel (S3), Optics (S1), Underbarrel (S2)\n\nFiring powerful shortrange bursts of energy, engineers at Verified Offworld Laser Technologies have developed the Prism laser shotgun so that as the weapon\'s heat-levels rise, the pellets begin fusing together into slug-like projectiles that inflict higher damage on targets. This special edition features Hurston branding.'), +(5229,'Tholo (Translated)','Misc','Personal','2385b193-66a9-475c-9450-b756e8b83fe8','','','A small three-sided token representative of Cassa, the Banu patron of luck. Spinning the tholo reveals an answer meant to help guide the user during decision-making. This particular tholo has been translated into common.'), +(5230,'Carryable_utensil_spoon','Misc','UNDEFINED','f2944daf-e32b-47c1-8c2b-dda1ce1fda25','','',NULL), +(5231,'Consumer Goods','Misc','UNDEFINED','3d4a6cd8-0c83-4a44-9a05-86e4a94485ea','','','Commodities that are purchased by an individual to satisfy their wants or needs.'), +(5232,'Excelsior','JumpDrive','UNDEFINED','14cbe476-4050-4af5-8635-178519722f4b','','','Item Type: Jump Module\nManufacturer: Tarsus\nSize: 2\nGrade: C\nClass: Civilian\n\nJourney across the ‘verse with Tarsus’ Excelsior jump module, offering greater reliability to help take your wanderlust to new heights.'), +(5233,'Green QuikFlarePro','Weapon','Grenade','3ac9916b-3670-4a2e-8cbe-435f7676dbc2','','','Manufacturer: Shubin Interstellar\n\nIlluminate the way forward or signal for help with the Green QuikFlarePro from Shubin Interstellar. For centuries, miners have counted on this flare as part of their core toolkit, thanks to its tried and true design and durability that ensures it stays ablaze in the various harsh weather and difficult atmospheric conditions encountered across the \'verse. The QuikFlarePro uses advanced tech to glow longer than regular flares.'), +(5234,'SHIELDS','ShieldController','UNDEFINED','4fb008b8-c032-e509-6228-72220c982e97','','',NULL), +(5235,'Aranda Shirt','Char_Clothing_Torso_0','UNDEFINED','8e4c19c1-9973-42b8-8ca9-07528c749320','','','Fiore makes it easy to be fashionable with the Aranda. This unique top combines a dress shirt and waistcoat styled in complementary colors. The shirt comes with short sleeves cuffed at the elbows while the waistcoat features a small geometric flourish on the front pockets that\'s mirrored across the back.'), +(5236,'Nomad Lovestruck Livery','Paints','UNDEFINED','a81634ca-91f8-4d2a-b633-3e4f230eb8d9','','','Inspired by the colors of Coramor, the Lovestruck livery is a stylish metallic pink and black look for your Nomad.'), +(5237,'Aranda Shirt Blue/Beige','Char_Clothing_Torso_0','UNDEFINED','7f86d9cf-d1d1-4fe9-b125-3e4dee76929c','','','Fiore makes it easy to be fashionable with the Aranda. This unique top combines a dress shirt and waistcoat styled in complementary colors. The shirt comes with short sleeves cuffed at the elbows while the waistcoat features a small geometric flourish on the front pockets that\'s mirrored across the back.'), +(5238,'Chiron Helmet','Armor','Helmet','73fb9b7d-0fc4-4cf6-ac1f-cfd03170341e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nUtilizing a crystal clear protective glass treated with a specialist hydrophobic glaze, the Chiron light helmet was purpose built to protect against fogging and glare, guaranteeing that first responders will retain complete vision in emergency situations.'), +(5239,'Aranda Shirt Purple Plaid/Blue Pinstripe','Char_Clothing_Torso_0','UNDEFINED','f7db9094-baa3-42ab-b626-0186eb16a457','','','Fiore makes it easy to be fashionable with the Aranda. This unique top combines a dress shirt and waistcoat styled in complementary colors. The shirt comes with short sleeves cuffed at the elbows while the waistcoat features a small geometric flourish on the front pockets that\'s mirrored across the back.'), +(5240,'Internal Tank','FuelTank','Fuel','23d28cbc-817f-43ab-bb0c-29469c11943c','','',NULL), +(5241,'Seat','SeatAccess','UNDEFINED','60c9c9d7-862e-40b2-beec-dc9c8ff4b8f8','','',NULL), +(5242,'Food_fruit_oza_1_a','Food','Plant','07240d75-b76c-4d9d-b638-ce364c0fab05','','',NULL), +(5243,'Voir','Radar','MidRangeRadar','c0cf2b46-a1d9-4f8c-8ff4-1c8550dbe7e4','','','Item Type: Radar\nManufacturer: GNP\nSize: 1\nGrade: D\nClass: Military\n\nThe Voir is not just for the military anymore. Now you too can attach this small radar to your ship to stay safe.'), +(5244,'Seat','SeatAccess','UNDEFINED','ba94a213-0cef-468e-8870-14353c87418b','','',NULL), +(5245,'Door Control','ControlPanel','DoorPart','e3551853-1234-4ce8-b169-52bce8c74488','','',NULL), +(5246,'Citadel Legs Base','Armor','Legs','a68db5c5-7f6b-4372-9819-856150eb59fb','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure.'), +(5247,'Remote Turret','Turret','GunTurret','f562c161-6dee-4dbc-9a33-cc0274819797','','','Remote Turret'), +(5248,'Chili Mac Combat Ration','Food','Tin','37d73775-26e4-4362-9bec-fc2a748c0eb5','','','NDR: 64\nEffects: Hypertrophic, Hypo-Metabolic, Cognitive Boosting\n\nA single serving combat ration specially formulated to provide complete high-performance nutrition for UEE Army personnel.'), +(5249,'Door Control','Door','UNDEFINED','cb01cce1-b936-4677-9c21-03d4c15512d1','','',NULL), +(5250,'Seat','Usable','UNDEFINED','a9537d33-06e7-4395-969c-420f84f3ce10','','',NULL), +(5251,'BR-2 Shotgun Magazine (12 cap)','WeaponAttachment','Magazine','ab85897c-940f-426e-962b-b3a2d459036c','','','Item Type: Magazine\nCapacity: 12\n\nThis magazine for the Behring BR-2 shotgun holds twelve 12-gauge rounds.'), +(5252,'Kavir Pants Conifer','Char_Clothing_Legs','UNDEFINED','979da10e-c04c-45c6-8663-59fb6b3ae729','','','Carrying Capacity: 0.4K µSCU\n\nBlending Habidash style and ingenuity, the Kavir pants feature fashionable flourishes alongside practical perks ideal for managing extreme environments. Several fabric pieces are sewn directly into a thick, integrated belt that divides the pants between a large elastic waistband and looser, breathable cotton blend fabric through the legs. There are also two bands of fabric that ring the shins to keep dirt and other elements out.'), +(5253,'AEGS_Hammerhead_SCItem_Engineer_Console','Seat','UNDEFINED','71c30b59-d06c-462a-8efe-61de4b5ae5cb','','',NULL), +(5254,'Pulse Fortuna Livery','Paints','UNDEFINED','20296d51-5558-4107-a1fc-c9c43839bc9a','','','Make luck your co-pilot. Boldly set your sights on the stars and adventure forth in style with the Fortuna livery. This Stella Fortuna themed paint scheme is primarily green with gray accents.'), +(5255,'CRUS_Starlifter_Door_Decal_JumpDrive_A','Decal','DoorPart','31701021-6ca8-49cd-83a5-89f174ed96b4','','',NULL), +(5256,'Locker_Suit_Left_AEGS_TEST','Usable','UNDEFINED','ac00f95a-706d-4889-876f-48e77b2230ea','','',NULL), +(5257,'MISC_Fortune_Thruster_Retro_Front','ManneuverThruster','FixedThruster','e615a19d-0e06-4e05-88d1-ab460b07b7af','','',NULL), +(5258,'Inquisitor Core Roughshod','Armor','Torso','5094c533-d9ae-4440-87cb-ca3c28189906','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(5259,'300 Series Moonlight Paint','Paints','UNDEFINED','13b685b1-33fc-46b1-b725-f1a03138c591','','','Moonlight paint job for the Origin 300 Series.'), +(5260,'AEGS_Reclaimer_Thruster_Retro_01','ManneuverThruster','FixedThruster','986afaac-0209-41b2-bb06-170c3839e7e1','','',NULL), +(5261,'Skyhigh City T-Shirt Black','Char_Clothing_Torso_0','UNDEFINED','678baa6a-8cda-4459-a505-f9cfe836c154','','','There\'s no need for ground when each of Orison\'s platforms is outfitted with special thrusters to maintain a constant elevation. This shirt features a stylized shot of Orison\'s famous floating platforms sitting comfortably among the clouds.'), +(5262,'Door Control','Door','UNDEFINED','56d9b4f4-17c6-4916-8d1e-bf19044c91d9','','',NULL), +(5263,'DRAK_Caterpillar_SCItem_Dashboard_SupportRight','SeatDashboard','UNDEFINED','f4e40d72-d83e-4e45-b759-572ed6c398b4','','',NULL), +(5264,'Door Control','Door','UNDEFINED','2dd01187-46f1-4fff-a062-92370017b777','','',NULL), +(5265,'Bed','Seat','UNDEFINED','8115d3a3-2825-4246-9f19-a87b6f47eb96','','',NULL), +(5266,'FSK-8 \"Ghost\" Combat Knife ','Weapon','Knife','089c5d5f-c3ea-456d-a35f-72bed985dbaf','','','Manufacturer: UltiFlex\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nThe FSK-8 Combat Knife from UltiFlex is as sparse a weapon as you can get. While many become enamored with dazzling tech of modern weaponry, UltiFlex has focused on making a simple effective combat tool. Featuring a balanced 1055 carbon steel blade honed to a razor\'s edge, this knife is capable of handling all the abuse you can throw at it.'), +(5267,'Internal Tank','FuelTank','Fuel','830540cf-0f73-4bef-8a07-e2009060bba1','','',NULL), +(5268,'Razor Foundation Fest Livery','Paints','UNDEFINED','686147d2-64fe-49c6-a601-5b7e940b85b8','','','Foundation Festival is an opportunity for Citizens and Civilians to come together and strengthen the foundation of our community. Show your commitment to a better universe with this custom livery.'), +(5269,'Crusader Black Pawn','Misc','UNDEFINED','13693c31-305c-4aba-8e29-152237abfdd3','','','Included with the Mercury Star Runner from Crusader Industries, this minimalist black chess piece has a marble base.'), +(5270,'stand_head_clothing_hat_0025x0025x00375_1Port','ShopDisplay','Default','295b02c0-c4a9-4286-b0a6-d7749179166e','','',NULL), +(5271,'M9A Cannon','Weapon','Gun','f9a6c670-a830-4c44-9e26-7ca2a9070264','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 7\n\nStrike at the very heart of your enemies with the devastating impact of Behring\'s M9A energy autocannon. When fully charged, the massive stopping power of this laser weapon has the potential to halt even capital ships in their tracks.'), +(5272,'Railing_Straight_4m_LowTech_Util_Stairs_04x01_e','Usable','UNDEFINED','8a93cf28-0cc5-47d9-a431-b2907b1ab987','','',NULL), +(5273,'KRIG_P52_Merlin_Thruster_Retro_01','ManneuverThruster','JointThruster','afde86b2-0321-4f5c-a862-81f66dab90e8','','',NULL), +(5274,'Datapad','Misc','Gadget','6c74bbe2-9637-44b5-ae5c-34d9b936296d','','','A portable tablet computing device featuring a touchscreen display.'), +(5275,'TRGT. STATUS','Seat','UNDEFINED','505f6ee6-910e-4fbc-a690-5f05b4bc4cb7','','',NULL), +(5276,'Processed Food','Cargo','Cargo','6c4cab7d-a2f6-46d2-95fa-a2cad9e1ceea','','',NULL), +(5277,'CRUS_Starlifter_Ext_Door_Right_Sm_HACK','Container','UNDEFINED','351342b4-fe1e-4111-9e49-94e388c3c680','','',NULL), +(5278,'Paladin Alliance Aid Camo Livery','Paints','UNDEFINED','ea3c4eb8-a906-4ad5-8b4c-553f608b202a','','','Showcase your dedication to helping Alliance Aid assist the people of Levski during their time of need with this grey camo livery.'), +(5279,'MISC_Hull_C_Dashboard_CoPilot','SeatDashboard','UNDEFINED','acc9f91f-506c-4ae0-a8d1-5ff888129535','','',NULL), +(5280,'Day One Shirt Tan','Char_Clothing_Torso_0','UNDEFINED','4b9c5a4d-e2ae-4c01-82fc-9e16a4b855f3','','','This Henley shirt from Stegman\'s is made with AirFlow technology, a stain-resistant, air-cooled fabric that keeps you comfortable and dry.'), +(5281,'Internal Tank','FuelTank','Fuel','1c3909a7-8fac-40b3-bcf1-e91ed7035b50','','',NULL), +(5282,'Door Control','Door','UNDEFINED','2af69419-9d65-408e-a6b9-c9bc1d4b6c03','','',NULL), +(5283,'Hephaestanite (Raw)','Cargo','Cargo','8fdacbaf-eb1b-47e5-a5ed-01beb269b0a6','','',NULL), +(5284,'Tholo','Misc','Personal','20c6e80c-05b7-4fab-a304-3ba1538e396a','','','A small three-sided token representative of Cassa, the Banu patron of luck. Spinning the tholo reveals an answer meant to help guide the user during decision-making.'), +(5285,'HRST_LaserScatterGun_Barrel_S3','WeaponAttachment','Barrel','f48031f5-172a-4049-a4ee-00c2904d054e','','',NULL), +(5286,'Deadhead Helmet Shutdown','Armor','Helmet','1f5714b2-5d4e-45e2-9f93-64fbac489ad6','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\n\nRemind your enemies that death is coming with the Deadhead helmet. In place of a visor, the ghastly visage of a Human skull, lit from within by an infernal glow, is sure to send any opponent running.\n\nThe Shutdown version features black and gray coloring with dark metal accents.'), +(5287,'Steel','Cargo','Cargo','9d245d16-ba58-42d4-bbc1-e85fa513eb6b','','',NULL), +(5288,'Door Control','Door','UNDEFINED','afebb5c9-9af3-4072-9bb3-31b721b900b2','','',NULL), +(5289,'rkhm_dply_shield_01_MiningBase','Gadget','Gadget','b29ec947-3168-40fc-8537-10cc404cddc3','','',NULL), +(5290,'Door Control','ControlPanel','DoorPart','3bf2f85e-b1c7-48f3-a095-6d04bb0fea4d','','',NULL), +(5291,'Reaper V Missile','Missile','Torpedo','918ad61c-ea99-4040-b05a-a42cd5436aed','','','Manufacturer: Talon\nTracking Signal: Electromagnetic\nSize: 5\n\nThe Reaper strike torpedo features a favorable destructive yield-to-expense ratio and a proven Talon EM tracking suite.'), +(5292,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','f9f4730d-be41-4cf2-abda-50e616cff2ab','','','Aegis Gladius - Decoy Launcher'), +(5293,'Vaux-C2 Module','MiningModifier','Gun','c60c2615-ec40-491b-9d60-adddf88782f0','','','Manufacturer: Shubin Interstellar\nItem Type: Mining Module (Passive)\n\nExtraction Laser Power: 120%\n\nOptimal Charge Rate: -15%\n\nThe Vaux-C2 Module from Shubin Interstellar reduces the charge rate when mining but makes extracting valuable ore faster.'), +(5294,'Door Control','Door','UNDEFINED','5c3a828f-8bb6-4258-8b32-b45028500963','','',NULL), +(5295,'Saldynium (Ore)','Cargo','Cargo','af0b43f4-53fb-44e3-be4a-7695857810e3','','','A rare metal that has traditionally been extremely difficult to find in large quantities owing to the particular environmental requirements for its formation. It is sought after for its use in the production of high-powered lasers. It also shows some antimicrobial properties though its scarcity has seen it used less for medical purposes.'), +(5296,'Seat','Usable','UNDEFINED','02aa6822-5eba-400a-9f76-7be326f7b562','','',NULL), +(5297,'Palatino Helmet Deadlock','Armor','Helmet','fa389812-e21d-4fed-86b2-9c251ca116fe','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. The fully-enclosed helmet comes equipped with a suite of sensors that connects the wearer to the wider world while providing supreme protection. Visor is AR crosshair compatible. The Deadlock variant features a grey camo pattern with yellow highlights.'), +(5298,'RSI_Apollo_Thruster_VTOL','ManneuverThruster','FixedThruster','3eef9d6d-3f8f-492b-9dac-61e1827c2d22','','',NULL), +(5299,'Courser Jeans Charcoal','Char_Clothing_Legs','UNDEFINED','c8c97418-ec43-4db4-aff5-93a69f3d959a','','','Made with soft yet sturdy cotton, these jeans are ripped and then \"repaired\" with colorful thread alongside misshapen patches that give them a touch of history.'), +(5300,'Starfarer Ship Armor','Armor','Medium','cc005379-ba41-40f1-bb3f-a976c63233f8','','','Starfarer Ship Armor'), +(5301,'WiDoW','Cargo','Cargo','e197b5f0-9eca-4bd0-ae68-1af7ea3ff045','','',NULL), +(5302,'Ranta Dung','Cargo','Cargo','caab7792-9b6f-42ec-97bb-865ce9092977','','',NULL), +(5303,'ORIG_325a_Seat_Bed','Seat','UNDEFINED','d06f7d72-f56e-4fb9-a3bb-2e8f5a3e68ae','','',NULL), +(5304,'Seat','Usable','UNDEFINED','ec0bbe82-b55a-4d43-8f9f-bf404c850bb8','','',NULL), +(5305,'Prim Shoes Green','Char_Clothing_Feet','UNDEFINED','b15a41bc-8e63-4762-9781-92d290b0a78e','','','Professional yet casual, the Prim utilizes cutting-edge synthetic construction to provide maximum comfort and a shine that won\'t fade.'), +(5306,'DCP Armor Core Clawed Steel','Armor','Torso','f48ef7c4-6d76-447e-a894-e1a27dc84c99','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(5307,'Mixed Mining','Cargo','Cargo','1d1547c0-7b9c-4cf6-ac52-ac833c84591d','','',NULL), +(5308,'RSI_Polaris_Cargo_Addon_Right','AttachedPart','UNDEFINED','4498fd05-9fbe-458d-9d72-c13807577894','','',NULL), +(5309,'Flight Blade','FlightController','UNDEFINED','7c26d79c-c36c-4d83-8491-a31d5defde04','','',NULL), +(5310,'RSI_Constellation_Aquila_Thruster_Turbine_Front','ManneuverThruster','JointThruster','f3bd8a29-1326-470f-b3fe-f6efdbd28af1','','',NULL), +(5311,'RSI_Aurora_Cargo_Rack','AttachedPart','UNDEFINED','95118a14-2141-4a98-b89d-c52448599d0e','','',NULL), +(5312,'PC2 Dual S3 Mount','Turret','GunTurret','d2a6b563-5c2d-4334-b3b8-22ab4fc84c39','','','PC2 Dual S3 Mount'), +(5313,'DRAK_Caterpillar_SCItem_Dashboard_SupportLeft','SeatDashboard','UNDEFINED','6cd3df9e-5523-4891-93bc-a05d15beea0b','','',NULL), +(5314,'Door Control','Door','UNDEFINED','558940b9-444b-401b-8425-e8fd44d60f1a','','',NULL), +(5315,'Radix','PowerPlant','Power','c46f3fb8-12f8-4c85-b4ac-0850b1e0d17d','','','Item Type: Power Plant\nManufacturer: Lightning Power Ltd.\nSize: 0\nGrade: C\nClass: Civilian\n\nWith more than enough get up and go to handle your vehicle’s daily energy needs, the Radix from Lightning Power Ltd. is a power plant you can count on to get you where you’re going.'), +(5316,'MISC_Hull_C_FoldingStrut_2B_Outer','Cargo','UNDEFINED','f303fb72-4b9d-4ec4-8c28-5b93bce01926','','',NULL), +(5317,'Cinch Scraper Module','SalvageModifier','UNDEFINED','81d7c828-42b2-46e8-b2e3-6798bdc32c23','','','Manufacturer: Greycat Industrial\nItem Type: Scraper Module\nExtraction Speed: 0.5/1.5\nRadius: 1.5m\nExtraction Efficiency: 90%\n\nThe Cinch is a precision scraper module that produces a small, focused beam perfect for extracting resources from every nook and cranny on a hull. While the beam\'s relatively small size requires more time to remove Recycled Material Composite (RMC), its excellent extraction rate will make the added effort worth it.'), +(5318,'MOLE Hadanite Livery','Paints','UNDEFINED','32193bd5-3174-434f-9e72-1e5d97c54a60','','','The Hadanite livery for your MOLE gives the ship a distinct pink hue that mirrors the look of the gemstone of the same name.'), +(5319,'Seat','SeatAccess','UNDEFINED','6aacb9a6-2274-4ae4-8cf6-65b5c06bdfd0','','',NULL), +(5320,'Canelo Pants Snow','Char_Clothing_Legs','UNDEFINED','09772217-9340-4f3c-996e-5de87983aa8e','','','Carrying Capacity: 400 µSCU\n\nWhether you need them for work, play, or rest, the adaptable Canelo Pants from Habidash are guaranteed to fit the bill. Its convenient pockets allow you to carry all your essentials, and its stain-resistant fabric is comfortable enough to be worn for hours.'), +(5321,'Sens','Radar','MidRangeRadar','6259d636-2086-4555-930f-883dcd491ccf','','','Item Type: Radar\nManufacturer: GNP\nSize: 0\nGrade: B\nClass: Military\n\nThe cutting-edge GNP Sens design elevates radar technology to meet or exceed the specifications used by most military organizations operating today.'), +(5322,'Clempt Pants Black','Char_Clothing_Legs','UNDEFINED','195165d6-af78-45ac-adef-26f9ea51d996','','','Carrying Capacity: 2K µSCU\n\nStegman\'s factory pants have been taken to the next level with the Clempt line. These rugged all-purpose pants come with double knees for extra comfort and protection and are made from tough composite weave fabric to last as long as the work needs.'), +(5323,'Morozov-SH-I Core Gideon','Armor','Torso','26da57e4-666a-4314-98e6-65d8b5a95e84','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -97 / 121 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart. The Gideon edition features a heavily worn teal finish with yellow accents and a signature red snake insignia.'), +(5324,'H_Dashboard_Projector_HUD_AEGS_Idris','Display','UNDEFINED','5bd6146d-0bb6-45b3-8e94-d8546136d01d','','',NULL), +(5325,'CRUS_Starlifter_CargoGrid_Personal_Armory_Small','Cargo','UNDEFINED','21653000-600d-4852-b9f5-ebf7d41f1143','','',NULL), +(5326,'M7A Cannon','Weapon','Gun','b94c54b2-a70e-4f41-bc02-ed76be87e493','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 5\n\nThis versatile long distance energy autocannon is the latest in Behring’s M-Series. The M7A is designed to act as a high impact deterrent effective at medium to long range. The new AC8 Lens system minimizes stopping power loss over distance, making each shot equally effective at longer ranges.'), +(5327,'Aril Backpack Red Alert','Armor','Backpack','64bdb6f1-f4e8-4222-9365-2dbbb67ccd99','','','Item Type: Medium Backpack\nCarrying Capacity: 85K µSCU\nCore Compatibility: Medium & Heavy\n \nOriginally designed for miners, the Aril armor comes with an attachable backpack that can accommodate a variety of tools and supplies to keep your hands free. The Aril backpack is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(5328,'Harlowe Shirt Violet','Char_Clothing_Torso_0','UNDEFINED','68bfd780-1024-4c6b-95e3-e214c1964fe0','','','Capable as being worn on its own or as a base for layers, this long-sleeve henley style shirt from Alejo Brothers keeps you stylish and comfortable.'), +(5329,'Lillo Pants Imperial','Char_Clothing_Legs','UNDEFINED','81a42eba-6c97-4f2c-b2e7-f5c1efe6be7c','','','Carrying Capacity: 0.5K µSCU\n\nThese slim cut pants from Fiore give you a tailored feel at a fraction of the cost. Built from space-age weaves, the Lillo are a low maintenance, high impact addition to your office wardrobe.'), +(5330,'Weapon_Rack_1_APAR_Special_02_Common_001','Usable','UNDEFINED','3d16ee11-10d2-43e3-9466-a91ca6361b51','','',NULL), +(5331,'Copper','Cargo','Cargo','a74b78a7-548b-4839-a7a1-972be6bc39e7','','',NULL), +(5332,'Vehicle_Screen_MFD_Holographic_Scout_R','Display','UNDEFINED','85ec8eb2-4f47-4e72-938c-607c61923c55','','',NULL), +(5333,'BLOC','Shield','UNDEFINED','cd1ed528-ce0f-4aaa-8ae3-370c48f97d9f','','','Item Type: Shield Generator\nManufacturer: Seal Corporation\nSize: 2\nGrade: B\nClass: Civilian\n\nSeal Corporation’s BLOC shield generator was the first to use the company’s revolutionary quantum core semiconductor to reduce the component’s power draw without compromising performance.'), +(5334,'AEGS_Reclaimer_Seat_CoPilot','Seat','UNDEFINED','f1b57c3b-8443-4dac-a7fc-5af7ed1b8c3c','','',NULL), +(5335,'Horizon Helmet Black','Armor','Helmet','53fe8f56-18f4-4039-bbc4-e0b96e44dd62','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Horizon helmet is a durable and robust environmental enclosed work helmet. The single sheet laminate dome gives you an extremely wide field of view. A pair of side-mounted LED light modules provide additional illumination to make sure you can see what you\'re doing.'), +(5336,'Field Medic Kit','Misc','UNDEFINED','519d15e5-105d-4e3d-aaaf-f1db9b8f47f6','','','Medical emergencies can happen any time, any place. Be prepared with this Field Medic Kit from Curelife which provides convenient and portable storage for a ParaMed Medical Device, Pancea MedGel refills, and additional medicine injectors.'), +(5337,'Seat','SeatAccess','UNDEFINED','2975a36d-b5a1-4cf4-8e87-2ef4d9ff98e3','','',NULL), +(5338,'600i Sterling Livery','Paints','UNDEFINED','b787426a-4159-47cd-9137-1a1ee6214c8d','','','The Sterling livery gives the 600i a simple yet striking metallic finish with blue highlights.'), +(5339,'MPUV-1C PHB Flight Blade','FlightController','UNDEFINED','c6762ef5-6063-407e-99a4-144cb2e33ef4','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Argo MPUV-1C with the PHB Flight Blade from Broad & Rabiee. By re-allocating forward thrust resources, you can expect your ship deliver increased precision handling during tight maneuvers.'), +(5340,'Internal Tank','FuelTank','Fuel','87500de3-7afa-4e05-8fcc-df36cde72475','','',NULL), +(5341,'Seat','SeatAccess','UNDEFINED','245da94c-bb7f-4606-97d0-14ebf5762d7e','','',NULL), +(5342,'ESPR_Prowler_Utility_Cargo_Doors_Housing','AttachedPart','UNDEFINED','cab5f94d-aa83-4325-8444-4f931a4503bf','','',NULL), +(5343,'Seat','SeatAccess','UNDEFINED','dc094829-df3f-4195-bac4-55198f98dabc','','',NULL), +(5344,'Bed','Usable','UNDEFINED','ce13d3fa-5413-4969-90eb-b230b3f2ab7f','','',NULL), +(5345,'Tuvic Outerwear Jacket Rust Society','Char_Clothing_Torso_1','UNDEFINED','10c4b93e-6d3d-45fe-86c8-30fda217a116','','','Carrying Capacity: 2K µSCU\n\nAlejo Brothers have seamlessly blended functionality and style with the Tuvic line of outerwear. These rugged jackets feature reinforced leather padding to offer additional protection and support while still maintaining a modern aesthetic.\n\nWomen\'s sizes currently out of stock.'), +(5346,'SHIELDS','ShieldController','UNDEFINED','fb4a011a-5abd-4c40-b102-8da3c414057b','','',NULL), +(5347,'Weapon_Rack_1_KSAR_Shotgun_Energy_01_Common_001','Usable','UNDEFINED','421ff490-d05c-4e24-bf27-32ae66a3376b','','',NULL), +(5348,'PAB-1 Legs Dark Green','Armor','Legs','5e9b758a-6189-4190-ba21-9e8fd258f3e7','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(5349,'Caterpillar Foundation Fest Livery','Paints','UNDEFINED','70eb9080-5020-4db4-9e5b-2e4992bc553d','','','Foundation Festival is an opportunity for Citizens and Civilians to come together and strengthen the foundation of our community. Show your commitment to a better universe with this custom livery.'), +(5350,'Turret','TurretBase','MannedTurret','4e806301-380d-41c1-8147-27ec38f460b3','','',NULL), +(5351,'sc_nvy_deckcrew_nogoggles_helmet_01_01_04','Char_Clothing_Hat','UNDEFINED','0fa5c024-2f51-4e1c-8c4f-572a2709a017','','',NULL), +(5352,'Crate_Helmet_Lootable','Usable','UNDEFINED','156b13c6-cea3-415e-bddf-b68f6709579f','','',NULL), +(5353,'Elevator Control','Elevator','UNDEFINED','948b3e1d-97a3-468a-96f2-e1a25dba28ed','','',NULL), +(5354,'Seat','SeatAccess','UNDEFINED','94eb9d19-1cc2-467f-8e14-4b84c54c91d8','','',NULL), +(5355,'Access','SeatAccess','UNDEFINED','09b3a66a-6ccf-4c80-b750-2f82d5b34b3b','','',NULL), +(5356,'Revenant Tree Pollen','Cargo','Cargo','cfebb848-bc72-4142-8df8-1d459a3e5c81','','',NULL), +(5357,'M50 Polar Livery','Paints','UNDEFINED','af593aa3-3ef6-4406-b40e-819dbe75a241','','','Modify your M50 with this white and grey livery specifically designed for the 2950 IAE event on microTech.'), +(5358,'Flight Blade','FlightController','UNDEFINED','b4fcd688-2d73-476d-9577-92705fe6754a','','',NULL), +(5359,'Lynx Core Yellow','Armor','Torso','002dc8a3-2aa4-4717-a077-4db7f29be8bc','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(5360,'display_ship_components_03x0075x0275_a_power','ShopDisplay','UNDEFINED','9c4c932c-09f2-4cd6-94ae-cff426669e1d','','',NULL), +(5361,'Personal Storage','Cargo','UNDEFINED','7e649368-71e0-44dc-aac6-b9c8609127ee','','',NULL), +(5362,'table_booth_4_seat_restaurant_ushape','Usable','UNDEFINED','497e68e6-74a0-4928-b209-52e8db0e138b','','',NULL), +(5363,'AEGS_Sabre_Peregrine_Thruster_Mav_Joint_01','ManneuverThruster','Light','187f501b-8483-4309-853f-ceed286b512d','','',NULL), +(5364,'food_ration_pack_c','Misc','UNDEFINED','0330a97e-0f96-44b5-84cf-401f7bac90f5','','',NULL), +(5365,'CNOU_Mustang_Beta_Thruster_Retro','ManneuverThruster','FixedThruster','f7fe12d1-ab69-4cf3-a373-00348728a60f','','',NULL), +(5366,'Venture Undersuit Grey/White','Armor','Undersuit','3daf3c03-cf13-4dd1-83f9-3d56155110b6','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(5367,'Weapon_Rack_1_Volt_SMG_Common_001','Usable','UNDEFINED','6f0064d4-7df2-477d-b20e-cc7bf02734f4','','',NULL), +(5368,'H_Dashboard_Projector_HUD_MISC_Hull_A','Display','UNDEFINED','d63cda1a-ce3e-42a6-b24c-6b7a18fd4934','','',NULL), +(5369,'Ambrus Suit','Char_Clothing_Torso_1','UNDEFINED','bcb4b6cc-a6fa-47e2-936e-8e3cb4cc1fc7','','','MuyMuy\'s Ambrus suit was expertly crafted by artisans on Saisei from natural brocade silk and worsted ma\'xy.un wool. Featuring bold coloration and a relaxed fit, it lets the wearer maintain comfort without sacrificing style.'), +(5370,'Carryable_1H_CY_tool_manual_socket_1_h','Misc','UNDEFINED','6ac70db4-5260-4749-83cb-d765f890d90d','','',NULL), +(5371,'Beacon Undersuit White','Armor','Undersuit','f9b26600-5b8f-47dd-be2e-9319c518bdd4','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRSI\'s Beacon undersuit is a general use utility designed to provide total protection against environments and vacuum. Built out of a durable but flexible polymers, the Beacon provides a wide freedom of motion for a variety of body types.'), +(5372,'DoorPanelScreen_Col_001','Misc','UNDEFINED','6d0591a9-8f26-4d5b-9916-f33a7f98394c','','',NULL), +(5373,'ARMR_ANVL_Hawk','Armor','Medium','8ff61bc9-33dc-4fd7-95d4-17390a52c702','','',NULL), +(5374,'Valakkar Fang (Adult)','Misc','Harvestable','80caa9bb-b375-40ce-b218-34b0fd63cf87','','','The valakkar continually sheds its teeth throughout its lifetime. As the animal burrows through the sand and catches prey, its teeth are frequently damaged. Once a new tooth finishes forming, it severs the connective tissue that was holding the old tooth in place, causing it to break off and fall to the ground. The fangs of the valakkar can also be extracted from the animal\'s mouth after its death. Collectors seek out the valakkar fangs for use in crafting various luxury items.'), +(5375,'Vanguard Solar Winds Livery','Paints','UNDEFINED','5b4e5231-1e81-4914-b096-a0c1861034d6','','','Fly in style with the Solar Winds livery that gives the Vanguard a metallic silver finish with maroon highlights.'), +(5376,'Armor_Crate_CZ_Horizon_M_002','Usable','UNDEFINED','24eca4f3-e46e-4d95-b265-8f1159b3c6de','','',NULL), +(5377,'POWR_PyroOutpost','PowerPlant','Power','f330457d-df9b-4421-a522-45b407a735a7','','',NULL), +(5378,'Oxhorn Service Sweater InterSec','Char_Clothing_Torso_0','UNDEFINED','7a2b3ce7-6daa-44d7-9410-b0265c1371ab','','','A favored piece by many serving aboard drafty starships, this military-green InterSec sweater is designed to provide comfort, insulation, and instill a sense of professionalism. This version features InterSec Defense Solutions branding and is often worn by their employees and contractors.'), +(5379,'WowBlast Desperado Toy Pistol Blue','Weapon','Small','32c131f6-e2d2-4651-bc4f-ff2706c367d8','','','Manufacturer: Sakura Sun\nItem Type: Toy Pistol\nClass: Foam Dart\n\nMagazine Size: 10\nRate Of Fire: 450 rpm\nEffective Range: 35m\n\nMake friendly fire fun with the Sakura Sun WowBlast Desperado. Playfully fire foam darts at friends or fictitious foes with these ultra-colorful plastic toy pistols. Whether killing time at a landing zone or during a long-haul through the stars, the WowBlast toy line provides lighthearted excitement and entertainment for the entire family. The Desperado toy pistol is available in several vibrant colors, each featuring a unique sound effect!'), +(5380,'P-Series Fortuna Livery','Paints','UNDEFINED','051cd0df-2d8f-4b88-816f-6064a58c64e9','','','Make luck your co-pilot. Boldly set your sights on the stars and adventure forth in style with the Fortuna livery. This Stella Fortuna themed paint scheme for the Archimedes and Merlin is primarily green with gray accents.'), +(5381,'Markanda Undersuit Silt (Refurbished)','Armor','Undersuit','f2601857-f93d-4c98-a61a-90506a998ca4','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nBuilt for adventure but comfortable enough for everyday, the Markanda undersuit has become beloved by explorers. A unique patchwork design creates a flexible yet resilient undersuit, while an odor resistant SureSoft inner lining will keep you from wanting to take it off. This particular undersuit has been repaired for extended use.'), +(5382,'Molina Mold Samples','Cargo','Cargo','1388b62d-d96f-4d29-81b1-bc227512c39b','','','Samples of the deadly Molina Mold securely sealed in biohazard containers to ensure its toxic fungal spores can\'t get airborne.'), +(5383,'Kino Shoes Imperial','Char_Clothing_Feet','UNDEFINED','80572af7-bdec-43a7-82f6-d0f545fe1f7a','','','These two-tone slip-on shoes are comfortable enough for casual wear, but stylish enough for the workplace.'), +(5384,'Utility Grav-Cart','Cargo','Small','c0d58072-8a49-4482-b416-f735ae58b215','','','Thanks to GravLev, this utility hand truck makes carting heavy loads much easier.'), +(5385,'Carafi Noodles','Food','Tin','81af2e1b-7776-4142-bed4-be9c8c3789ce','','','NDR: 35\nEffects: Fatiguing, Hypometabolic\n\nThick starch noodles tossed with oil and pieces of carafi, an flavorless jelly, for extra nutrition.'), +(5386,'Quantum Fuel','Cargo','Cargo','292304c5-cbcd-4287-ac1b-9c1f2e155a86','','',NULL), +(5387,'RSI_Zeus_Mohawk','AttachedPart','UNDEFINED','77b3e322-7bb9-451c-bb37-86ebf1dc1366','','',NULL), +(5388,'Osoian Hides','Cargo','Cargo','1cead7d0-0b77-44b2-9bcb-2e1b174bc44b','','',NULL), +(5389,'ANVL_Hornet_F7A_Mk1_Thruster_Mav_1','ManneuverThruster','JointThruster','04581e53-910d-4a57-91a0-222abeab7356','','',NULL), +(5390,'Door Control','Door','UNDEFINED','efa4864f-89c1-4aa2-a671-6d1f9920374c','','',NULL), +(5391,'Seat','SeatAccess','UNDEFINED','a26f030c-cf6b-4e6a-9030-3e334d607681','','',NULL), +(5392,'DockingTube_Fuel_Ports_MISC_Fortune','DockingCollar','UNDEFINED','95c8f02a-7f62-47f0-827c-d346c45eff4a','','',NULL), +(5393,'FS-9 \"Evergreen\" LMG','Weapon','Medium','f0958f10-7c67-4d44-abc4-fdda2959d42f','','','Manufacturer: Behring\nItem Type: LMG\nClass: Ballistic\n\nMagazine Size: 75\nRate Of Fire: 800 rpm\nEffective Range: 40 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S3)\n\nBehring designed the FS-9 to be an overwhelming battlefield force. This light machine gun features a full auto mode that makes it ideal for laying down covering fire or holding back advancing enemies. The FS-9 is also acclaimed for its ability to maintain accuracy while unleashing sustained fire. The Evergreen edition embraces the Luminalia spirit by using a tradition holiday color with its vibrant green tint.'), +(5394,'Savrilium','Cargo','Cargo','fae442fb-a321-4def-b27e-f6a7425ba317','','',NULL), +(5395,'Prism \"Firesteel\" Laser Shotgun','Weapon','Medium','bc328b41-ebc6-4d85-aba1-9e04cb752fa7','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Shotgun\nClass: Energy (Laser)\n \nBattery Size: 20\nRate of Fire: 200 - 450 rpm\nEffective Range: 10m\n \nAttachments: Optics (S2), Underbarrel (S2)\n \nFiring powerful shortrange bursts of energy, engineers at Verified Offworld Laser Technologies have developed the Prism laser shotgun so that as the weapon\'s heat-levels rise, the pellets begin fusing together into slug-like projectiles that inflict higher damage on targets. The Firesteel Edition consists of a grey base color with red highlights.'), +(5396,'Borase (Ore)','Cargo','Cargo','6d7833d1-86a3-49b6-8ec0-39342380fa4a','','',NULL), +(5397,'Weapon Rack','Usable','UNDEFINED','9201e3e5-af5a-43c5-a6bd-890aca466116','','',NULL), +(5398,'Remote Turret','Turret','GunTurret','8105d568-9874-49f2-8915-dd41215a3e36','','','Remote Turret'), +(5399,'RSI_Aurora_Intake_Top','AttachedPart','UNDEFINED','1d5f5f79-2dcc-4f3b-bea1-5b7409ceebc4','','',NULL), +(5400,'CargoBox_050x050x050_Metal_Stacked_2','Cargo','Cargo','28b8f641-ae00-44b2-a2e2-247c06d7b2a5','','',NULL), +(5401,'Workzone_Floor','Usable','UNDEFINED','af0ebc64-9e71-4d51-8d1e-d2814855d7c7','','',NULL), +(5402,'Personal Storage','Cargo','UNDEFINED','7f417b7e-8367-4200-9156-2b7efa7bc8b5','','',NULL), +(5403,'ParaMed \"Amalgam\" Medical Device','Weapon','Small','1ebc94de-c03d-4eb7-bbd1-980348ee2d6d','','','Manufacturer: CureLife\nItem Type: Medical Device\n\nThe ParaMed from CureLife is a professional-grade emergency medical device designed to stabilize patients suffering from possible life-threatening injuries. Offering extremely accurate diagnostics and dosing, the ParaMed can treat more patients and offer longer relief with less risk of overdose. The \"Amalgam\" edition features a sleek grey color.'), +(5404,'Seat','Usable','UNDEFINED','c45ffe55-8949-4b95-b34f-b9033004e1d0','','',NULL), +(5405,'ForceFlex Undersuit Black/Blue','Armor','Undersuit','d8945c09-af0e-4901-94f6-7fc1c6612cfe','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nVirgil\'s ForceFlex is the next generation in undersuit technology. Rated for combat as well as industrial work, you can rest assured that the comboweave will keep you protected in whatever situation you put it through.'), +(5406,'Lindinium','Cargo','Cargo','9c66c622-b5e0-4d21-bc3a-89714ba95d99','','',NULL), +(5407,'Cordimon Jacket','Char_Clothing_Torso_1','UNDEFINED','828bc5b0-222a-4e09-891e-f83a7c793b6b','','',NULL), +(5408,'Door','Door','UNDEFINED','9288c70c-cfdb-4e2e-8ac7-c4103897d06d','','',NULL), +(5409,'Vehicle_Screen_MFD_Holographic_MISC_Starlancer_T','Display','UNDEFINED','9362ae5e-b22a-443f-ba2c-8f94d286c0e4','','',NULL), +(5410,'ARMR_ORIG_85X','Armor','Medium','544bc411-3fc2-4239-8de1-673c8416d77b','','',NULL), +(5411,'Strata Helmet Neptune','Armor','Helmet','60c6e3ab-c510-4eaf-87a4-93d1b10c6a89','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design features high quality materials and a next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Neptune edition is light blue with orange and black highlights.'), +(5412,'Construction Salvage','Cargo','Cargo','736b9249-db4c-4f4e-90ee-575c26d3d721','','','Can be processed at refineries into Construction Material.'), +(5413,'Restored Pants Green','Char_Clothing_Legs','UNDEFINED','d205448c-45cd-4d71-a2bf-c303d94562bf','','','Carrying Capacity: 1K µSCU\n\nThese pants may have seen better days, but they\'ve got a lot of life left in them yet. Years of use have made them more comfortable than the day they were purchased.'), +(5414,'Hull C Poster','Misc','Utility','f2a12a13-1308-4fb8-99b5-82166fd1b2f6','','','Honor an industrial workhorse with this unique and visually stunning poster of the MISC Hull C. Featuring the ship\'s silhouette set against a colorful swirling spacescape, the poster highlights the Hull C\'s iconic design by having its spindle extended.'), +(5415,'DRAK_Vulture_Component_Gravity','Player','UNDEFINED','fd3761dd-2e1d-4416-96c9-b76fa7c7b450','','',NULL), +(5416,'Door Control','Door','UNDEFINED','75707891-2128-4903-9d53-fc74c4bae1b5','','',NULL), +(5417,'Maze','Cargo','Cargo','2e41b1d1-57b6-4803-bd2d-d5ae0acc6aed','','',NULL), +(5418,'Lynx Arms Frostline','Armor','Arms','f15c609c-3904-4d72-97ba-b89b34363316','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(5419,'Teddy Bear','Misc','UNDEFINED','c23d28e6-ab37-49e8-b281-22e3147070c4','','',NULL), +(5420,'Neograph','Cargo','Cargo','688732e6-69f9-48f6-90a0-afcb320859e6','','',NULL), +(5421,'TRGT. STATUS','Seat','UNDEFINED','9497590f-1bec-4d5b-9084-1860cefc5de0','','',NULL), +(5422,'Seat','SeatAccess','UNDEFINED','81c86392-605b-49a4-b46b-830ffa736e69','','',NULL), +(5423,'ANVL_Pisces_CargoGrid','CargoGrid','UNDEFINED','1a3a5169-3b90-46bc-b18f-7aae3ecf05ae','','',NULL), +(5424,'ADP-mk4 Helmet Red Alert','Armor','Helmet','8fd7cb44-f692-499e-9769-77f40e916bd2','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhen there\'s a difficult job at hand, you want to ensure that you can see it through to the end. Clark Defense Systems\' ADP-mk4 heavy armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers.'), +(5425,'TrueDef-Pro Arms (Modified)','Armor','Arms','0e0e95aa-f319-443b-aa88-00c455e28de1','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThis version of Virgil\'s TrueDef-Pro arms has been modified from its original form. Virgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(5426,'Astatine','Cargo','Cargo','cf648366-8623-44c9-baa8-1b884da52ea8','','',NULL), +(5427,'H_Dashboard_Projector_HUD_ARGO_Moth','Display','UNDEFINED','08655936-641c-4f38-8bef-1ceb2dfbe148','','',NULL), +(5428,'Door Control','Door','UNDEFINED','0efc65b3-6a5f-4633-87f7-9178e3eab87a','','',NULL), +(5429,'Weapon_Rack_1_BEHR_Rifle_1_Common_001','Usable','UNDEFINED','8e476f40-ab09-4f58-a035-35bfe97ee4ab','','',NULL), +(5430,'Apollo Tier 2 Module Left','Module','UNDEFINED','481205b3-941e-f870-b016-57b8f9e63b88','','','This module contains 2x Tier 2 medical beds.'), +(5431,'ARGO_MOTH_Thruster_VTOL_Rear','MainThruster','FixedThruster','3e40153e-a873-402c-b7de-f60ff20d37e8','','',NULL), +(5432,'JDRV_TARS_S04_C_Explorer','JumpDrive','UNDEFINED','ea607138-635a-4d31-9be6-9ec651b8260c','','',NULL), +(5433,'TCS-4 Undersuit','Armor','Undersuit','d156f2cb-2391-4d0b-8fdd-7c6ac0725fa8','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThis comprehensive Tactical Combat Suit provides a complete sealed suit against vacuum, free range of motion, and interfaces seamlessly with compatible armor systems.'), +(5434,'Venture Core Olive','Armor','Torso','79348649-c263-4966-9edd-5109f3b7261d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(5435,'Riccite','Cargo','Cargo','ceeaf521-bc9f-456f-8953-d8b5505ac267','','',NULL), +(5436,'Strata Backpack Amber','Armor','Backpack','0d08ab87-18e7-41e8-a8a7-3d31852a2b5b','','','Item Type: Medium Backpack\nCarrying Capacity: 127.5K µSCU\nCore Compatibility: Medium & Heavy\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres.'), +(5437,'Access','SeatAccess','UNDEFINED','af6bc606-8233-4104-90a8-0b76e11824e2','','',NULL), +(5438,'ForceFlex Undersuit Black/Grey/Tan','Armor','Undersuit','745f5b8b-0171-46af-b22b-fede8d604ba7','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nVirgil\'s ForceFlex is the next generation in undersuit technology. Rated for combat as well as industrial work, you can rest assured that the comboweave will keep you protected in whatever situation you put it through.'), +(5439,'Sledge I Mass Driver Cannon','Weapon','Gun','43269af0-736e-4232-8cfe-271367b28ee1','','','Manufacturer: Klaus & Werner\nItem Type: Mass Driver Cannon\nSize: 1\n\nTake down distant targets with the Sledge I Mass Driver Cannon. Klaus & Werner utilized railgun technology to accurately fire high damage ballistic projectiles over long distances. Be sure to make every shot count though, as the weapon sacrifices rate of fire for raw, devastating damage.'), +(5440,'Revenant Pod','Cargo','Cargo','be8abb65-ce67-4879-8cdd-c0e43bae48e5','','',NULL), +(5441,'Altruciatoxin','Cargo','Cargo','f793a11e-cd2a-4d89-a935-87017f2e9cb4','','',NULL), +(5442,'Vehicle_Screen_MFD_Holographic_MISC_Starlancer_R','Display','UNDEFINED','b63b4b41-b64f-4389-953c-8adc7b7c5b63','','',NULL), +(5443,'Internal Tank','FuelTank','Fuel','246962c4-e76e-4c28-9521-492998859677','','',NULL), +(5444,'Railing_Straight_6m_Lowtech_Open_A','Usable','UNDEFINED','e164bc1a-3c4e-4340-8f28-2f5d30e19701','','',NULL), +(5445,'ORIG_135c_Thruster_Mav_Left','ManneuverThruster','FixedThruster','0ca76f85-c47c-4303-a0de-160b8b196c7d','','',NULL), +(5446,'Overlord Arms Supernova','Armor','Arms','20001b62-0d2f-4045-a61d-5d38de1038f8','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.'), +(5447,'Door Control','Door','UNDEFINED','d228a22e-de33-494f-88af-8e6c74b6372a','','',NULL), +(5448,'DRAK_Herald_Thruster_Mav_Fixed_Right','ManneuverThruster','FixedThruster','85c375af-7ebb-479c-a814-bde12b7ef373','','',NULL), +(5449,'Tuvois Jacket Purple','Char_Clothing_Torso_1','UNDEFINED','85534b59-220e-4a92-9c8e-77a23e81ecf2','','','Carrying Capacity: 1K µSCU\n\nCreated in collaboration with legendary designer Avon, OpalSky is proud to unveil the Tuvois, an open vest featuring stark, bold styling that\'s destined to make an impression. \n\nWomen\'s sizes currently out of stock.'), +(5450,'Hadanite','Cargo','Cargo','8b1d5d14-6bcc-40c7-828f-4808634d70f8','','',NULL), +(5451,'Hornet Timberline Livery','Paints','UNDEFINED','5cd90713-8e9f-4653-a966-e6c02840b02b','','','Customize your Hornet with the Timberline livery that\'s olive green with orange accents.'), +(5452,'Morozov-SH Core Spite','Armor','Torso','7fd805dd-e140-4ec7-ac35-967735104138','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12K µSCU\nBackpacks: All\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(5453,'AEGS_Javelin_CargoGrid_Hangar_Aux','CargoGrid','UNDEFINED','9e9a2ee7-a6ae-4911-bd04-4ad464908f15','','',NULL), +(5454,'The Butcher Helmet','Armor','Helmet','be61097a-d81e-4520-ab50-2039392a28d8','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nBe the reaper with this terrifying battle helmet molded after some kind of animal. We aren\'t a vet, it just looked cool. All we know is that it\'ll withstand some serious punishment and look bad ass doing it. Visor is AR crosshair compatible.'), +(5455,'PAB-1 Arms Red','Armor','Arms','1da24aff-2be4-4374-a0d0-666323ef710c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(5456,'SHIELDS','ShieldController','UNDEFINED','fc63cbaf-d419-40c7-bf7e-4d2edcbbb867','','',NULL), +(5457,'Arrester III Missile','Missile','Missile','dee6efca-71ef-438c-b762-624f9ce649f3','','','Manufacturer: Firestorm Kinetics\nTracking Signal: Cross Section\nSize: 3\n\nUsing cross section targeting to hunt for its prey, the Firestorm Arrester proximity missile makes quick work of enemies caught in the crosshairs.'), +(5458,'ORIG_M50_Thruster_Mav_Fixed_Lateral','ManneuverThruster','FixedThruster','edc76e6e-3e56-41ae-a332-2bb976e6d345','','',NULL), +(5459,'Seat','Usable','UNDEFINED','77f64a6c-d779-4b47-9e58-5e9cb53e4bca','','',NULL), +(5460,'RSI Polaris Ship Armor','Armor','Medium','ebe4fcc2-e0ff-4662-9c85-ac85f7dd78f1','','','RSI Polaris Ship Armor'), +(5461,'ADP Core (Modified)','Armor','Torso','7c7c5413-cef8-46ac-ac72-bc625e9493cd','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nThis version of CDS\' ADP core has been modified from its original form. Revolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(5462,'MacFlex Core Violet','Armor','Torso','2fdc2c41-67cb-46d1-81fd-2c2ba8bda175','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(5463,'MRAI_Guardian_Thruster_Retro_MX','ManneuverThruster','Retro','48302a78-df7d-2fa6-9dd1-8017f032599e','','',NULL), +(5464,'UI_EnvironmentScreen_Phoenix_InteractionPanel','StatusScreen','AirlockPart','314b8cdc-3bd9-4964-8c17-086bf2fbcc32','','',NULL), +(5465,'K7 Pants Seagreen','Char_Clothing_Legs','UNDEFINED','c7db14ad-37c5-4745-a253-c4f577cedbdf','','','Carrying Capacity: 3K µSCU\n\nDMC\'s K7 are an all-purpose cargo pants. Four easy access pockets provide extra storage while the triple-stitched polymer weave fabric is designed to withstand all kinds of weather conditions.'), +(5466,'Giotto Jacket Dark Blue','Char_Clothing_Torso_1','UNDEFINED','f2a825ae-b359-4eae-98ea-5bea7f309395','','','Carrying Capacity: 1K µSCU\n\nFiore elevates the typical suit jacket with the Giotto. Subtle and stylish flourishes include light lines running down the left lapel and a strip of accent fabric along the arm seams that connect across the back of the jacket. The end result is an elegant and inspired addition to any wardrobe.'), +(5467,'Hui’a Puzzle','Misc','UNDEFINED','9c668f3e-f1d5-4d1d-ad93-2d947102a782','','','Half toy and half meditation device, this small trinket showcases the Xi’an’s mastery of gravity and is meant to inspire the user to contemplate the forces that bind us together.'), +(5468,'Odyssey','QuantumDrive','UNDEFINED','16ba45f1-bd70-4b58-96d6-0ef822f59803','','','Item Type: Quantum Drive\nManufacturer: Tarsus \nSize: 2\nGrade: C\nClass: Civilian\n\nAdventure amidst the stars awaits with the Odyssey quantum drive. Careful and continued refinement from the Tarsus team has kept this component on the cutting edge for centuries.'), +(5469,'Seat','Usable','UNDEFINED','eb444e13-cae6-45d5-b814-a4a585d9f98c','','',NULL), +(5470,'Door_Ship_Sensor_Proximity_1x1x2','Sensor','DoorPart','9e943ec7-0043-4556-94e7-4743e44cfd4b','','',NULL), +(5471,'Carryable_TBO_FL_24SCU_Commodity_Organic','Cargo','Cargo','3c66ed82-ce0b-49b2-866f-d315765b42a7','','',NULL), +(5472,'Col_A_Airlock_Tube_Large','Usable','UNDEFINED','04ce6eba-fdd5-4517-bd1b-b6dc0c22b1fb','','',NULL), +(5473,'PAB-1 Arms Greycat Edition','Armor','Arms','5e0efbc9-a766-4f8f-ba7d-ac2fe52b619c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile. The Greycat Edition was made specifically for the company.'), +(5474,'Seat','Usable','UNDEFINED','9e11ab22-6b05-416e-ba09-5761654eb8a7','','',NULL), +(5475,'AEGS_Redeemer_Thruster_Nutcracker','MainThruster','FixedThruster','170fc44c-1290-4e0e-947f-716861d1a68c','','',NULL), +(5476,'Seat','Usable','UNDEFINED','d97df6b1-58f3-4b23-a6b1-121e9fe335d6','','',NULL), +(5477,'Dymantium','Cargo','Cargo','a22c2f2a-a6ca-4a65-8007-1af5b69eae68','','',NULL), +(5478,'ArmorStand_CLDA_hazmat_Base','Misc','UNDEFINED','8a67f709-7663-4826-b779-8a3a458c1213','','',NULL), +(5479,'Paint_Carrack_Default','Paints','UNDEFINED','7bc96c43-4dc4-4b87-ae22-f0b32a64ecc9','','',NULL), +(5480,'Paint_300_Seat_Black','Misc','UNDEFINED','0782c182-cfef-4a02-8050-8ec5f41c6b69','','',NULL), +(5481,'Prism \"Crusader\" Laser Shotgun','Weapon','Medium','17417770-00b7-4de9-b693-dd266c4f6fc5','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Shotgun\nClass: Energy (Laser)\n\nBattery Size: 10\nRate of Fire: 120 rpm\nEffective Range: 10m\n\nAttachments: Barrel (S3), Optics (S1), Underbarrel (S2)\n\nFiring powerful shortrange bursts of energy, engineers at Verified Offworld Laser Technologies have developed the Prism laser shotgun so that as the weapon\'s heat-levels rise, the pellets begin fusing together into slug-like projectiles that inflict higher damage on targets. This special edition features Crusader branding.'), +(5482,'Seat','Usable','UNDEFINED','44c1e986-b452-bdaf-7190-33c6cfed2fbd','','',NULL), +(5483,'Table_1_Seat_RSI_Polaris_XO','Usable','UNDEFINED','8a458835-a582-4336-8648-63874476afdb','','',NULL), +(5484,'DRAK_Cutlass_Blue_Thruster_Main','MainThruster','FixedThruster','ba38063a-50b3-4170-b768-e197c52cff22','','',NULL), +(5485,'ControlPanel_Screen_LightControl_Physical','ControlPanel','DoorPart','914a76d1-3ad3-4f37-8a9f-694bb27ee982','','',NULL), +(5486,'Door Control','ControlPanel','DoorPart','eecee216-a155-4790-a985-b6906e76fd72','','',NULL), +(5487,'ADP Legs Orange','Armor','Legs','21e4238f-5563-4c25-9014-b0e64e3697b0','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(5488,'Heart of the Woods','Cargo','Cargo','4dcc00b6-4116-4e5c-ab43-fbde34eb4b32','','',NULL), +(5489,'display_gadgets_hacking_tools_3Ports','ShopDisplay','UNDEFINED','44cde507-3b0f-43a0-bc8b-d38b0f39e127','','',NULL), +(5490,'FocalWave-20 (2x Holographic)','WeaponAttachment','IronSight','bfa300f0-cd7c-4ba4-b786-b3da26932622','','','Manufacturer: VOLT\nType: Holographic\nAttachment Point: Optic\nMagnification: 2x\nAim Time: +8%\nParallax: Low\nSize: 1\n\nProviding increased magnification than its previous counterpart, the FocalWave-20 features a down-the-sight visual that tracks the heat and charge of your weapon.'), +(5491,'CRUS_Starlifter_Door_Decal_Habitation','Decal','DoorPart','f101a1f2-5243-402c-922b-1a1893131c33','','',NULL), +(5492,'DRAK_Cutter_Rambler_Thruster_Main_Right','MainThruster','FixedThruster','e2585293-4953-4da7-a2b4-ab8538ca8f67','','',NULL), +(5493,'ARGO_MPUV_Thruster_Aux_Bottom','ManneuverThruster','JointThruster','58bc7ce5-de69-404a-be7c-b2153b976053','','',NULL), +(5494,'Door Control','Door','UNDEFINED','e3c6c217-d42c-4ddf-92b1-694604ef4903','','',NULL), +(5495,'Access','SeatAccess','UNDEFINED','70fb6f44-838e-46a9-a803-47f420f4f88b','','',NULL), +(5496,'Seat','SeatAccess','UNDEFINED','53e95872-ce6b-46be-bbfe-b857ab399d1a','','',NULL), +(5497,'Frontier 11 Classic Onyx','Char_Clothing_Legs','UNDEFINED','c00d68ac-b124-474d-aeac-9f5892d458d9','','','Carrying Capacity: 2k µSCU\n\nConstructed with large pockets and made from durable synth-cloth, the Frontier 11 Classic pants from DMC are a rugged garment designed to handle whatever life might throw your way.'), +(5498,'stand_shop_large_Cooler','ShopDisplay','UNDEFINED','ffdd072a-e70a-4107-abde-42968dfea35b','','',NULL), +(5499,'Davin Work Gloves White','Char_Clothing_Hands','UNDEFINED','30c53751-2056-49c8-aa8c-2684809e530a','','','Field-tested for over fifty years, you can find Davin work gloves at numerous sites and ships around the Empire. Stegman\'s rugged construction and comfort lining have made them a customer favorite.'), +(5500,'Door Control','DockingAnimator','UNDEFINED','540c0eff-3ad3-459d-815f-4fda56a0aefc','','',NULL), +(5501,'DRAK_Cutlass_Steel_Thruster_Maneuver_Lateral','ManneuverThruster','JointThruster','f58eafcb-827f-4536-b6bc-e09aea62cbf1','','',NULL), +(5502,'RSI_Salvation_Thruster_Retro_Top_Left','ManneuverThruster','Retro','f5a11feb-6eb8-4c52-b6d1-b50cca855770','','',NULL), +(5503,'Joker Defcon - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','9ce5d9da-640f-430d-8292-80b48591fc80','','','Joker Defcon Flares Ammo'), +(5504,'Access','SeatAccess','UNDEFINED','21518838-eacb-4315-b769-dd8fba6ce4d8','','',NULL), +(5505,'Door Control','Door','UNDEFINED','47eb8d5f-dafc-4ab5-95c1-310e31fcc8ae','','',NULL), +(5506,'Get Up Coffee (Black)','Drink','Can','be44e4bc-39e6-4bd1-a422-dc7d439bd9b1','','','HEI: 15\nEffects: Dehydrating, Cognitive Boosting\n\nGet Up Coffee is roasted with care to ensure a smooth blend of rich coffee flavor brewed to perfection. Served black and unsweetened, enjoy coffee in its purest expression.'), +(5507,'Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','7f969073-af54-4ee7-a722-5dffd1c1ff18','','','Live in comfort with MuyMuy\'s Davlos line of cotton-synthetic shirts. The durable, yet soft, fabric contains a patented SweatGuard technology that not only whisks away perspiration but helps prevent stains.'), +(5508,'Toughlife Boots Sienna','Char_Clothing_Feet','UNDEFINED','925e3e44-2c5e-4f77-a1b1-4e470018ca65','','','Grindstone\'s done it again. The Toughlife is an all-purpose workboot designed to provide comfort, durability and quality. Featuring a reinforced composite toe and lasercut sole to maximize traction on all surfaces, Toughlife is sure to be your dependable boot, day in and day out.'), +(5509,'TRGT. STATUS','Seat','UNDEFINED','b149dd6b-207f-4e5b-8130-200a53133b91','','',NULL), +(5510,'Overlord Legs Gilded','Armor','Legs','ca563051-862b-4452-80fc-2adfcf674eec','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.\n\nThe Gilded edition is an opulent gold with worn edges and black joints.'), +(5511,'Artimex Legs Canuto','Armor','Legs','df77730e-1d7e-45ee-9364-3f86a38d7008','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.'), +(5512,'Balor HCH Helmet Hurston Edition','Armor','Helmet','d7806607-bf24-4de4-b452-d87abd8e9219','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. The Hurston Edition was made specifically for the company\'s security services. Visor is AR crosshair compatible.'), +(5513,'LifeCure Medsticks','Cargo','Cargo','8355ea3e-879b-49d6-a6ef-8a593970b6ab','','',NULL), +(5514,'Personal Storage','Cargo','UNDEFINED','2a4dd781-21f0-4dff-8d9d-05c8183f808a','','',NULL), +(5515,'Cliffback T-Shirt Aqua','Char_Clothing_Torso_0','UNDEFINED','eb5db470-1763-4297-80f4-0b48d1654cca','','','Alejo Brothers\' classic loop tee with a spatter pattern.'), +(5516,'Ardent Boots Sienna','Char_Clothing_Feet','UNDEFINED','443138f9-b7b7-4836-86b1-ad1267506a3e','','','Who says NorthStar can\'t keep it pro? The Ardent boot features a molded rubber sole and all-weather construction to withstand a constant battery from the elements.\n\nWomen\'s sizes currently out of stock.'), +(5517,'MSD-322 Missile Rack','MissileLauncher','MissileRack','6bea95f5-2898-434c-bffe-4b2b332d6440','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 3\nMissiles: 2xS2\n\nBehring’s MSD-322 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 3 hardpoint for the reliable and effective launch of two S2 missiles.'), +(5518,'Lynx Arms Ferrum','Armor','Arms','1db80d63-12a7-4940-8705-8e0945ebcacb','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(5519,'ORIG_85X_Thruster_Mav_Fixed_03_Left','ManneuverThruster','FixedThruster','b3c41e09-45b2-4d6b-ac6b-0ad48aea0c1c','','',NULL), +(5520,'RCMBNT-XTL-1','InventoryContainer','Cargo','817c395c-22a3-4f08-89dc-0c17ca03112c','','','An imprint recombinant sample created from CTLST-XTL and REAGENT-01 as part of Dr. Logan Jorrit\'s Project Hyperion experiment.'), +(5521,'Utensil_Plate','Misc','UNDEFINED','fe21af47-9a31-46cb-be7b-dbc7dec4dc7b','','',NULL), +(5522,'Internal Tank','QuantumFuelTank','QuantumFuel','b67b3a42-e7ed-4156-b914-5c9a49332a57','','',NULL), +(5523,'Manned Turret','TurretBase','MannedTurret','b898ac70-cfd3-44f1-a048-fe6acc06b546','','',NULL), +(5524,'Flight Blade','FlightController','UNDEFINED','3d21f7d5-a33d-48b6-b52b-2afe07a381ea','','',NULL), +(5525,'Personal Storage','Cargo','UNDEFINED','4e39eca4-38bc-42c1-8f93-2311af045371','','',NULL), +(5526,'Door_NoRoomConnector_DockingAnimator_RSI_Aurora_GS_FuelPort','DockingAnimator','UNDEFINED','97a7dd4f-352e-4e9e-8a0c-712b4634a31d','','',NULL), +(5527,'Artimex Legs Elysium','Armor','Legs','c17e3812-5939-4508-ae14-2f696520bbad','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.\n\nThe Elysium edition combines bright gold detailing of winged skulls with a navy blue.'), +(5528,'Dopple','Misc','Harvestable','74b44fe0-063d-44e1-a89b-98295945a544','','','A dissociative drug that creates a strong feeling of separation. People, places, and objects familiar to the user take on a distorted and unreal quality. Some users report a detachment from emotions. Doplencyethorphine is used in small dosages medically to help with extreme emotion issues and rage management problems. Recreational users take it for the effect of resetting the mundane and everyday into something new and different. Side effects include memory loss, panic attacks, paranoia, and psychotic episodes.'), +(5529,'Door','Door','UNDEFINED','1947e83f-5287-4cd7-a463-82063e51014b','','',NULL), +(5530,'PTV Agate Gray Livery','Paints','UNDEFINED','1aa886e1-8b79-4ce0-b403-d3dfbe5cc906','','','One of the most popular liveries on the Greycat, Agate Gray is a two-toned paint scheme that brings the buggy?s interior colors as accents on the exterior, unifying the Greycat into a single cohesive aesthetic.'), +(5531,'Door Control','Door','UNDEFINED','17d79d20-1858-405b-be14-a83cefc49564','','',NULL), +(5532,'puree_utensil_chunk_1_a','Food','Consumable','c7691861-5786-469c-a3d0-3708100e1982','','',NULL), +(5533,'AEGS_Sabre_Firebird_RADR_Display','Display','UNDEFINED','9551ba85-6242-49d6-a0a5-0cdda5b50059','','',NULL), +(5534,'RSI_Scorpius_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','ec301105-2592-473c-a2e6-c7d577821a3f','','',NULL), +(5535,'Lynx Arms Seagreen','Armor','Arms','c88b3131-7cad-4e90-a288-ca6be6b9328d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(5536,'Parasite V: Dark Birth Replica Helmet','Armor','Helmet','e33d093a-c1bf-4d60-96e8-7ecadff067a1','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nSeven years after the original vid shocked the empire, Parasite V: Dark Birth took terror to a new level. CC\'s Conversions celebrated the release of the latest installment by collaborating with the vid\'s creators on an official and fully functional replica helmet. A special sensor built into the parasite\'s eye allows you a clear view of the reactions to every appalling detail. Carefully designed to honor the original prop and withstand the real rigors of space travel, the helmet is a premiere replica that will turn you into a walking nightmare!'), +(5537,'Door Control','ControlPanel','DoorPart','4d80c8cd-e612-4335-9506-490cf4c88223','','',NULL), +(5538,'F1M-Fireshot','Suit','ThrusterPack','ad769f63-7f73-4fbc-8214-4afed8a9aea9','','','Designed to attach to most medium combat armor sets, the Fireshot is an EVA upgrade system that provides a little more thrust and control than usual. The understated components are designed to maintain your profile, so you don\'t sacrifice mobility or combat effectiveness.'), +(5539,'TRGT. STATUS','Seat','UNDEFINED','83995714-9255-4666-9bc8-8b5ee3bb5f07','','',NULL), +(5540,'TrueDef-Pro Legs Silver/Gold/Grey','Armor','Legs','a26b114d-646e-43c3-af7f-4b0b2bf6d2b5','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.\"'), +(5541,'Neon','Cargo','Small','45b0953d-169b-4a78-b923-dba67ec5fe69','','','A psychoactive designer drug known for increased energy, euphoria, and mild hallucinations (particularly how the body processes light). Due to its chemical complexity, it\'s much more expensive than other street drugs, but is very popular in club culture.'), +(5542,'Quartz (Raw)','Cargo','Cargo','bea67b68-1ef9-4932-b596-7d632201eee2','','',NULL), +(5543,'Paint_135c','Paints','UNDEFINED','38fb8577-42a6-4b65-abe3-dda76d5dbdd0','','',NULL), +(5544,'RSI_Salvation_Thruster_Retro_Top_Right','ManneuverThruster','Retro','3e45ed09-2366-45ad-9b45-2381d5f97a34','','',NULL), +(5545,'Soap','Misc','UNDEFINED','8ffb7611-4cf7-4c7f-9cfe-934c470b550f','','',NULL), +(5546,'Exo-8 Helmet (Used)','Armor','Helmet','a71fec25-9894-484a-98e9-bf38aecff438','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -60 / 90 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing a large face shield and torches on each side, the Exo-8 helmet lets you keep your eyes on the prize. Gyson designers smartly integrated space-safe fabrics into the helmet, so it can provide the protection you deserve at a price that won\'t break the bank. \n\nThis used helmet has been certified space-safe but may contain cosmetic defects not seen on the standard model.'), +(5547,'Seat','Usable','UNDEFINED','3e68a401-64eb-4080-96eb-4386af9e8be3','','',NULL), +(5548,'Cutlass Cypress Livery','Paints','UNDEFINED','9007b138-dcab-43da-93f4-4fdaf6468d9e','','','The Cypress is a light green camo livery made for the Cutlass.'), +(5549,'GAMA_Syulen_Headlight','Misc','UNDEFINED','45278216-076a-45b1-9e99-673babc2ad8b','','',NULL), +(5550,'Archibald Jacket Smoke','Char_Clothing_Torso_1','UNDEFINED','43696e42-7d70-41e2-bc25-0d2f2478cccd','','','Carrying Capacity: 1K µSCU\n\nSimple, comfortable and understated. While most fashion designers avoid these terms, Escar Limited understands that sometimes you just want something that feels right. Based on the classic design from Centauri II, the Archibald is a simple, comfortable and understated light jacket made from a polyweave that doesn\'t restrict airflow.'), +(5551,'TruDef-Pro Legs Scorched','Armor','Legs','62862b4d-eb83-446f-846b-0142078238e6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.\"'), +(5552,'AEGS_Sabre_Peregrine_Thruster_Mav_Joint_02','ManneuverThruster','JointThruster','0864ad98-70fe-4a0e-8d9d-dbad8caec04d','','',NULL), +(5553,'food_ration_pack_b','Misc','UNDEFINED','527bd57a-845c-4122-b721-8037d299b9a4','','',NULL), +(5554,'Door_ChipReader_Level_1','Door','UNDEFINED','096ebd17-a1dd-46f4-9b67-deb217f23d7b','','',NULL), +(5555,'CRUS_Starlifter_Thruster_Main_Aux','MainThruster','FixedThruster','16ec0923-6843-46eb-8a2e-cab704181842','','',NULL), +(5556,'DRAK_Cutter_Thruster_Addon_Scout_Right','Misc','UNDEFINED','92887de4-ff47-413f-9ec7-1534111e26d0','','',NULL), +(5557,'Ramming Blade','MissileLauncher','MissileRack','1f535425-a24a-4c6f-9274-0534bfeda63e','','','Blade component that can be used for ramming.'), +(5558,'Carryable_1H_CY_weight_dumbbell_1_18kg_c','Misc','UNDEFINED','8f094a8a-a40b-4390-b631-e3a05f315430','','',NULL), +(5559,'MRAI_Guardian_Thruster_Main','MainThruster','JointThruster','2aa894a9-0ef9-4159-bc92-3b39bc187c99','','',NULL), +(5560,'Door Control','Door','UNDEFINED','f77f2317-3112-4629-af85-51b13aa46e44','','',NULL), +(5561,'un_box_plastic_3_food_a','Misc','UNDEFINED','35efa274-94a1-4760-86fa-61f869759fd7','','',NULL), +(5562,'VariPuck S5 Gimbal Mount','Turret','GunTurret','c7d90e05-0224-4ae6-9a59-ccaf421cfa90','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 5\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(5563,'Union Pants White','Char_Clothing_Legs','UNDEFINED','18b194ba-a8ab-4c00-aa79-65e5bea59ea3','','','Carrying Capacity: 0.5K µSCU\n\n987 delivers comfort, durability, and style with the Union pants. Designed with a special, next-gen blend of high-performance synthetic fabrics, these pants are enduringly fashionable in these modern times.'), +(5564,'Seat','SeatAccess','UNDEFINED','de85bf92-0b16-4716-a347-88c166137392','','',NULL), +(5565,'KLWE_MassDriver_FiringMechanism_S3','WeaponAttachment','FiringMechanism','eb5e4b66-2b7f-4d7d-a4ab-d3298a34c09d','','',NULL), +(5566,'Lynx Core Blue','Armor','Torso','ba712733-e052-4cca-8349-c5ec1c24659a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(5567,'Screen','Usable','UNDEFINED','7b23681a-8388-417c-94a6-c30e90e17d2e','','',NULL), +(5568,'Seat','Usable','UNDEFINED','67ad0048-e926-4fde-a33e-070499cc3071','','',NULL), +(5569,'FS-9 \"Finish Line\" LMG','Weapon','Medium','4ee95d7b-4cbb-44a5-a03b-8e1698929f88','','','Manufacturer: Behring\nItem Type: LMG\nClass: Ballistic\n\nMagazine Size: 75\nRate Of Fire: 800 rpm\nEffective Range: 40 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S3)\n\nBehring designed the FS-9 to be an overwhelming battlefield force. This light machine gun features a full auto mode that makes it ideal for laying down covering fire or holding back advancing enemies. The FS-9 is also acclaimed for its ability to maintain accuracy while unleashing sustained fire. Updated with new yellow and grey coloring, this special Finish Line edition is an homage to starship racing.'), +(5570,'Anvil Void Ship Armor','Armor','Medium','17dce25c-f417-4f7f-bb5d-67895c4354f8','','','Anvil Void Ship Armor'), +(5571,'Venture Undersuit Black/Grey','Armor','Undersuit','825dbfd1-6316-4d36-97b2-5d733df97058','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(5572,'Stirling Exploration Suit Tungsten Edition','Armor','Undersuit','752dbb5f-e8b2-4dbb-82b5-3b3ef5b120e0','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nDesigned to withstand inhospitable environments, the Stirling Exploration Suit provides a base level of protection from environmental hazards including radiation. Combining Caldera\'s advanced insulation fabrics with sophisticated polymers, the Stirling is able to safeguard the wearer whilst minimizing disruption to movement. Additionally, a self-cleaning system automatically activates after radiation exposure to expunge dangerous excess down to nominal levels. The Tungsten Edition combines blues, grays, and silvers creating a metallic appearance.'), +(5573,'Door Control','Door','UNDEFINED','7ee117a1-5e69-40c7-b2dc-1ab8aa293249','','',NULL), +(5574,'Bantam Hat Orange','Char_Clothing_Hat','UNDEFINED','f180875b-484c-41be-a252-4c69432de0d9','','','The Bantam hat from 987 offers a large bill and cushioned banding for all-day comfort. This version features a white front with an orange back and bill.'), +(5575,'Pite','Char_Head_Piercings','UNDEFINED','369df013-2217-4d42-b9a2-983da692ba3a','','',NULL), +(5576,'Manned Turret','TurretBase','MannedTurret','b3cba11a-c683-4a89-bc01-1f21505638ec','','',NULL), +(5577,'Kino Shoes Twilight','Char_Clothing_Feet','UNDEFINED','908a6214-090d-457c-964e-24509cdf0ed0','','','These two-tone slip-on shoes are comfortable enough for casual wear, but stylish enough for the workplace.'), +(5578,'Remote Turret','Turret','GunTurret','209c444e-0b4f-46b4-9265-de6e1daa8fcf','','','Remote Turret'), +(5579,'FullStop','Shield','UNDEFINED','924e275a-d449-44f5-a8a8-6e0e93a9661e','','','Item Type: Shield Generator\nManufacturer: Gorgon Defender Industries\nSize: 2\nGrade: C\nClass: Military\n\nFeaturing proprietary recoil tech, the FullStop shield generator was built to better absorb attacks from a multitude of damage types.'), +(5580,'ORC-mkV Legs Yellow','Armor','Legs','f7cff000-a26b-4f5b-a8ae-14c94b2ce9e0','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(5581,'Weapon_Rack_ARGO_ATLS_IKTI','Usable','UNDEFINED','30f37405-de4b-41b2-8743-58564f256163','','',NULL), +(5582,'Venture Core White','Armor','Torso','aa7e72cc-25c3-47a7-912a-e01a445c7a4b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(5583,'AAT-34 Turret','Turret','MannedTurret','d7146136-c3b9-4fce-af94-e40e6283cdbc','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(5584,'Remote Turret','Turret','TopTurret','e0dfadbd-97e7-450a-8a5e-ec3df3452962','','','Multitask on the battlefield with this remote turret system. Featuring precise controls and a wide field of fire, the turret allows pilots to add combat support to their resume.'), +(5585,'DCP Armor Core Hunter Camo','Armor','Torso','f66babbd-4b85-451b-80ad-1688b895f04c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(5586,'Pite','Char_Head_Piercings','UNDEFINED','d211c973-580b-4399-b3af-6bc760c6eb95','','',NULL), +(5587,'DoorDefault','Door','UNDEFINED','790c3a1d-e42b-407e-be6c-b5cebc8d6a99','','',NULL), +(5588,'DockingTube_Fuel_Ports_VNCL_Stinger','DockingCollar','UNDEFINED','feabd335-3dd1-4e6e-a04f-2d96cee031b3','','',NULL), +(5589,'Chlorine','Cargo','Cargo','7ecb1b1a-548f-46f7-808a-ccf01e0db1d9','','',NULL), +(5590,'Remote Turret','Turret','GunTurret','1ab8e549-9737-4698-87eb-45753a5fbacb','','','Remote Turret'), +(5591,'CBH-3 Helmet Grey','Armor','Helmet','62ea6e32-bed9-4ce6-982c-d8a2a8ee328f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. Visor is AR crosshair compatible.'), +(5592,'Seat','Usable','UNDEFINED','3eb5682f-7e35-47e1-a10a-824d01145086','','',NULL), +(5593,'DRAK_Golem_Thruster_Mav_Fixed_Bottom','ManneuverThruster','FixedThruster','95db55f6-89ff-4f40-b9ee-1caaef7eeb73','','',NULL), +(5594,'Door_Ship_Sensor_Proximity_2x2x1_5','Sensor','DoorPart','482f26c9-0cb9-4f61-94ea-6e22bb207025','','',NULL), +(5595,'Seat','SeatAccess','UNDEFINED','e76adab3-f5bb-4beb-aadf-8ff249f6d236','','',NULL), +(5596,'Ponos Boots','Char_Clothing_Feet','UNDEFINED','c9e29740-b5cf-40d8-8e3c-90c8871daba8','','','Quite simply, R6 Pro\'s Ponos boots were built for backbreaking work. Constructed out of Thermosulate technology, these waterproof and insulated workboots are rated for sub-arctic environments while the composite outsole ignores hazards to maintain traction when you need it most.'), +(5597,'Cutter Noble Livery','Paints','UNDEFINED','692618a7-7913-4c48-b834-82dd4406c187','','','A simple and sleek metallic finish makes the Noble livery a bold choice for the Cutter.'), +(5598,'ANVL_Centurion_SCItem_Dashboard_Driver','SeatDashboard','UNDEFINED','35746736-1ead-4347-bc97-ce9468d48225','','',NULL), +(5599,'Orbgn_None_Consumable_Keycard_OrbitalSecurity','FPS_Consumable','Hacking','393d5678-e2a9-4f60-8ce6-822a7739830b','','',NULL), +(5600,'Door','Door','UNDEFINED','422a5bef-527b-43d3-b0b1-e3715912b637','','',NULL), +(5601,'Stratus Jacket Purple','Char_Clothing_Torso_1','UNDEFINED','94cecfcb-7e58-433d-adf1-ad8fcaa92218','','','Temp. Rating: -20 / 20 °C\nCarrying Capacity: 3K µSCU\n\nEven though it\'s rated to withstand arctic conditions, you won\'t want any snow accumulating on this distinct and dazzling jacket. The Stratus will keep you warm from neck to knees thanks to its high collar and precisely layered pieces.'), +(5602,'Adiva Jacket Imperial','Char_Clothing_Torso_1','UNDEFINED','93699fae-dfa4-4c7c-80a0-d50b1ab9fda0','','','Carrying Capacity: 1K µSCU\n\nDefine your ultimate you. The Adiva is an asymmetrical pullover with bold mixed-materials and solid reinforced trim.'), +(5603,'Inquisitor Core Neon Pink','Armor','Torso','8a67752c-20a4-4ca9-a6e6-0a3797f2e9c3','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(5604,'Internal Tank','FuelTank','Fuel','1b7f3d7b-6412-4f35-b0fa-f688bfb4b7fe','','',NULL), +(5605,'AEGS_Retaliator_Module_Rear','Module','UNDEFINED','eb305f4b-bf8d-4f73-b341-1191d0f546ea','','',NULL), +(5606,'GRIN_STV_Seat_Passenger','Seat','UNDEFINED','7461ae4b-ef5c-4fa7-88fa-4a53b7f6b0b3','','',NULL), +(5607,'CRUS_Starlifter_RADR_Display','Display','UNDEFINED','e6eb7403-a6fa-4855-aafe-6d2d62e447e7','','',NULL), +(5608,'m_human_mannequin_deckcrew_cargo_light','ShopDisplay','UNDEFINED','39d72a81-983d-415f-a4f9-611802158bfb','','',NULL), +(5609,'Invictus Flyby T-Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','64fdf455-f0aa-443a-85ce-2dc0a5fde7a1','','','Few things are as awe-inspiring as a UEE Navy fleet flyby. This comfortable, cotton blend Invictus Launch Week t-shirt celebrates that memorable sight.'), +(5610,'Dashboard','SeatDashboard','UNDEFINED','f04b1860-8073-46c9-ab1d-cdc9e26518d5','','',NULL), +(5611,'Door Control','Door','UNDEFINED','567a2899-65a2-4a7e-a61d-a863868042aa','','',NULL), +(5612,'AEGS_Sabre_Thruster_Mav_BottomRL','ManneuverThruster','JointThruster','f1fc077e-e981-4f98-b15c-05ed0509f20c','','',NULL), +(5613,'BEHR_BallisticRepeater_FiringMechanism_S1','WeaponAttachment','FiringMechanism','bda5e109-4463-4c5f-90fd-f953ab97550e','','',NULL), +(5614,'Manned Turret','TurretBase','MannedTurret','b0aa88f6-56d5-440e-acab-b3a2811360fb','','',NULL), +(5615,'Corundum (Raw)','Cargo','Cargo','11abd68b-323a-478e-a1e3-c18b80ce1032','','',NULL), +(5616,'SRV Dark Storm Livery','Paints','UNDEFINED','92414374-3f8c-4171-926b-2f629536f85f','','','Black with yellow highlights, the Dark Storm livery gives the SRV a sleek yet discreet look.'), +(5617,'San\'tok.yāi Gimbal Mount','Turret','GunTurret','98f27734-3ef8-4715-a1dd-0c28f6e053bd','','','Manufacturer: Aopoa\nItem Type: Weapon Mount\nSize: 3\n\nLine up the perfect shot with help from this S3 gimbal mount. Made by Aopoa specifically for the San\'tok.yāi, this gimbal can handle weapons up to S3.'), +(5618,'Carryable_2H_FL_05x05x05_MissionItem_Present_c','Misc','UNDEFINED','62c8cf3e-1e3d-47dd-a945-3fc935902893','','',NULL), +(5619,'DRAK_Golem_Thruster_Main_VTOL','MainThruster','FixedThruster','08446065-0e20-4825-a1a6-61ef68edf6f5','','',NULL), +(5620,'Omnisky XII Cannon','Weapon','Gun','cf57c4df-0fed-40bb-9771-10fc7853d8f9','','','Manufacturer: Amon & Reese Co.\nItem Type: Laser Cannon\nSize: 4\n\nAmon & Reese\'s dependable line of laser autocannons continues with the Omnisky XII. Though slow firing, this size four laser is able to efficiently deliver devastating laser beam blasts from a considerable range.'), +(5621,'Seat','Usable','UNDEFINED','4ec51994-17a3-3112-2737-e7f2e3ff738f','','',NULL), +(5622,'ADP-mk4 Legs Rigteous','Armor','Legs','599dd9a6-f2d5-4702-8349-c57d9126434b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nBased on CDS\' ADP-mk4 heavy combat armor, this set has been modified from its original form. When there\'s a difficult job at hand, you want to ensure that you can see it through to the end. This armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers.'), +(5623,'ORIG_M50_Thruster_Main_AT','MainThruster','FixedThruster','06636f28-4936-45e9-b28f-e313e6841cf7','','',NULL), +(5624,'Ati Jacket Grey','Char_Clothing_Torso_1','UNDEFINED','5a05f916-1ade-4201-b550-a4668f67dfde','','','Carrying Capacity: 2K µSCU\n\nFiore\'s is a modern update of traditional Earth design. Slim tailoring, a high collar, and striking asymmetrical design make this overcoat a must-have item for any wardrobe.'), +(5625,'Piecemeal Armor Arms Grey','Armor','Arms','699d7420-c356-493b-ba0c-bf5da91c6974','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nThis armor was created using repurposed parts from a Caldera armor set to provide the wearer with an extra layer of protection against aggressors and harsh environments.'), +(5626,'Bed','Seat','UNDEFINED','bddf0bb7-ab68-42af-920b-5d0a309ff16c','','',NULL), +(5627,'Voidripper Helmet','Armor','Helmet','3d3a79ad-af46-4d77-baf0-184c6d06844e','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nEmbrace your inner beast by equipping the Voidripper helmet. Layers of heavy armor plating provide premium protection and an unforgettable visage featuring a heavy brow and piercing turquoise eyes. Sakura Sun designers complimented this striking form with supreme function, including a state of the art sensor suite attached to the helmet\'s right side. Visor is AR crosshair compatible.'), +(5628,'Crusader Industries Hat','Char_Clothing_Hat','UNDEFINED','3807da5c-488a-4ef6-bd9c-7528c51e081a','','','To celebrate Pax Humana 2949, Crusader Industries released this hat in the colors associated with the holiday, blue and white. Wear this hat to join the company in supporting those that focus on the greater good. All proceeds from its purchase will go to the Terra-based nonprofit Empire\'s Overlooked.'), +(5629,'Mandible Firestrike Helmet','Armor','Helmet','1d802d55-acca-416e-b4d0-4fc2f2cc08f4','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow that you\'re ready to \'bug out\' with the exclusive Mandible helmet from Sakura Sun. Lightweight plating provides protection while metal fangs protrude from the front for an intimidating insectoid shape that walks the line between fun and frightening.'), +(5630,'Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','991674f7-c3c9-4a26-b464-e8f43426da5a','','','Joker Defcon Flares Ammo'), +(5631,'Stud','Char_Head_Piercings','UNDEFINED','43376990-1a04-4ae0-b929-61df1505b044','','',NULL), +(5632,'Aztalan Galena Core','Armor','Torso','f87c80b2-6afe-4ddb-a818-503bfcdacbab','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nFear no frontier while wearing the Aztalan armor. This mixture of armor plating and reinforced fabrics will keep you safe yet swift on your feet. Tehachapi\'s masterful design gives the armor a subtle yet unmistakable frontier style that also providing ample storage. Suitable for everything from sand dunes to bustling backstreets, the Aztalan is the ideal choice for your next adventure.'), +(5633,'MacFlex Core Dark Green','Armor','Torso','e110d80a-dcff-4d12-8764-8e38ced34958','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(5634,'AEGS_Sabre_Firebird_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','06243d54-5f4d-4633-bd42-17b3d0d6c1e2','','',NULL), +(5635,'Idris_Toilet_Door_r','Player','UNDEFINED','5159974f-49d4-4dac-8f3c-0015cf24839e','','',NULL), +(5636,'ARGO_CSV_CargoGrid_Rear','CargoGrid','UNDEFINED','2d2e7628-a0c5-4770-bd67-7e88810fe538','','',NULL), +(5637,'DRAK_Mule_CargoGrid_Rear','CargoGrid','UNDEFINED','2b5aaa08-53ff-4ae9-84bc-c776bc414a32','','',NULL), +(5638,'Door','Door','UNDEFINED','c177505e-98ea-46f5-b484-4b962bd72b52','','',NULL), +(5639,'rod_torso1_02x01x04_09Ports','ShopDisplay','Default','d42811b7-8aea-42d8-9725-54002c445f79','','',NULL), +(5640,'Seat','Usable','UNDEFINED','3267d35a-1817-40c0-a48e-e3b04a5fdce2','','',NULL), +(5641,'XIAN_Nox_Thruster_Aux','ManneuverThruster','JointThruster','e30e0df8-641d-40ba-a0b0-2e2faa8a1978','','',NULL), +(5642,'Carryable_1H_CY_utensil_scoop_1_a','Misc','UNDEFINED','b847f9e0-1c29-4bde-8885-3cdf0dee9cd8','','',NULL), +(5643,'RSI_Zeus_Mohawk_Cargo','AttachedPart','UNDEFINED','0209d1a5-f02e-4efa-ba4e-a6d02616143d','','',NULL), +(5644,'Polaris Sirius Livery','Paints','UNDEFINED','5f8ae92f-7bcf-4fdb-a258-e4e51f9bc0c8','','','Patrol, protect, and impress with the Polaris by outfitting it with the Sirius livery, which masterfully mixes blue, grey, and tan.'), +(5645,'Door Control','Door','UNDEFINED','abd1fed4-6fc9-4080-9a7f-0bf473f21f20','','',NULL), +(5646,'Hardline Hard Hat Chrome','Char_Clothing_Hat','UNDEFINED','21ce1238-3d85-4d9a-b0cb-6cd6cf704985','','','Stegman\'s Hardline 7800 is the latest in a proud line of safety wear. The Hardline is constructed from the same high-density plastics used in some body armor.'), +(5647,'TruBarrier Hazard Suit Mask Cobalt','Char_Clothing_Hat','UNDEFINED','c3399e8e-5235-4812-b05a-ca2f213f7001','','','Temp. Rating: -30 / 15 °C\n\nThe TruBarrier Hazard Mask by Greycat Industrial helps its user face unexpected environmental hazards while keeping the most vulnerable parts of the head safe from damage. The encapsualted design provides full-body protection from direct contact with dangerous materials when worn with its accompanying jumpsuit.'), +(5648,'Iron','Cargo','Cargo','935cf432-577b-409b-af69-3a3ca0753e4d','','',NULL), +(5649,'Carryable_1H_SQ_fruit_alien_4_a','Food','Plant','2d9bc3cd-f2b0-4e07-b5dd-30e524d258b9','','',NULL), +(5650,'Lynx Legs Lichen','Armor','Legs','4a25377f-70dc-4291-b58a-78601360d9c7','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(5651,'Seat','SeatAccess','UNDEFINED','d9ddb38e-3922-491d-bee1-5fec343cffff','','',NULL), +(5652,'Carryable_1H_SQ_box_file_1_a','Misc','UNDEFINED','e43a5114-6af8-4ebc-9cc9-4e31e88ce368','','',NULL), +(5653,'Dragonfly Ghoulish Green Livery','Paints','UNDEFINED','a04e569a-42da-46db-9718-e681f4f6eb30','','','Embrace Day of the Vara mischievousness and mayhem any time of the year with this custom Dragonfly livery. It combines metallic green and black for a striking look that highlights the holiday\'s classic colors.'), +(5654,'MTC Filament Livery','Paints','UNDEFINED','6061b637-e704-4e85-bf92-73ec0d50b822','','','Equip the Filament livery to make the MTC grey with black and yellow highlights. It\'s also compatible with other Greycat M-series vehicles.'), +(5655,'Omnapoxy','Cargo','Cargo','e5ec1567-688d-4ebc-8b36-30756a8dfa3f','','',NULL), +(5656,'Debnam Gloves Sienna','Char_Clothing_Hands','UNDEFINED','565946ca-0722-4545-b882-0b6563eea3f8','','','Named after the influential Terran tailor, Debnam gloves incorporate that famous tailor\'s classic design to keep your hands comfortable in colder temperatures.'), +(5657,'Controller_Salvage_AEGS_Reclaimer_Turret','SalvageController','UNDEFINED','b16c9a55-8f9e-4fed-acee-52c8248cd9cd','','',NULL), +(5658,'Xanthule Sehya Suit','Armor','Undersuit','d13b0e28-004e-4ce4-ac98-024e8af90d82','','','Item Type: Flight Suit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 6.5 µSCU\nBackpacks: Light\n\nPerfected through centuries of innovation, Syang Fabrication\'s sleek and stylish Xanthule flight suit has been meticulously adapted to the Human physique. The Xanthule suit features breathable lightweight plating made with a carbon-silk weave that provides reliable protection while maintaining the famed House\'s signature aesthetic.'), +(5659,'AEGS_Idris_SCItem_Seat_Pilot_M','Seat','UNDEFINED','82e2c380-9ba3-4948-a13b-092b205b0d39','','',NULL), +(5660,'Microid Battle Suit Helmet Lodestone','Armor','Helmet','be6bd379-9f0c-44a7-be78-e2aafe93c7a5','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(5661,'Prota','Cargo','Cargo','380c835a-9828-4b5e-8505-42df5ea98e73','','',NULL), +(5662,'TRGT. STATUS','Seat','UNDEFINED','0650fa97-50c5-48e1-9dbe-d54222a6108b','','',NULL), +(5663,'DRAK_Mule_Dashboard_Driver','SeatDashboard','UNDEFINED','87e3da7a-a89f-45fd-911d-fc708d16964c','','',NULL), +(5664,'MISC_Razor_LX_Thruster_Vertical_Top','ManneuverThruster','FixedThruster','568af77e-62e1-44ab-bb98-d09baa4ff9c7','','',NULL), +(5665,'Cordimon Jacket Grey','Char_Clothing_Torso_1','UNDEFINED','6eae10ef-fa05-4426-b6fa-af8e7904a428','','','Carrying Capacity: 3K µSCU\n\nStegman\'s classic worker\'s jacket has been a staple of job sites for over seventy years. This duotone pattern is cut from the toughest material meaning you can wear it anywhere, anytime. It may not be armor, but it damn sure feels like it.'), +(5666,'Door Control','Door','UNDEFINED','e6ddd708-fc67-41c5-a10d-c0a82f3f417f','','',NULL), +(5667,'RSI_Bengal_Thruster_Main_Medium','MainThruster','JointThruster','3f455fc0-5da4-4d72-8eee-58e35f110681','','',NULL), +(5668,'Xanthule Ascension Suit','Armor','Undersuit','58f4e1c7-5a75-4fca-ae08-f80e115ede1d','','','Item Type: Flight Suit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 6.5 µSCU\nBackpacks: Light\n\nPerfected through centuries of innovation, Syang Fabrication\'s sleek and stylish Xanthule flight suit has been meticulously adapted to the Human physique. The Xanthule suit features breathable lightweight plating made with a carbon-silk weave that provides reliable protection while maintaining the famed House\'s signature aesthetic. This special IAE 2953 edition is decorated with a copper and white pattern inspired by Gatac Manufacture\'s Syulen.'), +(5669,'Stirling Exploration Suit','Armor','Undersuit','711208e1-0378-42f3-a503-cdac8ee56e31','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nDesigned to withstand inhospitable environments, the Stirling Exploration Suit provides a base level of protection from environmental hazards including radiation. Combining Caldera\'s advanced insulation fabrics with sophisticated polymers, the Stirling is able to safeguard the wearer whilst minimizing disruption to movement. Additionally, a self-cleaning system automatically activates after radiation exposure to expunge dangerous excess down to nominal levels.'), +(5670,'Fuel Intake ','FuelIntake','Fuel','fc9ca892-2cc8-4135-aad7-523e13e8a0ae','','','@item_Desc_INTK_Default'), +(5671,'Door Control','Door','UNDEFINED','c66066a3-ca74-4460-ba59-e9264cbc99f0','','',NULL), +(5672,'F55 \"Alpine Sunset\" LMG','Weapon','Medium','e06e90e2-7d83-4805-ba45-de64045e2426','','','Manufacturer: Gemini\nItem Type: LMG\nClass: Ballistic\n\nMagazine Size: 150\nRate Of Fire: 1000 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S2), Barrel (N/A), Underbarrel (S3)\n\nFeaturing an explosive rate of fire that tops at a 1000 rpm and Gemini\'s sleek and professional styling, the F55 is a light machine gun for discerning clientele who want the \'verse to know that they are not to be trifled with. This special green and red Alpine Sunset edition is sure to make a great Luminalia gift for your loved ones.'), +(5673,'Kino Shoes Orange','Char_Clothing_Feet','UNDEFINED','330e8aa0-9960-44b3-90f2-a3e878f52aa3','','','These two-tone slip-on shoes are comfortable enough for casual wear, but stylish enough for the workplace.'), +(5674,'Artimex Legs Chairman\'s Club','Armor','Legs','7656c45c-d301-4503-b404-fc4126ac7139','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape. The Chairman\'s Club edition is clad in black with rich gold highlights and features the insignia of the exclusive organization.'), +(5675,'Carryable_1H_CY_antagonist_1_a','Misc','UNDEFINED','947c457f-fcf7-4982-bbaf-17ef4b1112f2','','',NULL), +(5676,'ANVL_Centurion_SCItem_SeatAccess_Support','SeatAccess','UNDEFINED','90963f9f-6d1e-432e-8e2c-66b03e37c29b','','',NULL), +(5677,'Karna Rifle','Weapon','Medium','3825f6fa-bfcd-4ced-b207-47c2643a2258','','','Manufacturer: Kastak Arms\nItem Type: Assault Rifle\nClass: Energy (Plasma)\n\nBattery Size: 35\nRate Of Fire: 500 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nThe Karna is a classic Kastak Arms plasma assault rifle. This mid-range mauler features charged and full-auto fire modes to allow for quick and easy situational adjustments. Besides its renowned firepower, the Karna\'s rugged looks and reliability have made it one of Kastak Arms\' most popular weapons.'), +(5678,'AAT-34 Turret','Turret','MannedTurret','fe4163d6-75c4-4a74-a528-f955122aeba4','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(5679,'Bar_Table_Eckhart','Usable','UNDEFINED','778efff9-997d-4eb7-97f6-f7ff07eac1cf','','',NULL), +(5680,'ORC-mkV Core Purple','Armor','Torso','33f0bca9-3e7f-4412-8f1f-aea1e2cceb3f','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(5681,'RSI_Aurora_Cargo_Rack_3SCU','AttachedPart','UNDEFINED','1b67c44b-1456-4cb5-afc0-3a68c9482354','','',NULL), +(5682,'Nivala Shoes Crimson','Char_Clothing_Feet','UNDEFINED','5d477e72-320b-4024-a226-89f48602b7a7','','','The Alejo Brothers expertly engineered the Nivala shoes to provide high ankle support while remaining lightweight. The shoes mix the company\'s patented FullFlex rubber with synthetic nubuck leather for flexible yet strategic support, and feature cushioning on the heels and balls of the feet for supreme comfort.'), +(5683,'Apollo Alliance Aid Red & Gold Livery','Paints','UNDEFINED','1346454b-ba8e-469c-b38c-cfd8a97d6080','','','Showcase your dedication to helping Alliance Aid assist the people of Levski during their time of need with this red livery with golden accents.'), +(5684,'Gladius TSB Flight Blade','FlightController','UNDEFINED','d21e1dc6-a7c3-40ba-b3de-8acba4e8a073','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Aegis Gladius with the TSB Flight Blade from Broad & Rabiee. By re-allocating lateral thrust resources, you can expect your ship deliver increased top speeds in the straightaway.'), +(5685,'Seat','Usable','UNDEFINED','37860cf3-4e58-4ef5-ac05-9be7156d7a3c','','',NULL), +(5686,'Vehicle_Screen_Physical_Golem_Indicator','Display','UNDEFINED','6f502517-7cec-4b94-aed6-2234a23057df','','',NULL), +(5687,'Medical Bed','Usable','UNDEFINED','30a63d95-4393-4820-b372-2fece80c4589','','',NULL), +(5688,'Bed_ANVL_Terrapin','Usable','UNDEFINED','f5feae9b-1295-40e4-9f12-6927bc7ef7ab','','',NULL), +(5689,'Mivaldi Pants Green','Char_Clothing_Legs','UNDEFINED','d8a56b78-c95d-4ed9-b6ae-f03a6ad37448','','','Carrying Capacity: 0.5K µSCU\n\nCut to a narrow fit, OpalSky\'s Mivaldi pants feature bold asymmetrical design with smart yet casual dual material styling, making it the perfect addition to any wardrobe.\n\nWomen\'s sizes currently out of stock.'), +(5690,'Horizon Helmet Seagreen','Armor','Helmet','579543ed-eea4-49f0-ad88-0ffc38fadb2d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Horizon helmet is a durable and robust environmental enclosed work helmet. The single sheet laminate dome gives you an extremely wide field of view. A pair of side-mounted LED light modules provide additional illumination to make sure you can see what you\'re doing.'), +(5691,'Carryable_1H_SQ_hydrogel_1_a','Misc','UNDEFINED','586a3926-e029-415e-b160-563fd59b1599','','',NULL), +(5692,'MacFlex Backpack Granite Red','Armor','Backpack','d714596d-a4b0-4734-a12f-39058537c0fe','','','Item Type: Light Backpack\nCarrying Capacity: 50K µSCU\nCore Compatibility: All\n\nThe MacFlex Backpack is a back-mounted hard-shell case that provides extra commodity storage options. Whether bringing extra supplies on a long excursion or filling it with ore after a successful mining run, the MacFlex Backpack will be there to carry the load.'), +(5693,'Government Cartography Agency Medal (Pristine)','Misc','Trophy','0ce468ad-34a9-46e8-aa1d-71cf6b7b5560','','','This medal was awarded by United Planets of Earth (UPE) to members of the Government Cartography Agency who flew or supported missions involving the discovery, exploration, or scanning of new systems. It features a star woven with one large and three smaller interlocking circles that was the central symbol on the UPE flag. The exquisite state of the ribbon and metal has left this one in pristine condition.'), +(5694,'Antium Legs Maroon','Armor','Legs','bf7b7917-961c-42df-b8a0-cde68286250b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(5695,'GATS_BallisticGatling_PowerArray_S2','WeaponAttachment','PowerArray','caa703b5-265e-4b88-b3c7-b8473cd3bf8e','','',NULL), +(5696,'Why Not? Helmet','Armor','Helmet','7edb4266-770c-4e29-8881-36d5b90637aa','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nJust because a helmet\'s broken doesn\'t mean it\'s useless. This scavenged undersuit helmet should provide suitable protection against vacuum. If you like taking chances, take a chance on this. Why not?'), +(5697,'Jumping Limes','Cargo','Cargo','8fc4e51f-59d2-4618-ae29-1f3a0a7f176c','','',NULL), +(5698,'Hermes Honorbound Livery','Paints','UNDEFINED','3237534f-e602-4629-8a3e-5bb7a2341446','','','Fight for glory with the Honorbound livery, consisting of a muted military green accompanied by a subtle bronze.'), +(5699,'StorageCage_Damage_CustomLoadout','Cargo','UNDEFINED','7e508c83-a4e2-4e0a-933d-802bd9d27319','','',NULL), +(5700,'Manticore Helmet Epoque','Armor','Helmet','55e7a629-b131-4e0e-8d59-75ce8db86237','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -85 / 115 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nDominate the battlefield in the Manticore Helmet. Crafted with a durable polymer weave for maximum protection, this fully enclosed combat helmet creates a foreboding silhouette.\n\nThe Epoque edition features a navy and black coloring, finished with baroque gold detailing.'), +(5701,'TRGT. STATUS','Seat','UNDEFINED','90a7f39b-6633-49f1-996c-d2f579fb7e4e','','',NULL), +(5702,'Locker_Simple','Player','UNDEFINED','d3173f74-8422-4176-a7ce-eef8d6fb16b5','','',NULL), +(5703,'K7 Pants Red','Char_Clothing_Legs','UNDEFINED','30711b13-cc9c-435e-977c-e2caf09cb1ce','','','Carrying Capacity: 3K µSCU\n\nDMC\'s K7 are an all-purpose cargo pants. Four easy access pockets provide extra storage while the triple-stitched polymer weave fabric is designed to withstand all kinds of weather conditions.'), +(5704,'Sangar Helmet (Modified)','Armor','Helmet','09df1b07-bb85-4369-8c83-cd97900a2dca','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThis version of Virgil\'s Sangar helmet has been modified from its original form. The Sangar helmet from Vigil is both practical and eye-catching, thanks to a prominent brow ridge meant to absorb and disperse strikes through the helmet\'s special impact-resistant inner lining. Featuring high quality diamond laminate lens over the eyes and a top tier dual sensor air filtration system protruding from the front like fangs, Virgil has ensured that the Sangar helmet can take a beating and look good doing it in every situation from a hostile environment to a frantic firefight.'), +(5705,'ARMR_BANU_Defender','Armor','Light','48d24c81-35d6-44d7-aa9c-5f9b5966cce8','','',NULL), +(5706,'MISC_Prospector_Thruster_Retro_01','ManneuverThruster','FixedThruster','4bdf7c53-4065-4823-b5bc-9e0acf2bd4bb','','',NULL), +(5707,'Spirit 2954 Best in Show Livery','Paints','UNDEFINED','f32a2b7f-649d-416f-897a-8dcf479a45e9','','','This purple and white 2954 Best in Show Livery celebrates the Spirit making it to the finals of the 2954 Ship Showdown.'), +(5708,'ORIG_125a_Thruster_Retro_Left','ManneuverThruster','JointThruster','aa6309ac-9276-46cf-9397-dc75287920f9','','',NULL), +(5709,'Galen Surgical Scrub Pants','Char_Clothing_Legs','UNDEFINED','46c44ce6-4522-4776-ba05-c569f5738b0a','','','Carrying Capacity: 0.4K µSCU\n\nYou can count on Code Blue Apparel to deliver professional and comfortable medical clothing. The Galen Surgical Scrub Pants feature ribbing around the knees, and are made with a special anti-bacterial fabric that\'s 99% effective while also being lightweight and wrinkle free.'), +(5710,'Venture Arms Lovestruck','Armor','Arms','058f553d-0ef9-42d8-a075-d110aa82b529','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRobert Space Industries’ Venture Explorer Suit provides exceptional protection against the dangers of space. Designed for those who don\'t know where their next adventure might go, the suit combines comfort and safety without sacrificing mobility. This special Lovestruck edition features a stylish metallic pink and black color scheme inspired by the colors of the Coramor festival.'), +(5711,'Door','Door','UNDEFINED','6323fed7-32e1-40a3-8430-dfd55386177e','','',NULL), +(5712,'Aegis Dynamics T-Shirt','Char_Clothing_Torso_0','UNDEFINED','cab5bd0c-713b-4abb-a121-a965403e8e2c','','','From the Avenger to the Idris, Aegis Dynamics\' impact on modern spacecraft is undeniable. Extol their achievements with this 100% cotton grey shirt featuring the company\'s iconic logo.'), +(5713,'INTK_ARGO_MOTH','FuelIntake','Fuel','bc62298d-9579-4442-81af-af090ad62c85','','',NULL), +(5714,'Scorpion GT-215 Gatling','Weapon','Gun','7034e330-3d22-4e89-83cb-c01815dbb875','','','Manufacturer: Gallenson Tactical Systems\nItem Type: Ballistic Gatling\nSize: 2\n\nThe Scorpion GT-215 is a hydraulically-driven Gatling-type rotary cannon designed to deliver smaller rounds at a very high rate of fire. The Scorpion is designed to shred armor on very fast targets, sacrificing power for absolute saturation of the target area.'), +(5715,'DRAK_Cutlass_Red_Thruster_Retro','MainThruster','FixedThruster','766b2aee-0382-4132-b3bc-30f1e334fe28','','',NULL), +(5716,'Seat','Usable','UNDEFINED','ed4e13ac-d076-484e-ab9a-f30b40796147','','',NULL), +(5717,'SHIELDS','ShieldController','UNDEFINED','9b580184-17bf-42f7-a22d-9938b2af42b1','','',NULL), +(5718,'Stronger Together Poster','Misc','Utility','a40e35e4-3ce7-4e76-96f7-38cfaf7d69aa','','','A point of inspiration to those who seek asylum in Levski, this poster recreates the memorable mural that greets visitors to the remote asteroid base in Nyx. Painted by an unknown artist, it features two hands clasped in unity over the symbol of the People\'s Alliance and the stirring motto of the political activist group: \"Stronger Together.\"'), +(5719,'Carryable_2H_FL_Container_Anim_Socket_Set','Misc','UNDEFINED','6f477d95-61dc-4e10-a172-22217ebc86d2','','',NULL), +(5720,'Weapon_Rack_ANVL_Valkyrie_1Slot','Usable','UNDEFINED','a37c1b0f-b7f9-4b5e-96f9-4571f19abafe','','',NULL), +(5721,'Tungsten','Cargo','Cargo','6a04ee2a-5fe2-4853-a0cd-ee8ba6e921e2','','',NULL), +(5722,'ANVL_Paladin_CargoGrid','CargoGrid','UNDEFINED','e6724834-f542-4231-b82e-e318578c2e14','','',NULL), +(5723,'ADP Legs Blue','Armor','Legs','d8e8a84d-812a-4969-8965-95f7b96b0081','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(5724,'CBH-3 Helmet Seagreen','Armor','Helmet','963a2e3b-7a40-4678-83a9-3638a72e177a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. Visor is AR crosshair compatible.'), +(5725,'ANVL_Lightning_F8_Thruster_Mav_Joint_White','ManneuverThruster','JointThruster','04822965-d2c2-481c-a34b-2c9a42c2e401','','',NULL), +(5726,'Diamond (Raw)','Cargo','Cargo','5a1ff23f-f977-4f41-b753-a4597743e740','','',NULL), +(5727,'Cargo_Comm_125x3_Medical_Supplies_a','Cargo','Cargo','38f36834-e386-4ad9-a44d-f9d0a757f3a8','','',NULL), +(5728,'Carryable_1H_FL_packaging_medpen_1_single_a','Misc','UNDEFINED','670e0c14-4ade-430e-8816-b9ad95d4d088','','',NULL), +(5729,'ORC-mkX Core Arctic','Armor','Torso','e7e1286b-3c7f-47c8-a2f2-9bdf0054d46c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(5730,'Arrowhead \"Desert Shadow\" Sniper Rifle','Weapon','Medium','8c351f63-67c2-4f11-9533-4afbb24eac61','','','Manufacturer: Klaus & Werner\nItem Type: Sniper Rifle\nClass: Energy (Laser)\n\nBattery Size: 20\nRate Of Fire: 50 rpm\nEffective Range: 100 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nKlaus & Werner’s Arrowhead Model VI long-range energy rifle features a fiberglass composite body capable of withstanding any number of rigorous environments both in atmosphere and out. Built with a precision stock, compound scope and built-in bipod, the Arrowhead offers a stable and devastating weapon for operators who want to keep their distance, but stay in the fight.'), +(5731,'AEGS_Javelin_SCItem_Seat_Bridge_Right_RemoteTurret','Seat','UNDEFINED','2e4bead6-894a-45d8-bc96-2481b9f63803','','',NULL), +(5732,'Cave Kopion Horn','Misc','Harvestable','9a906fca-8116-4334-9ac7-7b2fce486d8c','','','The horn of the kopion is made of a unique combination of bone and naturally-occurring carbon nanomaterials. When properly processed, it can be used to aid in bone regeneration with a far greater rate of success than lab-grown materials. This application has made it a valuable commodity.'), +(5733,'MASTER_screen_rtt','Display','UNDEFINED','3c24bd8a-568f-4158-b256-49897fceba82','','',NULL), +(5734,'MISC_Razor_CML_Chaff','WeaponDefensive','CountermeasureLauncher','17eb8b6b-3bed-48d4-8c89-8f6451768798','','','@LOC_PLACEHOLDER'), +(5735,'can_drink_3_energy_bm_shop_2x5_a','ShopDisplay','Default','d333ea43-b030-4ed8-abd0-a88562829c52','','',NULL), +(5736,'Davlos Shirt Steel','Char_Clothing_Torso_0','UNDEFINED','09fab038-872d-4c36-97dd-8220be31f328','','','Live in comfort with MuyMuy\'s Davlos line of cotton-synthetic shirts. The durable, yet soft, fabric contains a patented SweatGuard technology that not only whisks away perspiration but helps prevent stains.'), +(5737,'MISC_Fury_MX_Thruster_FixedMav_Top','ManneuverThruster','FixedThruster','659ec9ac-e08d-40c0-9722-e45c1d04cb5a','','',NULL), +(5738,'Ravager-212 \"Outcast\" Twin Shotgun','Weapon','Medium','03e1fa47-a15e-41bb-81f9-17d3be857a0d','','','Manufacturer: Kastak Arms\nItem Type: Shotgun\nClass: Ballistic\n\nMagazine Size: 16\nRate Of Fire: 105 rpm\nEffective Range: 15 m\n\nAttachments: Optics (S1), Barrel (N/A), Underbarrel (S2)\n\nThe Kastak Arms Ravager-212 Twin shotgun earns its name from its unique dual-barrels that allow for multiple ammo types to be used in conjunction with each other for maximum tactical possibilities. The rough splashes of neon green against the gunmetal gray give the Outcast edition an aggressively chaotic appearance.'), +(5739,'Carrion Helmet Ashen','Armor','Helmet','85271010-22ed-4a52-96e7-db30c7ff94d8','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nForged from scavenged metals and ragged clothes, the Carrion armor is a crude concoction of repurposed materials that demonstrates you\'ll do anything it takes to survive. The helmet has a high comb of iron bars and an opaque faceplate that allows the wearer to see clearly while obscuring their visage.\n\nThe Ashen version is sprayed with white paint and anointed with bone fragments.'), +(5740,'DRAK_Clipper_Thruster_Retro_Aux_Left','ManneuverThruster','UNDEFINED','3d8c1448-fc2a-4c6c-9272-54a65825b070','','',NULL), +(5741,'Toughlife Boots White','Char_Clothing_Feet','UNDEFINED','e914a57b-69a5-4d50-aaab-6be11891e7c7','','','Grindstone\'s done it again. The Toughlife is an all-purpose workboot designed to provide comfort, durability and quality. Featuring a reinforced composite toe and lasercut sole to maximize traction on all surfaces, Toughlife is sure to be your dependable boot, day in and day out.'), +(5742,'Frost-Star EX','Cooler','UNDEFINED','59a37716-f4d3-4dcb-a41e-0f2c3064e169','','','Item Type: Cooler\nManufacturer: J-Span \nSize: 2\nGrade: C\nClass: Civilian\n\nThe Frost-Star EX cooler comes to you from J-Span, a manufacturer with a well deserved reputation among ship owners for constructing coolers that can reliably handle heat exchange wherever you may fly.'), +(5743,'Carinite','Cargo','Cargo','f0e355ed-5f11-46b0-ae39-637343b48a52','','','A rare mineral because the extreme pressure needed for its formation is very uncommon, it is in high demand thanks to its use in advanced computer processors and other cutting-edge electronics.'), +(5744,'Door Control','ControlPanel','DoorPart','46a3dd93-e1eb-4cb5-9cbe-850a5b6119a7','','',NULL), +(5745,'Ardent Boots White','Char_Clothing_Feet','UNDEFINED','5415b6e8-4b70-40ef-9667-0c71b586a7ab','','','Who says NorthStar can\'t keep it pro? The Ardent boot features a molded rubber sole and all-weather construction to withstand a constant battery from the elements.\n\nWomen\'s sizes currently out of stock.'), +(5746,'f_human_mannequin_base_armor','ShopDisplay','UNDEFINED','ea9af15d-f514-407f-b6d1-ce58053c9e77','','',NULL), +(5747,'AEGS_Sabre_Thruster_Mav_TopFR','ManneuverThruster','JointThruster','533327aa-66c9-4314-9259-a22daf034301','','',NULL), +(5748,'Organs','Cargo','Cargo','fc89492f-a38c-4beb-9720-da4276aee0eb','','',NULL), +(5749,'Marok Gem','Misc','UNDEFINED','a2c0a7a2-84ae-4d2f-80be-4950196b7075','','','The marok has a gizzard, which takes food that has been previously swallowed from the stomach and \"chews\" it before passing it back into the stomach to be digested. To help this process, the marok\'s body secretes a substance that hardens into a large crystalline stone that stays in the gizzard and helps food get pulverized more efficiently. The stone has unique conductive properties that make it sought-after for use in computer chips.'), +(5750,'test_Gadget','Weapon','Gadget','0cc46368-e305-4415-9a62-cfe0bdb56d9b','','',NULL), +(5751,'ORIG_350r_Thruster_Mav_Fixed_01_Front_Top','ManneuverThruster','FixedThruster','f78e6200-11e6-4eae-89d3-b8441ec65870','','',NULL), +(5752,'kitchenware_interior_1_tray_Harvestables','ShopDisplay','Default','da980f6c-96c0-40e0-aa9e-43592b50eb84','','',NULL), +(5753,'KRIG_l21_Wolf_Thruster_Main_Wing','MainThruster','UNDEFINED','d0a6382b-2401-4b29-9dc5-9e9633a8806c','','',NULL), +(5754,'Railing_Straight_2m_LT_Delta_b','Usable','UNDEFINED','8d1ba278-edf7-4085-aa6d-30c9a509aa17','','',NULL), +(5755,'SW16BR2 “Sawbuck” Repeater','Weapon','Gun','d4ebab35-1d86-4259-82dc-cda6a7167c90','','','Manufacturer: Behring\nItem Type: Ballistic Repeater\nSize: 2\n\nThe SW16BR2 Sawbuck is Behring’s contribution to the expanding Ballistic Repeater market. Its sequential-firing double barrel configuration offers an effective middle-ground for operators looking for a higher rate of fire than a cannon, but without the fear of overheating that you would get with a gatling.'), +(5756,'Impact II Mining Laser','Mining','Gun','30545178-b09e-495d-a8b8-c6267ce2b495','','','Manufacturer: Thermyte Concern\nItem Type: Mining Laser \nSize: 2\n\nOptimal Range: 60m\nMaximum Range: 180m\n\nMining Laser Power: 840 - 3360\nExtraction Laser Power: 3145\n\nModule Slots: 3\n\nLaser Instability: -10%\nOptimal Charge Window Size: +20%\nInert Material Level: -40%\n\nResistance: +10%\nOptimal Charge Window Rate: -40%\n\nThe Impact II excels in a variety of mining situations. Special focus lenses make it easier to work a deposit by stabilizing the laser and increasing the optimal charge window. There are drawbacks, including increased deposit resistance and a slower filling optimal charge window, but Thermyte Concern also provided three module slots to allow miners to better customize the laser to the task at hand.'), +(5757,'vanduul_drone_horns_01','Char_Accessory_Head','Vanduul','431731e2-325e-4f6e-b184-b7bde25c6251','','',NULL), +(5758,'Construction Salvage','Cargo','Cargo','b7af97df-bc2e-462e-b0d0-4cece39522d9','','','Can be processed at refineries into Construction Material.'), +(5759,'Invictus T-Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','fd50e4bf-dd23-433d-9531-f863f4e51115','','','Commemorate the biggest fleet flyby of the year with this comfortable t-shirt, featuring the seal of the UEE Navy on the front and the Invictus Launch Week logo on the back.'), +(5760,'Odyssey II Helmet Orange','Armor','Helmet','97ef1b42-3921-4897-a520-d4e4b1900c1c','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(5761,'Seat','Usable','UNDEFINED','d1170288-95be-4c17-a163-2fc9914613fb','','',NULL), +(5762,'Klein-S2 Mining Laser','Mining','Gun','41850766-d4a8-4255-be75-0d24af7280b0','','','Manufacturer: Shubin Interstellar\nItem Type: Mining Laser \nSize: 2\n\nOptimal Range: 60m\nMaximum Range: 180m\n\nMining Laser Power: 720 - 3600\nExtraction Laser Power: 2775\n\nModule Slots: 1\n\nResistance: -45%\nOptimal Charge Window Size: +20%\nInert Material Level: -40%\n\nLaser Instability: +35%\n\nShubin designed the Klein-S2 to generate a powerful laser that makes mining faster. This power incurs additional risk by boosting a laser\'s instability, but if used correctly, the Klein-S2 can quickly reap rewards for the careful miner.'), +(5763,'DRAK_Cutlass_Tractor_Mount','Misc','UNDEFINED','08513677-95db-433b-a494-dd516b92fc13','','',NULL), +(5764,'Door Control','Door','UNDEFINED','c7d04208-2de1-4b3e-b536-0f5bc233446b','','',NULL), +(5765,'Detatrine','Cargo','Cargo','604d07f0-2085-4eb9-9dd7-4d2913bcaf7b','','','Refined from the natural toxin found within the rare detatium fruit, this chemical has numerous medical applications.'), +(5766,'FL-22 Cannon','Weapon','Gun','ee3e42f7-56ea-46b8-bac2-d27187005a70','','','Manufacturer: Kroneg\nItem Type: Laser Cannon\nSize: 2\n\nDeliver massive damage from a distance with Kroneg\'s FL line of laser cannons. The size two FL-22 shines at medium and long ranges thanks to a design that minimizes damage falloff.'), +(5767,'Aril Arms Red Alert','Armor','Arms','63f1532d-e2cd-405c-984d-afbd4fef2a52','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(5768,'subi_como_wlop_s01_pl01','Misc','Fuse','b6ab5684-bf89-4a34-9440-e4063a7a0044','','',NULL), +(5769,'Seat','Usable','UNDEFINED','1bfb32e0-fb15-4127-97f6-b69f17319481','','',NULL), +(5770,'counter_medical_06x02x01_5Ports','ShopDisplay','UNDEFINED','7990730b-c8bd-460e-85c8-f06c4a636462','','',NULL), +(5771,'Door Control','ControlPanel','DoorPart','89568a98-f997-45d2-969b-7465950348bd','','',NULL), +(5772,'RSI_Constellation_Phoenix_Thruster_Main','MainThruster','FixedThruster','43c2b990-c4ed-483f-89fc-39e471f78624','','',NULL), +(5773,'Lindinium','Cargo','Cargo','fdfdf2a1-ade2-4d79-9f7d-ffde1855c346','','',NULL), +(5774,'Bracewell Boots Blue','Char_Clothing_Feet','UNDEFINED','156fa89f-34b1-47f2-9c66-6f02e890b29b','','','Durable, dependable, and comfortable. The Bracewell are high ankle boots designed to thrive amidst unpredictable weather conditions with a water-resistant finish, high-traction soles, and a toggle-locked top enclosure to help keep out any precipitation.'), +(5775,'SF7B Gatling','Weapon','Gun','51264411-1e57-48b9-b1d8-6fab4fb3a687','','','Manufacturer: Behring\nItem Type: Ballistic Gatling\nSize: 7\n\nSlug it out with large spacecraft and swiftly shred smaller ships with the SF7B ballistic Gatling. Built specifically for the Ares Inferno Star Fighter, the weapon seamlessly integrates into the body of the ship. The weapon\'s impressive rate of fire unleashes high-density rounds that tear through armor and shields, making it a perfect choice for situations where target saturation is key.'), +(5776,'Morozov-SH Arms Brushdrift','Armor','Arms','d3f69743-430b-46d4-8939-7279cbdf22e0','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(5777,'Deo Shirt Desert','Char_Clothing_Torso_0','UNDEFINED','77dcf251-20ac-4cce-9cb6-e6c7e9f62844','','','Fiore\'s Deo is a slim cut work shirt that\'s as practical as it is timeless. Featuring a high collar and metal neck clasp, the Deo has been a mainstay in business attire.\n\nWomen\'s sizes currently out of stock.'), +(5778,'DustUp Legs Tactical','Armor','Legs','d45f28b2-c1a6-4ddf-bb25-ec262c518610','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -60 / 90 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nThe DustUp has your back if you’re looking to get into some trouble. The body plating is built off of the same CDS undersuit used by the UEE Marines, it adds reconstructed Omni-Role mkII pieces to give you solid protection against incoming fire, but the real gem is the modified helmet. That thing was built to withstand explosions, so it should totally protect you against some shots. The whole thing’s been reasonably tested against vacuum too, so you can feel free to EVA all you want without worrying about dying.'), +(5779,'Carryable_2H_CU_uee_lawless_prop_dishplate_small_01','Misc','UNDEFINED','f07ff609-d4ac-4e5b-ade2-2e6ef0928c3e','','',NULL), +(5780,'Carryable_1H_CY_tool_manual_hammer_1_a','Misc','UNDEFINED','4c31bb21-629b-4029-9d52-9a9b0d4fec7d','','',NULL), +(5781,'Spruce Cap Whammer\'s','Char_Clothing_Hat','UNDEFINED','c7d7dd99-4da9-425d-8b88-fe994554d872','','','Lightweight and constructed from a sweat absorbant material that is easy to wash, Stegman\'s Spruce cap is ideal for comfortable all day wear.'), +(5782,'Shipment','Misc','UNDEFINED','e0fc4223-1a43-4297-bd18-e1f5fd07bce5','','',NULL), +(5783,'SightRight Goggles','Char_Accessory_Eyes','UNDEFINED','8229c7e8-37f8-49e7-96c1-d9b7d077ceae','','','Stegman\'s SightRight goggles strike a careful balance between ultralight comfort and professional-quality protection. The enhanced polycarbonate frame offers maximum eye safety with a durable scratch-resistant lens construction that also features an award-winning anti-fog coating to maintain visibility in the harshest of worksites.'), +(5784,'Seat','SeatAccess','UNDEFINED','05dde69e-edf4-432b-947b-0c2d96ca3adb','','',NULL), +(5785,'H_Dashboard_Projector_HUD_ANVL_Carrack_CoPilot','Display','UNDEFINED','fa0b8666-d9ea-4e31-ad7b-ff3916281608','','',NULL), +(5786,'Bed','Usable','UNDEFINED','cd502d78-3a3d-4dd4-8385-b51045c4391c','','',NULL), +(5787,'Seat','SeatAccess','UNDEFINED','99c35f3f-11e8-47b9-9593-224d886557b3','','',NULL), +(5788,'bar_box_snagglestick_smoke','ShopDisplay','Default','6fd2a454-321e-4b0a-af0d-1988427ce627','','',NULL), +(5789,'Malenky T-Shirt Skullsplitter','Char_Clothing_Torso_0','UNDEFINED','5856406c-ec9e-45fb-ae44-755f3c133156','','','\"Inspired\" by classic military designs with CBD\'s own twist, the Malenky t-shirt features collar accents on both sides, a rear quarter-zip, and is made out of premium recycled materials to ensure just the right fit.\n\nThe gray and red Skullsplitter version showcases a red Vanduul skull shattered by a bloody streak.'), +(5790,'Agricium','Cargo','Cargo','8e462ace-0b0e-49ce-b722-ea687101911c','','',NULL), +(5791,'Door Control','Door','UNDEFINED','b8d5044b-f59c-4e45-9ee7-9edd1e8d105f','','',NULL), +(5792,'Access','SeatAccess','UNDEFINED','17f310f1-a3f2-4348-8498-c9e7bb6074fa','','',NULL), +(5793,'Medical Bed','Usable','UNDEFINED','cbbb9199-3bc1-408e-802d-ba3f33f75b6e','','',NULL), +(5794,'Seat','SeatAccess','UNDEFINED','c063324d-db75-4871-90ff-4254be8cbacc','','',NULL), +(5795,'HyperGen','PowerPlant','Power','f0510922-1ae3-4b30-936b-a8ac7b7fd048','','','Item Type: Power Plant\nManufacturer: Amon & Reese Co. \nSize: 1\nGrade: D\nClass: Military\n\nThe HyperGen power plant is popular among both civilians and the military for its high quality. As a bonus, the manufacture, Amon & Reese, is famous for its stellar customer service.'), +(5796,'Internal Tank','FuelTank','Fuel','940266c3-89e2-45d4-952b-fc1c2bd3b64c','','',NULL), +(5797,'Paint_300_Dash_Aluminum','Misc','UNDEFINED','2201b04b-9051-474e-b8f3-e15f38511332','','',NULL), +(5798,'RSI Zeus Missile Launcher','MissileLauncher','MissileRack','1afd5a8c-cf40-4218-9672-e2a617da1aea','','','Item Type: Missile Launcher\nManufacturer: MISC\nSize: 5\nMissiles: 8xS2 \n\nBespoke missile launcher built into the wings of the Tana to make this Reliant variant a deceptively deadly dogfighter.'), +(5799,'ANVL_Door_Decal_Carrack_Bridge','Decal','DoorPart','22043845-dc62-455b-ab4d-263d56b675ad','','',NULL), +(5800,'Door','Door','UNDEFINED','1302b291-4753-42d1-a724-b8e3641071a5','','',NULL), +(5801,'Protean Boots (Modified)','Char_Clothing_Feet','UNDEFINED','339c0845-7cba-478a-b61c-61d51784e079','','','This version of R6 Pro\'s Protean boots has been modified from its original form. These rugged and durable boots from R6 Pro are perfect to wear on your ship or while planetside. Padded insole cushions ensure they\'ll also be comfortable in any situation.'), +(5802,'Seat','Usable','UNDEFINED','725e4104-5f65-46aa-86cf-009cae002c2e','','',NULL), +(5803,'Monde Arms Keystone','Armor','Arms','a505456d-4bc2-4a77-b49c-8228f975ad3b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints. \n\nThe Keystone edition features a white, gray and blue finish with URW logos.'), +(5804,'ADP Legs Purple','Armor','Legs','febdefcd-df09-43ef-8cae-436aa68867e5','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(5805,'RSI_Scorpius_SCItem_Seat_Gunner','Seat','UNDEFINED','cf8af154-9c49-471f-988d-587ef27756e0','','',NULL), +(5806,'GCD-Army Core','Armor','Torso','c5a21a61-1a3b-4afc-86de-1075b139826d','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nIn honor of the soldiers who protect the Empire, CDS has crafted this limited-edition armor that proudly displays the seal of the UEE Army. Its shell is composed of a durable composite on the outside and a soft core on the inside, designed to absorb the types of impacts associated with on-the-ground combat. The matching helmet features a UV-blocking faceplate that protects the wearer\'s eye sight as they fight on the front lines under strange suns.'), +(5807,'VT-T10 \"Veritas\" Torpedo','Missile','Torpedo','bcdd8022-c2f4-49d0-8528-e4a3a7a01a03','','','Manufacturer: Behring\nTracking Signal: Infrared\nSize: 10\n\nBring Behring\'s expert engineering to bear with the VT-T10 \"Veritas\" Torpedo. Originally designed for the Polaris, this size 10 torpedo has earned a reputation as a dependable and incredibly powerful ordnance.'), +(5808,'Flight Blade','FlightController','UNDEFINED','79cc0411-027b-42ed-a6c1-9d18f111e1f9','','',NULL), +(5809,'Seat','SeatAccess','UNDEFINED','a89a5495-b6e4-42f3-b8e4-5df0e5e4a376','','',NULL), +(5810,'Levin Undersuit (Refurbished)','Armor','Undersuit','25e50bbb-0e97-4c29-95e7-b84f6a416f6b','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nFeaturing flexible gaskets for greater comfort and more natural movement, along with a convenient range of chest connector port options, the Levin from Caldera has been a practical choice for explorers everywhere. This particular undersuit has been repaired for extended use.'), +(5811,'Morozov-CH Backpack Terracotta','Armor','Backpack','95370c49-95dd-4a49-be87-f117966266cd','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nComfortably carry vital gear with the Morozov-CH backpack. This softshell bag is made with an advanced duraweave that\'s lightweight yet ready for battlefield action. It also features several easy to access pockets and a plethora of straps to keep supplies secure and tight to your back.'), +(5812,'Buster\'s Chocolate Bar','Food','Bar','fae33afb-e2e1-459d-9159-f9caf72533a5','','','NDR: 10\nEffects: Energizing, Hyper-Metabolic\n\nSmooth sesame paste, salty roasted nuts, and a rich chocolate coating all combine to make Buster\'s, the classic treat that the Empire has loved for over two hundred years. Buster\'s or Bust!'), +(5813,'Prospector Hadanite Livery','Paints','UNDEFINED','79380d37-67b8-4c2c-94f9-7642eef25220','','','The Hadanite livery for your Prospector gives the ship a distinct pink hue that mirrors the look of the gemstone of the same name.'), +(5814,'Arden-SL Core Balefire','Armor','Torso','af202cf4-1af1-43c0-b120-5d027e3c2d79','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics. It also features a toolbelt for easy access to important gear.'), +(5815,'Zerua Jacket Crusader Edition','Char_Clothing_Torso_1','UNDEFINED','36bdc2b1-81c3-40bb-bb54-8508d6402fb5','','','Carrying Capacity: 2K µSCU\n\nMasterfully blending various colors and materials, the Zerua is a stylish jacket that features light yet breathable synthetics. Thanks to a unique dual layer design the jacket is meant to be worn open but is closable against the cold thanks to a snap button collar and zipper on the outer layer. The Crusader Edition is made specifically for company employees to weather the conditions present at Orison, and features the famous sword and C logo down the front and across the back of the jacket.'), +(5816,'Warden Backpack HighSec','Armor','Backpack','b5b507bd-67ff-4e0b-8acd-d96e041903ac','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nThis hard backpack from Virgil, Ltd. makes travel easy. Whether you need a place to carry your weapons or you\'ve decided to bring some extra rations along for a long journey, this backpack was designed to handle any occasion. The interior features a generous, closeable pocket to keep your small items from falling out of place.\n\nThe HighSec edition features a carbon fiber finish with red accents.'), +(5817,'MISC_Freelancer_Base_SCItem_Seat_CoPilot','Seat','UNDEFINED','30120fa4-8826-4afa-a323-199cfe03b824','','',NULL), +(5818,'Armor_Crate_CZ_Firerat_008','Usable','UNDEFINED','ec18891a-8d88-44a3-9c74-498e2dad4507','','',NULL), +(5819,'350r Ship Armor','Armor','Medium','5110aca5-8e11-43c1-9ad1-cda9c8171214','','','350r Ship Armor'), +(5820,'Caudillo Helmet Steel','Armor','Helmet','1d0a8f9b-263b-4982-82ee-c4ef2502ae49','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAdept at surviving firefights in both atmosphere and in space, the Caudillo helmet provides solid head protection while offering the wearer the stylish look of classical armor thanks to its visually striking metal crest. The Steel variant is being offered as a limited edition run.'), +(5821,'Year of the Rat Envelope','Misc','UNDEFINED','82f3ff55-a11a-4047-bf0a-5e21c261f7e4','','','A gilded red envelope celebrating the Year of the Rat. Exchanging these envelopes is one of the most popular ways of celebrating Red Festival. Often the envelope may include a small amount of credits inside to help those you care about have a strong start in the upcoming cycle. Growing in popularity is the newer tradition of hiding the envelopes as a way of spreading good fortune and prosperity to those that fate has deemed in need.'), +(5822,'ORIG_890J_Dashboard_Pilot','SeatDashboard','UNDEFINED','53c4468b-794b-4e35-a7b4-14103206cf0f','','',NULL), +(5823,'AEGS_Retaliator_Pilot_Dashboard','SeatDashboard','UNDEFINED','d3a2c04d-853a-4da7-a94a-a48dfe93a9e7','','',NULL), +(5824,'table_dining_1_a_2_Seat','Usable','UNDEFINED','2a20a7e7-c8ce-4622-87e4-b942a6cf1450','','',NULL), +(5825,'Lastaprene','Cargo','Cargo','616ae8b4-3adc-4339-aa5c-08aba015adf3','','',NULL), +(5826,'ARGO_SRV_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','80708b53-3de7-4f51-a6ca-369dd5f75a20','','',NULL), +(5827,'Odyssey II Undersuit Yellow/Black','Armor','Undersuit','80707607-69f8-43e4-856f-a6ab7904d53e','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe latest generation of RSI\'s classic Odyssey undersuit features a new rugged design capable of withstanding the harshest of conditions in space or planetside. Built using the latest microweave technology, the Odyssey II undersuit provides hours of comfort in locations that are anything but comfortable.'), +(5828,'VNCL_Stinger_Thruster_Aux_Fixed_02','ManneuverThruster','FixedThruster','d384574b-5be7-4b7e-a595-035a95a7f20d','','',NULL), +(5829,'Carryable_1H_CY_utensil_spoon_1_a','Misc','UNDEFINED','7c8bf02a-8228-49b6-88f1-43bb3f19016e','','',NULL), +(5830,'Brandt Module','MiningModifier','Gun','18a62ae8-e1aa-453f-8631-df928a71abda','','','Manufacturer: Shubin Interstellar\nItem Type: Mining Module (Active)\n\nShatter Damage: -30%\nMining Laser Power: 135%\n\nResistance: +15%\n\nDuration: 60 seconds\nUses: 5\n\nStrategically use the Brandt to boost a mining laser\'s power for sixty seconds. The modulated beam also has the benefit of helping make rocks that shatter less hazardous, though the deposit will be more resistant to the laser\'s affect overall.'), +(5831,'ORIG_400i_Thruster_Retro','ManneuverThruster','Retro','b2a32d6a-5935-4656-8284-7573990e7549','','',NULL), +(5832,'DRAK_Vulture_Component_Scanner','Player','UNDEFINED','02843c56-e7fc-4460-868d-c0a8ce3cd367','','',NULL), +(5833,'ESPR_Prowler_Thruster_Mav_Up','ManneuverThruster','UNDEFINED','6bc7bafa-d791-462a-b1d4-e8dca2fb957f','','',NULL), +(5834,'Eclipse Ambush Camo Livery','Paints','UNDEFINED','eb826dee-a085-481d-9498-24d1e94aa8b8','','','Make the Eclipse harder to spot with the Ambush Camo livery, featuring a camouflage pattern to help break up the visual perception.'), +(5835,'ARGO_RAFT_Thruster_Retro_Right','MainThruster','FixedThruster','96460f4a-160f-46cd-bc9c-f93ffd5df6a7','','',NULL), +(5836,'Grav Lev 1','ManneuverThruster','JointThruster','96a57db1-1133-4192-846f-d48a7cd02aa5','','','Grav Lev 1'), +(5837,'Morozov-SH Helmet Spite','Armor','Helmet','199a5d5f-b575-4863-bfca-ff99bae68675','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(5838,'Locker_Suit_DRAK_Corsair_Thin','Usable','UNDEFINED','f83d262b-c340-417b-9a04-d55bb442e454','','',NULL), +(5839,'Ventra Gloves Red','Char_Clothing_Hands','UNDEFINED','eb0b6443-b5e7-4a8b-95d1-b1b7d96f472d','','','Keep your hands warm and dry with Fiore\'s Ventra gloves. Microstitching creates a snug, tailored fit to keep you looking stylish and warm.'), +(5840,'DoorProximitySensorItem_Ht_Airlock','Sensor','DoorPart','1deb3106-b423-464c-b612-9a63f7b59486','','',NULL), +(5841,'GATS_BallisticCannon_FiringMechanism_S1','WeaponAttachment','FiringMechanism','a581bbbb-0b5a-4435-ad0a-96fb3d8c48e1','','',NULL), +(5842,'Remote Turret','Turret','GunTurret','776455b6-bf38-4418-a20c-5913f7539267','','','Remote Turret'), +(5843,'Deo Shirt Grey','Char_Clothing_Torso_0','UNDEFINED','9d6244fc-eca0-4a07-959b-08802ad88dde','','','Fiore\'s Deo is a slim cut work shirt that\'s as practical as it is timeless. Featuring a high collar and metal neck clasp, the Deo has been a mainstay in business attire.\n\nWomen\'s sizes currently out of stock.'), +(5844,'StorageCage_Time_ZeroG_CustomLoadout','Cargo','UNDEFINED','d375a898-51e0-427c-bf06-481fb9e4a895','','',NULL), +(5845,'Mahoney Nurse Scrub Pants Honeycomb','Char_Clothing_Legs','UNDEFINED','5678c25a-cb19-4075-9b46-f9620a34668a','','','Carrying Capacity: 0.5K µSCU\n\nThe Mahoney Nurse Scrub Pants are made for medical professionals looking for a comfortable but durable fit. They feature two front pockets and a stretch waistband. Moisture wicking and anti-stain fabric makes these pants ready to withstand long shifts and repeated washing.'), +(5846,'Testudo Backpack Nightveil','Armor','Backpack','a22612b1-4479-43fb-9bfb-7c054a0f1de1','','','Item Type: Medium Backpack\nCarrying Capacity: 105K µSCU\nCore Compatibility: Medium & Heavy\n\nThe Testudo backpack may feel as light as a feather in your hands, but it can hold an impressive amount of weight thanks to its use of the same tough yet lightweight plating as the armor set.'), +(5847,'display_box_plastic_4_weapon_opened_005x010x00375_a_2Ports','ShopDisplay','UNDEFINED','7e564ae0-ea39-4f55-910b-d18ec4a587d0','','',NULL), +(5848,'screen_4x3_trejo_tablet','Display','UNDEFINED','ce3a8d99-3454-4cc8-8ce6-ee6bd4ed8317','','',NULL), +(5849,'Seat','Usable','UNDEFINED','6f395568-52e5-4d23-9f87-246eeff9578a','','',NULL), +(5850,'cbd_main_hall_display_case_S6','ShopDisplay','Default','2c59aa60-d46b-47ec-9c0a-b5d32d2d00ce','','',NULL), +(5851,'BEHR_LaserCannon_Barrel_S7','WeaponAttachment','Barrel','4da47d9a-05cc-4108-9bfa-91fb40d90304','','',NULL), +(5852,'Morningstar Helmet Ignitor','Armor','Helmet','22dc0bfb-aca0-4d71-9ae2-3baf2251fa21','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(5853,'Seat','Usable','UNDEFINED','3193fe5d-227d-4c4b-a3c0-ad90efa1c4c9','','',NULL), +(5854,'Parvat Jacket Summer Cedar','Char_Clothing_Torso_1','UNDEFINED','c005c021-af84-4e63-a29f-f45d0869398f','','','Carrying Capacity: 2K µSCU\n\nWeather the cold with this waterproof and insulated jacket from Escar Limited. Featuring a stylish design and unique dual-layer collar, the Parvat will keep you warm when you need it most.'), +(5855,'Furtimo Pants','Char_Clothing_Legs','UNDEFINED','57787f1a-4989-4ec1-8a6a-99c70dec9574','','','Carrying Capacity: 500 µSCU\n\nThe Furtimo pants are sleek, elegant, and under-stated, suitable to both a busy day at the office or a fancy night out. Soft beyond the measure, these pants will make you feel as good as you look.'), +(5856,'mobyGlass Personal Computers','Cargo','Cargo','097254c3-85ff-4a93-a8b8-ebbc7542c5d7','','',NULL), +(5857,'DRAK_Cutlass_Thruster_Maneuver_Top','ManneuverThruster','JointThruster','3db64b54-b710-4597-b382-7b610a330fd8','','',NULL), +(5858,'Overlord Core Riptide','Armor','Torso','ab581449-f467-4d31-bf7d-1495db0c1b6b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12.0 µSCU\nBackpacks: All\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.'), +(5859,'Intrepid-OS','Suit','ThrusterPack','adf15484-152d-4557-8b0e-46a34030b250','','','RSI\'s Intrepid has been a reliable name in flight suit components for decades. The focused nozzle system provides consistent thrust for precise control in zero gravity.'), +(5860,'AEGS_Retaliator_Esc_Pod_Decal_03','Decal','DoorPart','aec20eee-3191-4dac-99e2-f5cdd5cdc520','','',NULL), +(5861,'Mustang Vindicator Livery','Paints','UNDEFINED','79b17dd6-638d-4c78-8bc3-d3092b994885','','','Standard livery for the C.O. Mustang Alpha Vindicator.'), +(5862,'ThermoWeave Coat ASD Edition','Char_Clothing_Torso_1','UNDEFINED','7b1bfb5c-a26c-4244-b2af-4ba1dd243193','','','Carrying Capacity: 1K µSCU\n\nThe ThermoWeave coat provides complete upper body fire and heat defense. It features a high collar and additional frontside protection thanks to a lengthy apron made of aluminized fabric that reflects radiant heat.\n\nWorn by employees who require an extra level of protection in their field, the ASD Edition showcases the reds and greens of the ASD branding.'), +(5863,'Door','Door','UNDEFINED','6c00fe87-0e4f-412a-b632-78e7513c1483','','',NULL), +(5864,'Internal Tank','FuelTank','Fuel','7301f1ac-ed2c-473a-8509-a0d8b2b1f126','','',NULL), +(5865,'Pacifica Hat','Char_Clothing_Hat','UNDEFINED','feae9249-75e3-4b7f-9437-4596fd88c496','','','The Pacifica is a white wide-brimmed sun hat featuring a large decorative flower and striped hat band secured by a gold clasp.'), +(5866,'Seat','SeatAccess','UNDEFINED','dc08814f-dbef-44a7-b8a6-11a6e209a6e0','','',NULL), +(5867,'MISC_Starfarer_CargoGrid_Side','CargoGrid','UNDEFINED','c840d57e-449e-4cf6-b1dc-85e75297013a','','',NULL), +(5868,'ANVL_Valkyrie_Thruster_Main_Aux','MainThruster','FixedThruster','5d53677e-67aa-4987-a673-dd96e1e1d7ac','','',NULL), +(5869,'Radar_Display_Constellation','Display','UNDEFINED','7e671a29-8cd6-4a60-83c9-80d054d18d02','','',NULL), +(5870,'Antium Core Midnight Sun','Armor','Torso','f78d7ac5-5e6d-43e1-9256-d30c0bb4a316','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(5871,'ORIG_400i_Thruster_Main_Sub','MainThruster','FixedThruster','148c6921-bd29-4b2c-b2dd-c3e4594d5eea','','',NULL), +(5872,'Screen','Usable','UNDEFINED','0ef77bd4-8e8e-495d-9c2e-d04253c8164d','','',NULL), +(5873,'SHIELDS','ShieldController','UNDEFINED','b60cc31d-9b0d-44d4-98ad-d3f750388c44','','',NULL), +(5874,'table_booth_4_seat_restaurant','Usable','UNDEFINED','1ec6d261-c9f2-48aa-927a-4a2e1dbe5a71','','',NULL), +(5875,'display_components_pallet_125x125x025_coolers','ShopDisplay','UNDEFINED','72bfc75d-396f-4abe-8935-461b04e60f3c','','',NULL), +(5876,'RSI_Apollo_Ground_Refueling_Port','Door','UNDEFINED','465515d4-7a4d-5780-622d-ed9e7ad7158d','','',NULL), +(5877,'ORC-mkX Arms Iceborn','Armor','Arms','a6ec85a5-feba-4239-88e4-02e1a6e521e1','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(5878,'Venture Legs White','Armor','Legs','8fa06ec9-953c-4de4-8038-abf5b332f7b5','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(5879,'SHIELDS','ShieldController','UNDEFINED','6f0f3f85-3809-48cb-96a7-28dbf99c4475','','',NULL), +(5880,'SureGrip PR-S1 Tractor Beam','TractorBeam','UNDEFINED','a82e22e4-504d-4ade-a625-f421e6e9a220','','','Manufacturer: Greycat Industrial\nMax Angle: 80°\nMax Range: 130 m\nFull Strength Distance: 55 m\n\nThis precision variant of Greycat’s SureGrip tractor beam sacrifices some of the power and range of the base model in exchange for a wider angle of manipulation and greater tether grip, allowing for careful handling of more delicate goods.'), +(5881,'MISC_Freelancer_CargoGrid_Rear_MAX','CargoGrid','UNDEFINED','d23d70d1-a2e2-46d4-a9b6-088cbf94b173','','',NULL), +(5882,'Door Control','Door','UNDEFINED','4ffcd883-b34f-4a3a-bd31-f3e9719e9c39','','',NULL), +(5883,'Strata Arms Heatwave','Armor','Arms','9159d31d-b3ad-418d-9503-0093c440ac1f','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Heatwave edition is primarily black with glowing red highlights.'), +(5884,'Deo Shirt (Modified)','Char_Clothing_Torso_0','UNDEFINED','6ce8e19a-645a-4314-8537-6e36aeea7222','','','This version of Fiore\'s Deo shirt has been modified from its original form. Fiore\'s Deo is a slim cut work shirt that\'s as practical as it is timeless. Featuring a high collar and metal neck clasp, the Deo has been a mainstay in business attire.'), +(5885,'Landlite Boots Black','Char_Clothing_Feet','UNDEFINED','0bae913d-8a94-4f3f-8c37-1f2ccd1a874c','','','Who says work boots can\'t be comfortable? Grindstone\'s Landlite boots are built with a breathable synth-leather material to keep your feet dry, a contoured, memory footbed, and a slip-resistant outsole, making it perfect for whatever worksite you throw at it.'), +(5886,'un_bottle_alcohol_24_decanter_a','Misc','UNDEFINED','d9fd3b69-49c5-49ce-b4a4-a691b21a0e18','','',NULL), +(5887,'Prism \"Disrupt Camo\" Laser Shotgun','Weapon','Medium','d6ebfa6f-082c-46a3-bb3a-3afeed9f94a3','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Shotgun\nClass: Energy (Laser)\n\nBattery Size: 10\nRate of Fire: 120 rpm\nEffective Range: 10m\n\nAttachments: Barrel (S3), Optics (S1), Underbarrel (S2)\n\nFiring powerful shortrange bursts of energy, engineers at Verified Offworld Laser Technologies have developed the Prism laser shotgun so that as the weapon\'s heat-levels rise, the pellets begin fusing together into slug-like projectiles that inflict higher damage on targets. The Disrupt Camo edition utilizes carbon fiber grays and blacks printed in a disruptive pattern to keep your enemies guessing.'), +(5888,'Morningstar Helmet Black','Armor','Helmet','59db00e0-8dfa-41f4-a3ea-d9b58c459780','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(5889,'Vehicle_Screen_MFD_Holographic_MISC_Prospector_LL','Display','UNDEFINED','67bd042b-d61a-441f-ac30-dd63a1f6e8f3','','',NULL), +(5890,'FieldLite Flashlight Yellow','WeaponAttachment','BottomAttachment','1d6b428a-33a8-4074-bd41-fbc6a16c72d1','','','Manufacturer: NV-TAC\nType: Flashlight\nAttachment Point: Underbarrel\nSize: 1\n\nThe FieldLite Yellow is a tough and tactical underbarrel flashlight. Featuring a corrosion-proof body and impact resistant lens, NV-TAC tested the attachment across a variety of environments and conditions to ensure it works when needed most. This special Yellow edition projects a scattered yellow starlike pattern making it preferable for target acquisition at medium distance.'), +(5891,'RSI_Bengal_SCItem_Seat_CoPilot','Seat','UNDEFINED','429862b6-e1b3-4868-8bb5-e781506c7912','','',NULL), +(5892,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','aa6b28f3-be84-4e2f-bd03-7ad51b9cd204','','','Aegis Gladius - Decoy Launcher'), +(5893,'Carrack Miniature','Misc','UNDEFINED','0807d0fb-0fb1-4b2c-8927-4d3638ec32dd','','','Takuetsu has finally set their expert eye on the Carrack. Using schematics supplied by Anvil Aerospace, this intricately detailed miniature captures the look and spirit of the beloved exploration ship that\'s spawned countless adventures across the empire.'), +(5894,'PH - hdh_pants_02_01_02','Char_Clothing_Legs','UNDEFINED','b7e32efd-d7b8-485f-9309-90c1d2fa0293','','','Carrying Capacity: 7.3K µSCU\n\nStay warm and dry on rainy days in the Zelena pants and the Bisbee boots. Both made with water-repellant materials and built-in sweat-wicking technology, they\'ll be your go-to choice for adventures on even the most hostile worlds.'), +(5895,'Radar_Display_ORIG_890','Display','UNDEFINED','6f14dcef-8063-4a00-b3fa-6f488a520baf','','',NULL), +(5896,'Aurora Mk I MR Ship Armor','Armor','Medium','26c1d2ac-8830-4171-a46b-44991748ddef','','','Aurora Mk I MR Ship Armor'), +(5897,'Flight Blade','FlightController','UNDEFINED','13f858eb-aea1-4f51-8670-be6682d08770','','',NULL), +(5898,'BEHR_BallisticGatling_Barrel_S7','WeaponAttachment','Barrel','d38823dd-9f28-40a1-a40b-9d10e9aec835','','',NULL), +(5899,'Railing_Straight_3m_Hurston_Lorville_Glass_A','Usable','UNDEFINED','8bce5029-d101-49ae-9051-5d9a2a2b9a29','','',NULL), +(5900,'Bexalite','Cargo','Cargo','290048c7-1a35-4156-97e1-73d0f8a29257','','',NULL), +(5901,'Tin','Cargo','Cargo','300172b7-fb5c-4251-9b72-4d4539f46cc7','','',NULL), +(5902,'Mahoney Nurse Scrub Top Primrose','Char_Clothing_Torso_1','UNDEFINED','cc820abe-5826-49a7-83e0-4d6fbfe79f3e','','','Carrying Capacity: 0.4K µSCU\n\nThe Mahoney Nurse Scrub shirt is made for medical professionals looking an accommodating and comfortable fit. This top has a pocket and strips of fabric forming subtle geometric patterns on the right shoulder. It\'s also made with moisture wicking and anti-stain fabric ready to withstand long shifts and repeated washing.'), +(5903,'Door Control','Door','UNDEFINED','e1d601e6-d4e3-4c99-8c52-6b217850cf49','','',NULL), +(5904,'RSI_Zeus_Wing_Right_Cargo','AttachedPart','UNDEFINED','ed670369-6d5e-4e4a-8817-d9290c6c0e3e','','',NULL), +(5905,'Seat','Usable','UNDEFINED','a1312aa3-8f26-4122-aaae-21cdb22344fa','','',NULL), +(5906,'Seat','SeatAccess','UNDEFINED','a65fdbf8-bb5f-482b-8a66-396c05fafe51','','',NULL), +(5907,'Venture Helmet Orange','Armor','Helmet','98a596a5-b8d2-4664-911b-06c38715b8cb','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover.'), +(5908,'One Light Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','486d2684-a5f6-4146-bf6c-e72876f08ff7','','','During Luminalia, we\'re all one family. Celebrate with your loved ones in immense joy with this festive shirt from City Lights, crafted with high-quality, ultra soft fabric that\'s made to last.'), +(5909,'OMNI-CFS-Diamond Flight Suit','Armor','Undersuit','924f5657-b59d-49fd-8897-a8588c114db5','','','@LOC_PLACEHOLDER'), +(5910,'AEGS_Sabre_Raven_Thruster_Mav_Joint_03','ManneuverThruster','JointThruster','d854a2ad-c564-45ea-aa59-eee066596807','','',NULL), +(5911,'facial_hair_011','Char_Head_Beard','UNDEFINED','59bb4f34-dd05-4f40-93f9-0161642598e0','','',NULL), +(5912,'Cyclone Frostbite Camo Livery','Paints','UNDEFINED','09dcd495-0d4a-4ab3-bebd-d8d5d3131e49','','','Embody the winter winds with the Frostbite Camo livery for your Cyclone.'), +(5913,'AEGS_Sabre_Raven_Thruster_Retro','ManneuverThruster','FixedThruster','554bacc8-e6cf-4aea-9a4d-304992591a92','','',NULL), +(5914,'Missile Rack','MissileLauncher','MissileRack','79a98595-7c79-4438-8216-0802043b4d34','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 1\nMissiles: 1xS1\n\nBehring’s MSD-111 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 1 hardpoint for the reliable and effective launch of one S1 missile.'), +(5915,'display_components_pallet_250x125x025_c_cooler','ShopDisplay','UNDEFINED','e01cdc63-8ebc-492e-997b-4498f1919ce6','','',NULL), +(5916,'UrbEx Boots Emerald','Char_Clothing_Feet','UNDEFINED','35630f33-308d-42f2-8e2b-268759ad1166','','','From bustling backstreets to crowded clubs, the UrbEx boots will make your next step a bold one. The boots blend a stylish design with reinforced high ankle support and ultra durable outsoles.'), +(5917,'Personal Storage','Cargo','UNDEFINED','5db88e9a-5b14-4f10-bfd4-896a0201a810','','',NULL), +(5918,'Salvation Salvage Head','SalvageHead','UNDEFINED','f11efdf3-d564-4122-be35-6d00be27ac9a','','','Manufacturer: Roberts Space Industries\nItem Type: Salvage Head\nSize: 1\n\nModule Capacity: 1 (Fixed)\n\nRoberts Space Industries designed this bespoke salvage head for the Salvation allowing the ship to reclaim a wide variety of materials with little fuss ensuring that the operator can stay focused on what matters most.'), +(5919,'FBL-8a Core (Modified)','Armor','Torso','2234981b-41bf-4b20-bceb-225fe99730f6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -32 / 62 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nBased on CDS\' FBL-8a combat armor, this set has been modified from its original form. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible.'), +(5920,'mobiGlas Snow Casing','MobiGlas','Personal','9703b6d3-1437-433e-bf0a-cee6428c6d41','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(5921,'Retaliator Twilight Livery','Paints','UNDEFINED','6e761c1f-327b-4a67-af6e-bff5d1eab70c','','','Customize your Retaliator with this fragmented grey livery.'), +(5922,'Door Control','Door','UNDEFINED','701d08c7-9a4e-451c-a7f9-5bf6efeb6dfd','','',NULL), +(5923,'ARGO_ATLS_IKTI_Shield_R','Misc','UNDEFINED','30423c72-12c4-4ce7-b9c1-dabc2ce1161b','','',NULL), +(5924,'Cerrado Boots Slate','Char_Clothing_Feet','UNDEFINED','527556a2-b385-4a76-9996-e77cf86df5c6','','','These trail-rated Cerrado Boots from R6 Pro are comfortable, waterproof, and built to last. The tall cuff and lacing at the top provide a seamless combination of exceptional ankle support and the stability.'), +(5925,'SnowBlind','Cooler','UNDEFINED','f50cc3fd-dd83-4aec-b74a-270428f22797','','','Item Type: Cooler\nManufacturer: Tyler Design & Tech\nSize: 1\nGrade: A\nClass: Stealth\n\nAn IR signature that is running hot is a surefire way to alert the entire sector to your whereabouts and can often potentially prove to be dangerous. With the Tyler Design & Tech Snowblind cooling system onboard you can significantly reduce your heat emissions while keeping your ship running within optimal thermal conditions.'), +(5926,'Geist Armor Legs Whiteout','Armor','Legs','3234c6a8-4540-4e97-beb7-cfd1ddc6869d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(5927,'Waylite Shoes Gold','Char_Clothing_Feet','UNDEFINED','c3e0e250-cb52-4812-9c32-966532a005ed','','','Stay on your feet all day with Northstar\'s Waylite. These slip resistant shoes utilize comfortable memory foam and shock absorbent technology to make these casual sneakers perfect for the office or home.\n\nWomen\'s sizes currently out of stock.'), +(5928,'ORC-mkX Core Iceborn','Armor','Torso','ad233b20-771e-43d5-af37-ec6e80036eb6','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(5929,'Pitambu','Cargo','Cargo','01dd3fba-9457-47c0-bca1-2d09b5eaa23c','','',NULL), +(5930,'Seat','SeatAccess','UNDEFINED','dd40d856-e915-4894-9d30-a81e9b679228','','',NULL), +(5931,'Strata Backpack Greycat Edition','Armor','Backpack','cad74bcb-b5aa-451c-ab1d-3732913b3ced','','','Item Type: Medium Backpack\nCarrying Capacity: 127.5K µSCU\nCore Compatibility: Medium & Heavy\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Greycat Edition features the colors and logo of the company.'), +(5932,'Access','SeatAccess','UNDEFINED','b05d8e8a-9375-4111-9ede-ce423ba15e84','','',NULL), +(5933,'Railing_Straight_4m_Hurston_Lorville_Glass_B','Usable','UNDEFINED','0b318540-2e27-4392-8f72-98d827841a63','','',NULL), +(5934,'Carryable_1H_SQ_Datapad_Fluff_Orb_GenericGang','Misc','UNDEFINED','dcfea4ac-2567-4725-9b2a-82923c78b12a','','',NULL), +(5935,'Bed','Usable','UNDEFINED','7391a402-6116-4706-8d7d-885ceafbc4d6','','',NULL), +(5936,'Argo MPUV Ship Armor','Armor','Medium','2fe59ba6-4974-4696-8e85-d42e277e8e40','','','Argo MPUV Ship Armor'), +(5937,'DRAK_Golem_OX_CargoGrid_Main','CargoGrid','UNDEFINED','8bec7005-ff5a-45cb-b022-f71c44ccad0a','','',NULL), +(5938,'Projector_HUD_Pilot_MOLE','Display','UNDEFINED','3c162077-81d9-41cb-bd3e-431706b8098a','','',NULL), +(5939,'ANVL_Hurricane_Thruster_Main','MainThruster','FixedThruster','8a200cb9-8723-4a3c-99a6-ab1af087457e','','',NULL), +(5940,'TRGT. STATUS','Seat','UNDEFINED','00692c3a-698b-4e94-8534-d6660558960d','','',NULL), +(5941,'Weapon_Rack_1_BEHR_Shotgun_AmmoOnly_001','Usable','UNDEFINED','88aec69d-c4c8-4ae0-9bb9-64ec9bf5a6ab','','',NULL), +(5942,'Aves Legs','Armor','Legs','74dd7626-27c8-4b4c-bda4-8192f251f4d5','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nHonor and embody the Tevarin aesthetic with the Aves armor. Cutting edge manufacturing techniques were used to place white, red, grey, and black plating perfectly to fit the Human form and evoke the shape language imbued into the Tevarin\'s iconic ships. This medium armor from CC\'s Conversions is both sensational and practical, providing solid protection while keeping you light on your feet. When paired with the Aves helmet, the suit combines for a striking and unforgettable look.'), +(5943,'Medical Bed','Usable','UNDEFINED','687f889c-1657-4911-9716-cfae06907c5f','','',NULL), +(5944,'Weapon_Rack_Cz_Firerat_003','Usable','UNDEFINED','1dfe35db-c9d4-4947-8515-9c42a076ae05','','',NULL), +(5945,'MISC_Razor_Dashboard_LX','SeatDashboard','UNDEFINED','f416f3ad-b7f2-4f63-93f1-49546c1bb0a2','','',NULL), +(5946,'MSD-322 Missile Rack','MissileLauncher','MissileRack','9756d84e-0ee1-4536-af14-68b439027ecb','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 3\nMissiles: 2xS2\n\nBehring’s MSD-322 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 3 hardpoint for the reliable and effective launch of two S2 missiles.'), +(5947,'Manned Turret','TurretBase','MannedTurret','83d9206c-85b2-491c-b312-d31f6c634374','','',NULL), +(5948,'Door Control','Door','UNDEFINED','25de405a-b5cb-4d99-a3f0-7734921a910f','','',NULL), +(5949,'Cataby Backpack MPUV-1C Edition','Armor','Backpack','9f23e726-7e6c-4272-9f1a-0cb3b0998ac4','','','Item Type: Light Backpack\nCarrying Capacity: 75K µSCU\nCore Compatibility: All\n\nThe Cataby is a stylish backpack built by Hardin Tactical to withstand rigorous adventures. The unique rectangle shape features a hard frame fitted around a durable and expandable softshell with two zippered pockets allowing for easy access to essentials. The MPUV-1C Edition also comes with a commemorative patch to celebrate the Argo Cargo\'s 2951 Best in Show victory.'), +(5950,'Cataby Backpack Lifeforce Edition','Armor','Backpack','89211f2f-f43c-4764-8a48-474a43d92549','','','Item Type: Light Backpack\nCarrying Capacity: 75K µSCU\nCore Compatibility: All\n\nThe Cataby is a stylish backpack built by Hardin Tactical to withstand rigorous adventures. The unique rectangle shape features a hard frame fitted around a durable and expandable softshell with two zippered pockets allowing for easy access to essentials. The MPUV-1C Edition also comes with a commemorative patch to celebrate the Argo Cargo\'s 2951 Best in Show victory.'), +(5951,'TRGT. STATUS','Seat','UNDEFINED','495a2ccd-287a-42ee-af9d-20aec9666937','','',NULL), +(5952,'MRCK_S02_ORIG_125a_Quad_S02','MissileLauncher','MissileRack','67996d31-5bf4-46df-a566-d845932b6953','','',NULL), +(5953,'Railing_Straight_4m_LowTech_Util_Stairs_04x01_c','Usable','UNDEFINED','4d36dc99-8f9e-4c1c-8cac-ed536d9fcb11','','',NULL), +(5954,'INTK_AEGS_Avenger_Titan','FuelIntake','Fuel','9fad851c-c561-44a8-8cbe-74ecd8c22969','','',NULL), +(5955,'Fidele','Radar','MidRangeRadar','a212bfbf-a0d3-439e-86c9-c97078bd0720','','','Item Type: Radar\nManufacturer: Groupe Nouveau Paradigme\nSize: 3\nGrade: D\nClass: Military\n\nFocusing on the core features of a radar, the Fidele operates efficiently even in battle conditions.'), +(5956,'Overlord Helmet Mirador','Armor','Helmet','f6ea0e0f-c163-47ac-9af7-8b3422b86cc1','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord helmet delivers heavy armor protection while using a special lightweight composite plating that makes it feel like nothing\'s there. Repurposed ocular sensors normally found on ships keep you attuned to your surroundings and, when worn with the full Overlord suit, the high neck collar provides the helmet extra support and protection. Visor is AR crosshair compatible.\n\nThe Mirador edition is white with burnished copper elements.'), +(5957,'RSI_Aurora_GS_CL_Thruster_Main','MainThruster','FixedThruster','384bae34-0c22-45f7-9778-ae6e23258175','','',NULL), +(5958,'MISC_Hull_C_Dashboard_Captain','SeatDashboard','UNDEFINED','8650545c-580b-4a0b-aad9-ae48e3877bb4','','',NULL), +(5959,'C8 Pisces Invictus Blue and Gold Livery','Paints','UNDEFINED','b39c1b3c-adee-47d1-abc5-100f6c1e309d','','','Featuring a vibrant blue base color and gold highlights, the Invictus Blue and Gold Livery will give your C8 Pisces a striking style.'), +(5960,'Flight Blade','FlightController','UNDEFINED','4761018e-1c7a-4ae7-8db4-28807608d647','','',NULL), +(5961,'Winter-Star','Cooler','UNDEFINED','ec636cbd-21c6-4b9c-a095-c8ef04f1a9fa','','','Item Type: Cooler\nManufacturer: J-Span \nSize: 1\nGrade: D\nClass: Civilian\n\nJoin the J-Span family by snagging the Winter-Star cooler for your ship. This entry-level model lacks flash but its strong performance record and price point make it a popular choice for pilots across the UEE.'), +(5962,'ARMR_DRAK_Golem','Armor','Medium','dfd7e4cb-bd8d-4da1-9def-33e80694c237','','',NULL), +(5963,'Prim Shoes Dark Green','Char_Clothing_Feet','UNDEFINED','cd1ecb82-8830-4a19-8a26-0e1361ebad79','','','Professional yet casual, the Prim utilizes cutting-edge synthetic construction to provide maximum comfort and a shine that won\'t fade.'), +(5964,'Smoltz Light (Bottle)','Drink','Bottle','0017de29-f080-4ae0-b2dc-e6dca13b287e','','','HEI: 18\nEffects: Cognitive Impairment, Dehydrating\n\nCrafted from select rice and barley for a traditional flavor passed down by generations of brewmasters. That’s the taste of Smoltz Light.'), +(5965,'Distilled Spirits','Cargo','Cargo','af9cbcc0-1583-476c-bd08-e81f7adc6d06','','',NULL), +(5966,'S0 Helix','Mining','Gun','8c95c978-9e47-46ec-88e3-a0662c13d76a','','','Manufacturer: Thermyte Concern\nItem Type: Mining Laser\nSize: S0\nGrade: B\n \nOptimal Range: 30 m\nMaximum Range: 30 m\nGather Radius: 1 m\nExtraction Throughput: 5 cSCU/s\n \nPower Transfer: 50\n \nInstability: 0%\nResistance: 0 %\nOptimal Charge Window Size: -40 %\nOptimal Charge Window Rate: +20 %\nThrottle min: 15%\n\nMost powerful mining laser, strongest laser'), +(5967,'S-38 Magazine (20 cap)','WeaponAttachment','Magazine','8ec810e2-2d9e-4bbf-9b64-c603aaef01db','','','Item Type: Magazine\nCapacity: 20\n\nThis magazine for the Behring S-38 pistol holds twenty 10mm rounds.'), +(5968,'Fizzz Muscat','Drink','Can','2553f95f-acd8-4372-9fca-30a2aea5a77c','','','HEI: 16\nEffects: Energizing, Hyper-Metabolic\n\nA refreshing burst of fizzzy muscat flavor!'), +(5969,'Remote Turret','Turret','GunTurret','cffe164c-f0ad-45f4-b3a1-324495b092a9','','','Remote Turret'), +(5970,'LH86 \"Voyager\" Pistol','Weapon','Small','4d8d3254-5f17-46e5-a862-5669c442c6a3','','','Manufacturer: Gemini \nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 25\nRate Of Fire: 1200 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe LH86 from Gemini is a compact kinetic handgun designed for personal defense and close-quarter combat. A keen eye on ergonomics and balance coupled with hardy construction makes this pistol a natural fit for any shooter in any number of hostile conditions. The LH86 also comes with Tritium low-light sight and a twenty-five round magazine.'), +(5971,'Maintenance_Workzone_Below','Usable','UNDEFINED','9c1b690d-906f-4dce-9b09-4b0d8079ab00','','',NULL), +(5972,'RSI_Zeus_CargoGrid_Main','CargoGrid','UNDEFINED','ff8b37cf-1875-4e64-ae77-1760dec2d2e7','','',NULL), +(5973,'Paint_Valkyrie_Procyon','Paints','UNDEFINED','1feb8489-5287-4f72-88a0-4d589ba2c3a9','','',NULL), +(5974,'Razorback Pants Yellow','Char_Clothing_Legs','UNDEFINED','63adf032-98af-41fe-a4bd-34be9cc66a83','','','Carrying Capacity: 2K µSCU\n\nDMC\'s Razorback pants are made to be worn. Built from industrial quality material, they feature reinforced kneepads to prevent tears on the job and stay rugged yet comfortable.\n\nWomen\'s sizes currently out of stock.'), +(5975,'test_gats_gattlings_s3','Weapon','Gun','c605b5b2-e1a7-4736-b3e7-01c79d2aff9c','','','Hang this dynamic recruiting poster from the UEEN on your wall and show your support for the United Earth Empire Navy!'), +(5976,'Feynmaline','Cargo','Cargo','e0acc152-438c-45d0-b34e-2965870b97e4','','','The paramorphic crystalline structure of this mineral is extremely volatile. When extra energy is introduced, as is typical with modern mining, the ore will often explosively degrade into the more stably structured Janalite. This instability makes Feynamline very dangerous to acquire but also extremely valuable as an industrial anti-matter precursor if it can be properly harvested.'), +(5977,'counter_display_mod_end_0038x01x01_NoTopPorts','ShopDisplay','UNDEFINED','5bf2fe11-69b3-45ba-b9fb-51cb71cde728','','',NULL), +(5978,'Carryable_1H_SQ_Datapad_Fluff_Orb_HathorGroup_006','Misc','UNDEFINED','19d8266b-b744-4046-9e36-85665b9a1abc','','',NULL), +(5979,'Constellation ArcCorp Livery','Paints','UNDEFINED','78c15b15-709f-4822-94d6-0ae07e322469','','','The ArcCorp livery for the Constellation features the company\'s logo atop a maroon base paint with black and yellow highlights.'), +(5980,'DockingTube_Fuel_Ports_DRAK_Dragonfly','DockingCollar','UNDEFINED','613c4590-9e11-45ea-927a-5a0569c5c5dd','','',NULL), +(5981,'ORIG_350r_Thruster_Mav_Fixed_01_Bottom','ManneuverThruster','FixedThruster','14e16229-2ab7-41df-b968-e268b5851f52','','',NULL), +(5982,'Seat','SeatAccess','UNDEFINED','8c637ee0-1dbd-4471-964a-07cf2836b0dc','','',NULL), +(5983,'SHIELDS','ShieldController','UNDEFINED','d020ed57-024c-4425-88da-f9c93546fdb6','','',NULL), +(5984,'Overlord Legs Mirador','Armor','Legs','40daf42d-cd29-48f0-a820-9720ac015c29','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.\n\nThe Mirador edition is white with burnished copper elements.'), +(5985,'ORIG_135c_Thruster_Retro_Left','ManneuverThruster','JointThruster','639d77d0-17f3-4850-aff8-e0dded594dad','','',NULL), +(5986,'Tolo Jacket Crusader Edition Blue','Char_Clothing_Torso_1','UNDEFINED','0c3e3cd6-4376-4458-a653-55e9aaf9dfb0','','','Carrying Capacity: 1K µSCU\n\nA creatively integrated dickey gives the Tolo its fashionable and unconventional look. This three quarter sleeve shirt also features small epaulettes perched atop each shoulder. The Crusader Edition was made to be worn by Crusader employees and features the company\'s sword & C logo on each shoulder.'), +(5987,'Mining Arm','ToolArm','UNDEFINED','4e5b552a-8023-4b59-8282-c27b58a4c2c6','','',NULL), +(5988,'FSK-8 \"Bloodline\" Combat Knife ','Weapon','Knife','e1704491-defc-4b51-ac66-341f9a157767','','','Manufacturer: UltiFlex\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nThe FSK-8 Combat Knife from UltiFlex is as sparse a weapon as you can get. While many become enamored with dazzling tech of modern weaponry, UltiFlex has focused on making a simple effective combat tool. Featuring a balanced 1055 carbon steel blade honed to a razor\'s edge, this knife is capable of handling all the abuse you can throw at it.'), +(5989,'Waldron Pants Blue','Char_Clothing_Legs','UNDEFINED','2e70e815-a09e-44ea-b897-db2789acffd0','','','Carrying Capacity: 0.5K µSCU\n\nThe Waldron suit fuses classic style with contemporary flourishes in a way that\'s become definitively OpalSky. The repeating geometric pattern travels the length of the jacket and pants to create a cutting edge look that will turn heads wherever you go.'), +(5990,'SHIELDS','ShieldController','UNDEFINED','5b9f65a0-af4e-406d-982a-4b55990fba8d','','',NULL), +(5991,'DockingTube_Fuel_Ports_ORIG_890Jump','DockingCollar','UNDEFINED','e5d7a11b-9732-4ca2-b1eb-470a717fbfd9','','',NULL), +(5992,'Seat','Usable','UNDEFINED','2b4b1b1e-2bfc-42a2-823f-0e2f2c4d301d','','',NULL), +(5993,'fruit_tray_2_e','Misc','UNDEFINED','c8430ab7-1a1f-4adb-9ca7-4a0c6eb7a09a','','',NULL), +(5994,'Glacosite','Cargo','Cargo','733e63a4-ff22-4a68-9f70-2575faaa1036','','','As glaciers form, heavier mineral contents sink over time and are then crushed by the weight above as the ice deforms and flows. When the glacier recedes, Glacosite deposits are left behind. White and blue in color, the crystals form in long shiny strands that almost are cotton-like in appearance. Glacosite has found specialized commercial use since it is an extremely light and durable insulator.'), +(5995,'ARGO_MOTH_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','068fd711-bf7c-4ee4-a799-110a6999c547','','',NULL), +(5996,'Remote Turret','Turret','GunTurret','521057c1-159e-400d-be3b-a0f7230d4549','','',NULL), +(5997,'Seat','Usable','UNDEFINED','71caa84d-72f6-4e47-8108-dac440a210b4','','',NULL), +(5998,'Veggie Dog','Food','Junk','63817eec-15df-4121-9e62-011e8efcc7c5','','','NDR: 34\nEffects: Dehydrating, Hyper-Metabolic\n\nA grilled veggie sausage topped with a spicy fermented hot sauce and sweet mustard .'), +(5999,'Guardian Peninsula Livery','Paints','UNDEFINED','5149f401-4438-4674-b7a5-46647bfe4edf','','','Shades of stony tans and earthen browns create a grounded look for the Peninsula livery.'), +(6000,'Calico Helmet Desert','Armor','Helmet','179656e2-e05b-4c16-b85a-50b4f6dc086e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -39 / 69 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDesigned to be an EVA-compliant light combat suit, the Calico set is the perfect armor suit for infiltrators, snipers, thieves, basically anyone who likes to avoid kicking in doors. Built out of a combination of PAB3 armor and a custom helmet, it can help you weather some incoming fire without slowing you down.'), +(6001,'Gladius Standard Flight Blade','FlightController','UNDEFINED','bcb3fcff-6502-4adf-b77d-4b2be3e32571','','','Manufacturer: Aegis Dynamics\nType: Flight Blade\n\nThis is the standard issue flight blade for the Aegis Gladius.'), +(6002,'Ready-Up Helmet Seagreen','Char_Clothing_Hat','UNDEFINED','87b78a62-4849-4ede-8109-7293f24af823','','','The Ready-Up is a dependable, affordable softshell helmet alternative. Built from space-age plastic, the Ready-Up provides a vacuum-ready seal to keep you breathing for longer.'), +(6003,'Grav Lev 1','MainThruster','UNDEFINED','a5b7fc97-3a3a-45c4-ab61-fbe88fa91a43','','','Grav Lev 1'), +(6004,'Seat','SeatAccess','UNDEFINED','c22b41d8-62b1-4b92-8d26-d0385c85ee7f','','',NULL), +(6005,'SECURITY','DoorController','UNDEFINED','4a9ebf31-a405-4b68-9886-b4a47bd1b61d','','',NULL), +(6006,'Aril Helmet Hazard','Armor','Helmet','a9305217-006d-4e46-833e-dff89c913b25','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(6007,'Palatino Backpack Necropolis','Armor','Backpack','2821c4a9-6eb5-4cde-91e3-e2d862bb419a','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. The associated backpack seamlessly integrates into the armor, matching its silhouette while also providing ample storage.'), +(6008,'Seat','Usable','UNDEFINED','138db334-8468-4d61-9294-984170538408','','',NULL), +(6009,'Fluorine','Cargo','Cargo','f6fee092-8598-48a4-a1fc-e13bc0f9724f','','',NULL), +(6010,'KLWE_MassDriver_Ventilation_S2','WeaponAttachment','Ventilation','25bb3dd1-1455-4e05-a2d8-628ecfff21dd','','',NULL), +(6011,'Door Control','Door','UNDEFINED','718a1c3a-3987-4c1c-950a-b43239f0609f','','',NULL), +(6012,'Stuck at Olisar T-Shirt','Char_Clothing_Torso_0','UNDEFINED','50c96e42-c3e0-43ad-912f-5b0dbed65fab','','','The Stuck at Olisar shirt recreates the infamous ASOP terminal screen frequently seen at Port Olisar. Anyone who\'s visited this bustling transportation hub can relate to the gnawing fear of seeing this screen appear as a result of Olisar officials clearing abandoned, crashed, or improperly parked spacecraft from their landing pads.'), +(6013,'DoorProximitySensor_1_5x2_5x1_5','Sensor','DoorPart','721910b9-83e0-4f6d-be55-71f379acd13f','','',NULL), +(6014,'Door Control','ControlPanel','DoorPart','028101f8-a9b9-4ec5-8dc0-b732bc170cf3','','',NULL), +(6015,'INTK_ARGO_MPUV','FuelIntake','Fuel','2e0a5325-8d81-4cad-8bbd-db96d6cc99e6','','',NULL), +(6016,'Carryable_cleaning_sponge_4_a','Misc','UNDEFINED','a81cfe79-aab9-4052-97e9-401632e44afa','','',NULL), +(6017,'Harlowe Shirt Green','Char_Clothing_Torso_0','UNDEFINED','fb1416ad-1c22-49be-a3e4-d419480fa389','','','Capable as being worn on its own or as a base for layers, this long-sleeve henley style shirt from Alejo Brothers keeps you stylish and comfortable.'), +(6018,'Razorback Pants Purple','Char_Clothing_Legs','UNDEFINED','ede951e2-8a67-49a5-ab04-8b001761629c','','','Carrying Capacity: 2K µSCU\n\nDMC\'s Razorback pants are made to be worn. Built from industrial quality material, they feature reinforced kneepads to prevent tears on the job and stay rugged yet comfortable.\n\nWomen\'s sizes currently out of stock.'), +(6019,'Zeta-Prolanide','Cargo','Small','a5f201ce-1745-4049-9d06-493bf2336d7e','','','This chemical is an industrial reactant that has found widespread use neutralizing irradiated materials. Because of how volatile it is, it must be kept in an electrically charged state or else a rapid exothermic reaction may occur before desired.'), +(6020,'Hull C Poster','Misc','Utility','96102348-e7a3-46e8-acb7-add6a6d81559','','','Honor an industrial workhorse with this unique and visually stunning poster of the MISC Hull C. Featuring the ship\'s silhouette set against a colorful swirling spacescape, the poster highlights the Hull C\'s iconic design by having its spindle extended.'), +(6021,'shelf_hat_02x01x01_03Ports','ShopDisplay','Default','b7f92d4c-d8b0-4f13-b797-bc71b7f26e08','','',NULL), +(6022,'AcryliPlex Composite','Cargo','Cargo','5cf15409-b36e-4e04-8545-fd25eec63ae0','','',NULL), +(6023,'table_booth_2_seat_restaurant','Usable','UNDEFINED','5a652f80-9236-4c8c-9a44-ebaca700b67b','','',NULL), +(6024,'Remote Turret','Turret','GunTurret','0a7f69a5-be49-4afb-9fd5-9177b541550e','','','Multitask on the battlefield with this remote turret system. Featuring precise controls and a wide field of fire, the turret allows pilots to add combat support to their resume.'), +(6025,'Internal Tank','FuelTank','Fuel','9ff5fca0-bee5-4891-810e-d73ed4651c91','','',NULL), +(6026,'Door Control','Door','UNDEFINED','85a7504e-3b6f-4465-9fa8-5571136376a8','','',NULL), +(6027,'Carryable_1H_SQ_literature_book_8_a','Misc','UNDEFINED','8bdf0812-936f-4508-9249-07d28be22c3a','','',NULL), +(6028,'M6A Cannon','Weapon','Gun','52c1793e-5610-4daa-aafe-a8cf55e60283','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 4\n\nBehring\'s M6A is a versatile high velocity energy autocannon, designed to provide to keep your enemy at range without sacrificing your stopping power.'), +(6029,'Aril Backpack Red Alert','Armor','Backpack','edee517a-f240-4037-ba34-ef840711b845','','','Item Type: Medium Backpack\nCarrying Capacity: 85K µSCU\nCore Compatibility: Medium & Heavy\n \nOriginally designed for miners, the Aril armor comes with an attachable backpack that can accommodate a variety of tools and supplies to keep your hands free. The Aril backpack is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(6030,'Lillo Pants Violet','Char_Clothing_Legs','UNDEFINED','6a0556e6-ac1c-4f07-a7de-4ab83aca909e','','','Carrying Capacity: 0.5K µSCU\n\nThese slim cut pants from Fiore give you a tailored feel at a fraction of the cost. Built from space-age weaves, the Lillo are a low maintenance, high impact addition to your office wardrobe.'), +(6031,'Defiance Helmet Desert','Armor','Helmet','ee2a6fca-ceb9-4b4b-80ab-560a1a1f4e8d','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Defiance features a fully enclosed battle helmet constructed with two layers of composite weaves underneath armor plating, providing you maximum protection against penetrating and concussive attacks. Visor is AR crosshair compatible.'), +(6032,'Bed','Usable','UNDEFINED','035004eb-cb39-4023-bda1-dc5c6538854e','','',NULL), +(6033,'AEGS_Door_Decal_Hangar_01','Decal','DoorPart','8b9229f0-ac7b-409a-9ddb-fba44c0896a8','','',NULL), +(6034,'Food_Vent_Slug','Food','Consumable','56a77112-d4f1-4f60-9d5c-29dc825b2719','','',NULL), +(6035,'Idris Nightbreak Livery','Paints','UNDEFINED','0483f65f-827c-48e0-81ec-cd326cb89d1a','','','Discreetly soar through the night sky in the Idris with the Nightbreak livery, which is primarily black with red highlights.'), +(6036,'AEGS_Door_Decal_WallPanel_01','Decal','DoorPart','3e66d2e5-4f3a-4f69-8446-525197d4e776','','',NULL), +(6037,'Lynx Core Black','Armor','Torso','40bf4581-9232-4f16-9c7e-e56caa885547','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(6038,'LeMarque Pants Seagreen','Char_Clothing_Legs','UNDEFINED','55d4413e-35ce-412a-9904-6d6b7ed17c66','','','Carrying Capacity: 0.5K µSCU\n\nClassic cuts never go out of style. A staple of any wardrobe, Derion\'s LeMarque are built for work or play and feature microseam pleats and wrinkle-free material that will guarantee that you\'ll get years out of this classic.\n\nWomen\'s sizes currently out of stock.'), +(6039,'Pite','Char_Head_Piercings','UNDEFINED','e80e6781-7bf6-4591-b38e-45e851462386','','',NULL), +(6040,'Door Control','Door','UNDEFINED','b37e6a4c-b945-44aa-860a-c1a5d87a4b34','','',NULL), +(6041,'Carryable_1H_CY_bottle_bar_07_tequila_a','Misc','UNDEFINED','546428f2-8a56-45c7-979e-18ff34010514','','',NULL), +(6042,'sc_nvy_deckcrew_helmet_01_01_04','Char_Clothing_Hat','UNDEFINED','d15d7968-300d-4785-b8a5-587a95074140','','',NULL), +(6043,'Gamma Duo (2x Holographic)','WeaponAttachment','IronSight','a9d588a7-1023-410e-a001-73a973700faa','','','Manufacturer: NV-TAC\nType: Projection \nAttachment Point: Optic\nMagnification: 2x\nAim Time: +15%\nSize: 1\n\nNV-TAC extensively tested the Gamma Duo across a range of extreme temperatures to assure that thermal drift doesn\'t affect the accuracy of this 2x magnifier sight.'), +(6044,'Scrap','Cargo','Cargo','4aa4a685-6ccd-48b6-9bce-8bc53838b0de','','',NULL), +(6045,'DRAK_Mule_CargoGrid_Side','Cargo','UNDEFINED','6520ba21-ad14-4de1-a17c-0c916196fdda','','',NULL), +(6046,'Palatino Core Mark I','Armor','Torso','1458af3d-cdbd-4ad0-862c-e2bc0de06958','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: All\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower. The Mark I variant is primarily icy white with blue and red highlights.'), +(6047,'Landlite Boots Blue','Char_Clothing_Feet','UNDEFINED','20721828-1aa7-4f21-8caa-46d2f0809535','','','Who says work boots can\'t be comfortable? Grindstone\'s Landlite boots are built with a breathable synth-leather material to keep your feet dry, a contoured, memory footbed, and a slip-resistant outsole, making it perfect for whatever worksite you throw at it.'), +(6048,'Iron (Ore)','Cargo','Cargo','81a1dd3e-3bb6-4fd5-977d-a69e1ca24752','','',NULL), +(6049,'Ouratite','Cargo','Cargo','7e084c2c-bdef-40e4-af4f-3308785a23bf','','',NULL), +(6050,'IndVest Jacket Orange','Char_Clothing_Torso_1','UNDEFINED','98da5564-3626-4605-aa6e-b6156d052b14','','','Carrying Capacity: 5K µSCU\n\nKeep your tools within easy reach with Stegman\'s IndVest. Made from industrial strength materials, this is a rare jacket that\'s both stylish and sensible.'), +(6051,'RSI_Polaris_Bridge_Pilot_RADR_Display','Display','UNDEFINED','94c1eb40-0414-409b-8e2c-f58c6aa08fee','','',NULL), +(6052,'Ketchum Beanie White','Char_Clothing_Hat','UNDEFINED','eec3094a-3af5-4771-b969-ac6ff48ffb45','','','Complete your cool-weather wardrobe with the classic Ketchum beanie from Alejo Brothers.'), +(6053,'Manned Turret','TurretBase','MannedTurret','b497e796-4633-4093-a53d-494bdd24ab53','','',NULL), +(6054,'burrito_2_shop_1x9_a','ShopDisplay','Default','4c0e7941-5cb2-4700-a240-d7b8bf3cb035','','',NULL), +(6055,'Stud','Char_Head_Piercings','UNDEFINED','23b00afd-d305-484c-b254-7a6211156d8c','','',NULL), +(6056,'Remote Turret','Turret','GunTurret','86be150c-8c7f-47f8-9392-1026189d6003','','','Remote Turret'), +(6057,'Francis the Stormwal Plushie','Misc','UNDEFINED','e14a6a2b-65b6-4cca-a08e-baacb9ac0f28','','','Francis the Stormwal loves sailing through the clouds in Crusader\'s atmosphere. Much like Crusader\'s ships, Francis is big, graceful, and quite the sight to behold. Now this majestic creature can accompany you on a journey through the stars with this soft and squeezable plushie.'), +(6058,'Seat','Usable','UNDEFINED','7fcb8682-eaaf-4220-9b14-8ce222d5dd16','','',NULL), +(6059,'Door Control','Door','UNDEFINED','cbd6d70a-90d9-4616-b715-0343a9698e2e','','',NULL), +(6060,'Constellation Andromeda Ship Armor','Armor','Medium','430a8559-5969-4e7c-b630-cdf1bc77a82f','','','Constellation Andromeda Ship Armor'), +(6061,'Sabir','Gadget','Gadget','d539a485-4a68-4426-8678-2cff115e6051','','','Manufacturer: Shubin Interstellar\nItem Type: Mining Gadget\n\nOptimal Charge Window Size: +50%\nResistance: -50%\n\nInstability: +15%\n\nMake that tough deposit easier to crack with the Sabir. It uses a special sensor to modulate laser power and adjust it to that particular deposit. The effect increases instability but also provides a dramatic drop in resistance and an increased optimal charge window to make mining it easier. \n\nManufacturer Warning! Using more than one mining gadget per deposit can result in a catastrophic explosion.'), +(6062,'H_Dashboard_Projector_HUD_CNOU_Nomad','Display','UNDEFINED','186599e9-6efc-40b4-a31b-ec94a4b315be','','',NULL), +(6063,'Flight Blade','FlightController','UNDEFINED','dde42ad0-3a0b-4032-bf3c-694bb88982c1','','',NULL), +(6064,'XNAA_SanTokYai_SeatAccess_Nacelle_Left','SeatAccess','UNDEFINED','440c7115-680d-417b-b398-19463b2aa189','','',NULL), +(6065,'AAT-34 Turret','Turret','MannedTurret','ca675af7-567d-4738-a2ab-ba9863aa3680','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(6066,'CR-60','ExternalFuelTank','UNDEFINED','7dc3f399-6659-4d62-919d-be21c4990581','','','Manufacturer: MISC\nItem Type: Fuel Pod\nFlow Rate: 1.15 SCU/s\nCapacity: 60 SCU\n\nThe standard fuel pod of the Starfarer, the CR-60 was designed by MISC to be a well balanced fuel storage option ready to tackle a wide variety of jobs.'), +(6067,'Relay','Relay','UNDEFINED','fd9d74e7-8b0a-46d3-8d14-7bf7c5e93900','','',NULL), +(6068,'Personal Storage','Cargo','UNDEFINED','b3b32627-6742-4e70-9c47-23e160b8056a','','',NULL), +(6069,'Aurora Mk I LX Ship Armor','Armor','Medium','c523f087-c641-4470-970d-89346a987b80','','','Aurora Mk I LX Ship Armor'), +(6070,'Palatino Core','Armor','Torso','cef54c0b-81d1-4ccb-a67f-f7304f198184','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: All\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower.'), +(6071,'RSI_Perseus_Thruster_Main_Top_Left','MainThruster','UNDEFINED','cd8a9943-e305-4255-a556-01e35d9118ed','','',NULL), +(6072,'Seat','Usable','UNDEFINED','fe09a63d-67d4-4c6d-898b-6e6a1928384c','','',NULL), +(6073,'Table_Desk_1_Seat_ConstantineHurston','Usable','UNDEFINED','38a5f50a-5b7f-47c1-8f96-051695be9270','','',NULL), +(6074,'AEGS_Sabre_Firebird_Thruster_Retro_Left','ManneuverThruster','FixedThruster','5407ff36-9aa2-4cab-8ab3-3655de90348e','','',NULL), +(6075,'Odyssey II Helmet Starcrossed','Armor','Helmet','006277f0-e535-469e-9784-6f4ac3ba89b1','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up. This special Starcrossed edition is modeled after the armor worn by Yuri Ilyin in the famous 25th century vid, Coramor, which inspired the eponymous lovers\' festival.'), +(6076,'Internal Tank','FuelTank','Fuel','5535a6bb-9ee8-42de-a8dd-e63b093227bb','','',NULL), +(6077,'DRAK_Cutlass_Red_Thruster_Maneuver_Left','ManneuverThruster','JointThruster','e6ef510e-7daa-488f-8532-eb1ec72c9b28','','',NULL), +(6078,'Book','Misc','UNDEFINED','9aed5038-8a13-4121-88c8-daac1737beba','','',NULL), +(6079,'Gladiator Best in Show 2955 Livery','Paints','UNDEFINED','bab78d5e-806b-4318-b540-be51b85749d5','','','Commemorate the Gladiator making the final four of the 2955 Ship Showdown with this striking metallic orange and black Best in Show livery.'), +(6080,'Uncut SLAM','Cargo','Cargo','58950ef8-7d2e-4173-83cb-8b23b1901f63','','',NULL), +(6081,'Venture Arms Voyager','Armor','Arms','7c46e680-7c2d-4b55-9db8-3b0a65eb3eb4','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRobert Space Industries’ Venture Explorer Suit provides exceptional protection against the dangers of space. Designed for those who don\'t know where their next adventure might go, the suit combines comfort and safety without sacrificing mobility. The special Voyager edition features a red and black color scheme with white highlights. The result is a stylish suit that looks as good as it performs.'), +(6082,'Carrack 2953 Auspicious Red Rooster Livery','Paints','UNDEFINED','d5ddce8b-c147-4eaa-83e6-e7684da3dbf6','','','Seek peace and prosperity in the new year with the Auspicious Red Rooster livery. Outfit your ship with this bold red base paint complemented by gold accents and a stylized graphic of a rooster.'), +(6083,'counter_display_mod_center_a_01x01x01_03Ports_HackingTools','ShopDisplay','UNDEFINED','c634d7be-2967-4507-b7a8-f1463df171e1','','',NULL), +(6084,'MISC_Starfarer_SCItem_Seat_CoPilot','Seat','UNDEFINED','89b30f9e-2fae-4f4b-a6ea-59a5d3c819a5','','',NULL), +(6085,'Door Control','DockingAnimator','UNDEFINED','6c3d1f45-2051-47bf-9d4c-30e103649af1','','',NULL), +(6086,'Hardean Jacket and Shirt Croon','Char_Clothing_Torso_1','UNDEFINED','703499dc-c294-44b3-9f3d-c5c98b5ac566','','','Carrying Capacity: 2K µSCU\n\nThis maroon and brown collarless synth-leather jacket from Escar Limited features quilted detailing around the opening and down the sleeves, and pairs effortlessly with a bold button-down, tropical-print shirt in light brown.'), +(6087,'ADP Arms Seagreen','Armor','Arms','2fb6bcac-f717-4600-be64-b9590565c91c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(6088,'Box_100x050x050','Cargo','Small','1a9c6118-bc61-4b06-bd3e-eeb6d8edd50e','','',NULL), +(6089,'RSI_Zeus_Collar_Cargo_L','AttachedPart','UNDEFINED','501637e7-5f9e-400e-b6a7-a062f1ddf451','','',NULL), +(6090,'Door','Door','UNDEFINED','1755f48b-20ca-4c63-be2d-7bd4e6895a03','','',NULL), +(6091,'display_components_pallet_250x125x025_a','ShopDisplay','UNDEFINED','39a4660f-9084-4230-acd2-c567879c8781','','',NULL), +(6092,'Large Artifact Fragment (Pristine)','Misc','UNDEFINED','b3cc386a-6dc4-46fa-bc73-238a27d080f2','','','A large artifact fragment of unknown origin and made of an unidentified material. Though broken, it\'s otherwise considered in pristine condition. The fragment features intricate etchings that subtly glow green and is overlaid with gold-colored metallic banding.'), +(6093,'DustUp Arms Firestarter','Armor','Arms','b3d88e1c-122e-4801-96fc-3ecb71cc06ff','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -60 / 90 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe DustUp has your back if you’re looking to get into some trouble. The body plating is built off of the same CDS undersuit used by the UEE Marines, it adds reconstructed Omni-Role mkII pieces to give you solid protection against incoming fire, but the real gem is the modified helmet. That thing was built to withstand explosions, so it should totally protect you against some shots. The whole thing’s been reasonably tested against vacuum too, so you can feel free to EVA all you want without worrying about dying.'), +(6094,'Ship Showdown \'52 Mercury Coin','Misc','Utility','d98891bc-537f-4f2b-a577-2ceacda730da','','','The Mercury Star Runner delivered a strong showing in the 2952 Ship Showdown with its second place finish. Ringed in blue, this coin commemorates the iconic courier ship with its image on one side and the Crusader Industries logo on the other.'), +(6095,'facial_hair_052','Char_Head_Beard','UNDEFINED','49aea185-213d-4d62-9311-64a2d34d6e6b','','',NULL), +(6096,'Radar_Display_Hawk','Display','UNDEFINED','1be59916-084a-4174-a1db-f000e3552890','','',NULL), +(6097,'Internal Tank','QuantumFuelTank','QuantumFuel','2ae682c9-7877-4a15-b34a-ba564a42706f','','',NULL), +(6098,'Amioshi Plague','Cargo','Cargo','2ca3e398-1632-4a2f-a43a-d49451935976','','',NULL), +(6099,'Guerra Pants Finch','Char_Clothing_Legs','UNDEFINED','ac1063d5-1b00-4284-82e8-cedf64915eb1','','','The Guerra pants by Alejo Brothers are a staple for daily wear. The synthetic fabric ensures adequate protection from the general wear and tear of frontier life while remaining easy to patch up if the need arises.'), +(6100,'Seat','SeatAccess','UNDEFINED','3199e99a-faa6-401d-8f23-74808605f520','','',NULL), +(6101,'Door Control','Door','UNDEFINED','fcc80ee4-6c63-4ef4-b9f5-3b8f4b3b50f4','','',NULL), +(6102,'DoorProximitySensor_1_5x2_5x1_5_Directional_Proximity','Sensor','DoorPart','c543675d-3d18-4156-8190-2cb85022e7fb','','',NULL), +(6103,'INTK_RSI_Aurora_Mk2','FuelIntake','Fuel','19014248-379a-4462-90f8-276f72b0d3cd','','',NULL), +(6104,'MPUV-1T TSB Flight Blade','FlightController','UNDEFINED','66110a0d-a301-4b59-a368-aae72c67a9fa','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Argo MPUV-1T with the TSB Flight Blade from Broad & Rabiee. By re-allocating lateral thrust resources, you can expect your ship deliver increased top speeds in the straightaway.'), +(6105,'Seat','SeatAccess','UNDEFINED','95fdbfe1-ecc0-4cbe-8b0c-de36fa6377fb','','',NULL), +(6106,'Geist Armor Core Rogue','Armor','Torso','911df062-bafa-43e0-9ddc-d8a4330a5df2','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(6107,'Vehicle_Screen_MFD_Holographic_MISC_Fortune_RR','Display','UNDEFINED','6021ad39-0d6c-428a-a679-1e996de3447b','','',NULL), +(6108,'Bed','Usable','UNDEFINED','c1150417-fbc1-4574-998a-d54692a3cf9f','','',NULL), +(6109,'MISC_Freelancer_Base_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','310c4b61-0b5e-496e-99f3-aff1bdff5d54','','',NULL), +(6110,'ANVL_F7_Mk2_NoseCap','Misc','UNDEFINED','10014564-8f8c-4d50-8f9d-5a24bb3fdf2f','','',NULL), +(6111,'Cinch Scraper Module','SalvageModifier','UNDEFINED','089f7dc6-8ff1-415b-832d-7a96b92afdfc','','','Manufacturer: Greycat Industrial\nItem Type: Scraper Module\nExtraction Speed: 0.5/1.5\nRadius: 1.5m\nExtraction Efficiency: 90%\n\nThe Cinch is a precision scraper module that produces a small, focused beam perfect for extracting resources from every nook and cranny on a hull. While the beam\'s relatively small size requires more time to remove Recycled Material Composite (RMC), its excellent extraction rate will make the added effort worth it.'), +(6112,'Seat','SeatAccess','UNDEFINED','0a6729dd-c7b0-4507-8fc8-f0b097d6b222','','',NULL), +(6113,'Personal Storage','Cargo','UNDEFINED','7724ee89-90f9-4522-9dee-84044fc2096f','','',NULL), +(6114,'Tin','Cargo','Cargo','bd2d0839-d3b7-4da8-8760-c9bc8cd8377d','','',NULL), +(6115,'Aril Helmet Harvester','Armor','Helmet','f9376a41-f4a1-49ec-9863-dc7b3c427f79','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(6116,'Overlord Helmet Supernova','Armor','Helmet','a173cc6f-4c6d-4f31-8ce7-67b9b6a0fe37','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord helmet delivers heavy armor protection while using a special lightweight composite plating that makes it feel like nothing\'s there. Repurposed ocular sensors normally found on ships keep you attuned to your surroundings and, when worn with the full Overlord suit, the high neck collar provides the helmet extra support and protection. Visor is AR crosshair compatible.'), +(6117,'Drake T-Shirt Yellow Logo','Char_Clothing_Torso_0','UNDEFINED','f965bfdf-024b-4099-ae79-67514ea963ed','','','The success of Drake Interplanetary has gone a long way to bring legitimate business back to the Magnus system. Support the scrappy manufacturer of affordable, utilitarian ships with this black shirt emblazoned with the company name in yellow.'), +(6118,'ORIG_600_CargoGrid_Main','CargoGrid','UNDEFINED','f3c9e1b7-9cbc-43f0-881b-a5c8e15d0ddd','','',NULL), +(6119,'Internal Tank','QuantumFuelTank','QuantumFuel','23ca914c-f537-4dd6-a887-3c7a2cf9a1b5','','',NULL), +(6120,'Idris Ironcore Livery','Paints','UNDEFINED','8da0c78f-9bf9-44a2-9e0d-c3b4902265eb','','','The chrome and black colors of the Ironcore livery helps the Idris obscure itself against the dark expanse of space.'), +(6121,'Deo Shirt','Char_Clothing_Torso_0','UNDEFINED','a15ab92a-927e-4da8-b195-26880be50343','','','Fiore\'s Deo is a slim cut work shirt that\'s as practical as it is timeless. Featuring a high collar and metal neck clasp, the Deo has been a mainstay in business attire.\n\nWomen\'s sizes currently out of stock.'), +(6122,'Buccaneer Polar Livery','Paints','UNDEFINED','dccdf68c-4656-4c5e-a617-b9a0ba96542b','','','Modify your Buccaneer with this white and grey livery specifically designed for the 2951 IAE.'), +(6123,'Door_Ship_Sensor_Proximity_2x4x1_5','Sensor','DoorPart','5620b7f0-179e-4fd9-85ec-5dc5c18fe0e4','','',NULL), +(6124,'MISC_Starlancer_TAC_Turret_Exterior','Misc','UNDEFINED','afff9093-6f29-4e0c-8865-e1a664831b83','','',NULL), +(6125,'Internal Tank','QuantumFuelTank','QuantumFuel','39a499cb-50c6-4504-b236-941ffa6639c3','','',NULL), +(6126,'Cutlass Foundation Fest Livery','Paints','UNDEFINED','dcb994c4-8372-4843-ba4c-5b91cac1f5d2','','','Foundation Festival is an opportunity for Citizens and Civilians to come together and strengthen the foundation of our community. Show your commitment to a better universe with this custom livery.'), +(6127,'Arbor MH2 Mining Laser','Mining','Gun','4435898e-a6cc-4f51-ab2a-805d0cf1a44a','','','Manufacturer: Greycat Industrial\nItem Type: Mining Laser \nSize: 2\n\nOptimal Range: 90m\nMaximum Range: 270m\n\nMining Laser Power: 480 - 2400\nExtraction Laser Power: 2590\n\nModule Slots: 2\n\nLaser Instability: -35%\nOptimal Charge Window Size: +40%\nInert Material Level: -40%\n\nResistance: +25%\n\nThe Arbor MH2 is the size two version of Greycat\'s heralded Arbor mining laser series. Like the smaller variant, the Arbor MH2\'s solid, reliable design found favor among industrial and solo operations for balancing speed and safety while also featuring a special filtration system that reduces the amount of inert material collected.'), +(6128,'weapon_underbarrel_light_narrow_blue_01','WeaponAttachment','Light','69b9fbc3-d478-4622-9fc4-0970813f7065','','',NULL), +(6129,'Strata Backpack Heatwave','Armor','Backpack','7524df82-4578-464b-a917-d3b6c31462f6','','','Item Type: Medium Backpack\nCarrying Capacity: 127.5K µSCU\nCore Compatibility: Medium & Heavy\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Heatwave edition is primarily black with glowing red highlights.'), +(6130,'ORC-mkX Arms Arctic','Armor','Arms','dbe0522a-da6c-481b-8060-0466c35087ce','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(6131,'Carryable_1H_SQ_Datapad_Fluff_Orb_HathorGroup_004','Misc','UNDEFINED','5a3f780b-9970-44a4-a462-3fc63880c990','','',NULL), +(6132,'Flight Blade','FlightController','UNDEFINED','4b9d2970-91e2-4106-a9db-31dbdeb97bd5','','',NULL), +(6133,'MSD-543 Missile Rack','MissileLauncher','MissileRack','3099ec4d-a1f1-4413-b579-7dd0aecaa7e3','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 5\nMissiles: 4xS3\n\nBehring’s MSD-543 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 5 hardpoint for the reliable and effective launch of four S3 missiles.'), +(6134,'Orbgn_None_Consumable_Keycard_Security','FPS_Consumable','Hacking','48e499a7-c72b-45d7-a63d-f03d58f82317','','',NULL), +(6135,'Tungsten','Cargo','Small','71ee8b89-5a81-40c4-89db-03fdd9c5da5f','','','Used in many different alloys, tungsten in its pure form becomes malleable while maintaining its hardness.'), +(6136,'DRAK_Caterpillar_SCItem_Dashboard_TractorBeam','SeatDashboard','UNDEFINED','97b1ce9a-456e-4dab-a85a-7467d96b43b5','','',NULL), +(6137,'H_Dashboard_Projector_HUD_RSI_Polaris_S_R','Display','UNDEFINED','fc56b942-761f-4878-b2ca-02bb044bbe3e','','',NULL), +(6138,'Construction Pieces','Cargo','Cargo','c1cca0ed-684d-4426-8d41-122ffd24b3a6','','','Can be processed at refineries into Construction Material.'), +(6139,'Lux Flashlight','WeaponAttachment','BottomAttachment','01ad699f-cf07-4775-b363-75b915094740','','','Manufacturer: VOLT\nType: Flashlight\nAttachment Point: Underbarrel\nSize: 1\n\nConstructed using a reinforced metallic casing and fracture-less glass, VOLT\'s Lux Flashlight gives you light when you need it most. Once equipped, it is able to communicate with the weapon\'s own sensors to activate automatically when the weapon is in use.'), +(6140,'Table_Booth_4_Seat','Usable','UNDEFINED','1c7bc839-fa26-49cf-bafa-c5ef71ea6d17','','',NULL), +(6141,'Flight Blade','FlightController','UNDEFINED','fd88d5c1-fed3-4694-9a1d-9b825e9c3c60','','',NULL), +(6142,'Beryl','Cargo','Cargo','ec4adde2-d3cf-417c-9006-28a56b0b6b40','','',NULL), +(6143,'Access','SeatAccess','UNDEFINED','48b98188-045c-47a5-b312-61d3e55e8fd7','','',NULL), +(6144,'ANVL_Door_Decal_Carrack_Deck3','Decal','DoorPart','918dd128-dfc0-4784-9f5e-f0778be3b502','','',NULL), +(6145,'SureGrip HV-S1 Tractor Beam','TractorBeam','UNDEFINED','355b26c5-a3b7-4c34-ad8b-d281473715e8','','','Manufacturer: Greycat Industrial\nItem Type: Tractor Beam\nMax Angle: 60°\nMax Range: 130 m\nFull Strength Distance: 55 m\n\nThis heavy-duty variant of Greycat’s SureGrip tractor beam sacrifices range in exchange for additional power to handle larger and heavier objects making it an essential tool in a variety of industrial applications.'), +(6146,'Flight Blade','FlightController','UNDEFINED','d95ba0cf-e1c8-441e-a459-5d6a0fc0518d','','',NULL), +(6147,'Weapon_Rack_1_NONE_Special_Ballistic_Common_001','Usable','UNDEFINED','46f420e3-9903-4eda-8f12-3ad046482241','','',NULL), +(6148,'AEGS_Idris_CargoGrid_CargoRoom_Small','CargoGrid','UNDEFINED','78b89d80-30c0-4c94-93b2-1750a2957d20','','',NULL), +(6149,'RSI_Aurora_Mk2_Thruster_Mav_Top','ManneuverThruster','UNDEFINED','a9405d40-1fd5-4182-a11b-b2ef913d8663','','',NULL), +(6150,'AEGS_Vanguard_Harbinger_Thruster_Mav_Joint','ManneuverThruster','JointThruster','59d49f56-370a-4235-ab8f-bf4cdd749645','','',NULL), +(6151,'Colonialism_Outpost_RN_Solar_Panel','Sensor','UNDEFINED','0b12a0a9-2454-4d31-97b5-a82b68d061a0','','',NULL), +(6152,'ANVL_Carrack_CargoGrid_Mid','CargoGrid','UNDEFINED','0da0802f-931f-40d6-94b9-602a20e35ef3','','',NULL), +(6153,'Medical Bed','Usable','UNDEFINED','201b94da-5f63-4136-996c-655c5dff7753','','',NULL), +(6154,'Citadel-SE Core White','Armor','Torso','87ad4aac-4ab8-4a4d-a76e-91b785eb0026','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(6155,'Hercules Starlifter Argent Livery','Paints','UNDEFINED','21884177-d340-454c-bab2-e4171da3eb18','','','A metallic silver finish makes the Argent livery a striking choice for the Hercules Starlifter.'), +(6156,'Polaris Bit','Misc','Harvestable','4b697f15-c1e2-4b35-9b79-6bff5db9021b','','','Similar to Wikelo\'s favors, Polaris Bits are a unique marker to indicate that a specified allocation of quantainium have been successfully delivered to Wikelo. These bits can be put towards the purchase of a Polaris.'), +(6157,'Raw Ouratite','Cargo','Cargo','25da498c-5cbc-49e9-b351-c5db6bf588b9','E','',NULL), +(6158,'INTK_CRUS_Starlifter','FuelIntake','Fuel','17fe546a-dd02-4157-84c1-4ed965be4ccf','','',NULL), +(6159,'Waldron Pants White','Char_Clothing_Legs','UNDEFINED','75a2e15a-60c1-49cd-838e-de3cad6c2037','','','Carrying Capacity: 0.5K µSCU\n\nThe Waldron suit fuses classic style with contemporary flourishes in a way that\'s become definitively OpalSky. The repeating geometric pattern travels the length of the jacket and pants to create a cutting edge look that will turn heads wherever you go.'), +(6160,'Door Control','Door','UNDEFINED','cf79aca9-5edd-4831-8251-8d2bcf15196e','','',NULL), +(6161,'Internal Tank','FuelTank','Fuel','d604401c-57cf-435e-85e6-06250bc753e8','','',NULL), +(6162,'Bed','Usable','UNDEFINED','ca57a30e-0a49-4c16-8f21-9a1751c91895','','',NULL), +(6163,'TRGT. STATUS','Seat','UNDEFINED','dcdbca05-4136-4001-bb37-3f5486bcbe56','','',NULL), +(6164,'INTK_ANVL_Hornet_F7A_Mk2','FuelIntake','Fuel','8084aba8-124c-422b-87cd-5e30ac3bdfc6','','',NULL), +(6165,'Davin Work Gloves Green','Char_Clothing_Hands','UNDEFINED','4c9243b7-c464-46a3-8b83-53d8ae6d9726','','','Field-tested for over fifty years, you can find Davin work gloves at numerous sites and ships around the Empire. Stegman\'s rugged construction and comfort lining have made them a customer favorite.'), +(6166,'Siebe Helmet Tidal Wave','Armor','Helmet','07ed2516-d212-41d0-8bad-0dadd8cfd507','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nDurability and a classic aesthetic combine with the Siebe helmet; designed by Caldera to thrive amidst extreme conditions found both in space and atmosphere. Resilient yet lightweight plating and an impact resistant visor provide premium protection, while an integrated monitoring system helps protect the wearer from environmental fluctuations.'), +(6167,'SHIELDS','ShieldController','UNDEFINED','c65cddd3-4717-4dc4-b446-5fa72bbcc2fd','','',NULL), +(6168,'Door Control','ControlPanel','DoorPart','d94b90b3-ed19-47a9-875c-6002b535c34b','','',NULL), +(6169,'Internal Tank','FuelTank','Fuel','144b87a7-db8c-4d48-82bb-053a1f28a654','','',NULL), +(6170,'PH - hdh_boots_01_01_17','Char_Clothing_Feet','UNDEFINED','0194151e-e684-4948-851c-a62176211a94','','','Built to last, the Paradan boots from Habidash are simple, sturdy, and reliable. The outer layer of the boots is made from a thick synthetic material that will protect the wearer from water, sand, or snow, while the inside features a pliable foam that ensures the boots will remain comfortable for years to come.'), +(6171,'MISC_Hull_A_CargoPlate','CargoGrid','UNDEFINED','3f73dc4b-abc5-448b-a449-f02627697d4a','','',NULL), +(6172,'Access','SeatAccess','UNDEFINED','b8c2ec18-d1c0-412e-890c-3b07db4fa092','','',NULL), +(6173,'RSI_Apollo_EmergencyLights_Right','AttachedPart','UNDEFINED','28a2a89d-c8b6-474f-9b34-efdcba23d6ad','','',NULL), +(6174,'KRIG_P72_Archimedes_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','0f4bbb82-e2ab-4ba3-baa1-2d88c811a102','','',NULL), +(6175,'Bo-Go (Crawdad)','Food','Tin','cd647532-f57d-49ff-80d1-714feef1c9c1','','','NDR: 30\nEffects: None\n\nCroshaw’s signature meat and seafood stew is now available the Empire over! \'Crawdad\' flavor puts front and center the delicious crustacean loved by the people of Angeli.'), +(6176,'CRUS_Starlifter_Thruster_VTOL_Wing_Left','MainThruster','FixedThruster','54e70a9f-d27a-4951-9419-970cc76b92ed','','',NULL), +(6177,'Detara Jacket','Char_Clothing_Torso_1','UNDEFINED','354a3fcd-1002-41ab-8989-1998577c6ae8','','','Carrying Capacity:1000 µSCU\n\nThe Detara Jacket by Habidash weaves several long panels of durable fabric together to create a unique silhouette well suited to harsh environments.'), +(6178,'XDL Monocular Rangefinder','Weapon','Gadget','08124949-6620-431c-96e3-65107e22dc9d','','','The highly accurate XDL Monocular Rangefinder from Behring is as suitable on an expedition as it is on the battlefield. Ruggedly constructed with high-quality lenses, easy-to-read display, and a light-amplification mode, the XDL provides 10x magnification to reliably provide exact-distance laser measurements on faraway targets.'), +(6179,'rod_legs_02x01x04_05Ports','ShopDisplay','Default','2897200a-40a3-43a3-92d9-f0e46e9fd2b1','','',NULL), +(6180,'ORC-mkV Legs Seagreen','Armor','Legs','a514dfdf-fe27-4921-87ef-81b47b49b844','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(6181,'Zeus Crusader Livery','Paints','UNDEFINED','afea861e-01c3-433a-8f7a-56b655b05ffc','','','The Crusader livery for the Zeus features the company\'s logo atop a light blue base paint with black and white highlights.'), +(6182,'Kino Shoes Green','Char_Clothing_Feet','UNDEFINED','f7ce4655-e424-45db-a948-156481ea2dcc','','','These two-tone slip-on shoes are comfortable enough for casual wear, but stylish enough for the workplace.'), +(6183,'Lynx Legs Twilight','Armor','Legs','976c0c1e-3724-4d2b-9192-7b27d7f2e6b0','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(6184,'Pink QuikFlare','Weapon','Grenade','742670bd-0f9c-4209-a589-598bd9b27caf','','','Manufacturer: Shubin Interstellar\n\nIlluminate the way forward or signal for help with the Pink QuikFlare from Shubin Interstellar. For centuries, miners have counted on this flare as part of their core toolkit, thanks to its tried and true design and durability that ensures it stays ablaze in the various harsh weather and difficult atmospheric conditions encountered across the \'verse.'), +(6185,'AmmoBox_GATS_BallisticGatling_Mounted_S1','AmmoBox','Magazine','7364eae7-deb4-46cf-b2db-0db7a5b7c21b','','','@LOC_PLACEHOLDER'), +(6186,'Ridgewalker Boots','Char_Clothing_Feet','UNDEFINED','273750b1-9ce4-4116-8a65-399ac773e890','','','Functional style meets modern comfort with the Ridgewalker boots. Made with a lightweight yet durable synthetic leather, these boots feature a custom cushioned footbed and total traction soles that will keep you on your feet for hours. Fit for adventure or fashion the Ridgewalker boots are perfect for any occasion.'), +(6187,'INTK_CNOU_Mustang_Gamma','FuelIntake','Fuel','eb40218f-ad4c-4e02-b93b-aeb8ae461c35','','',NULL), +(6188,'ARGO_ATLS_GEO_Backpack','Usable','UNDEFINED','3f53c75f-524e-4a33-bcc4-dfd2719800ad','','',NULL), +(6189,'ANVL_F7CR_RearAntenna','Misc','UNDEFINED','045b1d87-9e12-4fc3-ad6d-b319856fc290','','',NULL), +(6190,'Medical Bed','Usable','UNDEFINED','8c3eb41a-6498-4bb5-a6f1-2cf0c28a4db9','','',NULL), +(6191,'Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','b3dfb441-7b8f-4ba4-835d-4ecd6b4a8e5b','','','Joker Defcon Flares Ammo'), +(6192,'Carryable_1H_CY_weight_dumbbell_1_24kg_a','Misc','UNDEFINED','1daffa69-bb91-40e1-89f2-aa5b6438699f','','',NULL), +(6193,'Inquisitor Legs Green','Armor','Legs','9b6d2a06-c408-4b25-a234-488523cd8d2b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(6194,'ORC-mkX Helmet (XenoThreat v2)','Armor','Helmet','91d4c4bd-d197-4da1-b570-27fc18e00dd7','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 93 °C\n\nThis version of CDS\' ORC-mkX combat armor has been modified from its original form. The mark X is part of CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility. Visor is AR crosshair compatible.'), +(6195,'Medical Bed','Usable','UNDEFINED','dabc5f27-d95c-4625-97d7-351e1ff3cc7c','','',NULL), +(6196,'Carryable_utensil_fork','Misc','UNDEFINED','70dec8c2-9679-4966-a2c7-3a6fae4084a6','','',NULL), +(6197,'hooks_torso1_03x01x04_03Ports_LongAllowed','ShopDisplay','Default','9d428102-5a8e-4887-9ea0-fe11206397ff','','',NULL), +(6198,'AEGS_Javelin_SCItem_Seat_Bridge_Left_RemoteTurret_Blocked','Seat','UNDEFINED','e7ea85e8-35fe-4b57-87e0-0bd1446260de','','',NULL), +(6199,'Calico Legs Tactical','Armor','Legs','132f3822-b981-4b61-8358-02df0f7c1f4d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -39 / 69 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nDesigned to be an EVA-compliant light combat suit, the Calico set is the perfect armor suit for infiltrators, snipers, thieves, basically anyone who likes to avoid kicking in doors. Built out of a combination of PAB3 armor and a custom helmet, it can help you weather some incoming fire without slowing you down.'), +(6200,'AEGS_Retaliator_OC_Front_Bomber','Room','UNDEFINED','555db475-75d0-4048-b701-81b9a7fd98dc','','',NULL), +(6201,'Spirit Ruby Livery','Paints','UNDEFINED','c7a87df1-5372-4060-a504-dccab04f987f','','','The deep red of this livery enhances the already bold lines of the Crusader Spirit, while the subtle taupe and navy highlights give it extra panache.'), +(6202,'Corbel Core Patina','Armor','Torso','3e9b3246-d5a8-415b-9857-6cc210efe871','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nOriginally designed as a strength enhancement suit to give factory workers better lifting power, CDS found wider application in utilizing its defensive capabilities. It\'s triple-enforced armor plating provides extreme physical protection, with deliberate placing of materials to protect the most vulnerable parts of the body. A series of pneumatic levers offer increased flexibility in the joints, alleviating pressure and weight in key areas to create an accessible and highly protective armor despite its heavy weight.\n\nThe Patina edition offers a grounded look combining soft teal with bronze.'), +(6203,'Aluminum','Cargo','Cargo','d1659021-b5b6-4846-a83f-dc051b9ce0c8','','',NULL), +(6204,'CRUS_Starlifter_SCItem_Turret_Seat_Left','Seat','UNDEFINED','cb736ad2-32e2-432b-b431-9f2b299dc7b9','','',NULL), +(6205,'display_gadgets_multitool_01','ShopDisplay','UNDEFINED','fa03840e-6b82-4b68-bc5a-f0f697c18f7e','','',NULL), +(6206,'Flight Blade','FlightController','UNDEFINED','b75eb304-d1ee-499d-ba94-b6471b99a44c','','',NULL), +(6207,'AAT-34 Turret','Turret','MannedTurret','1f7dbd2a-871e-42ff-907d-d4f3546c6f88','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(6208,'Strife Mass Driver Cannon','Weapon','Gun','86630fcf-09c3-4def-a7b4-9385cbc05a42','','','Manufacturer: Apocalypse Arms\nItem Type: Mass Driver Cannon\nSize: 2\n\nIt always pays to be prepared, and if misfortune ever does strike, you’re going to be glad you have an Apocalypse Arms Strife Mass Driver handy. Its electromagnetic accelerators may be a little power hungry, but it makes up for it with how rapidly it can fire its high velocity projectiles. Watching it tear through your target is enough to make any bad day a little bit better. Just be careful not to let it overheat.'), +(6209,'Citadel Core Dark Red','Armor','Torso','ab06c2dd-33bb-4f2a-a4c8-de991b501f16','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure.'), +(6210,'MSD-313 Missile Rack','BombLauncher','BombRack','4394a178-7e74-4943-9538-2139f65839fd','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 3\nMissiles: 1xS3\n\nBehring’s MSD-313 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 3 hardpoint for the reliable and effective launch of one S3 missile.'), +(6211,'ARMR_ESPR_Talon','Armor','Medium','e6fdaa19-7ec0-4e16-b2d9-3a5a4d6dfa9f','','',NULL), +(6212,'TRGT. STATUS','Seat','UNDEFINED','d21c83dd-54bd-4f3d-b288-039022c85814','','',NULL), +(6213,'Internal Tank','QuantumFuelTank','QuantumFuel','66116c07-3d01-409f-948c-ddd9559e16a7','','',NULL), +(6214,'Venture Core Sienna','Armor','Torso','46d0dd26-bfc7-4a40-b7df-9eedcf8c431a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(6215,'StorageCage_Time_ZeroG_Empty','Cargo','UNDEFINED','ca2dbc8e-d49b-48fd-8ae9-3775602d4b9d','','',NULL), +(6216,'Fluorine','Cargo','Cargo','3a2c0865-cbc7-4e5e-9f9a-16dc640ecd8d','','',NULL), +(6217,'Vera Compensator1','WeaponAttachment','Barrel','e3d211f4-3381-4ba1-9807-f96c446866de','','','Manufacturer: ArmaMod\nType: Compensator\nAttachment Point: Barrel\nSize: 1\n\nAim Time: +20%\nSpread: +35%\nVisual Recoil: -33%\nRecoil Time: -25%\n\nIdeal for operators that specialize in precision aiming, the Vera Compensator1\'s high density materials increases aim time in favor of reduced recoil.'), +(6218,'Projector_HUD_Mining_MOLE','Display','UNDEFINED','ab30c1ab-0615-452e-9add-3cea34999611','','',NULL), +(6219,'Bantam Hat TABA','Char_Clothing_Hat','UNDEFINED','767e592b-f750-43d9-ae17-2dda3395dcc6','','','The Bantam hat from 987 offers a large bill and cushioned banding for all-day comfort. This version features a green front with a T.A.B.A Freightline logo paired with a dark gray back and bill.'), +(6220,'ANVL_Ballista_SCItem_Dashboard_Driver','SeatDashboard','UNDEFINED','251739b0-8bf7-4e87-86c2-e57ad3dd1bdb','','',NULL), +(6221,'Adiva Jacket Red','Char_Clothing_Torso_1','UNDEFINED','03bb3f37-a122-4a1d-be72-11e799fbd221','','','Carrying Capacity: 1K µSCU\n\nDefine your ultimate you. The Adiva is an asymmetrical pullover with bold mixed-materials and solid reinforced trim.'), +(6222,'Steadfast','PowerPlant','Power','0ed88703-3183-48c8-95f1-eda2b5b4381a','','','Item Type: Power Plant\nManufacturer: Juno Starwerk\nSize: 0\nGrade: C\nClass: Industrial\n\nWhen the road ahead is long, Juno Starwerk’s Steadfast power plant is there to see you and your vehicle through to the end by providing on-demand power and durability.'), +(6223,'Citadel Arms Brimstone','Armor','Arms','e7801723-def0-41d3-b132-e43102590da3','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(6224,'Origin 350r Racing Helmet','Armor','Helmet','ea133a3b-6e17-4eeb-be1c-a6da8a8b3b97','','','Item Type: Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nPlunge headlong into extreme speed in comfort and style with the Origin racing helmet. This gray and yellow helmet sports the Origin logo and features a wide visor for unobstructed views as you speed by.'), +(6225,'Mahoney Nurse Scrub Top','Char_Clothing_Torso_1','UNDEFINED','562944d1-9e2e-49be-8a3c-aef4860c3ceb','','','Carrying Capacity: 0.4K µSCU\n\nThe Mahoney Nurse Scrub shirt is made for medical professionals looking an accommodating and comfortable fit. This top has a pocket and strips of fabric forming subtle geometric patterns on the right shoulder. It\'s also made with moisture wicking and anti-stain fabric ready to withstand long shifts and repeated washing.'), +(6226,'ANVL_Pisces_Thruster_Main_Left','MainThruster','FixedThruster','48f9fcb0-7b67-46e5-bd84-262ca4eb0c2e','','',NULL), +(6227,'fruit_basket_1_shop_1x7_b','ShopDisplay','Default','827a5862-37b7-4fcc-b47d-04b7c56c4a6f','','',NULL), +(6228,'Door Control','ControlPanel','DoorPart','a9e3c9bb-691d-422d-b75d-89ebad2e7b44','','',NULL), +(6229,'Lightstrike III Cannon','Weapon','Gun','4e2b431e-916b-479b-9617-86e7e53a431a','','','Manufacturer: Esperia\nItem Type: Laser Cannon \nSize: 3\n\nThe Lightstrike III takes the attack to distant targets by delivering focused, high damage blasts that will make any aggressor think twice before coming too close. Capable of providing powerful overwatch options during troop deployments or engaging targets in outer space, it\'s easy to see why the Lightstrike III was feared by UPE forces during the First Tevarin War.'), +(6230,'Seat','SeatAccess','UNDEFINED','bbefd7df-c528-4f3c-bd1c-6bf903020de9','','',NULL), +(6231,'TRGT. STATUS','Seat','UNDEFINED','002a4bf9-2aea-4d70-ac1c-d0d69ab6d17f','','',NULL), +(6232,'Kelvid','Cooler','UNDEFINED','c9eecfff-8ab2-4cd1-b7f8-1ea6aa86fd5a','','','Item Type: Cooler\nManufacturer: Wen/Cassel Propulsion\nSize: 0\nGrade: B\nClass: Civilian\n\nThe Kelvid is a high performance, rough and tumble cooler system designed to keep your vehicle humming for longer, rather than catching its breath.'), +(6233,'SNS-R7x','Radar','MidRangeRadar','01d37caa-d580-4443-b3bd-c1f856ec5bf6','','','Item Type: Radar\nManufacturer: Nav-E7 Gadgets\nSize: 2\nGrade: B\nClass: Competition\n\nFavoring energy efficiency above all, the SNS-R7x is a radar is ideal for those looking to manage their ship\'s levels effectively, whilst still providing excellent vision.'), +(6234,'MISC_Hull_C_FoldingStrut_2C','Cargo','UNDEFINED','87c4c397-bd47-4af4-a630-39730ed7ce44','','',NULL), +(6235,'Cumulus Jacket Gray','Char_Clothing_Torso_1','UNDEFINED','04898f0d-030c-42de-878c-0e36d79dc8ef','','','Temp. Rating: -35 / 10 °C\nCarrying Capacity: 5K µSCU\n\nBe bold and brave the cold in frigid conditions up to -35 °C with the Cumulus\'s special thermal lining. An oversized, insulated hood provides additional protection around the head, while the distinct quilted torso stops snow, ice, and wind from seeping in, ensuring the wearer remains warm and dry.'), +(6236,'ARMR_GRIN_MTC','Armor','Medium','dc878cca-7e93-4530-9f71-aeed4a13ffb8','','',NULL), +(6237,'Carryable_TBO_FL_4SCU_Commodity_Organic_Armillaria','Cargo','Cargo','52197228-505d-4bb2-a41f-ff431d04ea25','','',NULL), +(6238,'MedGel','Cargo','Cargo','24160bf1-cddf-4b3c-aa75-64bdf4fb91c6','','',NULL), +(6239,'AEGS_Retaliator_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','4136693a-5d85-4b32-a8d7-a6470ca48eaa','','',NULL), +(6240,'Crusader Black Knight','Misc','UNDEFINED','d8addd7a-0920-4030-89a5-6e1a7a366a93','','','Included with the Mercury Star Runner from Crusader Industries, this minimalist black chess piece has a marble base.'), +(6241,'ADP Legs Hurston Edition','Armor','Legs','daa51c80-7720-4ece-8de3-598cdc8929d1','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor. The Hurston Edition was made specifically for the company\'s security services.'), +(6242,'Nyman Jacket White','Char_Clothing_Torso_1','UNDEFINED','c3880dcd-c3ec-4973-a3d6-edb923485c0a','','','Carrying Capacity: 1K µSCU\n\nOpalSky\'s Nyman light pullover is perfect to have on hand when lounging poolside or on those chilly nights.'), +(6243,'Container','Misc','Personal','eda18cee-b767-49f0-878d-d3ac23e9e828','','',NULL), +(6244,'Plastic Cup','Drink','UNDEFINED','b5946f70-40de-4905-952b-3d7d318ce1e4','','','A sturdy plastic cup with a wide lip and two ridges to make it easy to grip.'), +(6245,'Fury Templar Livery','Paints','UNDEFINED','c9bcee5c-ba5b-4597-9911-0c826528be70','','','Mirai made the Templar livery a stark white with red and black highlights to give the Fury a look that would be at home among the clouds.'), +(6246,'Chamar Pants','Char_Clothing_Legs','UNDEFINED','8ebd7671-bd35-49a2-a914-e6e68c2e6431','','','Carrying Capacity: 1K µSCU\n\nDecades of design experience helped DMC make the Chamar pants ready for any adventure. The pants utilize a unique seam design to deliver durability while maintaining flexibility. A built-in belt ensures an ideal fit, while leather front pockets and a padded back-panel provide rugged reinforcement where needed most.'), +(6247,'Weapon Rack','Usable','UNDEFINED','0f9d89f2-6ea2-4192-86ab-e2b4bcd8e584','','',NULL), +(6248,'Strata Helmet microTech Edition','Armor','Helmet','e83f76c3-fee6-4599-bad7-ec27673ceb2a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design features high quality materials and a next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The microTech Edition was made specifically for the company.'), +(6249,'counter_display_mod_end_b_0038x01x01_NoTopPorts','ShopDisplay','UNDEFINED','a92e6fb8-a072-44f9-9a8e-0e4fabef3542','','',NULL), +(6250,'ASD Hat','Char_Clothing_Hat','UNDEFINED','29c5b17a-07f4-49a9-bb4a-a2fab66c609d','','','A red and green cadet hat with ASD\'s name and logo emblazoned across the front panel.'), +(6251,'DRAK_Buccaneer_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','a18a049c-8659-4d73-873b-b0d8831dea5c','','',NULL), +(6252,'Heart of the Woods','Cargo','Cargo','cb1c1afb-1b0a-4c08-9329-e462731ce6e6','','',NULL), +(6253,'Shipment','Misc','UNDEFINED','99c233cc-cc12-4f58-8939-0334483c82f1','','',NULL), +(6254,'AEGS_Reclaimer_Remote_Turret_Console_2','Seat','UNDEFINED','a4587907-b2fa-4451-bb9a-8b6f5805a700','','',NULL), +(6255,'Door','Door','UNDEFINED','a1120f82-3a03-4ea8-ac74-a27ad5d9b47e','','',NULL), +(6256,'Gallant Rifle Battery (45 cap)','WeaponAttachment','Magazine','0988e9ce-5f5d-4eb8-83a7-dc70f187579d','','','Item Type: Battery\nCapacity: 45\n\nThis high-capacity battery sets itself apart by powering the Klaus & Werner Gallant energy rifle for 45 shots per charge. '), +(6257,'MSD-543 Missile Rack','MissileLauncher','MissileRack','c42fa96d-f619-4270-842c-28dbc7173131','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 5\nMissiles: 4xS3\n\nBehring’s MSD-543 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 5 hardpoint for the reliable and effective launch of four S3 missiles.'), +(6258,'MRAI_Guardian_Thruster_Main_Right','MainThruster','JointThruster','dd24b908-f2e2-49a1-87b7-3c9ccd8b49be','','',NULL), +(6259,'Seat','Usable','UNDEFINED','c9e57f58-3356-4fc6-8e1b-93e77326eee8','','',NULL), +(6260,'Seat','Usable','UNDEFINED','3f3ccf4a-aae2-4665-9d96-4e608d3d4bf3','','',NULL), +(6261,'Palatino Legs','Armor','Legs','987c74f3-73bc-40fa-b3ba-71fc6379321d','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower.'), +(6262,'Cutlass Elysium Livery','Paints','UNDEFINED','bad25221-01dd-41bb-81d9-655288a17859','','','The brash and bold Elysium livery features ornate gold detailing atop a navy blue base paint.'), +(6263,'Torpid Module','MiningModifier','Gun','47ba04b0-010b-47cd-9f7d-209e2ec190b9','','','Manufacturer: Greycat Industrial\nItem Type: Mining Module (Active)\n\nOptimal Charge Rate: +60%\nCatastrophic Charge Rate: -60%\n\nShatter Damage: +40%\n\nDuration: 60 seconds\nUses: 5\n\nThe Torpid Module is a must for any ambitious miner. It makes mining more efficient by dramatically increasing the optimal charge rate while also reducing the catastrophic charge rate. The module does have a downside as a shattering deposit may prove more hazardous.'), +(6264,'MacFlex Arms Seagreen','Armor','Arms','d045b2f1-b86a-46c9-a385-1eb0f3426b76','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(6265,'Silicon','Cargo','Cargo','0683036e-3dd4-40a4-ab8b-1f1f544a8ab0','','',NULL), +(6266,'Aril Legs Quicksilver','Armor','Legs','633ee9c9-44d2-4f41-a2d2-2a6d2ba74fe0','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(6267,'Seat','SeatAccess','UNDEFINED','a64b154b-0029-44f9-b883-814c8515d326','','',NULL), +(6268,'Caret Pants Light Grey','Char_Clothing_Legs','UNDEFINED','4d8e26b3-c838-4b7c-9c80-f458558e6c61','','','Carrying Capacity: 2K µSCU\n\nWith the fortitude of workwear and the comfort of khakis, the Caret pants are sure to become your standard go-to for tough jobs. Built with strong fabric and quality stitching so you can focus on what needs to be done.'), +(6269,'Carryable_2H_CU_universal_metal_crate_a','Misc','UNDEFINED','ba674318-2787-4694-8722-aa307144a50a','','',NULL), +(6270,'Internal Tank','FuelTank','Fuel','47a979af-9553-42bd-97be-5d4d25700223','','',NULL), +(6271,'display_item_noGeo_01Port_Shoes','ShopDisplay','UNDEFINED','d7f32133-3674-42a2-b6ab-c8356f99b94e','','',NULL), +(6272,'S71 \"Ascension\" Rifle','Weapon','Medium','dddca60b-e7af-4a5f-bbe4-55c2b298fb63','','','Manufacturer: Gemini\nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 30\nRate Of Fire: 300 rpm / 900 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nWith the S71, Gemini designed an ergonomic assault rifle ideal for mid-range engagements. Chambered with a smaller caliber round than other weapons in its class, the S71 has become popular among private military professionals for its sleek aesthetics and precise accuracy. Designed in honor of IAE 2953, the Ascension edition has been decorated with sleek steel and copper accents that were inspired by Gatac Manufacture\'s Syulen.'), +(6273,'Thunderball Bomb','Bomb','Utility','3c3f79ae-acb2-4472-a08d-2ddb1afcc700','','','Manufacturer: FireStorm Kinetics\nItem Type: Explosive Bomb\nSize: 3\n\nTarget ground forces from a safe distance above with the Thunderball. Despite the small size, these S3 bombs pack a powerful payload, allowing users to either deploy multiple bombs to overwhelm a stationary target or drop them at intervals to hit moving targets. The Thunderball uses FireStorm Kinetics\' patented Atmo-Xact fins that deploy once dropped to provide additional guidance en route to target.'), +(6274,'HRST_LaserScatterGun_Barrel_S1','WeaponAttachment','Barrel','c8cbdd9b-10e7-4e7d-8ce7-aa1041955666','','',NULL), +(6275,'display_wall_end_centermass_3port_IP_dir_right','ShopDisplay','Default','b356b603-94a5-4fba-92af-33bd8028c8ad','','',NULL), +(6276,'ANVL_Terrapin_RampLight','Misc','UNDEFINED','9bc742c2-6e6d-44e2-875f-f89c7294f893','','',NULL), +(6277,'Palatino Legs Mark I','Armor','Legs','fe1f3199-6680-4929-b511-7a85dc73437f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower. The Mark I variant is primarily icy white with blue and red highlights.'), +(6278,'Station','SeatAccess','UNDEFINED','3a8db59c-4009-4c49-a83c-4004f2bbbbde','','',NULL), +(6279,'Aztalan Helmet','Armor','Helmet','bccb4451-aee1-49a2-8262-87a58d372f19','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -32 / 64 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFear no frontier while wearing the Aztalan armor. This mixture of armor plating and reinforced fabrics will keep you safe yet swift on your feet. Tehachapi\'s masterful design gives the armor a subtle yet unmistakable frontier style that also providing ample storage. Suitable for everything from sand dunes to bustling backstreets, the Aztalan is the ideal choice for your next adventure. Visor is AR crosshair compatible.'), +(6280,'Tevarin War Service Marker (Pristine)','Misc','Trophy','523efc7f-9038-4531-95ea-9719308ae63b','','','A service marker awarded by the United Planets of Earth (UPE) to all members of the military who served during the First Tevarin War. Though many were produced in their time, those numbers have dwindled significantly and collectors are eager to pick up any found. Well-preserved despite its age, this marker is considered in pristine condition and features clean etchings and minimal wear.'), +(6281,'Carryable_1H_CY_drug_painkillers_1_c','Misc','UNDEFINED','0b0af7fe-2f7f-46bf-b185-86da3867a074','','',NULL), +(6282,'LifeGuard Medical Attachment','WeaponAttachment','Utility','5c19c75e-fe9c-438b-862a-3639cf187763','','','MUST BUY BASE MULTI-TOOL TO USE: \"Pyro RYT Multi-Tool\"\n\nManufacturer: Greycat Industrial / CureLife\nItem Type: Multi-Tool Attachment\nClass: Medical\n\nCrafted as a joint effort between Greycat Industrial and leading medical device manufacturer CureLife, the LifeGuard attachment is a compact and light-weight emergency medical treatment option powered by the Pyro RYT Multi-Tool. It is perfect for handling jobsite emergencies and temporarily alleviating symptoms until professional medical care can be sought.'), +(6283,'orig_bedding_duvet_4_g','Seat','UNDEFINED','03e90086-80f2-4606-a338-ae1c239a442e','','',NULL), +(6284,'Bracewell Boots Grey','Char_Clothing_Feet','UNDEFINED','fcd84a03-dfc3-4bc7-b5b5-d137ba9c1285','','','Durable, dependable, and comfortable. The Bracewell are high ankle boots designed to thrive amidst unpredictable weather conditions with a water-resistant finish, high-traction soles, and a toggle-locked top enclosure to help keep out any precipitation.'), +(6285,'LH86 \"Righteous\" Pistol','Weapon','Small','94af6f9e-7642-41f4-96ad-cf29b34f4794','','','Manufacturer: Gemini \nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 25\nRate Of Fire: 1200 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe LH86 from Gemini is a compact kinetic handgun designed for personal defense and close-quarter combat. A keen eye on ergonomics and balance coupled with hardy construction makes this pistol a natural fit for any shooter in any number of hostile conditions. The LH86 also comes with Tritium low-light sight and a twenty-five round magazine. The \"Righteous\" edition features a bold red paint perfect for showing your dedication to the fight.'), +(6286,'Syulen Ch.iing Livery','Paints','UNDEFINED','758cb316-8138-49cd-86ef-9621cb13e507','','','Make your Syulen stand out from the crowd with the Ch.iing livery that?s white marbled with gold accents.'), +(6287,'Sol-III Core Bombardier','Armor','Torso','ef0299fd-d85e-470e-a38a-e7c4f3f8da68','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\nBackpacks: Light\n\nInspired by the original flight suits worn by Earth\'s Air Force, this replica stays true to the historical design while incorporating modern comforts.\n\nThe Bombardier edition is primarily a stone color with dark brown accents.'), +(6288,'IAE 2953 Hat Purple','Char_Clothing_Hat','UNDEFINED','46f648b2-d6a2-4c9c-82a4-9dd1ee5f516b','','','Celebrate the UEE\'s premier ship expo with the official hat of the 2953 Intergalactic Aerospace Expo. This purple hat displays the IAE logo on the front and back.'), +(6289,'BEHR_LaserCannon_SF7E_FiringMechanism_S7','WeaponAttachment','FiringMechanism','6418c288-bbb5-4688-bb91-d6764c8c55ef','','',NULL), +(6290,'ORC-mkV Core White','Armor','Torso','cb27c023-fb27-4bd6-b799-8fb6deb8b4cd','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(6291,'INTK_ANVL_Hurricane','FuelIntake','Fuel','4510de80-243e-4da1-a359-98cbd26ba03e','','',NULL), +(6292,'MISC_Hull_C_DockingTube','DockingCollar','UNDEFINED','6e6f3001-f5d9-4ff2-a7f0-a1a7da1909cb','','',NULL), +(6293,'RN-7s','DockingCollar','UNDEFINED','8b1915bf-22ce-473d-9c1d-727423d59c0e','','','Manufacturer: MISC\nItem Type: Fuel Nozzle\nSafe Flow Rate: 0.4 SCU/s\n\nThe nozzle of choice for the acclaimed MISC Starfarer, the RN-7s was designed to be a flexible fuel transfer option suited for a variety of situations.'), +(6294,'Carryable_2H_Vent_Floor','Misc','UNDEFINED','37d8d43c-2c50-43dd-964a-a2bc01026b5f','','',NULL), +(6295,'Seat','SeatAccess','UNDEFINED','1fab0e07-6039-497d-ac58-94d950d4f35b','','',NULL), +(6296,'DRAK_Cutlass_Red_Thruster_Maneuver_Top','ManneuverThruster','JointThruster','238053ef-8119-4573-a273-a554f7dd1970','','',NULL), +(6297,'Seat','SeatAccess','UNDEFINED','e2415669-f3ce-45f7-a4f2-c5217677718d','','',NULL), +(6298,'Touchstone (8x Monitor)','WeaponAttachment','IronSight','c75282e6-8b92-4398-ac27-bd6f56d627b2','','','Manufacturer: Klaus & Werner\nType: Monitor\nAttachment Point: Optic \nMagnification: 8x\nAim Time: +0%\nSize: 3\n\nWhile conventional scopes can induce eyestrain after extended periods of use, the Touchstone 8x monitor from Klaus & Werner provides ultra-critical eye relief and allows for “heads up” shooting where you are able to simultaneously track targets and observe environmental conditions. Built to cater to a variety of shooters, the Touchstone\'s reliability and clarity makes it the ideal choice for tactical rifles like the Arrowhead.'), +(6299,'Riccite','Cargo','Cargo','76c8da22-7b1b-4efd-8474-a110f3ed6dc4','','',NULL), +(6300,'MITE_Simpod','Usable','UNDEFINED','416bb319-cf28-44fa-aa8e-fde32bb93efa','','',NULL), +(6301,'Flight Blade','FlightController','UNDEFINED','6c5e6aae-0357-42ae-95d2-027609962ead','','',NULL), +(6302,'KRIG_l21_Wolf_Thruster_Mav_Capsule_Bottom','ManneuverThruster','UNDEFINED','297b4cfb-f996-4c6f-9b5c-33fd2ba25b62','','',NULL), +(6303,'11-Series Broadsword Cannon','Weapon','Gun','f03daac4-28e2-405c-b226-c258151cb9f1','','','Manufacturer: KnightBridge Arms\nItem Type: Ballistic Cannon\nSize: 3\n\nThe 11-Series Broadsword from KnightBridge Arms is the size three ballistic autocannon pilots come to when they want the 3 D’s: distance, dependability and damage.'), +(6304,'Artimex Arms Red Alert','Armor','Arms','7ebf7cf8-1ffc-40d5-97f8-75d4225d36c1','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.'), +(6305,'rack_gun_size_1_0025x0075x00375_1_a','Misc','UNDEFINED','319ebed6-6e92-45dc-a28b-15e207974612','','',NULL), +(6306,'Bannock Jumpsuit Warm Ash','Char_Clothing_Torso_1','UNDEFINED','80f49f8f-d2e2-41ea-81e6-86c9135dc9f8','','','Carrying Capacity: 1K µSCU\n\nThe Bannock jumpsuit combines comfort and durability. It features reinforced padding in critical areas, plenty of storage, and an adjustable belt to ensure a snug fit. Its unique design also includes a built-in secondary layer, allowing the wearer to unzip and cool down without fear of damaging their everyday clothes.'), +(6307,'Ana Legs Endro','Armor','Legs','b73ab0ef-5a5e-44f7-b74c-d686297d5bb5','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThis Antium Armor was modified from its original version. Carefully-selected fangs and bones were mounted to the set to give it a primal look.'), +(6308,'ORC-mkV Legs Blue','Armor','Legs','915f57e4-a00b-416f-8c19-e4b88cd071e7','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(6309,'Kareah_Datapad_Backstory_4x3_Screen','Display','UNDEFINED','25794ff8-9ab4-49d4-88a1-3ae4df22a4e9','','',NULL), +(6310,'Faction Jacket Teal','Char_Clothing_Torso_1','UNDEFINED','abb98b3b-bca3-49f7-97e3-747cea55a284','','','Carrying Capacity: 1K µSCU\n\nWhether you\'re coasting through outdoor adventures or cruising to exclusive afterparties, the Faction coat is sure to turn heads. Fusing sections of ultra-insulated brick quilting with 987\'s DuraBull ripstop reinforced fabric, you\'ll stay warm while still looking cool.'), +(6311,'Paint_Perseus_Beige_Green_Red','Paints','UNDEFINED','7660b182-6b30-4934-ac08-050a2586d042','','',NULL), +(6312,'MRAI_Guardian_Thruster_Mav_MX','ManneuverThruster','FixedThruster','4ea2f9b6-2ebd-aeaa-856f-ad76fed8009a','','',NULL), +(6313,'Inmate Worksuit','Armor','Undersuit','6ef9457f-8828-4dc7-b53f-01d94ea22760','','','Item Type: Worksuit\nDamage Reduction: 10%\nTemp. Rating: -75 / 75 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe Inmate Worksuit is a durable and highly visible worksuit designed to survive harsh conditions often faced by inmates during work release programs. The worksuit integrated reinforced padding for protection with a strong synthetic weave that meets the minimal government standard for thermal insulation while keeping costs low. The sturdy workpack provides ample storage capacity and evenly distributes weight across the wearer\'s back allowing them to carry more during every shift. It also features secure bottom straps to allow you to determine oxygen tank size on a per inmate basis, minimizing escape risk.'), +(6314,'Morozov-SH Legs Terrene','Armor','Legs','475e9a4e-ae27-4a75-a1f5-64e068be1b48','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5K µSCU\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(6315,'Retaliator Torpedo Rear Module','Module','UNDEFINED','130ea15f-d075-403d-89c9-60d303fc25f0','','','Standard equipment for most UEE military Retaliators, this rear module can carry 2x S9 torpedoes.'), +(6316,'facial_hair_049','Char_Head_Beard','UNDEFINED','13994558-1b29-497a-ba24-47e836059c1b','','',NULL), +(6317,'Pyro RYT \"Crusader\" Multi-Tool','Weapon','Gadget','81e731fa-b0f9-40ec-b625-9b7e43f81adb','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier. This special edition features Crusader branding.'), +(6318,'Seat','Usable','UNDEFINED','c648904f-3efd-4123-8fd5-685170442bfb','','',NULL), +(6319,'Blue Bilva','Cargo','Cargo','596b9d2d-59c0-4a10-8e7b-2407c4e30cb3','','',NULL), +(6320,'Golem Faultline Livery','Paints','UNDEFINED','37f0f3d8-9200-45e0-ae91-a23436ae3eef','','','The Golem gets a distinct look with the Faultline livery with strategically placed yellow and orange stripes making the ship more visible.'), +(6321,'KRIG_P72_Archimedes_WingTip_Right','AttachedPart','UNDEFINED','54dbc1eb-3188-4ef6-8c6e-dd0bc6a7dbe2','','',NULL), +(6322,'One Light Cap Blue','Char_Clothing_Hat','UNDEFINED','0ebc2c2d-7aae-40d1-abda-168688da4b1e','','','Are you looking for the perfect Luminalia gift? City Lights has you covered with this soft and snug woven cap that not only keeps your head warm but shows off your holiday spirit.'), +(6323,'Venture Core Aqua','Armor','Torso','94e04e11-3b50-405f-bd35-0ad36abf1e56','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(6324,'Ponos Boots Grey','Char_Clothing_Feet','UNDEFINED','5a5c7bb2-13a6-481e-bb0a-03513ea6426f','','','Quite simply, R6 Pro\'s Ponos boots were built for backbreaking work. Constructed out of Thermosulate technology, these waterproof and insulated workboots are rated for sub-arctic environments while the composite outsole ignores hazards to maintain traction when you need it most.'), +(6325,'StarHeart','PowerPlant','Power','41a56edf-ce69-4638-9c80-1692c3d345c6','','','Item Type: Power Plant\nManufacturer: ACOM \nSize: 1\nGrade: B\nClass: Competition\n\nFour generations of racing knowledge and know-how are behind ACOM’s StarHeart power plant. Known for its rapid power distribution, the StarHeart has become a favorite among speedsters.'), +(6326,'Flight Blade','FlightController','UNDEFINED','4ae9dbea-3fae-2843-9758-38f2e4d81984','','',NULL), +(6327,'Door Control','ControlPanel','DoorPart','c8025eed-0a02-44a1-b788-40922f710214','','',NULL), +(6328,'Hornet Ironheart Livery','Paints','UNDEFINED','e22efffe-bb60-439a-b8c6-7282ed65aa88','','','The Ironheart is a special livery for the Hornet Mk I. This unique livery was previously used by the Navy on Hornets escorting diplomats before being retired and released to the public. It is primarily grey with yellow and orange highlights and the UEE logo.'), +(6329,'Seat','Usable','UNDEFINED','8beee750-4140-42e8-a8dd-b3fdd285e23a','','',NULL), +(6330,'IAE 2955 Hat Black','Char_Clothing_Hat','UNDEFINED','a194d548-ba3b-4670-b366-8a447f0de60f','','','The official hat of the 2955 Intergalactic Aerospace Expo features black fabric with the logo across the front.'), +(6331,'Door Control','Door','UNDEFINED','de6b640f-df5a-41ac-baf9-8d1abdc0a0e1','','',NULL), +(6332,'M9A Cannon','Weapon','Gun','d34e4ab3-8700-4a31-9801-34a321843309','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 7\n\nStrike at the very heart of your enemies with the devastating impact of Behring\'s M9A energy autocannon. When fully charged, the massive stopping power of this laser weapon has the potential to halt even capital ships in their tracks.'), +(6333,'CBH-3 Helmet Black','Armor','Helmet','82070439-9c9d-46a5-9328-3c197b00bed7','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. Visor is AR crosshair compatible.'), +(6334,'Seat','Usable','UNDEFINED','5566e6c0-59a7-4330-95f6-1a1e811a90eb','','',NULL), +(6335,'ESPR_LaserCannon_FiringMechanism_S4','WeaponAttachment','FiringMechanism','9dafee72-fb27-421a-8cb6-60629dd72e4c','','',NULL), +(6336,'PH - scu_service_shirt_01_whammers01_01','Char_Clothing_Torso_0','UNDEFINED','70c2d69e-b902-4a98-8204-6a4d34cc136e','','','PH - scu service shirt 01'), +(6337,'Seat','SeatAccess','UNDEFINED','76459230-2054-4908-ba40-9e2bc7ee7c2f','','',NULL), +(6338,'WarmingSpot_FireBarrel_Drum','Usable','UNDEFINED','aa02ba4a-cc2c-493e-901c-2772f1d4ca6c','','',NULL), +(6339,'Argus Helmet Black/Aqua/Silver','Armor','Helmet','d41fec31-ff74-4460-a217-260eaa869a65','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s Argus helmet utilizes advanced multi-layered composite construction to provide incredible protection from weapon fire as well as environmental hazards. The tinted visor offers a wide field-of-view to improve situational awareness and unrestricted movement.'), +(6340,'GSX-HP','ExternalFuelTank','UNDEFINED','19e17c79-b73b-4a8c-b0a8-6ed4d134ffdc','','','Manufacturer: Stor*All\nItem Type: Fuel Pod\nFlow Rate: 0.9 SCU/s\nCapacity: 70 SCU\n\nBy using a triple reinforced outer plating rated far above industry standards, the GSX-HP fuel pod from Stor*All can handle higher pressures than your typical storage options. This allows you to transport more fuel and improves the safe flow rates of whichever nozzle you use.'), +(6341,'bag_toolbox_1_a','Cargo','UNDEFINED','c895533d-0847-4ee3-9009-076e14d93afa','','',NULL), +(6342,'bag_toolbox_2_a','Cargo','UNDEFINED','a54c9948-90a9-4ee0-a030-45f4f44fd031','','',NULL), +(6343,'Seat','Usable','UNDEFINED','2c205e35-ce5e-4415-a3b7-68904a6f206b','','',NULL), +(6344,'Lynx Legs Draas','Armor','Legs','8ed52b69-ddbe-4d56-8bcb-e71aaa5c8a6d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(6345,'counter_display_04x01x01_18Ports','ShopDisplay','UNDEFINED','2d3a3609-b4e6-4db8-821c-b70c09bad593','','',NULL), +(6346,'Armor_Crate_CZ','Usable','UNDEFINED','56d98ce6-bc66-484c-98bb-d7485424231d','','',NULL), +(6347,'Pulse Crossfire Livery','Paints','UNDEFINED','b981b90d-70c4-404a-9a29-db64108efe7c','','','The Crossfire livery is a rich red with black highlights, which includes lettering spelling Mirai across the bottom half.'), +(6348,'Karna \"Dominion Camo\" Rifle','Weapon','Medium','05abba47-8806-4869-aa77-03ad237902c5','','','Manufacturer: Kastak Arms\nItem Type: Assault Rifle\nClass: Energy (Plasma)\n\nBattery Size: 35\nRate Of Fire: 500 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nThe Karna is a classic Kastak Arms plasma assault rifle. This mid-range mauler features charged and full-auto fire modes to allow for quick and easy situational adjustments. Besides its renowned firepower, the Karna\'s rugged looks and reliability have made it one of Kastak Arms\' most popular weapons.\n\nThe Dominion Camo edition adds a dark green camo pattern to the rifle.'), +(6349,'Ajax Security Uniform Pants','Char_Clothing_Legs','UNDEFINED','bdfed6de-7e10-4b47-a229-5493ab7576a6','','','Carrying Capacity: 0.5K µSCU\n\nThe Ajax Security Uniform Pants are a standard security accessory produced by Code Blue Apparel\'s professional division. Flexible and durable, the pants are designed to match the Ajax Security Uniform Jacket and feature the same high-visibility piping. The pants are flexible and allow for a full range of motion.'), +(6350,'hooks_torso0_02x01x04_02Ports','ShopDisplay','Default','5cc062ed-7a55-4138-aab2-47b34ed740ca','','',NULL), +(6351,'ht_bench_table_microtech_1_single_b','Usable','UNDEFINED','bf9ea8ea-7d2e-40b1-ad33-37172c1a243e','','',NULL), +(6352,'Stormwal Sculpture Replica','Misc','Flair_Wall_Picture','1e2778c1-6b2e-4c19-9198-dbca796ae538','','','With careful attention to detail, this scaled down version of the famed \"Until Again\" sculpture that graces Orison\'s skyline captures the majesty and grace of the endangered stormwal.'), +(6353,'Weapon_Rack_Cz_004','Usable','UNDEFINED','4c164e8d-e27d-46bf-8d2c-641f8ad7a2d6','','',NULL), +(6354,'Chlorine','Cargo','Cargo','15970ae2-30a9-437c-af5e-1dd86d89f671','','',NULL), +(6355,'Zeta-Prolanide','Cargo','Cargo','3bd72e48-7d23-4aa8-bced-ab1c92b77e4b','','','This chemical is an industrial reactant that has found widespread use neutralizing irradiated materials. Because of how volatile it is, it must be kept in an electrically charged state or else a rapid exothermic reaction may occur before desired.'), +(6356,'Locker_Armor_LoadoutTest','Usable','UNDEFINED','ab39f85f-8664-4bdf-b9ec-c5cd93fdf348','','',NULL), +(6357,'RSI_Zeus_Decorative','AttachedPart','UNDEFINED','7d1dd844-b45c-45ed-a691-49aa195174ef','','',NULL), +(6358,'Internal Tank','QuantumFuelTank','QuantumFuel','a5330068-cd45-47c5-bbef-2401c8777856','','',NULL), +(6359,'Paint_Mole_Orange','Paints','UNDEFINED','a0034448-f077-4fce-9413-812d4db5e54a','','',NULL), +(6360,'Seat','SeatAccess','UNDEFINED','76e42cf0-77ea-4e0f-a247-8dbc9153f38a','','',NULL), +(6361,'MacFlex Core Seagreen','Armor','Torso','f9e4e71d-4dc6-40a0-aad9-93a5af81aa0b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(6362,'TRGT. STATUS','Seat','UNDEFINED','cd806a0c-2513-4b2a-8bb1-c4e8f73a2888','','',NULL), +(6363,'Door Control','ControlPanel','DoorPart','f495e262-7779-43f8-b95a-6656039f6c7a','','',NULL), +(6364,'Zeus Exploration Suit Helmet Solar','Armor','Helmet','ed3c8d10-f2d1-4136-b547-2ef062f0ce15','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -150 / 175 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nThe Zeus Exploration Suit has been designed to honor some of the earliest space pioneers, the RSI crews who developed and tested the Zeus, the first commercial spacecraft. While the suit is styled to match those used centuries ago with attachments for a helmet and backpack, it contains all of the modern technology and conveniences expected by present-day explorers. The Zeus offers good resistance to harsh environments and excellent storage space for sample-collecting during EVAs. This helmet is only compatible with the Zeus Exploration Suit. The Solar variant honors the orange color scheme worn by RSI test pilots.'), +(6365,'Concept Shirt Aqua','Char_Clothing_Torso_0','UNDEFINED','1f6cd323-cdaf-4544-b66b-c5326dde79b1','','','This crisp, versatile button-front shirt from Fiore is made with cutting edge stain resistant and wrinkle-free technology, guaranteeing that you stay professional at all times.'), +(6366,'Multitool_Attachment','WeaponAttachment','Utility','753e218d-6368-4005-aee9-60f821aeebaa','','',NULL), +(6367,'Inquisitor Arms Violet','Armor','Arms','840e1940-466c-4a42-962e-238f8bc4460d','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(6368,'Balor HCH Helmet Twilight','Armor','Helmet','92ce36b2-b41c-4e2f-bc61-29db7086c7e8','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. Visor is AR crosshair compatible.'), +(6369,'Carryable_1H_FL_tool_xray_1_handheld_a','Misc','UNDEFINED','fa10563e-2843-41a2-8bbc-e8c29e455f8a','','',NULL), +(6370,'Remote Turret','Turret','GunTurret','c434c727-4e01-49dc-b6a5-ac4ba7bfe1df','','','Remote Turret'), +(6371,'ORC-mkV Core Aqua','Armor','Torso','ef42816f-1b5a-4d20-985a-d6d938f271df','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(6372,'Shipment','Misc','UNDEFINED','e900b640-1ee2-4a9f-b0ec-070bc992004d','','',NULL), +(6373,'Seat','Usable','UNDEFINED','9a46aa4c-a8c8-4419-8601-01d3d2b29251','','',NULL), +(6374,'ESPR_Prowler_Thruster_Mav_Lateral_Utility','ManneuverThruster','UNDEFINED','2b8e5485-48f6-4151-8c01-c92cf52fbdf6','','',NULL), +(6375,'Stirling Exploration Backpack Chroma Edition','Armor','Backpack','b0865ce7-1aa5-4ba9-8821-e13b2361c407','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nThis heavy duty backpack is compatible with the Stirling suit and provides a convenient storage solution. The Chroma Edition features a vibrant metallic red with against grey with black highlights.'), +(6376,'Dashboard','Seat','UNDEFINED','f0d425b0-8522-448e-8764-ac8119708bd8','','',NULL), +(6377,'Debnam Gloves Seagreen','Char_Clothing_Hands','UNDEFINED','852a72e1-d37d-4845-8960-94a74758a58d','','','Named after the influential Terran tailor, Debnam gloves incorporate that famous tailor\'s classic design to keep your hands comfortable in colder temperatures.'), +(6378,'ANVL_Terrapin_Locker','Player','UNDEFINED','b1a35616-f075-4cea-b8d9-64607042a992','','',NULL), +(6379,'Vehicle_Screen_MFD_Holographic_MISC_Freelancer_R','Display','UNDEFINED','9ddad4c1-08d8-44e9-8634-d2b0d5bd4be0','','',NULL), +(6380,'Lynx Legs White','Armor','Legs','e877dfab-2ffe-40da-b826-04ce1185c325','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(6381,'mobyGlass Personal Computers','Cargo','Small','3f888e3a-90c6-4f2c-8ecd-923c2652226a','','','These knock-off mobiGlas use pirated software and are often infected with spyware and malicious programming.'), +(6382,'Baru Gloves (Left Only)','Char_Clothing_Hands','UNDEFINED','8acb55be-2219-445b-abe9-ebc981aa8cbd','','','Ensure you hands are always dry and at the right temperature with the Baru gloves. An advanced sensor system protected by a metal plate on the back of the hand monitors and regulates conditions within the glove. A patented synthetic leather woven with special microfibers works with the sensors and a strap cuff provides a snug fit.'), +(6383,'Pyro RYT Multi-Tool','Weapon','Gadget','5a58baa2-9db8-48b1-9b59-08d556ed88b4','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier.'), +(6384,'Freeze','Misc','Harvestable','28ed6c8a-8d8b-4791-bd61-355abf7861db','','','A synthetic tranquilizer used for muscle therapy that causes very heavy sedation in the user while also activating the nerve endings in their muscles. Originally created as a way to rebuild damaged/rebuilt muscle tissue, it found another use as a sedative weight-loss supplement, and when in a concentrated form, as a party drug.'), +(6385,'Redeemer Polar Camo Livery','Paints','UNDEFINED','c185a54d-822c-4a9a-8bec-bcac5326bd6d','','','Modify your Redeemer with this white and grey camo livery specifically designed for the 2951 IAE.'), +(6386,'DRAK_Cutlass_Red_Thruster_Maneuver_Rear_Bot','ManneuverThruster','JointThruster','df37ef36-dda6-4d04-9d90-55858b94a856','','',NULL), +(6387,'Cordimon Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','f9fa091a-13fd-4721-b23e-8a534c4daf56','','','Carrying Capacity: 3K µSCU\n\nStegman\'s classic worker\'s jacket has been a staple of job sites for over seventy years. This duotone pattern is cut from the toughest material meaning you can wear it anywhere, anytime. It may not be armor, but it damn sure feels like it.'), +(6388,'Carryable_1H_SQ_fruit_oza_1_a','Food','Plant','591b4ad8-1bea-44dd-b429-7a785d0efa1b','','',NULL), +(6389,'GAMA_Syulen_Thruster_Mains_Large','MainThruster','FixedThruster','a80698a4-7a94-452b-a1bc-b388b51bf3b8','','',NULL), +(6390,'Seat','Usable','UNDEFINED','215cd4dd-7e78-48fb-8de2-26be7fa84f8c','','',NULL), +(6391,'Seat','SeatAccess','UNDEFINED','b5372b4a-a222-4047-bb6d-f184e274c348','','',NULL), +(6392,'bar_box_energy_onemeal_tofu','ShopDisplay','Default','34647e6d-2104-43d4-8c08-68078e1f0904','','',NULL), +(6393,'Blue Bilva','Cargo','Cargo','3d2e6075-a991-4d82-893b-135a3eab81b1','','',NULL), +(6394,'TRGT. STATUS','Seat','UNDEFINED','f851e4ed-2ec7-474b-9df5-84dc47ba5b28','','',NULL), +(6395,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','aeaba0e0-732d-4243-aadd-d88126a893d2','','','Joker Defcon - Noise Launcher'), +(6396,'Cupboard','Cargo','UNDEFINED','ce7a51d1-791e-4d8a-b574-8d91f30d7a8a','','',NULL), +(6397,'Lamont Umbra Undersuit','Armor','Undersuit','af4fe2de-7944-4a21-89d7-92be9920877f','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe Lamont looks so good you won\'t want to wear armor over it. Seamlessly blending lightweight plating with durable synthetic weaves, the Lamont will be as comfortable in the cockpit as it is stylish in the streets. Embrace personal protection gear suitable for both work and play, and gain the Hardin Tactical advantage.'), +(6398,'Ship Showdown \'52 C8X Pisces Coin','Misc','Utility','813e6b3c-6b97-45f0-9bd3-59f695e3f8d1','','','Voters in the 2952 Ship Showdown definitely didn\'t snub the C8X Pisces Expedition. This coin honors its top four finish with an image of the ship on one side and the Anvil Aerospace logo on the other.'), +(6399,'Seat','SeatAccess','UNDEFINED','3b48624f-dbce-410a-b60c-c444b2a2ab72','','',NULL), +(6400,'Access','SeatAccess','UNDEFINED','8a2732a2-8d63-430d-9a17-88e691b9ebfd','','',NULL), +(6401,'Outback Core','Armor','Torso','dd28b0ac-6e6b-44e9-8ec9-852e1c4d6f40','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -65 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2k µSCU\nBackpacks: Light\n\nThose on the frontier know that survival is paramount. The tough and lived-in Outback Armor is hewn from reinforced leather, with a thick hooded cowl neck and layered skirting. With the necessary gear, there\'s no guarantee that you\'ll live to see another day, but now you\'ve got a fighting chance.'), +(6402,'Overlord Legs Polarity','Armor','Legs','33ec5f25-322c-49e6-847f-752859402c2e','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.\n\nThe Polarity edition pairs a deep purple with rusted brown accents.'), +(6403,'Outback Arms','Armor','Arms','c6f501b3-d538-41b8-a235-1a02575aaf44','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -65 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nSend a statement with thick leather paired with metal plated cuffs, pauldrons and spike-backed gloves.'), +(6404,'Stitcher Core','Armor','Torso','0e476efa-b76d-4300-ba37-677569084781','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -52 / 82 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDress to impress in scrapheap chic! The Stitcher armor might look like it\'s held together with tape and good intentions but we swear it\'s space safe. The intentional ramshackle design features a funky double collar, plenty of storage, and a ribbed industrial hose attached to a metal cylinder on the back just for the hell of it.'), +(6405,'ADP Arms Violet','Armor','Arms','9e2d5873-d585-457c-b7e3-44438fb3a2b9','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(6406,'Sukoran','Shield','UNDEFINED','39e7e5bf-27ba-4e45-914f-3fcc79a8886c','','','Item Type: Shield Generator\nManufacturer: Banu\nSize: 2\nGrade: C\nClass: Military\n\nGood design always survives with the Banu. The Sukoran shield generator updates Tevarin technology in a number of interesting ways. Its efficient design draws less power, while still effectively producing a robust shield capable of absorbing most ballistic and energy attacks until it\'s fully depleted. However, this greater efficiency comes with a price as the Sukoran\'s slower regen rate may temporarily render the shield offline.'), +(6407,'Inquisitor Core White','Armor','Torso','4afec779-8571-4c7c-8a18-e77bcff8c305','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(6408,'Hair Care Product','Misc','UNDEFINED','2917d0b0-2695-4c4b-a9d4-8b57cba3308e','','',NULL), +(6409,'Revenant Pod','Misc','UNDEFINED','ccc05a6d-2ecb-442d-8f7a-ce6b31e8cd57','','',NULL), +(6410,'Palatino Backpack','Armor','Backpack','3e79b1d5-d213-4c0d-b212-eba3399bcfa2','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. The associated backpack seamlessly integrates into the armor, matching its silhouette while also providing ample storage.'), +(6411,'Drifter','QuantumDrive','UNDEFINED','1546dd53-4a3d-4fd7-b1ed-bf207bfc9a9f','','','Item Type: Quantum Drive\nManufacturer: Tarsus\nSize: 3\nGrade: D\nClass: Civilian\n\nBalancing craftsmanship and cost, the Drifter provides renowned Tarsus performance at an affordable price.'), +(6412,'BEHR_LaserCannon_Ventilation_S3','WeaponAttachment','Ventilation','a6b1caf6-944b-4fb5-9bd1-c34dfb38ea77','','',NULL), +(6413,'Aloprat Skewer','Food','Consumable','2d1497bc-7947-4748-913f-23a7ce852185','','','NDR: 25\nEffects: Immune Suppressing\n\nAloprat is a hearty species of rodent found across Human occupied space, and even can survive aboard space stations and ships eating a variety of food and scraps. This aloprat has been skewered and roasted rotisserie style for crisp skin and gamey, fatty meat.'), +(6414,'OpioPen (Roxaphen)','FPS_Consumable','Medical','d99811fe-a60e-4f38-91a5-cfdb77ac3c97','','','Manufacturer: CureLife\nItem Type: Medical Consumable\n\nFrom the Empire’s most trusted medical company, the CureLife OpioPen can rapidly dispense doses of the pain reliever Roxaphen during emergency situations to help relieve symptoms associated with impaired mobility and partial paralysis. Use only as recommended.'), +(6415,'Door Control','Door','UNDEFINED','30bd6547-0ecd-4810-9cd4-8f946f40670d','','',NULL), +(6416,'parr_outfit_02','Char_Clothing_Torso_1','Male','fc235d16-dff4-44fa-a0fc-d7ff61306729','','','@LOC_PLACEHOLDER'), +(6417,'Carryable_1H_CY_weight_dumbbell_1_1kg_c','Misc','UNDEFINED','2d10e49e-4384-47b3-ad40-b91c53f7e0a8','','',NULL), +(6418,'ClipVest Work Harness Blue','Char_Clothing_Torso_1','UNDEFINED','ce7fdfc3-b318-423f-8dfd-13aa4a8c2d18','','','Carrying Capacity: 2K µSCU\n\nStegman\'s ClipVest is a multi-purpose work harness that keeps your tools handy when and where you need them. Built from industrial strength materials, this harness offers a back piece to help alleviate strain and provide counterbalance.'), +(6419,'Overlord Helmet Stinger','Armor','Helmet','8648122f-b381-4090-9fc6-6829bc02cb91','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord helmet delivers heavy armor protection while using a special lightweight composite plating that makes it feel like nothing\'s there. Repurposed ocular sensors normally found on ships keep you attuned to your surroundings and, when worn with the full Overlord suit, the high neck collar provides the helmet extra support and protection. Visor is AR crosshair compatible.'), +(6420,'Intrepid-OS','Suit','ThrusterPack','63e5146d-edcd-423e-915a-4f2f3e8be860','','','RSI\'s Intrepid has been a reliable name in flight suit components for decades. The focused nozzle system provides consistent thrust for precise control in zero gravity.'), +(6421,'AEGS_Sabre_Firebird_Thruster_Mav_Joint_01','ManneuverThruster','Light','29029b91-2025-436f-8a81-d502fbdf2e3d','','',NULL), +(6422,'Sarilus','Cargo','Cargo','5acebe0d-6af4-404b-85f4-9fee6c06f556','','',NULL), +(6423,'Expedition','QuantumDrive','UNDEFINED','4702547f-fa0f-4f6c-b2ed-9782ee9f518b','','','Item Type: Quantum Drive\nManufacturer: Tarsus \nSize: 1\nGrade: C\nClass: Civilian\n\nCruise through space confident that your perfectly balanced Expedition quantum drive from Tarsus will get you exactly where you’re going.'), +(6424,'Flight Blade','FlightController','UNDEFINED','5265daad-9c37-4a34-bb66-7afd87ba3e38','','',NULL), +(6425,'stand_shop_medium_Cooler','ShopDisplay','UNDEFINED','6e90c98e-4446-4654-932e-1b8c1fa397a5','','',NULL), +(6426,'Bengal_BallisticCannon_Ventilation_S7','WeaponAttachment','Ventilation','a7167416-0fce-4482-af7e-0e108e5a8469','','',NULL), +(6427,'dynapack_container_01x01x01_4Ports','ShopDisplay','UNDEFINED','09ace1cd-3d9f-4178-a90a-8b3085cc2278','','',NULL), +(6428,'Aster Gloves Sand','Char_Clothing_Hands','UNDEFINED','5d864483-2433-4c73-981a-9cd67ae980f8','','','Pros at keeping your hands safe without sacrificing dexterity, the slip-resistant Aster Gloves deliver solid protection and lasting warmth during chilly or hostile conditions. The tough synthetic leather breaks in well and will stand up to years of frequent use.'), +(6429,'AEGS_Reclaimer_Thruster_Mav_Fixed_Top','ManneuverThruster','FixedThruster','438653d5-7916-4775-a7e0-b17a45d9c585','','',NULL), +(6430,'Carryable_TBO_FL_16SCU_Commodity_ProcessedGoods_AceInterceptorHelmet','Cargo','Cargo','0412e7b0-8e23-415d-8af1-386e9b0c903a','','',NULL), +(6431,'ORC-mkV Arms Red','Armor','Arms','743be4e4-f6d3-41d1-aec9-c5880520eb97','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(6432,'Golem Cypher Livery','Paints','UNDEFINED','13742bbe-675e-450e-9b48-5e6bcd4b2dbc','','','Striking green and blue highlights elevate the black base paint of the Cypher livery.'), +(6433,'Door Control','Door','UNDEFINED','fb62a888-1172-440f-894a-c0c1d04c80da','','',NULL), +(6434,'P8-SC SMG','Weapon','Medium','bc644573-ea0f-4974-b23c-63b24425f639','','','Manufacturer: Behring\nItem Type: SMG\nClass: Ballistic\n\nMagazine Size: 45\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nWhen the top fighting force in the universe chooses a weapon as their standard, it pays to stand up and take notice. The Behring-crafted P8-SC has been the ballistic submachine gun of choice for the UEE Marines since it first came off the production line, but since then, many have come to rely on this weapon for their own personal safety and protection.'), +(6435,'SCItemDisplayScreen_ScreenSize_W60_H34_H69_Custom_Bridge_Hologlobe','Display','Default','61c43962-34e7-484a-9667-c46312d2420d','','',NULL), +(6436,'MISC Freelancer MIS Missile Launcher','MissileLauncher','MissileRack','a96187df-fe72-41ed-a8dc-394f8dd883f0','','','MISC Freelancer MIS Missile Launcher'), +(6437,'Clempt Pants Imperial','Char_Clothing_Legs','UNDEFINED','bcecfae6-323f-48d3-b371-94a8db842907','','','Carrying Capacity: 2K µSCU\n\nStegman\'s factory pants have been taken to the next level with the Clempt line. These rugged all-purpose pants come with double knees for extra comfort and protection and are made from tough composite weave fabric to last as long as the work needs.'), +(6438,'Mug','Drink','UNDEFINED','6b628df2-a2a1-446c-9d52-9fe2b7e6d63e','','',NULL), +(6439,'WowBlast Desperado Toy Pistol Red','Weapon','Small','8b1e2f39-c841-4802-b963-d17414e96421','','','Manufacturer: Sakura Sun\nItem Type: Toy Pistol\nClass: Foam Dart\n\nMagazine Size: 10\nRate Of Fire: 450 rpm\nEffective Range: 35m\n\nMake friendly fire fun with the Sakura Sun WowBlast Desperado. Playfully fire foam darts at friends or fictitious foes with these ultra-colorful plastic toy pistols. Whether killing time at a landing zone or during a long-haul through the stars, the WowBlast toy line provides lighthearted excitement and entertainment for the entire family. The Desperado toy pistol is available in several vibrant colors, each featuring a unique sound effect!'), +(6440,'VNCL_Stinger_Thruster_Main_Fixed_Small','MainThruster','FixedThruster','e4b80ee3-1e78-4528-8d2b-079969507f60','','',NULL), +(6441,'m_scale_vlk_adult','Char_Accessory_Head','Vanduul','abf42469-7694-4696-965a-1cbbc4ebf60b','','',NULL), +(6442,'MacFlex Legs White','Armor','Legs','355e287a-433f-4286-bff2-d7367008169a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(6443,'Apollo Olympian Livery','Paints','UNDEFINED','72c72134-4560-4c35-9dc7-2408e3efeed4','','','Be a beacon of hope with the Olympian livery for the Apollo with its striking silver and blue paint.'), +(6444,'display_ship_components_03x0075x0275_b','ShopDisplay','UNDEFINED','a6b3232e-8f0e-48ee-b66c-c7dbe083b2db','','',NULL), +(6445,'Beacon Undersuit Tan/Brown','Armor','Undersuit','8c1744f0-2b01-4a80-a08f-8e77968e8acd','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRSI\'s Beacon undersuit is a general use utility designed to provide total protection against environments and vacuum. Built out of a durable but flexible polymers, the Beacon provides a wide freedom of motion for a variety of body types.'), +(6446,'SHIELDS','ShieldController','UNDEFINED','d92c8588-1f7f-4a40-a839-f9066bcc31a6','','',NULL), +(6447,'Manned Turret','TurretBase','MannedTurret','44224c1b-81d3-4346-ad8a-bdf81e73e0db','','',NULL), +(6448,'TRGT. STATUS','Seat','UNDEFINED','4742dd7b-ae42-4ee7-9882-c0dec44ec3e2','','',NULL), +(6449,'Corbel Legs Patina','Armor','Legs','dd047930-4575-452f-ae06-006245f50a34','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nOriginally designed as a strength enhancement suit to give factory workers better lifting power, CDS found wider application in utilizing its defensive capabilities. It\'s triple-enforced armor plating provides extreme physical protection, with deliberate placing of materials to protect the most vulnerable parts of the body. A series of pneumatic levers offer increased flexibility in the joints, alleviating pressure and weight in key areas to create an accessible and highly protective armor despite its heavy weight.\n\nThe Patina edition offers a grounded look combining soft teal with bronze.'), +(6450,'AEGS_Door_Decal_Deck_B','Decal','DoorPart','4648a8fd-67e5-4c12-ac19-132eb5ec719d','','',NULL), +(6451,'Turret','TurretBase','MannedTurret','9070f456-ffce-485f-bce0-3347bf83e5ee','','',NULL), +(6452,'Palatino Backpack Deadlock','Armor','Backpack','4974a180-0a7b-436f-9eae-bbb9ccfdd35c','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. The associated backpack seamlessly integrates into the armor, matching its silhouette while also providing ample storage. The Deadlock variant features a grey camo pattern with yellow highlights.'), +(6453,'Internal Tank','FuelTank','Fuel','404772f0-0730-4006-997c-a8452a86ffd2','','',NULL), +(6454,'ARGO_ATLS_GEO_Mining_Tool','Misc','UNDEFINED','7c718ef7-251f-4ccf-aec5-02c44253e011','','',NULL), +(6455,'Palatino Backpack Mark I','Armor','Backpack','877290d3-a275-414f-9eb1-7d2fce3c4fdb','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. The associated backpack seamlessly integrates into the armor, matching its silhouette while also providing ample storage. The Mark I variant is primarily icy white with blue and red highlights.'), +(6456,'Turret','Turret','BallTurret','547ec8ba-89a6-49a8-8065-67349f179971','','','Multitask on the battlefield with this remote turret system. Featuring precise controls and a wide field of fire, the turret allows pilots to add combat support to their resume.'), +(6457,'WhiteOut','Cooler','UNDEFINED','29026bad-ef1d-4a72-8059-f1fe2c397603','','','Item Type: Cooler\nManufacturer: Lightning Power Ltd.\nSize: 2\nGrade: D\nClass: Civilian\n\nYour ship faces a lot of extreme conditions while flying. From the coldness of space to the burning heat of a desert planet, the last thing you want to worry about is if your cooler can keep up. The entry-level WhiteOut from Lightning Power provides thermal management that can help make sure you get where you’re going.'), +(6458,'Consolidated Outland Hat','Char_Clothing_Hat','UNDEFINED','5b1235e2-65bc-4c4a-a5b6-5a047cfa3f8c','','','Consolidated Outland thrives on the edge of innovation. Promote their initiative by wearing this dark grey hat with the company\'s branding gracing the front panel.'), +(6459,'CRUS_Starlifter_Door_Decal_Kitchen','Decal','DoorPart','8a5204b4-3435-42ac-acda-2bcbe43a1fb9','','',NULL), +(6460,'Thorby Shirt','Char_Clothing_Torso_0','UNDEFINED','d22422fa-7584-4cfb-8f7d-556e3aaf453a','','','OpalSky\'s Thorby features a classic asymmetrical design and high collar that evokes timeless style and elegance.'), +(6461,'Dashboard','SeatDashboard','UNDEFINED','cef904d1-ac4a-4979-815f-fe136f53f694','','',NULL), +(6462,'IndVest Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','7b2797f9-b000-459f-83a9-2f3d56f8cc1c','','','Carrying Capacity: 5K µSCU\n\nKeep your tools within easy reach with Stegman\'s IndVest. Made from industrial strength materials, this is a rare jacket that\'s both stylish and sensible.'), +(6463,'Polaris Best in Show 2955 Livery','Paints','UNDEFINED','8fbd84e2-b595-4709-a7a2-c745d18dc1b3','','','Commemorate the Polaris taking the crown as the winner of the 2955 Ship Showdown with this striking metallic orange and black Best in Show livery.'), +(6464,'HLX99 Hyperprocessors','Cargo','Small','d763bdc1-0866-49dd-8a81-1f87ce83f8a5','','','Commonly known as \"Helixes\" these Banu manufactured processing chips were designed for fullcore crypto-cracking and are used in the manufacture of computer system infiltration devices.'), +(6465,'600i 2954 Auspicious Red Dragon Livery','Paints','UNDEFINED','4295a217-453d-475c-b7b6-f486f6e98e68','','','Seek peace and prosperity in the new year with the Auspicious Red Dragon livery. Outfit your ship with this bold red base paint complemented by gold accents and a stylized graphic of a dragon.'), +(6466,'Seat','SeatAccess','UNDEFINED','4f4815d3-fc88-4380-a2f4-3804fe2e0b45','','',NULL), +(6467,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','bc836163-6d15-4d0a-a7c4-a3a812dad0bd','','','Joker Defcon - Noise Launcher'), +(6468,'AEGS_Sabre_Firebird_Winglet_Right','Misc','UNDEFINED','23c7c227-f23f-4a86-bbfa-7409a8b9720d','','',NULL), +(6469,'MISC_Freelancer_Base_SCItem_Dashboard_Esc_Pod_Upper_Right','SeatDashboard','UNDEFINED','dee3b90c-674c-4028-90e2-0de4565f41c9','','',NULL), +(6470,'Door Control','Door','UNDEFINED','65962533-0ae8-420e-9377-798b0917160c','','',NULL), +(6471,'Arclight \"Boneyard\" Pistol','Weapon','Small','5d94d393-8bb2-49dc-aeae-dbd4fb450842','','','Manufacturer: Klaus & Werner\nItem Type: Pistol\nClass: Energy (Laser)\n\nBattery Size: 30\nRate Of Fire: 300 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nA handheld laser made famous as Kyle Fenris’ sidearm on the hit vid show The Frontier, the Klaus & Werner Model II Arclight has become extremely popular on the civilian market. Despite its media appeal, the Model II offers a higher rate of fire than any of its ballistic counterparts. While that may diminish the weapon\'s stopping power, its power cell offers more than enough shots to finish the job.'), +(6472,'RSI_Zeus_Thruster_Retro','ManneuverThruster','Retro','1c9861ba-98e1-446d-a8f7-98b19e70818c','','',NULL), +(6473,'CargoBox_050x050x050_Tank_Water_StartTop','Cargo','Cargo','852e6e98-fb23-4a18-9daf-11d12b88e44a','','',NULL), +(6474,'Terrapin Vitality Livery','Paints','UNDEFINED','4f585d9e-37bc-24f4-887e-09b325df3783','','','The Vitality livery brings a bright white base paint with teal and red accents to the Terrapin.'), +(6475,'Seat','Usable','UNDEFINED','4dd2315e-59c3-46c4-8971-91b0cf122ed0','','',NULL), +(6476,'Landlite Boots Violet','Char_Clothing_Feet','UNDEFINED','832a4625-b3e1-4ec2-b8e0-e20bb8a42dc8','','','Who says work boots can\'t be comfortable? Grindstone\'s Landlite boots are built with a breathable synth-leather material to keep your feet dry, a contoured, memory footbed, and a slip-resistant outsole, making it perfect for whatever worksite you throw at it.'), +(6477,'Ouratite','Cargo','Cargo','57a8a123-afcf-4769-9190-86016a14ff68','','',NULL), +(6478,'Carryable_2H_FL_05x05x05_MissionItem_waste_bloody_a','Misc','UNDEFINED','1ceb16f1-4a17-44e3-9e72-855775051903','','',NULL), +(6479,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','0bb8cd37-41ed-4bc9-a4b2-681c249d2418','','','Joker Defcon - Noise Launcher'), +(6480,'Keystone Jacket Gold','Char_Clothing_Torso_1','UNDEFINED','a35400a7-cd40-423a-beec-8115df104445','','','Carrying Capacity: 1K µSCU\n\nDMC’s Keystone is a two-layer jacket that puts utility first. The top-most vest layer ensures the Keystone jacket remains warm and durable, while the underlayer is designed to avoid restricting your range of motion. Various pockets adorn the jacket to provide convenient storage options.'), +(6481,'Strata Helmet Amber','Armor','Helmet','33251b3f-ff0c-412d-80d2-2dc02a35c088','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design features high quality materials and a next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Amber edition is burnt orange with black and grey highlights.'), +(6482,'Medical Supplies','Cargo','Cargo','7f1d1839-a751-41d4-8927-1f7199cafb8b','','',NULL), +(6483,'Falston Jumpsuit \"microTech Edition\"','Char_Clothing_Torso_1','UNDEFINED','7f17f8ea-b1e3-4cf8-a85e-7696f1a3bdbc','','','Carrying Capacity: 1K µSCU\n\nThe Falston jumpsuit has a high collar to guard against the elements, triple-reinforced stitching, and an extra soft interior lining because everyone deserves a bit of comfort.'), +(6484,'Syulen Ocellus Livery','Paints','UNDEFINED','351db7bd-7a74-4be9-be02-49708063860b','','','The Ocellus livery adapts and updates the iconic colors and design used on some Tevarin ships to bring a striking new look to the Syulen. The livery features red markings circling the cockpit and shimmering green across the rest of the wings. Grey lines cut through both colors to break up the pattern and silhouette of the ship.'), +(6485,'Stinger Deathstalker Livery','Paints','UNDEFINED','63b86c01-d57e-45a8-9a91-206d02be41c8','','','Bring pain to the battlefield on bronze-clad wings with the Deathstalker livery for the Esperia Stinger.'), +(6486,'Seat','SeatAccess','UNDEFINED','6352cbfa-5b3b-41a9-8afa-9212d90bcd47','','',NULL), +(6487,'Door Control','ControlPanel','DoorPart','29513059-8617-4537-9401-9d25116fd4dc','','',NULL), +(6488,'TRGT. STATUS','Seat','UNDEFINED','70e94efa-7a36-47d2-95c9-ab357b30fe7d','','',NULL), +(6489,'Manned Turret','TurretBase','MannedTurret','8f934d57-bd0c-4c36-9c80-79917fda6be9','','',NULL), +(6490,'FBL-8u Undersuit Desert Digital','Armor','Undersuit','1545424c-74cb-4a94-804c-919ea103d1e8','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThe FBL-8u is the first CDS undersuit to utilize the manufacturers new orb-weave technology that produces an impressively light yet strong material that can withstand the rigors of space travel. Originally developed to pair perfectly with CDS\'s FBL-8a light armor, it remains compatible with other armor sets.'), +(6491,'Aril Legs Hazard','Armor','Legs','cd86a6ff-0abc-4bf0-bce3-00be8cc3643e','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(6492,'RSI Lorica Ship Armor','Armor','Medium','18692e61-4ad2-42e2-b79c-37c21dc5c8f7','','','RSI Lorica Ship Armor'), +(6493,'Seat','SeatAccess','UNDEFINED','f31b04ea-b75e-4c19-a78f-520a153a0b7e','','',NULL), +(6494,'Armor_Crate_CZ_Firerat_007','Usable','UNDEFINED','0568930d-9ac9-4de5-bd27-76ad90e9a067','','',NULL), +(6495,'Door','Door','UNDEFINED','d85a92a0-23f7-4972-bb1c-cbbe2ce0f93b','','',NULL), +(6496,'DCSR2','Cargo','Small','cd90dea7-264d-4f42-90ca-dc9a33c6a5d4','','','An organically derived terpenoid lipid, dicylasterone (commonly known as DCSR2), has been banned from use in biomedical applications. Currently, it is most typically used in the manufacture of illegal narcotic \'SLAM.\''), +(6497,'Beryl (Raw)','Cargo','Cargo','61c0471c-27b9-482a-82ce-860b8cf072ee','','',NULL), +(6498,'Devastator Shotgun Battery (12 cap)','WeaponAttachment','Magazine','86eec5f7-3dd0-40f2-a433-3dc143c0d231','','','Item Type: Battery\nCapacity: 12\n\nThis high-voltage plasma capacitor allows the Kastak Arms Devastator shotgun to fire twelve standard shots, or fewer over-charged shots. '), +(6499,'ADP Arms White','Armor','Arms','b2e2dfd2-84ed-419d-b38b-8b8f8ee6f263','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(6500,'ADP Core Orange','Armor','Torso','3032438e-76c3-4fe9-a25f-2e59013b5904','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(6501,'Citadel Core Icefall','Armor','Torso','9349eae9-9072-4333-a9e1-520866ad7d32','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(6502,'Cobalt','Cargo','Cargo','f9948a7c-da1a-482a-812b-afeba0711dfa','','',NULL), +(6503,'Gadget_Cabinet_kegr_fire_extinguisher_01_Nozzle_ground','Usable','UNDEFINED','def2901d-b7d5-4ab5-bc5d-28f6f01764ce','','',NULL), +(6504,'Strata Arms microTech Edition','Armor','Arms','d2ae95d8-ba4a-4a5c-aab4-8cbeeea05893','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The microTech Edition was made specifically for the company.'), +(6505,'Radar_Display_Mantis','Display','UNDEFINED','7a267da3-d086-4d94-ba7c-74398ce8900f','','',NULL), +(6506,'Cup','Drink','UNDEFINED','4c4c30a3-f200-42f0-a6c7-97d0697a8826','','','A drinking vessel.'), +(6507,'TRGT. STATUS','Seat','UNDEFINED','12839e0d-c06a-4103-a380-f1a1e82cc3e4','','',NULL), +(6508,'MISC_Fury_Thruster_Main_LX','MainThruster','JointThruster','6000f4f3-1553-49b7-9c9d-ca48d251f3e9','','',NULL), +(6509,'Slipstream','PowerPlant','Power','92fc134c-4d10-48fb-b439-aec44e36fe4e','','','Item Type: Power Plant\nManufacturer: Tyler Design & Tech\nSize: 1\nGrade: A\nClass: Stealth\n\nTyler Design & Tech uses an expensive alloy on its Slipstream power plant to reduce its overall emissions. This design choice is key to making this small power plant’s detectable signature one of the lowest on the market.'), +(6510,'Carrion Helmet','Armor','Helmet','14f935ce-cc19-4871-8235-7b8edc03246a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nForged from scavenged metals and ragged clothes, the Carrion armor is a crude concoction of repurposed materials that demonstrates you\'ll do anything it takes to survive. The helmet has a high comb of iron bars and an opaque faceplate that allows the wearer to see clearly while obscuring their visage.'), +(6511,'DoorProximitySensorItem_3x8x1_5','Sensor','DoorPart','97a2c043-94fd-4763-af92-5d25a0722a1f','','',NULL), +(6512,'Deo Shirt Twilight','Char_Clothing_Torso_0','UNDEFINED','956ddf19-a9e8-4044-8857-eab7e563fd2a','','','Fiore\'s Deo is a slim cut work shirt that\'s as practical as it is timeless. Featuring a high collar and metal neck clasp, the Deo has been a mainstay in business attire.\n\nWomen\'s sizes currently out of stock.'), +(6513,'Defiance Legs Charcoal','Armor','Legs','9847beac-0ce3-49fe-bccb-4c175517f512','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nIncorporating the same manufacturing know-how and expertise that the UEE Marines have come to rely on, Clark Defense Systems has designed their civilian-line of Defiance heavy armors to stand firm in the face of even the most adverse combat scenarios with its three-star rated protective plating and fully integrated mobility framework.'), +(6514,'Bantam Hat URW','Char_Clothing_Hat','UNDEFINED','40cb5e9c-2d30-41eb-a672-93a4e8ae207c','','','The Bantam hat from 987 offers a large bill and cushioned banding for all-day comfort. This version features a United Resource Worker\'s logo on the front with a gray back and bill.'), +(6515,'ORIG_600i_Thruster_Mav_Fixed_03_Top','ManneuverThruster','FixedThruster','19ae4388-858f-4964-8761-e12d38a4f025','','',NULL), +(6516,'TrueDef-Pro Arms','Armor','Arms','9cf087db-51cf-44c3-8acd-e252a4836e6c','','',NULL), +(6517,'Endurance','PowerPlant','Power','49d355d9-b5a5-454a-a6e8-dedb4bdffa02','','','Item Type: Power Plant\nManufacturer: Juno Starwerk \nSize: 1\nGrade: B\nClass: Industrial\n\nJuno Starwerk’s Endurance has been in service since the 26th century. This industrial strength, utilitarian power plant is a favorite of mechanics since spare parts are easily acquired.'), +(6518,'Sarilus','Cargo','Cargo','51e100c1-58ae-4cc9-8c66-3b46893ac3f5','','',NULL), +(6519,'AEGS_Retaliator_Esc_Pod_Decal_04','Decal','DoorPart','9edd2a20-2b5f-49b4-a6bf-677badd78deb','','',NULL), +(6520,'Datapad','Misc','Gadget','f19b178c-fefa-48bb-8e2d-37877ab507c8','','','A portable tablet computing device featuring a touchscreen display.'), +(6521,'EE16 (16x Telescopic)','WeaponAttachment','IronSight','7b3e9ad7-45f2-4ee5-b17a-8b8b8bb0112c','','','Manufacturer: Behring\nType: Telescopic \nAttachment Point: Optic\nMagnification: 16x\nAim Time: +0%\nSize: S3\n\nGet a clear view of your target from afar with the EE16. Behring craftsmanship produced a 16x scope that\'s lightweight, durable, and deadly accurate. A rigorous 22-step testing process ensures the EE16 can deliver precision targeting even after encountering extreme weather or surviving battlefield wear and tear.'), +(6522,'Aril Core Red Alert','Armor','Torso','e3c59d62-f2c4-40bd-bf93-36dce86e9089','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(6523,'Pite','Char_Head_Piercings','UNDEFINED','782d5764-1e9a-4b5c-a69c-e5a5e09af2a0','','',NULL), +(6524,'Weapon Rack','Door','UNDEFINED','cac88501-e371-4ea9-a057-575f1cef8061','','',NULL), +(6525,'TrueDef-Pro Arms Black/Grey/Red','Armor','Arms','bb5394d0-d54d-4cf3-83d9-1de80156ed70','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(6526,'Door Control','Door','UNDEFINED','80f9834b-b37f-48e3-bbdd-608db1872b6e','','',NULL), +(6527,'Vanduul Metal','Misc','Harvestable','9889fb6f-5ab7-4b8e-b553-8ad7e233741d','','','A piece of metal of Vanduul origin.'), +(6528,'ARMR_ANVL_Valkyrie','Armor','Medium','315fae0f-6991-4248-ac72-86f05a6f56c5','','',NULL), +(6529,'Clempt Pants Seagreen','Char_Clothing_Legs','UNDEFINED','fe92b60e-3388-4381-bc44-d4688b8bfc29','','','Carrying Capacity: 2K µSCU\n\nStegman\'s factory pants have been taken to the next level with the Clempt line. These rugged all-purpose pants come with double knees for extra comfort and protection and are made from tough composite weave fabric to last as long as the work needs.'), +(6530,'Lindinium','Cargo','Cargo','70970816-e2a4-46c5-9008-6c0fdc8055da','','',NULL), +(6531,'Door','Door','UNDEFINED','af5c4b2b-134e-490f-8a30-8ec32899829d','','',NULL), +(6532,'RSI Apollo S02 Missile Rack','MissileLauncher','MissileRack','472dcf8a-dba7-56e1-d556-a9d0ce074aaf','','','Item Type: Missile Rack\nManufacturer: Roberts Space Industries\nSize: 2\nMissiles: 4xS2\n \nBespoke missile rack for the RSI Apollo that fires four S2 missiles.'), +(6533,'Concept Shirt Violet','Char_Clothing_Torso_0','UNDEFINED','d4445c8b-24b5-4373-86b4-3f7b089a8744','','','This crisp, versatile button-front shirt from Fiore is made with cutting edge stain resistant and wrinkle-free technology, guaranteeing that you stay professional at all times.'), +(6534,'Fresh Food','Cargo','Cargo','f6878ffe-0541-461e-a185-6bf30fd3e1dc','','',NULL), +(6535,'LeMarque Pants Black','Char_Clothing_Legs','UNDEFINED','f534460a-50bc-4b55-9687-92e4d6e1305c','','','Carrying Capacity: 0.5K µSCU\n\nClassic cuts never go out of style. A staple of any wardrobe, Derion\'s LeMarque are built for work or play and feature microseam pleats and wrinkle-free material that will guarantee that you\'ll get years out of this classic.\n\nWomen\'s sizes currently out of stock.'), +(6536,'Inquisitor Arms Aqua','Armor','Arms','a3d2c4b2-1e97-4522-8ff5-0769bf0f62bd','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(6537,'Pembroke Exploration Suit RSI Edition (Modified)','Armor','Undersuit','e22947ac-8964-4c1a-a715-9974ceb5cc56','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nThis version of Caldera\'s Pembroke exploration suit has been modified from its original form. Designed to extend the limits of Human endurance, the Pembroke was built to withstand the extreme heat of inhospitable high temperature environments. Based off of Caldera\'s best-in-class exploration armor platform, an advanced sensor suite intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. The special RSI Edition of the Pembroke ensures those seeking to cross bold new horizons do so in style.'), +(6538,'AEGS_Dropship_Seat','Usable','UNDEFINED','5b1395a8-f67b-4ce7-bfb4-9185d9857e8d','','',NULL), +(6539,'Venture Legs Aqua','Armor','Legs','c0d49eda-3381-46a9-abfd-97e540a5a8aa','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(6540,'Demeco LMG','Weapon','Medium','b13a3815-92e7-4e09-962f-b24bcdaf3a42','','','Manufacturer: Klaus & Werner\nItem Type: LMG\nClass: Energy (Laser)\n\nBattery Size: 100\nRate Of Fire: 400 rpm\nEffective Range: 40 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S3)\n\nKlaus & Werner has created an iconic weapon with tried and true Demeco laser LMG. Used extensively in military engagements, this short-to-mid-range infantry favorite has been constructed with stability and accuracy at the forefront.'), +(6541,'MISC_Starlancer_Seat_Access_Drone','SeatAccess','UNDEFINED','f5d1510b-b1c5-4b77-ae0a-a7a9a1aec149','','',NULL), +(6542,'m_human_mannequin_rsi_suit_01','ShopDisplay','UNDEFINED','5c8c8c88-24d7-483a-a91f-df85506e469b','','',NULL), +(6543,'Sol-III Core Aviator','Armor','Torso','4def8d44-c340-4c66-a837-38a3cf0fa45f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\nBackpacks: Light\n\nInspired by the original flight suits worn by Earth\'s Air Force, this replica stays true to the historical design while incorporating modern comforts.\n\nThe Aviator edition is primarily green-beige with light green accents.'), +(6544,'FocalWave-10 (1x Holographic)','WeaponAttachment','IronSight','fadb8d2f-ae39-4ca1-8d64-3fc7423d2154','','','Manufacturer: VOLT\nType: Holographic\nAttachment Point: Optic\nMagnification: 1x\nAim Time: +8%\nParallax: Very Low\nSize: 1\n \nManufactured to provide crucial combat information in real-time, the FocalWave-10 features a precise targeting reticle, as well as an enhanced visual display that tracks the heat and charge of your weapon.'), +(6545,'Vehicle_Screen_MFD_Holographic_ORIG_300i_BL','Display','UNDEFINED','69bf63ff-171d-44ff-a11e-23b6d41b7261','','',NULL), +(6546,'Seat','Usable','UNDEFINED','c928b3f6-06cf-4a8d-950e-0b6d732cdfcd','','',NULL), +(6547,'Personal Storage','Cargo','UNDEFINED','a3feab2d-ea3f-42c0-b6bf-22f128be45e1','','',NULL), +(6548,'VNCL_Scythe_Thruster_Retro_Fixed_Left','ManneuverThruster','FixedThruster','98f26807-74ff-40b5-bbd0-29f188ec7d2d','','',NULL), +(6549,'AEGS_Door_Screen_Single_04','Decal','DoorPart','e2348cd4-12a9-438e-bd18-fb09d59b03f2','','',NULL), +(6550,'Seat','SeatAccess','UNDEFINED','b7db8eca-a431-4d9d-9255-879f128eeb72','','',NULL), +(6551,'Inquisitor Legs Base','Armor','Legs','304fbb02-3fd4-4d75-b39e-a4b1f7634d91','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(6552,'RSI_Polaris_Torpedo_Tube_Inner_Geo_L','AttachedPart','UNDEFINED','af5cf223-4fcc-4f79-8f38-d3abbe757d95','','',NULL), +(6553,'Li-Tok Boots Imperial','Char_Clothing_Feet','UNDEFINED','eddaf0e9-ae2b-49b5-a803-ad58a6f86b0f','','','Stylish yet rugged, NorthStar\'s Li-Tok boots are made from a composite nylon fabric, vulcanized rubber grips that hold fast to a variety of surfaces, and reinforced ankle support making these perfect for hanging out or on the job.\n\nWomen\'s sizes currently out of stock.'), +(6554,'RCMBNT-RGL-2','InventoryContainer','Cargo','2043df43-9347-4e32-90a4-48494e33c08c','','','An imprint recombinant sample created from CTLST-RGL and REAGENT-02 as part of Dr. Logan Jorrit\'s Project Hyperion experiment.'), +(6555,'Redeemer Valencia Livery','Paints','UNDEFINED','544eb1ce-16fb-4ca6-bf8f-d51061f42360','','','Mixing metallic orange and black, the Valencia livery brings a bold and beautiful styling to the Redeemer.'), +(6556,'H_Dashboard_Projector_HUD_DRAK_Herald','Display','UNDEFINED','2676efe7-0cb0-48f5-bf14-55c27746ca78','','',NULL), +(6557,'Door Control','Door','UNDEFINED','986da4db-ea2d-463c-9bfb-71c989400412','','',NULL), +(6558,'Weapon_Rack_ANVL_Asgard_11_Slot','Usable','UNDEFINED','36a00265-1774-46b7-a611-2722f5564cda','','',NULL), +(6559,'Odyssey II Helmet Lovestruck','Armor','Helmet','274cb719-5b55-480c-b9c4-bc78baae20a9','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up. This special Lovestruck edition features a stylish metallic pink and black color scheme inspired by the colors of the Coramor festival.'), +(6560,'Tacit Suppressor1','WeaponAttachment','Barrel','1217e61b-1a57-4d94-8aa4-16d5fcb59adf','','','Manufacturer: ArmaMod\nType: Suppressor\nAttachment Point: Barrel\nSize: 1\n\nDamage: -8%\nAudible Range: -60%\n\nStrike silently with the Tacit Supressor1. ArmaMod uses a proprietary ceramic coating inside the suppressor to ensure the sound of gunfire remains minimal.'), +(6561,'MISC_Hull_C_FoldingStrut_2A_Outer','Cargo','UNDEFINED','e4c24413-ee8f-49cc-8ed4-22d6ea5bdfe3','','',NULL), +(6562,'Cirrus Boots Gray','Char_Clothing_Feet','UNDEFINED','3e59ed2b-93c3-4043-bac9-15c68212fb5d','','','Temp. Rating: -35 / 15 °C\n\nThese rugged, high ankle boots will keep your feet warm when venturing into wintry conditions. The Cirrus also integrates steel alloy links into the sole for added traction on icy surfaces.'), +(6563,'Radar_Display_MISC_Reliant','Display','UNDEFINED','8e0db77b-1f27-421d-9bd4-843baf789943','','',NULL), +(6564,'Monde Arms Hiro','Armor','Arms','2f871290-4387-479b-ba21-00107c5e0695','','','tem Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints. \n\nThe Hiro edition features a clean white finish with dark gray accents.'), +(6565,'GrimHex_Datapad_BennyArtist_4x3_Screen','Display','UNDEFINED','4126ff24-db23-4859-b571-1185befd1088','','',NULL), +(6566,'Morningstar Helmet Blue','Armor','Helmet','c7e772e7-a99f-4881-b0ef-bfe0093807c6','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(6567,'FR-86','Shield','UNDEFINED','5fa67088-9677-40c4-b552-46c16bd7162e','','','Item Type: Shield Generator\nManufacturer: Gorgon Defender Industries\nSize: 3\nGrade: A\nClass: Military\n\nGorgon’s FR-86 is tried, tested, and trusted. No other large shield generator delivers both exceptional performance and durability to this degree.'), +(6568,'Spirit Ardent Livery','Paints','UNDEFINED','29dbf289-c9b2-475d-84f6-aaaa56678c5b','','','With clean white panels and an azure trim, this livery elevates the look of the Crusader Spirit to the next level.'), +(6569,'Cyclone Whirlwind Livery','Paints','UNDEFINED','be0fc881-71b1-4ede-9514-ea7bcfd417e9','','','The Whirlwind livery mixes various shades of blue in a memorable animal stripe pattern to give the Cyclone a daring look.'), +(6570,'Torrent','QuantumDrive','UNDEFINED','d1b9fbc4-797b-4777-a9da-f2e58c095922','','','Item Type: Quantum Drive\nManufacturer: ArcCorp\nSize: 2\nGrade: C\nClass: Civilian\n\nWhatever destination you choose, the ArcCorp Torrent quantum drive is a solid choice to help get you there direct and hassle-free.'), +(6571,'Seat','Usable','UNDEFINED','3d9ae6ad-ac79-4243-b2b8-98615c8e3be5','','',NULL), +(6572,'Carrack Copernicus Livery','Paints','UNDEFINED','0871c014-2813-4a61-8926-c5b9ab0d1d52','','','To honor the brave explorers that brought us to space and support those currently seeking new frontiers, the Interstellar Cartography Center (ICC) commissioned this special livery for the Carrack. Named in honor of famed astronomer Nicolaus Copernicus, the livery mixes two shades of blue with black highlights. All proceeds from the sale of the Copernicus livery goes directly to the ICC to support their efforts in \"Charting the Way Ahead.\"'), +(6573,'Ranta Dung','Cargo','Cargo','4b0223c9-d585-414a-a143-fc94a8a77ed3','','',NULL), +(6574,'Door Control','Door','UNDEFINED','c422ec7c-5fa2-4ccd-be12-509b1ed4603b','','',NULL), +(6575,'MSD-212 Missile Rack','GroundVehicleMissileLauncher','GroundVehicleMissileRack','272edd9d-f140-4290-98c4-caaae994faad','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 2\nMissiles: 1xS2\n\nBehring’s MSD-212 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 2 hardpoint for the reliable and effective launch of one S2 missile.'), +(6576,'Door Control','Door','UNDEFINED','6b248a8f-af83-4d48-bcbd-eb441e79a87a','','',NULL), +(6577,'DRAK_Cutlass_Blue_Thruster_Maneuver_Top','ManneuverThruster','JointThruster','a5587418-b88e-42b0-81b2-bbca4404b39d','','',NULL), +(6578,'Flight Blade','FlightController','UNDEFINED','0861b6e7-e6ec-42ec-a346-7c76896cdb33','','',NULL), +(6579,'Inquisitor Core Violet','Armor','Torso','045877db-4103-4ebc-bf9f-9929e8107a64','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(6580,'box_fabric_1_005x005x005_b_v003','Cargo','UNDEFINED','fd760d9a-b89c-4755-81d2-1441a38cadd6','','',NULL), +(6581,'ORC-mkX Core Nightfire','Armor','Torso','f94f4f75-a1ec-40d3-80ea-34cdf0ec9205','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(6582,'Door Control','Door','UNDEFINED','cb385907-1159-4b9c-bff9-31ce73198d88','','',NULL), +(6583,'300 Series Evening Onyx Paint','Paints','UNDEFINED','47c3fa31-45be-400a-8f3f-d84d5c257811','','','Evening Onyx paint job for the Origin 325a.'), +(6584,'Sarilus','Cargo','Cargo','ce3db476-5196-45cd-864e-8e61807b9b01','','',NULL), +(6585,'Lillo Pants','Char_Clothing_Legs','UNDEFINED','4702b22c-c820-4a6f-a489-25f867ddae6f','','','Carrying Capacity: 0.5K µSCU\n\nThese slim cut pants from Fiore give you a tailored feel at a fraction of the cost. Built from space-age weaves, the Lillo are a low maintenance, high impact addition to your office wardrobe.'), +(6586,'ANVL_Arrow_Thruster_Main','MainThruster','FixedThruster','92828407-58a9-4696-b6ff-3af03fb4708c','','',NULL), +(6587,'Blood Bank Poster','Misc','Utility','a1d054e2-7900-4baf-a413-94f894c093d2','','','A poster for the cult classic horror vid “Blood Bank” that tells the story of a heist that goes very, very wrong.'), +(6588,'Internal Tank','FuelTank','Fuel','cbbea99f-9708-4610-a8f7-7383cfd67efd','','',NULL), +(6589,'Balor HCH Helmet Seagreen','Armor','Helmet','ec0a0668-d3aa-4665-b6b6-8b76a1c0aaf1','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. Visor is AR crosshair compatible.'), +(6590,'Inquisitor Legs Imperial','Armor','Legs','f5158f55-db03-4447-aed8-181b92fbc99f','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(6591,'Weapon_Rack_TMBL_Cyclone_1_Slot_Right','Usable','UNDEFINED','eaa2fe94-efc6-4a3b-ad26-d67b037a906f','','',NULL), +(6592,'m_human_mannequin_legacy_outlaw_heavy','ShopDisplay','UNDEFINED','39301b21-a9f6-4135-ae11-53ad556f12d8','','',NULL), +(6593,'AEGS_Retaliator_SCItem_Engineer_Console','Seat','UNDEFINED','155e6164-019d-40d8-a822-83ca8ced0780','','',NULL), +(6594,'Li-Tok Boots','Char_Clothing_Feet','UNDEFINED','232b4111-aa78-4aa1-96da-eb3af77bb86f','','','Stylish yet rugged, NorthStar\'s Li-Tok boots are made from a composite nylon fabric, vulcanized rubber grips that hold fast to a variety of surfaces, and reinforced ankle support making these perfect for hanging out or on the job.\n\nWomen\'s sizes currently out of stock.'), +(6595,'Calico Legs Desert','Armor','Legs','40d591f3-e9ec-484c-8d3f-051917d293f2','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -39 / 69 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nDesigned to be an EVA-compliant light combat suit, the Calico set is the perfect armor suit for infiltrators, snipers, thieves, basically anyone who likes to avoid kicking in doors. Built out of a combination of PAB3 armor and a custom helmet, it can help you weather some incoming fire without slowing you down.'), +(6596,'Debnam Gloves (Modified)','Char_Clothing_Hands','UNDEFINED','334d3f18-e18c-45dd-9209-aaa7c6f1f23a','','','This version of Derion\'s Debnam gloves has been modified from its original form. Named after the influential Terran tailor, Debnam gloves incorporate that famous tailor\'s classic design to keep your hands comfortable in colder temperatures.'), +(6597,'Giocoso Helmet Azure','Armor','Helmet','fbb9f356-b016-4d2a-9a63-e20973d31e5b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nInspired by the sleek stylings of the 100 series, the Giocoso is a helmet worthy of Origin Jumpworks. It features a wide face shield to provide excellent peripheral vision and a special internal air flow system to dissipate heat and humidity. In a nod to the 100 series, the back of the helmet slyly integrates the iconic shape language of the ship\'s tail into the form.'), +(6598,'Pembroke Helmet RSI Graphite Edition','Armor','Helmet','89f443ed-9358-4f72-a728-f5841c36532c','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nDesigned to extend the limits of Human endurance, the Pembroke RSI Edition was built to withstand the extreme heat of inhospitable high temperature environments. Based off of Caldera\'s best-in-class exploration armor platform, an advanced sensor suite intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. Also featuring a bespoke helmet that integrates with the cutting edge life support system, the special RSI Edition of the Pembroke ensures those seeking to cross bold new horizons do so in style.'), +(6599,'DockingTube_Fuel_Ports_AEGS_Vanguard_Harbinger','DockingCollar','UNDEFINED','e7bb1037-ee42-43f7-b096-32161616ec0a','','',NULL), +(6600,'MISC_Hull_C_FoldingStrut_1C','Cargo','UNDEFINED','9fc56366-e8df-4ceb-b54a-f208182708da','','',NULL), +(6601,'100 Series Frostbite Camo Livery','Paints','UNDEFINED','d8ae58b1-4bff-4294-95e6-44879ffe2f73','','','Soar like the winter winds with the Frostbite Camo livery for your 100 series ship.'), +(6602,'Personal Storage','Cargo','UNDEFINED','99776683-b7a6-440c-9e84-2a5defde5f84','','',NULL), +(6603,'f_human_mannequin_legacy_marine_medium','ShopDisplay','UNDEFINED','ecc283d6-b314-494f-b4e9-5583f736c77c','','',NULL), +(6604,'Internal Tank','FuelTank','Fuel','c717ccc2-f372-440f-8207-8ffeb72bc3fc','','',NULL), +(6605,'IndVest Jacket Seagreen','Char_Clothing_Torso_1','UNDEFINED','a0b9e0d3-043a-4590-88b9-cc4cab8f2bf5','','','Carrying Capacity: 5K µSCU\n\nKeep your tools within easy reach with Stegman\'s IndVest. Made from industrial strength materials, this is a rare jacket that\'s both stylish and sensible.'), +(6606,'Arden-SL Core Coramor Edition \"Fate\"','Armor','Torso','af19fb14-ac9a-4886-a0bc-e2914e72971e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics. It also features a toolbelt for easy access to important gear. The special Fate edition been updated with vibrant pink and light grey coloring, and features a heart emblazoned over each pauldron so you can carry the spirit of Coramor wherever you go.'), +(6607,'Pingala Seeds','Cargo','Cargo','0424256a-8e7f-4cf6-b8b3-bfb0eb933b46','','',NULL), +(6608,'gibbs_outfit_01','Char_Clothing_Torso_1','Female','34f56333-ca35-4656-9c4f-50302148e8bc','','','@LOC_PLACEHOLDER'), +(6609,'400i IceBreak Livery','Paints','UNDEFINED','96283179-6513-4c52-b107-91964ea78242','','','Equip your 400i with a paint scheme cooler than a snow storm. The IceBreak livery mixes crisp, cool white with a frostbitten blue for an exciting look suitable for any season.'), +(6610,'MOTH Sundial Livery','Paints','UNDEFINED','167198fb-ba5f-4ad5-97ca-b7da3f0554cd','','','With an orange front and black back section, the Sundial livery divides the MOTH in two.'), +(6611,'Lynx Arms Pariah','Armor','Arms','6708804f-b781-40b7-b691-608f83641aec','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(6612,'Asgard Sand Sea Livery','Paints','UNDEFINED','f536fd69-3c41-4962-9d9a-52949ac9f9ed','','','The Sand Sea livery for the Asgard is primarily beige with black and red accents.'), +(6613,'Door Control','Door','UNDEFINED','8c262c16-c3ef-4a86-9f55-f37010f0044d','','',NULL), +(6614,'Bed','Seat','UNDEFINED','ade4208a-2bff-4bf8-a9c5-d32003145c60','','',NULL), +(6615,'BANU_Defender_Thruster_Mav','ManneuverThruster','JointThruster','c631861b-11f6-4635-be10-df27e1e2688a','','',NULL), +(6616,'Geist Backpack Snow Camo','Armor','Backpack','5d4fc095-7a9f-44a6-b9e6-adbd124fcc9c','','','Item Type: Light Backpack\nCarrying Capacity: 54K µSCU\nCore Compatibility: All\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.\n\nFeaturing a hooded shawl and a white digital camo pattern, the Snow Camo edition is perfect for stalking prey in frozen environments.'), +(6617,'Iron','Cargo','Small','1b519781-eaa8-42e4-8f24-228cf833d104','','','Element Fe, strong, malleable, highly susceptible to rust and found in large volume across most star systems.'), +(6618,'Eclipse Knockout Livery','Paints','UNDEFINED','1e1e8ef2-964d-4868-9068-c759edcbc9cc','','','The Knockout livery gives the Eclipse a green tint to make it less visible when in verdant landscapes.'), +(6619,'RSI_Scorpius_Antares_SCItem_Dashboard_Gunner','SeatDashboard','UNDEFINED','5b22a8bd-c734-4092-957e-d5e2f3ab9675','','',NULL), +(6620,'Mining_Consumable_01','MiningModifier','UNDEFINED','d68e9225-0858-4611-a5dc-b795a6a9db88','','',NULL), +(6621,'Medium Artifact Fragment (Damaged)','Misc','UNDEFINED','90d6be79-89e5-4794-a0d1-f88ccb6c97a7','','','A medium-sized artifact fragment of unknown origin and made of an unidentified material. Though broken and considered damaged, intricate etchings that subtly glow can still be seen on the fragment.'), +(6622,'Aufeis','Cooler','UNDEFINED','308a2992-585b-40ba-9cfb-51251a3e0683','','','Item Type: Cooler\nManufacturer: Wen/Cassel Propulsion \nSize: 2\nGrade: A \nClass: Civilian\n\nImpeccable design and unmatched attention to detail from Wen/Cassel Propulsion makes the Aufeis one of the premiere civilian coolers on the market.'), +(6623,'Internal Tank','FuelTank','Fuel','4ace014a-78c2-462b-aa41-059edc0a3062','','',NULL), +(6624,'Morozov-SH-I Legs Lifeforce','Armor','Legs','0328fdb0-702d-453b-bd53-edde68751989','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5K µSCU\n\nFeaturing the same fortified armor plating, special anti-rip protective padding and ample storage, as the Morozov SH, the SH-I industrial variant was designed by RRS to protect workers employed in hostile zones while ensuring they had the full range of motion required to perform their duties. The Lifeforce edition was designed with first responders in mind with a highly visible white, red, and grey color scheme.'), +(6625,'Arrow Headhunters Reaper Livery','Paints','UNDEFINED','3f5233ab-c7ef-42f9-a7d4-b4dfe7338051','','','The Headhunters Reaper livery lets you proudly proclaim your allegiance to the gang. It features the gang\'s name and highlights in red on a beige and grey paint scheme.'), +(6626,'Tevarin War Service Marker (Damaged)','Misc','Trophy','6ceed597-ed94-4abb-828a-f493e0d0b374','','','A service marker awarded by the United Planets of Earth (UPE) to all members of the military who served during the First Tevarin War. Though many were produced in their time, those numbers have dwindled significantly and collectors are eager to pick up any found. This marker is considered in poor condition due to the broken and corroded state of the metal that\'s obscured the etchings.'), +(6627,'CF-667 Mammoth Repeater','Weapon','Gun','7189e901-34d8-45a4-bf3e-0932c7958424','','','Manufacturer: Klaus & Werner\nItem Type: Laser Repeater\nSize: 6\n\nThis beast of a laser repeater from Klaus & Werner features three massive barrels that warn any who spot a ship bearing the CF-667 that they may want to think again before engaging.'), +(6628,'Feynmaline','Cargo','Cargo','2fab375a-d5ac-4db2-8825-02ec1192acac','','','The paramorphic crystalline structure of this mineral is extremely volatile. When extra energy is introduced, as is typical with modern mining, the ore will often explosively degrade into the more stably structured Janalite. This instability makes Feynamline very dangerous to acquire but also extremely valuable as an industrial anti-matter precursor if it can be properly harvested.'), +(6629,'AEGS_Door_Decal_Pilot_ReadyRm','Decal','DoorPart','b2bf878d-e10d-430c-880a-9c3eead4127d','','',NULL), +(6630,'FLTR-L Module','MiningModifier','Gun','e2647306-e5d7-452a-8af6-d7141b540a6b','','','Manufacturer: Greycat Industrial\nItem Type: Mining Module (Passive)\n\nInert Material Level: -23%\n\nExtraction Laser Power: 90%\n\nReduce the amount of inert material collected from deposits with the FLTR-L Module. Though it reduces the laser\'s extraction power, the FLTR-L\'s patented filtration system screens out inert material to leave more storage space for valuable ore.'), +(6631,'can_drink_1_pips_a','Cargo','UNDEFINED','deba927d-970b-4573-84a8-d5fc7fd162bd','','',NULL), +(6632,'INTK_RSI_Aurora_CL','FuelIntake','Fuel','f0960ba1-e1c1-4174-8382-6b6a8f06a8c5','','',NULL), +(6633,'rod_cargo_rail_3_a_02x01x01_04Ports','ShopDisplay','Default','043712af-4ea5-4288-bd4c-9ff12b4b68ad','','',NULL), +(6634,'Taranite','Cargo','Cargo','5aa1a8d8-f013-4c80-87de-d8021bbd19da','','',NULL), +(6635,'SHIELDS','ShieldController','UNDEFINED','d85ccfb1-ae3f-4749-a8d1-ffebd639fec7','','',NULL), +(6636,'ht_crate_dry_1_0125x0125x0125_a','Cargo','UNDEFINED','751e0238-ea7a-4a87-a3d9-b84dd374a902','','',NULL), +(6637,'Construction Materials','Cargo','Cargo','e094bf88-f71e-4410-8d5e-8d72097dbc43','','',NULL), +(6638,'Razor Racing Livery','Paints','UNDEFINED','9a4947ae-c956-4894-8b86-b4bc4c664e54','','','Pull away from the pack with this daring Mirai Racing livery. Combining coral reds with an undercurrent of teal, you\'re guaranteed to grab the attention of those you overtake when racing in these bold colors.'), +(6639,'Door Control','ControlPanel','DoorPart','8000f80c-772c-424d-9b13-b2b4c018ebb5','','',NULL), +(6640,'Fluorine','Cargo','Cargo','344dc60f-f744-43cd-b3e9-177b1e3c6f16','','',NULL), +(6641,'Door Control','ControlPanel','DoorPart','3a8bdcea-bb0e-4bf1-b32f-67636cc19055','','',NULL), +(6642,'Apollo Tier 1 Module Right','Module','UNDEFINED','40f36374-37de-9184-e880-cc5ac6c7749e','','','This module contains 1x Tier 1 medical bed.'), +(6643,'Cumulus Pants Brown','Char_Clothing_Legs','UNDEFINED','f9c11af1-1b13-4694-836c-612fa23e867d','','','Temp. Rating: -35 / 15 °C\nCarrying Capacity: 3K µSCU\n\nBe bold and brave the cold with Cumulus pants. Designed with a synthetic fabric that insulates the inside and wicks away moisture from the outside, these pants provide protection against temperature drops to -35 °C.'), +(6644,'DockingTube_Fuel_Ports_AEGS_Redeemer','DockingCollar','UNDEFINED','cdc570e0-1a01-41d9-bd36-574fadd012d4','','',NULL), +(6645,'Talon Crimson Livery','Paints','UNDEFINED','2fc900c8-625b-4cff-b634-ef9e221aec86','','','Standout with this striking red livery custom designed for the Esperia Talon and its Shrike variant.'), +(6646,'AAT-34 Turret','Turret','MannedTurret','07fda541-7c95-461f-a940-ea92a7f3c8ba','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(6647,'Degnous Root','Cargo','Cargo','0ce70251-0a51-4713-ba2d-1649206a0a7d','','',NULL), +(6648,'Radar_Display_C8_Pisces','Display','UNDEFINED','2534989e-7359-4741-a527-00fbd058b3ef','','',NULL), +(6649,'Erebos','QuantumDrive','UNDEFINED','27a34dd7-30aa-4eca-ae37-1f87e343e238','','','Item Type: Quantum Drive\nManufacturer: RSI\nSize: 3\nGrade: A\nClass: Civilian\n\nThe Erebos exemplifies RSI\'s commitment to excellence. This high quality quantum drive constantly ranks atop \"Best of\" lists for both critics and consumers.'), +(6650,'Adiva Jacket Olive','Char_Clothing_Torso_1','UNDEFINED','a2049dec-d59c-4b66-9cce-df6cd68bd5c7','','','Carrying Capacity: 1K µSCU\n\nDefine your ultimate you. The Adiva is an asymmetrical pullover with bold mixed-materials and solid reinforced trim.'), +(6651,'Freelancer Ship Armor','Armor','Medium','b36b3203-545b-4693-9a4b-ffa981a3f2da','','','Freelancer Ship Armor'), +(6652,'counter_components_end_b_0038x01x01','ShopDisplay','UNDEFINED','09f29a90-5b9e-4ac9-a7b2-6d21a9cfa626','','',NULL), +(6653,'AEGS_Avenger_Warlock_Thruster_Main','MainThruster','FixedThruster','7da85561-0f09-4452-9fe8-da1acae2dd7b','','',NULL), +(6654,'AIModule_Unmanned_PU_PSec_GreenzoneTurret_Small','AIModule','UNDEFINED','675aa71e-d7da-453e-895d-94c5593e54fa','','',NULL), +(6655,'MISC Hat','Char_Clothing_Hat','UNDEFINED','068920d7-06fc-49a5-8ad5-c4c29f791139','','','Evoke the industrial spirit of MISC by sporting this tan hat featuring the company\'s emblem.'), +(6656,'Book','Misc','UNDEFINED','aa0b2693-e9b0-487a-843b-9862fb745e44','','',NULL), +(6657,'Caterpillar microTech Livery','Paints','UNDEFINED','0877710f-546a-401f-9e1f-dd249cb903f3','','','The microTech livery for the Caterpillar features the company\'s logo atop a white base paint with light blue and grey highlights.'), +(6658,'Morozov-SH Legs Brushdrift','Armor','Legs','69f4611b-0347-428f-be08-4636faa8d076','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5K µSCU\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(6659,'Venture Undersuit Seagreen','Armor','Undersuit','c4278b54-bd34-46a4-a704-9322a37eb1dc','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(6660,'Strata Legs Shubin Edition','Armor','Legs','4ca81b2d-a601-4bb0-bc03-302b9958d67a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 10k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Shubin Edition was made specifically for the company.'), +(6661,'Door Control','Door','UNDEFINED','fa586c3a-7ee6-4e63-bb3a-c0fa3cc5473a','','',NULL), +(6662,'TrueDef-Pro Legs Black/Grey','Armor','Legs','169f4e21-4b7b-42ba-ba7d-16edd1f5a4bf','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.\"'), +(6663,'Dolivine','Cargo','Cargo','8b1de3eb-534e-432b-b0bb-b505fa6f5b09','','',NULL), +(6664,'Bed_AEGS_Reclaimer_Captain','Usable','UNDEFINED','ed19c900-a675-484d-a2c7-79ba4a96b7f2','','',NULL), +(6665,'CRUS_Starfighter_Ballistic_Nacelle_Right','Misc','UNDEFINED','97b387b0-a28c-4011-8106-ad1dbdc0201a','','',NULL), +(6666,'Seat','Usable','UNDEFINED','fa6d6296-e4b3-4ac6-8103-c9fa773347ca','','',NULL), +(6667,'TRGT. STATUS','Seat','UNDEFINED','16948c42-d793-486a-94fc-94a2ba5510ef','','',NULL), +(6668,'Strata Legs Neptune','Armor','Legs','c7b9de5a-0887-4c57-a4b7-d8a6699218f9','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 10k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres.'), +(6669,'Torreto Shirt','Char_Clothing_Torso_1','UNDEFINED','77d67708-5f1f-49c7-b845-b8e68796c7d2','','','A versatile addition to your wardrobe, this classic button down has double breast pockets, a spread collar, and pairs beautifully with an simple black tie.\n\nWomen\'s sizes currently not available.'), +(6670,'Oracle Helmet Orange','Armor','Helmet','acc632e0-5547-485a-8bb7-a11c4713709a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(6671,'Lynx Core Dark Green','Armor','Torso','65d7e6df-14c0-404b-a35a-0184d457760f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(6672,'MacFlex Legs Red','Armor','Legs','c9ea8b31-e7e6-46ca-84e8-7c4dc7fee8da','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(6673,'Cutlass Ghoulish Green Livery','Paints','UNDEFINED','15fc396e-b987-4007-bf2b-be42164711d3','','','Embrace Day of the Vara mischievousness and mayhem any time of the year with this custom Cutlass livery. It combines metallic green and black for a striking look that highlights the holiday\'s classic colors.'), +(6674,'X1 2954 Auspicious Red Dog Livery','Paints','UNDEFINED','86a2ad62-8eab-4601-b972-a2ca92b5ff93','','','Seek peace and prosperity in the new year with the Auspicious Red Dog livery. Outfit your ship with this bold red base paint complemented by gold accents and a stylized graphic of a dog.'), +(6675,'Falco','Shield','UNDEFINED','b64ab3f3-4b44-418c-a438-57a04a1cf1b2','','','Item Type: Shield Generator\nManufacturer: YORM\nSize: 1\nGrade: D\nClass: Competition\n\nFalco is the perfect shield generator for those always on the go. Its lightweight build won’t hurt your top speed, while still being able to absorb enough damage for you to make your escape.'), +(6676,'Railing_Straight_8m_Lowtech_Open_A','Usable','UNDEFINED','6334efd7-41bb-41a4-8e08-7634cdc2efec','','',NULL), +(6677,'CargoBox_050x050x050_Tank_Gas','Cargo','Cargo','0b965a15-8a05-4dcb-aba7-7632a2ad32a6','','',NULL), +(6678,'Citadel-SE Arms Maroon','Armor','Arms','5efce443-201d-420b-90f6-df2253591609','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(6679,'Morningstar Helmet Raven','Armor','Helmet','b403c4a7-136f-4b4e-897c-6dd9f9bba9f0','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(6680,'ANVL_Hornet_F7CM_Dashboard_Pilot','SeatDashboard','UNDEFINED','9362b930-6f06-48a4-a927-aff2e134030d','','',NULL), +(6681,'PTV Gunmetal Livery','Paints','UNDEFINED','7b35dc9f-c013-4b54-b6a5-d50c3c3c9133','','','Who says a buggy can?t be elegant? The Gunmetal livery is a medium gloss, two-component technology that maximizes gloss retention and durability.'), +(6682,'ORIG_890_Jump_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','bd3b1279-ad58-4a62-8ad7-c2c8c13a6397','','',NULL), +(6683,'PAB-1 Core Red','Armor','Torso','805e384f-750d-4ead-9e3d-419274577e87','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(6684,'ORC-mkX Helmet Twilight','Armor','Helmet','a501cbcc-781c-4fbf-bb66-73a3f8b18522','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(6685,'MISC T-Shirt','Char_Clothing_Torso_0','UNDEFINED','f254ba07-da76-463c-a26b-c3a6f54cd168','','','This tan shirt sports the MISC name and logo. Perfect for those with an affinity for reliable industrial ships imbued with a slight Xi\'an influence.'), +(6686,'CNOU_HoverQuad_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','8b163b82-0a6e-4a96-83be-07274bc1907a','','',NULL), +(6687,'Door','Door','UNDEFINED','29f39234-767f-45f5-af5c-72630b918753','','',NULL), +(6688,'PAB-1 Core','Armor','Torso','10372410-e9a9-4b71-b12a-9d09f8838338','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(6689,'Fresh Food','Cargo','Small','6aad1a77-cef2-405f-8f59-24827f37a4bf','','','Various meats, grains and produce that have not yet been cooked, dried, salted, frozen, pickled, or otherwise preserved.'), +(6690,'Origin Black Bishop','Gadget','UNDEFINED','17b90587-f5be-4367-9d96-3b8b86d8d51d','','','Made exclusively for Origin Jumpworks and included with the 890 Jump, this black chess piece is a modern version of a classic set.'), +(6691,'Weapon_Rack_1_Volt_Shotgun_Uncommon_003','Usable','UNDEFINED','6b726a77-ae70-4cd0-bdcd-7f3c834438ea','','',NULL), +(6692,'G-2 Helmet White','Armor','Helmet','0c18e5a2-e0c4-4e9b-855a-e9dfea9525d2','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. Visor is AR crosshair compatible.'), +(6693,'Orbgn_None_Consumable_Keycard_OrbitalAccess','FPS_Consumable','Hacking','9c1f1060-259e-499c-8b00-758807c9caab','','',NULL), +(6694,'Carryable_1H_SQ_medical_bag_1_plasma_a','Misc','UNDEFINED','0527f859-9b79-4ff8-996a-97d3261ebeca','','',NULL), +(6695,'Kopion Horn','Misc','UNDEFINED','c85b3312-3aaa-478a-9afb-344d151a00ef','','','The horn of the kopion is made of a unique combination of bone and naturally-occurring carbon nanomaterials. When properly processed, it can be used to aid in bone regeneration with a far greater rate of success than lab-grown materials. This application has made it a valuable commodity.'), +(6696,'Cuesta Shoes','Char_Clothing_Feet','UNDEFINED','0c111e7a-f912-4e91-9472-08fad4920cc8','','','An all-season ankle boot, the Cuesta features a practical design that can stand up to all kinds of weather and terrain, while the supportive insole provides comfort to last through your shift and beyond.'), +(6697,'Impact I Mining Laser','Mining','Gun','6429e3d3-c813-4dfc-bc68-c95b54123722','','','Manufacturer: Thermyte Concern\nItem Type: Mining Laser \nSize: 1\n\nOptimal Range: 45m\nMaximum Range: 135m\n\nMining Laser Power: 420 - 2100\nExtraction Laser Power: 2775\n\nModule Slots: 2\n\nLaser Instability: -10%\nOptimal Charge Window Size: +20%\nInert Material Level: -30%\n\nResistance: +10%\nOptimal Charge Window Rate: -40%\n\n\nThe Impact I excels in a variety of mining situations. Special focus lenses make it easier to work a deposit by stabilizing the laser and increasing the optimal charge window. There are drawbacks, including increased deposit resistance and a slower filling optimal charge window, but Thermyte Concern also provided two module slots to allow miners to better customize the laser to the task at hand.'), +(6698,'Odyssey II Helmet Yellow','Armor','Helmet','9de3a559-0136-4baf-b2ce-ab7fdda4bec5','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(6699,'Drink_bottle_absinthe_01_a','Drink','Bottle','6ae5b751-cec7-471a-a0e0-d81ddb8a7819','','',NULL), +(6700,'RSI_Salvation_Thruster_Main','MainThruster','FixedThruster','a20d2835-64ef-41aa-b4ea-10121d143e1a','','',NULL), +(6701,'Avenger Shroud Livery','Paints','UNDEFINED','33165ef1-ff5a-4b93-8653-e6f6e1e0b4ab','','','Give the Avenger an utterly unique look with the Shroud livery, featuring a light grey hull with beige and darker grey contrails over it.'), +(6702,'Carryable_1H_CY_garnish_olive_1_a','Misc','UNDEFINED','b7e6507d-1020-4a02-a71a-0fcfebb952f9','','',NULL), +(6703,'Scorpius Stinger Livery','Paints','UNDEFINED','7aa165d8-a1be-49de-be43-d5559b8d054b','','','The exclusive Scorpius Stinger livery features a black finish and an orange decal in the shape the famously lethal arachnid that is the ship\'s namesake.'), +(6704,'Door Control','Door','UNDEFINED','37506e70-b45c-45c1-b76d-6cefae3f5c84','','',NULL), +(6705,'Table','Cargo','UNDEFINED','29a64ac3-ab64-4289-83ce-b32754f9f1ba','','',NULL), +(6706,'Stoneskin Helmet Tactical','Armor','Helmet','5973794c-82dc-445a-a7f8-c95c5c73d0f0','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nKastak Arms\' Stoneskin series of combat undersuits are built upon CDS\' famous TCS-4 system based on extensive feedback from the operators who rely on this technology in the field. Offering a myriad of options for armor and EVA capabilities, the Stoneskin is set to rival CDS as a rugged and reliable undersuit.'), +(6707,'Seat','SeatAccess','UNDEFINED','a97e9b72-1e81-44a3-9384-0ebe086ff841','','',NULL), +(6708,'Calamity XII-EM Torpedo','Missile','Torpedo','f253a14d-26a1-4087-9b4a-2b2d96a179fc','','','Manufacturer: Talon\nTracking Signal: Electromagnetic\nSize: 12\n\nDesigned by Talon, the Calamity heat seeking strike torpedo delivers a heavy payload sure to serve as a deterrent from any further hostile actions.'), +(6709,'INTK_ANVL_Arrow','FuelIntake','Fuel','6401a5fc-f3a8-4a2a-a48d-3df8cb40bbd2','','',NULL), +(6710,'DCP Armor Legs Clawed Steel','Armor','Legs','03f5ecd2-d90a-4b5e-9ac6-29994b7a1450','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(6711,'C54 \"Origin Racing\" SMG','Weapon','Medium','84eefadf-08c0-4a9b-ac96-c6c46528420e','','','Manufacturer: Gemini\nItem Type: SMG\nClass: Ballistic\n\nMagazine Size: 50\nRate Of Fire: 1,100 rpm\nEffective Range: 35m\n\nAttachments: Barrel (S1), Optics (S1), Underbarrel (S1)\n\nEasy to handle and a beauty to behold, the C54 is a sleek and precisely balanced SMG from Gemini. Its lightweight polymer frame and ergonomic design makes it ideal for close quarter engagements. The C54 is capable of firing 10mm rounds on full auto to provide maximum target saturation to ensure that any engagement ends quick. Created to honor the Origin Racing team, this SMG is primarily white with black and blue highlights.'), +(6712,'Debnam Gloves Olive','Char_Clothing_Hands','UNDEFINED','2d1536b0-1757-45af-b1a9-d82e854a97b9','','','Named after the influential Terran tailor, Debnam gloves incorporate that famous tailor\'s classic design to keep your hands comfortable in colder temperatures.'), +(6713,'Door','Door','UNDEFINED','b049ec6c-ea2c-4887-a6aa-13352839b2ee','','',NULL), +(6714,'300 Series Granite Paint','Paints','UNDEFINED','4c013940-6e22-428d-93ce-5e8c672a556e','','','Standard paint job for the Origin 300i.'), +(6715,'display_ship_components_03x0075x0275_a_qdrives','ShopDisplay','UNDEFINED','628e1e0c-f5fb-48b1-a780-17e923259910','','',NULL), +(6716,'none_consumable_hackingchip_02','FPS_Consumable','Hacking','c7372f52-b36f-466f-9aaa-36a291b47883','','',NULL), +(6717,'BEHR_BallisticRepeater_Barrel_S2','WeaponAttachment','Barrel','91eb90b3-23dc-4215-aa33-6140aa438df6','','',NULL), +(6718,'Antium Legs','Armor','Legs','4221af8b-ae76-423e-b178-169756aa1757','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(6719,'Construction Rubble','Cargo','Cargo','365102c7-d987-4ecd-a681-31e3b7583bac','','','Can be processed at refineries into Construction Material.'), +(6720,'Weapon Rack','Usable','UNDEFINED','f6f5df72-e8ed-4daa-8787-a22d4f85f1eb','','',NULL), +(6721,'ANVL_Valkyrie_CargoGrid','CargoGrid','UNDEFINED','90bf8f6d-b4a7-41bb-9678-b6fad483ed54','','',NULL), +(6722,'Carryable_2H_CY_weight_barbell_bumperplate_1_30kg_a','Misc','UNDEFINED','096c5431-0685-4a07-b9bf-439c89483250','','',NULL), +(6723,'ANVL_Door_Decal_Carrack_Cargo','Decal','DoorPart','db4491ff-db7d-4984-8ac9-935c9d383437','','',NULL), +(6724,'Fizzz Triple Berry','Drink','Can','8c1d1884-f3e1-49ca-a7f1-f46dd59a3b9c','','','HEI: 16\nEffects: Energizing, Hyper-Metabolic\n\nA refreshing burst of fizzzy triple berry flavor!'), +(6725,'Internal Tank','QuantumFuelTank','QuantumFuel','6147fb39-4ade-4e00-a2ea-b556f947e342','','',NULL), +(6726,'VariPuck S4 Gimbal Mount','Turret','GunTurret','91cbab68-afd2-456d-8df7-058d534b1668','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 4\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(6727,'Iron (Ore)','Cargo','Cargo','271effd5-3aa8-4538-b9a0-b0f33dc86d68','','',NULL), +(6728,'ZeroRush','Cooler','UNDEFINED','d1790ef8-ec9e-4193-887c-e92d0889e326','','','Item Type: Cooler\nManufacturer: ACOM\nSize: 1\nGrade: B\nClass: Competition\n\nFew things can push your ship to its limits like racing. Going faster and harder generates a lot of excess heat that can take a toll on your system if not properly managed. The ZeroRush cooler from ACOM has what it takes to get you across the finish line.'), +(6729,'Carryable_1H_SQ_Datapad_Fluff_Orb_HathorGroup_008','Misc','UNDEFINED','9c32a061-eb28-4b31-9590-3709808e7857','','',NULL), +(6730,'RSI_Scorpius_SCItem_Dashboard_Gunner','SeatDashboard','UNDEFINED','7a444021-53da-4e36-b42d-ccd158764707','','',NULL), +(6731,'Koya Pants','Char_Clothing_Legs','UNDEFINED','30bf223f-73f9-4d8a-9a8d-f787b884f83c','','','Carrying Capacity: 1K µSCU\n\nThe Koya are stylish slim cut pants featuring color accents on the pockets and cuffs. Made from a special stain resistant, soft fabric blend, they are paired with a brown belt featuring a gold buckle.'), +(6732,'Rime Module','MiningModifier','Gun','4af4857b-b564-4448-afbc-820ff288c0af','','','Manufacturer: Greycat Industrial\nItem Type: Mining Module (Active)\n\nResistance: -25%\nShatter Damage: -10%\n\nMining Laser Power: 85%\n\nDuration: 20 seconds\nUses: 10\n\nThe Rime delivers a safer mining experience by sacrificing laser power to reduce a deposit\'s resistance and the dangers associated with shattering.'), +(6733,'Seat','SeatAccess','UNDEFINED','300e1eb0-2c2b-4990-a700-ed06fff4194c','','',NULL), +(6734,'Koya Pants White Pinstripe','Char_Clothing_Legs','UNDEFINED','e80b04d2-24e5-4f01-9068-2920ca050b8e','','','Carrying Capacity: 1K µSCU\n\nThe Koya are stylish slim cut pants featuring color accents on the pockets and cuffs. Made from a special stain resistant, soft fabric blend, they are paired with a brown belt featuring a gold buckle.'), +(6735,'Flight Blade','FlightController','UNDEFINED','9de44e42-8ed1-40f7-961f-c208e864146a','','',NULL), +(6736,'facial_hair_035','Char_Head_Beard','UNDEFINED','9cc49aed-9588-43ce-98df-b04791d717cd','','',NULL), +(6737,'Slickdry Waders Saddle','Char_Clothing_Legs','UNDEFINED','9ecc270d-fcb6-4639-82b2-1d149b776230','','','Carrying Capacity: 400 µSCU\n\nThe popular Slickdry Waders by Alejo Brothers are a combination of pants and boots made of a synthetic hydrophobic material and ensure the wearer will stay dry even if just stepping out of a river.'), +(6738,'K7 Pants Green','Char_Clothing_Legs','UNDEFINED','bf3859ac-bdd7-4b11-95f9-319d3b4eaecc','','','Carrying Capacity: 3K µSCU\n\nDMC\'s K7 are an all-purpose cargo pants. Four easy access pockets provide extra storage while the triple-stitched polymer weave fabric is designed to withstand all kinds of weather conditions.'), +(6739,'Valkyrie V Missile','Missile','Torpedo','b74c05cb-0f60-403a-92cf-663a12268830','','','Manufacturer: Talon\nTracking Signal: Infrared\nSize: 5\n\nTalon\'s torpedo design team pulled out all the stops for their latest Valkyrie strike torpedo by creating a multitiered thrust solution with state of the art infrared tracking capabilities.'), +(6740,'ANVL_Paladin_SCItem_Remote_Turret_Seat','Seat','UNDEFINED','c6169663-53ea-4400-8f2e-c175b1eefb39','','',NULL), +(6741,'Internal Tank','FuelTank','Fuel','76c46bfb-45f8-47a7-b932-0b4345b7f6f1','','',NULL), +(6742,'Bed_Pillow_AEGS_Med_Bay','Seat','UNDEFINED','d5a63ffc-bfd8-4c3e-9fe6-92754cbbac02','','',NULL), +(6743,'Spicule','QuantumDrive','UNDEFINED','9ade5d70-fab6-43d5-9f12-72394fa2d5a0','','','Item Type: Quantum Drive\nManufacturer: RAMP Corporation\nSize: 2\nGrade: A \nClass: Stealth\n\nHere one second and gone the next. That’s what you’ll get with the Spicule quantum drive, which RAMP engineered to keep the component’s emission signature as low as possible.'), +(6744,'PH - eld_glasses_01_01_01','Char_Accessory_Eyes','UNDEFINED','438c2a51-e3f8-44de-97bc-5b03f0c19dfe','','','PH - eld_glasses_01_01_01'), +(6745,'Door Control','Door','UNDEFINED','778cd136-9785-4f9c-a974-03262e4ad99a','','',NULL), +(6746,'Venture Core Purple','Armor','Torso','b75db55a-437f-45b0-9bf7-a58329a14fa0','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(6747,'Venture Helmet Olive','Armor','Helmet','e6e7ca38-3b3f-4e4b-bee7-7a49f9f244d0','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover.'), +(6748,'Aegis Gladius - Noise Launcher','WeaponDefensive','CountermeasureLauncher','6515264d-c648-4338-ac15-9b543b2074dd','','','Aegis Gladius - Noise Launcher'), +(6749,'Diluthermex','Cargo','Cargo','9c361f58-730b-4f29-a5d4-4de29624ec9e','','','An extremely heat resistant epoxy often used in the mounting and repair of ship thrusters. It is considered very difficult to transport in its uncured state as it becomes explosively unstable when exposed to Chan-Eisen fields during quantum travel. Specialized containers must be used to safely transport the epoxy long distances. Once set and cured, the Diluthermex is no longer reactive.'), +(6750,'Weapon_Rack_GRIN_STV_1Slot','Usable','UNDEFINED','eb14320a-a67f-47ba-8c71-2f7a3e28b8c0','','',NULL), +(6751,'Vehicle_Screen_MFD_Holographic_ORIG_X1_R','Display','UNDEFINED','25b9c162-87e1-4e8d-a022-810c57bd6268','','',NULL), +(6752,'Carryable_2H_FL_Safe_1_a','Misc','UNDEFINED','d9227583-b725-43d2-a084-094d4d928371','','',NULL), +(6753,'Door_Ship_Sensor_Proximity','Sensor','DoorPart','f920f109-832c-4f00-a444-5b2a7bea845c','','',NULL), +(6754,'Manned Turret','TurretBase','MannedTurret','1038eb5e-13f6-4c9b-86c0-09d0ada966cb','','',NULL), +(6755,'Door Control','ControlPanel','DoorPart','cc782051-099e-4ee3-8a34-e22f1c7cda50','','',NULL), +(6756,'ADP Legs Yellow','Armor','Legs','cd5f4f54-3426-4030-ae86-addf74c94d96','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(6757,'PAB-1 Legs Sakura Sun Edition','Armor','Legs','a8e77bfb-5882-4b2d-ab97-3067088387d0','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile. The Sakura Sun Edition was made specifically for the company.'), +(6758,'ADP Core Executive','Armor','Torso','42681059-b715-4690-8d48-25bd830962a8','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(6759,'Hydrogen Fuel','Cargo','Cargo','c9540a47-4002-4dba-9c24-3658d4e850d8','','',NULL), +(6760,'Food_bowl_puree_01_c','Food','Consumable','a9959047-793f-44f1-9c0e-1f982268fed0','','',NULL), +(6761,'Redfin Energy Modulators','Cargo','Cargo','8c71b1a9-0aa7-4fc3-8a87-34c8fb363fd2','','',NULL), +(6762,'Cutter Tectonic Livery','Paints','UNDEFINED','0fe14f78-0560-4a72-9e93-976db2cb468f','','','Bring a bit of personality to the Cutter with the Tectonic livery, which features vibrant pops of orange against the brown and black base paint.'), +(6763,'TOAG_LaserGatling_FiringMechanism_S2','WeaponAttachment','FiringMechanism','57dfbdf1-e62d-470b-a89f-5aa2f8dda06d','','',NULL), +(6764,'TRGT. STATUS','Seat','UNDEFINED','d9754479-4d29-4ccd-b4ec-ab46cf273f1e','','',NULL), +(6765,'Antium Arms','Armor','Arms','127fb2c6-6566-4e17-8e6c-ce214e2ec408','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(6766,'Nox Star Kitten Livery','Paints','UNDEFINED','2b0dc10d-7167-4e88-bc8b-9ee52eae5855','','','Embody Sally the Star Kitten\'s racing spirit with this custom Nox livery. Combining the bright pink, vibrant blue, and crisp white of the beloved cartoon mascot, this livery brings a playfulness your competitors are sure to enjoy.'), +(6767,'Door','Door','UNDEFINED','ff634075-d44d-4d9f-8d69-85cce6268372','','',NULL), +(6768,'Seat','SeatAccess','UNDEFINED','7c88bb0f-b850-4310-bd2e-54a7225891c2','','',NULL), +(6769,'Ranta Dung','Cargo','Cargo','7f4d715e-b7d4-45d6-947c-f7d48a20ebc7','','',NULL), +(6770,'Screen','SeatDashboard','UNDEFINED','dbdb43e1-085f-495d-88bc-f495cf5d8bee','','',NULL), +(6771,'Colossus Bomb','Bomb','Utility','2b8a744d-c0a0-4f92-b0e6-bf4ae077cc11','','','Manufacturer: FireStorm Kinetics\nItem Type: Explosive Bomb\nSize: 10\n\nFoes below won\'t stand a chance against a Colossus. FireStorm Kinetics designed this massive S10 bomb to devastate ground targets, whether they\'re vehicles or structures alike. Meant to be dropped from high altitude, the Colossus features patented Atmo-Xact fins that deploy to provide additional guidance en route to target.'), +(6772,'Origin White Pawn','Gadget','UNDEFINED','66f709d7-fc2a-40d8-adde-77d556339b15','','','Made exclusively for Origin Jumpworks and included with the 890 Jump, this white chess piece is a modern version of a classic set.'), +(6773,'Toughlife Boots Dark Red','Char_Clothing_Feet','UNDEFINED','888adbc8-ccfc-4de6-99a5-abeccd65b468','','','Grindstone\'s done it again. The Toughlife is an all-purpose workboot designed to provide comfort, durability and quality. Featuring a reinforced composite toe and lasercut sole to maximize traction on all surfaces, Toughlife is sure to be your dependable boot, day in and day out.'), +(6774,'Zelena Pants Redwood and Bisbee Boots','Char_Clothing_Legs','UNDEFINED','5c0f50e2-3711-4f3a-aa21-d1d83ee4b004','','','Carrying Capacity: 1K µSCU\n\nStay warm and dry on rainy days in the Zelena pants and the Bisbee boots. Both made with water-repellant materials and built-in sweat-wicking technology, they\'ll be your go-to choice for adventures on even the most hostile worlds.'), +(6775,'AEGS_Door_Decal_Avenger_Pod_3','Decal','DoorPart','1abbc87e-be8f-484b-8afb-f67b3e5bac63','','',NULL), +(6776,'Pulse Laser Pistol Battery (60 Cap)','WeaponAttachment','Magazine','b76f9795-28fe-40a3-9a60-ffdbc4e8c713','','','Item Type: Battery\nCapacity: 60\n\nThis battery for the Pulse Laser Pistol holds enough energy for 60 shots.'), +(6777,'Morozov-SH Arms Terracotta','Armor','Arms','0ebe3817-3cbe-4a2a-9453-fbf0a81d0cbe','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(6778,'SalvageInternalStorage_MISC_Fortune','SalvageInternalStorage','UNDEFINED','a88fdc30-acab-4fec-b072-fe80e1aa35e5','','',NULL), +(6779,'Door Control','Door','UNDEFINED','407d9437-32f9-4366-b204-6908638dc618','','',NULL), +(6780,'Nitrogen','Cargo','Cargo','d139e261-4664-4fa7-aeed-90e578eb0af1','','',NULL), +(6781,'DRAK_Cutlass_Blue_Thruster_Maneuver_Rear_Top','ManneuverThruster','JointThruster','d8a87992-9295-48a7-a7c3-084c68e50176','','',NULL), +(6782,'Cliffback T-Shirt Dark Green','Char_Clothing_Torso_0','UNDEFINED','4a0a2b97-95ac-46aa-8b55-1940d981c130','','','Alejo Brothers\' classic loop tee with a spatter pattern.'), +(6783,'Ardent Boots Tan','Char_Clothing_Feet','UNDEFINED','8b387f1f-9f69-47f3-906f-53017c5253a0','','','Who says NorthStar can\'t keep it pro? The Ardent boot features a molded rubber sole and all-weather construction to withstand a constant battery from the elements.\n\nWomen\'s sizes currently out of stock.'), +(6784,'Bioplastic','Cargo','Cargo','b72e635a-6b17-45a8-b93a-3909a9df41e0','','',NULL), +(6785,'ANVL_Asgard_Thruster_Main_Aux','MainThruster','FixedThruster','e4a7e38a-1630-41e9-87ad-c01ca421d6f5','','',NULL), +(6786,'DockingTube_Fuel_Ports_ORIG_m50','DockingCollar','UNDEFINED','8e8af6ac-bc1a-49d0-a60b-05d579cee408','','',NULL), +(6787,'Waveshift','Gadget','Gadget','478ffd41-77dc-4239-a842-9fdf3d2072ac','','','Manufacturer: Greycat Industrial\nItem Type: Mining Gadget\n\nLaser Instability: -35%\nOptimal Charge Window Size: +100%\n\nOptimal Charge Window Rate: -30%\n\nA unique chipset allows the WaveShift to keep instability in check while dramatically increasing the size of the optimal charge window. Though the optimal charge window will fill slower, the larger target area makes it easier to find the perfect spot to shatter a deposit. \n\nManufacturer Warning! Using more than one mining gadget per deposit can result in a catastrophic explosion.'), +(6788,'ORC-mkV Core Executive','Armor','Torso','b082f5ea-c134-48be-bff3-bfa9a354c1b5','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(6789,'Lightstrike VI Cannon','Weapon','Gun','a336be9a-ea2f-4db2-97ec-593ad6134471','','','Manufacturer: Esperia\nItem Type: Laser Cannon \nSize: 6\n\nThe Lightstrike VI takes the attack to distant targets by delivering focused, high damage blasts that will make any aggressor think twice before coming too close. Capable of providing powerful overwatch options during troop deployments or engaging targets in outer space, it\'s easy to see why the Lightstrike VI was feared by UPE forces during the First Tevarin War.'), +(6790,'E\'tam','Cargo','Cargo','56668f00-fe4b-4218-800a-fb5d370b49bc','','',NULL), +(6791,'Prism Laser Shotgun','Weapon','Medium','7dd1988f-77cf-40f0-a29e-dac5e2186aad','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Shotgun\nClass: Energy (Laser)\n \nBattery Size: 20\nRate of Fire: 200 - 450 rpm\nEffective Range: 10m\n \nAttachments: Optics (S2), Underbarrel (S2)\n \nFiring powerful shortrange bursts of energy, engineers at Verified Offworld Laser Technologies have developed the Prism laser shotgun so that as the weapon\'s heat-levels rise, the pellets begin fusing together into slug-like projectiles that inflict higher damage on targets.'), +(6792,'Internal Tank','QuantumFuelTank','QuantumFuel','9a7c9328-1cd7-4043-8079-65db61da1e6a','','',NULL), +(6793,'Book','Misc','UNDEFINED','3fbe94a7-0d5d-483a-b8a9-f3c0ba193286','','',NULL), +(6794,'Door','Door','UNDEFINED','91e00b16-cd33-4830-a48c-aecfdb4d4c77','','',NULL), +(6795,'INTK_MISC_Starlancer','FuelIntake','Fuel','d902e16e-757b-4b35-8ddd-83c9063d8171','','',NULL), +(6796,'AEGS_Sabre_Thruster_Retro_L','ManneuverThruster','FixedThruster','f5aefa5e-fe35-4b3c-8f42-9027994408c8','','',NULL), +(6797,'MPUV-1T Sunlight Livery','Paints','UNDEFINED','628547e0-ca96-4394-bc3a-d30f756623fb','','','Announce your arrival with the Sunlight livery for the MPUV-1T. Featuring a bold yellow base color, the livery makes it easier to see the ship during recovery operations.'), +(6798,'GLSN_Shiv_Thruster_Main','MainThruster','FixedThruster','0de41740-720e-4f3a-b394-15a39e0b9576','','',NULL), +(6799,'Atlasium','Cargo','Cargo','b81f3760-1653-4f6c-9cf0-04b139fefd0e','','',NULL), +(6800,'Falston Jumpsuit \"Shubin Edition\"','Char_Clothing_Torso_1','UNDEFINED','2fa01652-f297-4c9d-a29c-078d369ccfdb','','','Carrying Capacity: 1K µSCU\n\nThe Falston jumpsuit has a high collar to guard against the elements, triple-reinforced stitching, and an extra soft interior lining because everyone deserves a bit of comfort.'), +(6801,'Decari Pod','Misc','Harvestable','46ca075c-afe4-406d-b4d2-e1323025c582','','','A large spore pod harvested from the decari that can be collected and used as a food source. However, the decari pod cannot be consumed directly. It must have its thick out layer and spiny filaments removed, and the fibrous hymenium cooked for a long time before it can be safely digested by Humans.'), +(6802,'Ana Core Wao','Armor','Torso','03684512-8a00-423e-8b59-0798da4f5512','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nThis Antium Armor was modified from its original version. Carefully-selected fangs and bones were mounted to the set to give it a primal look.'), +(6803,'DockingTube_Fuel_Ports_ARGO_MOTH','DockingCollar','UNDEFINED','ccb1db2c-7db8-4fca-963c-29ff3b652f3e','','',NULL), +(6804,'Seat','SeatAccess','UNDEFINED','d352ae56-d526-402a-94ec-238a85d30dee','','',NULL), +(6805,'Adrift Shirt Dark Blue','Char_Clothing_Torso_0','UNDEFINED','7bf6fbca-b47d-41ca-8ae9-9145c48315ae','','','The Adrift mock neck sweater takes the idea of fashion as entertainment to the next level. This comfortable fiber blend material features a special vid-fabric depicting a dynamic space scene to ensure that people won\'t be able to keep their eyes off you.'), +(6806,'Weapon_Rack_1_GMNI_SMG_Common_001','Usable','UNDEFINED','5a512064-dd6a-405c-b4a6-eefa83628e64','','',NULL), +(6807,'PTV Tactical Stealth Livery','Paints','UNDEFINED','14493997-2f6e-4ea5-b3d1-a9a5c0f6143a','','','The Tactical Stealth livery uses a near zero gloss paint that incorporates a catalyzed urethane process for unsurpassed durability making it highly resistant to UV rays, chemicals and chips.'), +(6808,'Colonialism_Outpost_RN_AA_Missile','Missile','UNDEFINED','4bc2513a-1440-4c6c-8a89-fd351b2d7165','','',NULL), +(6809,'Lynx Legs Yellow','Armor','Legs','84241e79-fb77-4fba-8783-1df8c6744dce','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(6810,'Counter_2m_mix_station','Usable','UNDEFINED','d9c3c030-85d6-4c82-b29f-7e4dc6528562','','',NULL), +(6811,'RAFT Anchor Livery','Paints','UNDEFINED','2e53c623-fc47-4a9b-8c76-171ada174078','','','The Anchor livery for the Argo RAFT gets it great look by blending various shades of grey with green undertones.'), +(6812,'AEGS_Door_Decal_Avenger_Pod_4','Decal','DoorPart','f411882c-2804-4775-903b-f37e23525d1a','','',NULL), +(6813,'Internal Tank','FuelTank','Fuel','694fd7b8-882e-42b2-97c8-5a79a5115bd6','','',NULL), +(6814,'RSI Noise Launcher','WeaponDefensive','CountermeasureLauncher','38977e1e-2908-4c21-a303-e38ac50692a4','','','RSI Noise Launcher'), +(6815,'KRIG_P72_Archimedes_Thruster_Mav_Fixed_02','ManneuverThruster','FixedThruster','166c6028-9e7e-440f-a987-521f1207f2ff','','',NULL), +(6816,'INTK_ANVL_Hornet_F7A_Mk1','FuelIntake','Fuel','b6ed4db6-182a-44d7-bce3-45c0059f1431','','',NULL), +(6817,'ORIG_100i_Thruster_Mav_Fixed_Bottom','ManneuverThruster','FixedThruster','6bb156b6-25bd-46f2-ad21-9521641d95d4','','',NULL), +(6818,'Remote Turret','Turret','GunTurret','30e5fb7f-35c1-47af-92b9-0ebca8200464','','','Remote Turret'), +(6819,'Door Control','ControlPanel','DoorPart','c4909f3e-ae9f-446f-84d3-de94b845eeac','','',NULL), +(6820,'Internal Tank','FuelTank','Fuel','abba6b91-b85b-4239-945a-3dc9eb2a5fab','','',NULL), +(6821,'IronBand Hard Hat','Char_Clothing_Hat','UNDEFINED','47f7b9e9-9b39-49f1-9bfc-69cba5cdc8ba','','','The IronBand is another in Stegman\'s award-winning line of safety wear. Built from top-grade impact resistant materials, the IronBand has undergone rigorous safety testing to provide maximum protection in the worst of conditions.'), +(6822,'Venture Undersuit Alpha','Armor','Undersuit','5014225a-bb4a-4467-b31b-5e68f7c219dc','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(6823,'Raptor IV Missile','Missile','Missile','e1659bcf-0595-43ad-9376-386e4ca875e0','','','Manufacturer: Talon\nTracking Signal: Electromagnetic\nSize: 4\n\nUtilizing advanced electromagnetic tracking and balanced precision flight, the Talon Raptor strike missile is a fierce addition to any ship\'s arsenal.'), +(6824,'Door','Door','UNDEFINED','205e6ad6-9f57-45b1-82d4-6bb6f9803b79','','',NULL), +(6825,'Ready-Up Helmet Blue','Char_Clothing_Hat','UNDEFINED','700e400e-9616-4296-9d07-8410703033fd','','','The Ready-Up is a dependable, affordable softshell helmet alternative. Built from space-age plastic, the Ready-Up provides a vacuum-ready seal to keep you breathing for longer.'), +(6826,'Access','SeatAccess','UNDEFINED','63b9221c-b122-463c-8b4f-32d477aca394','','',NULL), +(6827,'StorageCage_Quantum_CustomLoadout','Cargo','UNDEFINED','b16f51c2-5d12-4505-9e25-33d98c4201c0','','',NULL), +(6828,'Railing_Straight_1m_LowTech_Util_Stairs_01x01_end_a','Usable','UNDEFINED','04f17b85-f030-4a7b-aa33-85aeed4ca16f','','',NULL), +(6829,'Osoian Hides','Cargo','Cargo','c010f532-cd8a-43b4-b732-19e57f14b29d','','',NULL), +(6830,'Quantity','Misc','UNDEFINED','4630c3e6-cb4c-4be0-9772-e71905acf61d','','',NULL), +(6831,'Bed','Usable','UNDEFINED','5c373b36-ae86-424a-b5d5-328f4b86e910','','',NULL), +(6832,'Agricultural Supplies','Cargo','Cargo','491919c3-3003-499e-b540-f9105fdf936d','','',NULL), +(6833,'XS-90 Explorer Goggles','Char_Accessory_Eyes','UNDEFINED','aa482baf-49f5-4d73-957a-cbf593d62a89','','','With a sleek design suitable for all face shapes, the XS-98 Explorer goggles ensure a fog-free view in any climate, and come with a patented coating that offers strong UV-protection and cuts down on unwanted glare.'), +(6834,'Parallax \"Shock Trooper\" Energy Assault Rifle','Weapon','Medium','98efd8ff-b0ba-48cf-bb48-3ff4e1bd3b3f','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Assault Rifle\nClass: Energy (Electron)\n\nBattery Size: 80\nRate of Fire: 200 rpm - Beam\nEffective Range: 30 m\n\nAttachments: Optics (S2), Underbarrel (S2)\n\nWith the Parallax, VOLT offers consumers a rugged assault rifle design with features like a larger-than-average battery and a unique actuator that enables the weapon to scale up into a persistent beam as it fires.\n\nThe \"Shock Trooper\" edition features a digitally printed camo pattern of urban grays with an insulated orange top.'), +(6835,'Corsair Skullcrusher Livery','Paints','UNDEFINED','4d7130bd-e4a0-462c-a0bd-2efd214bdb66','','','Exude attitude with the Skullcrusher livery for the Corsair, which features a massive skull across the top.'), +(6836,'Internal Tank','QuantumFuelTank','QuantumFuel','91beb033-db49-4a90-96a3-bcf26556a4e8','','',NULL), +(6837,'stand_shop_large_PowerPlant','ShopDisplay','UNDEFINED','17b47a33-4d3c-46a6-a8a5-80465d6bd996','','',NULL), +(6838,'Seat','Usable','UNDEFINED','70706c64-7219-4315-abc5-71ba3681e962','','',NULL), +(6839,'Carrack Plushie','Misc','Personal','d8aa4cc2-0957-4ea8-b1fa-8ad32e48f9a8','','','Encourage an adventurous spirit with this soft and squeezable Carrack plushie modeled after Anvil\'s classic exploration ship.'), +(6840,'Resolu','Radar','MidRangeRadar','188ec15a-2fc2-46f4-9679-2b78c86a8a7d','','','Item Type: Radar\nManufacturer: Groupe Nouveau Paradigme\nSize: 3\nGrade: C\nClass: Military\n\nInvented with larger ships in mind, the Resolu radar provides the same level of three-dimensional scanning technology without sacrificing dependability.'), +(6841,'Seat','Usable','UNDEFINED','9e7d6018-1fe9-4a46-87c0-207cacf31472','','',NULL), +(6842,'ORIG_M50_Thruster_Mav_Joint_old','ManneuverThruster','FixedThruster','5a7d0ecd-3b5c-433e-ad8e-b679c446a87a','','',NULL), +(6843,'MOLE Shubin Livery','Paints','UNDEFINED','4eb550d5-3b35-4f43-a399-e47d34ddff5a','','','Showcasing the bold colors of bronze alloy and deep obsidian, the Shubin livery embodies the spirit of the powerful planetary mining conglomerate.'), +(6844,'Arrowhead Sniper Rifle Battery (16 cap)','WeaponAttachment','Magazine','66f0410b-bcd9-4be5-96ed-aab6f65f3420','','','Item Type: Battery\nCapacity: 16\n\nThis compact power source provides the Klaus & Werner Arrowhead rifle enough energy for 16 long-range precise shots.'), +(6845,'Arrowhead \"Pathfinder\" Sniper Rifle','Weapon','Medium','f5ad75c2-151d-4d62-96ae-f522e026c1e2','','','Manufacturer: Klaus & Werner\nItem Type: Sniper Rifle\nClass: Energy (Laser)\n\nBattery Size: 20\nRate Of Fire: 50 rpm\nEffective Range: 100 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nKlaus & Werner’s Arrowhead Model VI long-range energy rifle features a fiberglass composite body capable of withstanding any number of rigorous environments both in atmosphere and out. Built with a precision stock, compound scope and built-in bipod, the Arrowhead offers a stable and devastating weapon for operators who want to keep their distance, but stay in the fight.'), +(6846,'Zeus Exploration Suit Backpack','Armor','Backpack','3c584b93-bf9d-4a6e-999d-6c21b81c08be','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K SP\nCore Compatibility: Heavy\n\nThe Zeus Exploration Suit has been designed to honor some of the earliest space pioneers, the RSI crews who developed and tested the Zeus, the first commercial spacecraft. While the suit is styled to match those used centuries ago with attachments for a helmet and backpack, it contains all of the modern technology and conveniences expected by present-day explorers. The Zeus offers good resistance to harsh environments and excellent storage space for sample-collecting during EVAs.'), +(6847,'Razorback Pants Twilight','Char_Clothing_Legs','UNDEFINED','6cde2140-e233-44f1-88a8-8af1690263ce','','','Carrying Capacity: 2K µSCU\n\nDMC\'s Razorback pants are made to be worn. Built from industrial quality material, they feature reinforced kneepads to prevent tears on the job and stay rugged yet comfortable.\n\nWomen\'s sizes currently out of stock.'), +(6848,'Seat','Usable','UNDEFINED','c4ff7a76-69eb-4a0d-bebf-3c370e64299a','','',NULL), +(6849,'Tuvois Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','8670a3d2-82c4-4a31-9e7c-7284aa3859af','','','Carrying Capacity: 1K µSCU\n\nCreated in collaboration with legendary designer Avon, OpalSky is proud to unveil the Tuvois, an open vest featuring stark, bold styling that\'s destined to make an impression. \n\nWomen\'s sizes currently out of stock.'), +(6850,'DRAK_Corsair_Gravity_Generator','Player','UNDEFINED','36ed120d-fffe-466e-bf7d-2248733caa86','','',NULL), +(6851,'AEGS_Door_Decal_SleepingQ_01','Decal','DoorPart','035c96e9-e07d-47ee-87f9-d2b4696eba7b','','',NULL), +(6852,'Giocoso Helmet Obsidian','Armor','Helmet','d674a92d-bcc0-4901-b5b1-3e335fdd9c38','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nInspired by the sleek stylings of the 100 series, the Giocoso is a helmet worthy of Origin Jumpworks. It features a wide face shield to provide excellent peripheral vision and a special internal air flow system to dissipate heat and humidity. In a nod to the 100 series, the back of the helmet slyly integrates the iconic shape language of the ship\'s tail into the form.'), +(6853,'MaxLift Keystone Tractor Beam','Weapon','Gadget','685eb9f6-e072-4e12-a580-183b49cf3f37','','','Manufacturer: Greycat Industrial\nItem Type: Tractor Beam\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 10-20 m\n\nGreycat\'s heavy duty tractor beam boasts industrial performance at a consumer-friendly price. With its longer-lasting battery and wider beam emitter, the MaxLift can easily manipulate heavier and bulkier items making it the perfect tool for long days of hauling cargo.\n\nThe Keystone edition features a white, gray and blue finish with URW logos.'), +(6854,'M5A Cannon','Weapon','Gun','f72ca643-b48c-4f6e-abb7-d5bc8eb261aa','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 3\n\nWhen energy autocannons are designed, Behring\'s M5A provides the standard to which they are measured against, owing to its long range of engagement and low damage fallout.'), +(6855,'Weapon_Rack_1_BEHR_SMG_Common_001','Usable','UNDEFINED','8d2d0c0a-94bc-4a8b-8834-2946edb38859','','',NULL), +(6856,'AEGS_Door_Decal_Escapepods_Large_02','Decal','DoorPart','ebd3b742-dab9-4231-b01a-74f3e9414dfe','','',NULL), +(6857,'ANVL_Pisces_Thruster_Main_Right','MainThruster','FixedThruster','202ac51c-83e7-49ee-8b62-ae6c33057de5','','',NULL), +(6858,'CRUS_Starlifter_Bomb_Bay_Covers','Misc','UNDEFINED','f3fe8784-8283-475c-b7a1-22daa7c7f1be','','',NULL), +(6859,'Internal Tank','QuantumFuelTank','QuantumFuel','efe4f483-28eb-4780-8530-4329a0f98a16','','',NULL), +(6860,'CSP-68L Backpack Epoque','Armor','Backpack','b6d25fdc-38b2-455a-a36c-63545734da97','','','Item Type: Light Backpack\nCarrying Capacity: 54K µSCU\nCore Compatibility: All\n\nBe ready for any situation with the CSP-68L Backpack. Originally designed for the rigors of combat support, this light backpack has become popular thanks to its durability and a patented core connector that helps the CSP-68L sit comfortably and balanced on the back.\n\nThe Epoque edition features a navy and black coloring, finished with baroque gold detailing.'), +(6861,'CRUS_Spirit_C1_Exterior_Nose_Collector','Misc','UNDEFINED','5ef8823c-e79e-492f-8aa8-c9f2a7069a8d','','',NULL), +(6862,'Lynx Core Dark Red','Armor','Torso','35b59600-e2b5-4bf2-ad7b-b30f8966acd0','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(6863,'Libio Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','d228a102-4054-475c-b03f-02b4be7e7b15','','','Carrying Capacity: 1K µSCU\n\nOne of OpalSky\'s classic pullovers, the Libio features a two-tone asymmetrical pattern and polyweave blend to keep it elegant and striking every time you wear it.\n\nWomen\'s sizes currently out of stock.'), +(6864,'AEGS_Reclaimer_CargoGrid_Small','CargoGrid','UNDEFINED','2f5c0872-3240-4c37-8b04-404ea1ec82b3','','',NULL), +(6865,'Pampero Boots Maroon','Char_Clothing_Feet','UNDEFINED','c099e0e2-2bc3-4fe2-9e01-61f6f3875b3a','','','The Pampero are sleek ankle high boots feature lightweight yet durable soles to make it feel like you\'re walking on clouds even when trekking across the most unforgiving terrain.'), +(6866,'Table_1_Seat_RSI_Com_Reception','Usable','UNDEFINED','8863dc62-a050-4ba5-86c5-55acb5d1ac02','','',NULL), +(6867,'Covalex Cargo Plushie','Misc','Flair_Wall_Picture','eebd2f91-08b0-473d-84df-d02ab4179623','','','Here\'s a haul you can hug. This plushie shaped like a cargo container features Covalex Shipping branding with the company\'s logo and brown and grey color scheme.'), +(6868,'AEGS_Redeemer_Storage_Decal_03','Decal','DoorPart','89c28fae-39ea-4123-9bcd-397775a5dfb0','','',NULL), +(6869,'Door','DockingAnimator','UNDEFINED','14c3c643-7679-4d77-9bd2-06b7c23cbdd5','','',NULL), +(6870,'tool_power_1_grinder_a','Misc','UNDEFINED','49807245-89fd-473e-8b9a-48d4783a173f','','',NULL), +(6871,'Internal Tank','FuelTank','Fuel','126ea718-aa97-4165-b914-c45048bbf28d','','',NULL), +(6872,'Hornet Mk II Fortitude Livery','Paints','UNDEFINED','f681a43f-16b2-4b3e-bcbc-3de64894ae73','','','Primarily dark grey, the Fortitude livery uses vibrant blue highlights to accentuate the silhouette of the iconic Hornet Mk II.'), +(6873,'Quantity','Misc','UNDEFINED','648901db-e132-43be-ac80-5bb3191d2b79','','',NULL), +(6874,'Camion Jacket','Char_Clothing_Torso_1','UNDEFINED','30467dd6-3c91-4e54-b3b6-988e3f2cc92c','','','Carrying Capacity: 1K µSCU\n\nCome prepared with the Camion. This button up blue jacket delivers on style with complimentary dark brown synthetic leather around the neck, shoulders, and arms. A cross-shoulder sling bag and integrated utility belt allows you to carry plenty of gear and keep it organized.'), +(6875,'XDL \"Forest\" Monocular Rangefinder','Weapon','Gadget','28b8d79c-9bf8-4914-bc34-544a0c93ba2b','','','The highly accurate XDL Monocular Rangefinder from Behring is as suitable on an expedition as it is on the battlefield. Ruggedly constructed with high-quality lenses, easy-to-read display, and a light-amplification mode, the XDL provides 10x magnification to reliably provide exact-distance laser measurements on faraway targets.\n\nThe Forest edition features a two-tone light and dark green finish.'), +(6876,'hair_30_prop','Char_Hair_Prop','UNDEFINED','a373cffd-ada9-496d-bbb9-eb8e47373ef6','','',NULL), +(6877,'Door Control','DockingAnimator','UNDEFINED','d560bd9c-e2b5-4d54-9b32-9eeac85ecfdf','','',NULL), +(6878,'Arden-SL Legs Archangel','Armor','Legs','746618f0-65d2-4b2c-af99-b9f5c732ba7f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics.'), +(6879,'Samya Tank Storm','Char_Clothing_Torso_0','UNDEFINED','b82c64c5-0a2f-4e64-91fd-78aac1d1216b','','','This Samya Tank is your perfect staple for hot weather. Made with soft and breathable fabric, it features moisture-wicking technology and reinforced binding at the openings to protect it from wear and tear. A detachable sleeve is included with each shirt.'), +(6880,'EX-T10-IR \"Executor\" Torpedo','Missile','Torpedo','ad1356d1-384d-4368-916c-5af6b8ec91a3','','','Manufacturer: Behring\nTracking Signal: Infrared\nSize: 10\n\nBehring prides itself on crafting ordnance that is as dependable as it is powerful and the EX-T10 \"Executor\" is no exception. Designed as an anti-ship and anti-installation weapon, Behring engineers worked tirelessly to ensure this torpedo was a bold strategic statement.'), +(6881,'ANVL_Door_Decal_Carrack_AftTurret','Decal','DoorPart','630cf8de-89e7-4d34-a426-f2a7d6e515f4','','',NULL), +(6882,'utensil_tray_1_food_a','Misc','UNDEFINED','1423da53-3f8a-483c-ae8c-02c227000915','','',NULL), +(6883,'TrueDef-Pro Arms Black/Aqua/Silver','Armor','Arms','2db3851d-f617-4b52-8188-edcc24bc47f0','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(6884,'m_human_mannequin_slaver_heavy_02','ShopDisplay','UNDEFINED','c56e7e61-94a9-49a0-adbf-d383fd5518ac','','',NULL), +(6885,'XNAA_SanTokYai_Thruster_Mav_Bottom','ManneuverThruster','FlexThruster','4c4bbc4c-3b94-4786-aa75-95cfa0ba46ad','','',NULL), +(6886,'Giotto Jacket Crusader Edition Purple Pinstripe','Char_Clothing_Torso_1','UNDEFINED','08de725e-377d-4145-ab12-ed51cfac2f70','','','Carrying Capacity: 1K µSCU\n\nFiore elevates the typical suit jacket with the Giotto. Subtle and stylish flourishes include light lines running down the left lapel and a strip of accent fabric along the arm seams that connect across the back of the jacket. The end result is an elegant and inspired addition to any wardrobe.\n\nThe Crusader Edition was made specifically for employees of Crusader Industries.'), +(6887,'MISC_Starlancer_Seat_Access_Copilot','SeatAccess','UNDEFINED','bd9207ad-570a-4aaa-891a-0e4393b5a789','','',NULL), +(6888,'Strata Core Pyrotechnic Edition','Armor','Torso','70517964-6996-417a-b114-203ced148192','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 15k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpack Compatibility: Light & Medium \n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. This edition features the colors and logo of the now defunct Pyrotechnic Amalgamated.'), +(6889,'Tuvois Jacket Violet','Char_Clothing_Torso_1','UNDEFINED','b5aa2a2f-7763-4b19-b96b-24428b8089d4','','','Carrying Capacity: 1K µSCU\n\nCreated in collaboration with legendary designer Avon, OpalSky is proud to unveil the Tuvois, an open vest featuring stark, bold styling that\'s destined to make an impression. \n\nWomen\'s sizes currently out of stock.'), +(6890,'Carryable_2H_FL_05x05x05_Commodity_gas_inert_chlorine_a','Cargo','Small','cdf7f324-6fcb-437e-b4fd-533f04a13c7f','','',NULL), +(6891,'microTech T-Shirt','Char_Clothing_Torso_0','UNDEFINED','51a16178-3bf2-4269-a9c8-579211767cea','','','A comfortable white cotton t-shirt featuring a large microTech logo across the front and a smaller one on the back.'), +(6892,'Door','Door','UNDEFINED','8bd56472-e0a6-4545-86c2-3d2914b1f5ab','','',NULL), +(6893,'ORIG_100i_Thruster_Mav_Left','ManneuverThruster','FixedThruster','9736fe9f-b1b8-4bd7-9078-692259993405','','',NULL), +(6894,'Door Control','ControlPanel','DoorPart','97ec43ac-fa16-430d-b61c-acc7e9db7873','','',NULL), +(6895,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','42fb5b92-5a36-4d83-bfbd-ef95a92ffbfb','','','Aegis Gladius - Decoy Launcher'), +(6896,'Tempus Tank Grey','Char_Clothing_Torso_0','UNDEFINED','fe35b83f-3417-4107-80eb-704d8187eabe','','','This classic tank by 987 is made with moisture-wicking fabric to keep you cool when you\'re at your most active. Each shirt comes with a bracer and a bandolier to create a bold and aggressive style.'), +(6897,'Fluorine','Cargo','Cargo','9bdd0884-c52d-42f1-b376-d59656191a10','','',NULL), +(6898,'TRGT. STATUS','Seat','UNDEFINED','578f5664-90a5-46fb-9dec-33609a5268af','','',NULL), +(6899,'Burke QD','QuantumInterdictionGenerator','UNDEFINED','1f74e62c-6093-4d2f-a560-e33df359a7e4','','','Manufacturer: Wei-Tek\nType: Quantum Dampener\nSize: 1\nGrade: A\nClass: Military\n\nSee that justice is served with the Burke QD. This powerful quantum dampener from Wei-Tek projects a massive field that keeps ships from engaging their quantum drives, making it a valuable component for both law enforcement and security professionals.'), +(6900,'m_human_mannequin_rsi_suit_05','ShopDisplay','UNDEFINED','9c069433-37c0-4587-b495-30aeadf84fa9','','',NULL), +(6901,'CRUS_Star_Runner_Thruster_VTOL','ManneuverThruster','UNDEFINED','8e4a059c-cbea-4483-bc90-e3817fdc7891','','',NULL), +(6902,'Carryable_1H_SQ_drug_concealed_1_a','Misc','Utility','1ebafd12-9723-4018-a351-86db38af04aa','','',NULL), +(6903,'Libio Jacket Violet','Char_Clothing_Torso_1','UNDEFINED','670c55b0-a6a0-4109-9e71-6585f20ed286','','','Carrying Capacity: 1K µSCU\n\nOne of OpalSky\'s classic pullovers, the Libio features a two-tone asymmetrical pattern and polyweave blend to keep it elegant and striking every time you wear it.\n\nWomen\'s sizes currently out of stock.'), +(6904,'AEGS_Eclipse_Thruster_Mav_Ball','ManneuverThruster','JointThruster','84c341b1-f785-49b5-b1c2-4eef3f8c9567','','',NULL), +(6905,'TRGT. STATUS','Seat','UNDEFINED','0c8d595d-aade-41b2-a7b0-d4e843bf2f24','','',NULL), +(6906,'Pampero Boots Yellow','Char_Clothing_Feet','UNDEFINED','15456f3d-5b7b-40ef-a750-cb5b5a8d669a','','','The Pampero are sleek ankle high boots feature lightweight yet durable soles to make it feel like you\'re walking on clouds even when trekking across the most unforgiving terrain.'), +(6907,'H_Dashboard_Projector_HUD_CRUS_Starrunner','Display','UNDEFINED','de6f030f-c9dc-4956-8064-b3e0b38c6847','','',NULL), +(6908,'Fractus Gloves Green','Char_Clothing_Hands','UNDEFINED','270e1803-7753-49ab-a6ac-9db7cb959c3c','','','Developed for work sites, but refined enough for everyday use, the Fractus gloves layer StretchStrong fabric for a tight yet breathable fit. Reinforced knuckle plating and scaled fingertips provide extra durability and a stylish flourish.'), +(6909,'Door Control','Door','UNDEFINED','e9e378d8-57d5-4d7a-975d-b8ba10dfcbff','','',NULL), +(6910,'Inquisitor Arms Black Steel','Armor','Arms','afbe1f75-0e68-4e80-8d79-88279c8c52e5','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(6911,'Door','Door','UNDEFINED','25856473-b7fe-458e-a072-b9742aa5a7e6','','',NULL), +(6912,'Seat','Usable','UNDEFINED','a52244da-adf0-4fd3-8b0c-8e6ae3405353','','',NULL), +(6913,'Overlord Core Gilded','Armor','Torso','6348c2d2-4ea4-43d0-a48c-bcccb7cb0b3a','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12.0 µSCU\nBackpacks: All\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.\n\nThe Gilded edition is an opulent gold with worn edges and black joints.'), +(6914,'ORC-mkV Legs Imperial','Armor','Legs','229667b8-fb14-465f-9113-2143b9fb0b94','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(6915,'Seat','Usable','UNDEFINED','456a3502-372c-48ac-ab4e-c156d9fcae32','','',NULL), +(6916,'TruBarrier Hazard Suit Hi-Vis Biohazard','Char_Clothing_Torso_1','UNDEFINED','d5c01391-1d1a-4403-ab99-760ac05a1a8a','','','Carrying Capacity: 1K µSCU\nTemp. Rating: -5 / 32 °C\n\nGuard yourself from toxic environmental hazards with the TruBarrier Hazard Suit, constructed from industrial-grade fabric and coated with a multi-layered, laminated polymer that offers a broad range of chemical protection without sacrificing mobility. The encapsulated design provides full-body protection from direct contact with dangerous materials when worn with its accompanying mask.'), +(6917,'TRGT. STATUS','Seat','UNDEFINED','044f8411-2ca7-4d39-a251-790f6bf57a1a','','',NULL), +(6918,'TruBarrier Hazard Suit Dark Biohazard','Char_Clothing_Torso_1','UNDEFINED','f652aeee-00e1-4a1e-ba3c-bf280bb67a4d','','','Carrying Capacity: 1K µSCU\nTemp. Rating: -5 / 32 °C\n\nGuard yourself from toxic environmental hazards with the TruBarrier Hazard Suit, constructed from industrial-grade fabric and coated with a multi-layered, laminated polymer that offers a broad range of chemical protection without sacrificing mobility. The encapsulated design provides full-body protection from direct contact with dangerous materials when worn with its accompanying mask.'), +(6919,'TruBarrier Hazard Suit Warning','Char_Clothing_Torso_1','UNDEFINED','ec1b1120-cee3-4c28-82cd-234515d52c13','','','Carrying Capacity: 1K µSCU\nTemp. Rating: -5 / 32 °C\n\nGuard yourself from toxic environmental hazards with the TruBarrier Hazard Suit, constructed from industrial-grade fabric and coated with a multi-layered, laminated polymer that offers a broad range of chemical protection without sacrificing mobility. The encapsulated design provides full-body protection from direct contact with dangerous materials when worn with its accompanying mask.'), +(6920,'Wrecker Legs Ashen','Armor','Legs','86df375f-c899-4e95-8f01-9a1d79e39998','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\n\nFavored by the most brutal of hunters, the Wrecker armor is a fusion of discarded metal and pilfered fabric cobbled together to offer protection while stalking prey.\n\nThe Ashen version is sprayed with white paint and anointed with bone fragments and Vanduul armor pieces.'), +(6921,'TruBarrier Hazard Suit Moss','Char_Clothing_Torso_1','UNDEFINED','086214a4-3164-4a74-bf2e-80174a7730a2','','','Carrying Capacity: 1K µSCU\nTemp. Rating: -5 / 32 °C\n\nGuard yourself from toxic environmental hazards with the TruBarrier Hazard Suit, constructed from industrial-grade fabric and coated with a multi-layered, laminated polymer that offers a broad range of chemical protection without sacrificing mobility. The encapsulated design provides full-body protection from direct contact with dangerous materials when worn with its accompanying mask.'), +(6922,'Rattler II Missile','Missile','Missile','8acc8f1f-47cb-46e4-bf58-bea2ac5ff52e','','','Manufacturer: Nova Pyrotechnica\nTracking Signal: Infrared\nSize: 2\n\nThe Rattler is a cost-effective cluster missile that will no doubt appeal to a wide variety of pilots. When fired, the Rattler will track the opponent’s IR signature and create an opening barrage that weakens the armor or shields, leaving the target vulnerable to the full payload that follows.'), +(6923,'Nyman Jacket Violet','Char_Clothing_Torso_1','UNDEFINED','5c599276-b05c-45df-a449-5a7243c70478','','','Carrying Capacity: 1K µSCU\n\nOpalSky\'s Nyman light pullover is perfect to have on hand when lounging poolside or on those chilly nights.'), +(6924,'Carryable_1H_CY_glass_tall_1_a','Misc','UNDEFINED','90f64b7b-8580-4579-97fe-a7f69025f31f','','',NULL), +(6925,'PH - nrs_shoes_03_01_9tails01','Char_Clothing_Feet','UNDEFINED','df9ee778-1e26-489a-b1fc-31f7ed4ee80b','','','Stylish yet rugged, NorthStar\'s Li-Tok boots are made from a composite nylon fabric, vulcanized rubber grips that hold fast to a variety of surfaces, and reinforced ankle support making these perfect for hanging out or on the job.\n\nWomen\'s sizes currently out of stock.'), +(6926,'lna_pants_01_01_01','Char_Clothing_Legs','UNDEFINED','a9d26fa3-5bf4-43f9-a78e-64860f2c099b','','',NULL), +(6927,'LIGHTS','LightController','UNDEFINED','056628be-ecee-41b9-9dd2-bb32215e6e34','','',NULL), +(6928,'Outback Helmet Sleet','Armor','Helmet','023e95f4-857e-444c-8bf2-8901bae5ecf3','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -65 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2k µSCU\n\nThis full-coverage reinforced leather helmet incorporates darkened goggles and a heavy-duty rebreather suitable for low oxygen environments. Visor is AR Crosshair compatible. The Sleet version is dyed a well-worn grey to keep you subtle, but not unsightly.'), +(6929,'SHIELDS','ShieldController','UNDEFINED','6088a5ab-0c46-4a1a-84ed-6e2ee44b359e','','',NULL), +(6930,'AImodule_ATC','AIModule','UNDEFINED','c5003168-d252-4a02-bb18-3784ddc133dd','','',NULL), +(6931,'Asgard Sky Forge Livery','Paints','UNDEFINED','d92e1048-724f-424f-8b7a-e7bb6d5e4551','','','Mainly blue, the Sky Forge livery for the Asgard also features black and red accents.'), +(6932,'Monde Core Hemlock Camo','Armor','Torso','d1748942-0ee7-457c-8beb-d3c838aa62ea','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12.0 µSCU\nBackpacks: All\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints.\n\nThe Hemlock edition features a green camo pattern.'), +(6933,'CRUS_Spirit_Copilot_Dashboard','SeatDashboard','UNDEFINED','be2c8dd0-e27a-48d6-8104-1a73539029a0','','',NULL), +(6934,'VariPuck S5 Gimbal Mount','Turret','GunTurret','99e0ea17-45fc-4700-8607-ab879d05a284','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 5\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(6935,'AAT-34 Turret','Turret','MannedTurret','6c4f23e5-d8dd-4950-91a3-7c595b09309a','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(6936,'un_box_plastic_4_food_a','Misc','UNDEFINED','1232b136-7fc6-4755-8ab7-52d8edba7698','','',NULL), +(6937,'Door Control','ControlPanel','DoorPart','ded7fede-f770-4744-8abd-3d0daf3df45d','','',NULL), +(6938,'Stud','Char_Head_Piercings','UNDEFINED','2fdc6c23-c36a-489d-b418-45d1d5785b40','','',NULL), +(6939,'Seat','Usable','UNDEFINED','3710c161-91d2-412c-b999-8412db355ff8','','',NULL), +(6940,'Tracer Laser Pointer Green','WeaponAttachment','BottomAttachment','14bc8a2c-10f2-4f6e-a45e-eec476367d45','','','Manufacturer: Klaus & Werner\nType: Laser Pointer\nAttachment Point: Underbarrel\nSize: 1\n\nSpread: -12.5%\n\nTrust Klaus & Werner to manufacture a tactical laser pointer that always hits the mark. The Tracer features a rust and impact resistant casing for an advanced laser diode that produces an efficient and stable beam. This special edition generates a green beam that\'s easy to see and identify.'), +(6941,'Altruciatoxin','Cargo','Cargo','93f88b44-1f93-4eb5-909b-0af007228490','','',NULL), +(6942,'Sawtooth Combat Knife','Weapon','Knife','ea692f4b-0545-4f0b-8d4f-05f41fa1e876','','','Manufacturer: Kastak Arms\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nDon\'t end up on the wrong side of the Sawtooth combat knife. The blade embodies Kastak Arms\' aggressive styling and was designed to stab, slice, or saw. It features a strong tip for piercing, a straight edge for slicing, and a unique serrated edge with microblades for when you really need to rip through something. The blade is also made with a special ceramic polymer coating that enhances its strength and overall wear resistance.'), +(6943,'Calico Core Tactical','Armor','Torso','751a666e-fb4b-49db-b90e-c9e50b5e0315','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -39 / 69 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light \n\nDesigned to be an EVA-compliant light combat suit, the Calico set is the perfect armor suit for infiltrators, snipers, thieves, basically anyone who likes to avoid kicking in doors. Built out of a combination of PAB3 armor and a custom helmet, it can help you weather some incoming fire without slowing you down.'), +(6944,'Seat','Usable','UNDEFINED','4c271ea8-5b37-cf76-cc4c-8837cd8ab7a6','','',NULL), +(6945,'Ouratite','Cargo','Cargo','a52c99f4-f270-4ac2-bbb0-57f67f0345f5','','',NULL), +(6946,'Door Control','Door','UNDEFINED','c0d50ec6-8b20-47c6-aa7e-ce77e4004529','','',NULL), +(6947,'Self Destruct Unit','SelfDestruct','UNDEFINED','e9655bd9-dd74-46ee-8a15-2ac3bd3dfde1','','','Self Destruct Unit'), +(6948,'Door Control','ControlPanel','DoorPart','21362886-8d5a-4cca-8ec0-69aef632dfc6','','',NULL), +(6949,'Weapon_Rack_1_KSAR_Sniper_AmmoOnly_001','Usable','UNDEFINED','3b76312b-9785-47c4-a15d-af32200defed','','',NULL), +(6950,'ANVL_Hornet_F7CM_Mk2_Thruster_Mav_1','ManneuverThruster','JointThruster','a96b2d4d-7b69-4271-a4e7-dec2d4705337','','',NULL), +(6951,'Sureshot Helmet Red Menace','Armor','Helmet','720de38f-f785-4e83-bf9b-0413c89c2a76','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -65 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWin the fight before it starts with this intimidating, take-no-prisoners helmet. But if it does go down, this combination of an ablative ceramic mask and polyweave skull cap has you covered with the optimum combination of easy breathability and airtight protection. Visor is AR Crosshair compatible. The Red Menace edition features bold markings across the faceplate.'), +(6952,'INTK_RSI_Constellation_Andromeda','FuelIntake','Fuel','12112340-9f10-40c8-930f-c8dca8dad7a8','','',NULL), +(6953,'Door Control','Door','UNDEFINED','8b47f55e-cbb4-4734-a7a3-7484cb49cf20','','',NULL), +(6954,'Internal Tank','QuantumFuelTank','QuantumFuel','25813f35-f83c-42d9-9134-95d50b453ac3','','',NULL), +(6955,'Atlasium','Cargo','Cargo','c34a0aab-7e1d-437e-8ca4-9efc4c63ada9','','',NULL), +(6956,'utensil_tray_1_food_a_with_loadout_whammersfood','Misc','UNDEFINED','71cc89db-b1b1-4928-8631-191b33c0a356','','',NULL), +(6957,'Morozov-SH Legs Terracotta','Armor','Legs','88eb6f3c-b507-4173-bb14-126c7ecd6d7b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5K µSCU\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(6958,'Weapon_Rack_1_NONE_Shotgun_Common_001','Usable','UNDEFINED','29377a3c-8e97-4a84-8be0-a18359fad1a0','','',NULL), +(6959,'ARMR_MISC_Hull_C','Armor','Medium','c28b6745-66b2-4c56-a44a-4b491509e3ff','','',NULL), +(6960,'Waste','Cargo','Cargo','6f4b120f-3d7c-414e-b562-44d4c8368536','','',NULL), +(6961,'CRUS_Intrepid_Thruster_VTOL','ManneuverThruster','UNDEFINED','2413b346-c154-436d-8079-88332e935149','','',NULL), +(6962,'F55 LMG Magazine (150 cap)','WeaponAttachment','Magazine','daa0fe47-d6f7-44eb-a3d6-e3e13724a6ba','','','Item Type: Magazine\nCapacity: 150\n\nThis magazine for the Gemini F55 LMG holds one hundred and fifty 5mm rounds.'), +(6963,'Seat','Usable','UNDEFINED','b1f46824-50a5-4a49-9d67-23242869d88a','','',NULL), +(6964,'TrueDef-Pro Arms Black/Silver/Yellow','Armor','Arms','72333eaa-2f24-4c32-a873-2f9604aceccb','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(6965,'Door Control','Door','UNDEFINED','983c6a92-f22c-411b-bc23-556a05cd781d','','',NULL), +(6966,'Ventris Jumpsuit Crusader Edition Blue','Char_Clothing_Torso_1','UNDEFINED','b823b761-7ef4-47a7-bd53-195159edce69','','','Carrying Capacity: 1K µSCU\n\nThe Ventris is a sleek jumpsuit that mixes several rip and stain resistant polymer fabrics for a dynamic design. It also features a half-zip front and adjustable belt to ensure an ideal fit while the soft inner lining makes it an ideal choice for all day wear. The special Crusader Edition was made to be worn by employees of the company and features the sword and C logo on the front.'), +(6967,'Seat','SeatAccess','UNDEFINED','aebf797f-38aa-41e0-a3d7-b44dc7b3b137','','',NULL), +(6968,'Ares Star Fighter Missile Launcher','MissileLauncher','MissileRack','fe1443e8-3688-4c23-9042-f9427843ed05','','','Item Type: Missile Launcher\nManufacturer: Crusader Industries\nSize: 7\nMissiles: 12xS3 \n\nBespoke missile launcher built into the body of the Ares Star Fighter that can carry and deploy twelve S3 missiles.'), +(6969,'Door Control','Door','UNDEFINED','13cdf225-9dd9-4e6f-92db-f36b2ae330b5','','',NULL), +(6970,'Carryable_1H_CY_bottle_bar_14_mixer_b','Misc','UNDEFINED','c0ea0773-6379-4b16-96d7-dbc7988fc4d7','','',NULL), +(6971,'Carryable_1H_CY_medical_eyedrop','Misc','UNDEFINED','66529aca-29ef-41bb-a710-506699709add','','',NULL), +(6972,'400i 2954 Auspicious Red Dragon Livery','Paints','UNDEFINED','97526d66-1b33-4d66-b446-a06a2eb0e478','','','Seek peace and prosperity in the new year with the Auspicious Red Dragon livery. Outfit your ship with this bold red base paint complemented by gold accents and a stylized graphic of a dragon.'), +(6973,'CRUS_Starlifter_CargoGrid_Large_M2','CargoGrid','UNDEFINED','6fe4ea07-9414-45d0-8953-203239236d30','','',NULL), +(6974,'Defiance Helmet Firestarter','Armor','Helmet','fdd7ea9e-e6d4-42e0-b56e-8758dd440ea5','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Defiance features a fully enclosed battle helmet constructed with two layers of composite weaves underneath armor plating, providing you maximum protection against penetrating and concussive attacks. Visor is AR crosshair compatible.'), +(6975,'Door','Door','UNDEFINED','c663960f-0c1b-4931-a18b-30adce815514','','',NULL), +(6976,'fruit_tray_1_c','Misc','UNDEFINED','f306dca0-85f9-4775-a033-e7140b05f070','','',NULL), +(6977,'Lillo Pants Olive','Char_Clothing_Legs','UNDEFINED','23039d2b-596d-413f-b619-6042df1af3b3','','','Carrying Capacity: 0.5K µSCU\n\nThese slim cut pants from Fiore give you a tailored feel at a fraction of the cost. Built from space-age weaves, the Lillo are a low maintenance, high impact addition to your office wardrobe.'), +(6978,'Screen_Datapad','Display','UNDEFINED','b95d6bad-b7f3-453e-96bc-281cf8dfad40','','',NULL), +(6979,'Processed Food','Cargo','Small','ef097ed9-9c1f-45e3-ae7b-eb2c12caff08','','','A nutritional substance that has been transformed trough physical or chemical means into food.'), +(6980,'Flair_Dashboard_Bobblehead_02','Flair_Cockpit','Flair_Static','27091a02-d1d3-40ec-acd5-b2a0f3a1ca77','','',NULL), +(6981,'PAB-1 Core White','Armor','Torso','93cfbe4d-b598-43a8-9ec7-a054a64edb68','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(6982,'Manned Turret','TurretBase','MannedTurret','423e1466-9371-4fe4-81da-9a3c72512ebe','','',NULL), +(6983,'Gale Head Cover Teal','Char_Clothing_Hat','UNDEFINED','7ef52f9d-cecf-43d4-af38-7e89202a0783','','','Temp. Rating: -30 / 15 °C\n\nProtect your head from the wind and cold with the Gale. Code Blue Apparel paired a wide-view visor with a dynamic synthetic fabric to create an excellent thermal barrier to keep heat from escaping without sacrificing your visibility.'), +(6984,'HoverQuad Turbocharged Livery','Paints','UNDEFINED','8edd0299-3390-4958-9201-dac9b1c76cf2','','','The Turbocharged is a distinct, purple racing livery for the HoverQuad that will make you stand out from the rest of the field.'), +(6985,'Drake Caterpillar Weapon Mount','Turret','GunTurret','31f31a22-aea8-4805-ac25-1f19b5740646','','','Drake Caterpillar Weapon Mount'), +(6986,'INTK_AEGS_Vanguard_Harbinger','FuelIntake','Fuel','405e6fdd-cc48-459c-b54c-8f755fb8f131','','',NULL), +(6987,'G-2 Helmet Blue','Armor','Helmet','bda1a03c-589e-4b09-a621-5a46feb3851a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. Visor is AR crosshair compatible.'), +(6988,'AEGS_Retaliator_Turret_Lights_Lower','Room','UNDEFINED','05093bee-1814-41f9-9651-2db3968e9915','','',NULL), +(6989,'Adroit Gloves Olive','Char_Clothing_Hands','UNDEFINED','ae2ccd9b-b429-44c2-9112-d4e55f6cf8ca','','','Lightweight, quick-drying, and durable, the Adroit fingerless gloves keep your hands warm while giving your fingers the freedom to perform delicate work. The material on the wrist extends to meet long-sleeved apparel, cutting down on places that might be exposed to the elements.'), +(6990,'Sol-III Helmet Aviator','Armor','Helmet','b28d0efc-961a-4480-875a-3f7210ce3836','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nInspired by the original flight suits worn by Earth\'s Air Force, this replica stays true to the historical design while incorporating modern comforts. Featuring a period appropriate, tinted half-visor, this helmet reproduction is not airtight.\n\nThe Aviator edition is primarily green-beige with light green accents.'), +(6991,'MacFlex Core Twilight','Armor','Torso','6fa3d339-9a79-4891-8bfb-4dea426f6f72','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(6992,'Redfin Energy Modulators','Cargo','Cargo','b99730b1-7482-44fd-ad76-f2f13fd7cb6a','','',NULL), +(6993,'100i 2954 Auspicious Red Dog Livery','Paints','UNDEFINED','7b21462f-b0ad-433e-9809-d1a97f9e511e','','','Seek peace and prosperity in the new year with the Auspicious Red Dog livery. Outfit your ship with this bold red base paint complemented by gold accents and a stylized graphic of a dog.'), +(6994,'Marok Gem','Cargo','Cargo','1c8f600a-544e-4923-8297-1c1820ec596c','','',NULL), +(6995,'Scorpius Nightbreak Livery','Paints','UNDEFINED','9e8a633a-6088-43e7-82b2-17e875f4cb10','','','Discreetly soar through the night sky in the Scorpius with the Nightbreak livery, which is primarily black with red highlights.'), +(6996,'Corsti Boots','Char_Clothing_Feet','UNDEFINED','64f30d23-994f-41a0-9774-cc13d9093270','','','Made with hardy and adaptable materials, the Corsti boots are suitable for any conditions, whether you\'re taking a day-long hike on a well-worn road or exploring a strange landscape on an untamed world.'), +(6997,'Flight Blade','FlightController','UNDEFINED','8313f0ea-1285-4fe2-86e4-f0ad32788ebb','','',NULL), +(6998,'Flight Blade','FlightController','UNDEFINED','b46d531c-f64a-4771-bb56-b01916a39d50','','',NULL), +(6999,'display_components_s2_modular_shield_3ports','ShopDisplay','UNDEFINED','d5995c2b-ba5e-419e-851f-c36697912cdd','','',NULL), +(7000,'KRIG_P52_Merlin_Dashboard_Pilot','SeatDashboard','UNDEFINED','a5f6a9c6-fd0c-4e10-b9c3-62b82191aa62','','',NULL), +(7001,'lt_lamp_desk_2_a','Light','UNDEFINED','eb7c18ae-d279-4194-937f-397ed589716d','','',NULL), +(7002,'Organics','Cargo','Cargo','a6590ed4-103e-4a67-964f-5e8464adc027','','',NULL), +(7003,'KRIG_l22_AlphaWolf_Thruster_Mav_Capsule','ManneuverThruster','UNDEFINED','dffecca5-3717-422f-b5d2-dddf13996987','','',NULL), +(7004,'RSI_Zeus_Wings','AttachedPart','UNDEFINED','b9e5023b-5e5b-4878-ae42-855ec37e05e8','','',NULL), +(7005,'Tundra Kopion Horn','Misc','Harvestable','31033547-e451-44d2-85df-ab16b9d083d9','','','The horn of the kopion is made of a unique combination of bone and naturally-occurring carbon nanomaterials. When properly processed, it can be used to aid in bone regeneration with a far greater rate of success than lab-grown materials. This application has made it a valuable commodity.'), +(7006,'Cambio-Lite SRT Attachment','WeaponAttachment','Utility','99379aa0-7240-4014-813a-0ab460f885f5','','','MUST BUY BASE MULTI-TOOL TO USE: \"Pyro RYT Multi-Tool\"\n\nManufacturer: Greycat Industrial\nItem Type: Multi-Tool Attachment\nClass: Salvage and Repair\n\nGreycat delivers once again, bringing their popular salvage and repair tool (SRT) as an attachment for the Multi-Tool. Though not as powerful as the Cambio, the Cambio-Lite also collects and converts alloys and polymers found in scrap into recycled material composite that can either be sold or used to make quick repairs. Whether stripping salvage for creds or patching a hull to make a ship space-safe, the Cambio-Lite is ready to get to work.'), +(7007,'Kamar Jacket Blue Striped','Char_Clothing_Torso_1','UNDEFINED','4d9c3a76-9f7c-439a-b893-fedf0fe87a35','','','Carrying Capacity: 1K µSCU\n\nThe Kamar is a modern update on a classic style featuring a truly unique design and silhouette. Centered around an ultra-soft velvet front panel, it features a fitted collar, wide pleated waistband, and bishop sleeves cinched by extra long cuffs. The result is a formal top that\'s bold yet timeless.'), +(7008,'SonicLite','PowerPlant','Power','ad089033-7cfc-479f-b7d4-49a93e1e3bd4','','','Item Type: Power Plant\nManufacturer: Tyler Design & Tech\nSize: 1\nGrade: C\nClass: Stealth\n\nConstructed from the ground up to minimize your heat signature, Tyler Design’s SonicLite power plant has gained a following among pilots who appreciate a subtler approach.'), +(7009,'Intrepid Oblivion Livery','Paints','UNDEFINED','262d338c-f4c6-4609-bc67-335b6639654a','','','The Oblivion livery cloaks the Intrepid in black with subtle but striking gold highlights.'), +(7010,'facial_hair_002','Char_Head_Beard','UNDEFINED','e6c2c999-3731-4163-9f1a-e37df9b9a267','','',NULL), +(7011,'Remote Turret','Turret','GunTurret','5b3f8f7b-f645-448b-ab16-642c57c49df3','','','Remote Turret'), +(7012,'Compboard','Cargo','Cargo','1b59493c-afd7-4548-aeeb-3cf42a41ddf7','','',NULL), +(7013,'CoolCore','Cooler','UNDEFINED','553f7473-1d24-41b5-bd53-baa4190464d0','','','Item Type: Cooler\nManufacturer: Juno Starwerk \nSize: 2\nGrade: C\nClass: Industrial\n\nThe name CoolCore says it all. Designed by Juno Starwerk to be as hardworking as you are, this cooler helps ensure that your entire ship operates well within desired temperature parameters.'), +(7014,'Cardona Jacket Yellow','Char_Clothing_Torso_1','UNDEFINED','c841b95c-1b80-4738-9516-f06d2b4cf787','','','Carrying Capacity: 1K µSCU\n\nDMC’s Cardona is a utility jacket designed for performance in cold weather environments. Featuring a high collar for better wind protection and numerous pockets to store any survival essentials.'), +(7015,'Waste','Cargo','Cargo','59b39ab6-0196-4ece-b3fc-d810c2f61ab5','','',NULL), +(7016,'Seat','SeatAccess','UNDEFINED','d29d3ef3-44f5-4586-9ae6-6d9a3c2a1751','','',NULL), +(7017,'Vehicle_Screen_MFD_Holographic_Glaive_TL','Display','UNDEFINED','a79b19c6-0133-4021-80e9-e885cbd337aa','','',NULL), +(7018,'Aegis Eclipse Torpedo Rack','MissileLauncher','MissileRack','ffaf4f8b-6712-4a72-aa54-003187447399','','','Aegis Eclipse Torpedo Rack'), +(7019,'Flight Blade','FlightController','UNDEFINED','c9ab6b66-2edf-4dbc-8c73-0304441dcc03','','',NULL), +(7020,'Parallax \"microTech\" Energy Assault Rifle','Weapon','Medium','6b390f80-d93e-47c7-9ca4-717dd388be4c','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Assault Rifle\nClass: Energy (Electron)\n\nBattery Size: 80\nRate of Fire: 200 rpm - Beam\nEffective Range: 30 m\n\nAttachments: Optics (S2), Underbarrel (S2)\n\nWith the Parallax, VOLT offers consumers a rugged assault rifle design with features like a larger-than-average battery and a unique actuator that enables the weapon to scale up into a persistent beam as it fires. This special edition features microTech branding.'), +(7021,'Sunset Berries','Cargo','Cargo','cfb006f3-b068-406b-844d-0a7f7782e9fd','','',NULL), +(7022,'Radar_Display_KRIG_P52','Display','UNDEFINED','5fabbde1-a3e1-44bc-9869-63678b2295c0','','',NULL), +(7023,'GLSN_Shiv_Thruster_Maneuver_Rear_Vent_Right','ManneuverThruster','JointThruster','ece8523e-3ea8-4051-8891-934469e0ebdd','','',NULL), +(7024,'Door Control','ControlPanel','DoorPart','93728b5d-ad71-469d-8f96-8f659081a432','','',NULL), +(7025,'Ectio Glasses','Char_Accessory_Eyes','UNDEFINED','2ddeaeb6-fd84-450a-9dbb-9f9869ed68a3','','','Fashion and function merge with the Ectio glasses from Fiore. Adjustable temple arms provide the perfect fit to sit snugly in the ear, while crystal-tempered lenses guarantee a clear view under almost any atmospheric condition.'), +(7026,'Carryable_2H_FL_05x05x05_MissionItem_Present_b','Misc','UNDEFINED','3c9f1086-e502-4c12-af83-692572a576e8','','',NULL), +(7027,'Cryo-Star SL','Cooler','UNDEFINED','7db13b34-c8b1-4e1a-9aba-3dcd7087e995','','','Item Type: Cooler\nManufacturer: J-Span\nSize: 0\nGrade: B\nClass: Civilian\n\nJ-Span’s done it again. The Cryo-Star SL incorporates the same consumer award winning performance and durability you’ve come to expect from a Cryo-Star, but now available for smaller vehicles.'), +(7028,'DRAK_Buccaneer_Thruster_Retro','ManneuverThruster','UNDEFINED','af44d55b-15c2-4003-9b31-ae085218d4ce','','',NULL), +(7029,'Asgard Skullcrusher Livery','Paints','UNDEFINED','9b99bf98-c0df-4221-9a90-883840b0115d','','','Exude attitude with the Skullcrusher livery for the Asgard, which features a massive skull across the top.'), +(7030,'Bed','Usable','UNDEFINED','a66793a3-c532-43a2-a01e-fd44b0c8f989','','',NULL), +(7031,'MISC Starfarer Fuel Intake','FuelIntake','Fuel','d8913855-325b-46f1-ba5f-22c0c2ef1ea2','','','MISC Starfarer Fuel Intake'), +(7032,'Screen','Display','UNDEFINED','8609e3ea-2901-49be-9e34-c488f2b0bf1a','','',NULL), +(7033,'MacFlex Core Grey','Armor','Torso','78308f10-be90-49f5-8c9e-1171949e7b41','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(7034,'ANVL_Pisces_Thruster_Mav_Joint','ManneuverThruster','JointThruster','34d2a86b-8d83-4277-ba03-83c6f6fea4a5','','',NULL), +(7035,'Palatino Helmet Daystar','Armor','Helmet','cf8dcddd-a095-4b1b-851d-274a53cfc833','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. The fully-enclosed helmet comes equipped with a suite of sensors that connects the wearer to the wider world while providing supreme protection. Visor is AR crosshair compatible.'), +(7036,'Grin_Rear_Module_MTC','Misc','UNDEFINED','69b9f672-2643-4dc7-bb2a-0e26f0b63405','','',NULL), +(7037,'Remote Turret','Turret','GunTurret','f2b386d2-2a92-43ba-b9ca-e12f26f466aa','','','Remote Turret'), +(7038,'Internal Tank','FuelTank','Fuel','bcc10e7e-0ffc-42a2-a68d-45ff1b817c65','','',NULL), +(7039,'Tuvic Outerwear Jacket Tactical','Char_Clothing_Torso_1','UNDEFINED','5e1ddd8d-8d1a-4abe-92cd-4763f85f842d','','','Carrying Capacity: 2K µSCU\n\nAlejo Brothers have seamlessly blended functionality and style with the Tuvic line of outerwear. These rugged jackets feature reinforced leather padding to offer additional protection and support while still maintaining a modern aesthetic.\n\nWomen\'s sizes currently out of stock.'), +(7040,'Weapon_Rack_Cz_012','Usable','UNDEFINED','2319c249-9730-4f61-a623-e97c76c6a938','','',NULL), +(7041,'Self Destruct Unit','SelfDestruct','UNDEFINED','27875030-1290-4098-827f-f1a5b67c0615','','','Self Destruct Unit'), +(7042,'Cliffback T-Shirt Imperial','Char_Clothing_Torso_0','UNDEFINED','da739f16-1141-4fd7-9a3e-acc6d67cd5fa','','','Alejo Brothers\' classic loop tee with a spatter pattern.'), +(7043,'Remote Turret','Turret','GunTurret','441efd3a-fa36-40bd-94b3-bfe4d3b1de51','','','Remote Turret'), +(7044,'AIModule_Unmanned_PU_SecurityNetwork_OrbitalSentry','AIModule','UNDEFINED','bddd7723-793f-4cee-860f-aa03ebefc5e8','','',NULL), +(7045,'ANVL_Hornet_F7CS_Mk2_Thruster_Main','MainThruster','FixedThruster','4702bfb7-8c5c-4720-9ada-84f088392687','','',NULL), +(7046,'Carryable_1H_CY_gym_jug_1_a','Misc','UNDEFINED','f515686a-1c69-486e-87fc-d747d1a67630','','',NULL), +(7047,'SHIELDS','ShieldController','UNDEFINED','1b39eead-4f1e-4e89-bdfb-726f1b50cc5e','','',NULL), +(7048,'CNOU_Nomad_Thruster_Retro_Left','ManneuverThruster','FixedThruster','ee18bfee-937d-4335-9782-8bbb314f7700','','',NULL), +(7049,'FullForce Pro','PowerPlant','Power','1dee7b69-d26e-4c02-98cd-f2f5d129134a','','','Item Type: Power Plant\nManufacturer: Lightning Power Ltd.\nSize: 3\nGrade: C\nClass: Civilian\n\nEven though Lightning Power Ltd has updated the look of the FullForce Pro power plant, it still delivers that same balanced performance people have come to expect.'), +(7050,'Door Control','ControlPanel','DoorPart','483b1731-2ab3-4eb9-9a82-a856166001bc','','',NULL), +(7051,'MISC_Starfarer_Gemini_Bump_Seat','Usable','UNDEFINED','5a4915d1-0a32-420c-8873-14074a9d1a56','','',NULL), +(7052,'TRGT. STATUS','Seat','UNDEFINED','9fc18f3f-8512-4251-b706-e889e7ffb471','','',NULL), +(7053,'RSI_Hermes_Thruster_Mav_Top','ManneuverThruster','FixedThruster','e0acf15e-c651-482c-b098-4c660162bade','','',NULL), +(7054,'Reliant Samos Sensor Suite','Turret','GunTurret','a587ba9e-7cc9-49c8-bf63-d6bae4a8a9b8','','','Item Type: Sensor Suite\nManufacturer: MISC\nSize: 4\n\nStandard on the Reliant Sen, the Samos sensor suite was designed to aid in the discovery and study of space phenomena.'), +(7055,'Geist Armor Helmet','Armor','Helmet','fe6ecbc9-a063-4c1c-9249-d3203aa08619','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(7056,'AirlockTerminalStatusScreen','StatusScreen','AirlockPart','74642729-0ea0-42a8-9719-090fc363bdc3','','',NULL), +(7057,'Hellion Scattergun','Weapon','Gun','c7c36fea-dcf5-48b9-9939-bf2771f9f8f4','','','Manufacturer: Apocalypse Arms\nItem Type: Ballistic Scattergun\nSize: 2\n\nApocalypse Arms\' Hellion is a size two scattergun that saturates targets with ballistic ammo in close quarters. The gun\'s smart ammo functionality allows it to switch between standard and specialty rounds.'), +(7058,'ESPR_Talon_Thruster_Mav_Lateral','ManneuverThruster','JointThruster','aaff2e56-ca2a-4163-99c3-b415b00c63fc','','',NULL), +(7059,'Renegade Cut Vest (Modified)','Char_Clothing_Torso_1','UNDEFINED','e9231761-516a-43f2-a06b-03a167cbcd3a','','','Carrying Capacity: 1K µSCU\n\nThis version of the Renegade Cut vest has been modified from its original form. Reveal your inner rebel with the Renegade Cut vest, featuring a wide notched lapel and metal studs on the left shoulder. High quality synthetic leather and an insulated lining give the vest both comfort and style.'), +(7060,'Ammonia','Cargo','Cargo','afa96ede-0c20-4e38-829b-872b5fbde02f','','',NULL), +(7061,'Maze','Cargo','Cargo','4f2ea31e-0d59-4305-b520-b2d0cdbaaa9f','','',NULL), +(7062,'Utensil_Plate_Chanadaltadka','Misc','UNDEFINED','904bbcc3-1900-49cd-9a44-cde064467512','','',NULL), +(7063,'Flight Blade','FlightController','UNDEFINED','415471b4-fc53-4e52-86e0-8153664ab328','','',NULL), +(7064,'Walesko','FPS_Consumable','Hacking','8c632754-3e85-42bd-b393-b072c6410808','','','Instructions for how to build this simple cryptokey were first published publicly in 2887 by political activist Aris Walesko who had hoped that it would lead to greater governmental transparency. Though not up to the standards of most modern security protocols, this slow and unreliable device it is still in use today owing to its ease of construction and wide availability from numerous small manufacturers.'), +(7065,'ANVL_Hornet_F7_Mk2_Thruster_Main','MainThruster','FixedThruster','424c7706-b566-4a7d-a4bc-8ec1ec33c895','','',NULL), +(7066,'MTC Baracus Livery','Paints','UNDEFINED','97132163-0353-4ecc-86d6-b431474bfb60','','','Bold red highlights add a bit of color and break up the black base paint of the MTC Baracus livery, which can also be applied to other Greycat M-Series vehicles.'), +(7067,'Wrecker Core Ashen','Armor','Torso','6aa55505-c56a-4d5e-8a43-3987fdeb90f4','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: All\n\nFavored by the most brutal of hunters, the Wrecker armor is a fusion of discarded metal and pilfered fabric cobbled together to offer protection while stalking prey.\n\nThe Ashen version is sprayed with white paint and anointed with bone fragments and Vanduul armor pieces.'), +(7068,'SHIELDS','ShieldController','UNDEFINED','610d29ff-5c45-4b52-8a26-6fe206abca89','','',NULL), +(7069,'Golem Sunstruck Livery','Paints','UNDEFINED','d5a48459-4b61-431b-af35-25ca8aa224f4','','','Yellow and white highlights atop a grey base paint gives the Golem a distinct look thanks to the Sunstruck livery.'), +(7070,'SalvageFillerStation_ARGO_MOTH_Left','SalvageFillerStation','UNDEFINED','7e47570a-6dee-4ecc-9f96-ca07ac08e0a5','','',NULL), +(7071,'Door','Door','UNDEFINED','44383f93-a44a-4e77-8714-7a338020e592','','',NULL), +(7072,'Atavi Shirt \"Pathfinder\"','Char_Clothing_Torso_0','UNDEFINED','fde88d59-a8ef-42ec-ac77-c440103a1938','','','MuyMuy\'s Atavi line of casual shirts are comfortable enough to wear at home, but stylish enough for a night out. They are made with EasyCare technology to maintain the colors during repeated washes.'), +(7073,'Carryable_2H_CY_container_ore_1_short_b','Misc','UNDEFINED','2feeedd9-57e3-4186-acaa-b5ff5b246610','','',NULL), +(7074,'fruit_plant_1_b_3003','Misc','UNDEFINED','c529b2e0-973c-468d-ba9f-e0960ba48450','','',NULL), +(7075,'display_components_pallet_125x125x025_a','ShopDisplay','UNDEFINED','5ea48cea-c0e8-4338-9252-df931ffac4ef','','',NULL), +(7076,'Bed_Blanket_AEGS','Usable','UNDEFINED','022b3a95-48c3-407f-9bae-adce6dae9cdc','','',NULL), +(7077,'fruit_plant_1_b_2003','Misc','UNDEFINED','03598bbe-853f-4f4e-8a89-b90688f95882','','',NULL), +(7078,'ARMR_MISC_Razor_LX','Armor','Medium','ed22365a-fd55-40c6-8f8d-3b63a9527b7e','','',NULL), +(7079,'Buccaneer Ghoulish Green Livery','Paints','UNDEFINED','5f081514-6ad3-4575-a3e9-14bfe5662043','','','Embrace Day of the Vara mischievousness and mayhem any time of the year with this custom Buccaneer livery. It combines metallic green and black for a striking look that highlights the holiday\'s classic colors.'), +(7080,'Ammonia','Cargo','Cargo','107a00bb-1576-4a62-981a-8e9206e914de','','',NULL), +(7081,'CitizenCon 2954 Storage Chest','InventoryContainer','Cargo','f997c5ec-51a7-4f5b-8e42-d3ec66d8db5a','','','Bring home too many keepsakes and memorabilia from the 2954 CitizenCon? Then this functional chest featuring the blue event logo is the perfect storage solution for your hab or hangar.'), +(7082,'OMNI-AFS-Sapphire Armored Flight Suit','Armor','Undersuit','812ede0a-2b62-4d08-ae64-b2e6ab480845','','','Item Type: Armored Flight Suit\nDamage Reduction: 20%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nInspired by the armored flight suit worn by UEE Navy pilots, the OMNI-AFS-Sapphire has been battle tested and refined for centuries to become the ultimate wear for any pilot. Its sturdy yet comfortable construction can not only withstand hostile environments, but comes with integrated arm, core, and leg armor for combat encounters. The only way a pilot can get closer to the real thing is by enlisting.'), +(7083,'MASTER_screen_16x9_5_0094x0054_a','Display','UNDEFINED','51619216-1415-4ad1-ab32-659e0bd0f4cf','','',NULL), +(7084,'TRGT. STATUS','Seat','UNDEFINED','cd9e9668-5fbd-4684-b8f3-e0104ab1c347','','',NULL), +(7085,'Manned Turret','TurretBase','MannedTurret','2228584b-0def-4713-8b40-1a9685f9a444','','',NULL), +(7086,'Antium Helmet Storm','Armor','Helmet','11c7bd0d-8194-4c77-841f-154bf7cb3e7a','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -85 / 115 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(7087,'Argon','Cargo','Cargo','8fab527e-d27b-4746-8e22-bf1971b5768f','','',NULL), +(7088,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','64fc3736-99ad-4997-b436-e2acaa4bcf57','','','Aegis Gladius - Decoy Launcher'), +(7089,'Reno Work Vest','Char_Clothing_Torso_1','UNDEFINED','b2ed41ec-d581-4104-8a1e-ebf019d3c1a7','','','Carrying Capacity: 1K µSCU\n\nThe Reno work vest was crafted by Habidash from durable synth-leather cut in a bold asymmetric patchwork pattern, and features a secure double-clasp with reinforced armholes to extend the longevity of the garment.'), +(7090,'Salvaged Skull Couch','Usable','Cargo','e64fbbd8-4562-4a4b-a9ab-afa65a808af3','','','Why risk your reputation as a serious outlaw by sitting on anything but the most hardcore of couches? Featuring hand-printed skulls and make-shift repairs, this couch will have your guests saying, “this person is definitely a criminal.”'), +(7091,'Door Control','Door','UNDEFINED','c1628a02-8732-4d13-9ccd-5d303473ac9b','','',NULL), +(7092,'MISC_Freelancer_Thruster_Main_Right','MainThruster','FixedThruster','ac5494ac-bc5e-4312-bcbd-258fd051967b','','',NULL), +(7093,'ToolSafe Vest Falstaff','Char_Clothing_Torso_1','UNDEFINED','fadac319-4aa4-4f3e-9c1e-a147f18f5ad4','','','Carrying Capacity: 10000 µSCU\n\nThe ToolSafe Vest is constructed with thick materials accentuated by high-visibility straps to ensure worker safety. The inclusion of numerous pouches gives this jacket a generous amount of storage to make it a staple of worksites everywhere.'), +(7094,'ControlPanel_Screen_RoomControl','ControlPanel','DoorPart','4322e286-ac50-4ae8-857a-f5b928546165','','',NULL), +(7095,'G-2 Helmet Greycat Edition','Armor','Helmet','3ebf0955-87bb-42eb-9a0a-74b5357f39c5','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. The Greycat Edition was made specifically for the company.'), +(7096,'SmartGen','PowerPlant','Power','39e271e4-e9f4-421d-9673-063726b72c8b','','','Item Type: Power Plant\nManufacturer: Amon & Reese Co.\nSize: 3\nGrade: D\nClass: Military\n\nThe no-frills SmartGen is A&R’s entry-level large power plant that delivers solid performance for the price.'), +(7097,'AEGS_Retaliator_Thruster_Mav_Joint_01','ManneuverThruster','FixedThruster','de67e988-b542-40f3-bf54-2fc5eba4d47f','','',NULL), +(7098,'Pulse Auspicious Red Livery','Paints','UNDEFINED','0c963d33-44f1-4ed8-9c55-f3c2efa617d1','','','The Auspicious Red livery brings a bold red base paint and striking gold accents to the Pulse.'), +(7099,'ORIG_100i_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','d1e01206-8649-452b-a629-4394d5647795','','',NULL), +(7100,'DRAK_Caterpillar_SCItem_Seat_SupportLeft','Seat','UNDEFINED','db562aa4-13aa-4e1e-bc99-69185af6c9f3','','',NULL), +(7101,'Controller_Salvage_ARGO_MOTH_ToolArm','SalvageController','UNDEFINED','b9b21470-d973-4b8a-aa55-3b5a42506e88','','',NULL), +(7102,'MISC_Razor_EX_Thruster_Lateral','ManneuverThruster','FixedThruster','8c64554e-0382-4310-b511-fad31345d9a5','','',NULL), +(7103,'Seat','Usable','UNDEFINED','16ca300c-9b2a-420e-ae49-af58245a594e','','',NULL), +(7104,'ClipVest Work Harness Green','Char_Clothing_Torso_1','UNDEFINED','431ce947-1df1-482f-b227-d096cfd0cfbf','','','Carrying Capacity: 2K µSCU\n\nStegman\'s ClipVest is a multi-purpose work harness that keeps your tools handy when and where you need them. Built from industrial strength materials, this harness offers a back piece to help alleviate strain and provide counterbalance.'), +(7105,'Counter_Klim','Usable','UNDEFINED','87eca279-ceda-40cf-b4ac-54e5762bef5e','','',NULL), +(7106,'Ati Jacket Tan','Char_Clothing_Torso_1','UNDEFINED','0ecb635a-7234-474a-a39d-9dff366683d6','','','Carrying Capacity: 2K µSCU\n\nFiore\'s is a modern update of traditional Earth design. Slim tailoring, a high collar, and striking asymmetrical design make this overcoat a must-have item for any wardrobe.'), +(7107,'FBL-8a Core Arctic Digital','Armor','Torso','1c25ab55-8414-44e8-bca3-286d83d8e25d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -32 / 62 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nCDS\'s quest to create the ideal light armor continues with the FBL-8a. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible.'), +(7108,'JOKR_DistortionCannon_FiringMechanism_S3','WeaponAttachment','FiringMechanism','62494280-cf60-46f4-819e-eb2fc76a6c60','','',NULL), +(7109,'Clipper Firewall Livery','Paints','UNDEFINED','1e58433e-00ef-49d2-b126-cc99c016baff','','','The Firewall livery brings a bold and brash red appearance to the Clipper.'), +(7110,'CBH-3 Helmet Tan','Armor','Helmet','f5b4bf5c-5cf4-48e3-b421-f592f6cecff5','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. Visor is AR crosshair compatible.'), +(7111,'ANVL_Hornet_F7A_Mk1_Thruster_Main','MainThruster','FixedThruster','ad5a3583-5a04-48c8-a322-91139381ac1b','','',NULL), +(7112,'G-2 Helmet Dark Red','Armor','Helmet','30f07ea7-ccd2-4afd-8c20-11c6cb660d1f','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. Visor is AR crosshair compatible.'), +(7113,'GVSR Repeater','Weapon','Gun','5f37d7dd-8d94-465e-a4c4-da78bd3941d8','','','Manufacturer: Behring\nItem Type: Laser Repeater\nSize: 2\n\nAegis commissioned Behring to design a laser repeater specifically for their Vanguard line-up. The result was the GVSR, which met Aegis exacting standards by delivering a steady rate of fire without overtaxing the ship\'s power plant.'), +(7114,'ParaMed \"AA Defense\" Medical Device','Weapon','Small','57550dfd-73c5-46ad-a509-f43957a8c1a9','','','Manufacturer: CureLife\nItem Type: Medical Device\n\nThe ParaMed from CureLife is a professional-grade emergency medical device designed to stabilize patients suffering from possible life-threatening injuries. Offering extremely accurate diagnostics and dosing, the ParaMed can treat more patients and offer longer relief with less risk of overdose.\n\nThe AA Defense edition features a gray, urban camo pattern and was intended for those who assisted Alliance Aid\'s Defense Division during Levski\'s time of need.'), +(7115,'DRAK_Cutlass_Red_Thruster_Maneuver_Bottom','ManneuverThruster','JointThruster','04df1775-76c0-4adf-85f5-a57f69532e8d','','',NULL), +(7116,'RSI_Aurora_Mk2_Dashboard_Btn_Wings','AttachedPart','UNDEFINED','057c038b-9f13-4456-a738-44b01068c575','','',NULL), +(7117,'VariPuck S7 Gimbal Mount','Turret','GunTurret','e405f0a1-c1c2-46d1-80cf-b0a51acc313f','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 7\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. This special VariPuck will accept any weapon the same size as the hardpoint it is mounting to.'), +(7118,'Zelena Pants Conifer and Bisbee Boots','Char_Clothing_Legs','UNDEFINED','70806b7a-1693-420d-bd84-9aa94b62b1aa','','','Carrying Capacity: 1K µSCU\n\nStay warm and dry on rainy days in the Zelena pants and the Bisbee boots. Both made with water-repellant materials and built-in sweat-wicking technology, they\'ll be your go-to choice for adventures on even the most hostile worlds.'), +(7119,'Carrion Arms Maniac','Armor','Arms','f5a0c671-44b4-4940-91e7-3f6ba0c2d84b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nForged from scavenged metals and ragged clothes, the Carrion armor is a crude concoction of repurposed materials that demonstrates you\'ll do anything it takes to survive.\n\nThe Maniac variant comes with a mid-length cape and integrates bones prominently into several pieces.'), +(7120,'F8 Lightning Nightweaver Livery','Paints','UNDEFINED','27581f33-45ec-467f-b92b-14961892e5d9','','','Bring a distinct look to the F8 Lightning with the Nightweaver livery. It features a black fuselage intersected by green highlights in a unique and irregular pattern.'), +(7121,'Oracle Helmet Firebrick','Armor','Helmet','8bd6634f-b34a-4e31-b2c5-6e2b792b55f4','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(7122,'RSI_Zeus_CL_Thruster_Retro_Left','ManneuverThruster','Retro','b136f052-08cc-454b-84c4-f52d405dc350','','',NULL), +(7123,'Seat','SeatAccess','UNDEFINED','05201ed6-445c-472b-b13a-40c4845a79db','','',NULL), +(7124,'RSI Constellation Side Missile Rack','MissileLauncher','MissileRack','d92f158b-ec14-4203-91f6-c4314b805c18','','','RSI Constellation Side Missile Rack'), +(7125,'Detatrine','Cargo','Cargo','1d391027-d353-4b0b-8776-dc69074c3046','','','Refined from the natural toxin found within the rare detatium fruit, this chemical has numerous medical applications.'), +(7126,'Auditor Pants Grey','Char_Clothing_Legs','UNDEFINED','e87171f9-44da-4cdd-8a19-5696da72d1e5','','','Carrying Capacity: 1K µSCU\n\nThe Auditor is Octagon\'s top rated line of tactical dress pants. The Auditor\'s unique double-weave fibers allow for increased durability when action calls while its modern-cut, flat-front design disappears easily into the crowd. The Auditor also features an attached belt crafted from synthetic leather.'), +(7127,'Wrecker Core Payback','Armor','Torso','a99040ab-1325-4844-83c2-4672a15e9ef7','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: All\n\nFavored by the most brutal of hunters, the Wrecker armor is a fusion of discarded metal and pilfered fabric cobbled together to offer protection while stalking prey.\n\nThe Payback version is sprayed with red paint and anointed with bone fragments and Vanduul armor pieces.'), +(7128,'DoorDefaultPowered','Door','UNDEFINED','9fa4ce13-6d49-40fd-a01f-0c4f82e0c5cb','','',NULL), +(7129,'Landlite Boots White','Char_Clothing_Feet','UNDEFINED','9414b128-c814-4e70-bac2-39c79704975f','','','Who says work boots can\'t be comfortable? Grindstone\'s Landlite boots are built with a breathable synth-leather material to keep your feet dry, a contoured, memory footbed, and a slip-resistant outsole, making it perfect for whatever worksite you throw at it.'), +(7130,'ANVL_Lightning_F8_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','8b1bee89-8ee1-49a9-998e-9f4d6f28fa30','','',NULL), +(7131,'MPUV-1T PHB Flight Blade','FlightController','UNDEFINED','b34f33bd-7df5-4bfb-b1e5-8297ddd5e0cc','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Argo MPUV-1T with the PHB Flight Blade from Broad & Rabiee. By re-allocating forward thrust resources, you can expect your ship deliver increased precision handling during tight maneuvers.'), +(7132,'m_human_mannequin_base_armor_Collector_HeavyCombatArmor','ShopDisplay','UNDEFINED','5a57a60b-86c5-41e9-bff5-c35e2a7cf5c1','','',NULL), +(7133,'Paint_300_Seat_Brown','Misc','UNDEFINED','89df7f80-334d-40fe-b542-0444ad6239b3','','',NULL), +(7134,'AEGS_Redeemer_Thruster_Mav','ManneuverThruster','JointThruster','7c47d98f-96a2-48fd-b67d-73153108c01b','','',NULL), +(7135,'XNAA_SanTokYai_Gills','AttachedPart','UNDEFINED','05d5e917-3073-4958-ad82-766fa6f15690','','',NULL), +(7136,'Deadhead Helmet','Armor','Helmet','7260707d-323d-4bb6-b0fa-a289337774e7','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\n\nRemind your enemies that death is coming with the Deadhead helmet. In place of a visor, the ghastly visage of a Human skull, lit from within by an infernal glow, is sure to send any opponent running.'), +(7137,'Deadhead Helmet Windfall','Armor','Helmet','660d1512-7078-4dc2-9d05-e58b0321e44e','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\n\nRemind your enemies that death is coming with the Deadhead helmet. In place of a visor, the ghastly visage of a Human skull, lit from within by an infernal glow, is sure to send any opponent running.'), +(7138,'ORIG_100i_Intake','Misc','UNDEFINED','242d2b79-acee-4052-b957-ec3a2cd1febd','','',NULL), +(7139,'Deadhead Helmet Lucky Break','Armor','Helmet','33896834-653b-4d20-ab5c-336f50956ce5','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\n\nRemind your enemies that death is coming with the Deadhead helmet. In place of a visor, the ghastly visage of a Human skull, lit from within by an infernal glow, is sure to send any opponent running.'), +(7140,'890 Jump Penumbra Livery','Paints','UNDEFINED','bc0c7bfb-1b14-4c45-b407-9a39c1c296f3','','','Inky black and shimmering gold combine for the Penumbra livery, making it an elegant option for the 890 Jump.'), +(7141,'Door','Door','UNDEFINED','3e916022-cea9-4213-b3f2-b5242e75c008','','',NULL), +(7142,'Detatrine','Cargo','Cargo','c2c2840f-84f5-47c6-a4f8-6a14104c4330','','','Refined from the natural toxin found within the rare detatium fruit, this chemical has numerous medical applications.'), +(7143,'XIAN_Scout_Thruster_Main','MainThruster','JointThruster','508f3f08-bee9-46dc-8f10-457e752aad93','','',NULL), +(7144,'BEHR_LaserCannon_Ventilation_S5','WeaponAttachment','Ventilation','99011ee7-d883-46bd-b75f-48708073ecd1','','',NULL), +(7145,'Weapon_Rack_AEGS_11slots','Usable','UNDEFINED','cf460047-0605-488e-b994-259b43d8ed54','','',NULL), +(7146,'mobiGlas Original Casing','MobiGlas','Personal','555a13e6-8c31-428d-b0fd-a5e9782b35f1','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(7147,'Manned Turret','TurretBase','MannedTurret','7b96c8ad-13c8-4055-95ea-04a33a9aabef','','',NULL), +(7148,'Bed','Usable','UNDEFINED','0bafdeac-d152-4f0f-beef-b4fe0333eb42','','',NULL), +(7149,'Beacon Undersuit Pink/White','Armor','Undersuit','8abd144f-90ac-4039-9b28-64704499b058','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRSI\'s Beacon undersuit is a general use utility designed to provide total protection against environments and vacuum. Built out of a durable but flexible polymers, the Beacon provides a wide freedom of motion for a variety of body types.'), +(7150,'Seat','Usable','UNDEFINED','c21f4987-5372-4e2e-9971-def5ef015b71','','',NULL), +(7151,'Ponos Boots Aqua','Char_Clothing_Feet','UNDEFINED','879b619e-05e1-4f2c-9f37-f6158fa7321b','','','Quite simply, R6 Pro\'s Ponos boots were built for backbreaking work. Constructed out of Thermosulate technology, these waterproof and insulated workboots are rated for sub-arctic environments while the composite outsole ignores hazards to maintain traction when you need it most.'), +(7152,'Enter Atmosphere 2956 Poster','Misc','Utility','9089f698-e3ed-4781-93af-e40a5685e901','','','Show your pride for the 2956 Enter Atmosphere competition with this wall display featuring an Aegis Gladius flying against the event\'s colors.'), +(7153,'Remote Turret','Turret','GunTurret','07842740-cfcf-420f-ba8c-0750fbc193b4','','','Remote Turret'), +(7154,'Ana Core Endro','Armor','Torso','b461e2c0-5f5a-4f1f-b119-4e92bbb3df1c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nThis Antium Armor was modified from its original version. Carefully-selected fangs and bones were mounted to the set to give it a primal look.'), +(7155,'Aslarite (Raw)','Cargo','Cargo','4b2a0236-84de-45cb-a36b-3ad038977428','','',NULL), +(7156,'Atzkav \"Deadeye\" Sniper Rifle','Weapon','Medium','6ab71d2c-e0a4-4875-92a1-6cf90b746532','','','Manufacturer: Lightning Bolt Co. \nItem Type: Sniper Rifle\nClass: Electron\n\nBattery Size: 5\nRate Of Fire: 30 rpm\nEffective Range: 150m+\n\nAttachments: Optics (S3), Underbarrel (S2)\n\nThe Atzkav is a unique precision sniper rifle from Lightning Bolt Co. Once the charging handle is engaged, it accurately fires a charged electron to deal significant energy damage that spreads to nearby conductive targets. This special pulse effect also leaves a residual charge in the strike area that increases damage delivered by subsequent electron shots. Alongside the rifle\'s special firing capabilities, the Atzkav is best known for its distinct barrel that crackles with energy when powering its next shot. The exclusive Deadeye edition is black with gold highlights.'), +(7157,'Citadel Core Ignitor','Armor','Torso','282f92f8-1bda-41d2-9ba6-b4b5eee4dd57','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(7158,'Combat Supplies','Cargo','Cargo','69936b1a-1b1e-4006-91d5-809555cc1c43','','','A variety of items assembled to support combat forces, such as ammunition, structural repair tools and clothing.'), +(7159,'RSI_Scorpius_Spine','Misc','UNDEFINED','3d96ccac-f068-471e-90fd-856c02204934','','',NULL), +(7160,'Fotia Seedpod','Cargo','Cargo','21c1feda-35e4-4829-aa85-5d7532fc9597','','',NULL), +(7161,'Flight Blade','FlightController','UNDEFINED','d6862f39-3bc6-4763-b5ac-1e375493eed4','','',NULL), +(7162,'Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','f1f31581-14a7-4b31-b00c-ad30ff567bff','','','Live in comfort with MuyMuy\'s Davlos line of cotton-synthetic shirts. The durable, yet soft, fabric contains a patented SweatGuard technology that not only whisks away perspiration but helps prevent stains.'), +(7163,'Consolidated Outland T-Shirt','Char_Clothing_Torso_0','UNDEFINED','493e6e61-96e7-47b9-9961-03c911c36e33','','','Silas Koerner founded Consolidated Outland to push the boundaries of modern spacecraft design. Celebrate his ambition with this dark grey t-shirt featuring the company\'s logo.'), +(7164,'AEGS_Retaliator_Door_Cap_Rear','Misc','UNDEFINED','1d954c41-d91c-4791-aab6-8eac99aa6b5d','','',NULL), +(7165,'CSP-68L Backpack Forest Camo','Armor','Backpack','77080f6f-e3d0-434a-b43b-1b5d5c99e06f','','','Item Type: Light Backpack\nCarrying Capacity: 54K µSCU\nCore Compatibility: All\n\nBe ready for any situation with the CSP-68L Backpack. Originally designed for the rigors of combat support, this light backpack has become popular thanks to its durability and patented core connector that helps the CSP-68L sit comfortably and balanced on the back. The Forest Camo edition features a special digital green camo pattern with silver highlights.'), +(7166,'Weapon_Rack_RSI_Perseus_19_Slot','Usable','UNDEFINED','60e9e8ee-495c-42f5-af44-7ef2903f8df3','','',NULL), +(7167,'TRGT. STATUS','Seat','UNDEFINED','a93b8b8b-b42c-485b-b147-3f0e21acf69b','','',NULL), +(7168,'Door Control','Door','UNDEFINED','e251346f-49c4-4d94-ae06-2c957b2ff2e5','','',NULL), +(7169,'Antium Arms Storm','Armor','Arms','05304794-a87c-4a00-8517-6a0470c898f9','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(7170,'ARGO_ATLS_PowerSuit_SCItem_Dashboard','SeatDashboard','UNDEFINED','b8340787-1655-45c0-a5bd-4b76fb960157','','',NULL), +(7171,'Year of the Ram Envelope','Misc','UNDEFINED','7292474d-5af7-4e86-8e47-cc6018c56696','','','A gilded red envelope celebrating the Year of the Ram. Exchanging these envelopes is one of the most popular ways of celebrating Red Festival. Often the envelope may include a small amount of credits inside to help those you care about have a strong start in the upcoming cycle. Growing in popularity is the newer tradition of hiding the envelopes as a way of spreading good fortune and prosperity to those that fate has deemed in need.'), +(7172,'display_1m_a_centermass_1port','ShopDisplay','Default','6203b3ea-a308-446c-ad6e-7b01f9cd7386','','',NULL), +(7173,'volume_head_01','Armor','Undersuit','a9c6cb88-96a4-4002-9739-831ee16296af','','','@LOC_PLACEHOLDER'), +(7174,'fruit_plant_3_a_6003','Misc','UNDEFINED','5766f155-130a-403f-b193-cba98d485537','','',NULL), +(7175,'fruit_plant_3_a_5003','Misc','UNDEFINED','d32eacc8-40eb-42f3-8335-3c6b7e212a8f','','',NULL), +(7176,'G-2 Helmet Hurston Edition','Armor','Helmet','7ec912bd-9b83-40ea-9f5d-9067d535b207','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. The Hurston Edition was made specifically for the company\'s security services.'), +(7177,'fruit_plant_3_a_4003','Misc','UNDEFINED','e6487135-83be-472d-b448-dcb09dc9721c','','',NULL), +(7178,'Taftan Boots Olive','Char_Clothing_Feet','UNDEFINED','309dec09-79be-4819-b9c0-6267e182d307','','','Strong, practical, and stylish, these high-cut boots with reinforced straps will be just the thing you need for those long outdoor treks. The slip- and abrasion-resistant soles were constructed from a proprietary composite of recycled plastic and rubber to improve traction without sacrificing flexibility.'), +(7179,'fruit_plant_3_a_3003','Misc','UNDEFINED','3993f0b0-2fc7-4042-be7d-34b2e3b27c50','','',NULL), +(7180,'fruit_plant_3_a_2003','Misc','UNDEFINED','f9a7901a-1752-4a97-b435-bae4c6293240','','',NULL), +(7181,'AEGS_Retaliator_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','b023f8cf-10b0-448f-ad5b-fca49f5de2c5','','',NULL), +(7182,'Toughlife Boots Red','Char_Clothing_Feet','UNDEFINED','af450721-ef5a-439b-9e1c-1535b2172d6a','','','Grindstone\'s done it again. The Toughlife is an all-purpose workboot designed to provide comfort, durability and quality. Featuring a reinforced composite toe and lasercut sole to maximize traction on all surfaces, Toughlife is sure to be your dependable boot, day in and day out.'), +(7183,'AEGS_Vanguard_Hoplite_Baydoor','Misc','UNDEFINED','5a4ffbdc-65b6-4c67-9bd0-0f89527f30c0','','',NULL), +(7184,'Morozov-SH Arms Aftershock','Armor','Arms','44e11ae3-a90c-4fb0-8409-c1311111baf7','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(7185,'Devoue','Radar','MidRangeRadar','b3b162b0-e1ac-433c-961b-9494790344d4','','','Item Type: Radar\nManufacturer: Groupe Nouveau Paradigme\nSize: 3\nGrade: B\nClass: Military\n\nThe Devoue radar is able to render nearby energy emissions accurately and quickly, allowing you to retain control even in the most dire situations.'), +(7186,'OverDrive','PowerPlant','Power','13880fbe-7295-4f55-886d-251ad01e2677','','','Item Type: Power Plant\nManufacturer: Amon & Reese Co.\nSize: 1\nGrade: C\nClass: Military\n\nAmon & Reese knows from years of experience just how hard the military can push their ships. Their OverDrive power plant was designed from the ground up to not only handle those tough conditions with less overheating, but to provide the same dependability and power to civilians as well.'), +(7187,'Door_Concertina_AEGS_Toilet','Usable','UNDEFINED','e4f09ab6-d66e-4cb3-89b7-b118bb45e5d1','','',NULL), +(7188,'Bed','Usable','UNDEFINED','61f120f0-e006-4f40-9e31-cd5144c847d0','','',NULL), +(7189,'Internal Tank','FuelTank','Fuel','67120dba-14ff-4bac-a386-7f172479b668','','',NULL), +(7190,'Personal Storage','Cargo','UNDEFINED','9612dbaa-fec6-4d99-88ab-bd0067b30048','','',NULL), +(7191,'Cyan QuikFlarePro','Weapon','Grenade','0c95b32a-568e-4ad8-87df-304a4dad67b4','','','Manufacturer: Shubin Interstellar\n\nIlluminate the way forward or signal for help with the Cyan QuikFlarePro from Shubin Interstellar. For centuries, miners have counted on this flare as part of their core toolkit, thanks to its tried and true design and durability that ensures it stays ablaze in the various harsh weather and difficult atmospheric conditions encountered across the \'verse. The QuikFlarePro uses advanced tech to glow longer than regular flares.'), +(7192,'MISC_Hull_C_Thruster_Retro_Small','ManneuverThruster','FixedThruster','7fcbc381-7e91-4b00-9a0c-75cd0d428592','','',NULL), +(7193,'Seat','Usable','UNDEFINED','9a9b630e-792a-4e29-9cba-96b0ba0cd975','','',NULL), +(7194,'Flight Blade','FlightController','UNDEFINED','867a60e0-ac75-4dbf-ab3c-7c1c2263d737','','',NULL), +(7195,'AEGS_Javelin_Thruster_Mav_Joint_02_Invulnerable','ManneuverThruster','JointThruster','9b2c9bee-6379-4176-ac35-98a405b36780','','',NULL), +(7196,'Cliffback T-Shirt Purple','Char_Clothing_Torso_0','UNDEFINED','4e0ad41d-d313-4170-84bd-0ff528429af5','','','Alejo Brothers\' classic loop tee with a spatter pattern.'), +(7197,'Ripper SMG','Weapon','Medium','6defe8cd-0894-4377-8fd0-2384b2109d70','','','Manufacturer: Unknown\nItem Type: SMG\nClass: Energy (Laser)\n\nBattery Size: 60\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nScrapped together from whatever parts and pieces were available, the Ripper SMG can probably do enough damage to get you out of a tight spot. Just be ready for things to get messy.'), +(7198,'Seat','SeatAccess','UNDEFINED','782cb016-3aa3-4e89-ab5f-07e6e46b5f82','','',NULL), +(7199,'Piercings_ball_01','Char_Head_Piercings','UNDEFINED','a2605c16-3dc7-49d5-a628-7da9d190bd92','','',NULL), +(7200,'Tin','Food','Tin','4e8154da-02cb-49e1-a694-a2933e9f1bf2','','',NULL), +(7201,'Ares Star Fighter Deadlock Camo Livery','Paints','UNDEFINED','88f204a0-852f-4dc5-9ca9-9dbc03076be3','','','Disguise the silhouette of the Ares Star Fighter with the Deadlock Camo livery, featuring a grey camo pattern with yellow highlights.'), +(7202,'GSX-RF','ExternalFuelTank','UNDEFINED','43352b7a-8750-4963-ad67-c0f610f968cd','','','Manufacturer: Stor*All\nItem Type: Fuel Pod\nFlow Rate: 1.5 SCU/s\nCapacity: 50 SCU\n\nWhen it comes to balancing your bottom line, time is money. That’s why Stor*All designed the GSX-RF fuel pod to have one of the fastest flow rates on the market. While it does have a slightly reduced capacity, the time saved and modest improvements to the safe flow rate makes this an ideal solution for service ships.'), +(7203,'fruit_plant_1_a_3003','Misc','UNDEFINED','63e2bc62-a46d-46f5-9808-5abe4251553a','','',NULL), +(7204,'fruit_plant_1_a_2003','Misc','UNDEFINED','2b1c8145-6109-4f48-9d1e-f31153923caa','','',NULL), +(7205,'fruit_plant_1_a_5003','Misc','UNDEFINED','2b029fe7-84bf-41cb-b7b3-405e38597348','','',NULL), +(7206,'un_can_drink_2_h','Misc','UNDEFINED','4d46038b-52f8-4387-97d5-f52277735443','','',NULL), +(7207,'fruit_plant_1_a_4003','Misc','UNDEFINED','044998eb-e094-4b4c-a547-927273a8e367','','',NULL), +(7208,'fruit_plant_1_a_6003','Misc','UNDEFINED','86d4f3e5-4bea-4ea9-b0f0-e2ca542005bd','','',NULL), +(7209,'PT2 (2x Holographic)','WeaponAttachment','IronSight','208281d5-412b-46c3-b0b3-bea4c33bb17c','','','Manufacturer: Behring\nType: Projection \nAttachment Point: Optic\nMagnification: 2x\nZoom: 2x-2.5x\nAim Time: +15%\nSize: 1\n\n\nImprove your combat accuracy with this 2x magnifying sight from Behring. Built with meticulous care and craftsmanship, the PT2 has become an essential optic for everyone from sport shooters to law enforcement professionals.'), +(7210,'Maintenance_Workzone_Down','Usable','UNDEFINED','abc18388-496b-48f0-8e40-8946b17a022b','','',NULL), +(7211,'H_Dashboard_Projector_HUD_ARGO_Mole','Display','UNDEFINED','2c15b107-a71d-4ed9-b845-5908c76a6780','','',NULL), +(7212,'Ventra Gloves','Char_Clothing_Hands','UNDEFINED','df914121-324f-4e45-9eb1-24bb838472d2','','','Keep your hands warm and dry with Fiore\'s Ventra gloves. Microstitching creates a snug, tailored fit to keep you looking stylish and warm.'), +(7213,'CRUS_Starfighter_Energy_Nacelle_Right','Misc','UNDEFINED','c13dcf3e-1df7-4704-86b6-313169b10b86','','',NULL), +(7214,'Quartz (Raw)','Cargo','Cargo','967202d0-e6fb-4762-96d0-1f9b3ce0d803','','',NULL), +(7215,'Asgard Savannah Livery','Paints','UNDEFINED','98c50b9d-7a2d-4917-9da7-53b455ac96dc','','','Make the Asgard green with black and yellow accents with the Savannah livery.'), +(7216,'Door Control','Door','UNDEFINED','684a983b-b985-4852-90cf-58513cf67399','','',NULL), +(7217,'TRGT. STATUS','Seat','UNDEFINED','f381830f-9192-4abc-be06-c1a2facc02e5','','',NULL), +(7218,'cbd_main_hall_display_case_S3','ShopDisplay','Default','b230ecad-9ee9-43ed-bf75-ba69173a75c0','','',NULL), +(7219,'mobiGlas Emerald Casing','MobiGlas','Personal','27a75a80-dcfe-4dfb-89c0-fd426e3c0949','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(7220,'Parvat Jacket Snow Hearth','Char_Clothing_Torso_1','UNDEFINED','7680edb9-a9f1-4595-8c0e-8fe355963510','','','Carrying Capacity: 2K µSCU\n\nWeather the cold with this waterproof and insulated jacket from Escar Limited. Featuring a stylish design and unique dual-layer collar, the Parvat will keep you warm when you need it most.'), +(7221,'Freelancer Stock Missile Rack','MissileLauncher','MissileRack','0bb262d5-a3f6-40ba-a5c3-32ee445327b0','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 4\nMissiles: 8xS1\n\nBehring’s MSD-481 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 4 hardpoint for the reliable and effective launch of eight S1 missiles.'), +(7222,'Anvil Hornet Ghost Mk II Center Cap','Module','UNDEFINED','167138ef-b585-4a7b-8808-a70ba93d0390','','','This special center cap designed for the Hornet Ghost features additional faceted surfaces to potentially help mitigate incoming radar energy.'), +(7223,'DockingTube_Fuel_Ports_Krig_alphawolf','DockingCollar','UNDEFINED','a31d9ef6-de4c-4d9f-ac60-079adc6387ff','','',NULL), +(7224,'rod_torso1_02x01x04_05Ports','ShopDisplay','Default','e0dbb9f5-19db-4e18-b638-46b700135a4c','','',NULL), +(7225,'Aluminum','Cargo','Cargo','93c7aa8d-559b-4f89-9607-8c56ba67c5bb','','',NULL), +(7226,'Apollo Tier 3 Module Left','Module','UNDEFINED','4983357f-cfe5-148f-8573-653efce249a2','','','This module contains 3x Tier 3 medical beds.'), +(7227,'HLX99 Hyperprocessors','Cargo','Cargo','5a4080c9-8647-47d3-bbbe-4e76b58fff37','','',NULL), +(7228,'Seat','SeatAccess','UNDEFINED','45e88f4c-0f97-4e7d-928c-47aa5ec4da54','','',NULL), +(7229,'display_components_vertical_3Ports_s01','ShopDisplay','UNDEFINED','f033afb9-d178-4547-aad6-526612435473','','',NULL), +(7230,'DRAK_Cutlass_Red_Thruster_Maneuver_Outer_Bot','ManneuverThruster','JointThruster','0f59d62e-95b7-4407-bff6-b87e5e3e11f6','','',NULL), +(7231,'PersonalMobiGlas','Display','Personal','661acc55-6b06-4513-b952-3e6837fb7fbe','','',NULL), +(7232,'Aslarite','Cargo','Cargo','b7b399a5-d8bc-4a80-9b58-ca0a5939ae04','','',NULL), +(7233,'Bokto Helmet','Armor','Helmet','ce095413-724c-492b-8e25-7ec2cb532988','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -85 / 115 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nThis Antium Armor was modified from its original version. Carefully-selected fangs and bones were mounted to the set to give it a primal look.'), +(7234,'Pyro RYT \"Bloodline\" Multi-Tool','Weapon','Gadget','921ca4aa-79cb-4039-a877-3d424bb4cbe5','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier.'), +(7235,'Ana Helmet Endro','Armor','Helmet','53741591-226f-4a5f-ab96-f091f1d60d37','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -85 / 115 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nThis Antium Armor was modified from its original version. Carefully-selected fangs and bones were mounted to the set to give it a primal look.'), +(7236,'Ana Helmet Wao','Armor','Helmet','28364e25-63ee-4acc-bf78-d3ae3308cc5b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -85 / 115 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nThis Antium Armor was modified from its original version. Carefully-selected fangs and bones were mounted to the set to give it a primal look.'), +(7237,'Citadel Legs Icefall','Armor','Legs','e6d6521b-e40e-4b56-ab61-3a2a3fa5f7df','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(7238,'Carryable_1H_CY_can_drink_2_a','Misc','UNDEFINED','fb408eb4-3fd1-4b9a-8044-a7178f042b8c','','',NULL), +(7239,'Cyclone Lovestruck Livery','Paints','UNDEFINED','17c91e5c-22f7-483b-a4a8-9ed9359b1c1b','','','Inspired by the colors of Coramor, the Lovestruck livery is a stylish metallic pink and black look for your Cyclone.'), +(7240,'KRIG_P72_Archimedes_Intake','FuelIntake','NoseMounted','ceaa01df-718b-413b-96e4-ce59388ee7d1','','',NULL), +(7241,'K7 Pants Dark Green','Char_Clothing_Legs','UNDEFINED','0edd3669-a5eb-405c-889b-3ce3b4660880','','','Carrying Capacity: 3K µSCU\n\nDMC\'s K7 are an all-purpose cargo pants. Four easy access pockets provide extra storage while the triple-stitched polymer weave fabric is designed to withstand all kinds of weather conditions.'), +(7242,'Filler Station','SalvageFillerStation','UNDEFINED','7b52235d-c4da-4520-891e-00201e1ea277','','',NULL), +(7243,'Steel','Cargo','Cargo','8bb2a949-8347-41c2-afbf-66b63a673e47','','',NULL), +(7244,'Seat','Usable','UNDEFINED','eaae6b3d-4f7c-4019-9529-1eb97513a815','','',NULL), +(7245,'Gold (Ore)','Cargo','Cargo','12fbd7da-3e92-4bd8-ab68-8e81fe50fd42','','',NULL), +(7246,'Gladiator Ship Armor','Armor','Medium','95435a5e-9744-4955-9e3c-a2bac27f6a15','','','Gladiator Ship Armor'), +(7247,'Shipment','Misc','UNDEFINED','f00d1588-4b04-4e95-981d-9bd1d6bfb0c7','','',NULL), +(7248,'Internal Tank','FuelTank','Fuel','e2826550-a68a-4c61-a3de-1e502222c24a','','',NULL), +(7249,'Antium Core Moss Camo','Armor','Torso','cd3e2da2-98cc-48a3-9f75-9bc0ea075858','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(7250,'ARGO_MPUV_Cargo_Pod_Interior','Room','UNDEFINED','2c33586e-24a2-4d3e-bb2b-177cbb997d7e','','',NULL), +(7251,'Scrap','Cargo','Small','e840719a-3e5b-43e2-84ba-db7b0332814f','','','Waste that is ready to be converted into new materials for reuse.'), +(7252,'sw_heavy_helmet','Armor','Helmet','b94c95de-a0c6-40d9-8a5a-9ef35dda95b9','','',NULL), +(7253,'Prospector Dolivine Livery','Paints','UNDEFINED','af85230b-4d9d-4354-8d06-4233e777fe41','','','Sharing the name with a gemstone prized for its beauty and industrial applications, the Dolivine livery blends shades of light green to give your Prospector a unique look.'), +(7254,'AEGS_Javelin_CargoGrid_Hangar','CargoGrid','UNDEFINED','d703ef50-7df6-423b-842b-4f6ca18a5dee','','',NULL), +(7255,'ORIG_85X_Thruster_Mav_Fixed_04_Right','ManneuverThruster','FixedThruster','9b81685b-6b01-4d57-b931-2ab0f5ff0867','','',NULL), +(7256,'m_human_mannequin_marine_undersuit','ShopDisplay','UNDEFINED','f9243eaa-7781-481a-98ff-138156849155','','',NULL), +(7257,'Iodine','Cargo','Small','b829c86c-6ff3-46cd-acbf-3a4fc101907e','','','The heaviest stable halogen. Sublimes from a purple-black metallic solid into a violet gas.'), +(7258,'Torreto Pants Orange','Char_Clothing_Legs','UNDEFINED','6e9b4da7-bcdf-441e-bb81-e5b69297d3ab','','','Carrying Capacity: 0.5K µSCU\n\n987 redefines classic slacks with the Torreto. These mid-rise, straight cut pants incorporate a section of fabric studding along the side seam to provide a pop of personality.'), +(7259,'TRGT. STATUS','Seat','UNDEFINED','7cfe6103-3e2d-4192-a902-4471ed051510','','',NULL), +(7260,'Thermax','Cooler','UNDEFINED','bba050c3-1348-45a8-91c6-73e4ecf5082f','','','Item Type: Cooler\nManufacturer: Juno Starwerk \nSize: 1\nGrade: C\nClass: Industrial\n\nJuno Starwerk has done it again. With the Thermax line of coolers, Juno raised the bar on economical industrial coolers made to fit any budget. These small coolers offer above average performance and durability but without breaking the bank.'), +(7261,'Carryable_utensil_spork','Misc','UNDEFINED','25f98f21-0eba-4b89-b9f6-b5f73280f17f','','',NULL), +(7262,'CargoBox_050x050x050_Tank_Gas_Stacked_2','Cargo','Cargo','69eeec4f-ffb1-4dd1-9ffa-a2b417778658','','',NULL), +(7263,'klim_jumpsuit_01','Char_Clothing_Torso_1','Male','5d2b0685-e0c3-4bcd-8d1b-71fcb5b7fc05','','','@LOC_PLACEHOLDER'), +(7264,'lt_light_flood_2_wall_a','Light','UNDEFINED','76a0d2be-0918-41a9-ad2a-00f12c191741','','',NULL), +(7265,'Lightstrike V Cannon','Weapon','Gun','5eef2a62-013b-4b80-80e4-5198213da1ec','','','Manufacturer: Esperia\nItem Type: Laser Cannon \nSize: 5\n\nThe Lightstrike V takes the attack to distant targets by delivering focused, high damage blasts that will make any aggressor think twice before coming too close. Capable of providing powerful overwatch options during troop deployments or engaging targets in outer space, it\'s easy to see why the Lightstrike V was feared by UPE forces during the First Tevarin War.'), +(7266,'Concept Shirt (Modified)','Char_Clothing_Torso_0','UNDEFINED','11c73427-0a60-41e2-a15d-0f5bf2e0b66f','','','This version of Fiore\'s Concept shirt has been modified from its original form. This crisp, versatile button-front shirt from Fiore is made with cutting edge stain resistant and wrinkle-free technology, guaranteeing that you stay professional at all times.'), +(7267,'Flight Blade','FlightController','UNDEFINED','ab251efb-5dae-4f76-bf40-966598c24f35','','',NULL), +(7268,'Stud','Char_Head_Piercings','UNDEFINED','c3be406b-8fee-47b3-b8a3-d6b0bb227df0','','',NULL), +(7269,'Door_RSI_Polaris_Front_EntranceHatch','Door','UNDEFINED','baa4a101-41a0-4f88-a3ef-818bb7375e09','','',NULL), +(7270,'Internal Tank','FuelTank','Fuel','e767f85a-4ff7-48b0-b9dd-e04f96c2b071','','',NULL), +(7271,'DockingTube_Fuel_Ports_RSI_Salvation','DockingCollar','UNDEFINED','b1e16781-e250-4979-86b1-625b9a7b255e','','',NULL), +(7272,'Torga Shoes','Char_Clothing_Feet','UNDEFINED','cf59794d-9c57-46ff-8367-a78e061c1a63','','','For their simplicity, the Torga shoes are as timeless as they are comfortable. The synthetic leather used in their construction is wear-resistant and sure to keep shining even with only the occasional polish. The line that separates the vamp of the shoe from the rest of the toe draws the eye making this otherwise understated design stand out.'), +(7273,'Carryable_1H_SQ_DataPad_Fluff_StormBreaker_ResearchFacility_Armory','Misc','UNDEFINED','e1bde3e9-0aab-4587-a20a-dab223b433c5','','',NULL), +(7274,'AEGS_Gladius_Thruster_Main','MainThruster','FixedThruster','5d118473-dd82-4182-81a8-3bcf35b8d969','','',NULL), +(7275,'Grav Lev 1','ManneuverThruster','JointThruster','e7941976-1595-427c-94ed-070171a70e1d','','','Grav Lev 1'), +(7276,'Door Control','ControlPanel','DoorPart','dac52783-74a5-41e3-a562-36f79b21e2d7','','',NULL), +(7277,'Lynx Legs Orange','Armor','Legs','a16e9087-8f85-4765-a7c6-732790437727','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(7278,'INTK_CNOU_Mustang_Beta','FuelIntake','Fuel','51bc4450-cb8f-4092-9f98-db0f9ed82fd1','','',NULL), +(7279,'AAT-34 Turret','Turret','MannedTurret','b8aa0117-97ad-4d08-b609-e83df24d55ef','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(7280,'FullSpec-Max','Radar','MidRangeRadar','6bd2ac52-cb7d-43b8-8f92-efe11079d914','','','Item Type: Radar\nManufacturer: Chimera Communications\nSize: 3\nGrade: A\nClass: Industrial\n\nKeep your targets in your sights with the FullSpec-Max radar featuring advanced hard-working systems that excel at identifying potential threats.'), +(7281,'Thlilye Laser Gatling','Weapon','Gun','6e3a862f-d13e-4873-ba34-24f3e554984d','','','Manufacturer: Torral Aggregate\nItem Type: Laser Gatling\nSize: 2\n\nExperience the cutting edge of Xi\'an technology with the Thlilye laser gatling, designed by Torral Aggregate. Made exclusively for the Mirai Pulse, this size 2, fully automatic laser gatling features a lightning-quick rate of fire, making it ideal for close-range battle.'), +(7282,'Daredevil Jacket','Char_Clothing_Torso_1','UNDEFINED','2219397c-3944-4975-b484-72dc84d23ca7','','','Carrying Capacity: 1K µSCU\n\nExpress your attitude with this ultramodern crash jacket from CBD. An asymmetrical front zipper, arm and shoulder straps help provide additional style for this unique piece.'), +(7283,'RSI_Polaris_SeatAccess_TurretSeat_Right','SeatAccess','UNDEFINED','dd774851-4cca-4610-8e5d-7dc8decffb4c','','',NULL), +(7284,'Mushroom Pad Thai','Food','Box','a83b9175-b5f5-4d7c-9346-fa972597749a','','','NDR: 48\nEffects: Hypertrophic, Hypo-Metabolic\n\nRoasted mushrooms pair with vegetables and rice noodles in a sweet and tangy tamarind sauce. Light, but filling.'), +(7285,'Finley the Stormwal Large Luminalia Plushie','Misc','Personal','7209cf96-1620-412e-ae3c-ab3f8094bca9','','','Finley the Stormwal loves Luminalia so much they even gets dressed up for the occasion. This festive and large Finley plushie is decked out in red and green, making them an excellent guest for any Luminalia celebration.'), +(7286,'ht_glass_generic_1_a','Misc','UNDEFINED','1ac893c8-e151-4413-ae53-193a5a198a12','','',NULL), +(7287,'bottle_drink_1_sports_shop_4x5_a','ShopDisplay','Default','ca6be878-396c-47b0-aa6f-7f971b3bcc87','','',NULL), +(7288,'Katla Mask Yellow','Char_Clothing_Hat','UNDEFINED','f2b5d03c-2637-471b-a7c4-fee89d98a33d','','','The Katla mask provides full face coverage from the elements or prying eyes. Oversized eyes provide a wide field of vision and a built-in air filter helps you breathe easy. Please note that this mask is not space-rated and should only be worn in naturally breathable environs.'), +(7289,'Seat','Usable','UNDEFINED','28ec7e7d-624b-4479-9432-4f09c20ce308','','',NULL), +(7290,'ADP Arms Hurston Edition','Armor','Arms','f25afa5d-1fca-4343-bab9-f7578fcf99fc','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor. The Hurston Edition was made specifically for the company\'s security services.'), +(7291,'400i 2954 Auspicious Red Dog Livery','Paints','UNDEFINED','15987396-c9e2-4d19-a7c8-a3f7a6932806','','','Seek peace and prosperity in the new year with the Auspicious Red Dog livery. Outfit your ship with this bold red base paint complemented by gold accents and a stylized graphic of a dog.'), +(7292,'Seat','SeatAccess','UNDEFINED','964977aa-82f0-433b-90b9-d7ae56be2d7c','','',NULL), +(7293,'Zeus Exploration Suit Helmet','Armor','Helmet','0e5ef30a-0c2b-433c-9b77-f177c922ceb4','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -150 / 175 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nThe Zeus Exploration Suit has been designed to honor some of the earliest space pioneers, the RSI crews who developed and tested the Zeus, the first commercial spacecraft. While the suit is styled to match those used centuries ago with attachments for a helmet and backpack, it contains all of the modern technology and conveniences expected by present-day explorers. The Zeus offers good resistance to harsh environments and excellent storage space for sample-collecting during EVAs. This helmet is only compatible with the Zeus Exploration Suit.'), +(7294,'Medical Bed','Usable','UNDEFINED','6ceae1ef-676f-491f-8ac2-76f5da377680','','',NULL), +(7295,'Fluorine','Cargo','Cargo','42ebfbd0-0c9c-44e2-bab5-e020a4c971ee','','',NULL), +(7296,'RSI_Apollo_EmergencyLights','AttachedPart','UNDEFINED','67f9198c-4617-40fb-8099-8f8e129bd0e0','','',NULL), +(7297,'can_drink_3_energy_bm_shop_1x5_a','ShopDisplay','Default','cbf66035-a735-4fcc-ad5a-71bb73ee54cc','','',NULL), +(7298,'ORC-mkV Core Imperial','Armor','Torso','c7af9b9e-0933-4701-b1ac-a90d13acd0b9','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(7299,'Venture Legs','Armor','Legs','70f6dd3a-790c-4b8b-b355-c256e09af19f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(7300,'RSI_Apollo_Skylight','AttachedPart','UNDEFINED','c267796b-38b6-41ea-a87c-2693f8b40dd6','','',NULL), +(7301,'Internal Tank','FuelTank','Fuel','843bb7d7-760b-4265-87fe-89c66b575775','','',NULL), +(7302,'Big Winner T-Shirt','Char_Clothing_Torso_0','UNDEFINED','5602b501-84c8-492d-bf59-a1b7f5ade010','','','Featuring a stylized, neon-green X on the front and the phrase \"Big winner!\" on the back, when you wear this T-shirt, everyone will know that you\'re going places.'), +(7303,'Bed','Seat','UNDEFINED','12902b2b-f38d-44ce-9c5c-656deaaea7fa','','',NULL), +(7304,'Aurora Mk I CL Ship Armor','Armor','Medium','b71bad28-d9ca-43c3-b256-9b4a7502dc25','','','Aurora Mk I CL Ship Armor'), +(7305,'Radar_Display_Terrapin','Display','UNDEFINED','62a93dca-aeb5-4ee0-9647-1045fc7083eb','','',NULL), +(7306,'IAE 2955 T-Shirt Gray','Char_Clothing_Torso_0','UNDEFINED','0f0e52b8-1e54-4107-aaaf-0ccea3732690','','','The official shirt of the 2955 Intergalactic Aerospace Expo. This soft and supremely comfortable cotton t-shirt is gray with the IAE logo on the front, the event\'s tagline across the back, and the year on the right sleeve.'), +(7307,'Internal Tank','FuelTank','Fuel','28ddd04f-66c2-4e4e-8231-0e0d7b0a8dca','','',NULL), +(7308,'Internal Tank','FuelTank','Fuel','b6c1a1f0-4f82-4939-9220-ce8a16fe77f8','','',NULL), +(7309,'ANVL_Hawk_Thruster_Mav_Joint','ManneuverThruster','JointThruster','1fd8c719-00ee-4949-9085-d6af5d9911e3','','',NULL), +(7310,'Carryable_1H_CY_bottle_cognac_pourable_1_a','Misc','UNDEFINED','cfcaf5b4-d567-49fc-9ff0-5226a6e0a44a','','',NULL), +(7311,'Door','Door','UNDEFINED','3ce7643a-fda9-497a-ac7f-3fa5210c2571','','',NULL), +(7312,'Valkyrie T-Shirt','Char_Clothing_Torso_0','UNDEFINED','390de0a3-b247-4ab3-a236-bf32cfbc0f22','','','Built for the battlefield, the Valkyrie bravely dives into the kind of danger that other ships avoid. Its ability to deploy ground troops and vehicles swiftly has made it a military favorite for decades. Now popular in the civilian market, this black t-shirt does the Valkyrie justice with a dynamic design across the front and the ship\'s name on the back.'), +(7313,'Lynx Arms Grey','Armor','Arms','de759022-125e-42dc-8b8e-c8739bd6a776','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(7314,'Carryable_2H_FL_EighthSCU_Commodity_Nonmetal','Cargo','Cargo','7c61004b-b447-425a-80d9-d62ea42f954f','','',NULL), +(7315,'Arrowhead \"Stormfall\" Sniper Rifle','Weapon','Medium','a82ee2bb-7eca-4f2c-916c-ce742740089b','','','Manufacturer: Klaus & Werner\nItem Type: Sniper Rifle\nClass: Energy (Laser)\n\nBattery Size: 20\nRate Of Fire: 50 rpm\nEffective Range: 100 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nKlaus & Werner’s Arrowhead Model VI long-range energy rifle features a fiberglass composite body capable of withstanding any number of rigorous environments both in atmosphere and out. Built with a precision stock, compound scope and built-in bipod, the Arrowhead offers a stable and devastating weapon for operators who want to keep their distance, but stay in the fight.'), +(7316,'Geist Armor Legs Golden Blossom','Armor','Legs','304f6a96-d6ce-493b-ab50-931d2e506ce5','','','Item Type: Light Armor\nDamage Reduction: 20%\nCarrying Capacity: 2.5k µSCU\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.\n\nThis matte black stealth armor is embellished with intricate golden flowers, giving your enemies one final glimpse of life before death.'), +(7317,'Parallax \"Fun Kopion Skull\" Energy Assault Rifle','Weapon','Medium','c57281a9-b879-47f5-b7b5-16929d79ee5d','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Assault Rifle\nClass: Energy (Electron)\n\nBattery Size: 80\nRate of Fire: 200 rpm - Beam\nEffective Range: 30 m\n\nAttachments: Optics (S2), Underbarrel (S2)\n\nWith the Parallax, VOLT offers consumers a rugged assault rifle design with features like a larger-than-average battery and a unique actuator that enables the weapon to scale up into a persistent beam as it fires.\n\nThis modified version of the original rifle showcases a printed kopion graphic across the side of the weapon and a small kopion skull adorning the muzzle.'), +(7318,'Door Control','Door','UNDEFINED','696aab71-18a7-4d95-8b77-a1aadf4f8712','','',NULL), +(7319,'H_Dashboard_Projector_HUD_ORIG_85X','Display','UNDEFINED','080cb360-462b-4531-b60c-d7fcd6a9d150','','',NULL), +(7320,'Hurston Hat','Char_Clothing_Hat','UNDEFINED','651a72fe-cd4f-409a-bfd7-e88772b919f4','','','A brown and gray cadet hat with Hurston Dynamics\' name and logo emblazoned across the front panel.'), +(7321,'Omnapoxy','Cargo','Cargo','1921fedf-6afb-47cb-9637-b535107b610e','','',NULL), +(7322,'Armor_Crate_CZ_Horizon','Usable','UNDEFINED','da7dd2d0-5ae0-43aa-b297-14e7809b4155','','',NULL), +(7323,'ANVL_Hawk_Seat_Prisoner','Seat','UNDEFINED','79b87237-5c0e-4249-a384-b459302cff36','','',NULL), +(7324,'facial_hair_040','Char_Head_Beard','UNDEFINED','61a8f3db-6dd2-4d6b-8e63-03f4a4b5fcf9','','',NULL), +(7325,'Freeze','Cargo','Cargo','005e35c5-62a2-441d-aabd-d81139b437cb','','',NULL), +(7326,'C8 Pisces Responder Livery','Paints','UNDEFINED','bb11eca9-0cd3-4e6c-94a4-fe53bb3d3ea2','','','Outfit the C8 Pisces in pristine white with red highlights with the Responder livery.'), +(7327,'ORIG_890_Jump_Thruster_Mav_TRR','ManneuverThruster','FixedThruster','39db0af0-28e7-4665-8dee-d2191875e8be','','',NULL), +(7328,'300 Series Black Rose Paint','Paints','UNDEFINED','6d57899e-beb2-47b1-b39f-7575fbb0dc21','','','Black Rose paint job for the Origin 315p.'), +(7329,'ADP-mk4 Arms Woodland','Armor','Arms','bef9cd69-24f0-434a-ba7a-2bf751228093','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhen there\'s a difficult job at hand, you want to ensure that you can see it through to the end. Clark Defense Systems\' ADP-mk4 heavy armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers.'), +(7330,'Ketchum Beanie','Char_Clothing_Hat','UNDEFINED','b7c1bbdb-93bf-49fb-bb9e-ea73bdaffbc9','','','Complete your cool-weather wardrobe with the classic Ketchum beanie from Alejo Brothers.'), +(7331,'Flight Blade','FlightController','UNDEFINED','e7bff659-576b-4a28-961e-646cb3ebef88','','',NULL), +(7332,'RSI_Bengal_Dashboard_Pilot','SeatDashboard','UNDEFINED','c7dc8c3a-127c-47ec-ba93-f41469b07078','','',NULL), +(7333,'ANVL_Paladin_Thruster_Vtol','MainThruster','UNDEFINED','6c940995-f9ec-4a99-8cb4-f5c64bb4c822','','',NULL), +(7334,'Seat','Usable','UNDEFINED','b6b80568-df16-4213-bd7a-f4f75ff02b23','','',NULL), +(7335,'Bed','Seat','UNDEFINED','78f105e9-441d-434f-bbad-327def808395','','',NULL), +(7336,'Turret','TurretBase','MannedTurret','6655af14-7171-46e2-85d8-6028f291c18e','','',NULL), +(7337,'vlk_spewgun_ballistic_ice_juvenile','Weapon','Medium','1792d761-5d8e-4f42-912c-bf42840b9a86','','',NULL), +(7338,'DockingTube_RSI_Polaris','DockingCollar','UNDEFINED','263cca06-07d8-4524-92ec-d313a6872405','','',NULL), +(7339,'Carryable_1H_CY_utensil_jigger_1_a','Misc','UNDEFINED','ba4a2308-e09f-4344-a37a-0e1e39e74ff0','','',NULL), +(7340,'Paint_Perseus_Grey_Grey_Orange','Paints','UNDEFINED','d60e53be-2e49-486e-ac20-1463e7043960','','',NULL), +(7341,'Argus Helmet Black/Silver/Blue','Armor','Helmet','713c5fd6-20ea-48e4-8c9b-a4c67db5e50c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s Argus helmet utilizes advanced multi-layered composite construction to provide incredible protection from weapon fire as well as environmental hazards. The tinted visor offers a wide field-of-view to improve situational awareness and unrestricted movement.'), +(7342,'AAT-34 Turret','Turret','MannedTurret','1efa302d-2fab-4459-b54d-53892886e744','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(7343,'G-2 Helmet Covalex Edition','Armor','Helmet','c790b326-5270-47bb-a0ef-a0ed8829767a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. The Covalex Edition was made specifically for the company.'), +(7344,'Spruce Cap Ellroy\'s','Char_Clothing_Hat','UNDEFINED','d3831d0c-be4e-4ea3-8414-1607888f2074','','','Lightweight and constructed from a sweat absorbant material that is easy to wash, Stegman\'s Spruce cap is ideal for comfortable all day wear.'), +(7345,'Palatino Backpack Sunstone','Armor','Backpack','aa3a3eeb-9d03-414e-8ef2-0988a9b88fb6','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. The associated backpack seamlessly integrates into the armor, matching its silhouette while also providing ample storage.'), +(7346,'MSD-582 Missile Rack','MissileLauncher','MissileRack','f1efe8e8-371d-4bf6-8a76-581caf1ad866','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 5\nMissiles: 8xS2\n\nBehring’s MSD-582 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 5 hardpoint for the reliable and effective launch of eight S2 missiles.'), +(7347,'BEHR_LaserCannon_Ventilation_S1','WeaponAttachment','Ventilation','1da7ba1c-941e-4072-ad2f-ab2ac47b4655','','',NULL), +(7348,'Misfit Jacket','Char_Clothing_Torso_1','UNDEFINED','dda19d18-6b1a-48c0-919d-73986626a49d','','','Carrying Capacity: 1K µSCU\n\nEmbody the hardcore attitude with the Misfit jacket. Durable synthetic leather combines with anarchic stylings for a jacket meant to send a message. Its distinct look includes spikes across the shoulder and right arm, two buckled straps on the left arm, and a badass image on the back highlighted by three lights powered via electronic boxes affixed to the front.'), +(7349,'DockingTube_Fuel_Ports_ARGO_MPUV','DockingCollar','UNDEFINED','a522f9eb-7c2f-4c9c-a598-2f8154662693','','',NULL), +(7350,'MSD-543 Missile Rack','MissileLauncher','MissileRack','44c134d1-061f-4642-b4f1-aa05b19191bd','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 5\nMissiles: 4xS3\n\nBehring’s MSD-543 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 5 hardpoint for the reliable and effective launch of four S3 missiles.'), +(7351,'Testudo Core Turfwar','Armor','Torso','ca5d29ea-e118-401f-9da0-c36594958867','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Medium, Light\n\nThe Testudo armor for Quirinus Tech blends battlefield durability with everyday comfort. It weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort.'), +(7352,'Armor_Crate_CZ_Firerat_004','Usable','UNDEFINED','431cc360-6e1e-48d6-a21f-3c4488e542fc','','',NULL), +(7353,'Jaclium (Ore)','Cargo','Cargo','fef1557a-bd3e-44ab-a436-a561fced6e8f','','','A naturally occurring rare metal form of jahlium, it is used in the production of extremely strong alloys with incredible tensile strength. Originally confused with common jahlium when first discovered, the above average results when used lead to researchers to realize its value.'), +(7354,'Door Control','Door','UNDEFINED','c6991237-06b3-45a7-bc13-8b5a7b2c6822','','',NULL), +(7355,'Odyssey II Undersuit Purple/Black','Armor','Undersuit','2897896d-738f-4fcf-96f6-3cc61905cace','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe latest generation of RSI\'s classic Odyssey undersuit features a new rugged design capable of withstanding the harshest of conditions in space or planetside. Built using the latest microweave technology, the Odyssey II undersuit provides hours of comfort in locations that are anything but comfortable.'), +(7356,'Carbon-Silk','Cargo','Cargo','95607ca6-2514-498d-ba38-566787664c40','','',NULL), +(7357,'Lorber Shoes','Char_Clothing_Feet','UNDEFINED','62bb2ac1-d1e5-44e4-a0d0-1e66badaab59','','','The Lorber shoes feature classic style with modern flourishes. Constructed with dark brown synthetic leather, the shoes also feature a light brown toe box with gold colored metallic accents to catch the eye, a magnetic closure that ensures a snug fit, and a soft faux-sheepskin footbed for supreme comfort.'), +(7358,'Desert Cat Boots','Char_Clothing_Feet','UNDEFINED','3928915d-8985-48b9-ab55-43afb14b7075','','','When you walk on untamed worlds, dirt is just a part of the job. These Desert Cat Boots are coated with a thin membrane that helps repel grime while allowing heat and sweat to escape.'), +(7359,'Organics','Cargo','Cargo','5d151a52-5840-4fe5-be20-c361a2120153','','',NULL), +(7360,'DRAK_Golem_Thruster_Mav_Fixed_Top','ManneuverThruster','FixedThruster','cb6f48c8-df4e-46e3-b77d-a53bf645290b','','',NULL), +(7361,'Aves Arms','Armor','Arms','64631198-28b5-49f0-893f-92b9bfadf95e','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nHonor and embody the Tevarin aesthetic with the Aves armor. Cutting edge manufacturing techniques were used to place white, red, grey, and black plating perfectly to fit the Human form and evoke the shape language imbued into the Tevarin\'s iconic ships. This medium armor from CC\'s Conversions is both sensational and practical, providing solid protection while keeping you light on your feet. When paired with the Aves helmet, the suit combines for a striking and unforgettable look.'), +(7362,'Deo Shirt Tan','Char_Clothing_Torso_0','UNDEFINED','4194fa59-617c-4cc5-8b51-77a583154c86','','','Fiore\'s Deo is a slim cut work shirt that\'s as practical as it is timeless. Featuring a high collar and metal neck clasp, the Deo has been a mainstay in business attire.\n\nWomen\'s sizes currently out of stock.'), +(7363,'Voss Helmet','Armor','Helmet','0842c9b9-088a-4eae-9c1c-41db1d3120da','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -65 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhy trade protection when you\'re looking for a lightweight option? The Voss boasts treated hide over a polyweave under-layer. The airtight neck seal keeps you alive while the full-face mask makes your presence as commanding as this helmet is durable. Visor is AR Crosshair compatible.'), +(7364,'RSI_Aurora_GS_Thruster_LN_Retro_Right','MainThruster','FixedThruster','52c24b29-a23d-4da8-884c-973315a41da5','','',NULL), +(7365,'Locker_Suit_Right_AEGS','Usable','UNDEFINED','d98d7ac8-cebe-4863-a8c7-a1926e532bcc','','',NULL), +(7366,'TRGT. STATUS','Seat','UNDEFINED','e9c1e3f1-a8f8-4dc8-a3e8-ff6787c90635','','',NULL), +(7367,'Ranta Dung','Cargo','Cargo','0eb081ac-5891-45e9-a61d-55ceeac8cb14','','',NULL), +(7368,'Starfarer Gemini Ship Armor','Armor','Medium','4552f0e6-b7aa-426c-bead-be1c5b1f4046','','','Starfarer Gemini Ship Armor'), +(7369,'Wally\'s Bar Hologram Replica','Misc','Flair_Wall_Picture','081fe84e-0e31-4d22-88e2-8281fe5e10f2','','','This replica of the holographic center piece at the infamous Wally\'s Bar in New Babbage features warm oranges and yellows that evoke the feeling of a tropical sunset in your personal habitat.'), +(7370,'Inquisitor Arms Olive','Armor','Arms','150f53ce-f168-4951-bec2-18349861b21e','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(7371,'Tuvois Jacket Red','Char_Clothing_Torso_1','UNDEFINED','119feca0-d5ef-4883-9786-fa8e83bfcb14','','','Carrying Capacity: 1K µSCU\n\nCreated in collaboration with legendary designer Avon, OpalSky is proud to unveil the Tuvois, an open vest featuring stark, bold styling that\'s destined to make an impression. \n\nWomen\'s sizes currently out of stock.'), +(7372,'Exo-8 Helmet (Used)','Armor','Helmet','45a0b4d9-3798-4620-b46e-f127ee20e604','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -60 / 90 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing a large face shield and torches on each side, the Exo-8 helmet lets you keep your eyes on the prize. Gyson designers smartly integrated space-safe fabrics into the helmet, so it can provide the protection you deserve at a price that won\'t break the bank. \n\nThis used helmet has been certified space-safe but may contain cosmetic defects not seen on the standard model.'), +(7373,'Algid','Cooler','UNDEFINED','115aaff9-c8c5-4b93-bc14-9f22524fe8a8','','','Item Type: Cooler\nManufacturer: Aegis Dynamics\nSize: 4\nGrade: Bespoke\nClass: Industrial\n\nThe Reclaimer is a ship renowned for its ability to work long and hard. To help support even the most arduous salvaging projects, Aegis develop the bespoke Algid cooler.'), +(7374,'Concept Shirt Dark Red','Char_Clothing_Torso_0','UNDEFINED','e68c18b9-c538-4e68-a875-5bb0cc60c132','','','This crisp, versatile button-front shirt from Fiore is made with cutting edge stain resistant and wrinkle-free technology, guaranteeing that you stay professional at all times.'), +(7375,'AEGS_Reclaimer_Thruster_Mav_Fixed_Bottom_Front','ManneuverThruster','FixedThruster','f015423d-21e9-45ce-9855-692aba4caedc','','',NULL), +(7376,'Arrowhead \"Midnight\" Sniper Rifle','Weapon','Medium','2e418f00-1e0f-4870-9392-c9c36c369d0a','','','Manufacturer: Klaus & Werner\nItem Type: Sniper Rifle\nClass: Energy (Laser)\n\nBattery Size: 20\nRate Of Fire: 50 rpm\nEffective Range: 100 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nKlaus & Werner’s Arrowhead Model VI long-range energy rifle features a fiberglass composite body capable of withstanding any number of rigorous environments both in atmosphere and out. Built with a precision stock, compound scope and built-in bipod, the Arrowhead offers a stable and devastating weapon for operators who want to keep their distance, but stay in the fight.'), +(7377,'Serac','Cooler','UNDEFINED','18600693-df8b-4898-a9a6-e91291e69dd4','','','Item Type: Cooler\nManufacturer: Wen/Cassel \nSize: 4\nGrade: Bespoke\nClass: Civilian\n\nOnly available for Origin Jumpworks\' luxury liner, Wen/Cassel specially designed the Serac cooler to keep the 890 Jump operational through the diverse conditions typically encountered while cruising the stars.'), +(7378,'RSI_Constellation_Phoenix_CargoGrid_Main','CargoGrid','UNDEFINED','a5397e6b-42b3-403b-b83d-8b5b9b4a31b4','','',NULL), +(7379,'display_booth_stand_3_weapon_0075x002x01125','ShopDisplay','Default','0d22aff7-5313-45c2-9af9-ce1e66a45763','','',NULL), +(7380,'TrueDef-Pro Legs Red/Silver','Armor','Legs','c0014f7f-a016-42c3-9c04-09aa39c62011','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.\"'), +(7381,'Chiron Backpack Heartthrob','Armor','Backpack','f674b2a2-a589-4957-a8b3-e2b62708c894','','','Item Type: Light Backpack\nCarrying Capacity: 75K µSCU\nCore Compatibility: All\n\nEngineered with first responders in mind, the Chiron backpack provides an ideal carryall for critical supplies with quick access to the medical essentials that are stored inside.\n\nThe Heartthrob edition is a dreamy, shimmering violet adorned with bright digital hearts; perfect for making friends and foes weak in the knees.'), +(7382,'Seat','SeatAccess','UNDEFINED','381137d5-c83a-4cb0-a1cd-d9809182cdc3','','',NULL), +(7383,'Radar_Display_CRUS_Starrunner','Display','UNDEFINED','763bd3e9-6d1d-4209-bb6e-8376b0be11e1','','',NULL), +(7384,'Arclight \"Midnight\" Pistol','Weapon','Small','716624c5-8d5d-4357-8900-65d44197347b','','','Manufacturer: Klaus & Werner\nItem Type: Pistol\nClass: Energy (Laser)\n\nBattery Size: 30\nRate Of Fire: 300 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nA handheld laser made famous as Kyle Fenris’ sidearm on the hit vid show The Frontier, the Klaus & Werner Model II Arclight has become extremely popular on the civilian market. Despite its media appeal, the Model II offers a higher rate of fire than any of its ballistic counterparts. While that may diminish the weapon\'s stopping power, its power cell offers more than enough shots to finish the job.'), +(7385,'KRIG_P52_Merlin_Thruster_Mav_Vertical_Bottom','ManneuverThruster','JointThruster','2f8e97d8-93b0-40c6-b8d2-7d6e7a2ebe19','','',NULL), +(7386,'Adiva Jacket Seagreen','Char_Clothing_Torso_1','UNDEFINED','e64a507a-66d2-4c34-93dd-4c18f294c125','','','Carrying Capacity: 1K µSCU\n\nDefine your ultimate you. The Adiva is an asymmetrical pullover with bold mixed-materials and solid reinforced trim.'), +(7387,'SHIELDS','ShieldController','UNDEFINED','62a3b6ac-3620-4be8-82ec-20e3893e6ef6','','',NULL), +(7388,'AEGS_Door_Decal_Escapepods_Large_05','Decal','DoorPart','adfc03b7-ba0f-4507-9d18-34f3363dfa83','','',NULL), +(7389,'DRAK_Clipper_Thruster_Retro_Aux_Right','ManneuverThruster','UNDEFINED','1baa5ce9-eff5-4069-9446-79f97326dd28','','',NULL), +(7390,'TRGT. STATUS','Seat','UNDEFINED','39f8eead-4c71-4f40-82ab-6a34f7fad866','','',NULL), +(7391,'Oracle Helmet Dark Red','Armor','Helmet','6d0485b9-f793-46aa-8b37-9413d588a6bc','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(7392,'Libio Jacket Red','Char_Clothing_Torso_1','UNDEFINED','e81f4997-07bf-40f2-a00b-193973dbf05a','','','Carrying Capacity: 1K µSCU\n\nOne of OpalSky\'s classic pullovers, the Libio features a two-tone asymmetrical pattern and polyweave blend to keep it elegant and striking every time you wear it.\n\nWomen\'s sizes currently out of stock.'), +(7393,'Carryable_1H_CY_glass_cocktail_1_a','Misc','UNDEFINED','3a27f7de-4ac0-4f77-b779-31a008360c3c','','',NULL), +(7394,'Door Control','Door','UNDEFINED','5671c73a-2216-4470-bcf3-0249a6cedf91','','',NULL), +(7395,'ORIG_350r_Dashboard_Pilot','SeatDashboard','UNDEFINED','1805b512-af3d-4981-891a-ed6cf31764e5','','',NULL), +(7396,'Artimex Helmet Canuto','Armor','Helmet','6e98c7be-f047-4d1e-b830-605d5036874a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape. Visor is AR crosshair compatible.'), +(7397,'Weapon_Rack_Grin_MTC','Door','UNDEFINED','f29b3c46-df00-4147-91ad-745142bd9192','','',NULL), +(7398,'sc_nvy_bridgeofficer_boots_01_01_01','Char_Clothing_Feet','UNDEFINED','d39fae14-10f6-4209-adf3-28368894ef9b','','',NULL), +(7399,'Vehicle_Screen_MFD_Holographic_Prowler_BR','Display','UNDEFINED','cde15f3e-eca8-4d89-9aac-c592079845a0','','',NULL), +(7400,'Beacon Undersuit Crimson','Armor','Undersuit','df3a8ce8-2a8a-4511-b4fd-d3cdf40302d9','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRSI\'s Beacon undersuit is a general use utility designed to provide total protection against environments and vacuum. Built out of a durable but flexible polymers, the Beacon provides a wide freedom of motion for a variety of body types.'), +(7401,'Morozov-SH-I Core Lifeforce','Armor','Torso','c6554d7a-b832-4a8f-9eb5-7d69c451675f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12K µSCU\nBackpacks: All\n\nFeaturing the same fortified armor plating, special anti-rip protective padding and ample storage, as the Morozov SH, the SH-I industrial variant was designed by RRS to protect workers employed in hostile zones while ensuring they had the full range of motion required to perform their duties. The Lifeforce edition was designed with first responders in mind with a highly visible white, red, and grey color scheme.'), +(7402,'Greenwater Shirt Olive','Char_Clothing_Torso_0','UNDEFINED','3d53e2d3-ea0f-4ef5-ab1a-1fd94075ff2d','','','The Greenwater is a long-sleeved shirt tailor-made to be worn underneath most standard sets of armor. Crafted with a durable mix of natural and synthetic fibers, it stands up to daily wear and tear without sacrificing comfort.'), +(7403,'Warden Backpack Keystone','Armor','Backpack','5631d510-9a72-4b63-a7d9-e148defdf80c','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nThis hard backpack from Virgil, Ltd. makes travel easy. Whether you need a place to carry your weapons or you\'ve decided to bring some extra rations along for a long journey, this backpack was designed to handle any occasion. The interior features a generous, closeable pocket to keep your small items from falling out of place.\n\nThe Keystone edition features a white, gray and blue finish with URW logos.'), +(7404,'Stalker V Missile','Missile','Torpedo','9d2d7b0d-9f54-4fe1-8bff-c6ea2a5af5d3','','','Manufacturer: Talon\nTracking Signal: Cross Section\nSize: 5\n\nWith dedicated cross section tracking, the Talon Stalker has endured over the years as a precision strike torpedo with maximum stopping power.'), +(7405,'Mercury','Cargo','Cargo','e31d6897-85b6-46cc-a046-30a7331ac761','','',NULL), +(7406,'Morningstar Helmet White','Armor','Helmet','e0fa4e0e-c497-4c42-bb78-3fae776157a9','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(7407,'Davin Work Gloves Imperial','Char_Clothing_Hands','UNDEFINED','489147fe-ea6f-4bfc-825d-d49ad7a1b374','','','Field-tested for over fifty years, you can find Davin work gloves at numerous sites and ships around the Empire. Stegman\'s rugged construction and comfort lining have made them a customer favorite.'), +(7408,'Origin Jumpworks 125a Ship Armor','Armor','Medium','3b4c1c53-5416-46b3-aba3-5cbe5a7d8517','','','Origin Jumpworks 125a Ship Armor'), +(7409,'UDM Container Model','Misc','Flair_Wall_Picture','5ac913ec-bfca-464d-b5e6-0c422f52bbea','','','There\'s no need for a tractor beam to move this cargo container. This finely detailed model features Unified Distribution Management branding with the company\'s logo and white and purple color scheme.'), +(7410,'Arclight \"Executive Edition\" Pistol','Weapon','Small','1955753f-3472-4f04-ab9e-044af04a22f4','','','Manufacturer: Klaus & Werner\nItem Type: Pistol\nClass: Energy (Laser)\n\nBattery Size: 30\nRate Of Fire: 300 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nA handheld laser made famous as Kyle Fenris’ sidearm on the hit vid show The Frontier, the Klaus & Werner Model II Arclight has become extremely popular on the civilian market. Despite its media appeal, the Model II offers a higher rate of fire than any of its ballistic counterparts. While that may diminish the weapon\'s stopping power, its power cell offers more than enough shots to finish the job.'), +(7411,'Nyman Jacket Red','Char_Clothing_Torso_1','UNDEFINED','3b35cec4-11d7-4d89-8aab-263102d0ee44','','','Carrying Capacity: 1K µSCU\n\nOpalSky\'s Nyman light pullover is perfect to have on hand when lounging poolside or on those chilly nights.'), +(7412,'Ship Showdown \'52 Mercury Coin','Misc','Utility','77e07416-cad8-4de8-8447-9e4b6c6cb49b','','','The Mercury Star Runner delivered a strong showing in the 2952 Ship Showdown with its second place finish. Ringed in blue, this coin commemorates the iconic courier ship with its image on one side and the Crusader Industries logo on the other.'), +(7413,'Door Control','ControlPanel','DoorPart','fb51f1c4-2f9f-4b78-809e-55aba0bfe9c7','','',NULL), +(7414,'Prospector Foundation Fest Livery','Paints','UNDEFINED','5598c685-802c-4893-9646-3796d89eadc1','','','Foundation Festival is an opportunity for Citizens and Civilians to come together and strengthen the foundation of our community. Show your commitment to a better universe with this custom livery.'), +(7415,'Seat','SeatAccess','UNDEFINED','77e79aa1-e2b7-4e9e-9b82-1c68713fa2ef','','',NULL), +(7416,'A03 Sniper Rifle Magazine (15 cap)','WeaponAttachment','Magazine','c12a76b1-80b2-4db5-9648-20a1cd0f4d67','','','Item Type: Magazine\nCapacity: 15\n\nThis magazine for the Gemini A03 sniper rifle holds fifteen 7mm rounds.'), +(7417,'Seat','SeatAccess','UNDEFINED','e2c147ba-ebae-45a9-ab62-66a1a10abd4f','','',NULL), +(7418,'Cambio SRT Canister','WeaponAttachment','Magazine','100037d0-d9c1-400d-a29a-c2ea3b621753','','','Item Type: RMC Canister (Large)\n\nCanister used by the Cambio SRT to store recycle material composite (RMC) reclaimed from scrap. Contents can be sold or used to make repairs.'), +(7419,'Retaliator Unladen Rear Module','Module','UNDEFINED','2085bd4c-f2f3-4630-aee6-da2d455e92ac','','','This empty rear module comes equipped by default on the Retaliator\'s base chassis.'), +(7420,'Seat','Usable','UNDEFINED','10d1604a-29a0-4708-8dbb-8d80ec9d7d6e','','',NULL), +(7421,'MTC Brushwood Camo Livery','Paints','UNDEFINED','4bad411b-2ff1-4c02-81a9-7061cb7c501f','','','The Brushwood Camo livery for the MTC features a digital green and grey camo pattern with a red line cutting through each side. It\'s also compatible with other Greycat M-series vehicles.'), +(7422,'RSI_Constellation_Base_BayWall_Right','Container','UNDEFINED','6900a68c-2078-4580-84ad-b383acc48fa6','','',NULL), +(7423,'sc_nvy_deckcrew_nogoggles_helmet_01_01_01','Char_Clothing_Hat','UNDEFINED','ac69b410-02fe-4ea7-a63f-4cb6e8133c98','','',NULL), +(7424,'Janalite','Cargo','Cargo','7270a7e6-7823-42b4-8619-774e81fefc5f','','',NULL), +(7425,'Pyro RYT Multi-Tool','Weapon','Gadget','505e4ea1-b6ec-4a34-9484-31b0234e8235','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier.'), +(7426,'Door','Door','UNDEFINED','2e32912e-f6f5-4be6-820b-b4b9e7ea66da','','',NULL), +(7427,'Blade Ship Armor','Armor','Medium','3e079c98-45c0-4d08-b647-313fe1d1c584','','','Blade Ship Armor'), +(7428,'GCD-Army Legs','Armor','Legs','653342e1-8196-4ccb-ad2c-4567c71759e1','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nIn honor of the soldiers who protect the Empire, CDS has crafted this limited-edition armor that proudly displays the seal of the UEE Army. Its shell is composed of a durable composite on the outside and a soft core on the inside, designed to absorb the types of impacts associated with on-the-ground combat. The matching helmet features a UV-blocking faceplate that protects the wearer\'s eye sight as they fight on the front lines under strange suns.'), +(7429,'Railing_Straight_4m_Hurston_Lorville_Glass_C','Usable','UNDEFINED','61e4bf26-2c87-4fa4-8d59-0dba58a19b92','','',NULL), +(7430,'Door','Door','UNDEFINED','4609dabd-21d1-43be-8490-82f60819780a','','',NULL), +(7431,'display_item_noGeo_01Port_Hat_stiff','ShopDisplay','UNDEFINED','0b63274f-b69e-49e5-b5fd-834ae296d7c2','','',NULL), +(7432,'Degnous Root','Cargo','Cargo','739bd503-6280-45d1-ba93-460389902460','','',NULL), +(7433,'Devastator \"Executive Edition\" Shotgun','Weapon','Medium','4d1c4182-f460-4009-84e4-1df97d3f0547','','','Manufacturer: Kastak Arms\nItem Type: Shotgun\nClass: Energy (Plasma)\n\nBattery Size: 12\nRate Of Fire: 60 rpm\nEffective Range: 20 m\n\nAttachments: Optics (S1), Barrel (S3), Underbarrel (S2)\n\nKastak Arms’ Devastator is a pump-action plasma shotgun capable of delivering sustained medium range, high-impact plasma blasts for close combat, room clearances and other combat operations. If the situation requires a high-power presence, look no further than the Devastator.'), +(7434,'RSI_Apollo_Medivac_Thruster_Retro_Left','ManneuverThruster','FixedThruster','44dabf88-17d4-4d40-854f-9cc261fad7b2','','',NULL), +(7435,'Weapon Rack','Usable','UNDEFINED','b2a3e92d-111b-4d6a-91a0-a0551e564542','','',NULL), +(7436,'INTK_RSI_Meteor','FuelIntake','Fuel','910b6e4f-7a1e-4ede-be51-c396bc1e789e','','',NULL), +(7437,'STV Cobalt Grey Livery','Paints','UNDEFINED','a297ea4e-6b1e-4192-bf97-b8dc18408949','','','The Cobalt Grey livery for the STV is a black base with grey accents and features cool blue seat coverings.'), +(7438,'Door Control','Door','UNDEFINED','eee22d9d-1d59-4506-bc41-ff3a9e5a2b4c','','',NULL), +(7439,'Astley Pants (Modified)','Char_Clothing_Legs','UNDEFINED','fa48bd6d-b05e-4ecc-a71a-c19876ad5211','','','Carrying Capacity: 2K µSCU\n\nThis version of DMC\'s Astley pants has been modified from its original form. Flaunt your rugged yet refined sensibility with these cargo pants from DMC. With grey accents and contrast stripes down each side, Astleys are durable, comfortable, and always on point.'), +(7440,'Weapon_Rack_Cz_Firerat_002','Usable','UNDEFINED','ecc55426-6115-42f7-a0c9-b047ae6c93d9','','',NULL), +(7441,'Carbon','Cargo','Cargo','31e1cbdb-2ebe-4fa2-a456-1fe6f46fa3ec','','',NULL), +(7442,'H_Dashboard_Projector_HUD_XIAN_Nox','Display','UNDEFINED','aded6a4a-3361-4988-b594-a941c926195e','','',NULL), +(7443,'Origin White King','Gadget','UNDEFINED','70a68700-0f9a-49bf-b408-ef38ed8de862','','','Made exclusively for Origin Jumpworks and included with the 890 Jump, this white chess piece is a modern version of a classic set.'), +(7444,'m_human_mannequin_base_armor_Collector_SBDes','ShopDisplay','UNDEFINED','0a9b3770-4deb-4024-be17-8f5903a084e6','','',NULL), +(7445,'Neograph','Cargo','Cargo','1680dc0e-0c99-443c-bf7c-fe90faaa4c16','','',NULL), +(7446,'ARGO_MPUV_Leg_Right','Misc','UNDEFINED','dc44c0d2-e36f-4053-bcc4-29d0bf8d6d08','','',NULL), +(7447,'Ramp Control','Usable','UNDEFINED','44a18200-a04f-b0ea-3e75-d2b83a8ffaab','','',NULL), +(7448,'TRGT. STATUS','Seat','UNDEFINED','7d293b7a-6d82-44c2-903d-a5cdb93e97df','','',NULL), +(7449,'Dashboard','SeatDashboard','UNDEFINED','a69c298d-8df3-4922-815b-7b1b631dab4e','','',NULL), +(7450,'Flood Energy','Drink','Can','5d2b02eb-51e4-4b3a-9efb-7f3c63a3d97d','','','HEI: 18\nEffects: Dehydrating, Cognitive Boosting\n\nRelease a Flood of stimulants throughout your body with each swallow of this scientifically crafted formula of enhancing ingredients and energizing flavors designed to take you \'Beyond Normal.\''), +(7451,'Prim Shoes Aqua','Char_Clothing_Feet','UNDEFINED','366a829c-7bf8-455b-b411-9240047ecdb1','','','Professional yet casual, the Prim utilizes cutting-edge synthetic construction to provide maximum comfort and a shine that won\'t fade.'), +(7452,'Souvenirs','Cargo','Cargo','b110ba9a-dce9-45cf-b8cd-fbb58dd1a793','','',NULL), +(7453,'ORC-mkX Arms Autumn','Armor','Arms','3d5525ba-387e-4a03-ba6c-fa4e9a36fa3b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(7454,'Carryable_1H_SQ_Datapad_Fluff_Orb_HathorGroup_007','Misc','UNDEFINED','d60f0010-3a22-4c22-83a1-9c828e1bcafe','','',NULL), +(7455,'H_Dashboard_Projector_HUD_GAMA_Syulen','Display','UNDEFINED','5c5b03e5-51b8-4507-8f30-5e2d8def5f6f','','',NULL), +(7456,'table_poker_1_a_3_Seat','Usable','UNDEFINED','2324f37b-0526-4d1b-b6c5-a8257e818596','','',NULL), +(7457,'Harlowe Shirt Purple','Char_Clothing_Torso_0','UNDEFINED','3635c7e0-56c9-407b-8ecf-b40b3c0dfc37','','','Capable as being worn on its own or as a base for layers, this long-sleeve henley style shirt from Alejo Brothers keeps you stylish and comfortable.'), +(7458,'MASTER_can_carryable_1h','Cargo','UNDEFINED','bf464cd0-0401-43ba-a88a-bec9ba09c27e','','',NULL), +(7459,'Vacha Jacket Ebony','Char_Clothing_Torso_1','UNDEFINED','f8951a65-0099-4c49-850c-c28d8bc9b5c5','','','Carrying Capacity: 400 µSCU\n\nThe Vacha jacket offers the wearer an admirable degree of comfort across a wide range of environments thanks to its sealed cuffs and utility neck collar. Additionally, the rugged design features a sealed cross closure, incorporated belt, and auxiliary ports. The garment\'s sheer durability and utility has cemented the Vacha jacket as a perennial favorite in Habidash\'s collection.'), +(7460,'MacFlex Legs Sienna','Armor','Legs','88ee3ada-6603-4a32-8479-c62e3d2728e5','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(7461,'Shower','Cargo','UNDEFINED','b3afb4ac-ded3-429f-9ca3-4080503ffeca','','',NULL), +(7462,'Devastator \"Rager\" Shotgun','Weapon','Medium','82c475c9-7e54-4991-ad37-66f08cbc54f3','','','Manufacturer: Kastak Arms\nItem Type: Shotgun\nClass: Energy (Plasma)\n\nBattery Size: 12\nRate Of Fire: 60 rpm\nEffective Range: 20 m\n\nThis semi-automatic electric shotgun from Kastak Arms delivers high-impact plasma blasts ideal for close combat. The Voyager edition upgrades the look with a checked metallic finish offset with blue highlights. An outrageous combination of black, cyan, and purple makes the \"Rager\" edition an extra good time.'), +(7463,'Inquisitor Arms Red','Armor','Arms','80cb3a30-5626-45c7-b6c1-2015481f5b7c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(7464,'Razorback Pants Orange','Char_Clothing_Legs','UNDEFINED','c80ac343-70c2-485b-b624-20d74c0c83de','','','Carrying Capacity: 2K µSCU\n\nDMC\'s Razorback pants are made to be worn. Built from industrial quality material, they feature reinforced kneepads to prevent tears on the job and stay rugged yet comfortable.\n\nWomen\'s sizes currently out of stock.'), +(7465,'Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','a3c3b445-7625-4f5c-b6b2-977c1f8552d8','','','Joker Defcon Flares Ammo'), +(7466,'Bed','Usable','UNDEFINED','510d203c-ad7e-4848-959b-a7b89bc43b38','','',NULL), +(7467,'Internal Tank','QuantumFuelTank','QuantumFuel','e39c1aa6-8abc-434b-8e08-5a1ad28c5aca','','',NULL), +(7468,'GLSN_Shiv_Thruster_Maneuver_Bottom','ManneuverThruster','JointThruster','a9cef900-ab7a-4d2f-af11-6a7153f20da6','','',NULL), +(7469,'Saldynium (Ore)','Cargo','Cargo','ba87badc-fb45-43a5-9256-705729f0c6c1','','','A rare metal that has traditionally been extremely difficult to find in large quantities owing to the particular environmental requirements for its formation. It is sought after for its use in the production of high-powered lasers. It also shows some antimicrobial properties though its scarcity has seen it used less for medical purposes.'), +(7470,'Lillo Pants Yellow','Char_Clothing_Legs','UNDEFINED','f1a07fef-7357-45f6-846c-94b587ae8c28','','','Carrying Capacity: 0.5K µSCU\n\nThese slim cut pants from Fiore give you a tailored feel at a fraction of the cost. Built from space-age weaves, the Lillo are a low maintenance, high impact addition to your office wardrobe.'), +(7471,'Radar_Display_Aurora','Display','UNDEFINED','8ce26532-3b22-451f-a7b0-3220cf0d08e1','','',NULL), +(7472,'Seat','Usable','UNDEFINED','ec276a15-608d-4d31-ac90-9dc0b56f48a3','','',NULL), +(7473,'MISC_Hull_C_FoldingStrut_2C_Outer','Cargo','UNDEFINED','955fbffc-dcec-4a88-9196-f9b3da3ee07a','','',NULL), +(7474,'Inquisitor Legs Dark Green','Armor','Legs','6c53806f-80f6-48c8-8f6c-93d866948d5e','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(7475,'ARMR_TMBL_Nova','Armor','Medium','95fd9f33-938d-40dd-a8ce-31aa231822b2','','',NULL), +(7476,'Millrun Waders Calypso','Char_Clothing_Legs','UNDEFINED','09170a25-64c9-4a49-b80d-2ffa9d5e8d0c','','','Carrying Capacity: 400 µSCU\n\nA combination of waterproof and weather-resistant pants and boots, the Millrun Waders are a comfortable option for uncomfortable work.'), +(7477,'Mercury Gloves \"Voyager\"','Char_Clothing_Hands','UNDEFINED','c128176f-b971-45e0-a314-6c11b1e4d3ab','','','Keep your hands warm and fingers nimble with Mercury gloves from DMC. Ideal for outdoor activities or colder work environments, the special Voyager edition comes in red with gold trim.'), +(7478,'Carryable_1H_CY_utensil_strainer_1_a','Misc','UNDEFINED','5871590a-14e7-4484-a915-922bfb6d8324','','',NULL), +(7479,'Bed','Usable','UNDEFINED','2b64419c-dd96-4282-9275-e99e2de50a8e','','',NULL), +(7480,'Fluorine','Cargo','Small','abcc1be0-5507-4a1e-938b-63fea40e7f52','','','A toxic and highly reactive gas that appears pale yellow in its natural state. Very easily forms compounds with almost all other elements.'), +(7481,'DRAK_Cutlass_Blue_Thruster_Retro','MainThruster','FixedThruster','1c58c3be-3344-4a8b-a476-5b500cb11df4','','',NULL), +(7482,'Seat','Usable','UNDEFINED','e75abcb5-eada-40d3-a934-be5842900f94','','',NULL), +(7483,'Personal Storage','Cargo','UNDEFINED','99596ec1-bda5-443c-822a-39dff0ca22e7','','',NULL), +(7484,'Lynx Arms Imperial','Armor','Arms','0029eeb3-9062-47d6-82bd-27246f31427b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(7485,'Prowler Stormbringer Livery','Paints','UNDEFINED','28450c13-4f89-4dfa-b571-c25c9ec3f32c','','','This custom Prowler livery was created to celebrate the 2950 IAE on microTech. It integrates black and electric blue accents to give the ship a cool new look.'), +(7486,'CRUS_Starlifter_SCItem_Turret_Seat_Bridge','Seat','UNDEFINED','dec44ed6-9eb7-49ae-94df-e9b5a9780dcb','','',NULL), +(7487,'NONE_LaserRepeater_PowerArray_S1','WeaponAttachment','PowerArray','c2586394-394a-41e5-b63a-acfbf9af08c0','','',NULL), +(7488,'RSI_Perseus_Thruster_Main_Bottom_Left','MainThruster','UNDEFINED','a3b6896c-2b5d-44bb-81a7-74c2719c3d58','','',NULL), +(7489,'Antium Core Maroon','Armor','Torso','dc04cecd-1e9d-4e9d-b64e-8b1c5867de1c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(7490,'Amiant Pod','Misc','UNDEFINED','778b4ee1-4dbb-4656-899b-afc3d8f8b9be','','',NULL), +(7491,'SLAM','Misc','Utility','72d2cf52-8306-4ebc-83d0-463ccb93e5e5','','','Most commonly ingested as a gas. Vials of SLAM are cracked and inhaled. Initially developed as a performance enhancer for athletes, SLAM targets the user\'s nervous system acting as a fear-inhibitor and painkiller. Once the severe physical side effects were discovered, the drug went underground and found popularity among mercs and outlaws who relied on it to provide that slight edge in combat. Unfortunately, SLAM is also heavily addictive, so many of these mercs ended up getting burned out on the drug. Heavy-duty SLAM junkies are easily identifiable in public; they have ‘the shakes’ -- involuntary muscle twitches. Important to note that this is not a sign of withdrawal, simply a side effect.'), +(7492,'MISC_Starfarer_Gemini_Thruster_Main_Derelict','MainThruster','FixedThruster','5c587757-0ff0-4ab5-9ef0-ab24e8dc0b57','','',NULL), +(7493,'Sangar Helmet','Armor','Helmet','d28e663f-32ee-496d-b475-4c84b17158df','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Sangar helmet from Vigil is both practical and eye-catching, thanks to a prominent brow ridge meant to absorb and disperse strikes through the helmet\'s special impact-resistant inner lining. Featuring high quality diamond laminate lens over the eyes and a top tier dual sensor air filtration system protruding from the front like fangs, Virgil has ensured that the Sangar helmet can take a beating and look good doing it in every situation from a hostile environment to a frantic firefight.'), +(7494,'CitizenCon \'54 Coin','Misc','Utility','5075adb4-7170-4751-a30a-38a4e87a5e30','','','Remember the 2954 CitizenCon with this collectable coin featuring the UEE logo on one side and the conference logo on the reverse.'), +(7495,'MISC_Starfarer_Base_SCItem_Dashboard_Sup_Right','SeatDashboard','UNDEFINED','6989011d-e32c-4825-9358-393729f47fe9','','',NULL), +(7496,'Crusader White Rook','Misc','UNDEFINED','b29a3c09-396c-4fb3-8eb9-1e500c480f78','','','Included with the Mercury Star Runner from Crusader Industries, this minimalist white chess piece has a marble base.'), +(7497,'display_guns_04x01x01_6Ports','ShopDisplay','UNDEFINED','8bec16c7-efde-450e-87f6-3c8382d41603','','',NULL), +(7498,'rack_gun_size_3_005x0075x01125_1_a','Misc','UNDEFINED','ac9101bf-7a9b-419c-a52f-4973f88d122b','','',NULL), +(7499,'Blood_Decal_Splat2','Decal','DoorPart','236ca8a1-0d9e-43d5-a31c-4b9778133d8c','','',NULL), +(7500,'Tona Shoes Black','Char_Clothing_Feet','UNDEFINED','b83dc29f-4c34-478f-88f5-ef70194fb245','','','Perfect for hiking or fieldwork, the Tona from R6 Pro is a low-top sneaker built out of breathable Cheofreme materials which not only provide extra protection against impacts, but keep your feet dry.'), +(7501,'Defiance Core Charcoal','Armor','Torso','1deec5ee-7490-41d0-aa7d-cbf8b7e1ebda','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nIncorporating the same manufacturing know-how and expertise that the UEE Marines have come to rely on, Clark Defense Systems has designed their civilian-line of Defiance heavy armors to stand firm in the face of even the most adverse combat scenarios with its three-star rated protective plating and fully integrated mobility framework.'), +(7502,'Aril Arms Red Alert','Armor','Arms','3a9cdda4-d92f-4cfe-9160-0d9f8b06bb55','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(7503,'JS-500','PowerPlant','Power','53e75236-5a91-4d75-8c23-373e44daa69c','','','Item Type: Power Plant \nManufacturer: Amon & Reese Co. \nSize: 3\nGrade: A\nClass: Military\n\nThe JS-500 is A&R’s best performing large power plant. This military-grade component receives consistent praise from users both in the military and civilian market.'), +(7504,'Killshot \"Bloody\" Rifle','Weapon','Medium','870eb4ac-e1c9-4d0b-b62b-d23579e05104','','','Manufacturer: Unknown\nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 45\nRate Of Fire: 525 rpm\nEffective Range: 50 m\n\nBeauty is in the eye of the beholder, and if you aim just right, so will a round from the Killshot assault rifle. What it lacks in grace, this classic design has its own scrappy charm. \n\nThe Bloody version features a red paintjob.'), +(7505,'Duck Sword T-Shirt','Char_Clothing_Torso_0','UNDEFINED','c367fff0-b946-4873-acfd-bbf270f5d2f5','','','Stories abound of Human\'s love of space adventures with Drake Cutlass, so a Banu souli enthusiastically designed this shirt.'), +(7506,'Carryable_2H_FL_toy_plushy_cargo_1_a','Misc','Flair_Wall_Picture','de15fd8a-4304-4d38-a876-67ceecba814c','','',NULL), +(7507,'Valkyrie 2950 Best In Show Livery','Paints','UNDEFINED','7d5de3f3-47be-4e2a-af46-40cc2abecf8c','','','Customize your Valkyrie with this special 2950 Best in Show livery that is white with grey and gold accents.'), +(7508,'RSI_Scorpius_Antares_SCItem_Seat_CoPilot','Seat','UNDEFINED','ee6685e5-c6d7-47a4-b4a0-99a0b0d9de89','','',NULL), +(7509,'Seat','Usable','UNDEFINED','2c91d119-1810-41fc-962e-f88a5740d7ae','','',NULL), +(7510,'Paint_Gladius_Default','Paints','UNDEFINED','43b92bad-2ad4-45c2-accc-d4911b2c32df','','',NULL), +(7511,'DockingTube_Fuel_Ports_RSI_Aurora_LX','DockingCollar','UNDEFINED','d57fa76f-bd80-41a6-9a94-751e76528e80','','',NULL), +(7512,'Seat','Usable','UNDEFINED','6ed0f5ef-0015-4ffb-825a-d29337285b0f','','',NULL), +(7513,'Bed','Seat','UNDEFINED','53828788-5e0c-419f-8e0a-6b7ffc257dfa','','',NULL), +(7514,'Ravager-212 \"Bright Star\" Twin Shotgun','Weapon','Medium','bfd81a96-9369-4430-b057-432eac9512d8','','','Manufacturer: Kastak Arms\nItem Type: Shotgun\nClass: Ballistic\n\nMagazine Size: 16\nRate Of Fire: 105 rpm\nEffective Range: 15 m\n\nAttachments: Optics (S1), Barrel (N/A), Underbarrel (S2)\n\nThe Kastak Arms Ravager-212 Twin shotgun earns its name from its unique dual-barrels that allow for multiple ammo types to be used in conjunction with each other for maximum tactical possibilities. Ice blue and grey gives the Bright Star edition a look befitting a distant shimmering star.'), +(7515,'Novikov \"Ascension\" Exploration Suit','Armor','Undersuit','3598bc92-1257-4779-a6f7-1b90c5c99e6c','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -225 / 75 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nIn order to confidently explore cold environments, Caldera built the Novikov exploration suit with an advanced sensor suite that intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. Also featuring a cutting edge life support system, those venturing across unknown terrain can count on the Novikov to help them survive the journey. This special IAE 2953 edition is decorated with a copper and white pattern inspired by Gatac Manufacture\'s Syulen.'), +(7516,'TMBL_Storm_Ground_Refueling_Port','Door','UNDEFINED','9ab48b7f-a24b-47bc-8af6-fe8d8ac8e180','','',NULL), +(7517,'Varhey Boots Ochre','Char_Clothing_Feet','UNDEFINED','bcd55149-c2a6-4a51-8067-0b35a2e952e7','','','The Varhey by R6Pro is a widely popular lightweight workboot made of a durable, but flexible, polyweave that ensures a safe, snug fit.'), +(7518,'MASTER_tool_2_handed','Misc','UNDEFINED','ea577a10-b996-485b-a37c-fddcbb8fca12','','',NULL), +(7519,'Pollux Pants','Char_Clothing_Legs','UNDEFINED','a82f62f1-fd2b-4b5d-a60d-f87337885a13','','','Carrying Capacity: 3K µSCU\n\nDurable comfort becomes fashion forward thanks to the edgy details in the Pollux pants from Rambler. The thick, woven fabric is reinforced with leather panels and accented by the unique lace front. \n\nMen\'s sizes currently not available.'), +(7520,'Book','Misc','UNDEFINED','562099e9-2f9b-45cc-94d3-39b96f1e5e10','','',NULL), +(7521,'Silco Shirt','Char_Clothing_Torso_0','UNDEFINED','735f762e-9118-416b-9a3f-cc6d9f3823a7','','','With a sleek design and durable material, the Silco Shirt by Habidash is a comfortable shirt that can be conveniently worn either as an undershirt or on its own.'), +(7522,'MISC_Fortune_Thruster_Mav_Fixed_04','ManneuverThruster','FixedThruster','d9686bdc-135f-489f-9105-c445993c9846','','',NULL), +(7523,'Door Control','ControlPanel','DoorPart','43ed547b-834c-4668-b655-b2d75c69e14d','','',NULL), +(7524,'MacFlex Arms Aqua','Armor','Arms','56af16f4-bc6c-4f09-b76c-9c82283a2623','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(7525,'Door Control','Door','UNDEFINED','a99fb618-3970-441b-887a-bbd1051ab265','','',NULL), +(7526,'Day One Shirt Seagreen','Char_Clothing_Torso_0','UNDEFINED','39ea1748-c46a-494e-ba37-6939fd5b1c6b','','','This Henley shirt from Stegman\'s is made with AirFlow technology, a stain-resistant, air-cooled fabric that keeps you comfortable and dry.'), +(7527,'M50 Skullcrusher Livery','Paints','UNDEFINED','ce4a4027-7a0d-4814-8d4c-b029260570d5','','','Exude attitude with the Skullcrusher livery for the M50, which features a massive skull across the top.'), +(7528,'FBL-8a Core (Modified)','Armor','Torso','577b08ae-a78f-417b-abc9-aaae869541cb','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -32 / 62 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nBased on CDS\' FBL-8a combat armor, this set has been modified from its original form. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible.'), +(7529,'ADO-5 Laser Mine','Grenade','Small','b0d64307-0e61-4bfc-a915-697d1073bfc1','','','Manufacturer: Behring\nItem Type: Laser Mine\n\nArea of Effect: 15 m\nDamage Type: Kinetic\n\nhe ADO-5, or commonly called ADOSS is a Laser Mine from Behring. It is a deadly tool you want to own to protect your precious goods, but you never want to accidentally step into. Where ADO stand for Area Denial Ordnance you can be sure that your property is well protected.\n\nThis deadly gadget is made of an light weight aluminum case that holds a strong explosive. It can be easily attached to any surface with our state of the art attachment technology.\n\nThe laser beam comes in predefined lengths for all your use cases, to provide a good variance for various room types, hallways or even giant hangars. \n\nHandle with care! Once activated the only way to turn it off is by destruction.'), +(7530,'Odyssey II Helmet Dark Red','Armor','Helmet','cddc5fb5-1989-4053-8b6e-474979132011','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(7531,'Shipment','Misc','UNDEFINED','de47d1f3-d301-4d7a-8281-f56f4292dc95','','',NULL), +(7532,'Morozov-CH Backpack Redshift','Armor','Backpack','bf7dc239-a0f1-4a48-b3d7-b30b3eeaf2a2','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nComfortably carry vital gear with the Morozov-CH backpack. This softshell bag is made with an advanced duraweave that\'s lightweight yet ready for battlefield action. It also features several easy to access pockets and a plethora of straps to keep supplies secure and tight to your back.'), +(7533,'ORC-mkX Legs Singularity','Armor','Legs','3b12c3bd-bfd9-4aab-b21b-092af0500bc8','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(7534,'Door','Door','UNDEFINED','96f7761c-f9f8-49b6-81fc-19422db4c4d4','','',NULL), +(7535,'Glacosite','Cargo','Cargo','da9257f3-b8cf-480c-85f2-3adf3a130321','','','As glaciers form, heavier mineral contents sink over time and are then crushed by the weight above as the ice deforms and flows. When the glacier recedes, Glacosite deposits are left behind. White and blue in color, the crystals form in long shiny strands that almost are cotton-like in appearance. Glacosite has found specialized commercial use since it is an extremely light and durable insulator.'), +(7536,'ORIG_125a_Thruster_Retro_Right','ManneuverThruster','JointThruster','7f125cbd-c660-4c95-ab31-52c0d5732a1c','','',NULL), +(7537,'sc_nvy_pilot_light_helmet_01_01_opaque','Armor','Helmet','2a81e804-a321-450c-ac47-169b2df467b1','','',NULL), +(7538,'Diluthermex','Cargo','Cargo','e5397866-2f39-41bd-8fe1-151b4800f4be','','',NULL), +(7539,'Door Control','ControlPanel','DoorPart','65655277-582c-4c8d-81d2-65399aeded08','','',NULL), +(7540,'Agrippa','Radar','MidRangeRadar','85d23bcf-e781-4321-a4ed-f8cc3e36e299','','','Item Type: Radar\nManufacturer: WillsOp\nSize: 2\nGrade: A\nClass: Civilian\n\nA superior quality radar able to accurate provide information on your vehicle\'s surroundings.'), +(7541,'ForceFlex Undersuit Ember Camo','Armor','Undersuit','511ab0de-9cf3-45be-ac7a-8d3420f2c98a','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nVirgil\'s ForceFlex is the next generation in undersuit technology. Rated for combat as well as industrial work, you can rest assured that the comboweave will keep you protected in whatever situation you put it through.'), +(7542,'Sledge II Mass Driver Cannon','Weapon','Gun','c657c03c-6ac6-4da6-ab70-bfab52804444','','','Manufacturer: Klaus & Werner\nItem Type: Mass Driver Cannon\nSize: 2\n\nThe Klaus & Werner Sledge II Mass Driver Cannon is a hard-hitting ballistic weapon capable of firing multiple types of ammunition. This weapon’s increased shield penetration capabilities comes at a cost, however. Magazine space is limited, so ammunition must be replenished regularly. Because it does not use energy-based projectiles, the K&W mass driver has a reduced power cost and therefore results in a reduced EM signature.'), +(7543,'AEGS_Javelin_SCItem_Seat_Bridge_Right_RemoteTurret_Blocked','Seat','UNDEFINED','b39bb849-676e-4234-9f55-a68dec6efd93','','',NULL), +(7544,'Landlite Boots Seagreen','Char_Clothing_Feet','UNDEFINED','304c8e73-b168-4082-8024-7002d71a4e3f','','','Who says work boots can\'t be comfortable? Grindstone\'s Landlite boots are built with a breathable synth-leather material to keep your feet dry, a contoured, memory footbed, and a slip-resistant outsole, making it perfect for whatever worksite you throw at it.'), +(7545,'Door Control','Door','UNDEFINED','73f56922-4480-4c42-8e46-69ec275ccea3','','',NULL), +(7546,'MacFlex Core \"Rucksack\"','Armor','Torso','782bb2ca-50b2-4e19-8518-b5e3abffdbd9','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(7547,'Seat','SeatAccess','UNDEFINED','828db412-66f7-4e68-a5e0-5cd352561347','','',NULL), +(7548,'GP-33 MOD \"Quite Useful\" Grenade Launcher','Weapon','Medium','a67d3f66-790a-4a4b-97df-8ec0723cb163','','','Manufacturer: Behring\nItem Type: Grenade Launcher\nClass: Ballistic\n\nMagazine Size: 6\nRate Of Fire: 40 rpm\nEffective Range: Variable (80m)\n\nAttachments: Optics (S1), Barrel (N/A), Underbarrel (S1)\n\nThe military-grade GP-33 MOD launcher fires 40mm grenades to clear rooms and flush out enemies behind cover thanks to Behring\'s precision design that primes each grenade to explode on impact. One of the many items Wikelo has acquired in his travels, the \'Quite Useful\' edition is a must have for any serious collector.'), +(7549,'ANVL_Hornet_F7C_Mk2_Dashboard_Pilot','SeatDashboard','UNDEFINED','1b9fa3df-12ed-40ec-841f-098a9d01c516','','',NULL), +(7550,'INTK_MISC_Hull_C','FuelIntake','Fuel','90105c00-268b-4bde-8e57-16c795e6a96f','','',NULL), +(7551,'Carryable_1H_CY_converter_relay_1_a','Misc','UNDEFINED','402d3d29-8f06-4169-b91b-05229b5f6ed2','','',NULL), +(7552,'Manned Turret','TurretBase','MannedTurret','5102785b-9f02-46a3-9a5d-a1cebb5db9bf','','',NULL), +(7553,'ARGO_CSV_Cargo_Rack_Top','Container','Cargo','afd82878-534c-4992-80d9-f91c3b762fab','','',NULL), +(7554,'ELD - shirt (04) - name','Char_Clothing_Torso_0','UNDEFINED','4e7a4cee-4a74-4691-8a9b-086ab0fc2a81','','','ELD - shirt (04) - description'), +(7555,'game_chess_1_queen_a','Misc','UNDEFINED','de8110a9-692e-4d4c-99fd-c9e5194e7bff','','',NULL), +(7556,'H_Dashboard_Projector_HUD_ANVL_Valkyrie','Display','UNDEFINED','c93db5a6-0127-433d-a6e8-d8690bed76c6','','',NULL), +(7557,'Venture Helmet Yellow','Armor','Helmet','b5659236-51ac-49a2-9eca-fd3be2356bc7','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover.'), +(7558,'lt_incense_tower_1_a','Cargo','UNDEFINED','a0fa0f95-3e7e-410e-9e57-c51d8e2ae9c7','','',NULL), +(7559,'ClipVest Work Harness Twilight','Char_Clothing_Torso_1','UNDEFINED','632e7e08-5972-4d2a-af1b-c8da1fdf5c87','','','Carrying Capacity: 2K µSCU\n\nStegman\'s ClipVest is a multi-purpose work harness that keeps your tools handy when and where you need them. Built from industrial strength materials, this harness offers a back piece to help alleviate strain and provide counterbalance.'), +(7560,'Door','DockingAnimator','UNDEFINED','37d46e6e-72bb-403f-98cd-a519d93838f4','','',NULL), +(7561,'TroMag Burst Generator','EMP','UNDEFINED','b171c0f3-7e9b-49b7-a6b4-8422315d4a6e','','','Manufacturer: MaxOx\nItem Type: Burst Generator\nSize: 1\nDamage Type: EMP\n\nThe TroMag from MaxOx is a well-designed and reliable EMP-focused burst generator. Its popularity has risen over the years as pilots look for alternatives to Behring’s REP-8. The TroMag boasts a faster charge time than their main competitor but has a smaller effective radius, leaving pilots to decide whether they prefer speed or size.'), +(7562,'Ventra Gloves Twilight','Char_Clothing_Hands','UNDEFINED','bfe9a4fb-b273-4d04-a327-e4670793678a','','','Keep your hands warm and dry with Fiore\'s Ventra gloves. Microstitching creates a snug, tailored fit to keep you looking stylish and warm.'), +(7563,'RSI_Polaris_SeatAccess_Captain','SeatAccess','UNDEFINED','4e009c39-4322-47ae-b557-cc8db07f36f6','','',NULL), +(7564,'Wanderer Boots \"Pathfinder\"','Char_Clothing_Feet','UNDEFINED','94764285-2c27-4a9d-8e7d-c4156751805e','','','Grindstone\'s Wanderer line is an all-purpose boot designed to take any punishment you throw at it. The rare Pathfinder edition is purple with silver highlights, discreetly bringing style to the jobsite.'), +(7565,'Radar_Display_Vanguard','Display','UNDEFINED','c4bee632-c196-489b-aa41-c030cbc4ec92','','',NULL), +(7566,'Stoneskin Undersuit','Armor','Undersuit','6a3daab4-c2c2-4a11-a7a6-a9c77baf6b1d','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nKastak Arms\' Stoneskin is a combat undersuit that are built upon CDS\' famous TCS-4 system based on extensive feedback from the operators who rely on this technology in the field. Offering a myriad of options for armor and EVA capabilities, the Stoneskin is set to rival CDS as a rugged and reliable undersuit.'), +(7567,'Door Control','Door','UNDEFINED','a11b0307-39bb-425c-9ecc-52e78b62c74a','','',NULL), +(7568,'Atlasium (8 SCU)','Cargo','Cargo','40e8e983-15d8-47fd-82ab-6eb1d16c7ba5','','',NULL), +(7569,'Col Head Cover Maroon','Char_Clothing_Hat','UNDEFINED','6cb8150c-6e2d-4d93-9f11-3ba743227215','','','Temp. Rating: -30 / 15 °C\n\nThe Col is an insulated yet lightweight head cover that keeps heat from escaping. The large, chip-resistant faceplate features a cutting-edge GX coating to ensure the purest light quality for viewing the surrounding environs.'), +(7570,'DRAK_Cutlass_Blue_Thruster_Maneuver_Vertical_Negative','ManneuverThruster','JointThruster','9ebaf310-2a4b-43fe-9c2f-8d9daf47539d','','',NULL), +(7571,'Door Control','Door','UNDEFINED','281f8a1a-6eb1-4401-995e-46a89d5e5fb3','','',NULL), +(7572,'WEAPONS','WeaponController','UNDEFINED','7eb841ca-ea71-404e-a40b-00bb2474a32b','','',NULL), +(7573,'Internal Tank','QuantumFuelTank','QuantumFuel','502da9f3-e63f-401a-bbeb-71c730c1b4c7','','',NULL), +(7574,'Partillium','Cargo','Cargo','7f84fe1d-2f18-45d6-b62b-82fac27936d4','','',NULL), +(7575,'Weapon_Rack_1_KSAR_Rifle_Energy_01_Common_001','Usable','UNDEFINED','c80c4b7b-a10d-4d41-9b42-be204bd2a5c4','','',NULL), +(7576,'Raw Ouratite','Cargo','Cargo','7e56f77f-cf29-4631-9bbb-2b8ef039f29f','','',NULL), +(7577,'Access','SeatAccess','UNDEFINED','57abc2d9-0a5b-40ae-9f64-23a7853a1f80','','',NULL), +(7578,'Internal Tank','QuantumFuelTank','QuantumFuel','3c51d1b5-5904-466f-86e6-54acaacbe247','','',NULL), +(7579,'Projector_HUD_Generic','Display','UNDEFINED','93bfb321-c271-4779-93fe-2c8f11d456e4','','',NULL), +(7580,'CRUS_Starlifter_Thruster_Main_Aux_1','MainThruster','FixedThruster','2fbb4b6c-6705-4548-bacb-a47ad847c41a','','',NULL), +(7581,'BEHR_LaserRepeater_Ventilation_S10','WeaponAttachment','Ventilation','ad3c0368-df82-4b5c-a921-8ec6bd505c57','','',NULL), +(7582,'Syulen Tao?moa Livery','Paints','UNDEFINED','66c4ebd3-3053-4d71-aabd-6d55a81987b9','','','Make your Syulen stand out from the crowd with the Tao?moa livery that?s obsidian black marbled with bronze accents.'), +(7583,'TCS-4 Undersuit Black/Grey','Armor','Undersuit','7b620f81-b65d-4242-a6a8-56e668fd43ee','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThis comprehensive Tactical Combat Suit provides a complete sealed suit against vacuum, free range of motion, and interfaces seamlessly with compatible armor systems.'), +(7584,'Seat','Usable','UNDEFINED','2cb3662c-8de8-4172-8618-8cb39ba4b339','','',NULL), +(7585,'Ht_D_Airlock_Door_Ext','Door','AirlockPart','a4ff8a40-7189-424b-a933-eae1e21dee6a','','',NULL), +(7586,'DR Model-XJ2 Repeater','Weapon','Gun','a5ade53b-9c40-477a-aaf8-78b6ef485283','','','Manufacturer: Associated Science & Development\nItem Type: Distortion Repeater\nSize: 2\n\nAdvancing the field of distortion weapons, the DR Model-XJ2 repeater from ASD provides tactical energy disruption that will severely limit any targeted ships operational capacity.'), +(7587,'MISC_Hull_C_Thruster_Mav_Fixed_Bottom','ManneuverThruster','JointThruster','e11c41b3-ba46-4d1e-baac-36d2119ae2f5','','',NULL), +(7588,'Venture Undersuit Blue','Armor','Undersuit','57cd535c-cbde-4dbb-9f6a-e95a954b8ce7','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(7589,'Paint_MPUV_Navy','Paints','UNDEFINED','f343fc44-6c7c-426f-9458-8250e183191a','','',NULL), +(7590,'CNOU_Mustang_Gamma_Thruster_Mav_Fixed_01_Down','ManneuverThruster','FixedThruster','3374c895-9116-4d33-8c09-06a5bdb1073c','','',NULL), +(7591,'Seat','SeatAccess','UNDEFINED','9b63d843-7671-4fe2-b76a-141cb094fb99','','',NULL), +(7592,'display_components_pallet_250x125x025_a_quantum','ShopDisplay','UNDEFINED','44e59835-cb65-4a86-84c6-0cd09a5ebf7b','','',NULL), +(7593,'Door Control','ControlPanel','DoorPart','89e90cc0-2ce4-409e-a173-9e134b724c03','','',NULL), +(7594,'H_Dashboard_Projector_HUD_CRUS_Starlifter','Display','UNDEFINED','69883881-14c8-4b30-8a4a-29b31080534b','','',NULL), +(7595,'Door','Cargo','UNDEFINED','99c7af25-0661-4519-8f15-9e8a71611fa1','','',NULL), +(7596,'Taranite (Raw)','Cargo','Cargo','71cda3aa-e6a9-4917-9266-932e5b53fde5','','',NULL), +(7597,'Bed','SeatAccess','UNDEFINED','0c4a591f-688f-4e4c-b37b-ef96b33f6cdd','','',NULL), +(7598,'Gallant \"Redline\" Rifle','Weapon','Medium','0e6d3999-bc9d-46cf-81ae-7288e556e2d1','','','Manufacturer: Klaus & Werner\nItem Type: Assault Rifle\nClass: Energy (Laser)\n\nBattery Size: 45\nRate Of Fire: 450 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nDependable assault weapons never go out of style. Klaus & Werner maintains that tradition by unveiling the Gallant. This energy-based assault rifle is capable of providing accurate and sustained fire at targets up to medium range, while its high-capacity power system allows operators to fire considerably more shots per battery.\n\nThe Redline edition features a fierce red base paint with black and gold highlights.'), +(7599,'Door Control','ControlPanel','DoorPart','941c530c-597c-4c19-bfd0-92a005fbe38f','','',NULL), +(7600,'Door Control','Door','UNDEFINED','b2ecb585-e600-4351-b645-5158f35b0c29','','',NULL), +(7601,'Carryable_TBO_FL_16SCU_Commodity_ProcessedGoods_OrganHarvesting','Cargo','Cargo','9a616986-f2b7-451a-a2d7-0004acdaaad0','','',NULL), +(7602,'GPI_Relay_3slot_001','Relay','UNDEFINED','4fe58e96-7649-4276-b95e-52e0ea6d7685','','',NULL), +(7603,'Copper (Ore)','Cargo','Cargo','61cadc8f-68a2-4173-98e7-e20b12996304','','',NULL), +(7604,'K7 Pants Twilight','Char_Clothing_Legs','UNDEFINED','7bc2c62b-4278-4349-89dd-22354c531496','','','Carrying Capacity: 3K µSCU\n\nDMC\'s K7 are an all-purpose cargo pants. Four easy access pockets provide extra storage while the triple-stitched polymer weave fabric is designed to withstand all kinds of weather conditions.'), +(7605,'HighTechAirlockExteriorStatusSign','StatusScreen','AirlockPart','8bf3135d-0bd3-4903-bd72-dcdd204295ae','','',NULL), +(7606,'shelf_hat_02x02x04_06Ports','ShopDisplay','Default','174385b0-7213-4022-ac27-0382916e0e8a','','',NULL), +(7607,'BC-Grey Hat','Char_Clothing_Hat','UNDEFINED','7c92e4f4-bd40-46e2-bef7-7f9284ce94cb','','','A comfortable grey cadet hat.'), +(7608,'Door Control','Door','UNDEFINED','11856fe8-b8f0-4dec-bc81-905b1122e24f','','',NULL), +(7609,'WEAPONS','WeaponController','UNDEFINED','12b7627a-e02b-409c-b536-29dabbeb7b30','','',NULL), +(7610,'Worthy Journey T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','a675654f-7da7-420d-a829-a8e6d87016e5','','','Whether you\'re piloting or simply enjoying the ride, a Crusader ship makes it a journey worth taking. This shirt celebrates that spirit by featuring a fleet of Crusader ships plus their iconic logo and tagline.'), +(7611,'TRGT. STATUS','Seat','UNDEFINED','442b7465-6f5e-46c1-9d1c-4b0a0db821ea','','',NULL), +(7612,'TrueDef-Pro Arms','Armor','Arms','1036805c-1d16-43db-ae15-7f04f7c38a66','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(7613,'Door Control','Door','UNDEFINED','e2b79bb5-2fc9-40ae-8d42-c16db4a2ca06','','',NULL), +(7614,'Seat','Usable','UNDEFINED','3687bad6-611b-4102-8962-4cd7bf6aa059','','',NULL), +(7615,'RangeFinder Jacket Element','Char_Clothing_Torso_1','UNDEFINED','5d75de72-422c-4cbc-91b8-8c386270018b','','','Carrying Capacity: 3K µSCU\n\nThis insulation outdoor jacket from DMC is lined with reinforced padding to provide durable comfort for everyday wear.'), +(7616,'Venture Core Twilight','Armor','Torso','9f8cbca6-d5be-4d2c-8bb4-0337410f98b0','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(7617,'Tungsten','Cargo','Cargo','dc6d498c-ad02-449e-87b8-bc71a6f7ff0c','','',NULL), +(7618,'Treadmill','Usable','UNDEFINED','4436389e-bff3-4928-bf91-8bb9791fa60c','','',NULL), +(7619,'Ponos Boots Dark Green','Char_Clothing_Feet','UNDEFINED','846fc398-dbb0-4af7-98e3-f9d4aed7f371','','','Quite simply, R6 Pro\'s Ponos boots were built for backbreaking work. Constructed out of Thermosulate technology, these waterproof and insulated workboots are rated for sub-arctic environments while the composite outsole ignores hazards to maintain traction when you need it most.'), +(7620,'Test_DisplayScreen_PowerPlant','Cargo','Small','9c60a05b-55c3-4717-8e11-2a627a205683','','',NULL), +(7621,'Flight Blade','FlightController','UNDEFINED','b8151561-a48c-4426-b4b5-7308ab699d62','','',NULL), +(7622,'ANVL_Door_Decal_Carrack_elevator','Decal','DoorPart','4f781478-0a70-46e0-811f-d19fd8937e8f','','',NULL), +(7623,'RSI_Apollo_Docking_Arm','Door','UNDEFINED','41852f35-62e0-30f3-34f4-7d21881c3197','','',NULL), +(7624,'clothing_undersuit','Armor','Undersuit','8f053253-5bc0-4a89-a9ca-86887a09f5a7','','','@LOC_PLACEHOLDER'), +(7625,'ADP-mk4 Arms Justified','Armor','Arms','e0d55691-c8cf-4865-9003-b6f69c81278c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nBased on CDS\' ADP-mk4 heavy combat armor, this set has been modified from its original form. When there\'s a difficult job at hand, you want to ensure that you can see it through to the end. This armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers.'), +(7626,'can_drink_3_energy_b','Drink','Can','c604fcb7-6f1b-4f7d-a809-66e4cab5be30','','',NULL), +(7627,'C8 Pisces Red Alert Livery','Paints','UNDEFINED','4a624335-c479-4ede-992b-31d74eb2be59','','','Metallic red and black makes the Red Alert livery a striking choice for the C8 Pisces.'), +(7628,'Flight Blade','FlightController','UNDEFINED','5de236d0-dfe0-428e-8a35-f3b68346bd2f','','',NULL), +(7629,'Elevator Control','Elevator','UNDEFINED','39fe73b4-f8a6-4b71-8463-ebfffa6936da','','',NULL), +(7630,'Origin Black Pawn','Gadget','UNDEFINED','02acd374-f953-4812-a0ad-e55c98b9df5f','','','Made exclusively for Origin Jumpworks and included with the 890 Jump, this black chess piece is a modern version of a classic set.'), +(7631,'Taftan Boots Shale','Char_Clothing_Feet','UNDEFINED','73329971-3bdd-46aa-87c7-38ccf6156f4c','','','Strong, practical, and stylish, these high-cut boots with reinforced straps will be just the thing you need for those long outdoor treks. The slip- and abrasion-resistant soles were constructed from a proprietary composite of recycled plastic and rubber to improve traction without sacrificing flexibility.'), +(7632,'Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','d6ac4215-f750-4c51-abc5-a8546771db55','','','Live in comfort with MuyMuy\'s Davlos line of cotton-synthetic shirts. The durable, yet soft, fabric contains a patented SweatGuard technology that not only whisks away perspiration but helps prevent stains.'), +(7633,'Toughlife Boots Orange','Char_Clothing_Feet','UNDEFINED','98590b81-8fd2-4069-9ff8-d1aa66a59c2d','','','Grindstone\'s done it again. The Toughlife is an all-purpose workboot designed to provide comfort, durability and quality. Featuring a reinforced composite toe and lasercut sole to maximize traction on all surfaces, Toughlife is sure to be your dependable boot, day in and day out.'), +(7634,'Door','Door','UNDEFINED','c86d2aa5-e826-45b1-bc92-02a657fb791c','','',NULL), +(7635,'AEGS_Door_Decal_Avenger_Pod_2','Decal','DoorPart','24bb4a97-3698-4860-aae5-a09dc21383a2','','',NULL), +(7636,'ANVL_Hornet_F7CM_Thruster_Mav_Joint_01','ManneuverThruster','JointThruster','8644049b-02f1-483b-b330-a84a2a6a2cfe','','',NULL), +(7637,'MISC_Prospector_Thruster_Mav_Fixed_03_Top','ManneuverThruster','FixedThruster','ae85ec59-f6c7-4a63-a923-5e02e5890796','','',NULL), +(7638,'Weapon_Rack_RSI_Ursa_Medivac','Usable','UNDEFINED','0130af2c-ff44-40a3-a4f6-6f0fc1f4d2ff','','',NULL), +(7639,'MISC_Prospector_Thruster_Mav_Fixed_01_Top','ManneuverThruster','FixedThruster','2ef8b99c-2154-4859-9157-7e886d88bffd','','',NULL), +(7640,'Custodian \"Executive Edition\" SMG','Weapon','Medium','12d0e35b-c357-4893-af64-46543e483676','','','Manufacturer: Kastak Arms\nItem Type: SMG\nClass: Energy (Laser)\n\nBattery Size: 60\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe Custodian SMG from Kastak Arms focuses on a high rate of fire over damage and accuracy making it an ideal choice for sweeping through tight environments and close quarters combat.'), +(7641,'Concept Shirt Red','Char_Clothing_Torso_1','UNDEFINED','bbf09fe5-0c49-4269-beae-2ce1346f50cb','','','@LOC_PLACEHOLDER'), +(7642,'Lynx Core Rager','Armor','Torso','07598ef6-7a56-49ca-b7ff-8c82e1f96789','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(7643,'DockingTube_Fuel_Ports_ANVL_Carrack','DockingCollar','UNDEFINED','d470199d-f6e3-4efe-8b8f-cdf24286aecb','','',NULL), +(7644,'C8 Pisces Nightbreak Livery','Paints','UNDEFINED','882d760c-2e9a-43f6-9c1f-3fec60214b41','','','Discreetly soar through the night sky in the C8 Pisces with the Nightbreak livery, which is primarily black with red highlights.'), +(7645,'Testudo Arms Earthshake','Armor','Arms','f7753764-2420-446d-9b79-2eda37667d7a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Testudo armor for Quirinus Tech blends battlefield durability with everyday comfort. It weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort.'), +(7646,'Jumping Limes','Cargo','Cargo','e61ef344-def5-42fc-b443-a6099ef05263','','',NULL), +(7647,'Arcus Gloves Yellow','Char_Clothing_Hands','UNDEFINED','1c824ad7-84cf-46a1-b58e-202b5cf25a3c','','','Temp. Rating: -35 / 25 °C\n\nThe Arcus gloves are thin enough to wear on everyday excursions, yet capable of keeping your hands warm in frigid conditions. Textured touch fingertips even allow you to easily access your mobi and other touch screens without removing your gloves.'), +(7648,'Mountaintop Jacket Multitone','Char_Clothing_Torso_1','UNDEFINED','3dfc5dbd-c000-4fb6-82f6-579b97775bce','','','Temp. Rating: -20 / 10 °C\nCarrying Capacity: 1K µSCU\n\nThese insulated, water-resistant jackets are perfect for any jobsite where temperature can be a factor. The Mountaintop from DMC features secure pockets and is made with a vinyl-weave exterior, guaranteeing that rough environments won\'t compromise your warmth.\n\nWomen\'s sizes currently out of stock.'), +(7649,'Weapon_Rack_TMBL_Cyclone_1_Slot_Left','Usable','UNDEFINED','f90a0530-51f2-4494-8c5f-9d1387a492e6','','',NULL), +(7650,'TRGT. STATUS','Seat','UNDEFINED','b534ffc9-8cb6-4d53-b94e-f573409f0af3','','',NULL), +(7651,'Door Control','DockingAnimator','UNDEFINED','435bded3-95e6-4698-9e1a-823f1c12a40e','','',NULL), +(7652,'J-5 Helmet Pyrotechnic','Armor','Helmet','40656389-c9a7-42aa-8a5a-f70d9368dddb','','','Item Type: Light Helmet\nDamage Reduction: 20%\nTemp. Rating: -25 / 65 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nGyson delivers another unique softshell helmet with the J-5. Large optic sensors and an oversized breathing apparatus deliver a striking visage. The distinct design is space-rated and provides a modicum of protection, while keeping the helmet lightweight and affordable. This edition features the colors and logo of the now defunct Pyrotechnic Amalgamated.'), +(7653,'Argus Helmet Red/Silver','Armor','Helmet','4f71177d-43c7-4347-9f85-763560a56395','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s Argus helmet utilizes advanced multi-layered composite construction to provide incredible protection from weapon fire as well as environmental hazards. The tinted visor offers a wide field-of-view to improve situational awareness and unrestricted movement.'), +(7654,'Drivetrain','WheeledController','UNDEFINED','72253c71-4370-4912-957b-f73de130d638','','',NULL), +(7655,'Glow','Cargo','Cargo','45e0b5c6-e108-4562-b20a-1e86775a129b','','',NULL), +(7656,'DRAK_Vulture_Component_Radar','Player','UNDEFINED','e08dd4ff-4b4d-4525-9a14-c2e1ddf56d90','','',NULL), +(7657,'Seat','Usable','UNDEFINED','59ebc1c5-88ca-4fdd-9ef1-b2ca8f97b001','','',NULL), +(7658,'Remote Turret','Turret','GunTurret','ddd85309-3ea5-4d60-a0d9-c182ebe86498','','','Remote Turret'), +(7659,'Beacon Undersuit Sky/Grey','Armor','Undersuit','bc45ae33-cdcf-4ca3-b62c-f7b02e891268','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRSI\'s Beacon undersuit is a general use utility designed to provide total protection against environments and vacuum. Built out of a durable but flexible polymers, the Beacon provides a wide freedom of motion for a variety of body types.'), +(7660,'PAB-1 Arms Desert','Armor','Arms','cf055d20-61b5-4cee-a7fb-f2c1ed74bfd5','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(7661,'MaxLift Tractor Beam Battery','WeaponAttachment','Magazine','c3ba088f-3a92-412b-90a8-de468d76ec2c','','','Item Type: Battery\n\nThis replacement battery powers Greycat\'s MaxLift tractor beam, so you can keep working without any delay.'), +(7662,'Sangar Helmet Grey/Black','Armor','Helmet','168ad48a-ca8b-4272-8c9c-fd0d863959fb','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Sangar helmet from Vigil is both practical and eye-catching, thanks to a prominent brow ridge meant to absorb and disperse strikes through the helmet\'s special impact-resistant inner lining. Featuring high quality diamond laminate lens over the eyes and a top tier dual sensor air filtration system protruding from the front like fangs, Virgil has ensured that the Sangar helmet can take a beating and look good doing it in every situation from a hostile environment to a frantic firefight.'), +(7663,'Bexalite (Raw)','Cargo','Cargo','a8656f54-bc20-4ce2-8753-71b98760ad35','','',NULL), +(7664,'Cordimon Jacket Violet','Char_Clothing_Torso_1','UNDEFINED','11bf60b1-1734-462b-aedd-bf1ab56c9cc3','','','Carrying Capacity: 3K µSCU\n\nStegman\'s classic worker\'s jacket has been a staple of job sites for over seventy years. This duotone pattern is cut from the toughest material meaning you can wear it anywhere, anytime. It may not be armor, but it damn sure feels like it.'), +(7665,'Turret','WeaponMount','WeaponControl','1fc0f4a0-efb6-4562-90d4-df9661c74fea','','',NULL), +(7666,'Nyman Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','7fa687ac-50b2-4db0-886e-b0e4d7e7bccc','','','Carrying Capacity: 1K µSCU\n\nOpalSky\'s Nyman light pullover is perfect to have on hand when lounging poolside or on those chilly nights.'), +(7667,'display_item_noGeo_01Port_Gadget_Utility','ShopDisplay','UNDEFINED','5252be68-60eb-4870-8743-3337be378f36','','',NULL), +(7668,'Door Control','ControlPanel','DoorPart','830e4a78-5645-43d8-857b-64b2b421fb8f','','',NULL), +(7669,'Booth_Table_8_CircularBar_b','Usable','UNDEFINED','c47ed12e-90c0-47a4-ab41-679dffb64b6f','','',NULL), +(7670,'INTK_MRAI_Pulse_LX','FuelIntake','Fuel','0b4d5d2e-3163-435e-ae1f-59106a6cd2ce','','',NULL), +(7671,'HRST_LaserRepeater_Ventilation_S4','WeaponAttachment','Ventilation','17340e60-6b59-441a-af6b-3abb3692c610','','',NULL), +(7672,'Bracewell Boots','Char_Clothing_Feet','UNDEFINED','dcf7ce46-6163-4684-96cc-5aa6e62318cd','','','Durable, dependable, and comfortable. The Bracewell are high ankle boots designed to thrive amidst unpredictable weather conditions with a water-resistant finish, high-traction soles, and a toggle-locked top enclosure to help keep out any precipitation.'), +(7673,'ORC-mkX Helmet Iceborn','Armor','Helmet','3c6998f3-edcd-4098-a7eb-49ad75743bbf','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology that maximizes protection against projectiles, explosives and the elements without hindering the operator\'s agility. Visor is AR crosshair compatible.'), +(7674,'ANVL_Hornet_F7_Mk2_Thruster_Retro_Right','ManneuverThruster','Retro','a3f91739-a0cf-4f4f-90b1-7af51e0842cc','','',NULL), +(7675,'Palatino Helmet Necropolis','Armor','Helmet','d313a06b-1fdb-4a45-992a-3a282ffdf342','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. The fully-enclosed helmet comes equipped with a suite of sensors that connects the wearer to the wider world while providing supreme protection. Visor is AR crosshair compatible.'), +(7676,'un_bowl_fluid_1_a','Food','Consumable','69832e49-b1b3-440a-8b01-e4163c53cae4','','',NULL), +(7677,'Tritium','Cargo','Cargo','72ecfa54-6a7e-4b56-90fe-a18c925d5537','','',NULL), +(7678,'300 Series First Response Paint','Paints','UNDEFINED','8121f249-7c41-4559-8aba-817079b45052','','','First Response paint job for the Origin 300i.'), +(7679,'Dolivine','Cargo','Cargo','cedac811-4ef8-4867-8321-e8da8c046575','','',NULL), +(7680,'Door Control','ControlPanel','DoorPart','e4d9a243-b8b4-46ca-a1ba-e4506b0cbcd5','','',NULL), +(7681,'Prestige MISC Racing Jacket','Char_Clothing_Torso_1','UNDEFINED','582d09b8-76df-4e87-8a57-f60a1fd0ec49','','','Carrying Capacity: 1k µSCU\n\nPart of City Lights\' stylish collection of racewear, the Prestige Origin Racing Jacket is high-quality, durable outerwear that features a colorful asymmetric design celebrating Origin\'s line of luxury racing vehicles.'), +(7682,'MacFlex Arms Red','Armor','Arms','a474b4ef-3368-4f07-ab33-2374a56c92f8','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(7683,'MacFlex Core Olive','Armor','Torso','1ece8d4a-c03f-47bf-b06a-6ac5b8471671','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(7684,'RSI_Constellation_Taurus_CargoGrid_Tail','CargoGrid','UNDEFINED','4612e7cc-4837-4f84-8da1-4104d10523f9','','',NULL), +(7685,'AEGS_Retaliator_OC_Rear_Bomber','Room','UNDEFINED','0d8dc578-3099-42ab-99ca-e9d3131e4048','','',NULL), +(7686,'rod_cargo_rail_1_a_02x01x04_12Ports','ShopDisplay','Default','7675a900-d181-46ae-9619-c2559e0238cc','','',NULL), +(7687,'Emod Stabilizer1','WeaponAttachment','Barrel','0ff25cf5-6f7b-47e8-8842-f12d8abfe68b','','','Manufacturer: ArmaMod\nType: Energy Stabilizer\nAttachment Point: Barrel\nSize: 1\n\nVisual Recoil: -30%\n\nArmaMod designed the Emod Stabilizer1 attachment to improve visual stability allowing for a more precise shot.'), +(7688,'un_medical_box_1_hazard_a','Misc','UNDEFINED','ceb6fcd4-f124-4e58-a6a0-6165dddfdc42','','',NULL), +(7689,'Gallant \"Stormfall\" Rifle','Weapon','Medium','0bb6d34b-143e-4632-a72f-9e42ec87d470','','','Manufacturer: Klaus & Werner\nItem Type: Assault Rifle\nClass: Energy (Laser)\n\nBattery Size: 45\nRate Of Fire: 450 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nDependable assault weapons never go out of style. Klaus & Werner maintains that tradition by unveiling the Gallant. This energy-based assault rifle is capable of providing accurate and sustained fire at targets up to medium range, while its high-capacity power system allows operators to fire considerably more shots per battery.'), +(7690,'ORIG_890_Jump_Thruster_Mav_RSL','ManneuverThruster','FixedThruster','d04d2002-efa0-4f48-a913-3053bc47f6fb','','',NULL), +(7691,'Eyaja Knife','Weapon','Knife','54e47ec3-7805-4f45-a298-7c92eca2d78e','','','Manufacturer: Banu\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nWorthy of any celebration, this Banu-crafted knife features a subtle s-curve along its length with a layered hand-forged blade, a central spine finger-hole, and a golden-hued handle. Intricate filigree is woven throughout the piece and a vibrant blue gemstone adorns the pommel.'), +(7692,'Venture Undersuit Base','Armor','Undersuit','c04c08dd-6a92-452e-bf67-3a2d1dcf6e33','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(7693,'TRGT. STATUS','Seat','UNDEFINED','df1e3725-0bfa-40f5-887f-cc1689908796','','',NULL), +(7694,'MISC Freelancer MIS Missile Launcher','MissileLauncher','MissileRack','2c0a8a0f-b754-4c31-840e-471a1b95111d','','','MISC Freelancer MIS Missile Launcher'), +(7695,'Vehicle_Screen_MFD_Holographic_Prowler_TL','Display','UNDEFINED','0cbfdcac-bb42-4457-9233-fef8d3ebf8a2','','',NULL), +(7696,'Beacon Undersuit Brown/Black','Armor','Undersuit','174718e3-012b-45c2-8c16-48bf0c968ca3','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRSI\'s Beacon undersuit is a general use utility designed to provide total protection against environments and vacuum. Built out of a durable but flexible polymers, the Beacon provides a wide freedom of motion for a variety of body types.'), +(7697,'Door Control','Door','UNDEFINED','2effb9b2-213d-4676-9d92-458cdfb9d78c','','',NULL), +(7698,'Door Control','Door','UNDEFINED','f3cf2919-3ae1-4ff2-9ef8-60d136371a97','','',NULL), +(7699,'VNCL_Gen2_PlasmaCannon_S2','Weapon','Gun','5c85d440-66fc-403f-8e66-2a92fe6678ae','','','@LOC_PLACEHOLDER'), +(7700,'Antium Legs Jet','Armor','Legs','8ca8d79b-1672-4213-a1f8-d063b0752e47','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(7701,'un_jar_glass_3_herbs_a','Misc','UNDEFINED','842e0005-cacf-48e7-8f01-0d529312fbc6','','',NULL), +(7702,'HRST_LaserRepeater_PowerArray_S1','WeaponAttachment','PowerArray','45fe2f96-7fbe-457f-a13c-521dd72dcad2','','',NULL), +(7703,'DockingTube_Fuel_Ports_MISC_Freelancer','DockingCollar','UNDEFINED','60be3af9-771a-4d28-bd46-478c0d4a5be1','','',NULL), +(7704,'ANVL_Valkyrie_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','d6bf4970-95e0-491d-8f3f-526865ea3a0a','','',NULL), +(7705,'100 Series Timberline Livery','Paints','UNDEFINED','a71c0ad8-0cff-47e1-b81d-31faeb18f17b','','','Customize your 100 series ship with the Timberline livery that\'s olive green with orange accents.'), +(7706,'Palatino Core Shadow Gild','Armor','Torso','261904de-e9c4-43da-af2b-9b2b4c9afe7a','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: All\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower. The Shadow Gild variant is dark gray and features stylish gold highlights.'), +(7707,'CSP-68L Backpack Cayman','Armor','Backpack','22eb018b-376e-4718-b1fa-42b14d07e5a6','','','Item Type: Light Backpack\nCarrying Capacity: 54K µSCU\nCore Compatibility: All\n\nBe ready for any situation with the CSP-68L Backpack. Originally designed for the rigors of combat support, this light backpack has become popular thanks to its durability and patented core connector that helps the CSP-68L sit comfortably and balanced on the back. The Cayman edition features a vibrant metallic green finish with geometric patterns for a color that changes slightly based on lighting conditions.'), +(7708,'IndVest Jacket Black','Char_Clothing_Torso_1','UNDEFINED','40710ca0-2cfa-4c7a-83d0-e3678c507e10','','','Carrying Capacity: 5K µSCU\n\nKeep your tools within easy reach with Stegman\'s IndVest. Made from industrial strength materials, this is a rare jacket that\'s both stylish and sensible.'), +(7709,'ThermalFoam','Cargo','Cargo','c79960e4-3bef-40cb-9919-698c2c8a1b40','','',NULL), +(7710,'GME 240-15 Patient Slippers Primrose','Char_Clothing_Feet','UNDEFINED','35610109-b8e8-4e69-a850-a14aff31a8da','','','The standard GME 240-15 Patient Slippers offer necessary foot protection and comfort during a patient\'s visit to a medical facility. Constructed from the same antibacterial fabric as the GME 338-10 Medical Gown, the slippers feature an easy on/off design and an anti-slip coating on the sole.'), +(7711,'Bottle','Bottle','Default','c425609e-03cc-43f7-97c7-87ba0abd6cc3','','','Bottle'), +(7712,'Marias Suit','Char_Clothing_Torso_1','UNDEFINED','bb551027-74c9-4909-ba31-8ca8c981ce46','','','Carrying Capacity: 0.4K µSCU\n\nFiore elevates the three-piece suit with this modern and elegant interpretation. The Marias suit features a stylishly cropped white suit coat with gold accents. Underneath the jacket sits a grey shirt secured at the collar by two golden circular clasps and featuring an elongated, decorated front panel meant to be tucked under the unique lace waistband of the suit\'s black pants.'), +(7713,'RSI_Hermes_Skylight_Armor','AttachedPart','UNDEFINED','287bf5dd-24f4-4977-8e86-925fcbc87f8a','','',NULL), +(7714,'Book','Misc','UNDEFINED','e7a0a086-e8dc-4cf0-b244-02d7eb7367f1','','',NULL), +(7715,'Carryable_2H_CU_tool_socket_set_closed_1_a','Misc','UNDEFINED','3e3cffc4-7cb2-4bc6-af45-370856c3780d','','',NULL), +(7716,'Skellig Pants Dark','Char_Clothing_Legs','UNDEFINED','7bc019eb-d6cd-4732-9b3a-74b9794e9b90','','','Carrying Capacity: 2K µSCU\n\nGet down and dirty with CBD\'s Skellig-wear. These utility pants feature durable vinyl-composite material with reinforced ridged kneepads.'), +(7717,'CS-L Pants','Char_Clothing_Legs','UNDEFINED','e52145a2-c49d-4a96-b55d-5c51dd1fadd9','','','Carrying Capacity: 1K µSCU\n\nKeep it CS-L with these soft, fleece-lined athletic pants from Escar Limited. These loose, relaxed pants provide supreme comfort whether on the move or unwinding.'), +(7718,'Waste','Cargo','Cargo','daf43eba-04fa-4008-b263-c551b60c72a7','','',NULL), +(7719,'bar_box_snagglestick_newaustin','ShopDisplay','Default','6ee7c6d6-3d1b-4005-a6a7-5a201a69a1a5','','',NULL), +(7720,'Corundum','Cargo','Cargo','da493f63-95f7-41fa-823d-a39ff57eb6ec','','',NULL), +(7721,'Seat','SeatAccess','UNDEFINED','0900a344-8a0c-4068-bf8a-805c78f02a0a','','',NULL), +(7722,'Seat','Usable','UNDEFINED','3949d94d-899d-4e35-9846-8f15718dadb8','','',NULL), +(7723,'Scaleweave Undersuit Quagmire','Armor','Undersuit','871c7d2f-bae7-411f-b63e-d64133db1c5f','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThis baseline undersuit from Kastak Arms offers complete protection seal from the elements and compatibility with multiple armor types.'), +(7724,'AllStop','Shield','UNDEFINED','bbd925a4-2699-4d8c-b513-5a97d4f9ca7c','','','Item Type: Shield Generator\nManufacturer: Gorgon Defender Industries\nSize: 1\nGrade: C\nClass: Military\n\nGorgon Defender Industries first created the AllStop shield generator to hold off the Vanduul. They worked so well that many military crafts were known to prefer the AllStop. Just one of the many reasons to have one on your ship.'), +(7725,'SHIELDS','ShieldController','UNDEFINED','c3530c90-100d-4ea8-8f22-3d1d843f27dc','','',NULL), +(7726,'Inquisitor Arms Roughshod','Armor','Arms','22edf1e7-1e76-4a48-a2bf-74ef062600e0','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(7727,'Remote Turret','Turret','GunTurret','2a17a938-cd69-479a-94a6-55e2bc8f72b0','','','Remote Turret'), +(7728,'Datapad','Misc','UNDEFINED','14a9e45b-0e22-4b87-b403-b9022ecca5fd','','','A portable tablet computing device featuring a touchscreen display.'), +(7729,'Radar_Display_ORIG_85x','Display','UNDEFINED','7656d57c-898e-47ae-8647-1e168cc05e6a','','',NULL), +(7730,'Galen Surgical Scrub Top Primrose','Char_Clothing_Torso_1','UNDEFINED','b7fdb295-0a31-453d-8cbc-c4daa116ac19','','','Carrying Capacity: 0.4K µSCU\n\nYou can count on Code Blue Apparel to deliver professional and comfortable medical clothing. The Galen Surgical Scrub Top features a large pocket and a wide wrap across the mid-section for a secure fit. Made with a special anti-bacterial fabric that\'s 99% effective while also being lightweight and wrinkle free.'), +(7731,'weapon_underbarrel_light_wide_purple_01','WeaponAttachment','Light','b2c50bd4-bf09-42d2-b8ad-c2f8919c8192','','',NULL), +(7732,'Food_bowl_rice_01_a','Food','Consumable','2f34059c-cc68-4c3c-8f67-622cb78aff98','','',NULL), +(7733,'Day One Shirt Black','Char_Clothing_Torso_0','UNDEFINED','a959ef3d-7055-4427-952e-e1299c0b7d09','','','This Henley shirt from Stegman\'s is made with AirFlow technology, a stain-resistant, air-cooled fabric that keeps you comfortable and dry.'), +(7734,'Internal Tank','QuantumFuelTank','QuantumFuel','bb88d816-eee1-4eef-a5a4-cec3bdaff005','','',NULL), +(7735,'Altruciatoxin','Misc','Utility','d10198d2-dd87-4cc0-b5e1-3801c87a9595','','','Created by chemically processing the pollen of Revenant Tree (altrucia lacus), common effects of ingesting or smoking altruciatoxin include relaxing of the muscles, sensory enhancement, and lethargy. Heavy usage can cause staining of the tongue.'), +(7736,'Edgewear Pants Dark Green','Char_Clothing_Legs','UNDEFINED','934ffc4e-2499-4c5b-a3b5-816bf0436ffc','','','Carrying Capacity: 4K µSCU\n\nStegman\'s Edgewear utility clothes are made from reinforced nylon weaves and lined with temperature-rated quilted technology to provide you with a little extra protection while on the jobsite. Double knees, reinforced joint pads and extra pockets add comfort and durability to this field-tested and worker-approved clothing line.'), +(7737,'Door Control','ControlPanel','DoorPart','6aebf939-ec72-40cc-bbbe-1023dc92c6c6','','',NULL), +(7738,'Strata Helmet Lodestar','Armor','Helmet','cf258b0f-534f-4e2d-bd92-a6ba04e63751','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design features high quality materials and a next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Lodestar edition is primarily grey with yellow and white highlights.'), +(7739,'Stratus Jacket Yellow','Char_Clothing_Torso_1','UNDEFINED','2d6415ba-097f-49d2-922c-ae86e77e3194','','','Temp. Rating: -20 / 20 °C\nCarrying Capacity: 3K µSCU\n\nEven though it\'s rated to withstand arctic conditions, you won\'t want any snow accumulating on this distinct and dazzling jacket. The Stratus will keep you warm from neck to knees thanks to its high collar and precisely layered pieces.'), +(7740,'Seat','Usable','UNDEFINED','eb2ee623-a51e-4a55-9095-8e8fdbfb1810','','',NULL), +(7741,'Aril Core Black Cherry','Armor','Torso','ccf6ce52-02b4-4e13-8294-03d00a929153','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(7742,'TRGT. STATUS','Seat','UNDEFINED','3df1ade8-b357-4758-8246-58e8b03bbaf1','','',NULL), +(7743,'Turret_Unmanned_KBAR_AA_Ground_EA','Turret','MannedTurret','26705f38-279f-40a3-8135-fab21a2dcc4f','','',NULL), +(7744,'Gladius Nightbreak Livery','Paints','UNDEFINED','6f9edf21-a4aa-4953-83c0-6426fed31308','','','Discreetly soar through the night sky in the Gladius with the Nightbreak livery, which is primarily black with red highlights.'), +(7745,'Personal Storage','Cargo','UNDEFINED','9e2678fa-d84b-4a79-bf9e-f5e03ab84f05','','',NULL), +(7746,'Internal Tank','FuelTank','Fuel','cfb29484-a419-444c-8d34-31c01b564509','','',NULL), +(7747,'AEGS_Door_Decal_SleepingQ','Decal','DoorPart','65fef840-528b-4402-8cfd-b821338adccd','','',NULL), +(7748,'ORC-mkX Helmet Arctic','Armor','Helmet','60561eb9-5fe6-48cf-b00b-faf04ca3b139','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(7749,'IndVest Jacket Purple','Char_Clothing_Torso_1','UNDEFINED','dcb9d08e-cd4f-424f-ac0a-3d1cc7249d5d','','','Carrying Capacity: 5K µSCU\n\nKeep your tools within easy reach with Stegman\'s IndVest. Made from industrial strength materials, this is a rare jacket that\'s both stylish and sensible.'), +(7750,'H_Dashboard_Projector_HUD_ANVL_Legionnaire','Display','UNDEFINED','b9732862-1b0f-4331-8357-637126fc0585','','',NULL), +(7751,'Carryable_2H_CY_container_ore_1_tall_b','Misc','UNDEFINED','4b9dcedb-b3be-4d1a-8558-dfe51f237313','','',NULL), +(7752,'Quartz \"Piconalia\" Energy SMG','Weapon','Medium','af446ac1-0502-4b18-b7be-850fb8ea8cd1','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: SMG\nClass: Energy (Electron)\n\nBattery Size: 50\nRate of Fire: Beam\nEffective Range: 15-20 m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nManufacturer VOLT\'s Quartz SMG utilizes exciting new weapon technology that fires a short range beam that fractures into multiple beams the longer it fires, making it an extremely effective close quarter weapon.\n\nLight up the night this Luminalia with a little help from Pico the Penguin who adorns the side of this blue Piconalia edition.'), +(7753,'Door Control','ControlPanel','DoorPart','ed1970bd-6d0c-4d69-ab96-b821d83855ff','','',NULL), +(7754,'ESPR_BallisticCannon_Barrel_S3','WeaponAttachment','Barrel','978a32c2-3868-45b4-9ff4-9add9e56e8db','','',NULL), +(7755,'Door_Ship_Sensor_Proximity_AEGS_Hammerhead_Turret_Offset','Sensor','DoorPart','046310de-fb21-4ce4-a1b4-ff223652ccca','','',NULL), +(7756,'Oracle Helmet Cold Steel','Armor','Helmet','097ee243-84b4-4f9e-8e33-07ad43efdc88','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(7757,'RSI_Aurora_GS_MR_Thruster_Retro_Right','MainThruster','FixedThruster','2e679730-a80d-481f-bbcd-ea74b4b4f530','','',NULL), +(7758,'Ranta Dung','Cargo','Cargo','2f4786fb-bf69-418c-b0be-352910d83511','','',NULL), +(7759,'ColdSnap','Cooler','UNDEFINED','b5543ea6-b332-47d7-a02c-5f25620d2fd1','','','Item Type: Cooler\nManufacturer: Lightning Power Ltd. \nSize: 2\nGrade: C\nClass: Civilian\n\nWell-balanced performance is the hallmark of the ColdSnap cooler from Lightning Power Ltd., thanks to its ability to easily process the extra heat your ship generates during your day-to-day travels.'), +(7760,'Flight Blade','FlightController','UNDEFINED','60a09ab7-1c17-4726-b321-889b5dd29ab5','','',NULL), +(7761,'MPUV-1P Standard Flight Blade','FlightController','UNDEFINED','83b6e655-d767-4b0c-862e-8894ae30d046','','','Manufacturer: Argo Astronautics\nType: Flight Blade\n\nThis is the standard issue flight blade for the Argo MPUV-1P.'), +(7762,'Carryable_1H_CY_universal_utensil_c','Weapon','Knife','ce41d26b-de3f-46e1-84c3-bfbce127eac2','','',NULL), +(7763,'Carbide Jacket Buckthorn','Char_Clothing_Torso_1','UNDEFINED','7cfd4d7c-66c0-48a6-8db2-0b7c60d81add','','','Carrying Capacity: 1K µSCU\n\nThe rugged, all-weather Carbide jacket from DMC features diamond-quilt detailing, stretch-comfort cuffs, and numerous attachment points for versatile storage options.'), +(7764,'CRUS_Starlifter_Door_Decal_PowerPlant_A','Decal','DoorPart','bdaceabe-c0dc-4688-a248-22531a1522ac','','',NULL), +(7765,'Ajax Security Uniform Jacket','Char_Clothing_Torso_1','UNDEFINED','0aba253a-f590-4ea0-88ae-fa34a5c2d030','','','Carrying Capacity: 2K µSCU\n\nThe Ajax Security Uniform Jacket is a standard security accessory produced by Code Blue Apparel\'s professional division. The jacket is a uniform intended for security professionals and does not provide any armored protection.'), +(7766,'Seat','Usable','UNDEFINED','b6cd3fe6-226d-463b-bb59-7033a15c3df3','','',NULL), +(7767,'Door Control','Door','UNDEFINED','7198986b-576c-4d87-9ed0-989ea00610cf','','',NULL), +(7768,'Outback Legs','Armor','Legs','6c8ef0b2-2970-4ec2-9458-8b3408383a5c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -65 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2k µSCU\n\nThese durable, reinforced leather pants are not only practical for traversal through inhospitable territory, the metal plated boots will keep you protected along the long road ahead.'), +(7769,'Door','Door','UNDEFINED','4df6f38c-1acc-46f5-9514-5b44ef775ff8','','',NULL), +(7770,'Venture Arms Green','Armor','Arms','3c91961c-af58-4aa1-a130-f262aa96399c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(7771,'ARGO_RAFT_Thruster_Retro','MainThruster','FixedThruster','808cbe98-1a5c-4d09-b300-ddfdea56053f','','',NULL), +(7772,'Arrow Standard Flight Blade','FlightController','UNDEFINED','909561b0-830a-4d74-8798-8de89e6f31a1','','','Manufacturer: Anvil Aerospace\nType: Flight Blade\n\nThis is the standard issue flight blade for the Anvil Arrow.'), +(7773,'Flight Blade','FlightController','UNDEFINED','db029157-1711-418c-ab10-6d7e7b0274df','','',NULL), +(7774,'WeaponMount_Gun_S1_default_gatling_ballistic_fps_balance','WeaponMount','WeaponControl','70fcdaf7-fdf8-4d2e-9b8c-889bddbebdd7','','',NULL), +(7775,'Taos Balaclava and Goggles Tactical','Char_Clothing_Hat','UNDEFINED','6e9aea3c-1849-4e21-b79d-6178498a5cc8','','','Fearlessly face any weather with the Taos balaclava and goggles. An ultra-soft inner lining provides warmth and comfort while a special exterior coating repels precipitation. The adjustable headband ensures an ideal fit, and the padding of the anti-fog goggles is integrated directly into the fabric to seal out the elements.'), +(7776,'RSI_Apollo_Thruster_Mav_Bottom','ManneuverThruster','FixedThruster','075eab20-e71a-4338-8f93-ae34127fd2cb','','',NULL), +(7777,'Pioneer I-G Missile','Missile','GroundVehicleMissile','8c28d7a1-c09c-4718-aa5e-bb23821c04db','','','Manufacturer: Behring \nTracking Signal: Electromagnetic \nSize: 1 \n\nBehring prides itself on dependability and the Pioneer is no exception. The updated Oracle EM tracking system has proven itself time and again in numerous consumer-testing reports against similarly classed proximity missiles. Note: This missile may only be launched by ground vehicles.'), +(7778,'Seat','Usable','UNDEFINED','bb84ae26-8dde-49a1-85dc-841c0607d7d8','','',NULL), +(7779,'ANVL_Carrack_Locker','Player','UNDEFINED','b6a7d958-5fd5-4dcc-8f86-2ed6a5e99ab2','','',NULL), +(7780,'RSI_Polaris_Thruster_Retro_Rear_Inner','ManneuverThruster','FixedThruster','91df54bb-61ef-4fa0-8b7f-56e2c08420d1','','',NULL), +(7781,'Golden Medmon','Cargo','Cargo','6c242730-a4be-4e99-b73e-6003d9e38c2f','','',NULL), +(7782,'Door Control','ControlPanel','DoorPart','01110139-794e-4133-9bbe-cbe520c4117d','','',NULL), +(7783,'Tritium','Cargo','Cargo','5cc8e4ef-9164-4d09-b27d-aab359f3067a','','',NULL), +(7784,'CRUS_Intrepid_Thruster_Main','MainThruster','UNDEFINED','38eb0868-2c5f-4f19-96ad-d90efc0b3480','','',NULL), +(7785,'\'WASP\' Repeater','Weapon','Gun','80ab18bb-9bc2-4e4f-a407-06c28e69bea7','','','Manufacturer: Vanduul / Esperia\nItem Type: Laser Repeater\nSize: 2\n\nThis laser repeater is typically found on Vanduul war ships and is commonly known by its UEE Navy designation of \'WASP\'.'), +(7786,'Hydrogen Fuel','Cargo','Cargo','bdf3969b-8257-4284-b9db-1cef61a348ff','','',NULL), +(7787,'100 Series Slate Camo Livery','Paints','UNDEFINED','b2c23ca6-0ed9-473e-b2e6-18cc00e768d4','','','Customize your Origin 100 series ship with this grey camo livery.'), +(7788,'ADP Core Twilight','Armor','Torso','e60f2abe-99b4-4343-adcc-ebb58da27873','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(7789,'Revenant Tree Pollen','Cargo','Cargo','b9aa5b03-ff44-47e1-bf40-c9f05a42ba01','','',NULL), +(7790,'Door','Door','UNDEFINED','10c09c8d-43b7-4717-ba01-2000aa8d0f86','','',NULL), +(7791,'Nitrogen','Cargo','Cargo','28644209-6d3b-4ad2-81aa-3c7cdbf31b2a','','',NULL), +(7792,'ORIG_100i_Winglet_Right','Misc','UNDEFINED','de6e273d-ebfc-4153-9b04-bb6cdd15687f','','',NULL), +(7793,'Prim Shoes Dark Red','Char_Clothing_Feet','UNDEFINED','2fbff736-db29-4eda-9ac4-d7795f287b6c','','','Professional yet casual, the Prim utilizes cutting-edge synthetic construction to provide maximum comfort and a shine that won\'t fade.'), +(7794,'Personal Storage','Cargo','UNDEFINED','a33729d6-44cc-48d6-ade6-5cfd1ee144d1','','',NULL), +(7795,'Nav-E7 Echo Scanner','TurretBase','Unmanned','a1b8ef62-25b0-4ece-a01d-9272219d4a2a','','','Item Type: Turret\nManufacturer: Nav-E7\nSize: 4\n\nThe Echo scanner from Nav-E7 utilizes enhanced long-range sensor capabilities and the manual precision of a remote turret mount to become an indispensable tool during search operations.'), +(7796,'SHIELDS','ShieldController','UNDEFINED','8450ad71-bdc1-49f5-904e-b23bd58e402e','','',NULL), +(7797,'Carryable_2H_CU_crate_weapon_1_01x005x005_a','Misc','UNDEFINED','c9c06a17-ee43-4333-9637-5728450783cc','','',NULL), +(7798,'Huracan','QuantumDrive','UNDEFINED','1ed8932d-3d51-4a5d-a323-d696bad07bef','','','Item Type: Quantum Drive\nManufacturer: Juno Starwerk\nSize: 2\nGrade: B\nClass: Industrial\n\nJuno Starwerk understands that your most important job is to keep your cargo safe. That’s why their Huracan quantum drive prioritizes interdiction shielding, stability, and damage efficiency above everything else.'), +(7799,'Access','SeatAccess','UNDEFINED','82905013-00da-4827-9429-48e7414fb2de','','',NULL), +(7800,'Drone_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','fdb13afc-b735-40cb-9bd7-b9276758cc3b','','',NULL), +(7801,'Day One Shirt Red','Char_Clothing_Torso_0','UNDEFINED','2bd1429c-b08c-4842-9781-b6f29b50fb5a','','','This Henley shirt from Stegman\'s is made with AirFlow technology, a stain-resistant, air-cooled fabric that keeps you comfortable and dry.'), +(7802,'RSI_Apollo_Elevator','AttachedPart','UNDEFINED','45fad372-ef49-50b9-17b0-812aa7aacfa4','','',NULL), +(7803,'Internal Tank','FuelTank','Fuel','b394dd06-9f30-4cb2-9d86-0eae6db76833','','',NULL), +(7804,'Manned Turret','TurretBase','MannedTurret','2ce10451-22ae-4686-8eed-595dcf8188e7','','',NULL), +(7805,'FrostBurn','Cooler','UNDEFINED','4f61e805-f5f4-49b2-a834-cfda713f48db','','','Item Type: Cooler\nManufacturer: Lightning Power Ltd. \nSize: 3\nGrade: C\nClass: Civilian\n\nLightning Power Ltd. has put its years of design expertise and manufacturing know-how to craft the FrostBurn, an effective cooler that can handle the large scale heat management needs of a wide variety of ships on the market.'), +(7806,'Retaliator Invictus Blue and Gold Livery','Paints','UNDEFINED','fa188681-cba7-4701-a45f-f6d64f97ceee','','','Show your support for the newest batch of Navy recruits by customizing your Retaliator with this special Blue and Gold livery to commemorate the 2950 Invictus Launch Week.'), +(7807,'Bed_ORIG_600i_Crew_B','Usable','UNDEFINED','fdd3ee06-566e-4fa5-8104-19e9d888bc3e','','',NULL), +(7808,'C4-160f S5 Hornet Ball Turret','Turret','BallTurret','6bd70c5f-f778-45a5-a4f3-5952d619717d','','','Give your Hornet\'s firepower a boost with the C4-160f. Designed by Anvil specifically for its F7 series, this S5 ball turret can equip two S2 ship weapons.'), +(7809,'ORIG_890_Jump_Thruster_Mav_MSR','ManneuverThruster','FixedThruster','44e41758-bc8c-4d3f-9c86-339df4739a53','','',NULL), +(7810,'Toughlife Boots Green','Char_Clothing_Feet','UNDEFINED','7bbb1088-0369-425e-893f-0c5253545ee7','','','Grindstone\'s done it again. The Toughlife is an all-purpose workboot designed to provide comfort, durability and quality. Featuring a reinforced composite toe and lasercut sole to maximize traction on all surfaces, Toughlife is sure to be your dependable boot, day in and day out.'), +(7811,'Internal Tank','FuelTank','Fuel','b526f15c-ebe8-432b-9519-03cc38e66431','','',NULL), +(7812,'GATS_BallisticGatling_FiringMechanism_S1','WeaponAttachment','FiringMechanism','dcf98f50-c2f0-471c-8afd-1e037262af4a','','',NULL), +(7813,'Balor HCH Helmet Crusader Edition','Armor','Helmet','181f969a-41da-455b-9366-c68899d3631f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. The Crusader Edition was made specifically for the company\'s security services. Visor is AR crosshair compatible.'), +(7814,'Manned Turret','TurretBase','MannedTurret','f4428535-7133-497f-98ef-3774cd730921','','',NULL), +(7815,'Revenant Gatling','Weapon','Gun','a2c01b55-7c88-4b8a-a45c-c99951ab9e11','','','Manufacturer: Apocalypse Arms\nItem Type: Ballistic Gatling\nSize: 4\n\nIf it ain’t broke, don’t fix it. And if you want it broke, aim a Revenant at it. Solidly built on a foundation of centuries-old tech, Apocalypse Arms puts an innovative spin on battle-tested designs to create a rugged ballistic Gatling that can steadily hurtle death across the void. Though it’s slow to spin up and cool down, the Revenant’s dependability makes it a favorite for those expecting to find trouble.'), +(7816,'Celestial','PowerPlant','Power','cfe4539d-2066-4317-8d52-cba38ac3767e','','','Item Type: Power Plant\nManufacturer: Sakura Sun\nSize: 3\nGrade: B\nClass: Civilian\n\nThe Celestial from Sakura Sun improves upon the company’s base large power plant by redesigning the power rate and other key aspects to raise the component’s overall performance.'), +(7817,'Morozov-SH-C Helmet Smokescreen','Armor','Helmet','159eeeac-3523-4d1e-9d42-c67ab378912b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(7818,'Microid Battle Suit Legs Crucible','Armor','Legs','12d6b4ef-7207-46df-a229-c72d537cfe5c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(7819,'ATLS Cold Snap Livery','Paints','UNDEFINED','a7a662e3-77e8-4edc-b591-7847208a02c7','','','Combining bright white with a cool teal, the Cold Snap livery delivers a striking appearance to the ATLS suit.'), +(7820,'Weapon Rack','Door','UNDEFINED','f4dec655-3691-4227-a1f3-c585be8968c8','','',NULL), +(7821,'Mandible Sandcrawler Helmet','Armor','Helmet','95fed5c3-d40d-40b5-84e9-371458b0ff81','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow that you\'re ready to \'bug out\' with the exclusive Mandible helmet from Sakura Sun. Lightweight plating provides protection while metal fangs protrude from the front for an intimidating insectoid shape that walks the line between fun and frightening.'), +(7822,'Star Kitten Damon Helmet','Armor','Helmet','c2cff339-9b7d-48a7-84f8-7868e17e1f6a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nCelebrate your love of Genady Kuzo\'s classic Star Kitten cartoon with this commemorative helmet from Sakura Sun. The custom molding for this medium helmet faithfully recreates the show\'s icon character design without sacrificing its defensive capabilities. Integrated accent lights provide pops of color and highlight the helmet\'s unique silhouette. The helmet is sure to be a collectible among fans of the show and unusual armor enthusiasts. The Star Kitten Damon edition is primarily black to look like Sally\'s close friend who constantly tempts her to join his mischievous adventures.'), +(7823,'TRGT. STATUS','Seat','UNDEFINED','251f2e95-7241-4ef5-88df-bbfe258ef9f4','','',NULL), +(7824,'DRAK_Cutlass_Blue_Thruster_Maneuver_Outer_Bot','ManneuverThruster','JointThruster','66fbb676-14de-48cc-9b6d-a06c8a9088a0','','',NULL), +(7825,'Seat','SeatAccess','UNDEFINED','874e55a1-49ee-44dd-8ed5-a70778fb8558','','',NULL), +(7826,'Vogel','Radar','MidRangeRadar','5b19ed1b-c24b-45ef-975a-70630519ea22','','','Item Type: Radar\nManufacturer: WillsOp\nSize: 0\nGrade: B\nClass: Civilian\n\nAs you ride to destinations new and afar, uncover the unknown with the Vogel radar from WillsOp that features innovative signature filtration and detection algorithms.'), +(7827,'AEGS_Reclaimer_Seat_Drone_Right','Seat','UNDEFINED','e7767c91-86ae-4378-ac79-8a104999fb60','','',NULL), +(7828,'Adrift Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','2f622225-c03f-4c45-a829-171c42b1d32d','','','The Adrift mock neck sweater takes the idea of fashion as entertainment to the next level. This comfortable fiber blend material features a special vid-fabric depicting a dynamic space scene to ensure that people won\'t be able to keep their eyes off you.'), +(7829,'Morozov-SH Core Terracotta','Armor','Torso','c6afc69d-44d0-4ce9-990f-9fb22b58ec7f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12K µSCU\nBackpacks: All\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(7830,'TRGT. STATUS','Seat','UNDEFINED','0c6bbae0-67ba-4538-82ce-cec3835bc306','','',NULL), +(7831,'Sheut','Shield','UNDEFINED','d8c15fce-d188-4ce4-b303-196bc733b5d7','','','Item Type: Shield Generator\nManufacturer: Ascension Astro\nSize: 2\nGrade: B\nClass: Stealth\n\nKeep your shield’s heat from giving you away by using a Sheut. Another outstanding stealth shield generator from Ascension Astro.'), +(7832,'ControlPanel_Screen_LiftControl_9x16','ControlPanel','DoorPart','15f606c3-6c18-4852-85a9-342c3e2ca818','','',NULL), +(7833,'Tablet','Misc','UNDEFINED','ac1c26f2-3ccc-4e2d-a74f-af96a9b62491','','',NULL), +(7834,'ColonialismAirlockTerminalStatusScreen','StatusScreen','AirlockPart','f54c80e3-81cf-42f4-8dd9-1f2dec183361','','',NULL), +(7835,'Mule Smokestack Livery','Paints','UNDEFINED','47ae7c00-2c44-4f99-83c6-a81beb2df921','','','The Mule Smokestack livery features various shades of grey for a sleek and subtle look that\'s sure to impress while on cargo runs.'), +(7836,'ORIG_125a_Winglet_Left','Misc','UNDEFINED','44ade5cb-c657-4a6d-b0d3-7d61e480050f','','',NULL), +(7837,'Radar_Display_KRIG_Wolf','Display','UNDEFINED','571ee086-9417-4e1b-8da3-f18cb9f99b99','','',NULL), +(7838,'Nox Finish Line Livery','Paints','UNDEFINED','d0858a9b-df0e-45be-93f1-a19eb4803fbb','','','Give the Nox a classic racing design with the Finish Line livery. It features a yellow stripe across the front, a white one through the middle, and a grey one on the back.'), +(7839,'ANVL_Carrack_Thruster_Retro','ManneuverThruster','FixedThruster','3fe1d4b8-20d2-4e17-9a70-f0dc1c3b9ab2','','',NULL), +(7840,'Good Enough Shirt Green','Char_Clothing_Torso_0','UNDEFINED','a82ef92b-84d6-4605-9bd3-faf472339907','','','This shirt from an unknown manufacturer has been mended and refashioned to give it a second life. Half of the right sleeve was beyond repair, so the rest of it was turned into an elbow cuff.'), +(7841,'RSI Zeus Missile Launcher','MissileLauncher','MissileRack','81afcf70-56f3-4390-b2c3-4dbe5e342785','','','Item Type: Missile Launcher\nManufacturer: MISC\nSize: 5\nMissiles: 8xS2 \n\nBespoke missile launcher built into the wings of the Tana to make this Reliant variant a deceptively deadly dogfighter.'), +(7842,'K7 Pants White','Char_Clothing_Legs','UNDEFINED','f19e6228-940c-4a60-aace-266a930955c1','','','Carrying Capacity: 3K µSCU\n\nDMC\'s K7 are an all-purpose cargo pants. Four easy access pockets provide extra storage while the triple-stitched polymer weave fabric is designed to withstand all kinds of weather conditions.'), +(7843,'CNOU_HoverQuad_Thruster_Retro','ManneuverThruster','FixedThruster','40310d85-e7b5-4c33-9c71-54cc6eaa93d0','','',NULL), +(7844,'ruto_nvy_bridgeofficer_jacket_01','Char_Clothing_Torso_1','Male','d484f9fb-63f5-4d8b-a909-d3c14fc2ee15','','','@LOC_PLACEHOLDER'), +(7845,'LifeCure Medsticks','Cargo','Cargo','6ad69c48-e535-4d10-8d1a-17036dbd26f4','','',NULL), +(7846,'MASTER_screen_16x9_2_0094x0054_b','Display','UNDEFINED','665e056a-3e90-4cd1-bea5-cc89975c3022','','',NULL), +(7847,'Geist Armor Legs Epoque','Armor','Legs','7b8a3d7b-17c3-4347-971d-b60578e7c6c8','','','Item Type: Light Armor\nDamage Reduction: 20%\nCarrying Capacity: 2.5k µSCU\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them harder to detect, and specialized tubing built into the soles of the boots dampens the sound of footsteps.\n\nThe Epoque edition features a navy and black coloring, finished with baroque gold detailing.'), +(7848,'Internal Tank','FuelTank','Fuel','4a92080a-0202-90be-81cd-e9436e1523a5','','',NULL), +(7849,'Door Control','Door','UNDEFINED','c8d27def-be1d-4530-98a4-8df37e5563f2','','',NULL), +(7850,'RSI_Salvation_Thruster_Main_Large_Top_Left','MainThruster','FixedThruster','62efeb89-4ae7-4d5c-82ae-e33e39186594','','',NULL), +(7851,'AEGS_Redeemer_CargoGrid','CargoGrid','UNDEFINED','2511ad55-181b-4954-878b-cd5f37d8d456','','',NULL), +(7852,'Door Control','ControlPanel','DoorPart','a7f92902-f908-46c2-b264-dcaaab4ecba7','','',NULL), +(7853,'SHIELDS','ShieldController','UNDEFINED','811c06ae-d3dc-468f-98a3-78bfe9755fd5','','',NULL), +(7854,'Battani','Radar','MidRangeRadar','913c5d24-0a71-4c92-b94d-73da62915af7','','','Item Type: Radar\nManufacturer: WillsOp\nSize: 2\nGrade: B\nClass: Civilian\n\nExpand your horizons with the WilsOp Battani radar and its advanced passive detection system.'), +(7855,'ORIG_135c_Thruster_Main_Right','MainThruster','FixedThruster','4bcb71f1-1f1f-4a2b-8fa2-f290bc32ad94','','',NULL), +(7856,'Seat','Usable','UNDEFINED','055428a9-b862-43a9-a093-90bd42a21975','','',NULL), +(7857,'Brightspot Flashlight Purple','WeaponAttachment','BottomAttachment','9f4969d2-074c-448b-ae6b-0697c49cff81','','','Manufacturer: Klaus & Werner\nType: Flashlight\nAttachment Point: Underbarrel\nSize: 1\n\nThe Brightspot flashlight embodies Klaus & Werner\'s engineering ethos. A simple and sturdy design built to withstand intense combat and environmental conditions means the Brightspot always works when you need it most. This special edition projects a purple circle that makes the beam less conspicuous from a distance.'), +(7858,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','fadc2bbf-d8cc-4a9e-ae94-1735d2acffe2','','','Aegis Gladius - Decoy Launcher'), +(7859,'Bed','Usable','UNDEFINED','aa13c392-d2e2-4772-b156-63e025969e06','','',NULL), +(7860,'Guardian Stormburst Livery','Paints','UNDEFINED','7a8f27a1-b8e8-4ac6-b4a6-015d634c04c8','','','A new twist on a understated color combination, the silver of this palette adds a subtle majesty to the more earthen tans and greys of the Stormburst livery.'), +(7861,'Bed_RSI_Phoenix_Master','Usable','UNDEFINED','7b4171da-d595-445c-b6b7-98bd631a1877','','',NULL), +(7862,'Nivala Shoes Tactical','Char_Clothing_Feet','UNDEFINED','66242a93-b551-4966-a73c-10d1360e3590','','','The Alejo Brothers expertly engineered the Nivala shoes to provide high ankle support while remaining lightweight. The shoes mix the company\'s patented FullFlex rubber with synthetic nubuck leather for flexible yet strategic support, and feature cushioning on the heels and balls of the feet for supreme comfort.'), +(7863,'ForceFlex Undersuit Ocean Camo','Armor','Undersuit','c9eb09ae-6975-4ef3-9c65-7cd5dc765394','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nVirgil\'s ForceFlex is the next generation in undersuit technology. Rated for combat as well as industrial work, you can rest assured that the comboweave will keep you protected in whatever situation you put it through.'), +(7864,'Frontier 11 Classic Sand','Char_Clothing_Legs','UNDEFINED','6c9954ef-7fae-48aa-806e-42cf41bd7f20','','','Carrying Capacity: 2k µSCU\n\nConstructed with large pockets and made from durable synth-cloth, the Frontier 11 Classic pants from DMC are a rugged garment designed to handle whatever life might throw your way.'), +(7865,'Perseus Flintlock Livery','Paints','UNDEFINED','401d41f6-ec8d-45e6-bf3c-44ca9530d207','','','Accentuate the strong, angular design of the Perseus with the Flintlock livery. A distinct white section across the middle of the ship divides the pointed front half from the dark foreboding back.'), +(7866,'Door','Door','UNDEFINED','348cdc56-f860-49d9-9fd2-a09769bf77ae','','',NULL), +(7867,'AEGS_Idris_SCItem_Seat_Science','Seat','UNDEFINED','a9aeb804-c1f3-402e-9873-70849f83d99c','','',NULL), +(7868,'ORC-mkV Arms Scorched','Armor','Arms','978726a2-90b7-4c93-a4f5-80b25faa5cbf','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(7869,'Anvil T-Shirt Olive','Char_Clothing_Torso_0','UNDEFINED','37cb7e4e-3904-42b5-9702-54d6503fcc20','','','Show your love for the iconic manufacturer Anvil Aerospace with this dark green shirt, featuring the company\'s logo on the front.'), +(7870,'Mivaldi Pants Seagreen','Char_Clothing_Legs','UNDEFINED','5e9de553-ae0b-42c0-b316-f61f6e71da69','','','Carrying Capacity: 0.5K µSCU\n\nCut to a narrow fit, OpalSky\'s Mivaldi pants feature bold asymmetrical design with smart yet casual dual material styling, making it the perfect addition to any wardrobe.\n\nWomen\'s sizes currently out of stock.'), +(7871,'MTC Citizens for Prosperity Liberation Livery','Paints','UNDEFINED','d722a359-db28-48d7-9ed7-baf4e1ef5bbd','','','Be a beacon of hope by equipping the Citizens for Prosperity Liberation livery, which features the group\'s name and symbol atop a green, black, and grey paint job. Compatible with all Greycat M-series vehicles.'), +(7872,'Horizon Helmet','Armor','Helmet','8845a66f-ec8c-49a5-9c23-4a5c00db7603','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Horizon helmet is a durable and robust environmental enclosed work helmet. The single sheet laminate dome gives you an extremely wide field of view. A pair of side-mounted LED light modules provide additional illumination to make sure you can see what you\'re doing.'), +(7873,'RSI_Polaris_Thruster_Retro_Bottom_Right','ManneuverThruster','FixedThruster','bf1cc00a-6dd0-473e-aaa4-5f1455a6d297','','',NULL), +(7874,'300 Series Gilded Night Paint','Paints','UNDEFINED','0ebd7fd6-3a2d-4d5b-8cf1-b26d71e78178','','','Standard paint job for the Origin 350r.'), +(7875,'GLSN_Shiv_CargoGrid_Main','CargoGrid','UNDEFINED','40635903-b38b-4560-aae9-3b1c4a72d6f9','','',NULL), +(7876,'Carryable_1H_SQ_DataPad_Fluff_StormBreaker_DataFacility_Maintenance','Misc','UNDEFINED','ee90fba5-4912-420a-bd3f-ac641970c74a','','',NULL), +(7877,'Seat','SeatAccess','UNDEFINED','dd361bcb-f60b-48cb-9b2d-2dd344f64c7e','','',NULL), +(7878,'Tolo Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','16680409-81ed-41ad-b4a2-2d8e75e24c2c','','','Carrying Capacity: 1K µSCU\n\nA creatively integrated dickey gives the Tolo its fashionable and unconventional look. This three quarter sleeve shirt also features small epaulettes perched atop each shoulder.'), +(7879,'Door Control','ControlPanel','DoorPart','950e583e-7bf7-46e6-8681-419fa7e2c52c','','',NULL), +(7880,'Lynx Core Draas','Armor','Torso','abde0f88-24cb-4404-8fc1-baf37e855a67','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(7881,'Guardian Sovereign Livery','Paints','UNDEFINED','239272e7-18e6-46ed-a2c3-8fc5563e6230','','','An austere blend of tan and grey offset by an imperial gold highlight brings a sense of authority to the Sovereign livery.'), +(7882,'Door Control','Door','UNDEFINED','ddf7330a-2ffa-4667-a412-ec671e77766f','','',NULL), +(7883,'rockcrack_laser_powercell_storage_rack_occupied_a','Cargo','Cargo','db97aff3-d525-4fa5-b612-6ebf82912de1','','',NULL), +(7884,'PAB-1 Legs Green','Armor','Legs','00a7a4ee-b8b0-4731-9be8-2070ef48e22d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(7885,'DockingTube_Fuel_Ports_ANVL_Pisces_Rescue','DockingCollar','UNDEFINED','4b864bac-758f-4bee-9719-1557afae6c52','','',NULL), +(7886,'Cliffback T-Shirt','Char_Clothing_Torso_0','UNDEFINED','cfcff8c6-0a9d-4a87-adfd-ca73a2edfca4','','','Alejo Brothers\' classic loop tee with a spatter pattern.'), +(7887,'Ardent Boots Red','Char_Clothing_Feet','UNDEFINED','a9b72879-237b-4cf6-9287-e27544f94e81','','','Who says NorthStar can\'t keep it pro? The Ardent boot features a molded rubber sole and all-weather construction to withstand a constant battery from the elements.\n\nWomen\'s sizes currently out of stock.'), +(7888,'300 Series Thunderstorm Paint','Paints','UNDEFINED','2e63de43-753f-4f2a-a457-e735a364d112','','','Standard paint job for the Origin 315p.'), +(7889,'Remote Turret','Turret','GunTurret','6ff7b8e2-5dfc-4a5a-918f-69e8d2422a12','','','Remote Turret'), +(7890,'6CA \'Bila\'','Shield','UNDEFINED','6534d6d3-85dc-4c29-aa3d-80cab37c4fa5','','','Item Type: Shield Generator\nManufacturer: Behring\nSize: 3\nGrade: B\nClass: Civilian\n\n“Built by Behring” is a phrase synonymous with quality. That’s why so many around the Empire trust their 6CA ‘Bila’ large shield generator to provide them with solid performance, impressive durable, and an acceptable degree of stealth.'), +(7891,'AEGS_Sabre_Firebird_Thruster_Retro_Right','ManneuverThruster','FixedThruster','f0182970-811d-4e4f-a500-092f4e280d6b','','',NULL), +(7892,'ControlPanel_Screen_LiftControl_16x9','ControlPanel','DoorPart','27ff03e3-2b7e-4790-bb53-506d1d548827','','',NULL), +(7893,'Door Control','ControlPanel','DoorPart','fbfac16c-d38e-455d-8905-254590286267','','',NULL), +(7894,'Pulse \"Pyrotechnic\" Laser Pistol','Weapon','Small','02e060ad-4f3e-49a0-89af-8ec7de30a59a','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Pistol\nClass: Energy (Laser)\n\nBattery Size: 60\nRate of Fire: 500 rpm (1000 rpm rapid)\nEffective Range: 15m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nThe Pulse Laser Pistol is a fully automatic pistol intended for close quarter combat. VOLT designed the weapon with a unique capacitor that condenses the pistol\'s laser energy, increasing its rate of fire at the cost of greater inaccuracy and a higher risk of overheating. This special edition features Pyrotechnic Amalgamated branding.'), +(7895,'Door Control','ControlPanel','DoorPart','eff46cec-7c44-491d-b4e8-b91c0ae05512','','',NULL), +(7896,'MISC_Reliant_RADR_Display','Display','UNDEFINED','b7dbca55-8ca6-456f-913e-70d938c3c875','','',NULL), +(7897,'Internal Tank','FuelTank','Fuel','6347cc89-9e6a-43a3-a80c-6be1203e7bf3','','',NULL), +(7898,'Morozov-SH Helmet Thule','Armor','Helmet','cbccd69b-b3af-40a4-b71e-4d85a36923d4','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(7899,'Internal Tank','FuelTank','Fuel','18bffbeb-9471-494f-ba76-0e8d2ab3eabc','','',NULL), +(7900,'VNCL_Glaive_Thruster_Retro_Fixed_Left','ManneuverThruster','FixedThruster','d677218d-c0a3-41f0-bcbb-9cab43e7e143','','',NULL), +(7901,'Seat','Usable','UNDEFINED','2fb090f2-a02b-4800-9a5d-56241336ed8c','','',NULL), +(7902,'Distilled Spirits','Cargo','Small','ab06ffca-50db-45d1-aaa1-bab4090a700d','','','A purified beverage produced through the distillation of fermented substances. Possesses at least 20 percent of alcohol by volume.'), +(7903,'Paladin Helmet Black/Silver','Armor','Helmet','7327ea89-c9dc-462b-9517-1739dbfaa184','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Paladin came out of Virgil\'s industrial division as a prototype helmet for salvage and repair operations. Yet its striking design so impressed company executives that they integrated it into their personal armor line. While the helmet\'s look stayed the same, Virgil reworked the design to use a combat rated, durable alloy for its distinct frame and reinforced the plating protecting the back of the head.'), +(7904,'Strata Helmet Shubin Edition','Armor','Helmet','61a4e6ba-b201-4ffd-a1ee-6d9755d6604e','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design features high quality materials and a next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Shubin Edition was made specifically for the company.'), +(7905,'Borase (Ore)','Cargo','Cargo','a0806527-f308-4fbe-b1ff-afe2e9360bb1','','',NULL), +(7906,'Silicon','Cargo','Cargo','5eba843f-8578-43d5-b74e-9aed3d413df1','','',NULL), +(7907,'DYL - jacket - name','Char_Clothing_Torso_1','UNDEFINED','26507c4f-2d1b-423b-8f1c-8fb8e4bee0f9','','','DYL - jacket - description'), +(7908,'Body','Char_Clothing_Legs','Medical','315edbf6-26c7-4065-b592-66a656b09787','','',NULL), +(7909,'Quartz','Cargo','Cargo','90f1dbab-f814-41fa-ad18-e4e232246d92','','',NULL), +(7910,'stand_shop_large_b_Shields','ShopDisplay','UNDEFINED','ff27f747-cc99-4d73-ba85-2fd65976ef9b','','',NULL), +(7911,'MacFlex Backpack White','Armor','Backpack','e4851c07-fddb-40f5-ae65-6fbcfb08ee0c','','','Item Type: Light Backpack\nCarrying Capacity: 50K µSCU\nCore Compatibility: All\n\nThe MacFlex Backpack is a back-mounted hard-shell case that provides extra commodity storage options. Whether bringing extra supplies on a long excursion or filling it with ore after a successful mining run, the MacFlex Backpack will be there to carry the load.'), +(7912,'Door Control','ControlPanel','DoorPart','52525028-4913-48e2-8ed1-c78bd7d965e4','','',NULL), +(7913,'Rockridge Boots','Char_Clothing_Feet','UNDEFINED','73affcbf-4f4a-4290-b4c9-3e261453c8cc','','','With the Rockridge, Grindstone has created a comfortable boot with a wide laced collar that allows wearers to adjust the fit to their level of comfort while still keeping the elements out.'), +(7914,'Scrap','Cargo','Cargo','73fd4415-69ad-463a-b8f0-d1fd6e7d821a','','',NULL), +(7915,'Door Control','Door','UNDEFINED','55776a8a-0a45-4281-8af6-761e0867d21d','','',NULL), +(7916,'Talon Harmony Livery','Paints','UNDEFINED','5a63d2c5-508b-4c3e-8dbb-524ceb09a771','','','The Harmony livery is meant to showcase Humanity\'s peaceful relationship with aliens with a semi-pearlescent blue main coat marked with organic reflective red to suggest the coming together of disparate species and cultures. The Harmony livery has been designed and produced by the UEE\'s Diplomatic Corps and freely licensed to all spacecraft manufacturers. Now Esperia Talon owners can celebrate the UEE\'s intentions of working toward a peaceful galaxy.'), +(7917,'GATS_BallisticGatling_PowerArray_S1','WeaponAttachment','PowerArray','05693c87-2b44-4792-8b37-c3b68bfc71b6','','',NULL), +(7918,'RSI_Polaris_Seat_Access_Pilot','SeatAccess','UNDEFINED','ed5d8700-9014-4f20-81c7-d34a9e979913','','',NULL), +(7919,'VNCL_Scythe_Thruster_side_left','ManneuverThruster','FixedThruster','8f6c7169-965d-4428-bd8c-df61a4b20631','','',NULL), +(7920,'RSI_Apollo_MedGel_Receptacle','Misc','UNDEFINED','7b1c8eac-b8cd-44bb-b2e4-9c8b071a0b67','','',NULL), +(7921,'ESPR_LaserCannon_Ventilation_S1','WeaponAttachment','Ventilation','68cf8143-53cf-4e5c-98d7-c97b3fdf88c5','','',NULL), +(7922,'LeMarque Pants Olive','Char_Clothing_Legs','UNDEFINED','e9e980f2-5949-442b-83c9-d94adb627f1f','','','Carrying Capacity: 0.5K µSCU\n\nClassic cuts never go out of style. A staple of any wardrobe, Derion\'s LeMarque are built for work or play and feature microseam pleats and wrinkle-free material that will guarantee that you\'ll get years out of this classic.\n\nWomen\'s sizes currently out of stock.'), +(7923,'TRGT. STATUS','Seat','UNDEFINED','a0b93ec9-85d9-4ea7-a329-f0213ff3b827','','',NULL), +(7924,'Bed','Usable','UNDEFINED','9fed36b0-d5b4-4306-a009-fa4c8c04b5f3','','',NULL), +(7925,'Morozov-SH-I Helmet Pyrotechnic Spitfire','Armor','Helmet','cd76b3e1-9372-4f16-9aa1-3262f55953ec','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing the same fortified armor plating, special anti-rip protective padding and ample storage, as the Morozov SH, the SH-I industrial variant was designed by RRS to protect workers employed in hostile zones while ensuring they had the full range of motion required to perform their duties. The Pyrotechnic Amalgamated Edition was made specifically for the company\'s mining efforts in Pyro during the 26th century. Visor is AR crosshair compatible.'), +(7926,'Anvil Hornet Mk II S3 Nose Turret','Turret','CanardTurret','dd91d613-369e-415a-a582-2d77b780579c','','','Item Type: Turret\nManufacturer: Anvil Aerospace\nSize: 3\n\nThis military-grade nose turret was designed specifically for the Mk II versions of Anvil\'s F7A and F7C-M to allow for mounting two Size-3 weapons and precise gimbaled tracking of targets.'), +(7927,'ARMR_MISC_Razor_EX','Armor','Medium','26273c33-ca33-4583-b6dd-e79ffb6ce956','','',NULL), +(7928,'Prim Shoes Purple','Char_Clothing_Feet','UNDEFINED','9deee6d1-b4b1-4f22-9d22-93f805250e51','','','Professional yet casual, the Prim utilizes cutting-edge synthetic construction to provide maximum comfort and a shine that won\'t fade.'), +(7929,'Door Control','ControlPanel','DoorPart','9129755c-9a8c-4404-a4eb-dbd8aa282cb9','','',NULL), +(7930,'Manned Turret','TurretBase','MannedTurret','a3fdce87-3b21-40a5-97ab-d26dfe51302c','','',NULL), +(7931,'Snaggle Protein Stick (Pepper^3)','Food','Bar','4a1d5697-fb73-45e0-99ee-59afddbe1bb3','','','NDR: 14\nEffects: Hypertrophic, Dehydrating\n\nSnag one of these premium protein sticks and experience the ultimate in \"real meat\" snacking. Pepper Pepper Pepper Snaggle sticks deliver a triple blast of intense pepper flavor guaranteed to wangjangle your taste buds.'), +(7932,'DRAK_Corsair_Dashboard_Copilot','SeatDashboard','UNDEFINED','f3df5108-bc17-469c-9868-31e466e94ead','','',NULL), +(7933,'Internal Tank','FuelTank','Fuel','307a3629-9171-45f5-b638-1076fbd91be6','','',NULL), +(7934,'Morozov-CH Backpack Red Alert','Armor','Backpack','c618883f-74aa-4597-acbf-99bfd2a5ce86','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nComfortably carry vital gear with the Morozov-CH backpack. This softshell bag is made with an advanced duraweave that\'s lightweight yet ready for battlefield action. It also features several easy to access pockets and a plethora of straps to keep supplies secure and tight to your back.'), +(7935,'Zeus Exploration Helmet Starscape','Armor','Helmet','281de90c-dc1a-4a8c-a892-4a8b78867c47','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -150 / 175 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nThe Zeus Exploration Suit has been designed to honor some of the earliest space pioneers, the RSI crews who developed and tested the Zeus, the first commercial spacecraft. While the suit is styled to match those used centuries ago with attachments for a helmet and backpack, it contains all of the modern technology and conveniences expected by present-day explorers. The Zeus offers good resistance to harsh environments and excellent storage space for sample-collecting during EVAs. This helmet is only compatible with the Zeus Exploration Suit. The Starscape variant honors the black color scheme worn by RSI engineers.'), +(7936,'ANVL_Valkyrie_Turret_Console_Right','Seat','UNDEFINED','2c58f4a2-62a5-4e9c-afc1-057b153e827f','','',NULL), +(7937,'TRGT. STATUS','Seat','UNDEFINED','3d2b2fad-7c84-4663-91ce-7ac9137d080f','','',NULL), +(7938,'Carinite (Pure)','Cargo','Cargo','1b42492c-2691-48e7-b101-5d2f862a42c3','','','Typical carinite sources feature various impurities. However, under certain extremely rare conditions, carinite veins that are more than 90% pure can form. Computing hardware that demands exacting precision will usually seek out pure carinite.'), +(7939,'Shiv','Weapon','Knife','31ef8e9c-1add-414a-87d0-07a38d923ac8','','','Manufacturer: Unknown\nItem Type: Knife\nClass: Melee\n\nSize: N/A\n\nA deadly, improvised knife made by an industrious prisoner by securing a sharpened piece of metal to an OxyPen with a bit of thin cord. Considered contraband within prison facilities.'), +(7940,'m_human_mannequin_deckcrew_undersuit','ShopDisplay','UNDEFINED','fbafd506-2614-44b5-8bad-b12859889c7a','','',NULL), +(7941,'Flight Blade','FlightController','UNDEFINED','5c213fc3-a441-4a42-8e2f-492c5792a3a0','','',NULL), +(7942,'Rhodes Jacket (Modified)','Char_Clothing_Torso_1','UNDEFINED','9d8876f0-95da-4ed5-a70b-0febf3eba61b','','','Carrying Capacity: 1K µSCU\n\nThis version of City Light\'s Rhodes jacket has been modified from its original form. A classic racer jacket elevated by detailed seam work, a collar strap and decorative, eye-catching flourishes on the chest and arms. City Lights has once again redefined fashion and comfort.'), +(7943,'Construction Materials','Cargo','Cargo','8ea40355-f0d8-46e7-9f3b-012667c81da3','','',NULL), +(7944,'Testudo Arms Clanguard','Armor','Arms','6300f7b8-e8af-487c-8df3-4f73929aa9a0','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Testudo armor for Quirinus Tech blends battlefield durability with everyday comfort. It weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort. The Clanguard version has been modified with Vanduul materials and alien artifacts.'), +(7945,'SHIELDS','ShieldController','UNDEFINED','2a4bdd89-d62e-4d7f-838f-beec2bc78a71','','',NULL), +(7946,'DRAK_Vulture_Component_Cooler','Player','UNDEFINED','892c99dd-9dc6-489a-9c02-7e389db936bd','','',NULL), +(7947,'Harlowe Shirt Red','Char_Clothing_Torso_0','UNDEFINED','707de227-4ec3-4afb-bf8d-a180d807f7eb','','','Capable as being worn on its own or as a base for layers, this long-sleeve henley style shirt from Alejo Brothers keeps you stylish and comfortable.'), +(7948,'Fortifier Helmet Ignitor','Armor','Helmet','07ca7b3a-4a3a-4259-99b5-1d4470f745ec','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nProtect your most valuable asset with the Fortifier. Intended for extremely hostile environments, this heavy helmet makes up for its limited visibility with extra plating that protects the neck and back of the head.'), +(7949,'AEGS_Door_Screen_Double','Decal','DoorPart','a9e5bda1-2b09-44ad-8cdb-51dcf5f85b12','','',NULL), +(7950,'Weapon Rack','Usable','UNDEFINED','a75b1551-0879-4d2f-96f4-771d28f3374c','','',NULL), +(7951,'Breton','PowerPlant','Power','e533d75c-9275-48e9-bc93-f49a2c113bc5','','','Item Type: Power Plant\nManufacturer: Juno Starwerk\nSize: 1\nGrade: A\nClass: Industrial\n\nThe Breton embodies exactly what Juno Starwerk engineers wanted out of an industrial power plant — utilitarian, easy to repair and extremely powerful. You’ll be hard pressed to find a better balance of performance and durability from a unit this size.'), +(7952,'AImodule_ATC_NewBabbageATC01','AIModule','UNDEFINED','f877f2cb-e03d-46fb-8130-93194530e597','','',NULL), +(7953,'Carryable_1H_SQ_fruit_jumpinglime_1_a','Food','Plant','fd87f08a-7ee4-49d2-94ef-62407e625f2c','','',NULL), +(7954,'V801-11','Radar','MidRangeRadar','e0750711-1aba-4141-8470-090b1dfc4a6e','','','Item Type: Radar\nManufacturer: GNP\nSize: 1\nGrade: A\nClass: Military\n\nDesigned for the battlefield, the V801-11 is a cut above the rest thanks to the rigid, iterative testing, guaranteeing its performance when you need it most.'), +(7955,'DRAK_Herald_SeatAccess_Support','SeatAccess','UNDEFINED','249cdbb5-c619-4a29-b5db-db6e4a4c5866','','',NULL), +(7956,'RSI_Scorpius_LandingGearSystem','LandingSystem','UNDEFINED','2bdbbeaf-8e2d-4ba2-8d92-072b1432a492','','',NULL), +(7957,'Internal Tank','QuantumFuelTank','QuantumFuel','0d72db6f-09f8-4455-8930-68316798be22','','',NULL), +(7958,'Remote Turret','Turret','GunTurret','8e3362ae-2831-405c-8fdf-fa5b09679b25','','','Remote Turret'), +(7959,'Hydrogen','Cargo','Cargo','f9035429-c185-4dcc-87af-16945bbc08db','','',NULL), +(7960,'NONE_LaserRepeater_FiringMechanism_S3','WeaponAttachment','FiringMechanism','a0c5c42a-4aa2-4784-83d3-f06d1adfaa12','','',NULL), +(7961,'Carryable_2H_CY_container_ore_1_short_c','Misc','UNDEFINED','a3ebffbe-2f82-41be-8e3d-8ea0f9819efa','','',NULL), +(7962,'Door Control','Door','UNDEFINED','f0eea0af-69bf-41ac-acc6-df484ce89f12','','',NULL), +(7963,'fruit_tray_1_d','Misc','UNDEFINED','8775e95c-192a-4dac-aa6f-3489cba447ef','','',NULL), +(7964,'AEGS_Redeemer_Thruster_Main_Left','MainThruster','FixedThruster','cceaff81-945c-4667-a0c8-4d34242b29e8','','',NULL), +(7965,'Lynx Arms Draas','Armor','Arms','05ff08a5-d702-4f47-9e8a-7f6108132ccc','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(7966,'Strata Backpack Lodestar','Armor','Backpack','8dd9f9b6-d7e2-4a65-9e22-212912392689','','','Item Type: Medium Backpack\nCarrying Capacity: 127.5K µSCU\nCore Compatibility: Medium & Heavy\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres.'), +(7967,'BoostPen (Modamphetamine)','FPS_Consumable','Medical','83f76ccf-048a-4981-984f-ded1ad5fbee3','','','Manufacturer: CureLife\nItem Type: Medical Consumable\n\nFrom the Empire’s most trusted medical company, the CureLife BoostPen delivers a dose of the potent stimulant Modamphetamine to increase wakefulness and diminish awareness of pain in emergency situations.'), +(7968,'Flight Blade','FlightController','UNDEFINED','af1b27eb-cdfd-4ff4-9da2-47187650d73b','','',NULL), +(7969,'Human Food Bars','Cargo','Cargo','a12d5792-fcb2-45c2-8967-d7bcb4409903','','',NULL), +(7970,'Reliant Timberline Livery','Paints','UNDEFINED','ea43d1c8-6170-47ef-90bf-1bd33f9ed4cc','','','Customize your Reliant with the Timberline livery that\'s olive green with orange accents.'), +(7971,'Li-Tok Boots Seagreen','Char_Clothing_Feet','UNDEFINED','97bc36f1-4e1e-4672-b137-10ce35f74a90','','','Stylish yet rugged, NorthStar\'s Li-Tok boots are made from a composite nylon fabric, vulcanized rubber grips that hold fast to a variety of surfaces, and reinforced ankle support making these perfect for hanging out or on the job.\n\nWomen\'s sizes currently out of stock.'), +(7972,'Intrepid Foundation Fest Livery','Paints','UNDEFINED','5372cfc8-96dd-4749-9c82-51f3ae71b40a','','','Foundation Festival is an opportunity for Citizens and Civilians to come together and strengthen the foundation of our community. Show your commitment to a better universe with this custom livery.'), +(7973,'ORIG_X1_Thruster_Mav_Fixed_Velocity','ManneuverThruster','FixedThruster','202cd6a5-ed5a-4507-aef7-7f4a15aa194c','','',NULL), +(7974,'Access','SeatAccess','UNDEFINED','87f7ad10-125b-4fe8-9296-30ca94ef1df9','','',NULL), +(7975,'NONE_LaserRepeater_PowerArray_S3','WeaponAttachment','PowerArray','ee533664-b2fa-4fa3-a2bd-132026259d81','','',NULL), +(7976,'Door Control','DockingAnimator','UNDEFINED','4b3ea1b9-56dd-48fc-989c-1941a6aaf803','','',NULL), +(7977,'Flair_Hanging_Dice_01','Flair_Cockpit','Flair_Hanging','727ba1fb-f426-49af-a5fe-841789d95e95','','',NULL), +(7978,'Radar_Display_ANVL_Paladin','Display','UNDEFINED','8a2f1ccf-659e-45d6-b7b4-7b356e8dbc3e','','',NULL), +(7979,'Remote Turret','Turret','GunTurret','6669f795-4d1f-4883-9b50-2c30803db5d8','','','Remote Turret'), +(7980,'VCK-1 \"Payback\" Blade','Weapon','Knife','23934f46-5787-4594-8215-4ffe019345a2','','','Manufacturer: UltiFlex\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nRenowned as Humanity\'s fiercest enemy, the weapons wielded by the Vanduul are some of the most feared in the universe. Taking inspiration from those brutal knives, the VCK-1 from UltiFlex features a split blade, ceremonial detailing, and has been finished with a unique patina that closely resembles the Vanduul\'s own bespoke alloys.\n\nThe Payback edition features red \'X\' markings.'), +(7981,'Outback Legs Molehill Brown','Armor','Legs','cef9d8ba-3f10-47ed-982c-069091443b22','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -65 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2k µSCU\n\nThese durable, reinforced leather pants are not only practical for traversal through inhospitable territory, the metal plated boots will keep you protected along the long road ahead. The Molehill version is dyed a neutral brown to keep you subtle, but not unsightly.'), +(7982,'ASAD_DistortionRepeater_PowerArray_S3','WeaponAttachment','PowerArray','05223102-5a98-4a4a-b5f4-aad50ada7f9d','','',NULL), +(7983,'Xanthule Ascension Helmet','Armor','Helmet','9e992877-60a5-4bc3-983c-50e185c5ffa2','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nAdapted by Syang Fabrication to meet the unique requirements of the Human physique, the Xanthule helmet faithfully recreates the bold silhouette preferred by Xi\'an. When paired with the Xanthule suit, it creates a distinct and eye-catching look. This special IAE 2953 edition is decorated with a copper and white pattern inspired by Gatac Manufacture\'s Syulen.'), +(7984,'Frontier 05 Pants Spring','Char_Clothing_Legs','UNDEFINED','5831f7ee-1eca-46e5-a231-70380178773b','','','Carrying Capacity: 0.5K µSCU\n\nDMC\'s Frontier collection has been a staple of frontier living for centuries. These heavy denim workpants have double-stitched reinforcement and stainguard technology, making them dependable pants for any environment day in and day out.'), +(7985,'Sangar Helmet Orange/Black','Armor','Helmet','f8f2f73d-6d59-402e-92f7-8fac760c39fa','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Sangar helmet from Vigil is both practical and eye-catching, thanks to a prominent brow ridge meant to absorb and disperse strikes through the helmet\'s special impact-resistant inner lining. Featuring high quality diamond laminate lens over the eyes and a top tier dual sensor air filtration system protruding from the front like fangs, Virgil has ensured that the Sangar helmet can take a beating and look good doing it in every situation from a hostile environment to a frantic firefight.'), +(7986,'Fotia Seedpod','Cargo','Cargo','8a196a34-d46f-49cc-8d2b-3a690a18a31a','','',NULL), +(7987,'display_components_platbay_counter_a_1slot','ShopDisplay','UNDEFINED','249446fe-f49e-4407-b37e-3030565c6c09','','',NULL), +(7988,'Zeta-Prolanide','Cargo','Cargo','dcc6046c-c2de-42f2-8bcb-fd9cc94a27b7','','','This chemical is an industrial reactant that has found widespread use neutralizing irradiated materials. Because of how volatile it is, it must be kept in an electrically charged state or else a rapid exothermic reaction may occur before desired.'), +(7989,'HRST_LaserRepeater_Barrel_S3_Storm','WeaponAttachment','Barrel','16b6586e-110c-4ffd-b35e-d959af1320c5','','',NULL), +(7990,'Tona Shoes White','Char_Clothing_Feet','UNDEFINED','d5cb70a3-7444-4a65-a807-a96218e661e2','','','Perfect for hiking or fieldwork, the Tona from R6 Pro is a low-top sneaker built out of breathable Cheofreme materials which not only provide extra protection against impacts, but keep your feet dry.'), +(7991,'Defiance Core Firestarter','Armor','Torso','0db6c2fd-28ca-420d-9a06-687a4d68a795','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nIncorporating the same manufacturing know-how and expertise that the UEE Marines have come to rely on, Clark Defense Systems has designed their civilian-line of Defiance heavy armors to stand firm in the face of even the most adverse combat scenarios with its three-star rated protective plating and fully integrated mobility framework.'), +(7992,'E\'tam','Cargo','Small','b21b65f7-92d9-4173-b695-9706ca5a34dd','','','Created from the leaves of indigenous plants, E\'tam is an organic hallucinogenic drug used by the Xi\'an to slow body function and focus in order to achieve a deeper meditative state. For Humans, the effects are much more severe. E\'tam causes hyper awareness, cognitive enhancement and improved focus. Users can be so engrossed in tasks that they neglect to eat, sleep or take care of other body functions.'), +(7993,'DeconPen Xtra','FPS_Consumable','Medical','d58c8d01-6b52-4a2a-bb11-7ef8e2ebcc7f','','','Manufacturer: CureLife\nItem Type: Medical Consumable\n\nThe DeconPen Xtra from CureLife delivers a rapid injection of both Canoiodide and Hemozal to not only treat radiation exposure but also improve a patient’s overall vitals, getting patients stabilized faster than ever.'), +(7994,'Door Control','Door','UNDEFINED','8850ccda-140e-47a0-9da7-7daa35a660ec','','',NULL), +(7995,'DetoxPen (Resurgera)','FPS_Consumable','Medical','6f961f33-b938-4954-9ba4-7921f366e9bc','','','Manufacturer: CureLife\nItem Type: Medical Consumable\n\nFrom the Empire’s most trusted medical company, the CureLife DetoxPen can rapidly dispense doses of the detoxicant Resurgera during emergency situations to help relieve symptoms associated with high blood drug levels (BDL) and overdoses. Use only as recommended.'), +(7996,'Gasping Weevil Eggs','Cargo','Cargo','e045616f-69ef-47e1-82f8-6b6aef2e5711','','',NULL), +(7997,'Weapon_Rack_MISC_Reliant_Tana_3_Slots','Usable','UNDEFINED','bc41af98-812c-4e66-8453-4e36b1011247','','',NULL), +(7998,'Killshot \"Bleach\" Rifle','Weapon','Medium','f75f27cb-0467-438e-8a13-fe203e802d8e','','','Manufacturer: Unknown\nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 45\nRate Of Fire: 525 rpm\nEffective Range: 50 m\n\nBeauty is in the eye of the beholder, and if you aim just right, so will a round from the Killshot assault rifle. What it lacks in grace, this classic design has its own scrappy charm. \n\nThe Bleach version features a white paintjob.'), +(7999,'Dymantium','Cargo','Cargo','f4136a6f-ac5a-47ac-bdd8-60f91d9cb4eb','','',NULL), +(8000,'Remote Turret','Turret','GunTurret','a0407316-de1e-4cc9-bb45-4d548d9a10d1','','','Remote Turret'), +(8001,'ORIG_M50_Thruster_Main_Dummy','MainThruster','FixedThruster','4a19c59f-773e-4a26-9459-897e80817226','','',NULL), +(8002,'Door Control','Door','UNDEFINED','ad491d3f-9cb7-4864-9f47-f5d48bd17640','','',NULL), +(8003,'tool_manual_1_spanner_b','Misc','UNDEFINED','643bd632-9d65-4cc1-b37f-ca89d0486b24','','',NULL), +(8004,'Medical Bed','Usable','UNDEFINED','35f995a2-b22a-45d6-b334-23986cc42027','','',NULL), +(8005,'Hydrogen','Cargo','Cargo','74c37612-a6d5-4497-a5d2-fcd131d8442c','','',NULL), +(8006,'VNCL_Blade_Thruster_Main_Fixed_02','MainThruster','FixedThruster','002e5ca4-2936-4695-8711-8329fa03af57','','',NULL), +(8007,'Lynx Core Lichen','Armor','Torso','0ec29c10-875e-44a9-8e5f-08f831fdaf3e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(8008,'Twenty-Sided Plushie Green','Misc','UNDEFINED','1273b98d-6183-438f-8f2a-3e5caf258f49','','','Ready to roll? Make your randomly generated numbers a little more squeezable with this plush icosahedron. Each surface of the large green die features a different easy-to-read number.'), +(8009,'VariPuck S4 Gimbal Mount','Turret','GunTurret','aa93f7bf-151d-456d-8657-a2647a5d3510','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 4\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(8010,'RSI_Perseus_Thruster_Mav_Top','ManneuverThruster','UNDEFINED','11c01463-dd1b-4fef-89a9-9f4b545b9d6f','','',NULL), +(8011,'Door','Door','UNDEFINED','b6b8bafd-5f12-4e27-bdd0-d34ecbe1eca9','','',NULL), +(8012,'Inert Materials','Cargo','Cargo','985db7db-586f-4ffd-9e60-f8baf05b8f1d','','',NULL), +(8013,'Chiron Legs Samaritan','Armor','Legs','16297271-4a56-4c93-b46d-418704427ca6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.5 µSCU\n\nBe the first on the scene with the Chiron armor. Designed to provide the essential protection that combat medics need, the armor features ultra-lightweight panelling to keep the wearer quick on their feet without compromising on safety. Crucial, high-impact sections have been reinforced with raised carbon plating on top of a highly durable polyfiber for maximum flexibility.\n\nThe Samaritan edition was styled for first responders to be highly visible. The red, white, and grey color scheme features a white medical cross symbol across the chest and helmet.'), +(8014,'Lengua Sandwich','Food','Junk','59206c7a-a29c-462a-b318-b86f43c30fa9','','','NDR: 38\nEffects: None\n\nPickled, smoked tongue and mustard on rye bread.'), +(8015,'Paradan Boots','Char_Clothing_Feet','UNDEFINED','a5cfa010-ee34-4fab-b77a-ce6a92247e00','','','Built to last, the Paradan boots from Habidash are simple, sturdy, and reliable. The outer layer of the boots is made from a thick synthetic material that will protect the wearer from water, sand, or snow, while the inside features a pliable foam that ensures the boots will remain comfortable for years to come.'), +(8016,'Reclaimer Aphorite Livery','Paints','UNDEFINED','86ed92d2-c794-44ff-88f3-8fe16c2ae491','','','Decorate your Reclaimer with the Aphorite livery, which gets its name and color from the precious purple gemstone prized for its multi-hued tones.'), +(8017,'Venture Arms Starcrossed','Armor','Arms','f2b18d39-edc1-447e-ba23-fc6b1171391c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRobert Space Industries’ Venture Explorer Suit provides exceptional protection against the dangers of space. Designed for those who don\'t know where their next adventure might go, the suit combines comfort and safety without sacrificing mobility. This special Starcrossed edition is modeled after the armor worn by Yuri Ilyin in the famous 25th century vid, Coramor, which inspired the eponymous lovers\' festival.'), +(8018,'Bar_Table_Scrap_01','Usable','UNDEFINED','8518445d-9aed-4977-8c69-ce09dbac621e','','',NULL), +(8019,'Varhey Boots','Char_Clothing_Feet','UNDEFINED','aaba8a52-ac72-4868-a7d3-52bc897a908f','','','The Varhey by R6Pro is a widely popular lightweight workboot made of a durable, but flexible, polyweave that ensures a safe, snug fit.'), +(8020,'VNCL_Gen2_PlasmaCannon_PowerArray_S2','WeaponAttachment','PowerArray','37015725-0548-431e-a591-d6b8c48cae86','','',NULL), +(8021,'Book','Misc','UNDEFINED','c2ddf236-6207-4eb7-8396-0bb8c8df7b26','','',NULL), +(8022,'Silco Shirt Mandalay','Char_Clothing_Torso_0','UNDEFINED','cae003de-fa26-4e14-95e7-ad1dae4d6d66','','','With a sleek design and durable material, the Silco Shirt by Habidash is a comfortable shirt that can be conveniently worn either as an undershirt or on its own.'), +(8023,'Safehab','LifeSupportGenerator','UNDEFINED','21a4d323-3cb1-4ec1-a6b7-be14a73e7951','','','Item Type: Life Support\nManufacturer: Aegis Dynamics\nSize: 4\n\nThis capital-class life support system was designed specifically for the Idris frigate.'), +(8024,'Cargo_Comm_125x3_Metal_Tungsten_a','Cargo','Cargo','d93ddccf-aae0-4b6e-82df-27e5c9e7fc16','','',NULL), +(8025,'Hornet Mk II Lovestruck Livery','Paints','UNDEFINED','447e73c4-3e5b-4f38-b71e-2c2b4ad76a49','','','Inspired by the colors of Coramor, the Lovestruck livery is a stylish metallic pink and black look for your Hornet Mk II.'), +(8026,'AllStop','Shield','UNDEFINED','339bd641-8dfb-4bc1-b273-5ffc5f702fbb','','','Item Type: Shield Generator\nManufacturer: Gorgon Defender Industries\nSize: 1\nGrade: C\nClass: Military\n\nGorgon Defender Industries first created the AllStop shield generator to hold off the Vanduul. They worked so well that many military crafts were known to prefer the AllStop. Just one of the many reasons to have one on your ship.'), +(8027,'MacFlex Backpack Orange','Armor','Backpack','485b0ac2-bfb2-47d0-9bdb-4a9448eefb4f','','','Item Type: Light Backpack\nCarrying Capacity: 50K µSCU\nCore Compatibility: All\n\nThe MacFlex Backpack is a back-mounted hard-shell case that provides extra commodity storage options. Whether bringing extra supplies on a long excursion or filling it with ore after a successful mining run, the MacFlex Backpack will be there to carry the load.'), +(8028,'RSI_Polaris_SeatAccess_Turret_Front','SeatAccess','UNDEFINED','807ca7c8-8f2a-4213-a1d1-a5ecd4c014d9','','',NULL), +(8029,'MacFlex Arms Imperial','Armor','Arms','ad7c4ffa-7d0c-475f-9479-4bbd3a6be9ba','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(8030,'Trawler Scraper Module','SalvageModifier','UNDEFINED','9dd4d8a5-49ab-493f-93cb-0536050cd9b4','','','Manufacturer: Greycat Industrial\nItem Type: Scraper Module\nExtraction Speed: 0.05/0.15\nRadius: 6m\nExtraction Efficiency: 65%\n\nScrape more of a hull in one pass with the Trawler scraper module. While the area of effect is larger than other modules, it is less efficient due to intense heat generating more burn off. Making the Trawler the ideal module to use when a job necessitates speed over efficiency.'), +(8031,'Deep-Space Undersuit Brassy','Armor','Undersuit','d3504f1b-282f-467f-acaa-856c6b904935','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nConfidently venture into the unknown with the Deep-Space undersuit. Smartly designed with several overlapping sections to guarantee the suit\'s integrity, Gyson has created an affordable and fashionable undersuit that helps make space travel more accessible to all.\n\nThe Brassy version features white coloring with bronze accents.'), +(8032,'Testudo Arms Disrupt Camo','Armor','Arms','224d3dcf-4671-41ae-8062-3916928b374c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Testudo armor for Quirinus Tech blends battlefield durability with everyday comfort. It weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort.\n\nThe Disrupt Camo edition utilizes carbon fiber grays and blacks printed in a disruptive pattern to keep your enemies guessing.'), +(8033,'SLAM','FPS_Consumable','Medical','e45d713d-797e-478a-9aa1-30f4ff95c68a','','','Most commonly ingested as a gas. Vials of SLAM are cracked and inhaled. Initially developed as a performance enhancer for athletes, SLAM targets the user\'s nervous system acting as a fear-inhibitor and painkiller. Once the severe physical side effects were discovered, the drug went underground and found popularity among mercs and outlaws who relied on it to provide that slight edge in combat. Unfortunately, SLAM is also heavily addictive, so many of these mercs ended up getting burned out on the drug. Heavy-duty SLAM junkies are easily identifiable in public; they have ‘the shakes’ -- involuntary muscle twitches. Important to note that this is not a sign of withdrawal, simply a side effect.'), +(8034,'Diamond','Cargo','Small','4cf04241-eeb3-4550-9e20-c409ddea6afc','','','An allotrope of the element carbon, diamonds form over billions of years under high heat and pressure. Extremely hard and thermally conductive.'), +(8035,'Draugar Gatling','Weapon','Gun','85726664-e16d-4a24-98f8-7cc8f0ba6f00','','','Manufacturer: Apocalypse Arms\nItem Type: Ballistic Gatling\nSize: 6\n\nReminiscent of a bygone era of space combat, this brutal size six ballistic Gatling from Apocalypse Arms is a very deliberate weapon. Take a moment as the Draugar\'s drum spins up to speed to savor the ruin and destruction that you are about unleash.'), +(8036,'Internal Tank','FuelTank','Fuel','4392d1fe-dfdf-4457-a1cf-6e3787acc4fb','','',NULL), +(8037,'Seat','Usable','UNDEFINED','a6412fd7-5803-4a5c-9e05-d72c5327f3b1','','',NULL), +(8038,'Cupboard','Cargo','UNDEFINED','71d24d50-7780-4b40-88f0-14617d982236','','',NULL), +(8039,'ORC-mkX Legs Nightfire','Armor','Legs','91e37b74-cbf8-4a72-82e4-419d0874a84e','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(8040,'Day One Shirt Twilight','Char_Clothing_Torso_0','UNDEFINED','48a5d955-a3e3-40a6-bc32-c74e6b7e937e','','','This Henley shirt from Stegman\'s is made with AirFlow technology, a stain-resistant, air-cooled fabric that keeps you comfortable and dry.'), +(8041,'CRUS_Starlifter_Thruster_Mav_M2','ManneuverThruster','JointThruster','6082a037-07ac-4288-a3e3-e56cba90225d','','',NULL), +(8042,'Arden-CL Backpack Balefire','Armor','Backpack','7744c18c-397d-40d1-a920-08541048f1e0','','','Item Type: Light Backpack\nCarrying Capacity: 40K µSCU\nCore Compatibility: All\n\nWhether carrying supplies into a combat zone or simply hauling extra gear, the Arden-CL backpack is battle ready and tested. Roussimoff Rehabilitation Systems designed the backpack with a universal core connector allowing it to attach to a wide variety of armors.'), +(8043,'Lunes (Spiral Fruit)','Cargo','Cargo','47b05bf1-2dca-4828-bad9-c8026f11f08b','','',NULL), +(8044,'Personal Care Product','Misc','UNDEFINED','d8f68656-aed0-43cc-b92a-19a04fd05037','','',NULL), +(8045,'Helix I Mining Laser','Mining','Gun','81e1a10a-c7bd-401f-92e1-284115dcd6e1','','','Manufacturer: Thermyte Concern\nItem Type: Mining Laser \nSize: 1\n\nOptimal Range: 15m\nMaximum Range: 45m\n\nMining Laser Power: 630 - 3150\nExtraction Laser Power: 1850\n\nModule Slots: 2\n\nResistance: -30%\nInert Material Level: -30%\n\nOptimal Charge Window Size: -40%\n\nTo some, the effective use of the Helix I has become a sign of a true mining professional. Thermyte Concern gave the laser impressive power that can bypass a deposit\'s resistance but also requires precision handling to hit the optimal charge window. Best deployed at close range, Helix I features two module slots so miners can tailor the laser to their liking.'), +(8046,'VNCL_Scythe_Thruster_Main_Fixed','MainThruster','FixedThruster','4acf6608-0de8-4d42-8d00-aea0888f3513','','',NULL), +(8047,'Arden-CL Backpack Elysium','Armor','Backpack','6d3e0441-f24e-4c38-94b5-ada3af8a4609','','','Item Type: Light Backpack\nCarrying Capacity: 40K µSCU\nCore Compatibility: All\n\nWhether carrying supplies into a combat zone or simply hauling extra gear, the Arden-CL backpack is battle ready and tested. Roussimoff Rehabilitation Systems designed the backpack with a universal core connector allowing it to attach to a wide of variety armors. \n\nThe Elysium edition combines bright gold detailing of winged skulls with a navy blue.'), +(8048,'tool_power_1_impact_driver_a','Misc','UNDEFINED','6a976576-f02b-4a32-9002-b0debbf25543','','',NULL), +(8049,'Deadhead Helmet','Armor','Helmet','cee7e534-e8f4-49a4-a224-60ce7512adc5','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\n\nRemind your enemies that death is coming with the Deadhead helmet. In place of a visor, the ghastly visage of a Human skull, lit from within by an infernal glow, is sure to send any opponent running.'), +(8050,'Screen','Display','UNDEFINED','0dea6453-0158-4afd-ab73-410392df3b11','','',NULL), +(8051,'Seat','Usable','UNDEFINED','d3461baf-2c00-416c-959f-c1bc9be2316a','','',NULL), +(8052,'ARMR_TMBL_Storm','Armor','Medium','a0113201-fb19-4510-9cd8-6d7697a522cd','','',NULL), +(8053,'Door Control','Door','UNDEFINED','80925795-2c5e-415b-b6ed-e5676b4d0ae2','','',NULL), +(8054,'Paladin Shadowfall Livery','Paints','UNDEFINED','9d408a0a-cfbd-4c76-ba56-14a69fe60dce','','','Slip under the radar using this foreboding collection of blacks and greys, featured in the Shadowfall livery.'), +(8055,'StorageCage_Time_CustomLoadout','Cargo','UNDEFINED','cb393330-845f-4d41-a5c0-94393211fd0e','','',NULL), +(8056,'Azrael Helmet Ruby','Armor','Helmet','a106f7b5-705d-4cbb-b9a7-3a7fdf56a2d6','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nWhen flying through the dangerous reaches of space, it\'s common for brave pilots to routinely face down death as part of their every day. Now with the Azrael helmet from CC\'s Conversions you can look the part with the grim visage of a skull peering out from beneath the visor of this otherwise normal looking helmet.\n\nThe Ruby version casts the skull in a bold red light.'), +(8057,'Yeast Extract and Butter Sandwich','Food','Junk','d11bf4cb-2f91-463c-a8e2-0bbe850c01a3','','','NDR: 38\nEffects: None\n\nSavory yeast extract spread and butter on white bread.'), +(8058,'Seat','SeatAccess','UNDEFINED','79ce0c2f-e5d1-4a79-831d-e67f9cface1a','','',NULL), +(8059,'Door Control','ControlPanel','DoorPart','4ffd7fd2-6b57-4714-aa3c-3528bdd9d244','','',NULL), +(8060,'Manned Turret','TurretBase','MannedTurret','982ce3ab-41f4-40bf-a833-6237e7a97893','','',NULL), +(8061,'Tripledown \"Dark\" Pistol','Weapon','Small','738f2d6a-9967-48c2-93aa-4fb7e7e6ba44','','','Manufacturer: Unknown\nItem Type: Pistol\nClass: Ballistic\n \nMagazine Size: 12\nRate Of Fire: 185 rpm\nEffective Range: 10 m\n \nAttachments: Optics (S1), Barrel (NA), Underbarrel (S1)\n\nFiring three shotgun shells with each pull of the trigger thanks to it\'s triple-barrel construction, the bolt-action Tripledown pistol is ready to blast its way through anything from the smallest disagreements to massive dustups.\n\nThe Dark version features gray metal and a yellow accent on the grip.'), +(8062,'SHIELDS','ShieldController','UNDEFINED','d005b805-940e-4aba-af65-fb242543441b','','',NULL), +(8063,'Remote Turret','Turret','PDCTurret','f634427c-f3be-42c2-a042-96976f78b29c','','',NULL), +(8064,'Lifeline Module','MiningModifier','Gun','a133320c-1cd0-4622-99dd-715924d6f928','','','Manufacturer: Greycat Industrial\nItem Type: Mining Module (Active)\n\nLaser Instability: -20\nResistance: -15%\n\nCatastrophic Charge Rate: +60%\n\nDuration: 15 seconds\nUses: 3\n\nThe Lifeline makes a miner\'s work easier by reducing laser instability and lessening resistance within a deposit. Yet, a higher catastrophic charge rate means the process must be carefully managed to avoid an accident.'), +(8065,'TRGT. STATUS','Seat','UNDEFINED','ff9d15db-f2b2-4cc6-b364-daae75184b04','','',NULL), +(8066,'screen_4x3_covalex_datapad','Display','UNDEFINED','ffc845b4-ad4f-4946-b4fa-ba75ae77108f','','',NULL), +(8067,'counter_office_1_straight_02x0075x01_b','Misc','UNDEFINED','ab07a940-f036-4088-b6d1-c2d00c4ce5e1','','',NULL), +(8068,'Balor HCH Helmet Violet','Armor','Helmet','a834a5db-1ff6-46e5-a336-39c06ad32e25','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. Visor is AR crosshair compatible.'), +(8069,'Door Control','Door','UNDEFINED','7e719b6e-3d86-4e54-90fb-b20d467e2fd7','','',NULL), +(8070,'UNE Silver Ingot (Flawed)','Misc','UNDEFINED','227094dc-269c-48d2-99bc-6d75e93e67db','','','A silver ingot cast by the United Nations of Earth (UNE) that is rated as being in flawed condition. These ingots were used in areas of the UNE where technological issues often hampered secure and instant money transfers. This rare item features a worn three ring, six star logo used by the UNE within a circular recess and an elaborate, textured pattern across the rest of it.'), +(8071,'Cutlass Blue Plushie','Misc','Personal','b81bad02-501e-4f2a-a0b4-1a173f6cb3f8','','','This soft plushie is modeled after Drake Interplanetary\'s Cutlass Blue, a patrol ship variant designed to protect citizens and suppress dangerous outlaws.'), +(8072,'Lillo Pants Aqua','Char_Clothing_Legs','UNDEFINED','10f73fb9-c725-4238-8625-3723714775e7','','','Carrying Capacity: 0.5K µSCU\n\nThese slim cut pants from Fiore give you a tailored feel at a fraction of the cost. Built from space-age weaves, the Lillo are a low maintenance, high impact addition to your office wardrobe.'), +(8073,'Monde Core Daimyo','Armor','Torso','d61c205d-300a-4b24-aefa-7e0bcbbfadc1','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12.0 µSCU\nBackpacks: All\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints.\n\nThe Daimyo edition is colored brown and gray with polished steel plating.'), +(8074,'Nitrogen','Cargo','Cargo','0d092f74-eb3c-4e21-a683-b1cd6cf3f9f7','','',NULL), +(8075,'Relay','Relay','UNDEFINED','bcc8fa77-c177-4ee3-983f-bd528ae3676c','','',NULL), +(8076,'Sadaryx','Cargo','Cargo','4027bc86-ac10-4243-8336-b8535c7084a5','','',NULL), +(8077,'Inquisitor Legs Blue','Armor','Legs','b8c861ca-fe1d-4c52-9a1e-66c335a7c2e3','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(8078,'Table_1_Seat_RSI_Polaris_Captain','Usable','UNDEFINED','57119112-5a87-42cb-8bd4-fb6d7230823a','','',NULL), +(8079,'Carryable_Bucket_Mop','Misc','UNDEFINED','95b6796a-e251-4cf1-875e-307d63387367','','',NULL), +(8080,'FUNT','FPS_Consumable','Hacking','95c07bf7-7901-4b70-89d5-c5d383eb229c','','','This powerful cryptokey is considered to be one of the highest caliber hacking tools available. Long rumored to have been originally designed for Advocacy use, these difficult to acquire devices have only recently been making its way into the hands of criminals. Most who have used them say they are worth the effort to acquire. With the cryptokey\'s official Advocacy designation unknown, the name FUNT is a shortening of the device\'s common descriptor - \'fast and untraceable.\''), +(8081,'SalvageInternalStorage_AEGS_Reclaimer','SalvageInternalStorage','UNDEFINED','6bf2f71b-b030-4363-b59c-083818916bb5','','',NULL), +(8082,'Door Control','ControlPanel','DoorPart','9cdc60cf-0cdc-4b2c-9cd6-cec71612e2c8','','',NULL), +(8083,'Venture Core Lovestruck','Armor','Torso','45bc6edb-e6e4-4f9b-80cb-f3396390e11f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRobert Space Industries’ Venture Explorer Suit provides exceptional protection against the dangers of space. Designed for those who don\'t know where their next adventure might go, the suit combines comfort and safety without sacrificing mobility. This special Lovestruck edition features a stylish metallic pink and black color scheme inspired by the colors of the Coramor festival.'), +(8084,'Drake Hat Red Logo','Char_Clothing_Hat','UNDEFINED','a8e32536-61af-420b-be89-11cacc341da0','','','Embody the boldness of Drake Interplanetary by wearing this black hat with the company\'s name in strong red lettering.'), +(8085,'Deadhead Helmet Lucky Break','Armor','Helmet','667f6d7b-f21a-4875-a645-a059ee89a0af','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\n\nRemind your enemies that death is coming with the Deadhead helmet. In place of a visor, the ghastly visage of a Human skull, lit from within by an infernal glow, is sure to send any opponent running.'), +(8086,'Elevator Control','Elevator','UNDEFINED','670e9aee-67d4-4220-8d86-0345480cd627','','',NULL), +(8087,'Carryable_1H_CY_universal_utensil_a','Weapon','Knife','ce611df2-fbc3-4986-93f0-1d5d2d5a550b','','',NULL), +(8088,'ElevatorBase_Waypoint','Elevator','UNDEFINED','49cb57db-c2e8-46f8-93ea-8b827ca395ec','','',NULL), +(8089,'Carnifex Armor Lucky Break','Armor','Torso','15f3ee06-cc61-41c7-89bc-0b5197d0b040','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -5 / 38 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpack Compatibility: Light\n\nThis homemade armor provides a marginal amount of protection but maximum attitude. It\'s aggressively styled with skulls and other intimidating accessories associated with those living on the edge. Wearing such a distinct look may either keep people away... or draw them to you.'), +(8090,'sc_nvy_medical_corpsman_boots_02_01_01','Char_Clothing_Feet','UNDEFINED','269eaaf9-83c9-44fa-a06a-9294c5f27a1d','','',NULL), +(8091,'Draug','Cooler','UNDEFINED','16dc5148-59f5-497b-a2b1-8f6f66513a8f','','','Item Type: Cooler\nManufacturer: Wen/Cassel Propulsion\nSize: 3\nGrade: C\nClass: Civilian\n\nThe Draug balances performance, durability, and stealth. Making this large Wen/Cassel cooler ready to respond to any situation you find yourself in.'), +(8092,'Silicon','Cargo','Cargo','bb0b4382-12d9-4f0a-9ef8-f95e4bc86c46','','',NULL), +(8093,'RSI_Apollo_Medivac_Thruster_Mav','ManneuverThruster','FixedThruster','46db53c7-20ca-610e-6ef7-68eee68318aa','','',NULL), +(8094,'Weapon_Ship_Cz_004','Usable','UNDEFINED','563423b0-17e8-4ec3-828c-57a9706cfb1e','','',NULL), +(8095,'MISSILES','MissileController','UNDEFINED','a72fed63-eca7-4763-ba80-bf36f2b65c86','','',NULL), +(8096,'Radar_Display_1m','Display','UNDEFINED','4d7b0746-992e-486c-86c7-3817ccc7d34c','','',NULL), +(8097,'MISC_FuelRefinery_R','FuelTank','Fuel','b4a0b012-e5a6-48c6-bc1f-8ee7acad335a','','',NULL), +(8098,'sc_nvy_bdu_jumpsuit_01_01_gunner','Char_Clothing_Torso_1','UNDEFINED','594d0ae1-0494-4639-b632-a9de8f9ac37d','','',NULL), +(8099,'Mustang Omega Ship Armor','Armor','Medium','5f1151c2-d9fc-4d20-84bc-9c57ecf61f18','','','Mustang Omega Ship Armor'), +(8100,'Remote Turret','Turret','GunTurret','b22c5a8d-3f04-43e2-8268-8233a2fca65d','','','Remote Turret'), +(8101,'Pico the Penguin Luminalia Plushie','Misc','Flair_Static','33228b90-3fa0-4a32-8cf1-460ae91aa2ce','','','Even Pico the Penguin takes time away from shredding the slopes to celebrate Luminalia. This version of microTech\'s charming mascot features him in a red and green jacket and holding a Luminalia-themed snowboard.'), +(8102,'Vehicle_Screen_MFD_Holographic_Talon_BR','Display','UNDEFINED','f7584c27-1d4b-4d30-8b99-0bab833b5fee','','',NULL), +(8103,'Fortune Highlander Livery','Paints','UNDEFINED','ff7896e4-c353-4cd2-a23f-6e65c907ffa3','','','A deep, earthen green dominates the Fortune Highlander livery, accompanied by a unique copper tinted cockpit.'), +(8104,'Fortune 2955 Auspicious Red Pig Livery','Paints','UNDEFINED','7a44a748-5f3d-47a0-ab93-111326a14118','','','Seek peace and prosperity in the new year with the Auspicious Red Pig livery. Outfit your ship with this bold red base paint complemented by gold accents and a stylized graphic of a pig.'), +(8105,'DynaFlex','Cargo','Cargo','8d56a6d5-1bfa-4fef-af97-09e640622d39','','',NULL), +(8106,'Carryable_2H_FL_EighthSCU_Commodity_Metal','Cargo','Cargo','aa987f43-7d59-425d-b12d-97cfed33087c','','',NULL), +(8107,'Leyland\'s Tortoise','Misc','UNDEFINED','da78eea2-c918-486e-8e65-165f0e04c7c4','','','Leyland’s tortoise is a species of tortoise indigenous to Earth (Sol III). Extremely docile, they are kept as pets by Humans, especially long-haul spacers. Over-collection and habitat destruction have made them nearly extinct in the wild.'), +(8108,'Counter_Bar_1m_DEPRECATED','Usable','UNDEFINED','f95af855-bbe2-41af-a41f-22796589abfb','','',NULL), +(8109,'ARGO_MOLE_Thruster_Retro','ManneuverThruster','Retro','4916e488-e888-486a-8eea-c0ee1278d74c','','',NULL), +(8110,'AEGS_Javelin_Docking_Bay_Airlock','Misc','UNDEFINED','043e81c8-befd-4230-8ffa-e7fc75a204a0','','',NULL), +(8111,'Seat','Usable','UNDEFINED','ccd3d32e-3ea7-4781-8ded-a20ab4fe586d','','',NULL), +(8112,'Inquisitor Core Orange','Armor','Torso','a1321639-6bb0-4729-a1dd-5839dd5ebfaf','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(8113,'AEGS_Eclipse_RADR_Display','Display','UNDEFINED','34132ee7-ce9d-443b-b6aa-1718d64c90a0','','',NULL), +(8114,'Recycled Material Composite','Cargo','Cargo','020cef7e-1581-4b6d-a76c-e513400836b3','','',NULL), +(8115,'Mercury Star Runner Blackguard Livery','Paints','UNDEFINED','180927dc-55d8-4dc8-9b93-561dec31402b','','','Featuring a blue left wing and highlights, the Blackguard livery will make your Mercury Star Runner stand out from the crowd.'), +(8116,'Door Control','Door','UNDEFINED','163f064c-4421-406d-8a6a-754e1d5b139d','','',NULL), +(8117,'Ventra Gloves Sienna','Char_Clothing_Hands','UNDEFINED','118b43e3-3007-4fe6-a4d3-b02d65eecaa0','','','Keep your hands warm and dry with Fiore\'s Ventra gloves. Microstitching creates a snug, tailored fit to keep you looking stylish and warm.'), +(8118,'Dominance-2 Scattergun','Weapon','Gun','ac55431a-d662-4d92-bda7-ea44f27ca597','','','Manufacturer: Hurston Dynamics\nItem Type: Laser Scattergun\nSize: 2\n\nThe harder the fight, the harder the Dominance-2 scattergun works. As its thermal levels increase, the size two weapon from Hurston Dynamics is able utilize cascade technology to turn that thermal potential into an even deadlier close-quarters attack.'), +(8119,'Iodine','Cargo','Cargo','3ba44652-11e5-419e-9745-abe2f64d8dd8','','',NULL), +(8120,'Door Control','ControlPanel','DoorPart','993a444e-4708-4001-8e5c-cb73a3b38959','','',NULL), +(8121,'expo_display_shirts_and_hats_tumbril','ShopDisplay','Default','03237f61-3417-46b4-9f96-73b558991066','','',NULL), +(8122,'facial_hair_017','Char_Head_Beard','UNDEFINED','2d459cc1-f95d-4baa-a118-cbc05bca9d97','','',NULL), +(8123,'Gadget_Cabinet_kegr_fire_extinguisher_01_NoRN_high','Usable','UNDEFINED','9ec20d3c-658a-496d-97d4-41b96741e08b','','',NULL), +(8124,'Stileron','Cargo','Cargo','efaa7c5a-7f37-4da6-a8d1-664f523a782c','','',NULL), +(8125,'RSI_Polaris_SCItem_SeatAccess_Turret_Manned','SeatAccess','UNDEFINED','275ad320-463a-44ae-a704-c4e600f9d146','','',NULL), +(8126,'Carnifex Pants Lucky Break','Armor','Legs','27bfb11d-a2df-4f3a-bb81-14f7e0e64096','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -5 / 35 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nThis homemade armor provides a marginal amount of protection but maximum attitude. It\'s aggressively styled with skulls and other intimidating accessories associated with those living on the edge. Wearing such a distinct look may either keep people away... or draw them to you.'), +(8127,'mobiGlas Charcoal Casing','MobiGlas','Personal','624cebab-2767-4096-8461-72c2b6d707c6','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(8128,'CRUS_Starlifter_Ext_Door_Bottom','Container','UNDEFINED','b21af299-6bfa-4aac-b69e-2fab5d2aa87f','','',NULL), +(8129,'Pingala Seeds','Misc','UNDEFINED','6c16296a-196f-40f9-b369-fa250c476497','','',NULL), +(8130,'Hermes Earthfall Livery','Paints','UNDEFINED','13958c7b-101f-4732-97c7-24aee51946c1','','','Black, beige, and red come together to create a grounded color scheme for the Earthfall livery.'), +(8131,'Door Control','Door','UNDEFINED','33243a3d-fbf3-460b-b53e-40fff51dc93e','','',NULL), +(8132,'ESPR_Prowler_Thruster_Retro_02_Utility','ManneuverThruster','UNDEFINED','6179becb-a72a-4381-b11c-60144d880fa2','','',NULL), +(8133,'Idris Beachhead Livery','Paints','UNDEFINED','319dfd92-a7c3-412a-bbac-852609244ff7','','','Proclaim your presence with the Beachhead livery for the Idris. It uses various shades of beige and brown for a look that stands out against the dark of space.'), +(8134,'TOAG_LaserRepeater_Barrel_S3','WeaponAttachment','Barrel','03cc2a73-1401-44b5-a751-a519b8d42496','','',NULL), +(8135,'Piecemeal Armor Legs Grey','Armor','Legs','a63697d1-8c80-43b0-b2b8-7c16f16f577d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nThis armor was created using repurposed parts from a Caldera armor set to provide the wearer with an extra layer of protection against aggressors and harsh environments.'), +(8136,'ORIG_85X_SCItem_Dashboard_Copilot','SeatDashboard','UNDEFINED','02efba4b-8520-46d0-bf4d-940d9860f523','','',NULL), +(8137,'Performance T-Shirt','Char_Clothing_Torso_0','UNDEFINED','43ca5bd7-4b6c-4b0f-aefe-53e2bb6b765f','','','The Performance t-shirt from City Lights is made from 100% dryweave synthetics, keeping the fabric soft, comfortable and sweat-free.\n\nWomen\'s sizes currently out of stock.'), +(8138,'P8-SC \"Stormfall\" SMG','Weapon','Medium','ff54216e-eef9-497e-b342-0fe4def2f7fb','','','Manufacturer: Behring\nItem Type: SMG\nClass: Ballistic\n\nMagazine Size: 45\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nWhen the top fighting force in the universe chooses a weapon as their standard, it pays to stand up and take notice. The Behring-crafted P8-SC has been the ballistic submachine gun of choice for the UEE Marines since it first came off the production line, but since then, many have come to rely on this weapon for their own personal safety and protection.'), +(8139,'ARMR_MISC_Starlancer_TAC','Armor','Medium','5152457d-4a50-47d6-9528-17b7ab6e3efb','','',NULL), +(8140,'Focus II Module','MiningModifier','Gun','bb54a97f-bdfb-4772-91a1-7273d88bec19','','','Manufacturer: Thermyte Concern\nItem Type: Mining Module (Passive)\n\nOptimal Charge Window Size: +37%\n\nMining Laser Power: 90%\n\nThe Focus II Module uses a modified mining laser crystal to create a larger optimal charge window at the expense of laser power.'), +(8141,'TCS-4 Undersuit Twilight','Armor','Undersuit','0a577d55-3893-4b33-afe0-0fefafc01cf6','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThis comprehensive Tactical Combat Suit provides a complete sealed suit against vacuum, free range of motion, and interfaces seamlessly with compatible armor systems.'), +(8142,'Personal Storage','Cargo','UNDEFINED','63c865cc-ff8f-4f1a-bf68-df30af16592b','','',NULL), +(8143,'shelf_hat_04x01x04_10Ports','ShopDisplay','Default','ed830c12-2284-49c6-a8b4-4e5472a8d9e1','','',NULL), +(8144,'Frontline','QuantumDrive','UNDEFINED','02287bd1-e17b-4f73-bca2-0cded92a9423','','','Item Type: Quantum Drive\nManufacturer: Aegis Dynamics\nSize: 4\n\nThis capital-class quantum drive was designed specifically for the Idris frigate.'), +(8145,'ARGO_MPUV_Thruster_Aux_Fixed_03','ManneuverThruster','FixedThruster','2a04fd49-ad40-40c3-b187-7114a50d4de1','','',NULL), +(8146,'Col_A_Airlock_Tube_Door_Double_Ext_Internal_1','Door','AirlockPart','33c51e3a-8a13-4790-a5ff-c14cb086b4f8','','',NULL), +(8147,'Ginger Five-Spice Kacho','Food','Box','246a120c-7f2d-483f-8724-511379b505ac','','','NDR: 30\nEffects: None\n\nBig Benny\'s kacho is based on traditional family recipes straight from Corel, combining springy noodles and a rich, warm broth to create a taste enjoyed the \'verse over. The Ginger Five-Spice flavor is bright and zesty with a sweet and spicy edge.'), +(8148,'TMBL_Nova_SCItem_Dashboard_Passenger','SeatDashboard','UNDEFINED','17755d82-717a-4f5f-b89e-d9a69f5d5521','','',NULL), +(8149,'Seat','SeatAccess','UNDEFINED','25e32062-9f96-40ef-83c0-8e8709b24221','','',NULL), +(8150,'Prim Shoes Red','Char_Clothing_Feet','UNDEFINED','6df991fa-cb82-4e1f-b74f-c6acdad6adf5','','','Professional yet casual, the Prim utilizes cutting-edge synthetic construction to provide maximum comfort and a shine that won\'t fade.'), +(8151,'Cargo_Comm_125x3_Gas_Fluorine_a','Cargo','Cargo','6cbfe6eb-f66c-447d-b33b-816c62b6204c','','',NULL), +(8152,'Canelo Pants Marigold','Char_Clothing_Legs','UNDEFINED','657869b4-8c4f-489f-93c5-7a0a945f22d2','','','Carrying Capacity: 400 µSCU\n\nWhether you need them for work, play, or rest, the adaptable Canelo Pants from Habidash are guaranteed to fit the bill. Its convenient pockets allow you to carry all your essentials, and its stain-resistant fabric is comfortable enough to be worn for hours.'), +(8153,'Lt_A_Airlock','Usable','UNDEFINED','c3c77ed9-6e5d-450a-9422-b4d6a3528859','','',NULL), +(8154,'Altimont Pants','Char_Clothing_Legs','UNDEFINED','6a5035b6-af8d-49a1-b5a1-efc7118918f6','','','Carrying Capacity: 1K µSCU\n\nOctagon embraces a classic look and makes it boldly modern with the Altimont. These jodhpur style pants feature a slightly flared hip that becomes snug under the knees thanks to built-in garters. A uniquely shaped front seam secured by silver clips on the waist and shin provide further detailing that\'s both subtle and stylish.'), +(8155,'MacFlex Legs Blue','Armor','Legs','33ae835f-53c7-4131-85b0-82d2f75fb081','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(8156,'AAT-34 Turret','Turret','MannedTurret','61f5ac39-4c07-45f7-aff5-c0420604406e','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(8157,'Door','Door','UNDEFINED','bd703016-1294-410c-86c3-118644932b70','','',NULL), +(8158,'Corbel Arms Mire','Armor','Arms','5ebbcd20-815d-4f90-ba7d-75f7ad717b46','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nOriginally designed as a strength enhancement suit to give factory workers better lifting power, CDS found wider application in utilizing its defensive capabilities. It\'s triple-enforced armor plating provides extreme physical protection, with deliberate placing of materials to protect the most vulnerable parts of the body. A series of pneumatic levers offer increased flexibility in the joints, alleviating pressure and weight in key areas to create an accessible and highly protective armor despite its heavy weight.\n\nThe Mire edition features natural greens and industrial grays.'), +(8159,'Giotto Jacket Crusader Edition Teal','Char_Clothing_Torso_1','UNDEFINED','b8af1efa-10e0-445d-bdad-f7d876799956','','','Carrying Capacity: 1K µSCU\n\nFiore elevates the typical suit jacket with the Giotto. Subtle and stylish flourishes include light lines running down the left lapel and a strip of accent fabric along the arm seams that connect across the back of the jacket. The end result is an elegant and inspired addition to any wardrobe.\n\nThe Crusader Edition was made specifically for employees of Crusader Industries.'), +(8160,'Bed','Seat','UNDEFINED','0605ed02-097c-4abb-b574-079667aa78ab','','',NULL), +(8161,'ORIG_85X_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','85f682c4-3cc5-444f-bf33-8b233490fde0','','',NULL), +(8162,'Weapon_Rack_RSI_Zeus_9_Slot','Usable','UNDEFINED','299449b5-68f8-4472-ad16-0b5e957eb2f8','','',NULL), +(8163,'Carinite','Cargo','Cargo','36eb5935-b03c-414e-b767-38eebff0847d','','','A rare mineral because the extreme pressure needed for its formation is very uncommon, it is in high demand thanks to its use in advanced computer processors and other cutting-edge electronics.'), +(8164,'CF-447 Rhino Repeater','Weapon','Gun','99df9822-458a-4e0b-8e95-3525848f79f2','','','Manufacturer: Klaus & Werner\nItem Type: Laser Repeater\nSize: 4\n\nWhen a ship comes charging at you with a CF-447 Rhino strapped on, it is an experience few pilots will ever forget. This formidable size four laser repeater from Klaus & Werner is well suited for medium-range engagements, but packs a wallop up close.'), +(8165,'RSI_Polaris_Thruster_Main_Inner','MainThruster','UNDEFINED','697ad29e-6757-40e3-ac3a-9b6a5d41175c','','',NULL), +(8166,'universal_necksock_undersuit_01','Char_Flair','UNDEFINED','425bcac8-99e9-493e-aa41-0f8904856e45','','',NULL), +(8167,'H_Dashboard_Projector_HUD_ANVL_Legionnaire_CoPilot','Display','UNDEFINED','07159cad-5d99-4a4a-9c7a-d4b6a342469f','','',NULL), +(8168,'Book','Misc','UNDEFINED','588a0b69-91fc-4d32-8dde-f1860a31cf79','','',NULL), +(8169,'Pisces PHB Flight Blade','FlightController','UNDEFINED','c18f4bbe-e9a0-4a43-b1ba-7fad5a3387d1','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Anvil Pisces with the PHB Flight Blade from Broad & Rabiee. By re-allocating forward thrust resources, you can expect your ship deliver increased precision handling during tight maneuvers.'), +(8170,'Deri Gloves Arctic','Char_Clothing_Hands','UNDEFINED','4a202cdb-394a-471b-a772-dc46cd33541e','','','Maintain a tactile sense of the world while also keeping your hands safe and dry with the Deri fingerless gloves. Featuring a comfortable inner lining, lightweight plating on the back of the hand and slip resistant palm padding, the Deri gloves are an ideal choice for a wide variety of tasks.'), +(8171,'Calister Pants Armadillo','Char_Clothing_Legs','UNDEFINED','5de8da89-6384-41b3-a3d8-9487768b9b6c','','','Carrying Capacity: 1000 µSCU\n\nThe Calister Pants by Habidash are made with thick synthetic fabric intended to ensure coverage of the wearer\'s legs even in adverse environmental conditions.'), +(8172,'DeltaMax','PowerPlant','Power','0a713a9d-7e70-4586-87a6-ce08c337a8ea','','','Item Type: Power Plant\nManufacturer: Tyler Design & Tech\nSize: 1\nGrade: B\nClass: Stealth\n\nExpert engineering made significant breakthroughs possible when designing the DeltaMax, resulting in a stealth signature even lower than originally estimated by the team at Tyler Design and Tech.'), +(8173,'Remote Turret','Turret','GunTurret','88af5f26-b49f-4b7a-b7a6-e4488525fbb7','','','Remote Turret'), +(8174,'INTK_RSI_Constellation_Aquila','FuelIntake','Fuel','93692842-612d-4e34-9180-33c930572969','','',NULL), +(8175,'CF-557 Galdereen Repeater','Weapon','Gun','01948ce4-5951-469a-b92c-875c96dd4e4c','','','Manufacturer: Klaus & Werner\nItem Type: Laser Repeater\nSize: 5\n\nWith a bite as fearsome as its fanged namesake, the Klaus & Werner CF-557 Galdereen laser repeater is a solid choice for a wide range of vehicles thanks to its high rate of fire and consistent efficacy.'), +(8176,'f_human_mannequin_odyssey_suit_01','ShopDisplay','UNDEFINED','970e5c8a-d7c9-4adb-a868-edca50206809','','',NULL), +(8177,'Remote Turret','Turret','GunTurret','6d9dbe36-882b-41e4-a273-b68191854a8e','','','Remote Turret'), +(8178,'RSI_Mantis_Thruster_Mav_Joint','ManneuverThruster','JointThruster','8a5bea1c-8995-46bb-8118-b22941cd4bcf','','',NULL), +(8179,'can_drink_3_energy_pips_shop_1x5_a','ShopDisplay','Default','b41e6393-ee29-440a-84e3-2bf3a0421f69','','',NULL), +(8180,'Radar_Display_Retaliator','Display','UNDEFINED','0f3f52ae-4d42-496e-8b54-a0e68607b25d','','',NULL), +(8181,'Deadhead Helmet','Armor','Helmet','eb65b1b2-beed-4600-8c9b-0f7c89558167','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\n\nRemind your enemies that death is coming with the Deadhead helmet. In place of a visor, the ghastly visage of a Human skull, lit from within by an infernal glow, is sure to send any opponent running.'), +(8182,'DRAK_Dragonfly_SCItem_Dashboard_Pilot_Pink','SeatDashboard','UNDEFINED','a75b5bf1-aad4-4ae7-b403-61caeca24351','','',NULL), +(8183,'ROC Black Cherry Livery','Paints','UNDEFINED','9eeaeade-4196-4fcd-8832-873857864a89','','','Black paint with red highlights make the Black Cherry livery a subtle yet stylish look for the ROC and ROC-DS.'), +(8184,'Day One Shirt White','Char_Clothing_Torso_0','UNDEFINED','14e6318d-70a4-4418-99b7-3fe7d6a0498c','','','This Henley shirt from Stegman\'s is made with AirFlow technology, a stain-resistant, air-cooled fabric that keeps you comfortable and dry.'), +(8185,'Gamma (1x Holographic)','WeaponAttachment','IronSight','048facd2-32e2-419a-81e9-e9f7a6e971f7','','','Manufacturer: NV-TAC\nType: Projection \nAttachment Point: Optic\nMagnification: 1x\nAim Time: +15%\nSize: 1\n\nWhether under the blazing sun or on the dark side of a moon, the NV-TAC Gamma projects an easy to see reticle to help ensure your shot finds its mark.'), +(8186,'Whamburger','Food','Junk','335ad7be-bc4c-445b-b98a-84a25c1eaad4','','','NDR: 38\nEffects: Dehydrating, Hyper-Metabolic\n\nThe original burger that put Whammer\'s on the starmap. All Whams come with crisp greens, tomatoes, piccamix, and Crave Sauce.'), +(8187,'ANVL_Hornet_F7A_Mk1_Dashboard_Pilot','SeatDashboard','UNDEFINED','12594e2e-35b1-4ee9-9092-a7d5f9fad994','','',NULL), +(8188,'IceDive','Cooler','UNDEFINED','c5b36e51-f6ea-4823-be8b-f3dd12fbda3c','','','Item Type: Cooler\nManufacturer: ACOM\nSize: 2\nGrade: C \nClass: Competition\n\nThe IceDive delivers peak performance over other medium coolers of its grade, though it does come at the cost of generating high IR and EM signatures.'), +(8189,'DRAK_Cutlass_Thruster_Maneuver_Vertical_Positive','ManneuverThruster','JointThruster','b25680c6-8b7c-4145-b212-c53449bc4305','','',NULL), +(8190,'Carryable_1H_SQ_MissionItem_Delivery_SmallBox_02','Misc','Utility','121937d0-b856-4830-9726-d200833fa87f','','',NULL), +(8191,'KRIG_L21_Wolf_Wingtip_Exterior','AttachedPart','UNDEFINED','70e72299-a5d5-4c7e-b367-d46eefb231c5','','',NULL), +(8192,'Door','Door','UNDEFINED','7dfef519-e144-43d8-ba76-a1ea69968cab','','',NULL), +(8193,'RSI_Apollo_Canister_Storage_Shelf_Parent','Misc','UNDEFINED','eaedbd3a-734b-4372-89a8-3d08a267f2e8','','',NULL), +(8194,'Morozov-SH-I Arms Pyrotechnic','Armor','Arms','ce754844-2f59-45f4-ad88-70a7792cf6ee','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing the same fortified armor plating, special anti-rip protective padding and ample storage, as the Morozov SH, the SH-I industrial variant was designed by RRS to protect workers employed in hostile zones while ensuring they had the full range of motion required to perform their duties. The Pyrotechnic Amalgamated Edition was made specifically for the company\'s mining efforts in Pyro during the 26th century.'), +(8195,'test_mug','Misc','UNDEFINED','1e6486c5-0ea0-418c-ab9d-8f52b9b23a00','','',NULL), +(8196,'Paint_Gladius_Procyon','Paints','UNDEFINED','a1372df8-e5d5-4c2f-9893-78f8a52b7b64','','',NULL), +(8197,'RSI_Meteor_Thruster_Retro','ManneuverThruster','JointThruster','22f86234-d210-4a05-a244-187ed936bba0','','',NULL), +(8198,'WK-8 Shoes','Char_Clothing_Feet','UNDEFINED','cd94dd46-a34d-4808-88e8-b0319c06515c','','','The WK-8 impact boots from R6 Pro continue the company\'s proud tradition of affordable, durable utility footwear. Designed to thrive in all kinds of environments, the WK-8\'s are the result of extensive field testing with the Empire\'s most trusted security operatives.'), +(8199,'AEGS_Avenger_Titan_Thruster_Main','MainThruster','FixedThruster','ebdae5f7-edfb-44eb-be4b-2b8d5e6fe8ad','','',NULL), +(8200,'Chada Collar and Panniers Mahogany','Char_Clothing_Torso_1','UNDEFINED','882aafdd-ed2c-4ca0-bbbd-698265bc2afc','','','Carrying Capacity: 400 µSCU\n\nNeed extra inventory? We\'ve got you covered. Designed for hands-free carrying, the Chada Panniers by Habidash come with an adjustable strap that lets you securely attach them around your hips. Each set of panniers comes with a fashionable steel and leather gorget.'), +(8201,'Bed','Usable','UNDEFINED','9c847944-79fe-4a2c-a7fb-45dabcd060d2','','',NULL), +(8202,'Seat','Usable','UNDEFINED','43cb8969-c493-4262-9e28-9fddb251b41e','','',NULL), +(8203,'Vehicle_Screen_MFD_Holographic_ORIG_400i_R','Display','UNDEFINED','d3848c6d-515f-44c4-91da-497d5740b4e2','','',NULL), +(8204,'EX-T12-IR \"Executor\" Torpedo','Missile','Torpedo','eda2bcfa-58cf-4225-af77-bc2b1ba0a8d7','','','Manufacturer: Behring\nTracking Signal: Infared\nSize: 12\n\nBehring prides itself on crafting ordnance that is as dependable as it is powerful and the EX-T12 \"Executor\" is no exception. Designed as an anti-ship and anti-installation weapon, Behring engineers worked tirelessly to ensure this torpedo was a bold strategic statement.'), +(8205,'m_human_mannequin_rsi_suit_07','ShopDisplay','UNDEFINED','64b52fbc-efff-498a-9e50-86ba8c2b0572','','',NULL), +(8206,'BEHR_BallisticRepeater_PowerArray_S1','WeaponAttachment','PowerArray','94483882-6057-44e5-b640-c8d15b607926','','',NULL), +(8207,'Vehicle_Screen_MFD_Holographic_ORIG_100i_R','Display','UNDEFINED','a0c424fb-54cf-4c50-bee9-c2bd01a1cbf4','','',NULL), +(8208,'Defender Polar Livery','Paints','UNDEFINED','9037a260-de99-4690-9088-834a9af54615','','','Modify your Defender with this white and grey livery specifically designed for the 2951 IAE.'), +(8209,'Atavi Shirt Dark','Char_Clothing_Torso_0','UNDEFINED','e9493f7a-3481-4a54-9b18-333a81ae5576','','','MuyMuy\'s Atavi line of casual shirts are comfortable enough to wear at home, but stylish enough for a night out. They are made with EasyCare technology to maintain the colors during repeated washes.'), +(8210,'PAB-1 Arms Imperial','Armor','Arms','57df0c92-4f29-4fb5-a6b4-9980fa81c90e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(8211,'ARGO_MPUV_1T_Thruster_Retro_Joint','ManneuverThruster','FixedThruster','98044d97-bf77-45bd-a867-04619b684730','','',NULL), +(8212,'vanduul_drone_skull_cap_01','Char_Accessory_Head','Vanduul','4bc9fc64-fb62-40ce-bd3a-6bd1c06cdede','','',NULL), +(8213,'Internal Tank','FuelTank','Fuel','35241580-f111-4aac-bd44-a8f72954bcdb','','',NULL), +(8214,'Citadel Arms Icefall','Armor','Arms','06854bc6-995c-4e69-904b-b62e99df27d3','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(8215,'Seat','Usable','UNDEFINED','cd9a5574-535b-434e-b8f0-fa33b5b321c1','','',NULL), +(8216,'box_plastic_4_weapon_opened_015x01x0025_a_klwe_sniper_energy_01','Misc','UNDEFINED','14ab151b-2468-4bc3-95f5-517dcb9cd113','','',NULL), +(8217,'MISC Reliant Ship Armor','Armor','Medium','a9669d19-4a9b-4098-b9d5-7dab86ebe3c5','','','MISC Reliant Ship Armor'), +(8218,'shelf_shoe_2_highend_b','ShopDisplay','Default','458a2013-7576-480a-b541-dda35f012ad7','','',NULL), +(8219,'Seat','Usable','UNDEFINED','c12ee2f3-c49e-4dee-b697-71c46b46c538','','',NULL), +(8220,'Fractus Gloves Brown','Char_Clothing_Hands','UNDEFINED','78faee2d-53cc-42b5-be99-678ac6b33864','','','Developed for work sites, but refined enough for everyday use, the Fractus gloves layer StretchStrong fabric for a tight yet breathable fit. Reinforced knuckle plating and scaled fingertips provide extra durability and a stylish flourish.'), +(8221,'Internal Tank','FuelTank','Fuel','b78e26c3-d8ed-45f1-a664-d0151ab60a2e','','',NULL), +(8222,'sc_marine_bdu_shirt_01_01_01','Char_Clothing_Torso_0','UNDEFINED','3443241d-f0b5-4ef9-9c54-5692f62f1657','','',NULL), +(8223,'Redeemer Fortuna Livery','Paints','UNDEFINED','18391c19-d63b-44f1-a37f-7ae5c6b1ad2b','','','Make luck your co-pilot. Boldly set your sights on the stars and adventure forth in style with the Fortuna livery. This Stella Fortuna themed paint scheme is primarily green with grey accents.'), +(8224,'ht_glass_beer_1_a','Misc','UNDEFINED','99eaf804-94a0-4ea0-a93a-2bb24aac3e5a','','',NULL), +(8225,'PAB-1 Arms Green','Armor','Arms','35c3fa48-0b58-4eb1-8ed4-60a020de25d1','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(8226,'Aegis Hammerhead - Noise Launcher','WeaponDefensive','CountermeasureLauncher','7260b513-1fb6-4eed-a000-8e723fbfad96','','','Aegis Hammerhead - Noise Launcher'), +(8227,'SHIELDS','ShieldController','UNDEFINED','b3f39ced-febc-4bf0-9f43-215d14d7f933','','',NULL), +(8228,'ARMR_KRIG_l22_alphawolf','Armor','Medium','d80d2d35-a470-44bf-9f75-26568ed0fffd','','',NULL), +(8229,'Ponos Boots Twilight','Char_Clothing_Feet','UNDEFINED','f73d6208-6df7-4100-9736-0e6269f4529e','','','Quite simply, R6 Pro\'s Ponos boots were built for backbreaking work. Constructed out of Thermosulate technology, these waterproof and insulated workboots are rated for sub-arctic environments while the composite outsole ignores hazards to maintain traction when you need it most.'), +(8230,'Door','Door','UNDEFINED','3157a45d-c6a0-4704-a776-12b3feccce15','','',NULL), +(8231,'Dymantium','Cargo','Cargo','79e21fd4-7d21-4e47-afd2-06b6e39a00a4','','',NULL), +(8232,'Internal Tank','QuantumFuelTank','QuantumFuel','22dc0644-96a1-4533-b03d-acaf59ab61d5','','',NULL), +(8233,'Trekker Boots','Char_Clothing_Feet','UNDEFINED','a2a10efe-30bb-4a6d-ab78-e86d0de2ee15','','','Designed for unfamiliar terrain, these boots are made with our SureFire grip technology and feature ankle support and steel-reinforced lacing to ensure stability on unfamiliar ground. Guaranteed to fit comfortably, even when worn with armor.'), +(8234,'Vehicle_Screen_MFD_Holographic_ORIG_890J_T','Display','UNDEFINED','3e974635-4fa1-483c-a445-b7034fd46ab1','','',NULL), +(8235,'Cargo_Comm_125x3_Mineral_a','Cargo','Cargo','0911c02f-a67d-428d-9c93-ff4756daf3fc','','',NULL), +(8236,'Calister Jacket Tosca','Char_Clothing_Torso_1','UNDEFINED','61850441-da29-45fc-a443-7ab5d527746f','','','Carrying Capacity: 1000 µSCU\n\nThe Calister Jacket by Habidash is made with thick synthetic fabric intended to ensure full body coverage. The cross-body panel that shapes the silhouette of the design provides additional insulation in harsher conditions.'), +(8237,'AEGS_Vanguard_Harbinger_Thruster_Retro','ManneuverThruster','FixedThruster','4e0a1136-fcda-470d-a550-322ab22a18a6','','',NULL), +(8238,'RSI Polaris Torpedo Rack','MissileLauncher','MissileRack','0186d9c6-2bbd-440e-b389-31a3a96da303','','','Item Type: Torpedo Rack\nManufacturer: RSI\nSize: 10\nTorpedo: 7xS10 \n\nBring the impressive firepower of the Polaris to bear with this bespoke torpedo rack holding seven massive S10 torpedoes.'), +(8239,'Arden-SL Helmet Coramor Edition \"Fate\"','Armor','Helmet','0a0ceef1-416b-4201-bdf2-af115535396f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics. It also features a fully enclosed helmet with an integrated cowl. The special Coramor Fate edition been updated with vibrant pink and light grey coloring. Visor is AR crosshair compatible.'), +(8240,'Testudo Helmet','Armor','Helmet','4aeeae6c-c596-4327-a804-cb966ed7ae16','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nKeep your eyes on the prize and your head protected with the Testudo helmet. It features a wide faceplate and a durable outer shell that protrudes above the forehead in a way specifically designed to absorb and efficiently disperse the energy of impacts.'), +(8241,'GME 240-15 Patient Slippers','Char_Clothing_Feet','UNDEFINED','faf58736-b8a2-46d4-bc59-5c92deced973','','','The standard GME 240-15 Patient Slippers offer necessary foot protection and comfort during a patient\'s visit to a medical facility. Constructed from the same antibacterial fabric as the GME 338-10 Medical Gown, the slippers feature an easy on/off design and an anti-slip coating on the sole.'), +(8242,'Weapon_Rack_1_NONE_LMG_AmmoOnly_001','Usable','UNDEFINED','5621b275-5391-4af4-b82c-46121711d0f6','','',NULL), +(8243,'Pyro RYT Multi-Tool','Weapon','Gadget','f2970f69-4761-4ed9-8b28-53db4ac97322','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier.'), +(8244,'display_2guns_5scopes_04x01x01','ShopDisplay','UNDEFINED','da472a78-453e-4557-b9bb-de40a1f95e18','','',NULL), +(8245,'Zeus Exploration Suit Solar','Armor','Undersuit','ffd31f88-ee9f-4c03-b3d7-520e550629a1','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -150 / 175 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nThe Zeus Exploration Suit has been designed to honor some of the earliest space pioneers, the RSI crews who developed and tested the Zeus, the first commercial spacecraft. While the suit is styled to match those used centuries ago with attachments for a helmet and backpack, it contains all of the modern technology and conveniences expected by present-day explorers. The Zeus offers good resistance to harsh environments and excellent storage space for sample-collecting during EVAs. The Solar variant honors the orange color scheme worn by RSI test pilots.'), +(8246,'Seat','Usable','UNDEFINED','18ba7731-2d07-4a52-958a-50abdbd19a41','','',NULL), +(8247,'Gadget_Cabinet_kegr_fire_extinguisher_01_NoRN_hightech_NoExtinguisher_med_high','Usable','UNDEFINED','b0902069-44d4-4a4c-b23f-9bd88393db17','','',NULL), +(8248,'Strode Pants Molehill Brown','Char_Clothing_Legs','UNDEFINED','51aa5d93-667d-4895-8a81-d5bd988d3828','','','Carrying Capacity: 3K µSCU \n\nWhen you need to move like your life depends on it. Made from loose-fit tear-resistant polyweave with rigid greaves, these pants won\'t tie you up when things get tight. The Molehill version is dyed a neutral brown to keep you subtle, but not unsightly.'), +(8249,'Remote Turret','Turret','GunTurret','26bc2fed-566e-4cf6-97c2-f0230ed0f57f','','','Remote Turret'), +(8250,'DRAK_Cutter_Roof_Expo','Misc','UNDEFINED','4be79faf-2b54-4f54-8e76-3bbee04a82cf','','',NULL), +(8251,'Savrilium (Ore)','Cargo','Cargo','1bfd2f9c-e133-471c-a0f4-f508f1710011','','',NULL), +(8252,'Sawtooth \"Sirocco\" Combat Knife','Weapon','Knife','10ff47bc-9384-4133-a916-e7297cb18711','','','Manufacturer: Kastak Arms\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nDon\'t end up on the wrong side of the Sawtooth combat knife. The blade embodies Kastak Arms\' aggressive styling and was designed to stab, slice, or saw. It features a strong tip for piercing, a straight edge for slicing, and a unique serrated edge with microblades for when you really need to rip through something. The blade is also made with a special ceramic polymer coating that enhances its strength and overall wear resistance. For the special Sirocco edition, a light brown color was added to the coating to make it even more visually distinct.'), +(8253,'Aegis Hammerhead - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','801ab036-dc7e-496e-ba23-23befd6bff91','','','Aegis Hammerhead - Decoy Launcher'), +(8254,'Astatine','Cargo','Cargo','5d4a0f6e-cfb1-4bcd-9e15-251f14111448','','',NULL), +(8255,'Weapon_Rack_Cz_003','Usable','UNDEFINED','de5e0f1b-95d9-4b3b-a29c-dcfdd2dce28e','','',NULL), +(8256,'Flight Blade','FlightController','UNDEFINED','c7a16793-48dd-45e2-9932-b8ddb1b7c093','','',NULL), +(8257,'MISC_Hull_C_Thruster_Mav_Fixed_Top','ManneuverThruster','JointThruster','71841880-f39a-4147-a71b-34e9b370acb8','','',NULL), +(8258,'Partillium','Cargo','Cargo','735314ca-3b49-4767-9d5b-fab00fd38091','','',NULL), +(8259,'Skellig Pants Rot','Char_Clothing_Legs','UNDEFINED','3562b50a-5ff3-4086-b949-f6330b4111ea','','','Carrying Capacity: 2K µSCU\n\nGet down and dirty with CBD\'s Skellig-wear. These utility pants feature durable vinyl-composite material with reinforced ridged kneepads.'), +(8260,'Revenant Tree Pollen','Cargo','Cargo','a5fa8f0d-622f-404d-9502-45bb3590674d','','',NULL), +(8261,'ARMR_DRAK_Cutter','Armor','Medium','1c73aa97-00bd-4a0a-adda-5ed53fcc35a3','','',NULL), +(8262,'IonSurge Pro','PowerPlant','Power','ae0a922e-7cd6-4bd2-9da0-23c0f575a3af','','','Item Type: Power Plant\nManufacturer: Lightning Power Ltd.\nSize: 3\nGrade: B\nClass: Civilian\n\nPower plants from Lightning Power Ltd. don’t get much bigger or better than the IonSurge Pro. This top-of-the-line large power plant focuses on delivering solid results to keep your ship working longer.'), +(8263,'Argo T-Shirt Slate','Char_Clothing_Torso_0','UNDEFINED','1c3f6350-4c77-4fee-a3ef-f6e64d8c5cf0','','','This dark gray cadet hat features a simple version of Argo\'s logo on the front, representing company with understated style.'), +(8264,'Ouratite','Cargo','Cargo','54ae2031-7b7e-47a3-8d38-b02b68c10373','','',NULL), +(8265,'P8-AR \"Metro Camo\" Rifle','Weapon','Medium','ecf9ab17-21a4-4f1a-bde3-cc31321dd549','','','Manufacturer: Behring \nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 15\nRate Of Fire: 475 rpm\nEffective Range: 100 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nThe direct descendant of the UEE Marines standard issue weapon, Behring has crafted the semi-automatic P8-AR to provide civilians across the empire a straight-forward and dependable weapon to defend themselves against aggressive hostiles. The \"Metro Camo\" edition features a grey-tone digicamo pattern.'), +(8266,'Chamar Pants','Char_Clothing_Legs','UNDEFINED','c7c2cb79-7923-4f43-b1d8-b2d08813e217','','','Carrying Capacity: 1K µSCU\n\nDecades of design experience helped DMC make the Chamar pants ready for any adventure. The pants utilize a unique seam design to deliver durability while maintaining flexibility. A built-in belt ensures an ideal fit, while leather front pockets and a padded back-panel provide rugged reinforcement where needed most.'), +(8267,'Artimex Core Starchaser','Armor','Torso','787a2c0a-1311-44b9-b195-3793100ca518','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.'), +(8268,'Cutlass Dying Star Livery (Modified)','Paints','UNDEFINED','043b1ce4-f117-4f1a-98b8-aa1540b0fdec','','','This version of the livery has been modified from its original form with the addition of graffiti. Sold in 2943 to celebrate the 450th anniversary of Pyro\'s discovery, the Dying Star livery is tan with brown and black highlights. It also features branding from Pyrotechnic Amalgamated, the now defunct mining company that found and named the system.'), +(8269,'Adiva Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','97a7bf97-3100-4ba0-ad35-86c9255391f5','','','Carrying Capacity: 1K µSCU\n\nDefine your ultimate you. The Adiva is an asymmetrical pullover with bold mixed-materials and solid reinforced trim.'), +(8270,'Door','Door','UNDEFINED','af7088ec-5999-42fd-a022-be536ac50b0c','','',NULL), +(8271,'Chicken Wham','Food','Junk','9e4b35dd-85b8-4fd8-bf63-68b6a2c8a828','','','NDR: 38\nEffects: Dehydrating, Hyper-Metabolic\n\nThis crisp and juicy, all dark meat chicken patty shows that Whammer\'s is bigger than beef. All Whams come with crisp greens, tomatoes, piccamix, and Crave Sauce.'), +(8272,'AEGS_Door_Decal_Escapepods_Large_04','Decal','DoorPart','7dc4bbb3-c170-46b2-a373-f71360d206c4','','',NULL), +(8273,'Door Control','ControlPanel','DoorPart','2fe2cdc1-c9f3-47d6-8e6f-df6a35e0edab','','',NULL), +(8274,'Table_2_Seat_High_Lowtech_2_a_NoSeat','Usable','UNDEFINED','639344aa-2d4e-409c-aa49-b8b9046963d6','','',NULL), +(8275,'Libio Jacket','Char_Clothing_Torso_1','UNDEFINED','521ecb9b-f144-434a-8bbc-f11e27198973','','','Carrying Capacity: 1K µSCU\n\nOne of OpalSky\'s classic pullovers, the Libio features a two-tone asymmetrical pattern and polyweave blend to keep it elegant and striking every time you wear it.\n\nWomen\'s sizes currently out of stock.'), +(8276,'Door Control','Door','UNDEFINED','555657bf-047d-4dc6-92c3-e4b5a5d9a290','','',NULL), +(8277,'MISC_Starfarer_Base_SCItem_Dashboard_Sup_Left','SeatDashboard','UNDEFINED','f03128e5-494c-4929-8647-66cea96fd5d2','','',NULL), +(8278,'Remote Turret','Turret','PDCTurret','d573fc9c-ac7a-499a-98bb-5ce6fce31f60','','',NULL), +(8279,'Cinch Scraper Module','SalvageModifier','UNDEFINED','1743f1e2-0558-45f6-bc80-d604daf97123','','','Manufacturer: Greycat Industrial\nItem Type: Scraper Module\nExtraction Speed: 0.5/1.5\nRadius: 1.5m\nExtraction Efficiency: 90%\n\nThe Cinch is a precision scraper module that produces a small, focused beam perfect for extracting resources from every nook and cranny on a hull. While the beam\'s relatively small size requires more time to remove Recycled Material Composite (RMC), its excellent extraction rate will make the added effort worth it.'), +(8280,'Picoball','Misc','UNDEFINED','0df8a4e8-b328-44ae-a0c4-a54522210aa2','','','An athletic ball modified to resemble the famous microTech mascot Pico the Penguin.'), +(8281,'Sadaryx','Cargo','Cargo','67697086-ae7b-42d4-b7a2-2e1d47d2cf1d','','',NULL), +(8282,'Molina Mold Samples','Cargo','Cargo','fc02c7e6-c09e-4129-9098-5639d4a0513a','','','Samples of the deadly Molina Mold securely sealed in biohazard containers to ensure its toxic fungal spores can\'t get airborne.'), +(8283,'Paint_Perseus_Red_White_Black','Paints','UNDEFINED','ceaf7f45-d4c6-46c8-ba05-3abcc2c08b06','','',NULL), +(8284,'Door Control','ControlPanel','DoorPart','2b3c570e-a577-4679-9706-b04370a51bb4','','',NULL), +(8285,'ESPR_Prowler_Thruster_Mav_Lateral','ManneuverThruster','UNDEFINED','6caa7d71-c920-4915-980f-757ffd9af7a9','','',NULL), +(8286,'ArmorStand_CLDA_hazmat_Orange','Misc','UNDEFINED','1e84d87f-5064-463b-8c53-9fcc00eb32b7','','',NULL), +(8287,'Nyman Jacket','Char_Clothing_Torso_1','UNDEFINED','029d431e-d0a6-4a17-a8b9-f528b01d0d33','','','Carrying Capacity: 1K µSCU\n\nOpalSky\'s Nyman light pullover is perfect to have on hand when lounging poolside or on those chilly nights.'), +(8288,'Remote Turret','Turret','GunTurret','1b88cf97-4632-4d7f-ba7e-a4c41bd08a38','','','Remote Turret'), +(8289,'KRON_LaserCannon_Ventilation_S1','WeaponAttachment','Ventilation','8cca33e2-1618-4335-ad7a-012db8c9dfa5','','',NULL), +(8290,'LightGroupPoweredItem','Light','UNDEFINED','6e1204da-ad5c-4533-984c-d8e027822633','','',NULL), +(8291,'Organics','Cargo','Cargo','09690663-3a3c-4b82-b2c4-be73368f205c','','',NULL), +(8292,'KRIG_l22_AlphaWolf_Thruster_Main','MainThruster','UNDEFINED','6e3eb13c-d94f-4e5f-bf05-738ba9a718f7','','',NULL), +(8293,'Ejection Rejection T-Shirt','Char_Clothing_Torso_0','UNDEFINED','f479378d-2d74-4910-a072-aa95f3fa2d6d','','','Commiserate with other Captains whose chair won\'t go anywhere. The Ejection Rejection shirt features a smoldering Cutlass while wondering why anyone would ever need an ejection seat.'), +(8294,'RSI Default JetPack','Suit','ThrusterPack','5843bcbc-42c1-45d0-9f11-28f2dd6b4d36','','','<-=MISSING=->'), +(8295,'Geist Armor Legs','Armor','Legs','7cc3a072-0145-459e-b76e-1401f7e6dfc6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(8296,'Seat','Usable','UNDEFINED','2dde7cad-2ce7-47ee-a69c-b4e4056651b4','','',NULL), +(8297,'Sabine Undersuit','Armor','Undersuit','6de8b137-5901-4dfa-b263-a756f70ff8ed','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThe Sabine embodies the advanced look and performance you expect from Quirinus Tech. This cutting edge undersuit integrates strong, yet flexible microweaves with strategically placed plating to provide protection while remaining lightweight. Featuring a sleek design, the Sabine undersuit will ensure you stay safe and stylish no matter the path ahead.'), +(8298,'Railing_Straight_1m_Hurston_Lorville_Glass_A','Usable','UNDEFINED','dffad9b3-7d0a-48f5-a7b6-36d301e238a2','','',NULL), +(8299,'Seat','SeatAccess','UNDEFINED','16cd7218-87ca-418d-ad40-1293de7f56f4','','',NULL), +(8300,'ROC Hadanite Livery','Paints','UNDEFINED','ea584cb2-4454-4722-b8d6-9e5bb53c6264','','','The Hadanite livery for your ROC gives the ship a distinct pink hue that mirrors the look of the gemstone of the same name.'), +(8301,'ORIG_125a_Thruster_Mav_Fixed_Top','ManneuverThruster','FixedThruster','50df168e-9d0f-4ddf-9b26-986f6b590ce4','','',NULL), +(8302,'ARGO_MPUV_Thruster_Aux_Joint','ManneuverThruster','JointThruster','7dfb111e-9cf8-4c9b-9a2d-9ae028d318b5','','',NULL), +(8303,'DuraWork Pants Fogforest','Char_Clothing_Legs','UNDEFINED','4fc6a37d-54f1-4fc9-b1a3-9865a8ab9bc0','','','Carrying Capacity: 2000 µSCU\n\nMade of a durable synthetic material, Stegman\'s designed the DuraWork to provide a comfortable and reliable clothing option to workers around the \'verse.'), +(8304,'HexaPolyMesh Coating','Cargo','Cargo','85e56e9e-29e9-4bc8-84f3-dc50599de54d','','',NULL), +(8305,'Anvil Terrapin Nose Mount','Turret','BallTurret','7cc85c6b-5867-4437-b7c6-f9b1817baec0','','','PC2 Dual S4 Mount'), +(8306,'Caudillo Helmet Cobalt','Armor','Helmet','e40998cd-017c-492f-bce2-086d2d2fd39f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAdept at surviving firefights in both atmosphere and in space, the Caudillo helmet provides solid head protection while offering the wearer the stylish look of classical armor thanks to its visually striking metal crest. The Cobalt variant is being offered as a limited edition run.'), +(8307,'Aztalan Galena Helmet','Armor','Helmet','722c7f57-40f0-41b9-96ab-422462875edd','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -32 / 64 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFear no frontier while wearing the Aztalan armor. This mixture of armor plating and reinforced fabrics will keep you safe yet swift on your feet. Tehachapi\'s masterful design gives the armor a subtle yet unmistakable frontier style that also providing ample storage. Suitable for everything from sand dunes to bustling backstreets, the Aztalan is the ideal choice for your next adventure. Visor is AR crosshair compatible.'), +(8308,'Pico the Penguin Plushie','Misc','Personal','846fe080-035b-437f-b5a9-b11aa134d3ff','','','This adorable mascot of New Babbage loves nothing more than carving their way down the snow covered slopes of microTech.'), +(8309,'IFR-A77 Turret','TurretBase','MannedTurret','88a05104-18bc-4e2d-80ee-796691162c7c','','','Item Type: Manned Turret\nManufacturer: Aegis Dynamics\nSize: 7\n\nThis manned turret, designed by Aegis to be equipped with two size 7 weapons, is bespoke to the Idris frigate.'), +(8310,'MOLE Lovestruck Livery','Paints','UNDEFINED','bb431e79-133a-4dc6-a044-807e1edf7ba3','','','Inspired by the colors of Coramor, the Lovestruck livery is a stylish metallic pink and black look for your MOLE.'), +(8311,'Thunderbolt III Missile','Missile','Missile','9a741b0a-200d-4f1a-92a8-f917510804e1','','','Manufacturer: Firestorm Kinetics\nTracking Signal: Electromagnetic \nSize: 3\n\nThanks to the Firestorm Thunderbolt\'s agile frame and EM targeting system, this proximity missile is a solid choice for a wide variety of combat scenarios.'), +(8312,'SHIELDS','ShieldController','UNDEFINED','e1a16a47-1c4b-46f9-a368-8767912a1cc1','','',NULL), +(8313,'Astley Pants Sunset','Char_Clothing_Legs','UNDEFINED','a60fcc9c-89e2-4222-a227-114e33960bf6','','','Carrying Capacity: 2K µSCU\n\nFlaunt your rugged yet refined sensibility with these cargo pants from DMC. With grey accents and contrast stripes down each side, Astleys are durable, comfortable, and always on point. \n\nWomen\'s sizes currently out of stock.'), +(8314,'Mercury Gloves (Modified)','Char_Clothing_Hands','UNDEFINED','9c8ac38c-3614-4711-9c30-74f91abf6057','','','This version of DMC\'s Mercury gloves has been modified from its original form. Keep your hands warm and fingers nimble with Mercury gloves from DMC. Ideal for outdoor activities or colder work environments.'), +(8315,'Waldron Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','2f055639-b2e4-4482-a435-49d80706f6b2','','','Carrying Capacity: 1K µSCU\n\nThe Waldron suit exudes sophistication by fusing classic style with contemporary flourishes. OpalSky redefines success with this geometric patterned jacket, featuring a pinstriped false-shirt and tie layered underneath, plus a unique split-seam back.'), +(8316,'Sion \"Tweaker\" Compensator2','WeaponAttachment','Barrel','c2a12467-36a7-4e10-8de5-39b59f8922c6','','','Manufacturer: ArmaMod\nType: Ballistic Compensator\nAttachment Point: Barrel\nSize: 2\n\nAim Time: +25%\nSpread: +25%\nAim Recoil: -35%\nVisual Recoil: -50%\nDamage: -10%\n\nMaintain accuracy by countering muzzle rise with the Sion Compensator2. ArmaMod\'s expertly designed S2 barrel attachment efficiently expels gasses to keep every shot on target. This \"Tweaker\" version has been unofficially modified for a smoother firing experience.'), +(8317,'HLX99 Hyperprocessors','Cargo','Cargo','ded1c479-a399-4ea9-911a-db5e7e57ff0e','','',NULL), +(8318,'Fulgur','PowerPlant','Power','4364d2ea-3516-474b-8f45-ae146c120ee7','','','Item Type: Power Plant\nManufacturer: Aegis Dynamics\nSize: 3\nGrade: B\nClass: Military\n\nTried and tested by the UEE Navy on the Vanduul front, the Fulgur large power plant from Aegis Dynamics is now available for all to put to use protecting what’s important.'), +(8319,'Rescue Required T-Shirt','Char_Clothing_Torso_0','UNDEFINED','040f1b65-c351-49da-af08-b9bd3928646f','','','In space, no one can hear your scream. That\'s why they created ECN alerts. Commemorate the kindness of strangers with the Rescue Required shirt, featuring an astronaut fleeing from danger.'), +(8320,'AEGS_Idris_Thruster_Mav_Fixed','ManneuverThruster','JointThruster','30e7396b-5d1c-4c19-a82b-17ec73b284eb','','',NULL), +(8321,'Origin Black King','Gadget','UNDEFINED','cf9acc78-d417-492f-a132-e7afe042f1e3','','','Made exclusively for Origin Jumpworks and included with the 890 Jump, this black chess piece is a modern version of a classic set.'), +(8322,'Door','Door','UNDEFINED','04ff90e0-960d-482c-8c83-606537499577','','',NULL), +(8323,'Door Control','Door','UNDEFINED','677dc9db-6cf6-420a-b62d-7803d7d99ba5','','',NULL), +(8324,'Taiga','Cooler','UNDEFINED','576b939f-1596-42ee-95b4-d5c871542d8c','','','Item Type: Cooler\nManufacturer: Wen/Cassel Propulsion\nSize: 2\nGrade: B\nClass: Civilian\n\nWen/Cassel has worked long and hard to develop quality coolers like the latest edition Taiga, which can process and manage excess heat while consistently maintaining the high standards that they have become known for.'), +(8325,'ControlPanel_Screen_LiftControl_3x4','ControlPanel','DoorPart','3151be21-a310-47de-b592-e4a9332d237f','','',NULL), +(8326,'Seat','Usable','UNDEFINED','bd821e8c-1bf7-4278-86dd-3570c304ba1f','','',NULL), +(8327,'Access','SeatAccess','UNDEFINED','bc0a16d4-fbad-40cb-9466-cd7c7f2b450d','','',NULL), +(8328,'m_human_mannequin_legacy_marine_medium','ShopDisplay','UNDEFINED','07d13fd6-6663-4144-9a8c-0697c7b7a7a2','','',NULL), +(8329,'Ramp Control','Usable','UNDEFINED','1edf7dac-6511-432f-8acd-f83df0c06eaf','','',NULL), +(8330,'ORIG_350r_Yoke','Misc','UNDEFINED','114684c5-280b-4445-9868-6a59dcfd1ad0','','',NULL), +(8331,'Seat','SeatAccess','UNDEFINED','9c6a62ed-7d8b-4f49-acb8-8b3838ba057f','','',NULL), +(8332,'Seeker IX Torpedo','Missile','Torpedo','a53527ab-3c28-460d-bc96-dcfac76f1463','','','Manufacturer: Talon\nTracking Signal: Electromagnetic\nSize: 9\n\nTalon\'s Seeker torpedo is a precision, EM-targeting torpedo capable of delivering a massive payload quickly and accurately.'), +(8333,'Railing_Straight_4m_Lowtech_Bravo_Open_A','Usable','UNDEFINED','abadb7b7-2896-4967-91db-3bd62ce01997','','',NULL), +(8334,'MISC_Hull_C_Int_Rear','Room','UNDEFINED','40d38354-93cb-4bf7-8548-3a513e430634','','',NULL), +(8335,'PH - scu_service_shirt_02_ellroys01_01','Char_Clothing_Torso_0','UNDEFINED','7fbcb909-d950-4382-a50b-a61188ec6e82','','','PH - scu service shirt 01'), +(8336,'Bottle','Misc','UNDEFINED','2bf9bfaa-9be5-40ca-a6ac-c54eb15f1005','','',NULL), +(8337,'Bottle','Misc','UNDEFINED','d3d6f111-ccf8-4159-8c47-10e2d4855f94','','',NULL), +(8338,'Door Control','Door','UNDEFINED','2defee6b-b83e-434c-82a4-d3a54ef6063c','','',NULL), +(8339,'Screen','Display','UNDEFINED','1c4da227-05a0-45d9-9452-a9bd39ecadd7','','',NULL), +(8340,'Seat','Usable','UNDEFINED','dd6a144e-5cdf-4af5-80f5-405d490619f5','','',NULL), +(8341,'Monde Legs Hiro','Armor','Legs','bcbece46-cb89-409c-85fc-714b3b763ddf','','','tem Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints. \n\nThe Hiro edition features a clean white finish with dark gray accents.'), +(8342,'ESPR_LaserCannon_Barrel_S5','WeaponAttachment','Barrel','1e698927-5846-4ca4-adb5-812e89f660d2','','',NULL), +(8343,'MC-Pinhead Hat \"Voyager\"','Char_Clothing_Hat','UNDEFINED','160b0acb-5134-43ec-a931-6172928428d0','','','The MC-Pinhead military cadet hat from CBD features metal bullet studs embedded into its panels. The special Voyager edition comes in red with a gold band. \n\nWomen\'s sizes currently out of stock.'), +(8344,'Docking Collar','DockingAnimator','UNDEFINED','d608ae8e-cc6d-42e3-bbef-3c906e8ba42a','','',NULL), +(8345,'Carryable_1H_CY_tool_manual_1_knife_a','Misc','UNDEFINED','44e4f176-0034-4201-930e-42b434da31bc','','',NULL), +(8346,'LifeCure Medsticks','Cargo','Cargo','1e487854-0134-4864-bd5d-6c423ee387af','','',NULL), +(8347,'Remote Turret','Turret','PDCTurret','8cf936b1-35db-45c5-b374-cb34ed0cddf8','','',NULL), +(8348,'ANVL_Door_Decal_Carrack_Deck1','Decal','DoorPart','e5c3113d-978d-48ed-930a-f42bc472f05c','','',NULL), +(8349,'Heart of the Woods','Misc','UNDEFINED','94512633-ff1c-48f9-85b3-6d0cbcd690d8','','',NULL), +(8350,'Lillo Pants Sienna','Char_Clothing_Legs','UNDEFINED','45c8f478-08ec-420e-89eb-a058874aed8e','','','Carrying Capacity: 0.5K µSCU\n\nThese slim cut pants from Fiore give you a tailored feel at a fraction of the cost. Built from space-age weaves, the Lillo are a low maintenance, high impact addition to your office wardrobe.'), +(8351,'Concept Shirt White','Char_Clothing_Torso_0','UNDEFINED','b5408369-a6af-4313-a063-4910695304aa','','','This crisp, versatile button-front shirt from Fiore is made with cutting edge stain resistant and wrinkle-free technology, guaranteeing that you stay professional at all times.'), +(8352,'Door Control','ControlPanel','DoorPart','7feb3919-c032-4b5a-a264-e6aee2453614','','',NULL), +(8353,'Carbon-Silk','Cargo','Cargo','348a1837-79a8-4dc0-a1dc-341383c642a3','','',NULL), +(8354,'Balor HCH Helmet Imperial','Armor','Helmet','95a78bfa-b2f0-430a-85ff-7ac35c3c93c9','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. Visor is AR crosshair compatible.'), +(8355,'Inquisitor Legs Seagreen','Armor','Legs','f0008d0c-a28e-4fbc-bf1e-5d055b3eb913','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(8356,'Lister Surgical Shoes','Char_Clothing_Feet','UNDEFINED','4c1d7930-8609-4c77-bbb7-fa9bee467f27','','','The Lister surgical shoes are designed to provide comfort and support even after hours on your feet. Made out of a crisp white material for easy identification of contamination, the shoes feature padded insoles and are made from a proprietary material that\'s both breathable and antibacterial.'), +(8357,'Janalite','Cargo','Cargo','1a448dd5-bd68-465b-bd4e-7f7ed6d40807','','',NULL), +(8358,'RSI_Scorpius_Thruster_Mav_Joint','ManneuverThruster','JointThruster','11f09457-8857-4e4e-b24e-c7602100bc3d','','',NULL), +(8359,'ORC-mkX Arms Singularity','Armor','Arms','8ad97a3a-0a2b-40ca-8b67-5315b891fb82','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(8360,'Door Control','Door','UNDEFINED','418006cd-29b1-4f15-9ecb-4fdd2215585a','','',NULL), +(8361,'Vehicle_Screen_MFD_Holographic_ORIG_300i_TR','Display','UNDEFINED','d50fb0f6-29e5-4275-a4a1-60cc6dbdde8c','','',NULL), +(8362,'harvestable_base_AsteroidFPSMineable','Misc','UNDEFINED','5eb04bca-82ed-4658-8953-be7e9b523218','','',NULL), +(8363,'Seat','SeatAccess','UNDEFINED','75d726a3-7356-4294-b73d-20c4c5a00245','','',NULL), +(8364,'Savrilium (Ore)','Cargo','Cargo','a49d25de-345d-4dfd-af85-3c12540723a7','','',NULL), +(8365,'Locker_Suit_RSI_Com_Sloped_30','Usable','UNDEFINED','6eb0eb52-524c-4183-8f1d-943e3abb9e7b','','',NULL), +(8366,'Monde Arms Daimyo','Armor','Arms','8ac5b124-b847-4eb6-a862-e032df662c70','','','tem Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints. \n\nThe Daimyo edition is colored brown and gray with polished steel plating.'), +(8367,'Maintenance_Workzone_Middle','Usable','UNDEFINED','e37f4cb7-42eb-416b-b44f-75f219044d44','','',NULL), +(8368,'vanduul_pilot_core_01_01_01','Armor','Torso','6353f2e3-0476-4930-b03f-94fae2a24b00','','','@LOC_PLACEHOLDER'), +(8369,'Stirling Exploration Helmet ASD Edition','Armor','Helmet','a85f88c8-ad54-4785-9a96-a4c8c84b796c','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nDesigned to withstand inhospitable environments, the Stirling Exploration Suit provides a base level of protection from environmental hazards including radiation. Combining Caldera\'s advanced insulation fabrics with sophisticated polymers, the Stirling is able to safeguard the wearer whilst minimizing disruption to movement. Additionally, a self-cleaning system automatically activates after radiation exposure to expunge dangerous excess down to nominal levels. This helmet is only compatible with the Stirling Exploration Suit. The ASD Edition was contracted specifically by Associated Science & Development to provide protection for their scientists working in laboratories with radioactive materials.'), +(8370,'Carragio Jacket Charcoal','Char_Clothing_Torso_1','UNDEFINED','d9b967ca-5f23-4a0b-a601-49bb98ed18ab','','','Carrying Capacity: 1K µSCU\n\nThis charcoal jacket is sure to turn heads with its felted, forest green accented sleeves and tails, geometric graphic inlay, and metallic collar accents. The finishing touch to complete the look is a deep burgundy pocket square.\n\nWomen\'s sizes currently not available.'), +(8371,'ARMR_ORIG_400i','Armor','Medium','25db4a7e-572d-48bd-85e5-5ebd15f174ca','','',NULL), +(8372,'Morningstar Helmet Red','Armor','Helmet','a8c4dba6-592d-4049-a242-7026ec8f826a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(8373,'Flight Blade','FlightController','UNDEFINED','a2242e10-e4cd-4170-8c1e-62661e7549be','','',NULL), +(8374,'Prism Laser Shotgun Battery (20 cap)','WeaponAttachment','Magazine','14e12fed-37fd-4c75-b61e-1b21d1bbade7','','','Item Type: Battery\nCapacity: 20\n\nThis battery for the Prism Laser Shotgun holds enough energy for 20 shots.'), +(8375,'Carryable_2H_CY_weight_barbell_bumperplate_1_10kg_a','Misc','UNDEFINED','5c9da978-78a5-4dcd-9a27-41ce762c1954','','',NULL), +(8376,'Faction Jacket Black','Char_Clothing_Torso_1','UNDEFINED','6bdab5a8-e691-412a-ae64-96c1fc914920','','','Carrying Capacity: 1K µSCU\n\nWhether you\'re coasting through outdoor adventures or cruising to exclusive afterparties, the Faction coat is sure to turn heads. Fusing sections of ultra-insulated brick quilting with 987\'s DuraBull ripstop reinforced fabric, you\'ll stay warm while still looking cool.'), +(8377,'behr_ltp_kinetic_01_MiningBase','Gadget','Gadget','5f08ab09-4628-4297-93ed-4708c0c12c2d','','',NULL), +(8378,'Construction Materials','Cargo','Cargo','6c7c8884-a792-4588-88a3-aecfe2e435ed','','',NULL), +(8379,'display_components_noGeo_01Port_s01_power','ShopDisplay','UNDEFINED','a2163259-8b93-42ca-ad8a-b44902ae42ba','','',NULL), +(8380,'RSI_Perseus_Thruster_Main_Top_Right','MainThruster','UNDEFINED','fe3cc86e-a274-49a6-aa12-bd055cd94513','','',NULL), +(8381,'Prim Shoes Seagreen','Char_Clothing_Feet','UNDEFINED','fc6502c1-5639-4037-a53a-a173f8c5feee','','','Professional yet casual, the Prim utilizes cutting-edge synthetic construction to provide maximum comfort and a shine that won\'t fade.'), +(8382,'Door Control','Door','UNDEFINED','0c790f29-47eb-4eed-bca5-285bb1374d7a','','',NULL), +(8383,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','ddf70bab-ef40-4259-831a-607f11ec56d4','','','Joker Defcon - Noise Launcher'), +(8384,'Harlowe Shirt Sienna','Char_Clothing_Torso_0','UNDEFINED','1ca4eb22-7f4a-496d-9536-913f62cb3ed3','','','Capable as being worn on its own or as a base for layers, this long-sleeve henley style shirt from Alejo Brothers keeps you stylish and comfortable.'), +(8385,'DRAK_Caterpillar_CargoGrid_Module_Ladder','CargoGrid','UNDEFINED','6e9dd6df-e80a-417e-9fa5-cd71149ca5fd','','',NULL), +(8386,'Manned Turret','TurretBase','MannedTurret','7d78a6a6-7bc6-42e8-891d-932d54345fcc','','',NULL), +(8387,'TRGT. STATUS','Seat','UNDEFINED','35c36c48-24eb-46f2-8430-3879150704bc','','',NULL), +(8388,'MISC_Fortune_Thruster_Main_Front','MainThruster','FixedThruster','408d0ea6-c250-4dc9-856f-186fe1b61190','','',NULL), +(8389,'DockingTube_Fuel_Ports_ARGO_CSV','DockingCollar','UNDEFINED','b6414350-0af5-404a-9c38-6f8f6aef3c72','','',NULL), +(8390,'Razorback Pants Sienna','Char_Clothing_Legs','UNDEFINED','e2a49720-8110-43a7-a15f-28d048764e95','','','Carrying Capacity: 2K µSCU\n\nDMC\'s Razorback pants are made to be worn. Built from industrial quality material, they feature reinforced kneepads to prevent tears on the job and stay rugged yet comfortable.\n\nWomen\'s sizes currently out of stock.'), +(8391,'Processed Goods','Cargo','Cargo','f80c35c7-f510-4812-8060-74183b63cfb3','','',NULL), +(8392,'Dymantium','Cargo','Cargo','c3dc3eea-52e0-4c91-8973-e3cccf1d0188','','',NULL), +(8393,'ORIG_890Jump_CargoGrid_Hangar_Wide','CargoGrid','UNDEFINED','51d32aff-4e39-4148-8339-3676b9a42b27','','',NULL), +(8394,'Door','Door','UNDEFINED','dcc5a87b-b048-4e8f-941c-cba1a7be4e9b','','',NULL), +(8395,'Stor*All 4 SCU Self-Storage Container','InventoryContainer','Cargo','ced4ab55-c8d0-42d9-86d9-71f97eb38872','','','Designed by one of the most trusted names in cargo pods, the Stor*All Self-Storage Container provides a convenient place to keep anything too cumbersome to carry on your person. Its durable impact-resistant construction is sealed to survive the vacuum of space.'), +(8396,'Lillo Pants Twilight','Char_Clothing_Legs','UNDEFINED','334fe8d6-c86e-4491-89e8-c4b74eb46717','','','Carrying Capacity: 0.5K µSCU\n\nThese slim cut pants from Fiore give you a tailored feel at a fraction of the cost. Built from space-age weaves, the Lillo are a low maintenance, high impact addition to your office wardrobe.'), +(8397,'AIModule_Unmanned_PU_HOS_Missile_Turret','AIModule','UNDEFINED','95b407be-684c-4a07-a42b-d32d2732dcce','','',NULL), +(8398,'Xa\'Pyen','Cargo','Cargo','5017a9d9-c589-48aa-b225-ae483b06d492','','',NULL), +(8399,'Util_A_Bulkhead_Airlock_Door_Double_Int','Door','AirlockPart','0eca4a81-189d-4778-acc1-0aaa833e47ba','','',NULL), +(8400,'AEGS_Door_Decal_CmptRm_02','Decal','DoorPart','e23147d9-bf18-4799-a916-e480447c93cf','','',NULL), +(8401,'Stileron','Cargo','Cargo','626cae96-794e-4df8-804c-0a03105690b6','','',NULL), +(8402,'Novikov \"Expo\" Backpack','Armor','Backpack','7c3ca522-2dc3-4ad2-9cca-c2f87f2d4174','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nConfidently explore cold environments while wearing the Novikov \"Expo\". Caldera designed a spacious backpack to compliment this advanced exploration suit, so those venturing across unknown terrain can bring enough supplies to survive the journey.'), +(8403,'Carryable_TBO_FL_8SCU_Commodity_ProcessedGoods_OrganHarvesting','Cargo','Cargo','d769f4d3-ac4e-4471-bf49-45a028632adb','','',NULL), +(8404,'DRAK_Caterpillar_SCItem_Dashboard_Copilot','SeatDashboard','UNDEFINED','2f08e697-e989-4995-b0c9-41f86d77c5d7','','',NULL), +(8405,'ORIG_300i_CargoGrid_Rear','CargoGrid','UNDEFINED','e4878bf9-a51e-43e8-8030-854bb110eee3','','',NULL), +(8406,'Seat','Usable','UNDEFINED','b7d0e568-f39c-454b-ba47-e8d9349bc1c9','','',NULL), +(8407,'Millrun Waders Vineland','Char_Clothing_Legs','UNDEFINED','4b7a75ef-1604-4904-8ed3-0180f04f0927','','','Carrying Capacity: 400 µSCU\n\nA combination of waterproof and weather-resistant pants and boots, the Millrun Waders are a comfortable option for uncomfortable work.'), +(8408,'Rhodes Jacket White','Char_Clothing_Torso_1','UNDEFINED','e7f783d0-8772-4da8-aab2-dca84e417fcd','','','Carrying Capacity: 1K µSCU\n\nA classic racer jacket elevated by detailed seam work, a collar strap and decorative, eye-catching flourishes on the chest and arms. City Lights has once again redefined fashion and comfort.'), +(8409,'Quantum Fuel','Cargo','Cargo','198315dc-8a84-4e2d-aaec-cbfafc5a58ec','','',NULL), +(8410,'Door Control','Door','UNDEFINED','5984f9f0-8bcd-44fb-bb29-e8d19df7dd8e','','',NULL), +(8411,'Parapet','Shield','UNDEFINED','8d0556f4-b325-4a00-b901-9835f8ee163d','','','Item Type: Shield Generator\nManufacturer: Basilisk\nSize: 3\nGrade: A\nClass: Industrial\n\nAs the peak of Basilisk’s large industrial shield generators, it’s easy to see why the Parapet is so beloved. With one of the industry’s best shield generation to damage ratio, it’s difficult to degrade the shield and expose the hull.'), +(8412,'Rust (Bottle)','Drink','Bottle','01ebc178-d028-452b-8c9f-4cb9a91fd494','','','HEI: 07\nEffects: Cognitive Impairment, Dehydrating\n\nRumored to be so potent that it can be used to strip rust off ship components, those who regularly drink this harsh, strong-tasting alcohol swear by it, claiming everything else tastes weak by comparison.'), +(8413,'Pingala Seeds','Cargo','Cargo','ef756b89-5438-404f-959c-035866e610e0','','',NULL), +(8414,'hooks_torso0_03x01x04_03Ports','ShopDisplay','Default','d96158d6-a50d-4a51-9337-36e4ec6f4e27','','',NULL), +(8415,'DRAK_Cutlass_Steel_Thruster_Maneuver_Rear_Top','ManneuverThruster','JointThruster','fca64810-a49a-4417-a0ac-3188a3da04bd','','',NULL), +(8416,'Ball','Char_Head_Piercings','UNDEFINED','89f3754d-bf3e-4121-a1a6-feefe3974dcd','','',NULL), +(8417,'Seat','Usable','UNDEFINED','f9117f2f-7d7b-42f1-ab01-eb52ab842963','','',NULL), +(8418,'Pingala Seeds','Cargo','Cargo','3114f50a-9bbb-4fd3-baea-f5cb03a0b2e8','','',NULL), +(8419,'ThermalFoam','Cargo','Cargo','7778dee3-f912-492b-ba04-ac0ea68f7a2b','','',NULL), +(8420,'ORIG_600i_Thruster_Main','MainThruster','FixedThruster','0df9e4bc-5cd2-4f4c-815b-7f0126a0c088','','',NULL), +(8421,'Bed','Usable','UNDEFINED','25367772-ba99-42ae-b692-cc4bb265d935','','',NULL), +(8422,'Door','Door','UNDEFINED','ecb8f16b-9733-42bb-a53e-03063c3c20ca','','',NULL), +(8423,'Xa\'Pyen','Cargo','Cargo','0efb6b6c-aa74-45c6-a0c5-c937e5c6d210','','',NULL), +(8424,'Reliant Frostbite Camo Livery','Paints','UNDEFINED','2ae651b9-bdc4-4347-9853-b1412ff0bfcb','','','Soar like the winter winds with the Frostbite Camo livery for your Reliant.'), +(8425,'FullSpec','Radar','MidRangeRadar','4e802779-f88e-41d0-b3ba-4dcdd352cd75','','','Item Type: Radar\nManufacturer: Chimera Communications\nSize: 2\nGrade: A\nClass: Industrial\n\nThe FullSpec radar is considered by many to be one of the most dependable radar systems you can equip your rig with on the market today. Chimera Communications has worked hard to reduce false positives while improving consistency over range and the results speak for themselves.'), +(8426,'Access','SeatAccess','UNDEFINED','f9324e6b-186c-4832-a284-8ecea54255ee','','',NULL), +(8427,'Taberna Jacket','Char_Clothing_Torso_1','UNDEFINED','0bc1af6e-9d84-4365-a459-1141f2598673','','','Carrying Capacity: 5K µSCU\n\nThe Taberna jacket delivers refined design for rugged conditions. It features a weather resistant outer shell with additional paneling on the torso and arms. An integrated hood and shawl provide extra protection from the elements while a spacious toolbelt ensures gear remains within reach.'), +(8428,'Beryl (Raw)','Cargo','Cargo','d0d51d56-6f18-444f-991f-4a13c645e3d1','','',NULL), +(8429,'counter_display_04x01x01_18Ports_multiTool','ShopDisplay','UNDEFINED','5cde6b2e-3005-463a-ab14-37ceee6f715b','','',NULL), +(8430,'Tona Shoes Red','Char_Clothing_Feet','UNDEFINED','600b0177-763b-4d45-85cf-24205d6e895d','','','Perfect for hiking or fieldwork, the Tona from R6 Pro is a low-top sneaker built out of breathable Cheofreme materials which not only provide extra protection against impacts, but keep your feet dry.'), +(8431,'ORIG_890J_Dashboard_Bridge_Right','SeatDashboard','UNDEFINED','39f4f216-2b3c-49a8-86d7-b07206e2f841','','',NULL), +(8432,'Lanxi Jacket Gray','Char_Clothing_Torso_1','UNDEFINED','14ae8d7d-9a88-49de-b0d0-b4f10a3a3c08','','','Carrying Capacity: 1K µSCU\n\nThis simple knit jacket from City Lights features a classic cut and chic microseam technology to create a thoroughly modern addition to any wardrobe. It also features a stand collar to help keep you warm.\n\nWomen\'s sizes currently out of stock.'), +(8433,'Pontes','QuantumDrive','UNDEFINED','419bff00-12eb-43f7-b284-f8850519b9c6','','','Item Type: Quantum Drive\nManufacturer: Wei-Tek \nSize: 3\nGrade: C\nClass: Military\n\nWhen placed under stress tests, the proprietary alloys used by Wei-Tek to build the Pontes proved themselves against competitors in the same class.'), +(8434,'AEGS_Reclaimer_Locker_Single','Player','UNDEFINED','ba0181c1-75af-4d40-82af-3b6aadfce23d','','',NULL), +(8435,'WEAPONS','WeaponController','UNDEFINED','2375d6b8-ac87-4885-bedf-8285ddc39777','','',NULL), +(8436,'Pyro RYT \"Ghost\" Multi-Tool','Weapon','Gadget','d82df0dd-441d-4fe9-b6af-708eedea3245','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier.'), +(8437,'Adrift Shirt Purple','Char_Clothing_Torso_0','UNDEFINED','0d87f341-023d-442e-afe8-c3d2c0911400','','','The Adrift mock neck sweater takes the idea of fashion as entertainment to the next level. This comfortable fiber blend material features a special vid-fabric depicting a dynamic space scene to ensure that people won\'t be able to keep their eyes off you.'), +(8438,'Union Pants (Modified)','Char_Clothing_Legs','UNDEFINED','eb1d0d76-6a2d-48fd-9eac-9c40e3aabc1e','','','Carrying Capacity: 0.5K µSCU\n\nThis version of 987\'s Union pants has been modified from its original form. 987 delivers comfort, durability, and style with the Union pants. Designed with a special, next-gen blend of high-performance synthetic fabrics, these pants are enduringly fashionable in these modern times.'), +(8439,'RSI_Constellation_SCItem_Seat_CoPilot_Left_MFD','Seat','UNDEFINED','6652ad56-f96e-495e-8f51-617de2295a53','','',NULL), +(8440,'TruBarrier Hazard Suit Mask Hi-Vis Yellow','Char_Clothing_Hat','UNDEFINED','3fb9f0c7-cf6a-41e2-8981-0f6072eb9d7c','','','Temp. Rating: -30 / 15 °C\n\nThe TruBarrier Hazard Mask by Greycat Industrial helps its user face unexpected environmental hazards while keeping the most vulnerable parts of the head safe from damage. The encapsualted design provides full-body protection from direct contact with dangerous materials when worn with its accompanying jumpsuit.'), +(8441,'Beryl','Cargo','Cargo','f86a61bb-5dc1-4e3e-9742-93711ea46ebf','','',NULL), +(8442,'Oracle Helmet Purple','Armor','Helmet','0e0a054a-a950-414a-bd49-aa600c59290c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(8443,'Seat','SeatAccess','UNDEFINED','052b1cda-8907-4755-a6b5-f430c469eeaf','','',NULL), +(8444,'SHIELDS','ShieldController','UNDEFINED','f1054b14-b939-4576-b534-a0cce738430b','','',NULL), +(8445,'DRAK_Herald_Thruster_Aux_V2','MainThruster','FixedThruster','69c12194-96a5-499b-9200-0dd45ec78d39','','',NULL), +(8446,'Station_DockingAnimator_Docking_Arm_Util_A','DockingAnimator','UNDEFINED','ee96b364-c6de-46f2-a025-fd20104d4b40','','',NULL), +(8447,'EVSD Cannon','Weapon','Gun','f8c20ae0-b9c7-4c1b-9488-27d1639fb06f','','','Manufacturer: Behring\nItem Type: Distortion Cannon\nSize: 2\n\nDisable ships without hurting their crew or cargo with the EVSD from Behring. This distortion cannon features much of the same industry-leading technology used in other Behring weapons, but is specifically designed to be mounted on the nose of an Aegis Vanguard.'), +(8448,'Odyssey II Helmet Slate','Armor','Helmet','f4172480-cb86-4ce3-ae8e-e9c2733a8a4c','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(8449,'ORC-mkV Legs Violet','Armor','Legs','19b443a4-b5d2-42f2-85a6-6849d9a4ca38','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(8450,'Terrapin 2954 Best in Show Livery','Paints','UNDEFINED','e8d1c8b4-bfd1-4b89-a435-1cbac4717161','','','This purple and white 2954 Best in Show Livery celebrates the Terrapin making it to the final four of the 2954 Ship Showdown.'), +(8451,'Reclaimer Hadanite Livery','Paints','UNDEFINED','1232857c-380c-496f-82f8-fcb097ca6e00','','','The Hadanite livery for your Reclaimer gives the ship a distinct pink hue that mirrors the look of the gemstone of the same name.'), +(8452,'Drink_bottle_whiskey_01_a','Misc','UNDEFINED','b4442426-9fac-443d-91e7-2c15f55db24e','','',NULL), +(8453,'Pingala Seeds','Cargo','Cargo','29f0af65-70b5-40dc-a5d5-f99c1942133f','','',NULL), +(8454,'AEGS_Eclipse_Thruster_Retro','ManneuverThruster','FixedThruster','ecc37329-3c8d-4dec-876d-fd3986476241','','',NULL), +(8455,'Arclight \"Glimmer\" Pistol','Weapon','Small','ff264701-b252-403c-b265-9f9362efe380','','','Manufacturer: Klaus & Werner\nItem Type: Pistol\nClass: Energy (Laser)\n\nBattery Size: 30\nRate Of Fire: 300 rpm\nEffective Range: 30 m\n\nA handheld laser made famous as Kyle Fenris’ sidearm on the hit vid show The Frontier, the Klaus & Werner Model II Arclight has become extremely popular on the civilian market. Despite its media appeal, the Model II offers a higher rate of fire than any of its ballistic counterparts. While that may diminish the weapon\'s stopping power, its power cell offers more than enough shots to finish the job. This exclusive Glimmer edition features a distinct iridescent coating that makes the weapon shimmer with different colors based on lighting conditions and the angle from which it\'s viewed.'), +(8456,'cbd_main_hall_display_case_2_S2Ports','ShopDisplay','Default','85c46385-6515-46f4-9682-79b6a1350bd1','','',NULL), +(8457,'VNCL_Glaive_Thruster_top_front','ManneuverThruster','FixedThruster','2fa92a53-5d60-4a4f-8c5b-ee4eb1f2bc1a','','',NULL), +(8458,'Toilet_Col_a_Hab_1_a','Usable','UNDEFINED','83a10f54-124d-4e56-bff6-e6b0932badf6','','',NULL), +(8459,'GP-33 MOD \"Umber\" Grenade Launcher','Weapon','Medium','ae624a69-7d45-430e-9d58-134a4f04f85b','','','Manufacturer: Behring\nItem Type: Grenade Launcher\nClass: Ballistic\n\nMagazine Size: 6\nRate Of Fire: 40 rpm\nEffective Range: Variable (80m)\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nThe military-grade GP-33 MOD launcher fires 40mm grenades to clear rooms and flush out enemies behind cover thanks to Behring\'s precision design that primes each grenade to explode on impact. The Umber edition is finished in rust and orange.'), +(8460,'Iron (Ore)','Cargo','Cargo','72cd55e0-8e45-43a6-b09e-300551f7ead9','C','',NULL), +(8461,'Kino Shoes Red','Char_Clothing_Feet','UNDEFINED','1abea099-a3b6-479f-a505-b213d7ee0dc2','','','These two-tone slip-on shoes are comfortable enough for casual wear, but stylish enough for the workplace.'), +(8462,'SHIELDS','ShieldController','UNDEFINED','d467f0f7-6d3c-4f1b-9869-aa6adada8f38','','',NULL), +(8463,'Seat','SeatAccess','UNDEFINED','6e5259e0-b5fd-4deb-97c9-ed1b83c15333','','',NULL), +(8464,'TRGT. STATUS','Seat','UNDEFINED','aa89ec66-91a6-4fc7-b363-9788acf8a991','','',NULL), +(8465,'TRGT. STATUS','Seat','UNDEFINED','b3163325-3239-47ea-bdeb-e95951ec493c','','',NULL), +(8466,'Pulse Corona Livery','Paints','UNDEFINED','4ebf58e6-5744-40ee-8cb5-a4f492338494','','','Spotlight the incredible speed of the Pulse with Corona livery. Its dynamic stylings feature a two-tone blue with an angular orange across the front.'), +(8467,'Reliant Sen Livery','Paints','UNDEFINED','e1f6f394-8ffc-4691-bac7-8d8bee0d1557','','','Standard livery for the MISC Reliant Sen.'), +(8468,'Elevator','Elevator','UNDEFINED','17af79f8-1d8d-4dac-a205-818c14b96668','','',NULL), +(8469,'ESPR_LaserCannon_FiringMechanism_S6','WeaponAttachment','FiringMechanism','380fe67f-4979-488c-a46f-79846b638c07','','',NULL), +(8470,'Second Tevarin War Red Dress Jacket','Char_Clothing_Torso_1','UNDEFINED','96e72810-3b96-4ba4-a95e-3f1485784fbc','','','Carrying Capacity: 1K µSCU\n\nHonor the heroes that served in the Second Tevarin War by wearing a replica Navy uniform. Historically accurate down to every last stitch, period appropriate materials were used to make these uniforms match military specifications of the era. The red Dress Jacket features a sash adorned with metals and was worn for formal occasions and ceremonies.'), +(8471,'H_Dashboard_Projector_HUD_ANVL_Hawk','Display','UNDEFINED','a8434275-e0ef-4e3c-bc1e-2a9f306922f1','','',NULL), +(8472,'Beacon Undersuit \"Rust Society\"','Armor','Undersuit','980081ba-b196-4aaa-80aa-b679a8f0d91c','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRSI\'s Beacon undersuit is a general use utility designed to provide total protection against environments and vacuum. Built out of a durable but flexible polymers, the Beacon provides a wide freedom of motion for a variety of body types. The Rust Society edition celebrates blue-collar workers with an exclusive red and tan coloration that hides dirt and wear and tear well.'), +(8473,'DRAK_Cutlass_Thruster_Maneuver_Rear_Top','ManneuverThruster','JointThruster','47dc4df7-7b37-452f-8615-9d1e88c2cc58','','',NULL), +(8474,'un_crate_dry_1_0125x0125x0125_a','Cargo','UNDEFINED','d7b8a629-53ac-4c1a-8ad2-4b63240b0d13','','',NULL), +(8475,'AEGS_Peregrine_CML_Flare','WeaponDefensive','CountermeasureLauncher','ecad1454-c309-4050-baea-badf493c9f6b','','','@LOC_PLACEHOLDER'), +(8476,'Sawtooth \"Bloodstone\" Combat Knife','Weapon','Knife','a3d5ccf0-3ce1-49fc-aef5-e51ae4ca2c59','','','Manufacturer: Kastak Arms\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nDon\'t end up on the wrong side of the Sawtooth combat knife. The blade embodies Kastak Arms\' aggressive styling and was designed to stab, slice, or saw. It features a strong tip for piercing, a straight edge for slicing, and a unique serrated edge with microblades for when you really need to rip through something. The blade is also made with a special ceramic polymer coating that enhances its strength and overall wear resistance. For the special Bloodstone edition, a red color was added to the coating to make it even more visually distinct.'), +(8477,'Argus Helmet Black/Silver','Armor','Helmet','26c7a438-af47-4bfd-b8ac-3c1378ca558d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s Argus helmet utilizes advanced multi-layered composite construction to provide incredible protection from weapon fire as well as environmental hazards. The tinted visor offers a wide field-of-view to improve situational awareness and unrestricted movement.'), +(8478,'ReadyMeal (Beef Chunks)','Food','Sachet','72256518-19bd-47ac-b39f-0f7504b025f3','','','NDR: 60\nEffects: None\n\nThe classic taste that\'s all you need, these Beef Chunks from ReadyMeal features browned meat pieces enrobed in a thick gravy all ready-to-eat in seconds.'), +(8479,'RSI_Apollo_Thruster_Retro_Left','ManneuverThruster','FixedThruster','e88c4974-b24b-4e7b-82ad-ff4831383c07','','',NULL), +(8480,'Mivaldi Pants Yellow','Char_Clothing_Legs','UNDEFINED','d27c5682-3b69-442a-8e9d-b4b4f3522734','','','Carrying Capacity: 0.5K µSCU\n\nCut to a narrow fit, OpalSky\'s Mivaldi pants feature bold asymmetrical design with smart yet casual dual material styling, making it the perfect addition to any wardrobe.\n\nWomen\'s sizes currently out of stock.'), +(8481,'Horizon Helmet Blue','Armor','Helmet','0ba98032-2af4-4d78-ac95-c90b8075a59d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Horizon helmet is a durable and robust environmental enclosed work helmet. The single sheet laminate dome gives you an extremely wide field of view. A pair of side-mounted LED light modules provide additional illumination to make sure you can see what you\'re doing.'), +(8482,'Fresh Food','Cargo','Cargo','d345e06c-bdbc-4fe4-8527-4c10de3c34ae','','',NULL), +(8483,'XL-1','QuantumDrive','UNDEFINED','fce50a6d-690e-4b2d-9104-f3743387e1f0','','','Item Type: Quantum Drive\nManufacturer: Wei-Tek\nSize: 2\nGrade: A \nClass: Military\n\nWei-Tek might be a new company, but their line of military-grade components is already gaining notoriety. The XL-1 is their premier medium quantum drive that expertly blends performance and durability.'), +(8484,'Seat','Usable','UNDEFINED','b553f321-121f-4a90-9059-d6840a3f9cee','','',NULL), +(8485,'Palatino Legs Metropolis','Armor','Legs','05d400eb-2cd2-41f4-9054-ba8e87bbdcd1','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower.'), +(8486,'Flight Blade','FlightController','UNDEFINED','5077109d-c781-4dbc-bbca-d9981335a0b5','','',NULL), +(8487,'KRIG_l21_Wolf_Thruster_Mav_Pipe_Right','ManneuverThruster','UNDEFINED','12dcb8b9-f6f3-4adb-a795-751e0ed63c40','','',NULL), +(8488,'Seat','Usable','UNDEFINED','e87561f3-bb6a-4553-a384-1d4e924aef04','','',NULL), +(8489,'Seat','SeatAccess','UNDEFINED','9eb31ff4-e47e-4117-ac59-7998eb48fe86','','',NULL), +(8490,'Door','Door','UNDEFINED','8790ed50-e96f-4930-bc35-778f100d7580','','',NULL), +(8491,'Door Control','ControlPanel','DoorPart','ee68f737-d293-4904-b633-fcdcef58b4a8','','',NULL), +(8492,'AEGS_Vanguard_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','6f57a43e-558b-42e1-9888-4bb096c8b548','','',NULL), +(8493,'Liberator','Weapon','Rocket','065e4a72-1226-42d7-8be0-62865c8b6ebc','','','Item Type: Rocket Pod\nManufacturer: Thermyte Concern\nSize: 1\nRockets: 4xS2\n\nThermyte Concern\'s Liberator rocket pod carries four S2 rockets and can be attached to any size one hardpoint.'), +(8494,'Manned Turret','TurretBase','MannedTurret','3a975b97-a144-4414-a98c-8c5207cdad0b','','',NULL), +(8495,'Seat','SeatAccess','UNDEFINED','0a273c88-62fa-4fea-898b-55e7e95e1893','','',NULL), +(8496,'Cutlass Hawthorn Livery','Paints','UNDEFINED','c98e77e8-c410-4d49-9e14-d3b2c8f772bf','','','The Cutlass Hawthorn livery features a black and grey camo pattern that\'ll make the ship blend into the vast expanse of space.'), +(8497,'Weapon Rack','Door','UNDEFINED','34244b60-768c-4238-8249-8a85a84c6ef1','','',NULL), +(8498,'HRST_LaserRepeater_Ventilation_S3_Storm','WeaponAttachment','Ventilation','150071d1-da8b-4262-be53-e77a3629cead','','',NULL), +(8499,'WorkLife Pants Blue','Char_Clothing_Legs','UNDEFINED','644ae5ed-28fb-423e-9f4a-c8f362f3ebc9','','','Carrying Capacity: 2K µSCU\n\nWith Stegman\'s, you know you\'re getting clothes made for workers, by workers. Featuring multiple external pockets with easy access tabs, WorkLife pants are rugged, functional and professional. Just like you.'), +(8500,'CR-60','ExternalFuelTank','UNDEFINED','dec0f5dc-68c1-4058-b60d-a7a9911a8e73','','','Manufacturer: MISC\nItem Type: Fuel Pod\nFlow Rate: 1.15 SCU/s\nCapacity: 60 SCU\n\nThe standard fuel pod of the Starfarer, the CR-60 was designed by MISC to be a well balanced fuel storage option ready to tackle a wide variety of jobs.'), +(8501,'Remote Turret','Turret','GunTurret','e24dc01c-60df-4687-8010-c2fe558212ff','','','Remote Turret'), +(8502,'Argus Helmet Yellow/Black','Armor','Helmet','00752222-956f-4dbc-8d56-66ad980327fd','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s Argus helmet utilizes advanced multi-layered composite construction to provide incredible protection from weapon fire as well as environmental hazards. The tinted visor offers a wide field-of-view to improve situational awareness and unrestricted movement.'), +(8503,'Weapon_Rack_Cz_001','Usable','UNDEFINED','d9d932f4-da64-45c6-b246-837ffdf82ac8','','',NULL), +(8504,'INTK_ANVL_Hornet_F7CR','FuelIntake','Fuel','eb38ef19-58a7-4c4f-b078-3375713778c3','','',NULL), +(8505,'Internal Tank','FuelTank','Fuel','c53884b8-fbd0-4b0b-8f89-9084adba11c0','','',NULL), +(8506,'ESPR_Prowler_Thruster_Main_Utility','MainThruster','UNDEFINED','21181664-af5f-4aa8-bb17-bdc26b3ec869','','',NULL), +(8507,'Covalex_Datapad_Mel_4x3_Screen','Display','UNDEFINED','d1575ae6-c9f6-4bec-9e83-fe5e166ed036','','',NULL), +(8508,'Adroit Gloves Jade','Char_Clothing_Hands','UNDEFINED','bd427a2d-81db-47be-95a4-0ab6c4224b6d','','','Lightweight, quick-drying, and durable, the Adroit fingerless gloves keep your hands warm while giving your fingers the freedom to perform delicate work. The material on the wrist extends to meet long-sleeved apparel, cutting down on places that might be exposed to the elements.'), +(8509,'Flight Blade','FlightController','UNDEFINED','c7fbf526-65b3-472f-89c3-fa3a7e283b53','','',NULL), +(8510,'CNOU_Mustang_Gamma_Cover_Back','Container','Cargo','1ca4b132-5bca-41aa-ab95-4239bcfd0f3c','','',NULL), +(8511,'Tungsten (Ore)','Cargo','Cargo','70de649f-b547-412d-a41d-33a54d8e1d0f','','',NULL), +(8512,'RSI_Salvation_Thruster_Retro','ManneuverThruster','Retro','38671b0c-21bf-4c59-88ba-f9426160e3ab','','',NULL), +(8513,'Corsair Ghoulish Green Livery','Paints','UNDEFINED','0b4bb4f0-d204-419c-8c8b-6cb3914ee1bc','','','Embrace Day of the Vara mischievousness and mayhem any time of the year with this custom Corsair livery. It combines metallic green and black for a striking look that highlights the holiday\'s classic colors.'), +(8514,'300 Series Monarch Paint','Paints','UNDEFINED','9cafc961-8c53-4938-af7a-32430df0022b','','','Monarch?paint job for the Origin 300 Series.'), +(8515,'Seat','Usable','UNDEFINED','30045f28-223f-45e2-945a-e9bffe23d13a','','',NULL), +(8516,'Railing_Straight_4m_LowTech_Util_Stairs_04x01_d','Usable','UNDEFINED','4831c071-f47d-45ab-92f9-b4a7bd9a5181','','',NULL), +(8517,'KRIG_P52_Merlin_Thruster_Retro_02','ManneuverThruster','JointThruster','c0fa67e9-2b9f-4fe2-a945-ef7ab3b12249','','',NULL), +(8518,'Railing_Straight_8m_LT_Delta_b','Usable','UNDEFINED','58e36909-616e-4d22-b145-2108697bbd72','','',NULL), +(8519,'un_can_drink_2_e','Misc','UNDEFINED','b03b8316-a43c-4ef9-acf3-78179280947d','','',NULL), +(8520,'Lynx Legs Seagreen','Armor','Legs','3639d7f9-9a29-4939-b0e1-2f98687300b3','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(8521,'Dolivine','Cargo','Cargo','145e3a20-058e-46d7-83cc-143c9be2f18c','','',NULL), +(8522,'Ursa Respite Livery','Paints','UNDEFINED','aae90c25-7b6a-44ca-a586-d7ea60324d78','','','The Respite is an exclusive livery for the Ursa, which is black and grey with white highlights.'), +(8523,'Personal Storage','Cargo','UNDEFINED','010883b6-2f92-4ef0-8e3f-22d6e75bb68b','','',NULL), +(8524,'Seat','Usable','UNDEFINED','5fcb1a71-716f-40ff-9482-40f25ab00ed1','','',NULL), +(8525,'CRUS_Spirit_Door_Decal_Cooler','Decal','DoorPart','6cb63640-0ecb-4d2b-9c8a-abe0477eaf6c','','',NULL), +(8526,'Carryable_1H_CY_bottle_bar_06_schnapps_a','Misc','UNDEFINED','eef9f9a9-be7e-41b9-bca0-412cf4be545f','','',NULL), +(8527,'chevron_1_a','Misc','UNDEFINED','ce18d63d-edb2-4dc5-9779-6a59a9abc484','','',NULL), +(8528,'Turret','Turret','MissileTurret','b8a0efed-3bef-41d5-8187-72a4fefff411','','','Remote Turret'), +(8529,'Door Control','Door','UNDEFINED','8cff037b-aac4-493e-9aa5-bb566c186b0b','','',NULL), +(8530,'Emod \"Scorched\" Stabilizer1','WeaponAttachment','Barrel','6086430f-6a76-4768-8baa-6e09bc56140e','','','Manufacturer: ArmaMod\nType: Energy Stabilizer\nAttachment Point: Barrel\nSize: 1\n\nSpread: -20%\nProjectile Speed: -12.5%\nAim Recoil: +40%\nVisual Recoil: +40%\n\nArmaMod designed the Emod Stabilizer1 attachment to improve spread for a slower but more precise shot. The Scorched edition features a unique flame patina.'), +(8531,'ControlPanel_Screen_DockingMaster_Apollo','ControlPanel','DoorPart','477804c5-304a-b30a-62c1-dc14b64f58b2','','',NULL), +(8532,'ControlPanel_LightSwitch_Hull_C_Beds','ControlPanel','DoorPart','f777cd48-12db-4c3c-a6bf-3da35e990574','','',NULL), +(8533,'Door Control','ControlPanel','DoorPart','09f12996-a2c3-4fcc-a9f7-719a4d4c05b3','','',NULL), +(8534,'Vaux-C3 Module','MiningModifier','Gun','e40337f2-7f52-4160-95eb-0e96752bc3c2','','','Manufacturer: Shubin Interstellar\nItem Type: Mining Module (Passive)\n\nExtraction Laser Power: 125%\n\nOptimal Charge Rate: -5%\n\nThe Vaux-C3 Module from Shubin Interstellar reduces the charge rate when mining but makes extracting valuable ore faster.'), +(8535,'K7 Pants Blue','Char_Clothing_Legs','UNDEFINED','9fe29632-ec8c-4748-b906-865278d00c6b','','','Carrying Capacity: 3K µSCU\n\nDMC\'s K7 are an all-purpose cargo pants. Four easy access pockets provide extra storage while the triple-stitched polymer weave fabric is designed to withstand all kinds of weather conditions.'), +(8536,'Door Control','Door','UNDEFINED','d67214f7-d553-4b10-8c82-2887559b129e','','',NULL), +(8537,'MISC_Freelancer_Thruster_Retro','ManneuverThruster','FixedThruster','2b064d7e-2a8b-4da3-8c25-3ebfe18ea651','','',NULL), +(8538,'Door Control','Usable','UNDEFINED','26c2cdc8-d08c-4008-bd3b-51d17867a6a7','','',NULL), +(8539,'Davin Work Gloves Olive','Char_Clothing_Hands','UNDEFINED','5affd21e-97eb-4c79-a3d6-3a59a5069788','','','Field-tested for over fifty years, you can find Davin work gloves at numerous sites and ships around the Empire. Stegman\'s rugged construction and comfort lining have made them a customer favorite.'), +(8540,'behr_ltp_01_primed_sweeping','FPS_Deployable','Small','b082a682-a43d-4178-afed-42afa5c12ffd','','',NULL), +(8541,'Waste','Cargo','Cargo','099d14e9-b318-4386-a355-a685f0f96b7a','','',NULL), +(8542,'ORIG_135c_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','a0dcb89e-8ac7-4056-b580-030188182328','','',NULL), +(8543,'Glacosite','Cargo','Cargo','2bce3511-ca99-40f1-852e-387606c6151d','','','As glaciers form, heavier mineral contents sink over time and are then crushed by the weight above as the ice deforms and flows. When the glacier recedes, Glacosite deposits are left behind. White and blue in color, the crystals form in long shiny strands that almost are cotton-like in appearance. Glacosite has found specialized commercial use since it is an extremely light and durable insulator.'), +(8544,'MXC Timberwolf Camo Livery','Paints','UNDEFINED','88e164f9-e6e2-4e41-a5a1-248b211dcaf2','','','An ideal choice for cloaking the MXC in woodland environs, the Timberwolf Camo livery features a brown camo pattern and subtle red highlights. It\'s also compatible with other Greycat M-series vehicles.'), +(8545,'ARMR_ANVL_Terrapin','Armor','Medium','98d07eb3-d5c5-4725-babc-525deb952d8e','','',NULL), +(8546,'AEGS_Door_Decal_CmptRm_04','Decal','DoorPart','5dae9a7b-8127-4f25-b4d8-6316f9a2d7a9','','',NULL), +(8547,'Seat','Usable','UNDEFINED','93eb9f10-f3ec-48a9-83ae-97f23a2592a0','','',NULL), +(8548,'PAB-1 Core Sakura Sun Edition','Armor','Torso','cfb071eb-791e-4c86-9778-1e44436cde70','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile. The Sakura Sun Edition was made specifically for the company.'), +(8549,'Railing_Straight_4m_TDD_01','Usable','UNDEFINED','33ddf909-2e3e-4499-81ad-eb190a0ff96d','','',NULL), +(8550,'Mercury','Cargo','Cargo','56041e53-e3d1-45db-90a6-5b166fe0ac41','','',NULL), +(8551,'Spirit Crimson Livery','Paints','UNDEFINED','cd950441-ed5b-4b71-8c1e-2943458406e0','','','Strike a bold impression with this deep red paint scheme featuring an enlarged Crusader logo angling across both wings.'), +(8552,'Strata Core Neptune','Armor','Torso','8c505189-76de-43ae-a10a-7ab42dea987c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 15k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpack Compatibility: Light & Medium \n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres.'), +(8553,'m_human_mannequin_marine_heavy','ShopDisplay','UNDEFINED','eb7e6151-6666-4777-bdf4-052922c8c963','','',NULL), +(8554,'Wanderer Boots Forest','Char_Clothing_Feet','UNDEFINED','dac65e4a-9b35-41dd-8941-b9f9df71c2fc','','','Grindstone\'s Wanderer line is an all-purpose boot designed to take any punishment you throw at it.'), +(8555,'RSI_Apollo_Thruster_Retro_Nacelle','ManneuverThruster','FixedThruster','428298c9-8d47-c1d2-52a9-5da79030f1b0','','',NULL), +(8556,'7SA \'Concord\'','Shield','UNDEFINED','b1e490ef-86d6-466a-afb1-3875028b7a8a','','','Item Type: Shield Generator\nManufacturer: Behring\nSize: 1\nGrade: A\nClass: Civilian\n\nA top-of-the-line shield generator that runs loud and proud. What it sacrifices in stealth it more than makes up for with supreme durability and excellent performance. So, even if enemies see you coming, they’ll have a hard time disabling Behring’s 7SA ‘Concord’.'), +(8557,'Khartu-al Harmony Livery','Paints','UNDEFINED','48a57967-03a8-4778-922b-97d7750b72b6','','','The Harmony livery is meant to showcase Humanity\'s peaceful relationship with alien species with a semi-pearlescent blue main coat marked with organic reflective red to suggest the coming together of disparate species and cultures. The Harmony livery has been designed and produced by the UEE\'s Diplomatic Corps and freely licensed to all spacecraft manufacturers. Now Khartu-al owners can celebrate the UEE\'s intentions of working toward a peaceful galaxy.'), +(8558,'PC2 Dual S4 Mount','Turret','NoseMounted','fa227828-0b9b-4fa9-80e1-fd534202e434','','','PC2 Dual S4 Mount'), +(8559,'Door Control','Door','UNDEFINED','0c201dd0-3950-427d-9688-57e768bdfced','','',NULL), +(8560,'Seat','SeatAccess','UNDEFINED','9513e2a2-b8a5-4a93-97a2-841b75106f1c','','',NULL), +(8561,'Venture Core Blue','Armor','Torso','334f1bd9-7ec9-4564-bc5b-fcdf3b3b5005','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(8562,'Door Control','Door','UNDEFINED','498d6ce9-a04d-06be-3ed2-e53bd71ea197','','',NULL), +(8563,'Door Control','Door','UNDEFINED','dc678a4e-7537-40ea-8e8d-23f042561417','','',NULL), +(8564,'Tarantula GT-870 Mark 3 Cannon','Weapon','Gun','42e5fc33-1e86-4141-b876-c74aaec72a25','','','Manufacturer: Gallenson Tactical Systems\nItem Type: Ballistic Cannon\nSize: 3\n\nFed by Gallenson Tactical’s patented SpinGlide drum ammunition system, the Tarantula GT-870 Mk3 can smoothly and accurately deliver a consistent stream of ballistic shells. Though it only has a moderate rate of fire, its trustworthy durability makes it a dependable addition to any fight.'), +(8565,'Manned Turret','TurretBase','MannedTurret','b692e35b-faa5-43c4-8700-eded659149d3','','',NULL), +(8566,'Door Control','Door','UNDEFINED','025c839a-95f9-4fe8-b81b-0f7d79d7aeae','','',NULL), +(8567,'Door Control','ControlPanel','DoorPart','88653347-86fd-478f-aaf3-9484cc9f913a','','',NULL), +(8568,'CBH-3 Helmet Red','Armor','Helmet','9dede6cd-110d-45a9-aeeb-7dffe89883a9','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. Visor is AR crosshair compatible.'), +(8569,'AEGS_Vanguard_Sentinel_Thruster_Main_01','MainThruster','FixedThruster','29959bf0-9ed7-4737-92f2-728b7e6d65c3','','',NULL), +(8570,'Door','Door','UNDEFINED','8e03a5c0-9f15-449d-9427-b76b62197fba','','',NULL), +(8571,'RSI_Apollo_OC_Left_Tier_1','Room','UNDEFINED','4d6cf3b5-a4fa-16ee-b374-de6ddaa7448d','','',NULL), +(8572,'BR-2 \"Permafrost\" Shotgun','Weapon','Medium','6c39587a-f569-4093-9cdc-bb0b63636642','','','Manufacturer: Behring\nItem Type: Shotgun\nClass: Ballistic\n\nMagazine Size: 12\nRate Of Fire: 75 rpm\nEffective Range: 15 m\n\nAttachments: Optics (S1), Barrel (S3), Underbarrel (S2)\n\nOriginally designed for the military, Behring decided to sell the BR-2 ballistic shotgun to the general public after the initial weapon testers kept requesting to take one home. Featuring a semi-auto fire mode that can rapidly deliver devastating stopping power, the BR-2 is the ideal choice for both offensive and defensive operations. This special Permafrost edition features blue and grey coloring reminiscent of a glacier under a blinding winter sky.'), +(8573,'Seat','SeatAccess','UNDEFINED','2d153ee5-1ed4-4a35-a91a-ac4b7085430b','','',NULL), +(8574,'Ecouter','Radar','MidRangeRadar','3e11d2f3-0617-4e42-afd7-72ba8302fcdb','','','Item Type: Radar\nManufacturer: GNP\nSize: 1\nGrade: C\nClass: Military\n\nSpace is vast and unknowable, that’s why discerning pilots rely on the Ecouter small radar from GNP to keep them in the know about what’s around them.'), +(8575,'TOAG_LaserRepeater_Ventilation_S3','WeaponAttachment','Ventilation','b4a260ff-114d-4d60-8112-1c8e3d5cb501','','',NULL), +(8576,'Ponos Boots White','Char_Clothing_Feet','UNDEFINED','8b9815ab-1500-4858-b9f1-38fd92b2121b','','','Quite simply, R6 Pro\'s Ponos boots were built for backbreaking work. Constructed out of Thermosulate technology, these waterproof and insulated workboots are rated for sub-arctic environments while the composite outsole ignores hazards to maintain traction when you need it most.'), +(8577,'Pelerous','Radar','MidRangeRadar','62567423-2d97-4515-ab39-b90756c3fe54','','','Item Type: Radar\nManufacturer: Blue Triangle Inc.\nSize: 1\nGrade: C\nClass: Stealth\n\nAggressors can’t attack what they can’t see, so keep your signature low with the Pelorous stealth radar from Blue Triangle Inc.'), +(8578,'VCK-1 \"Maul\" Blade','Weapon','Knife','1133333b-84f7-43bb-a833-e2581bbdbe4c','','','Manufacturer: UltiFlex\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nRenowned as Humanity\'s fiercest enemy, the weapons wielded by the Vanduul are some of the most feared in the universe. Taking inspiration from those brutal knives, the VCK-1 from UltiFlex features a split blade, ceremonial detailing, and has been finished with a unique patina that closely resembles the Vanduul\'s own bespoke alloys.\n\nThe Maul edition features dark metal and red detailing.'), +(8579,'Door_NoRoomConnector_ARGO_MOTH_CargoDoor','Door','UNDEFINED','5d9b305e-54b6-42f4-a723-8d65d004383c','','',NULL), +(8580,'Morningstar Helmet Brimstone','Armor','Helmet','ce726c1c-b0c9-499e-998c-249ae2fca47c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(8581,'Door Control','Door','UNDEFINED','3af66c51-45d4-40c6-acbd-0701a1d4d12d','','',NULL), +(8582,'Carryable_1H_trophy_citizencon2951','Misc','UNDEFINED','654941e8-18c2-4b3a-98b1-645d77b3b81c','','',NULL), +(8583,'E\'tam','Cargo','Cargo','7cdc4400-c1c6-4e99-9157-cbbc6db4a0e5','','',NULL), +(8584,'RSI_Aurora_Thruster_LN_SG_Retro_Right','MainThruster','FixedThruster','63159636-2441-40e4-a89f-5bec0deea050','','',NULL), +(8585,'Archibald Jacket Hearth','Char_Clothing_Torso_1','UNDEFINED','88f06c35-bca3-4ab0-b375-21540e548101','','','Carrying Capacity: 1K µSCU\n\nSimple, comfortable and understated. While most fashion designers avoid these terms, Escar Limited understands that sometimes you just want something that feels right. Based on the classic design from Centauri II, the Archibald is a simple, comfortable and understated light jacket made from a polyweave that doesn\'t restrict airflow.'), +(8586,'ORC-mkV Arms Seagreen','Armor','Arms','c6ead4a8-1769-4d2e-b48d-452651801cd8','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(8587,'Carryable_1H_SQ_personal_comb_5_a','Misc','UNDEFINED','248803c1-8fc1-4f83-a8aa-e676ef7e41c4','','',NULL), +(8588,'TRGT. STATUS','Seat','UNDEFINED','6a430c63-4cbe-49d3-8e69-ef096dea187f','','',NULL), +(8589,'Seat','Usable','UNDEFINED','c1754592-f101-451d-99f2-e71a1fad7b11','','',NULL), +(8590,'Carryable_1H_CY_glass_tumbler_1_a','Misc','UNDEFINED','e4a21a51-b2ec-4623-a615-e9f40f0308c5','','',NULL), +(8591,'Overlord Core Cardinal','Armor','Torso','7e600346-ac60-4feb-9fd6-354329d802cb','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12.0 µSCU\nBackpacks: All\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.\n\nThe Cardinal edition is a vibrant red with purple and white accents.'), +(8592,'Seat','Usable','UNDEFINED','f37124ca-d4ac-437a-ae57-379220091bbf','','',NULL), +(8593,'Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','a8d0c7c8-2b3a-49ae-8e21-cb2299ef5891','','','Joker Defcon Flares Ammo'), +(8594,'Door Control','Door','UNDEFINED','f2c61a4e-06ef-40fc-a817-ba2efb2cb734','','',NULL), +(8595,'ORC-mkV Legs Hurston Edition','Armor','Legs','173bbdf3-44a0-465d-bec5-b034e3d13ff1','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement. The Hurston Edition was made specifically for the company\'s security services.'), +(8596,'Lynx Core Green','Armor','Torso','ae12527b-8cf5-4ec0-9853-682dd9f69500','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(8597,'AEGS_Redeemer_Blankingplate_RT','Misc','UNDEFINED','84c27857-f46f-4199-96cf-cc4d80c2764c','','',NULL), +(8598,'SHIELDS','ShieldController','UNDEFINED','911b245b-d338-4b94-ae28-80dff5e47ec6','','',NULL), +(8599,'Venture Legs Black','Armor','Legs','98593fc3-d513-41bd-a713-ef9ed1ddd479','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(8600,'SLAM','Cargo','Cargo','aac89cb8-665d-406d-871a-afcc179968d8','','',NULL), +(8601,'AEGS_Reclaimer_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','e9bc25ee-c707-49da-9662-a3bc2c6a7b0f','','',NULL), +(8602,'Carryable_2H_FL_Safe_Advocacy_Badge','Misc','UNDEFINED','d2a986bd-86e5-4699-a013-016f9042e55c','','',NULL), +(8603,'DoorDefaultRoomConnector','Door','UNDEFINED','ab0ef44c-2084-4971-9d27-cfa15973a13b','','',NULL), +(8604,'Venture Undersuit Red/White','Armor','Undersuit','4dbfb1e0-8889-458f-946a-f91d2004f910','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(8605,'Ht_DoorPanelScreen_Locked','Misc','UNDEFINED','3be49336-c321-40c3-b7e2-8d32675dae8c','','',NULL), +(8606,'ToolSafe Vest Ochre','Char_Clothing_Torso_1','UNDEFINED','0cfba48a-949d-4d52-af30-1bb41aebfab7','','','Carrying Capacity: 10000 µSCU\n\nThe ToolSafe Vest is constructed with thick materials accentuated by high-visibility straps to ensure worker safety. The inclusion of numerous pouches gives this jacket a generous amount of storage to make it a staple of worksites everywhere.'), +(8607,'ANVL_Pisces_Thruster_Retro_Left_C8R','ManneuverThruster','JointThruster','c2aa89d2-a735-45b4-9a26-71efb2751c9f','','',NULL), +(8608,'Beacon Undersuit Grey','Armor','Undersuit','f109453c-54d3-45ca-a828-f367d90b9aa2','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRSI\'s Beacon undersuit is a general use utility designed to provide total protection against environments and vacuum. Built out of a durable but flexible polymers, the Beacon provides a wide freedom of motion for a variety of body types.'), +(8609,'Wrecker Arms Ashen','Armor','Arms','fd90508f-e57e-4742-9d1f-ddbd2b350b97','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFavored by the most brutal of hunters, the Wrecker armor is a fusion of discarded metal and pilfered fabric cobbled together to offer protection while stalking prey.\n\nThe Ashen version is sprayed with white paint and anointed with bone fragments and Vanduul armor pieces.'), +(8610,'Door Control','ControlPanel','DoorPart','cfa71c2d-cb2d-48e9-8254-b8238f4ccc3e','','',NULL), +(8611,'Arclight Pistol Battery (30 cap)','WeaponAttachment','Magazine','e15e874d-a0c1-4f91-939b-b04bf7a9e839','','','Item Type: Battery\nCapacity: 30\n\nThis plasma cell has enough capacity for the Klaus & Werner Arclight pistol to fire 30 rounds before needing a recharge. '), +(8612,'DCP Armor Arms Hunter Camo','Armor','Arms','e742fa9a-dc65-43b0-912a-f6a772a6d309','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(8613,'MacFlex Arms Tan','Armor','Arms','bca35041-a87c-47dd-afda-9bdab05d69c6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(8614,'Pyro RYT Multi-Tool Battery','WeaponAttachment','Magazine','f1073c2c-900c-4c62-a866-46aa402ee1b2','','','This battery powers Greycat\'s Pyro RYT Multi-Tool, so that you can tackle a variety of tasks.'), +(8615,'Warden Backpack Daimyo','Armor','Backpack','e7c00518-0760-41df-acfb-6ca578099ca1','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nThis hard backpack from Virgil, Ltd. makes travel easy. Whether you need a place to carry your weapons or you\'ve decided to bring some extra rations along for a long journey, this backpack was designed to handle any occasion. The interior features a generous, closeable pocket to keep your small items from falling out of place.\n\nThe Daimyo edition is colored brown and gray with polished steel plating.'), +(8616,'Internal Tank','QuantumFuelTank','QuantumFuel','3cc1efaf-667e-4ae9-9f1f-6c606b9d8c3e','','',NULL), +(8617,'RSI_Perseus_Turret_Bottom_Lighting_OC','Room','UNDEFINED','74da8b20-6659-4ed2-b126-582b7c9e7258','','',NULL), +(8618,'Caret Pants Dark Grey','Char_Clothing_Legs','UNDEFINED','c486008a-c2d0-4833-8faf-ffac44aaa55d','','','Carrying Capacity: 2K µSCU\n\nWith the fortitude of workwear and the comfort of khakis, the Caret pants are sure to become your standard go-to for tough jobs. Built with strong fabric and quality stitching so you can focus on what needs to be done.'), +(8619,'FBL-8a Core Imperial Red','Armor','Torso','ac9f15b5-cb6b-4ae3-a77d-49234111fecf','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -32 / 62 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nCDS\'s quest to create the ideal light armor continues with the FBL-8a. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible.'), +(8620,'Golem Coalheart Livery','Paints','UNDEFINED','ffc265a3-ec48-42a7-b65f-a327dfdd80f8','','','Mine and make yourself less visible against the dark expanse of space with the black and grey Coalheart livery for the Golem.'), +(8621,'Low End Couch','Usable','Cargo','49b22154-6ff8-48af-9740-9b1122c64a07','','','Couch Decoration'), +(8622,'Citadel Legs Ignitor','Armor','Legs','19963664-f89b-4252-a8a1-42120939a371','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(8623,'stand_shop_large_Shield','ShopDisplay','UNDEFINED','531ae328-a791-4a2f-80e4-e5f94cd92a8f','','',NULL), +(8624,'NONE_LaserRepeater_Barrel_S2','WeaponAttachment','Barrel','17800bc8-fa08-47ec-ba0d-eba6d589e12c','','',NULL), +(8625,'C54 \"Scorched\" SMG','Weapon','Medium','74c2cdbe-238a-4709-a55c-810a91dd7627','','','Manufacturer: Gemini\nItem Type: SMG\nClass: Ballistic\n\nMagazine Size: 50\nRate Of Fire: 1,100 rpm\nEffective Range: 35m\n\nAttachments: Barrel (S1), Optics (S1), Underbarrel (S1)\n\nEasy to handle and a beauty to behold with its purple accented styling, the C54 is a sleek and precisely balanced SMG from Gemini. Its lightweight polymer frame and ergonomic design makes it ideal for close quarter engagements. The C54 is capable of firing 10mm rounds on full auto to provide maximum support and target saturation to ensure that any engagement ends quick. The Scorched edition features a unique flame patina.'), +(8626,'TRGT. STATUS','Seat','UNDEFINED','798fcb2e-3785-4ec4-a37f-bff388a24747','','',NULL), +(8627,'PC2 Dual S1 Mount','Turret','GunTurret','5eeb75ed-8fd9-488f-b5ff-c88d85d2adb3','','','PC2 Dual S1 Mount'), +(8628,'Distilled Spirits','Cargo','Cargo','a3f2a199-0ab3-4fa7-9e6c-19f28f3b636a','','',NULL), +(8629,'QTNK_RSI_Bengal','QuantumFuelTank','QuantumFuel','5bc46e82-4455-4a89-a1de-5dddcbe23c96','','',NULL), +(8630,'Cargo_Comm_125x3_Metal_Agricium_a','Cargo','Cargo','6b424e47-e2a3-40c5-a175-8dbebcd69a72','','',NULL), +(8631,'Door Control','Door','UNDEFINED','a6b7002b-8339-4029-a5fe-2e34e373c165','','',NULL), +(8632,'Neon','Cargo','Cargo','e122cd69-8fe9-4cf4-a03a-a2520f0591e4','','',NULL), +(8633,'Valkyrie Splinter Livery','Paints','UNDEFINED','e7e359cc-abb6-4efb-8c92-2fdc1bdbdcb3','','','Customize your Valkyrie with this fragmented green livery.'), +(8634,'Toilet_AEGS_Idris','Usable','UNDEFINED','d9849a4e-0bec-49ab-9059-48db0a50afea','','',NULL), +(8635,'Argus Helmet','Armor','Helmet','28e6084e-084b-4ce8-968c-be2220c135df','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s Argus helmet utilizes advanced multi-layered composite construction to provide incredible protection from weapon fire as well as environmental hazards. The tinted visor offers a wide field-of-view to improve situational awareness and unrestricted movement.'), +(8636,'2954 Luck\'s Favor Tankard','Drink','UNDEFINED','2d01142c-0199-4ac2-9589-21096a16b98d','','','Beautifully crafted from genuine wood with pewter accents, this Stella Fortuna themed tankard features a compass star and a reminder that \"Luck Favors the Bold.\"'), +(8637,'Lillo Pants Dark Green','Char_Clothing_Legs','UNDEFINED','14f5d0a2-1ab5-4b23-bf07-eb3f7d426b71','','','Carrying Capacity: 0.5K µSCU\n\nThese slim cut pants from Fiore give you a tailored feel at a fraction of the cost. Built from space-age weaves, the Lillo are a low maintenance, high impact addition to your office wardrobe.'), +(8638,'Concept Shirt Dark Green','Char_Clothing_Torso_0','UNDEFINED','8f63a459-3017-4ec8-aeea-48b271894df0','','','This crisp, versatile button-front shirt from Fiore is made with cutting edge stain resistant and wrinkle-free technology, guaranteeing that you stay professional at all times.'), +(8639,'Revenant Pod','Cargo','Cargo','e4df22f0-79c2-46ff-84e5-4e9f36c262e5','','',NULL), +(8640,'ANVL_Carrack_SCItem_Cart_Console','Seat','UNDEFINED','14dc4406-18a6-4056-9ca3-061da42f24e9','','',NULL), +(8641,'Argo MOTH Missile Launcher','MissileLauncher','MissileRack','bcef221a-2493-48e4-b737-0c006415038a','','','Item Type: Missile Launcher\nManufacturer: Argo Astronautics\nMissiles: 16xS2\n\nThis bespoke missile launcher holds sixteen S2 missiles to help protect the MOTH while on salvage operations.'), +(8642,'Seat','Usable','UNDEFINED','a327bea5-d007-4c6e-821e-c99f09f8c241','','',NULL), +(8643,'ANVL_Pisces_Thruster_Retro_Right_C8R','ManneuverThruster','JointThruster','8e7cb8de-af69-4140-a8fa-9b60ac717f91','','',NULL), +(8644,'Inquisitor Arms Purple','Armor','Arms','2267db02-b727-42e2-b9ad-509bf7dc4017','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(8645,'Door Control','Door','UNDEFINED','ad387e18-4be3-42ec-97d5-cb0e5ab5e0c8','','',NULL), +(8646,'Balor HCH Helmet Aqua','Armor','Helmet','1044884e-a1df-4694-8242-b9b97a363033','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. Visor is AR crosshair compatible.'), +(8647,'ANVL_Lightning_F8_Thruster_Mav_Joint_LightBlue','ManneuverThruster','JointThruster','88601b1e-a040-470b-be5a-4ba94aafe7a9','','',NULL), +(8648,'Bannock Jumpsuit Blue','Char_Clothing_Torso_1','UNDEFINED','85626d7f-ff67-405d-a25e-3f1e6ca6cdde','','','Carrying Capacity: 1K µSCU\n\nThe Bannock jumpsuit combines comfort and durability. It features reinforced padding in critical areas, plenty of storage, and an adjustable belt to ensure a snug fit. Its unique design also includes a built-in secondary layer, allowing the wearer to unzip and cool down without fear of damaging their everyday clothes.'), +(8649,'Inquisitor Legs Purple','Armor','Legs','f9fe6b21-49ac-44be-920a-64e68e4634c8','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(8650,'ORC-mkX Arms Nightfire','Armor','Arms','53d6bec6-477c-4ff7-bc66-a356db06decf','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(8651,'ORC-mkV Legs','Armor','Legs','bf9e7f98-fee7-4d17-8588-02238efcb637','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(8652,'Geist Armor Helmet Golden Blossom','Armor','Helmet','db272f30-36b6-4748-af05-65546c58de6c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.\n\nThis matte black stealth armor is embellished with intricate golden flowers, giving your enemies one final glimpse of life before death.'), +(8653,'TBF-4 \"Balefire\" Combat Knife','Weapon','Knife','66d9acb9-fea7-439f-a14c-e25e700df65f','','','Manufacturer: Roussimoff Rehabilitation Systems\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nBuilt for combat but ready for everyday use, the TBF-4 \"Balefire\" combat knife will get the job done. Built with an ultrastrong 1055 carbon steel blade, this tactical knife ends with a tanto point perfect for stabbing and penetrating hard surfaces while the serrated spine can be used to slice and shred. Beautifully balanced, the TBF-4 also features a grip with two finger grooves to ensure your hand stays in place during use. The special \"Balefire\" edition features a threatening red blade.'), +(8654,'Table_Bench_8_AEGS_FullOfTrays','Usable','UNDEFINED','17056ee6-28a3-4642-87ac-756234cd8e17','','',NULL), +(8655,'C5-173f S5 Hornet Mk II Ball Turret','Turret','BallTurret','ea532b81-bbe5-4cc1-aede-4566ab44607e','','','Give your Hornet Mk II a boost in firepower with the C5-173f ball turret. Designed by Anvil specifically for its F7 Mk II series, this S5 ball turret can equip two S3 ship weapons.'), +(8656,'TRGT. STATUS','Seat','UNDEFINED','4b46925c-f76f-433c-9b27-8b18541a97cb','','',NULL), +(8657,'counter_kitchen_1_straight_01x015x01_b','Misc','UNDEFINED','dfd3fb52-1759-4150-aed4-fedb479ad77f','','',NULL), +(8658,'Aster Gloves Moss','Char_Clothing_Hands','UNDEFINED','56eca1fc-9e33-458e-b3ca-5a53e2655368','','','Pros at keeping your hands safe without sacrificing dexterity, the slip-resistant Aster Gloves deliver solid protection and lasting warmth during chilly or hostile conditions. The tough synthetic leather breaks in well and will stand up to years of frequent use.'), +(8659,'Banu Lockbox Replica','Misc','UNDEFINED','38cf68a5-9152-4ab7-8382-1c807d2c66b4','','','This replica Banu lockbox mimics the look and feel of these rare and highly sought after collector\'s items. Usually owned by the heads of soulis to hold valuable items or documents, this realistic replica version was produced as a purely decorative item for Humans and can\'t be opened.'), +(8660,'Carryable_TBO_FL_32SCU_Commodity_Organic_Armillaria','Cargo','Cargo','d4dad2b3-dd0a-4869-a2bf-6e8178fd5db2','','',NULL), +(8661,'Cadmium Allinide','Cargo','Cargo','c102cac2-87ad-40db-8a6d-f50e2ec43d3f','','',NULL), +(8662,'ORC-mkV Arms Blue','Armor','Arms','f7a124a8-f5c8-4b6f-8d00-ddc77378c6d9','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(8663,'Railing_Straight_6m_LT_Delta_a','Usable','UNDEFINED','10cd94e1-c73c-4537-a0ab-6554b1398b64','','',NULL), +(8664,'Weapon Rack','Door','UNDEFINED','5db6f438-5acf-4f27-99ef-26e9f51ac767','','',NULL), +(8665,'Bed','Usable','UNDEFINED','dbdc48ce-0e3f-4a51-97c4-056be187c2f4','','',NULL), +(8666,'SHIELDS','ShieldController','UNDEFINED','c723748f-ceba-4973-bcc8-eb64ce8978e7','','',NULL), +(8667,'Bed','Usable','UNDEFINED','a5bb47c8-49eb-44b0-a055-06824e20135d','','',NULL), +(8668,'Hercules Starlifter Frostbite Camo Livery','Paints','UNDEFINED','89500cf6-3a3f-4a71-ab43-cbcae42e4b3a','','','Soar like the winter winds with the Frostbite Camo livery for your Hercules Starlifter.'), +(8669,'TRGT. STATUS','Seat','UNDEFINED','80ab6c74-b84a-45b2-bd8f-9a1fb2aa804d','','',NULL), +(8670,'Seat','Usable','UNDEFINED','6f95658a-70b5-4334-9992-eade53921758','','',NULL), +(8671,'Default_LensDisplay_PU','Visor','Personal','9873fa65-1abb-4907-a943-20c94c68de0f','','',NULL), +(8672,'Sadaryx','Cargo','Cargo','a8dd145a-3259-42a0-8cdb-b81e521303f4','','',NULL), +(8673,'SHIELDS','ShieldController','UNDEFINED','f30b4273-ee51-4da2-8d26-603974faf159','','',NULL), +(8674,'Ration pack','Misc','UNDEFINED','d8490d2d-132b-432e-81d0-26f47576a2a8','','',NULL), +(8675,'DockingTube_Fuel_Ports_DRAK_Mule','DockingCollar','UNDEFINED','cbe8b649-63a3-4c3b-a82d-c2bf404764c4','','',NULL), +(8676,'Mantis Stormbringer Livery','Paints','UNDEFINED','6f233c21-651a-4727-aee0-5526f6a6c929','','','This custom Mantis livery was created to celebrate the 2950 IAE on microTech. It blends black and electric blue to give the ship a cool new look.'), +(8677,'RSI_Polaris_Thruster_Retro_Bottom_Left','ManneuverThruster','FixedThruster','6e672999-3441-462c-a95d-ef19ca2b7266','','',NULL), +(8678,'Ati Jacket Olive','Char_Clothing_Torso_1','UNDEFINED','785d359a-69c8-44c3-84e3-7ad8f5f93f38','','','Carrying Capacity: 2K µSCU\n\nFiore\'s is a modern update of traditional Earth design. Slim tailoring, a high collar, and striking asymmetrical design make this overcoat a must-have item for any wardrobe.'), +(8679,'Oracle Helmet Violet','Armor','Helmet','94bb9fd0-a6d7-4015-bb42-8fb4acf3f793','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(8680,'Vulture Carbonide Livery','Paints','UNDEFINED','e22bcfed-04be-4d66-9bb1-28f0164b4145','','','When salvage operations need to be done quietly, the Carbonide livery offers a distinct grey-on-grey alternating layout intended to obscure the spacecraft against a usual starfield.'), +(8681,'LH86 Pistol','Weapon','Small','b15f7736-0010-4c85-b684-85118761d124','','','Manufacturer: Gemini \nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 25\nRate Of Fire: 1200 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe LH86 from Gemini is a compact kinetic handgun designed for personal defense and close-quarter combat. A keen eye on ergonomics and balance coupled with hardy construction makes this pistol a natural fit for any shooter in any number of hostile conditions. The LH86 also comes with Tritium low-light sight and a twenty-five round magazine.'), +(8682,'Seat','SeatAccess','UNDEFINED','ab677fb8-a2fd-4edf-afea-71729f60a666','','',NULL), +(8683,'Arbor MH1 Mining Laser','Mining','Gun','8bfc261a-6c67-4bec-b5b5-71407e086ec9','','','Manufacturer: Greycat Industrial\nItem Type: Mining Laser \nSize: 1\n\nOptimal Range: 60m\nMaximum Range: 180m\n\nMining Laser Power: 189 - 1890\nExtraction Laser Power: 1850\n\nModule Slots: 1\n\nLaser Instability: -35%\nOptimal Charge Window Size: +40%\nInert Material Level: -30%\n\nResistance: +25%\n\nThe Arbor MH1 became the universe\'s most heralded mining laser thanks to Greycat Industrial\'s exacting standards and business prowess. The laser found favor among industrial and solo operations for balancing speed and safety while also featuring a special filtration system that reduces the amount of inert material collected. Greycat capitalized on this reputation by securing exclusive contracts that made the Arbor MH1 the standard laser head on most mining ships.'), +(8684,'AEGS_Javelin_LandingGearSystem','LandingSystem','UNDEFINED','6f09822d-fd8c-40d5-b3f7-4c1c6ca5d6b6','','',NULL), +(8685,'IndVest Jacket Aqua','Char_Clothing_Torso_1','UNDEFINED','7328f9a6-17d1-49d8-b081-6bdcbd84a196','','','Carrying Capacity: 5K µSCU\n\nKeep your tools within easy reach with Stegman\'s IndVest. Made from industrial strength materials, this is a rare jacket that\'s both stylish and sensible.'), +(8686,'Clempt Pants Desert','Char_Clothing_Legs','UNDEFINED','6d3cc78d-f088-447e-b4ea-bd3cb88e07e7','','','Carrying Capacity: 2K µSCU\n\nStegman\'s factory pants have been taken to the next level with the Clempt line. These rugged all-purpose pants come with double knees for extra comfort and protection and are made from tough composite weave fabric to last as long as the work needs.'), +(8687,'Ship Ammunition','Cargo','Cargo','cf24ddb0-8aab-43ed-a0ea-336087ec1558','','',NULL), +(8688,'Cordimon Jacket Green','Char_Clothing_Torso_1','UNDEFINED','b14f0a00-b294-4ba9-b3a1-c15981003f72','','','Carrying Capacity: 3K µSCU\n\nStegman\'s classic worker\'s jacket has been a staple of job sites for over seventy years. This duotone pattern is cut from the toughest material meaning you can wear it anywhere, anytime. It may not be armor, but it damn sure feels like it.'), +(8689,'StorageCage_Time_Empty','Cargo','UNDEFINED','4c264078-775d-4348-8d47-eeb33d46a6bf','','',NULL), +(8690,'Tona Shoes Yellow','Char_Clothing_Feet','UNDEFINED','03a5a5a3-4458-432a-8192-99185b86752e','','','Perfect for hiking or fieldwork, the Tona from R6 Pro is a low-top sneaker built out of breathable Cheofreme materials which not only provide extra protection against impacts, but keep your feet dry.'), +(8691,'Internal Tank','QuantumFuelTank','QuantumFuel','e4bf513b-e184-432f-a15b-341d2abf8638','','',NULL), +(8692,'Falston Jumpsuit \"UDF Edition\"','Char_Clothing_Torso_1','UNDEFINED','3ad0e51c-4d18-4c47-ab64-f32e8bde18bd','','','Carrying Capacity: 1K µSCU\n\nThe Falston jumpsuit has a high collar to guard against the elements, triple-reinforced stitching, and an extra soft interior lining because everyone deserves a bit of comfort.'), +(8693,'DockingTube_Fuel_Ports_DRAK_Dragonfly_Yellow','DockingCollar','UNDEFINED','1132270b-3227-47d5-a9d5-85b6138c8033','','',NULL), +(8694,'Pico the Penguin Plushie','Misc','Personal','140e8251-7561-4729-9977-445674f67426','','','This adorable mascot of New Babbage loves nothing more than carving their way down the snow covered slopes of microTech.'), +(8695,'Turret','Container','Cargo','30d9c6da-a116-45ea-b321-33ccdddfedf8','','',NULL), +(8696,'Door Control','ControlPanel','DoorPart','905f8dea-7e76-4731-bbf2-199d88d65276','','',NULL), +(8697,'Tarantula GT-870 Mark 3 Cannon','Weapon','Gun','0c60b4ec-ba9c-42e5-9246-6f241f138167','','','Manufacturer: Gallenson Tactical Systems\nItem Type: Ballistic Cannon\nSize: 3\n\nFed by Gallenson Tactical’s patented SpinGlide drum ammunition system, the Tarantula GT-870 Mk3 can smoothly and accurately deliver a consistent stream of ballistic shells. Though it only has a moderate rate of fire, its trustworthy durability makes it a dependable addition to any fight.'), +(8698,'PH - scu_service_shirt_01_ellroys01_01','Char_Clothing_Torso_0','UNDEFINED','42633084-6ebe-402e-abd8-7af0dad71664','','','PH - scu service shirt 01'), +(8699,'Door Control','Door','UNDEFINED','b485a35d-be5d-4116-947f-84c7bcb52ff8','','',NULL), +(8700,'ARMR_RSI_Apollo','Armor','Medium','46fbe917-1cf8-2bc2-cd45-e15b64530fa1','','',NULL), +(8701,'BroadSpec','Radar','MidRangeRadar','c802e513-66a1-462f-bfef-a4faa1ab5f1a','','','Item Type: Radar\nManufacturer: Chimera Communications\nSize: 2\nGrade: B\nClass: Industrial\n\nThe Chimera Communications BroadSpec radar has an important job to do and does it well, detecting a wide range of emissions and signatures with a dependability you can count on.'), +(8702,'Strata Legs microTech Edition','Armor','Legs','33be7a7a-6d63-45a4-9e70-924c7c553a62','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 10k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The microTech Edition was made specifically for the company.'), +(8703,'Dashboard','SeatDashboard','UNDEFINED','673e62f2-3283-4515-af9a-28d185bcb4fa','','',NULL), +(8704,'Strata Arms Hurston Edition','Armor','Arms','dbaf3e0d-754d-47f2-a852-d7530c700f17','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Hurston Edition was made specifically for the company.'), +(8705,'Food_bowl_puree_01_b','Food','Consumable','59b38632-212c-47f1-a258-dd59900ca2a1','','',NULL), +(8706,'vlk_spewgun_ballistic_01_adult','Weapon','Medium','2712e41b-8ae8-4015-9c85-9a41ce22a19d','','',NULL), +(8707,'Ares Star Fighter Cinder Livery','Paints','UNDEFINED','e68abc82-acb6-4036-9084-89c9e2302374','','','The Cinder livery for the Ares Star Fighter is predominantly grey with a black trim accenting the ship\'s lines and enwrapping the cockpit.'), +(8708,'Concept Shirt Seagreen','Char_Clothing_Torso_0','UNDEFINED','9f15b6a9-c59f-4028-88a7-b28f8b564d05','','','This crisp, versatile button-front shirt from Fiore is made with cutting edge stain resistant and wrinkle-free technology, guaranteeing that you stay professional at all times.'), +(8709,'ORIG_890J_Dashboard_BattleBridge_Middle','SeatDashboard','UNDEFINED','00124ac5-50fd-40aa-82dd-a6e1bc2773de','','',NULL), +(8710,'Self Destruct Unit','SelfDestruct','UNDEFINED','cf46bb34-df66-4794-92f3-6aa35b652f86','','','Self Destruct Unit'), +(8711,'Titanium (Ore)','Cargo','Cargo','74769efb-dda7-4bb4-a319-55b953d697de','','',NULL), +(8712,'MacFlex Legs Orange','Armor','Legs','c5877f31-d277-442f-b7c0-aa4fd64e0382','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(8713,'Table_Bench_2_RSI_Zeus','Usable','UNDEFINED','303e0ff2-9c83-4a14-a2f9-6258da80e69c','','',NULL), +(8714,'Vacha Jacket Spruce','Char_Clothing_Torso_1','UNDEFINED','53953174-e1e0-4a12-920f-4eeb419acc1b','','','Carrying Capacity: 400 µSCU\n\nThe Vacha jacket offers the wearer an admirable degree of comfort across a wide range of environments thanks to its sealed cuffs and utility neck collar. Additionally, the rugged design features a sealed cross closure, incorporated belt, and auxiliary ports. The garment\'s sheer durability and utility has cemented the Vacha jacket as a perennial favorite in Habidash\'s collection.'), +(8715,'Karoby Energy Bar (Tahini & Carob)','Food','Bar','e7746c26-4094-46e8-9784-40c596b49560','','','NDR: 18\nEffects: Energizing\n\nMade with nutritious, wholesome ingredients, this great tasting bar is formulated to provide sustained energy to help you maintain your best performance.'), +(8716,'Kopion Horn','Misc','Harvestable','2c1e3183-28ee-4ab9-af4c-938ccec94754','','','The horn of the kopion is made of a unique combination of bone and naturally-occurring carbon nanomaterials. When properly processed, it can be used to aid in bone regeneration with a far greater rate of success than lab-grown materials. This application has made it a valuable commodity.'), +(8717,'Personal Storage','Cargo','UNDEFINED','08375f4f-bc84-4212-abdb-42ddab4224ac','','',NULL), +(8718,'WEB','Shield','UNDEFINED','6be9c02c-ff32-483f-a6f8-d984dcb97c40','','','Item Type: Shield Generator\nManufacturer: Seal Corporation\nSize: 1\nGrade: C\nClass: Civilian\n\nTried, tested, and refined for centuries, the WEB shield generator balances sleek design with stellar performance to keep your ship safe under a wide variety of circumstances.'), +(8719,'Station','SeatAccess','UNDEFINED','4f3d1e07-0e6d-4a55-bd24-e4730d3632c0','','',NULL), +(8720,'Carryable_TBO_FL_24SCU_Commodity_Organic_Armillaria','Cargo','Cargo','764893e2-222f-4bde-97ed-2e5c1a7ed309','','',NULL), +(8721,'Venture Legs Violet','Armor','Legs','c73f9e25-f10f-481e-8136-3eed451d5d62','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(8722,'Morozov-SH-I Helmet Pyrotechnic Smokescreen','Armor','Helmet','c8c5f582-c0bb-4f9e-8dec-d1b4c357e5bc','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing the same fortified armor plating, special anti-rip protective padding and ample storage, as the Morozov SH, the SH-I industrial variant was designed by RRS to protect workers employed in hostile zones while ensuring they had the full range of motion required to perform their duties. The Pyrotechnic Amalgamated Edition was made specifically for the company\'s mining efforts in Pyro during the 26th century. Visor is AR crosshair compatible.'), +(8723,'Osoian Hides','Cargo','Cargo','db38764e-57d1-4b74-9825-de9a9332b07e','','',NULL), +(8724,'Shutters','AIModule','UNDEFINED','040ca76c-1562-4613-b7ee-61ed547cb517','','',NULL), +(8725,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','cc40aa1f-d70b-4e48-a7b0-f4b6cf5e6378','','','Joker Defcon - Noise Launcher'), +(8726,'SafeCore Boots Tosca','Char_Clothing_Feet','UNDEFINED','4d5cb6e9-f10d-4852-b0e2-c8092021c963','','','The SafeCore boots are a soft-shelled offering from Grindstone intended to provide more flexibility while traversing in adverse conditions.'), +(8727,'Door Control','Door','UNDEFINED','bd2e7c63-0bd1-41c6-9df5-dff0a39f9ce2','','',NULL), +(8728,'ORIG_600i_Thruster_Retro','ManneuverThruster','FixedThruster','90a2d228-1e86-4a99-80bb-dd552c02fc2e','','',NULL), +(8729,'Cassandra','Radar','MidRangeRadar','f2120aaa-2b36-4d5c-9e08-8a5ab0a2802a','','','Item Type: Radar\nManufacturer: Blue Triangle Inc.\nSize: 2\nGrade: A\nClass: Stealth\n\nWhen staying undetected is the key to operational security, the Cassandra radar features reduced emissions while still providing above average performance.'), +(8730,'Hello Sunshine Cheeky Planter','Misc','UNDEFINED','f9800f4f-922a-45be-85cf-fbf12e6a2d96','','','Bring a little life to your decor with the Hello Sunshine Planter from Sakura Sun. Available in a number of colors and unique facial expressions, this charming ceramic container makes for a cheerful place for your plant to call home.'), +(8731,'ForceFlex Undersuit Black/Grey/Orange','Armor','Undersuit','dbc576db-0ade-498e-9a55-eea5cc21d9af','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nVirgil\'s ForceFlex is the next generation in undersuit technology. Rated for combat as well as industrial work, you can rest assured that the comboweave will keep you protected in whatever situation you put it through.'), +(8732,'Vanduul Noise Launcher','WeaponDefensive','CountermeasureLauncher','353e32bf-1a53-4f83-900d-9f966aac1c98','','','Vanduul Noise Launcher'), +(8733,'TrueDef-Pro Core Grey/Green','Armor','Torso','b8e3170d-d108-4511-bf32-136935743e1f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(8734,'Fresnel \"Icebox\" Energy LMG','Weapon','Medium','506e8192-ca9c-4c3a-8115-36e90e432148','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: LMG\nClass: Energy (Electron)\n\nBattery Size: 165\nRate of Fire: 550 rpm - 220 rpm\nEffective Range: 50m\n\nAttachments: Optics (S3), Underbarrel (S3)\n\nThe engineers at VOLT crafted the Fresnel LMG to bring a powerful energy weapon to the frontlines, one that can initiate a fight with a rapid spray of deadly blasts. As the weapon heats up, the shots become slower and more powerful, but be careful of overheating. A weapon of this magnitude demands a strong foundation; operators are encouraged to fire from a crouching position to allow for better recoil management.\n\nThe Icebox edition consists of a chilling white with cold blue features.'), +(8735,'sc_nvy_training_pants_02_01_01','Char_Clothing_Legs','UNDEFINED','e4bb4f46-560c-4902-a2ca-470a035a10de','','',NULL), +(8736,'Scaleweave Undersuit Ironclad','Armor','Undersuit','599be669-1742-4d6d-88a5-3ee712b0c657','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThis baseline undersuit from Kastak Arms offers complete protection seal from the elements and compatibility with multiple armor types.'), +(8737,'facial_hair_007','Char_Head_Beard','UNDEFINED','adc4a371-415f-4cbb-8873-569d4aec2b23','','',NULL), +(8738,'DockingTube_Fuel_Ports_MISC_Starfarer','DockingCollar','UNDEFINED','f11f6bfb-639e-4584-ace4-b94da1da1df3','','',NULL), +(8739,'Door Control','Door','UNDEFINED','cc24bcf1-eac2-4253-a997-6503670b33e1','','',NULL), +(8740,'MISC_Fury_Thruster_Main_Bottom','MainThruster','JointThruster','aeb94360-f1cc-425f-bc06-76340b5c0cb7','','',NULL), +(8741,'Laranite','Cargo','Cargo','b30f35c0-943b-4cfd-aa9e-43723a720fdd','','',NULL), +(8742,'fruit_alien_MASTER','Misc','UNDEFINED','ca8d8c76-92ba-494a-93c2-37de5d8e85fd','','',NULL), +(8743,'Arrowhead \"Lamplighter\" Sniper Rifle','Weapon','Medium','acc2a73d-8492-4492-89f4-fb1dacd84fd5','','','Manufacturer: Klaus & Werner\nItem Type: Sniper Rifle\nClass: Energy (Laser)\n\nBattery Size: 20\nRate Of Fire: 50 rpm\nEffective Range: 100 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nKlaus & Werner’s Arrowhead Model VI long-range energy rifle features a fiberglass composite body capable of withstanding any number of rigorous environments both in atmosphere and out. Built with a precision stock, compound scope and built-in bipod, the Arrowhead offers a stable and devastating weapon for operators who want to keep their distance, but stay in the fight. First released during Luminalia, the Lamplighter edition was inspired by the traditional red holiday color.'), +(8744,'RSI_Aurora_GS_LN_Thruster_Main','MainThruster','FixedThruster','9eb4ddc8-5bc4-4b7a-a9f8-cafba92b3893','','',NULL), +(8745,'Edgewear Pants Sienna','Char_Clothing_Legs','UNDEFINED','5ae9657a-8d3a-4899-a162-05b24b99de71','','','Carrying Capacity: 4K µSCU\n\nStegman\'s Edgewear utility clothes are made from reinforced nylon weaves and lined with temperature-rated quilted technology to provide you with a little extra protection while on the jobsite. Double knees, reinforced joint pads and extra pockets add comfort and durability to this field-tested and worker-approved clothing line.'), +(8746,'StorageCage_Quantum','Cargo','UNDEFINED','55e23f54-d2d4-4088-9da3-1315f976c9b8','','',NULL), +(8747,'MISC_Hull_A_Dashboard_Pilot','SeatDashboard','UNDEFINED','21289022-e60e-46ed-be5d-9cfb4f9f39eb','','',NULL), +(8748,'Colonialism_Outpost_RN_Multi_Liquid_Tank_Unit','FuelTank','UNDEFINED','b5a2e337-9f13-46e4-be70-549554c55ae2','','',NULL), +(8749,'Carrion Helmet Stalker','Armor','Helmet','68cab282-0097-4e5b-a6b2-365daf59c84b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nForged from scavenged metals and ragged clothes, the Carrion armor is a crude concoction of repurposed materials that demonstrates you\'ll do anything it takes to survive. The helmet features a high comb of iron bars and a faceplate framed by menacing pieces of Vanduul armor. \n\nThe Stalker variant has been tagged with orange paint, and features a long cape and integrated pieces of Vanduul armor plating.'), +(8750,'Lindinium','Cargo','Cargo','2037a4b6-465b-4c40-9b2e-370bff558fd9','','',NULL), +(8751,'Sunset Berries','Cargo','Cargo','5ff792ae-ae11-4089-abd8-0d351e047a45','','',NULL), +(8752,'ANVL_Lightning_F8_Thruster_Mav_Joint','ManneuverThruster','JointThruster','a6710f95-d0df-422a-815d-11e31084feb8','','',NULL), +(8753,'STV Blue Steel Livery','Paints','UNDEFINED','b9778ac5-26bf-4876-ae49-deabf83ab9ff','','','Ground adventures never looked so good with the Blue Steel livery, which gives the STV a sleek silver finish trimmed with vibrant blue.'), +(8754,'Remote Turret','Turret','GunTurret','0ceecdc5-0c9c-41e6-971f-ebf48805957a','','','Remote Turret'), +(8755,'Carinite','Misc','Harvestable','0b83f4b2-1d15-4843-aa94-29f2b40a5cbe','','','A rare mineral because the extreme pressure needed for its formation is very uncommon, it is in high demand thanks to its use in advanced computer processors and other cutting-edge electronics.'), +(8756,'MPUV Nightbreak Livery','Paints','UNDEFINED','f419a008-e931-49ce-acfb-adee776189ca','','','Discreetly soar through the night sky in the MPUV with the Nightbreak livery, which is primarily black with red highlights.'), +(8757,'Door','DockingAnimator','UNDEFINED','9463e0e4-7d09-4ea7-b27b-280cc56d4961','','',NULL), +(8758,'XDL \"Mark I\" Monocular Rangefinder','Weapon','Gadget','b226305b-c44e-4990-829e-732c31d04d8a','','','The highly accurate XDL Monocular Rangefinder from Behring is as suitable on an expedition as it is on the battlefield. Ruggedly constructed with high-quality lenses, easy-to-read display, and a light-amplification mode, the XDL provides 10x magnification to reliably provide exact-distance laser measurements on faraway targets.\n\nThe Mark I edition features a grey and steel-blue finish.'), +(8759,'ADP Core Black','Armor','Torso','bd7a1487-f335-410a-964d-d612fa689cfb','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(8760,'SalvageFillerStation_DRAK_Vulture','SalvageFillerStation','UNDEFINED','d32fe366-2c38-472d-b9ab-48b45963e04b','','',NULL), +(8761,'Cliffback T-Shirt Desert','Char_Clothing_Torso_0','UNDEFINED','47f9cbee-1449-419e-8209-e8c448a33d4e','','','Alejo Brothers\' classic loop tee with a spatter pattern.'), +(8762,'Seat','SeatAccess','UNDEFINED','b3e443a7-9c51-4b78-ba25-429c5b1d9607','','',NULL), +(8763,'m_human_mannequin_slaver_medium_02','ShopDisplay','UNDEFINED','3b354def-a1b2-45cd-b82a-be2aacdd3efa','','',NULL), +(8764,'Carryable_1H_CY_pipe_weapon_1_a','Misc','UNDEFINED','87268aaf-7093-486a-8936-74deb7fcf1bb','','',NULL), +(8765,'stand_shop_large_b_PowerPlant','ShopDisplay','UNDEFINED','e3bf90a4-850e-4527-bec9-26895f6c3bea','','',NULL), +(8766,'Fieldsbury Dark Bear Helmet Blueberry','Armor','Helmet','312b9243-2d66-46d2-98f8-c46fbcf01fb3','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -40 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nCelebrate Day of the Vara in sinister style with this officially licensed Fieldsbury Dark Bear helmet. This twisted version of the Fieldsbury Bear mascot launched a seasonal soda flavor before being co-opted into a series of high-profile pranks. Ever since, the bear\'s big, toothy grin and off-set flickering eyes have become a standard sight at Day of the Vara celebrations. Now CC\'s Conversions has designed and delivered an official, high quality reproduction of this iconic mascot, available in six striking colors.'), +(8767,'Venture Legs Envy','Armor','Legs','ecd74081-045e-4b69-bbbe-57431d7bc9d5','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRobert Space Industries’ Venture Explorer Suit provides exceptional protection against the dangers of space. Designed for those who don\'t know where their next adventure might go, the suit combines comfort and safety without sacrificing mobility. This special Envy edition inspired by the Coramor festival features a vibrant pink and purple color scheme for the most enthusiastic of lovers.'), +(8768,'Invictus Flyby Hat Grey','Char_Clothing_Hat','UNDEFINED','0f2f9441-015c-4473-a713-7c73ea72768e','','','A classic grey cadet hat commemorating Invictus Launch Week and featuring the silhouette of a ship across the front.'), +(8769,'Aril Core Red Alert','Armor','Torso','c62f4a10-d105-499e-9383-ea4096103cbd','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(8770,'tank_water_3_005x005x005_a','Cargo','UNDEFINED','85a847f9-d318-47fd-bf17-327a5462b4fb','','',NULL), +(8771,'Manned Turret','TurretBase','MannedTurret','b4ff9b2f-1f78-41bd-b24d-9d1fdd79aafb','','',NULL), +(8772,'Deo Shirt Violet','Char_Clothing_Torso_0','UNDEFINED','6c2e33da-3d3b-4ac7-8bd4-d63a6d3f2944','','','Fiore\'s Deo is a slim cut work shirt that\'s as practical as it is timeless. Featuring a high collar and metal neck clasp, the Deo has been a mainstay in business attire.\n\nWomen\'s sizes currently out of stock.'), +(8773,'Door Control','ControlPanel','DoorPart','71c8b320-12c5-4513-a7dd-f6524f84b03c','','',NULL), +(8774,'Yellow QuikFlarePro','Weapon','Grenade','120353d3-4f38-42b1-a491-21ac01d758fa','','','Manufacturer: Shubin Interstellar\n\nIlluminate the way forward or signal for help with the Yellow QuikFlarePro from Shubin Interstellar. For centuries, miners have counted on this flare as part of their core toolkit, thanks to its tried and true design and durability that ensures it stays ablaze in the various harsh weather and difficult atmospheric conditions encountered across the \'verse. The QuikFlarePro uses advanced tech to glow longer than regular flares.'), +(8775,'Morozov-SH Arms Smokescreen','Armor','Arms','2097306a-d601-4f45-8740-c75e76536a67','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(8776,'BATT_S03_CitizenConDemo','Battery','UNDEFINED','59035b54-d90e-4271-8a1c-0c5a5c922a09','','',NULL), +(8777,'Salvation Distortion Scattergun','Weapon','Gun','76706adf-4687-4a7a-aaf1-c44af0a5d2ca','','','Manufacturer: Preacher Armaments\nItem Type: Distortion Scattergun\nSize: 4\n\nDisable an enemy\'s ship without damaging it with the Salvation scattergun from Preacher Armaments. With its wide spread and low rate of fire this size four scattergun is most potent at close range.'), +(8778,'KRIG_P52_Merlin_WingTip_Right','AttachedPart','UNDEFINED','e64e10dc-a218-4945-aa36-5e5eeae4baaa','','',NULL), +(8779,'ORC-mkX Arms Twilight','Armor','Arms','4c0b18d0-4039-479e-afc2-655d9c76fea0','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(8780,'Internal Tank','QuantumFuelTank','QuantumFuel','88a6e37c-8fd7-49a7-aed0-071ea9b9fedf','','',NULL), +(8781,'INTK_RSI_Mantis','FuelIntake','Fuel','d7088f23-4067-4cbc-9495-f88cf3b1c995','','',NULL), +(8782,'ORIG_M50_Thruster_Retro_old','ManneuverThruster','JointThruster','f24bfa1a-95bf-478a-bd26-8c13b7b6ca0c','','',NULL), +(8783,'CNOU_Mustang_Beta_Thruster_Aux','MainThruster','FixedThruster','7879f45a-1ebb-4085-870c-f1c4429b5dbe','','',NULL), +(8784,'Seat','Usable','UNDEFINED','8c7ec5ba-b47a-411a-9baa-0aadc2c1d425','','',NULL), +(8785,'Origin Racing Helmet','Armor','Helmet','f7a46eee-bf5a-4ca8-8444-7a126093744a','','','Item Type: Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nPlunge headlong into extreme speed in comfort and style with the Origin racing helmet. Primarily white with black and blue highlights, the helmet features a wide visor for unobstructed views as you speed by.'), +(8786,'ANVL_Hornet_F7C_Thruster_Mav_Joint_01','ManneuverThruster','JointThruster','bc43b4b3-90a3-454b-aea4-4a352c02b96b','','',NULL), +(8787,'RSI_Apollo_Medivac_Thruster_Mav_Bottom','ManneuverThruster','FixedThruster','7a999ff3-6051-4b79-8480-0ca958a2c5df','','',NULL), +(8788,'tool_manual_1_lazer_a','Misc','UNDEFINED','a148ff91-d853-4e19-ba54-f5603c042319','','',NULL), +(8789,'m_human_mannequin_base_armor_Collector_RAD','ShopDisplay','UNDEFINED','5583b086-6d13-4676-b596-12f5857e9553','','',NULL), +(8790,'INTK_MISC_Razor','FuelIntake','Fuel','818098fe-0455-4d5b-ba8b-f584d26c4a7a','','',NULL), +(8791,'Food_Grub_Seanut_2_Fried','Food','Consumable','b91620dd-0056-4591-93c1-24c6995a3614','','','@LOC_PLACEHOLDER'), +(8792,'Drivetrain','WheeledController','UNDEFINED','e54af8fd-1e19-461a-b47d-036bffd3c2e5','','',NULL), +(8793,'RSI_Zeus_CL_Thruster_Main_Bottom_Left','MainThruster','UNDEFINED','34fa0b33-547d-44ab-a331-525338cd0db0','','',NULL), +(8794,'Ready-Up Helmet White','Char_Clothing_Hat','UNDEFINED','947d04ac-2ec5-4189-b1a3-3f3cd7fe281b','','','The Ready-Up is a dependable, affordable softshell helmet alternative. Built from space-age plastic, the Ready-Up provides a vacuum-ready seal to keep you breathing for longer.'), +(8795,'MacFlex Core','Armor','Torso','6309efdf-324a-4503-bf7c-a44da432a7f4','','',NULL), +(8796,'Snaggle Stick (Original)','Food','Bar','b0e04746-9e54-42e7-a95a-f212140816d0','','','NDR: 14\nEffects: Hypertrophic, Dehydrating\n\nSnag one of these premium protein sticks and experience the ultimate in \"real meat\" snacking. Original Snaggle sticks feature a classic blend of smoke and spices for a pure boost of flavor energy.'), +(8797,'Lynx Core Embark','Armor','Torso','7408404d-d1f9-4941-bf7f-93886fac4bc9','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(8798,'TRGT. STATUS','Seat','UNDEFINED','c496aa3e-fbf6-45a8-bf5d-bc334544203c','','',NULL), +(8799,'Benaderet Dress','Char_Clothing_Torso_0','UNDEFINED','3451df7e-1b60-4e47-a793-9c15e63b6478','','','Dyna Lei has crafted the Benaderet dress out of rich, quilted, mocha-colored leather and gilded the look with a belted waist, off-the-shoulder straps, asymmetrical lines, and a matching choker to top it all off.\n\nMen\'s sizes currently not available.'), +(8800,'Bexalite (Raw)','Cargo','Cargo','c1207800-352d-4d7e-b155-627c884b20f0','','',NULL), +(8801,'Carryable_1H_CY_utensil_rag_1_a','Misc','UNDEFINED','d14bcbb1-1d6a-4e52-a4e2-dd9749ac39d6','','',NULL), +(8802,'Door Control','ControlPanel','DoorPart','fe1b170f-113d-4add-bb3f-7e2082db727e','','',NULL), +(8803,'Good Gift Sweater Blue','Char_Clothing_Torso_1','UNDEFINED','d4695634-ff5a-488f-8bce-2d26cd3b1481','','','Carrying Capacity: 1K µSCU\n\nThis Banu-made mock turtleneck lets you celebrate Luminalia in comfort and style. Cozy up around the lamp with this luxurious blue and grey fabric blend with an asymmetrical front and three adjustable straps that guarantee the perfect fit. Banu phrases calling for merriment and a prosperous future adorn the front and back in white script.'), +(8804,'Good Gift Sweater','Char_Clothing_Torso_1','UNDEFINED','6c26a414-6537-45b4-9304-ffa216f1f15d','','','Carrying Capacity: 1K µSCU\n\nThis Banu-made mock turtleneck lets you celebrate Luminalia in comfort and style. Cozy up around the lamp with this luxurious red and green fabric blend with an asymmetrical front and three adjustable straps that guarantee the perfect fit. Banu phrases calling for merriment and a prosperous future adorn the front and back in golden script.'), +(8805,'Door_ChipReader_StormBreaker','Door','UNDEFINED','57d19d4f-9186-4e38-b95e-b38fc84a4397','','',NULL), +(8806,'Tin','Cargo','Cargo','10e64486-871d-4687-aa30-98f28b8a0dfa','','',NULL), +(8807,'G-2 Helmet Sakura Sun Edition','Armor','Helmet','69e83c93-c4bc-4aba-8ec7-f9a786727ce0','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. The Sakura Sun Edition was made specifically for the company.'), +(8808,'LeMarque Pants Orange','Char_Clothing_Legs','UNDEFINED','f7bf395a-bee3-462b-92fd-12b79e1b02c3','','','Carrying Capacity: 0.5K µSCU\n\nClassic cuts never go out of style. A staple of any wardrobe, Derion\'s LeMarque are built for work or play and feature microseam pleats and wrinkle-free material that will guarantee that you\'ll get years out of this classic.\n\nWomen\'s sizes currently out of stock.'), +(8809,'Custodian SMG','Weapon','Medium','71ffee18-c359-4809-a4d0-3cb79bc32d30','','','Manufacturer: Kastak Arms\nItem Type: SMG\nClass: Energy (Laser)\n\nBattery Size: 60\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe Custodian SMG from Kastak Arms focuses on a high rate of fire over damage and accuracy making it an ideal choice for sweeping through tight environments and close quarters combat.'), +(8810,'screen_4x3_clovis_datapad_1','Display','UNDEFINED','cc3e4cd5-7f8d-485f-a748-acdb1eb31882','','',NULL), +(8811,'Flight Blade','FlightController','UNDEFINED','5aa2173c-b2a9-4d4f-aa22-809e864984de','','',NULL), +(8812,'ORC-mkV Arms Grey','Armor','Arms','624585d4-a288-40a9-a2ee-37d9996e217c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(8813,'WEAPONS','WeaponController','UNDEFINED','c78851f1-ded8-4e8d-91ec-905e3dae075e','','',NULL), +(8814,'XIAN_Nox_Thruster_Main','MainThruster','FixedThruster','cc733f48-d372-4370-ab27-cc982d45deaf','','',NULL), +(8815,'Carrion Arms Stalker','Armor','Arms','47a2080a-496f-425f-8a63-2791588984e3','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nForged from scavenged metals and ragged clothes, the Carrion armor is a crude concoction of repurposed materials that demonstrates you\'ll do anything it takes to survive. \n\nThe Stalker variant has been tagged with orange paint, and features a long cape and integrated pieces of Vanduul armor plating.'), +(8816,'Geist Backpack Whiteout','Armor','Backpack','b32c8292-3509-45c2-8420-77587156319a','','','Item Type: Light Backpack\nCarrying Capacity: 54K µSCU\nCore Compatibility: All\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(8817,'XIAN_Nox_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','b9dc5573-5473-4f27-a2a0-4f785b496a9b','','',NULL), +(8818,'Seat','SeatAccess','UNDEFINED','180cc17f-7cda-4bfb-9ed8-d48076a08dca','','',NULL), +(8819,'Hornet Ironscale Livery','Paints','UNDEFINED','c6c8b8e0-faf9-4a75-b2f2-a9f100a0a5c6','','','Primarily black with bronze highlights, the Ironscale livery gives the Hornet Mk2 a subtle yet elegant style.'), +(8820,'Door Control','Door','UNDEFINED','791ca575-8bf8-4525-9a75-7b605f8bccc8','','',NULL), +(8821,'Door_Ship_Sensor_Proximity_SpawnCloset_Bulkh','Sensor','DoorPart','a4639caf-83cb-4312-95bd-b4669bed6e60','','',NULL), +(8822,'TRGT. STATUS','Seat','UNDEFINED','c51b1b42-5f63-4658-8ee8-a7e45484d490','','',NULL), +(8823,'P8-SC \"Desert Shadow\" SMG','Weapon','Medium','1c3b69e0-3162-40ba-afab-f9d48da6b1dc','','','Manufacturer: Behring\nItem Type: SMG\nClass: Ballistic\n\nMagazine Size: 45\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nWhen the top fighting force in the universe chooses a weapon as their standard, it pays to stand up and take notice. The Behring-crafted P8-SC has been the ballistic submachine gun of choice for the UEE Marines since it first came off the production line, but since then, many have come to rely on this weapon for their own personal safety and protection.'), +(8824,'ORIG_350r_Thruster_Mav_Fixed_Front_02','ManneuverThruster','FixedThruster','a3ec6fb3-a06b-444e-97ea-dec80997ee3d','','',NULL), +(8825,'Revenant Pod','Cargo','Cargo','bfa0d551-788f-4f61-a823-e693eec70550','','',NULL), +(8826,'H_Dashboard_Projector_HUD_RSI_Mantis','Display','UNDEFINED','eeb6be27-c01b-4cc8-8dee-d3e82cf09249','','',NULL), +(8827,'RSI Polaris Missile Rack','MissileLauncher','MissileRack','870cb1e6-befe-49c6-8b78-2e68e8e30330','','','Item Type: Missile Rack\nManufacturer: RSI\nSize: 10\nMissiles: 8xS3\n\nThis bespoke S10 mount for the Polaris holds a missile rack carrying eight S3 missiles.'), +(8828,'MISC_Hull_C_FoldingStrut_1B_Outer','Cargo','UNDEFINED','f1311bc4-45f5-4ef1-9f74-8c8a9d7917e8','','',NULL), +(8829,'ARMR_GRIN_STV','Armor','Medium','342111c9-e2c9-424f-8408-0fb23342cb72','','',NULL), +(8830,'box_plastic_4_005x005x005_a','Cargo','UNDEFINED','6c5e1dea-2fe2-4daa-9296-1cd1a158df47','','',NULL), +(8831,'DRAK_Cutter_Thruster_AuxRetro','ManneuverThruster','Retro','f0f4ec9a-afc1-4484-aeab-8c61955a7ea6','','',NULL), +(8832,'Miner\'s Horn','Misc','UNDEFINED','22a9f3ce-f741-49d1-9894-efab2c698819','','','First discovered in the sewer lines at the QV Mining Station built into the Delemar asteroid in Nyx, this quick growing fungus has become a useful manufacturing component for the settlers of Levski thanks to the strong mycelium fibers that can be dried and used in a variety of ways.'), +(8833,'Door Control','Door','UNDEFINED','62dd58a0-bf44-4f64-99d6-f6d0de759375','','',NULL), +(8834,'Prim Shoes Blue','Char_Clothing_Feet','UNDEFINED','f01890f1-f376-49a1-a7e4-27a844379ff8','','','Professional yet casual, the Prim utilizes cutting-edge synthetic construction to provide maximum comfort and a shine that won\'t fade.'), +(8835,'Personal Care Product','Misc','UNDEFINED','be581bc4-608a-4108-baf2-de5b60ddca92','','',NULL), +(8836,'ControlPanel_VentAccess_CRUS','ControlPanel','DoorPart','3985786c-8b91-4751-ba52-1e40a1ddf0ef','','',NULL), +(8837,'RSI_Polaris_Thruster_VTOL','ManneuverThruster','FixedThruster','1ffbc5d1-2993-43ee-942f-e57222084a38','','',NULL); +INSERT INTO `tbl_scobjs` VALUES +(8838,'Harlowe Shirt Aqua','Char_Clothing_Torso_0','UNDEFINED','efbee2b8-39bb-47ab-8c54-ae7e06aaf284','','','Capable as being worn on its own or as a base for layers, this long-sleeve henley style shirt from Alejo Brothers keeps you stylish and comfortable.'), +(8839,'TRGT. STATUS','Seat','UNDEFINED','d2d2d0a7-539f-48b5-aedd-62a6c217eedf','','',NULL), +(8840,'Prota','Misc','Harvestable','0b45378f-af70-46a0-a6de-c156c6ff9d1d','','','A resilient slime mold that can form in extremely corrosive environments and pressure, Prota secretes a strong adhesive that can be distilled into a commercial-grade glue.'), +(8841,'GP-33 MOD \"Copperhead\" Grenade Launcher','Weapon','Medium','6a0c7828-4e94-4428-8363-c5431835a040','','','Manufacturer: Behring\nItem Type: Grenade Launcher\nClass: Ballistic\n\nMagazine Size: 6\nRate Of Fire: 40 rpm\nEffective Range: Variable (80m)\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nThe military-grade GP-33 MOD launcher fires 40mm grenades to clear rooms and flush out enemies behind cover thanks to Behring\'s precision design that primes each grenade to explode on impact. A light, metallic finish applied to the barrel and stock catches the eye and makes the Copperhead edition stand out from other versions.'), +(8842,'INK','Shield','UNDEFINED','4323ef0d-778f-4e8f-89e8-bbe3d33f5f08','','','Item Type: Shield Generator\nManufacturer: Seal Corporation\nSize: 1\nGrade: D\nClass: Civilian\n\nWhen you’re looking for a dependable shield, why not trust the company that’s been doing it longer than anyone else? Seal Corporation’s original INK shield generator has been a staple around the Empire for generations.'), +(8843,'Elevator Control','Elevator','UNDEFINED','c48413f4-c107-4e1a-820d-e833451a0658','','',NULL), +(8844,'Mirai Fury 1xS2 Missile Rack','MissileLauncher','MissileRack','09030367-c1fd-48cd-a981-7115a4d43371','','','Item Type: Missile Rack\nManufacturer: Mirai\nSize: 2\nMissiles: 1xS2\n\nTo make the Fury a threat despite its small size, Mirai developed this bespoke missile rack, which can carry and deploy one S2 missile without undermining the ship\'s compact profile.'), +(8845,'Seat','SeatAccess','UNDEFINED','9417a231-0109-4220-a011-01c009e0031c','','',NULL), +(8846,'Citadel Arms Ignitor','Armor','Arms','fea1241c-cb47-41b7-8b93-b6c65d9e0e6c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(8847,'Seat','Usable','UNDEFINED','7935acf9-bdcb-411b-ab1e-44c4bbdc58d1','','',NULL), +(8848,'Canelo Pants Rosewood','Char_Clothing_Legs','UNDEFINED','6f717280-b04d-46ea-943d-af33c8c0e009','','','Carrying Capacity: 400 µSCU\n\nWhether you need them for work, play, or rest, the adaptable Canelo Pants from Habidash are guaranteed to fit the bill. Its convenient pockets allow you to carry all your essentials, and its stain-resistant fabric is comfortable enough to be worn for hours.'), +(8849,'Weapon_Rack_1_VOLT_LMG_Common_001','Usable','UNDEFINED','7cb33502-a41f-4708-bec8-4e99d45ddf76','','',NULL), +(8850,'Neon','Cargo','Cargo','fe0b44b7-e919-4788-90a2-df93c6a0c8ad','','',NULL), +(8851,'Seat','SeatAccess','UNDEFINED','d871311b-1dd1-4287-a1aa-d9a0a0f64566','','',NULL), +(8852,'Door Control','Door','UNDEFINED','35d44125-c6d4-4d9c-a412-1c10587675c1','','',NULL), +(8853,'S71 \"Murray Cup Racing\" Rifle','Weapon','Medium','4e9858eb-250f-4f1e-a95f-3e69adf99aa8','','','Manufacturer: Gemini\nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 30\nRate Of Fire: 300 rpm / 900 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nWith the S71, Gemini designed an ergonomic assault rifle ideal for mid-range engagements. Chambered with a smaller caliber round than other weapons in its class, the S71 has become popular among private military professionals for its sleek aesthetics and precise accuracy. Bold neon yellow and vivid blue combine to make the official Murray Cup Racing rifle stand out from the crowd.'), +(8854,'Tripledown \"Heavy Metal\" Pistol','Weapon','Small','b8183354-373d-429c-a5e8-22952dfe6db8','','','Manufacturer: Unknown\nItem Type: Pistol\nClass: Ballistic\n \nMagazine Size: 12\nRate Of Fire: 185 rpm\nEffective Range: 10 m\n \nAttachments: Optics (S1), Barrel (NA), Underbarrel (S1)\n\nFiring three shotgun shells with each pull of the trigger thanks to it\'s triple-barrel construction, the bolt-action Tripledown pistol is ready to blast its way through anything from the smallest disagreements to massive dustups.\n\nThe Heavy Metal version features shiny metal and a gray accent on the grip.'), +(8855,'Vehicle_Screen_MFD_Holographic_ORIG_85X_R','Display','UNDEFINED','9f1bd13d-6080-4a1a-8dfe-c164e2252b4c','','',NULL), +(8856,'Remote Turret','Turret','PDCTurret','7ce23757-c94b-4621-a489-8bf725f9df8f','','',NULL), +(8857,'Manned Turret','Turret','TopTurret','5699babb-fb1b-49ca-b8b1-272fdf37d195','','',NULL), +(8858,'Artimex Helmet Starchaser','Armor','Helmet','3e954276-5977-48d9-9385-fcc00cc8224b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape. Visor is AR crosshair compatible.'), +(8859,'MacFlex Legs Tan','Armor','Legs','adfab1f7-6f7a-4fc5-9392-bf546601ee12','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(8860,'Seat','Usable','UNDEFINED','1564219c-b842-418b-9d3c-f8d755c49186','','',NULL), +(8861,'Greycat ROC-DS Ore Pod','Container','Cargo','e8265869-5ca5-4cbc-8821-7fe0742b2c48','','','Capacity: 3.4 SCU\n\nProduced by Greycat for their ROC-DS mining vehicle, this ore pod features tough construction able to withstand the rigors of the job.'), +(8862,'Potassium','Cargo','Cargo','cba25ff1-f6d5-4cfb-b9d5-03c345f5cdde','','',NULL), +(8863,'RSI_Aurora_Thruster_LN_Retro_Right','MainThruster','FixedThruster','4cef6f66-b1f9-416a-b280-42604d485d00','','',NULL), +(8864,'Avocado and Corn Sandwich','Food','Junk','33ce1b51-c592-4024-8040-fd2a26cb4b9b','','','NDR: 41\nEffects: None\n\nA rich, creamy avocado mash layered with a sweet and spicy corn salad and served on spelt bread. At Twyn\'s, it\'s what\'s inside that counts.'), +(8865,'display_00125m_a_centermass_1port_1','ShopDisplay','Default','ccc4dac7-ff83-4b9f-b414-ff5b29fff137','','',NULL), +(8866,'ParaMed \"Xanthic\" Medical Device','Weapon','Small','7bc1586a-5281-4058-aa69-93b6d2be1ced','','','Manufacturer: CureLife\nItem Type: Medical Device\n\nThe ParaMed from CureLife is a professional-grade emergency medical device designed to stabilize patients suffering from possible life-threatening injuries. Offering extremely accurate diagnostics and dosing, the ParaMed can treat more patients and offer longer relief with less risk of overdose. The \"Xanthic\" edition features a bright yellow color.'), +(8867,'Bed','Usable','UNDEFINED','dbc311f3-dbcc-44c8-a3a8-34e3243a88d1','','',NULL), +(8868,'RSI Medusa Cannon','Weapon','Gun','17417d27-af6d-40fc-af97-ab6db7ab313c','','','Manufacturer: RSI\nItem Type: Ballistic Cannon\nSize: 8\n\nBuilding on centuries of RSI weapon technology, the Perseus utilizes bespoke size 8 Medusa Cannons that deliver devastating salvos of ballistic fire, capable of starting fights just as easily as ending them. These custom made RSI cannons excel at punishing larger targets at long, making it a formidable battlefield equalizer.'), +(8869,'M4A Cannon Defense Division','Weapon','Gun','31629f0f-3324-4ec1-8da2-4a6ead6a62b2','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 2\n\nThe M4A is Behring\'s entry level laser autocannon. The autocannon configuration offers modest damage per projectile and a fairly low rate of fire. As the most basic offering in Behring\'s weapons lineup, it features low power consumption, but poor power efficiency. It makes up ground for its shortcomings by being cheap, a feature many pilots are looking for when outfitting their ships on a budget.\n\nThe Defense Division edition features a gray, urban camo pattern and was given to those who assisted Alliance Aid\'s Defense Division during Levski\'s time of need.'), +(8870,'Door Control','Door','UNDEFINED','511162b9-dc8c-406c-9089-526bdab034a4','','',NULL), +(8871,'Seat','Usable','UNDEFINED','df67b0ae-61a3-4d2a-86df-3683d7a1716d','','',NULL), +(8872,'DRAK_Caterpillar_Mattress_A','Seat','UNDEFINED','ea03316c-4f4c-4850-bd68-3737af6aa09f','','',NULL), +(8873,'Container','Misc','Personal','7fed2cf1-fdcf-4068-976f-b70f144c2b50','','',NULL), +(8874,'ARGO_MOTH_Salvage_Arm','ToolArm','UNDEFINED','77e9bcec-b435-4f60-91b7-f1a3525a4da0','','',NULL), +(8875,'MISC_Freelancer_MAX_Derelict_SCItem_Seat_Esc_Pod_Lower_Left','Seat','UNDEFINED','4a7adb97-c399-49fa-b1aa-f87cd1fb55f5','','',NULL), +(8876,'Inquisitor Legs Aqua','Armor','Legs','ff69150c-a0f8-4079-ab5d-1a52f7088157','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(8877,'Predator Scattergun Sharkmouth Edition','Weapon','Gun','fd668181-1bb7-42fc-86b6-cb2db9cdc930','','','Manufacturer: Apocalypse Arms\nItem Type: Ballistic Scattergun\nSize: 3\n\nThe Predator scattergun preys upon nearby opponents with an overwhelming barrage of ballistic ammo. The size three version of Apocalypse Arms\' feared scattergun trades effective range for a wide spread.'), +(8878,'ROC Harvester Livery','Paints','UNDEFINED','5ba4d6ed-8699-4933-919b-0937b8936f88','','','The Harvester livery for the ROC and ROC-DS brings a bold look to any jobsite.'), +(8879,'AEGS_Sabre_Peregrine_Thruster_Main','MainThruster','FixedThruster','b8d1ae90-9273-47cc-ae6f-9e7bfd9b2ae5','','',NULL), +(8880,'Door Control','Door','UNDEFINED','27af59ed-0eff-4107-bf53-6a5448de314e','','',NULL), +(8881,'Manned Turret','TurretBase','MannedTurret','b4a1b7cd-5a48-451a-8676-5cbbf076152d','','',NULL), +(8882,'tool_hammer_1_ballpein_a','Misc','UNDEFINED','bef992e4-9061-4c48-9396-38344e846e31','','',NULL), +(8883,'Dominator II Missile','Missile','Missile','67d6efbd-6b65-49d9-b319-041dc6a2675a','','','Manufacturer: Talon\nTracking Signal: Electromagnetic\nSize: 2\n\nDesigned to track an opponent’s electromagnetic signature, the Dominator strike missile is a precision ordnance package designed to establish tactical battlefield dominance.'), +(8884,'Door Control','Door','UNDEFINED','2277e3e1-f777-40c3-8061-2fbea9f9b3f2','','',NULL), +(8885,'Vehicle_Screen_MFD_Holographic_ORIG_300i_BR','Display','UNDEFINED','8c85a908-7630-47b7-b763-8bdc5ff1247a','','',NULL), +(8886,'STOP','Shield','UNDEFINED','86bfeaef-e0e2-4373-9dca-47e193c0b203','','','Item Type: Shield Generator\nManufacturer: Seal Corporation\nSize: 2\nGrade: C\nClass: Civilian\n\nUtilizing a design that has proven itself time and again, the STOP shield generator by Seal Corporation has featured the same classic design for years due to its consistent, stellar performance.'), +(8887,'Molina Ventilation Filters','Cargo','Cargo','03520054-e973-4c31-8e8d-4b86e4d8a98f','','','Special filters developed by Gyson to replace faulty units and purify the air of Molina Mold spores.'), +(8888,'GMRCK_S01_TMBL_Storm_AA_Custom','GroundVehicleMissileLauncher','GroundVehicleMissileRack','720ea5f5-d897-4e06-af7c-fb729295f0c6','','',NULL), +(8889,'ARGO_RAFT_Thruster_Mav','ManneuverThruster','FixedThruster','0ac6c9e3-669f-45ea-93f7-781ce61cb4ff','','',NULL), +(8890,'RSI_Aurora_GS_MR_Thruster_Retro','MainThruster','FixedThruster','1675923a-f22d-4ab7-8073-1007706f009c','','',NULL), +(8891,'Screen','Usable','UNDEFINED','6fb4e032-925c-4f4c-8f54-dd2ac8de164a','','',NULL), +(8892,'Internal Tank','FuelTank','Fuel','148fd6bc-ffb7-4bc1-89a3-5f615f9ff594','','',NULL), +(8893,'Mule Silverback Livery','Paints','UNDEFINED','0e000391-7e59-4668-8820-68661d1e7a67','','','The Silverback livery adds a white cargo cover and highlights to contrast the sleek grey frame of the Drake Mule.'), +(8894,'Internal Tank','FuelTank','Fuel','64e84c91-b973-4f3e-9dd0-424637f94cb9','','',NULL), +(8895,'DRAK_Herald_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','9b49245f-1be1-4de7-88ff-cf1f18043f8d','','',NULL), +(8896,'Door Control','Door','UNDEFINED','eba03d61-ed0d-48cf-aaaa-81402bc63533','','',NULL), +(8897,'Surveyor-Go','Radar','MidRangeRadar','e5bccaed-85de-483b-b4b8-dfb62f085b43','','','Item Type: Radar\nManufacturer: Chimera Communications\nSize: 0\nGrade: C\nClass: Industrial\n\nThe SurveyorGo is a vehicle-sized version of Chimera Communications\' popular line of radars.'), +(8898,'Ventra Gloves Aqua','Char_Clothing_Hands','UNDEFINED','d46bdb78-6e0a-49d2-aeb0-4b90ae6de4a6','','','Keep your hands warm and dry with Fiore\'s Ventra gloves. Microstitching creates a snug, tailored fit to keep you looking stylish and warm.'), +(8899,'Seat','Usable','UNDEFINED','b37d435b-2be4-44d6-b086-de56c4aa6b9f','','',NULL), +(8900,'ANVL_Terrapin_SCItem_Dashboard_Pilot_Medic','SeatDashboard','UNDEFINED','41884996-35c9-efe6-74b6-ab8b5e8fc9b4','','',NULL), +(8901,'Pulse \"Hurston\" Laser Pistol','Weapon','Small','8872fed7-09bc-4334-9f7f-7958d6f512a1','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Pistol\nClass: Energy (Laser)\n\nBattery Size: 60\nRate of Fire: 500 rpm (1000 rpm rapid)\nEffective Range: 15m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nThe Pulse Laser Pistol is a fully automatic pistol intended for close quarter combat. VOLT designed the weapon with a unique capacitor that condenses the pistol\'s laser energy, increasing its rate of fire at the cost of greater inaccuracy and a higher risk of overheating. This special edition features Hurston branding.'), +(8902,'Dominance-3 Scattergun','Weapon','Gun','5f31f7c2-1383-4d77-892b-24507515ab0b','','','Manufacturer: Hurston Dynamics\nItem Type: Laser Scattergun\nSize: 3\n\nThe Dominance-3 scattergun from Hurston Dynamics showcases the weapons manufacturer\'s cascade technology. As the operator continues to fire the size three weapon, the better able it is to convert the heat generated into increasingly devastating attacks.'), +(8903,'facial_hair_014','Char_Head_Beard','UNDEFINED','f3248be1-955f-429b-ab7b-9634a531e253','','',NULL), +(8904,'AAT-34 Turret','Turret','MannedTurret','36822ee4-6af9-4831-aa34-bd9357d70959','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(8905,'AEGS_Javelin_SCItem_Dashboard_Security','SeatDashboard','UNDEFINED','7f9eb78f-69c7-44e2-9d96-47ebc9f7a4e3','','',NULL), +(8906,'RADR_GNRP_S03_Idris_TEMP','Radar','MidRangeRadar','944a73bb-974c-4e4c-ab0f-6f9cd062c5a5','','',NULL), +(8907,'Microid Battle Suit Core Lodestone','Armor','Torso','daca7432-d852-49a7-96eb-1a2f1a7aeb48','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(8908,'can_drink_1_pips_c','Cargo','UNDEFINED','144a47f9-30d0-420f-a230-b57007078a54','','',NULL), +(8909,'Shoyu Lapsha','Food','Box','c695d42f-20f8-4c31-b130-ab4aefbaef72','','','NDR: 40\nEffects: Dehydrating, Hyper-Metabolic\n\nA soy sauce based home-style chicken noodles. Perfect for warming up those cold berths.'), +(8910,'Dopple','Cargo','Cargo','f3741500-b243-43b3-9976-44c1752ee3fb','','',NULL), +(8911,'Deadrig \'Noxious\' Shotgun','Weapon','Medium','01b0f0a7-c064-4ce7-a0ee-0039533ea53d','','','Manufacturer: Unknown\nItem Type: Shotgun\nClass: Ballistic\n\nMagazine Size: 8\nRate Of Fire: 120 rpm\nEffective Range: 0-10 m\n\nAttachments: N/A\n\nThe Deadrig is a high powered, double-barreled shotgun with a simple design pieced together from junkyard scraps. Prioritizing power above all else, the Deadrig lacks the refinement of mass-produced weapons and suffers from heavy recoil. The Noxious variant features more green coloration due to the scrap metal used during its assembly.'), +(8912,'Distilled Spirits','Cargo','Cargo','97a5ae02-be7a-4c34-a8e9-c02611630dae','','',NULL), +(8913,'Hephaestanite','Cargo','Cargo','756ea9b2-d13e-4be0-b199-bd0062716b9b','','',NULL), +(8914,'Access','SeatAccess','UNDEFINED','9eb0229f-dc92-44f4-86e0-f26e03b0a0f5','','',NULL), +(8915,'Smoltz (Bottle)','Drink','Bottle','125e49d1-a42c-469f-ad1a-bf015f6c6fda','','','HEI: 18\nEffects: Cognitive Impairment, Dehydrating\n\nCrafted from select rice and barley for a traditional flavor passed down by generations of brewmasters. That’s the taste of Smoltz.'), +(8916,'Agricium','Cargo','Cargo','921fe800-7ae7-4945-82e7-4352d131516b','','',NULL), +(8917,'Levski Coin','Misc','Utility','3309ec02-70ed-46a2-857a-01e8300f7857','','','This collectible coin features the message \"Welcome to Levski\" on one face and the symbol of the People\'s Alliance and their motto \"Stronger Together\" on the reverse.'), +(8918,'MSD-582 Missile Rack','MissileLauncher','MissileRack','5f655d90-2159-40b9-ba4b-b9efa3ea53b7','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 5\nMissiles: 8xS2\n\nBehring’s MSD-582 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 5 hardpoint for the reliable and effective launch of eight S2 missiles.'), +(8919,'Zip','Cargo','Cargo','793f5952-8562-4354-9465-ce5a0bb472f0','','',NULL), +(8920,'Hawk Frostbite Camo Livery','Paints','UNDEFINED','b69c9c94-042a-473a-8290-dc82801e93c3','','','Soar like the winter winds with the Frostbite Camo livery for your Hawk.'), +(8921,'AEGS_Peregrine_CML_Chaff','WeaponDefensive','CountermeasureLauncher','fed3e170-b201-415d-9cd5-82011effa3c4','','','@LOC_PLACEHOLDER'), +(8922,'RangeFinder Jacket Gunmetal','Char_Clothing_Torso_1','UNDEFINED','ae883eec-d5ce-480e-b7e7-2b1e36e66086','','','Carrying Capacity: 3K µSCU\n\nThis insulation outdoor jacket from DMC is lined with reinforced padding to provide durable comfort for everyday wear.'), +(8923,'Mercury Star Runner Skyrider Livery','Paints','UNDEFINED','9d872613-7823-4889-9eb1-41fb5b9f97d3','','','Stylishly stay ahead of schedule, trouble, and the competition with this custom livery featuring a smoky blue and black paint scheme with bright blue accents for the Mercury Star Runner.'), +(8924,'EX-T10-CS \"Executor\" Torpedo','Missile','Torpedo','7c23b548-bf60-42ca-a377-b8afa1a6763c','','','Manufacturer: Behring\nTracking Signal: Cross Section\nSize: 10\n\nBehring prides itself on crafting ordnance that is as dependable as it is powerful and the EX-T10 \"Executor\" is no exception. Designed as an anti-ship and anti-installation weapon, Behring engineers worked tirelessly to ensure this torpedo was a bold strategic statement.'), +(8925,'Argo Astronautics T-Shirt','Char_Clothing_Torso_0','UNDEFINED','7c500142-0254-4507-a8ea-0da7f4ed6f61','','','This orange shirt features the logo of Argo Astronautics. Before changing their name, the company was known as AR-GO Technologies with the \'AR\' referencing founder Alana Redmond.'), +(8926,'Door Control','ControlPanel','DoorPart','af5f9a51-fb1d-4996-97ee-27221a5625e7','','',NULL), +(8927,'Killshot Rifle','Weapon','Medium','c098e722-902a-435b-83f8-a96cec36a012','','','Manufacturer: Unknown\nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 45\nRate Of Fire: 525 rpm\nEffective Range: 50 m\n\nBeauty is in the eye of the beholder, and if you aim just right, so will a round from the Killshot assault rifle. What it lacks in grace, this classic design has its own scrappy charm.'), +(8928,'Metis','QuantumDrive','UNDEFINED','8f5a16f2-5a4d-4a7f-b625-94bae1d16506','','','Item Type: Quantum Drive\nManufacturer: RSI\nSize: 3\nGrade: C\nClass: Civilian\n\nThere\'s no room for error when bending space and time to travel incredible distances. So put your trust in RSI, a company that\'s delivered quality components to the public since the dawn of space flight.'), +(8929,'Weapon_Rack_CRUS_Intrepid','Door','UNDEFINED','e5fec8c9-1bf9-46ad-a1ee-88d5e837832b','','',NULL), +(8930,'RSI_Scorpius_Thruster_Main_Bottom_Left','MainThruster','FixedThruster','a70e7bd3-68e4-4c09-bb72-9d33e5377573','','',NULL), +(8931,'Council Scrip','Currency','UNDEFINED','cea4af31-612e-4d1c-9a03-e358898b5691','','','Consider this scrip your reward for a job well done. While not credits, it can be traded in to certain people for certain things.'), +(8932,'Seat','SeatAccess','UNDEFINED','f8ec0dc6-10f9-4a19-b814-6e0a394f6490','','',NULL), +(8933,'Door','Door','UNDEFINED','5cfe0576-ae03-4eb4-a459-1f7e66af651d','','',NULL), +(8934,'Nyman Jacket','Char_Clothing_Torso_1','UNDEFINED','7b829483-6015-43c7-be14-3dffbccc6e54','','','Carrying Capacity: 1K µSCU\n\nOpalSky\'s Nyman light pullover is perfect to have on hand when lounging poolside or on those chilly nights.'), +(8935,'Projector_HUD_Mining_ATLS','Display','UNDEFINED','4e5a5cac-997d-4be0-9c1d-e3f36ed38cf3','','',NULL), +(8936,'Razorback Pants Desert','Char_Clothing_Legs','UNDEFINED','56135181-441b-4fc9-be12-5d2a3abe4294','','','Carrying Capacity: 2K µSCU\n\nDMC\'s Razorback pants are made to be worn. Built from industrial quality material, they feature reinforced kneepads to prevent tears on the job and stay rugged yet comfortable.\n\nWomen\'s sizes currently out of stock.'), +(8937,'Zeta-Prolanide','Cargo','Small','8307759d-b418-49c9-b161-44dec27f2386','','','This chemical is an industrial reactant that has found widespread use neutralizing irradiated materials. Because of how volatile it is, it must be kept in an electrically charged state or else a rapid exothermic reaction may occur before desired.'), +(8938,'Medical Bed','Usable','UNDEFINED','a0b08977-46b9-4232-8195-37ed3a7d8dfc','','',NULL), +(8939,'Capsulo','Radar','MidRangeRadar','9793a9fd-a521-48be-92fe-86da036b8e2a','','','Item Type: Radar\nManufacturer: WillsOp\nSize: 3\nGrade: B\nClass: Civilian\n\nFor a dependable radar with above average performance, the Capsulo is a trustworthy option.'), +(8940,'AAT-34 Turret','Turret','MannedTurret','16d7378f-69ae-4e34-aede-ddc450832939','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(8941,'Dashboard','SeatDashboard','UNDEFINED','eba96017-8439-44b1-8c9e-0cfc30ffaa7c','','',NULL), +(8942,'Tige','Radar','MidRangeRadar','bd38baac-4671-4e84-afb5-6b79f62dfaec','','','Item Type: Radar\nManufacturer: GNP\nSize: 1\nGrade: B\nClass: Military\n\nSituational awareness is key when engaging with hostiles. The GNP developed the Tige radar with improved accuracy to helps ensure that any viable contacts are detected.'), +(8943,'Scorpius Blight Livery','Paints','UNDEFINED','c4313780-46e6-4e3d-92f3-2ff30ccf6658','','','The Blight livery for the Scorpius paints this advanced combat platform green with black and tan highlights.'), +(8944,'MISC_Hull_C_FoldingStrut_2A','Cargo','UNDEFINED','871fb203-e895-45bb-bce8-2620c0260cac','','',NULL), +(8945,'Bokto Legs','Armor','Legs','a3d71588-8963-48a2-841e-26271ebe23dc','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThis Antium Armor was modified from its original version. Carefully-selected fangs and bones were mounted to the set to give it a primal look.'), +(8946,'Carryable_1H_CY_MissionItem_burrito_1_a','Misc','Junk','6dc4aefd-2ec9-401d-9be6-ba67793ac927','','',NULL), +(8947,'Cumulus Jacket Brown','Char_Clothing_Torso_1','UNDEFINED','0040add3-7c01-45cf-99c4-66036eb76d86','','','Temp. Rating: -35 / 10 °C\nCarrying Capacity: 5K µSCU\n\nBe bold and brave the cold in frigid conditions up to -35 °C with the Cumulus\'s special thermal lining. An oversized, insulated hood provides additional protection around the head, while the distinct quilted torso stops snow, ice, and wind from seeping in, ensuring the wearer remains warm and dry.'), +(8948,'Ermer Family Farms Coffee Ice Cream','Food','Junk','9b0bba60-25e5-4bb1-a31b-cafdbca14271','','','NDR: 10\nEffects: Energizing, Hyper-Metabolic\n\nThis premium 100% real dairy ice cream blended with freshly brewed medium-roast coffee is handcrafted by the skilled artisans at Ermer Family Farms.'), +(8949,'RSI_Aurora_Thruster_Mav_Joint_01','ManneuverThruster','JointThruster','0b31aa44-6cc5-4cec-88da-0f500507c489','','',NULL), +(8950,'ORIG_300i_Thruster_Retro','ManneuverThruster','UNDEFINED','555d7904-34e0-45fb-8a4f-e628c70c51b7','','',NULL), +(8951,'Tin','Cargo','Cargo','ec46c4c7-d3e6-4030-bfdf-f50b69b87b54','','',NULL), +(8952,'HT_DoorPanelScreen_Public','Misc','UNDEFINED','40f3b660-30de-481b-8feb-75a1392f6204','','',NULL), +(8953,'Clempt Pants Green','Char_Clothing_Legs','UNDEFINED','5a5053c4-6e28-4ab1-bc07-c00067ff8cc7','','','Carrying Capacity: 2K µSCU\n\nStegman\'s factory pants have been taken to the next level with the Clempt line. These rugged all-purpose pants come with double knees for extra comfort and protection and are made from tough composite weave fabric to last as long as the work needs.'), +(8954,'Carryable_1H_CY_bottle_bar_14_mixer_f','Misc','UNDEFINED','d7727e6a-a36c-46c6-acb6-776387347d44','','',NULL), +(8955,'Weapon_Rack_RSI_Meteor_3Slot_Combo_Storage','Usable','UNDEFINED','b9f9c43e-ff37-4665-8670-10d9261b0d42','','',NULL), +(8956,'Concept Shirt Yellow','Char_Clothing_Torso_0','UNDEFINED','880dd867-b169-4cc6-8391-774062ad71aa','','','This crisp, versatile button-front shirt from Fiore is made with cutting edge stain resistant and wrinkle-free technology, guaranteeing that you stay professional at all times.'), +(8957,'LeMarque Pants Aqua','Char_Clothing_Legs','UNDEFINED','fc9c3112-e2e3-48b0-b9d4-3484fd2dc6ec','','','Carrying Capacity: 0.5K µSCU\n\nClassic cuts never go out of style. A staple of any wardrobe, Derion\'s LeMarque are built for work or play and feature microseam pleats and wrinkle-free material that will guarantee that you\'ll get years out of this classic.\n\nWomen\'s sizes currently out of stock.'), +(8958,'BEHR_LaserCannon_PowerArray_S3','WeaponAttachment','PowerArray','8ace5adf-9b1a-49d3-8043-026c11fb36c0','','',NULL), +(8959,'Weapon_Rack_1_LBCO_Sniper_AmmoOnly_001','Usable','UNDEFINED','7ed427b4-4489-48e9-8ec0-683dc3ae374f','','',NULL), +(8960,'Carryable_1H_CY_Utensil_Fork','Misc','UNDEFINED','df053416-827d-4ff7-8717-3c065cb8d81c','','',NULL), +(8961,'AEGS_Avenger_Warlock_Thruster_Mav_Joint','ManneuverThruster','JointThruster','d41f7c1e-ed7a-4bc4-9b37-31cbf4ed3dfc','','',NULL), +(8962,'Flight Blade','FlightController','UNDEFINED','30e27db6-7e4d-42e6-96e0-51fd1563dcf9','','',NULL), +(8963,'Gale Head Cover Brown','Char_Clothing_Hat','UNDEFINED','55b2567d-507b-4e82-9242-45cdf8e4d753','','','Temp. Rating: -30 / 15 °C\n\nProtect your head from the wind and cold with the Gale. Code Blue Apparel paired a wide-view visor with a dynamic synthetic fabric to create an excellent thermal barrier to keep heat from escaping without sacrificing your visibility.'), +(8964,'col_a_int_door_single_a_lghtgrp','Lightgroup','DoorPart','87198c21-f8d5-40fc-b6de-87fff0d564e9','','',NULL), +(8965,'Nox Slipstream Livery','Paints','UNDEFINED','0025926d-1659-44ad-9780-a9538a19a638','','','The Slipstream livery will have your Nox ready and raring to race with this sleek blue and white paint scheme.'), +(8966,'Remote Turret','Turret','GunTurret','92bfd79f-565d-474d-aa48-7704f2582aab','','','Remote Turret'), +(8967,'sc_nvy_deckcrew_gloves_01_01_04','Char_Clothing_Hands','UNDEFINED','35cf7ea4-166b-445e-a0c9-ec23f55651e7','','',NULL), +(8968,'Quantum Fuel Tank','QuantumFuelTank','QuantumFuel','808bd354-4a0b-47a3-8a86-bf454eec3b44','','','Quantum Fuel Tank'), +(8969,'Parallax \"Crusader\" Energy Assault Rifle','Weapon','Medium','a2b14491-b76e-4cb2-bab2-7a0bed66481f','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Assault Rifle\nClass: Energy (Electron)\n\nBattery Size: 80\nRate of Fire: 200 rpm - Beam\nEffective Range: 30 m\n\nAttachments: Optics (S2), Underbarrel (S2)\n\nWith the Parallax, VOLT offers consumers a rugged assault rifle design with features like a larger-than-average battery and a unique actuator that enables the weapon to scale up into a persistent beam as it fires. This special edition features Crusader branding.'), +(8970,'Tuna Salad Sandwich','Food','Junk','a0827beb-917d-4071-895c-23a3faae6810','','','NDR: 38\nEffects: None\n\nTuna salad and cucumbers on wheat bread.'), +(8971,'Landlite Boots Dark Green','Char_Clothing_Feet','UNDEFINED','0298b3c3-2766-4fec-8fdf-ef1134f318b5','','','Who says work boots can\'t be comfortable? Grindstone\'s Landlite boots are built with a breathable synth-leather material to keep your feet dry, a contoured, memory footbed, and a slip-resistant outsole, making it perfect for whatever worksite you throw at it.'), +(8972,'Torite (Ore)','Cargo','Cargo','a9ef97e1-855f-4e00-b8f6-034355049bfd','','',NULL), +(8973,'Aloprat Skewer','Misc','Consumable','0f768442-4bb0-4b5b-ac59-995a7929c6ee','','','NDR: 25\nEffects: Immune Suppressing\n\nAloprat is a hearty species of rodent found across Human occupied space, and even can survive aboard space stations and ships eating a variety of food and scraps. This aloprat has been skewered and roasted rotisserie style for crisp skin and gamey, fatty meat.'), +(8974,'AEGS_Door_Screen_Single_03','Decal','DoorPart','deef02e7-6177-4e71-9ddf-ab833f16f3ee','','',NULL), +(8975,'Loudmouth T-Shirt','Char_Clothing_Torso_0','UNDEFINED','7c805d6b-bf0a-4767-a9f8-c5a54a9c9bfc','','','CBD\'s proud to introduce this graphic tee featuring the album artwork from The Leedos\' classic debut album Never Silent.\n\nWomen\'s sizes currently out of stock.'), +(8976,'Artimex Legs Starchaser','Armor','Legs','3f31149c-b9cc-4700-9585-f924cda83daf','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.'), +(8977,'Arden-SL Helmet Rime','Armor','Helmet','3dc34564-55db-4e7c-80c8-0b7c87dae244','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics. It also features a fully enclosed helmet with an integrated cowl. Visor is AR crosshair compatible.'), +(8978,'Arden-SL Helmet Balefire','Armor','Helmet','cadb46d0-7009-4451-a984-6d79c7dd73ae','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics. It also features a fully enclosed helmet with an integrated cowl. Visor is AR crosshair compatible.'), +(8979,'Medical Bed','Usable','UNDEFINED','63630a0c-9dbd-4e0d-8dfa-b89defc43dd2','','',NULL), +(8980,'Arden-SL Helmet','Armor','Helmet','35a43d37-67fb-487a-b907-727d3737caf1','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics. It also features a fully enclosed helmet with an integrated cowl. Visor is AR crosshair compatible.'), +(8981,'ForceFlex Undersuit Black/Red','Armor','Undersuit','de20ef22-8c38-4f73-8b62-9c8851c8d1bb','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nVirgil\'s ForceFlex is the next generation in undersuit technology. Rated for combat as well as industrial work, you can rest assured that the comboweave will keep you protected in whatever situation you put it through.'), +(8982,'Arden-SL Helmet Archangel','Armor','Helmet','7aa4bff2-98be-4cdc-ba87-15560ba4fe44','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics. It also features a fully enclosed helmet with an integrated cowl. Visor is AR crosshair compatible.'), +(8983,'Sledge III Mass Driver Cannon','Weapon','Gun','ccd05b20-4042-4c49-a4c0-4a94f6d841ee','','','Manufacturer: Klaus & Werner\nItem Type: Mass Driver Cannon\nSize: 3\n\nThe Sledge III is the size three variant of Klaus & Werner\'s popular mass driver cannon series. Though slow to fire, the weapon successfully blends the company\'s philosophy of simple design with cutting edge railgun technology to fire ballistic projectiles with surgical precision at range.'), +(8984,'Seat','Usable','UNDEFINED','4fbe7240-42fe-415c-b62c-51250c8a0c89','','',NULL), +(8985,'Cirrus Boots Red','Char_Clothing_Feet','UNDEFINED','2e1b8cb3-ea8d-44f5-aeff-ed091d392b99','','','Temp. Rating: -35 / 15 °C\n\nThese rugged, high ankle boots will keep your feet warm when venturing into wintry conditions. The Cirrus also integrates steel alloy links into the sole for added traction on icy surfaces.'), +(8986,'Raw Silicon','Cargo','Cargo','16baf251-eff3-44a4-9ac0-4ef06f839f94','','','A strong and brittle element with good thermal conductivity. Crystalizes in a diamond form.'), +(8987,'Pyro RYT \"ArcCorp\" Multi-Tool','Weapon','Gadget','c9c0d8b0-77c4-4e9f-9bb4-64a7a6e81b67','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier. This special edition features ArcCorp branding.'), +(8988,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','23eac844-17ab-4de3-bb42-f301a530e228','','','Joker Defcon - Noise Launcher'), +(8989,'ORIG_600i_Thruster_Mav_Fixed_02','ManneuverThruster','FixedThruster','a1f3cf25-e6d6-4cb7-b2a2-2b97b03d6eaf','','',NULL), +(8990,'Stratus Jacket Brown','Char_Clothing_Torso_1','UNDEFINED','539f7797-f5fc-4793-ae35-0142f3522936','','','Temp. Rating: -20 / 20 °C\nCarrying Capacity: 3K µSCU\n\nEven though it\'s rated to withstand arctic conditions, you won\'t want any snow accumulating on this distinct and dazzling jacket. The Stratus will keep you warm from neck to knees thanks to its high collar and precisely layered pieces.'), +(8991,'INTK_MISC_Freelancer_MIS','FuelIntake','Fuel','34bbed44-361b-4ad1-80f7-a526f9f286d7','','',NULL), +(8992,'Door Control','Door','UNDEFINED','e8ceac77-9e17-49dd-8be9-afeb5af8e05d','','',NULL), +(8993,'Dragonfly Turbocharged Livery','Paints','UNDEFINED','5bf6d083-453e-4c32-9bd3-2fe5c6354dc5','','','The Turbocharged is a distinct, purple racing livery for the Dragonfly that will make you stand out from the rest of the field.'), +(8994,'Seat','SeatAccess','UNDEFINED','1b00e8f9-46b7-4901-8b6d-a4b4c989b664','','',NULL), +(8995,'Amioshi Plague','Cargo','Cargo','526b67da-2ff4-46ef-9886-ab307a737c49','','',NULL), +(8996,'Aril Core','Armor','Torso','490501c8-baea-4734-b0a5-62a0cd6bd1d6','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(8997,'Table_Booth_2_Seat_ANVL_Paladin','Usable','UNDEFINED','48a2d91d-8cce-4aff-9d28-06ad49718f60','','',NULL), +(8998,'Biological Samples','Cargo','Cargo','1bca935f-85f0-493e-bdf1-208a82b0c936','','',NULL), +(8999,'Venture Helmet Blue','Armor','Helmet','fffce641-92d3-4973-9e98-65fa38d4196d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover.'), +(9000,'Weapon_Rack_GRIN_STV_1Slot_Left','Usable','UNDEFINED','6628be04-4884-4bf1-8bdb-63a64fce2262','','',NULL), +(9001,'Cobalt','Cargo','Cargo','5c1d6fd8-2719-4434-a2ce-92291656748f','','',NULL), +(9002,'ADP Core Olive','Armor','Torso','2d58d6d7-d116-4f26-b62b-3c77c39d027c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(9003,'Turret','Turret','BallTurret','0df7b3c2-70c4-461d-b2fc-d171ea6c0096','','',NULL), +(9004,'Door Control','Door','UNDEFINED','ccf9980d-ff79-429b-906e-b17e4652c98c','','',NULL), +(9005,'Flight Blade','FlightController','UNDEFINED','761739d0-236f-4efa-b79e-4b494292c931','','',NULL), +(9006,'Vehicle_Screen_Physical','Display','UNDEFINED','9a48b047-69d8-44d0-84b0-14246524e5d0','','',NULL), +(9007,'G-2 Helmet Executive','Armor','Helmet','2c66dda7-ffab-4f55-9a2d-edc1f25d2ac7','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. Visor is AR crosshair compatible.'), +(9008,'DCP Armor Legs New Dawn','Armor','Legs','2e80c1d2-4c78-4b39-8fd8-41682ffae3c0','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(9009,'Astatine','Cargo','Cargo','4b285725-7c67-4fba-9a21-8a24e38f6fd3','','',NULL), +(9010,'Door','Door','UNDEFINED','b38cc54e-e02e-439d-b714-548954b7b461','','',NULL), +(9011,'test_aimodule_unmannedturret','AIModule','UNDEFINED','8767a93d-1315-4eb9-bd40-d102ccb51af7','','',NULL), +(9012,'Neograph','Cargo','Cargo','d8137375-c44d-4fbb-ab9b-f3759ad38701','','',NULL), +(9013,'Overlord Helmet Polarity','Armor','Helmet','00b299c3-c705-47ed-8f2d-a10651ae7f90','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord helmet delivers heavy armor protection while using a special lightweight composite plating that makes it feel like nothing\'s there. Repurposed ocular sensors normally found on ships keep you attuned to your surroundings and, when worn with the full Overlord suit, the high neck collar provides the helmet extra support and protection. Visor is AR crosshair compatible.\n\nThe Polarity edition pairs a deep purple with rusted brown accents.'), +(9014,'Feynmaline','Cargo','Cargo','ff8ce1a3-5b62-4715-b207-7a6efd7167bf','','','The paramorphic crystalline structure of this mineral is extremely volatile. When extra energy is introduced, as is typical with modern mining, the ore will often explosively degrade into the more stably structured Janalite. This instability makes Feynamline very dangerous to acquire but also extremely valuable as an industrial anti-matter precursor if it can be properly harvested.'), +(9015,'SHIELDS','ShieldController','UNDEFINED','1fbc61a6-6ac6-43bc-bf99-8467f063e4da','','',NULL), +(9016,'Door Control','ControlPanel','DoorPart','43be2c0c-62df-4150-8fef-7fb340de2601','','',NULL), +(9017,'DRAK_Caterpillar_Thruster_Aux','MainThruster','FixedThruster','6d347cd4-2d32-46a5-99e6-1edb133e8eaa','','',NULL), +(9018,'Origin Jumpworks 85X Remote Turret','Turret','GunTurret','78c9261b-1f5f-4c2e-9ff8-bb9d7495095a','','','Origin Jumpworks 85X Remote Turret'), +(9019,'Door Control','ControlPanel','DoorPart','afea1f63-aeda-41a4-8b78-53b0f7b6cee1','','',NULL), +(9020,'Carryable_2H_FL_Vlk_Pearl_High_02','Misc','Harvestable','5149168c-a18a-4072-b90d-da683abb54b8','','',NULL), +(9021,'Door Control','ControlPanel','DoorPart','2a7c4264-7399-4e45-9a41-f0fbdbb72e78','','',NULL), +(9022,'DR Model-XJ1 Repeater','Weapon','Gun','34bc9924-3f20-4bc9-a6cf-81335a0608fe','','','Manufacturer: Associated Science & Development\nItem Type: Distortion Repeater\nSize: 1\n\nPower is the life blood of every ship, and the DR Model-XJ1 from ASD is the ideal choice to bleed hostiles dry. This cutting-edge distortion repeater allows you to disrupt power on targets, disabling threats efficiently.'), +(9023,'Overlord Legs Skimmer','Armor','Legs','30ff2501-3687-480d-b2fb-ef7f0eaf3d11','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.\n\nThe Skimmer edition features white plating with cool blue accents.'), +(9024,'AEGS_Sabre_Peregrine_Winglet_Left','Misc','UNDEFINED','7d614779-cd62-48cc-8429-19f1c020f78d','','',NULL), +(9025,'Banded Fessle','Misc','UNDEFINED','60047bc9-a814-4966-b074-58e46bd0dc0a','','','Known for its distinct blue and white banding, the Banded Fessle is indigenous to the warmer areas of the Anasazi Sea on Terra up to a depth of twelve meters. These carnivorous fish can grow to anywhere between forty and fifty centimeters and are known to eat small insects and fish.'), +(9026,'MedGel','Cargo','Cargo','1d5cad1b-dd92-4344-bcaa-a45789b90445','','',NULL), +(9027,'MISC_Freelancer_Thruster_Mav_Joint','ManneuverThruster','JointThruster','a546f61a-a8ad-470d-8605-b5dc1684bbb4','','',NULL), +(9028,'Harlowe Shirt Grey','Char_Clothing_Torso_0','UNDEFINED','a2ef9447-44e6-4cba-898d-86ae387ea3ea','','','Capable as being worn on its own or as a base for layers, this long-sleeve henley style shirt from Alejo Brothers keeps you stylish and comfortable.'), +(9029,'BEHR_LaserCannon_SF7E_PowerArray_S7','WeaponAttachment','PowerArray','0004adde-8c6e-41b6-b053-49f7be705a81','','',NULL), +(9030,'RSI_Apollo_Thruster_Main','MainThruster','FixedThruster','45694e1f-329e-d3a2-6610-a7ec80736aaf','','',NULL), +(9031,'Aurora Mk I Pitchfork Livery','Paints','UNDEFINED','ca54d48b-0f43-4662-8199-2bcd4b925e33','','','Strike fear into the heart of the Vanduul with this Operation Pitchfork livery commemorating the brave pilots who have dedicated their lives to defeating this deadly foe.'), +(9032,'Weapon_Rack_Powered','Usable','UNDEFINED','6031b781-0daf-498a-9490-6bfe504d44c3','','',NULL), +(9033,'Debnam Gloves Dark Red','Char_Clothing_Hands','UNDEFINED','a22fde95-6b3e-44b5-8bb1-ccebe8916ad3','','','Named after the influential Terran tailor, Debnam gloves incorporate that famous tailor\'s classic design to keep your hands comfortable in colder temperatures.'), +(9034,'Balor HCH Helmet Orange','Armor','Helmet','138c137e-9678-40ed-824e-eafeee5ef410','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. Visor is AR crosshair compatible.'), +(9035,'Carryable_2H_FL_crate_weapon_3_075x050x050_a','Misc','UNDEFINED','b154429d-6c86-4d4a-b548-641dd39ea3f4','','',NULL), +(9036,'Ardor-3 Salvaged Repeater','Weapon','Gun','47f6c5d4-32f6-4813-9a34-a55d3c2d8aac','','','Manufacturer: Hurston Dynamics\nItem Type: Laser Repeater\nSize: 3\n\nThis Ardor-3 laser repeater was salvaged in the Pyro system. First manufactured in 2724, the Ardor series became popular for its split barrel design that helped mitigate heat when sustaining fire. Hurston eventually stopped manufacturing the weapon in favor of the Attrition line of laser repeaters. Despite the effects of time and constant usage, the weapon is still sought after because of the consistent performance delivered by Hurston Dynamic\'s expert design and solid construction.'), +(9037,'Deadhead Helmet Windfall','Armor','Helmet','593cd516-d053-470b-a701-cf33ae3fe47e','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\n\nRemind your enemies that death is coming with the Deadhead helmet. In place of a visor, the ghastly visage of a Human skull, lit from within by an infernal glow, is sure to send any opponent running.'), +(9038,'Blue Bilva','Cargo','Cargo','93245080-fa85-4c77-9dbe-7bb89bfc969b','','',NULL), +(9039,'SHIELDS','ShieldController','UNDEFINED','4b02f78b-5559-92b3-4774-d9090693b4ac','','',NULL), +(9040,'INTK_ARGO_MPUV_1T','FuelIntake','Fuel','04cd0176-4a1f-48e4-a7df-f26cf1a9fbc9','','',NULL), +(9041,'Medical Bed','Usable','UNDEFINED','b60c8ff9-9209-47cb-a715-b98a725ed6eb','','',NULL), +(9042,'\'WAR\' Cannon','Weapon','Gun','816aa854-7615-4add-a2ca-2d39ada7fea7','','','Manufacturer: Vanduul / Esperia\nItem Type: Neutron Cannon\nSize: 5\n\nThis neutron cannon is typically found on Vanduul war ships and is commonly known by its UEE Navy designation of \'WAR\'.'), +(9043,'RSI_Hermes_Thruster_Main','MainThruster','FixedThruster','4d720b5e-469e-e4e2-d405-52c1d7831ebc','','',NULL), +(9044,'INTK_ARGO_MOLE','FuelIntake','Fuel','44ca34c8-068f-4df5-8021-49aeea50bf05','','',NULL), +(9045,'Pickle','Food','Junk','ba364182-14ed-466e-864b-4ecec98cc06a','','','NDR: 12\nHEI: 03\n\nA pickled cucumber that has been fermented in a brine flavored with coriander seeds, dill, and garlic.'), +(9046,'Tungsten','Cargo','Cargo','b6cae603-6761-4b4a-bf4a-88f772e06aa3','','',NULL), +(9047,'Hull C Model Box','Misc','UNDEFINED','173aa575-32bc-4689-b7ef-b868611f922d','','','A collector\'s edition box for Takuetsu\'s Hull C Model, featuring an image of the iconic ship on the front along with details about the model.'), +(9048,'CF-117 Bulldog Repeater','Weapon','Gun','ba8c9920-9fd0-4253-a349-de32079edce2','','','Manufacturer: Klaus & Werner\nItem Type: Laser Repeater\nSize: 1\n\nFeaturing a three-barrel sequential fire design, the Klaus & Werner CF-117 Bulldog laser repeater is capable of delivering high velocity energy rounds while maintaining heat efficiency making it a favorite among new pilots who are outfitting their first ship.'), +(9049,'Inquisitor Legs Olive','Armor','Legs','7be74532-d5a3-46ba-85b5-6865f4bd88fe','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(9050,'Li-Tok Boots Tan','Char_Clothing_Feet','UNDEFINED','721a6324-9ccc-4364-ba2f-0af368fd444c','','','Stylish yet rugged, NorthStar\'s Li-Tok boots are made from a composite nylon fabric, vulcanized rubber grips that hold fast to a variety of surfaces, and reinforced ankle support making these perfect for hanging out or on the job.\n\nWomen\'s sizes currently out of stock.'), +(9051,'Access','SeatAccess','UNDEFINED','7b0f8b23-7108-43a9-8d82-0afc975029ad','','',NULL), +(9052,'Personal Storage','Cargo','UNDEFINED','890ef85c-3891-47d8-9eb5-8f1dd65f59b1','','',NULL), +(9053,'SHLD_GODI_S04_Bengal_SCItem','Shield','UNDEFINED','ca41d9be-bbcc-450f-ad08-1bb88c957bf8','','',NULL), +(9054,'ORC-mkV Core','Armor','Torso','43b3e729-5fb2-4396-a9d7-02b7ab9e6844','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(9055,'Methane','Cargo','Cargo','e298687a-f670-416c-a9dc-c3c4640380e2','','',NULL), +(9056,'Carryable_TBO_FL_24SCU_Commodity_ProcessedGoods_ProcyonCanister_Quantum','Cargo','Cargo','ea4ad918-f751-4194-ab15-f47a47cec6c4','','',NULL), +(9057,'Door Control','ControlPanel','DoorPart','6d74c187-1a27-449c-bd1f-eb75fbcc72a3','','',NULL), +(9058,'Seat','Usable','UNDEFINED','bf622c19-89ef-40ce-8bde-b7f6b61c1a8b','','',NULL), +(9059,'Cargo_Comm_125x3_Mineral_Corundum_a','Cargo','Cargo','3f6997fd-9bf2-4a4d-8062-7c6eb5fb7dfe','','',NULL), +(9060,'Medical Bed','Usable','UNDEFINED','7a2c3281-b1c9-484c-af4c-75d7ec03d341','','',NULL), +(9061,'Adiva Jacket Dark Red','Char_Clothing_Torso_1','UNDEFINED','a7af4686-ac14-4b58-8d18-3bd6d2ae6ad2','','','Carrying Capacity: 1K µSCU\n\nDefine your ultimate you. The Adiva is an asymmetrical pullover with bold mixed-materials and solid reinforced trim.'), +(9062,'Seat','SeatAccess','UNDEFINED','d9e1b905-d14d-4c99-9dc4-907f3b4237af','','',NULL), +(9063,'MASTER_screen_16x9_CounterScreen_a','Display','UNDEFINED','48fba373-0bef-4e6e-b9f8-71c66e5903d3','','',NULL), +(9064,'Seat','SeatAccess','UNDEFINED','6042c37e-9f1e-4d6c-a093-89cb5aa47190','','',NULL), +(9065,'m_body_kopion_collar','Char_Accessory_Head','Kopion','9b420529-d950-4118-9326-7ce7a9907f00','','',NULL), +(9066,'Venture Helmet Aqua','Armor','Helmet','1e100031-060a-4821-a7f6-4d6c0c77e532','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover.'), +(9067,'MXOX_NeutronRepeater_PowerArray_S1','WeaponAttachment','PowerArray','465e16ab-d149-4b68-80e1-e5d557e79860','','',NULL), +(9068,'Access','SeatAccess','UNDEFINED','f8c068aa-7053-4d2a-bd9f-5e89be067e57','','',NULL), +(9069,'ThermoWeave Breathing Apparatus','Char_Clothing_Backpack','UNDEFINED','a03c4c8e-e555-448a-a916-53c3af014635','','','Carrying Capacity: 33.8K µSCU\n\nThe ThermoWeave breathing apparatus integrates with the hood to ensure a constant flow of breathable oxygen regardless of air quality conditions.'), +(9070,'INTK_RSI_Aurora_LN','FuelIntake','Fuel','f778d382-5eed-423c-8fe7-c27875971870','','',NULL), +(9071,'Bexalite','Cargo','Cargo','b5f9f8ae-451d-4197-8081-6ca12f3d7196','','',NULL), +(9072,'Venture Helmet Pathfinder','Armor','Helmet','be0e3f90-cbae-4d5f-bd45-d34795d045f0','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover. The special Pathfinder edition is purple with gold highlights that match the sleek base suit.'), +(9073,'Hornet Corin Camo Livery','Paints','UNDEFINED','45bfc8d0-6aee-4190-9601-13a8bd58b7a5','','','Show your support for the UEE\'s most elite fighting force with the Corin Camo livery for the Hornet Mk I. Commissioned in 2860 to celebrate the 300th anniversary of the Marines becoming their own branch of the military, the livery is a classic green camo with red highlights and the UEE logo.'), +(9074,'Omnapoxy','Cargo','Cargo','9eda76ab-199e-43ef-b998-610a323d944d','','',NULL), +(9075,'ADP Arms Blue','Armor','Arms','0c3a431a-6aa9-4d1e-9deb-fd87b27c2cfa','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(9076,'Door Control','Door','UNDEFINED','7cc13095-98dc-4079-8156-f8fb7f34fe83','','',NULL), +(9077,'Fieldsbury Dark Bear Helmet Guava','Armor','Helmet','0090e00a-4340-4032-82b8-32def1b39d99','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -40 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nCelebrate Day of the Vara in sinister style with this officially licensed Fieldsbury Dark Bear helmet. This twisted version of the Fieldsbury Bear mascot launched a seasonal soda flavor before being co-opted into a series of high-profile pranks. Ever since, the bear\'s big, toothy grin and off-set flickering eyes have become a standard sight at Day of the Vara celebrations. Now CC\'s Conversions has designed and delivered an official, high quality reproduction of this iconic mascot, available in six striking colors.'), +(9078,'Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','1e149814-5120-4f32-86d4-1070d044bef7','','','Joker Defcon Flares Ammo'), +(9079,'counter_atc_1_console_02x0075x01','Misc','UNDEFINED','c762e519-fa03-48f9-beff-416aab75cc4e','','',NULL), +(9080,'UrbEx Boots Dark Purple','Char_Clothing_Feet','UNDEFINED','7d15dcc0-a97e-428e-8657-c9e8f3cfb3d1','','','From bustling backstreets to crowded clubs, the UrbEx boots will make your next step a bold one. The boots blend a stylish design with reinforced high ankle support and ultra durable outsoles.'), +(9081,'FBL-8a Legs Arctic Digital','Armor','Legs','a3d6dd14-85ee-4feb-baeb-e92ca171714c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nCDS\'s quest to create the ideal light armor continues with the FBL-8a. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible.'), +(9082,'SCItemDisplayScreen_ScreenSize_W60_H34_H69','Display','Default','4b75b06d-65d0-49bd-8f34-8e3730a9e7af','','',NULL), +(9083,'Ready-Up Helmet \"Pathfinder\"','Char_Clothing_Hat','UNDEFINED','3d60c9f3-82bf-4e79-bf62-09fd1ddc5187','','','The Ready-Up is a dependable, affordable softshell helmet alternative that provides a vacuum-ready seal to keep you breathing for longer. The Pathfinder edition uses special space-age plastic with a purple tint to produce a truly unique look.'), +(9084,'Cyclone Overdrive Livery','Paints','UNDEFINED','0527239e-9cb0-4431-9542-d1a167ef0c74','','','Blast past other racers in your Cyclone with the Overdrive livery, which features a stylish blend red and silver coloring.'), +(9085,'Luminalia Gift Box','Container','Box','f9a755a1-5be3-49b7-b90e-a65c32ca0c99','','','Wrapped in elegant sky blue paper adorned in stars and topped with a smart silk ribbon, this large gift box makes the ideal festive storage solution.'), +(9086,'MISC_Razor_EX_Thruster_Main','MainThruster','FixedThruster','16053395-9275-43ab-9da5-b07155461979','','',NULL), +(9087,'MISSILES','MissileController','UNDEFINED','1f1314e0-2ee9-4545-9394-c64220c0b489','','',NULL), +(9088,'Radford Shirt','Char_Clothing_Torso_0','UNDEFINED','525403b8-7811-4b8f-8ee9-c6e4a093090f','','','The Radford dress shirt and tie combo proves that simple elegance is eternal. The shirt features a unique side seam that provides a tailored fit. A silver tie bar is the perfect finishing accent to make sure everything stays in place.'), +(9089,'Radford Shirt Dark Blue','Char_Clothing_Torso_0','UNDEFINED','50c0b216-ffa6-463b-a815-a8e6a92a1b6b','','','The Radford dress shirt and tie combo proves that simple elegance is eternal. The shirt features a unique side seam that provides a tailored fit. A silver tie bar is the perfect finishing accent to make sure everything stays in place.'), +(9090,'Citadel Legs Outcrop','Armor','Legs','e462b0cc-4f15-4926-9d58-4988a773b39c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(9091,'Radford Shirt Light Blue','Char_Clothing_Torso_0','UNDEFINED','188f0e43-18ab-4092-b64b-0196b5ea1a91','','','The Radford dress shirt and tie combo proves that simple elegance is eternal. The shirt features a unique side seam that provides a tailored fit. A silver tie bar is the perfect finishing accent to make sure everything stays in place.'), +(9092,'Hair Care Product','Misc','UNDEFINED','8d6d6381-7a65-4df7-bf6e-3a06a86b4700','','',NULL), +(9093,'EQ-B Pants','Char_Clothing_Legs','UNDEFINED','dcc62706-c387-43b3-a8cf-83fbe36bbe9c','','','Carrying Capacity: 0.5K µSCU\n\nKeep it easy with EQ athletic pants from Escar Limited. Made with a sweat-wicking microweave and a subtle pleated design, the EQ are a comfortable and stylish choice for those days when you\'re looking to keep it cool.\n\nWomen\'s sizes currently out of stock.'), +(9094,'Aluminum (Ore)','Cargo','Cargo','bc3d345b-f09d-4764-8260-c74a6d63f9a7','','',NULL), +(9095,'ARGO_MPUV_1T_Thruster_Main','MainThruster','FixedThruster','04660fad-c962-4091-b7d1-823adeb3da0d','','',NULL), +(9096,'RCMBNT-PWL-2','InventoryContainer','Cargo','ea2cddb5-2c04-4e0c-9fa2-76a4748c9398','','','An imprint recombinant sample created from CTLST-PWL and REAGENT-02 as part of Dr. Logan Jorrit\'s Project Hyperion experiment.'), +(9097,'Railing_CornerBevel_Out_4m_Lowtech_Open','Usable','UNDEFINED','0e9bdd01-bfad-41a3-b9d8-7ac4f2487952','','',NULL), +(9098,'sw_heavy_environment_helmet','Armor','Helmet','9e544772-a0fb-4b5a-8b2a-69e8b8927d80','','',NULL), +(9099,'RSI_Apollo_OC_Right_Tier_2','Room','UNDEFINED','4622afc9-be96-0a04-2c0d-d9df013d26ba','','',NULL), +(9100,'ARGO_ATLS_IKTI_Backpack','Usable','UNDEFINED','f996eda3-731d-4d00-a333-5b9913e4de9b','','',NULL), +(9101,'Pite','Char_Head_Piercings','UNDEFINED','1fc1a0f3-4d8f-4140-b824-4de146623c9e','','',NULL), +(9102,'Hydrogen','Cargo','Cargo','a37e04a1-3960-41b0-80f5-2f29dc525c1e','','',NULL), +(9103,'AAT-34 Turret','Turret','MannedTurret','b4b5e78b-aac5-462f-aa7e-e98e95197833','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(9104,'Aurora Mk II TS Module','Module','UNDEFINED','be11b23a-38a3-4045-bb61-4effe23faedf','','','RSI designed this transport and storage module to increase the cargo capacity of the Aurora Mk II.'), +(9105,'Seat','SeatAccess','UNDEFINED','e4c126fe-eb66-46ff-abbf-ec94ae54812a','','',NULL), +(9106,'Arrow Nightbreak Livery','Paints','UNDEFINED','47f9208e-e70f-486a-85c0-54dd0b3c8e0a','','','Discreetly soar through the night sky in the Arrow with the Nightbreak livery, which is primarily black with red highlights.'), +(9107,'Seat','Usable','UNDEFINED','3f81865f-ea6b-455f-9993-41cc0073c5d1','','',NULL), +(9108,'Manned Turret','TurretBase','MannedTurret','d9cfc86b-2082-46ac-aeb2-e4da60f62832','','',NULL), +(9109,'Foundation Pants Grey','Char_Clothing_Legs','UNDEFINED','217f7a33-6635-4006-be06-f1ecf238946c','','','Carrying Capacity: 1K µSCU\n\nDMC\'s Foundation line is just that; the foundation for your work wear. Featuring a simple, elegant cut with easy-access pockets, the Foundation is both professional and functional.\n\nWomen\'s sizes currently out of stock.'), +(9110,'ATLS Monsoon Livery','Paints','UNDEFINED','124de29d-3da8-4571-8873-860f6aa8894e','','','The Monsoon livery brings a bold blue tint to your ATLS power suit.'), +(9111,'Debnam Gloves Black','Char_Clothing_Hands','UNDEFINED','257b1282-0d72-4795-8f32-fe05a8fd7f4a','','','Named after the influential Terran tailor, Debnam gloves incorporate that famous tailor\'s classic design to keep your hands comfortable in colder temperatures.'), +(9112,'Balor HCH Helmet Dark Red','Armor','Helmet','aadb0b21-366b-41e5-94ad-3727235c2b36','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. Visor is AR crosshair compatible.'), +(9113,'PU_MISSION_Outpost_PowerPlant','Cargo','Small','1abec48e-f1bc-4377-b37e-cfc31ec6758e','','',NULL), +(9114,'Door','Door','UNDEFINED','4322ad7f-7a77-40d7-bf7e-8daa09a151b8','','',NULL), +(9115,'Freelancer Hurston Livery','Paints','UNDEFINED','99044471-d444-4f4a-9908-a8c425f4d54f','','','The Hurston livery for the Freelancer features the company\'s logo atop a grey base paint with yellow highlights.'), +(9116,'Anvil Hornet F7C Nose Turret','Turret','CanardTurret','d342658d-9562-4b07-aa26-7a47b6ed6fd3','','','Item Type: Turret\nManufacturer: Anvil Aerospace\nSize: 3\n\nThis nose turret was designed specifically for Anvil\'s F7C Hornet to allow for mounting two Size-1 weapons and precise gimbaled tracking of targets.'), +(9117,'Seat','SeatAccess','UNDEFINED','c569cb0f-ce10-49e1-8a7b-65f31719f05f','','',NULL), +(9118,'AImodule_ATC_LorvilleATC01','AIModule','UNDEFINED','c1e62a5b-15b3-4b26-914a-a37e06408cd6','','',NULL), +(9119,'S71 \"Hemlock Camo\" Rifle','Weapon','Medium','af6792f4-06f7-4c94-bc72-878b7d77189b','','','Manufacturer: Gemini\nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 30\nRate Of Fire: 300 rpm / 900 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nWith the S71, Gemini designed an ergonomic assault rifle ideal for mid-range engagements. Chambered with a smaller caliber round than other weapons in its class, the S71 has become popular among private military professionals for its sleek aesthetics and precise accuracy. \n\nThe Hemlock edition features a green camo pattern.'), +(9120,'Door Control','Door','UNDEFINED','042af386-eb1b-4c3a-8182-935a78dc502b','','',NULL), +(9121,'Seat','Usable','UNDEFINED','0834c550-4196-4951-834d-9203f96c2105','','',NULL), +(9122,'Chada Collar and Panniers Shale','Char_Clothing_Torso_1','UNDEFINED','13b52b98-c02e-4be3-9e3e-1427c5bb479b','','','Carrying Capacity: 400 µSCU\n\nNeed extra inventory? We\'ve got you covered. Designed for hands-free carrying, the Chada Panniers by Habidash come with an adjustable strap that lets you securely attach them around your hips. Each set of panniers comes with a fashionable steel and leather gorget.'), +(9123,'Door','Door','UNDEFINED','cbb508ad-51e5-4e65-8a1c-b8dd2f85e9b7','','',NULL), +(9124,'Inquisitor Legs White','Armor','Legs','5c2499c9-4158-4feb-9b87-ace0e2769f99','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(9125,'ARMR_GAMA_Syulen','Armor','Medium','091dbb9d-10e0-4c60-8b81-bdadcaf00880','','',NULL), +(9126,'Food_burger_01_a','Food','Junk','1eef232f-ab0c-40f1-aa44-c9f5b6f0e618','','',NULL), +(9127,'ORIG_890_Jump_Thruster_Mav_TRL','ManneuverThruster','FixedThruster','f3cb6e8d-b515-48e0-8c4a-001861989056','','',NULL), +(9128,'Ht_AirlockDoorPanelScreen','Misc','UNDEFINED','6b1cbd67-0d94-45d8-834b-f11ad80fec52','','',NULL), +(9129,'Door','Door','UNDEFINED','1c5c4ae9-cd7a-4c4c-aa81-3462618aa45f','','',NULL), +(9130,'Bed','Seat','UNDEFINED','c0203b17-6c2b-41a6-98c3-be391f9619db','','',NULL), +(9131,'Ventra Gloves Olive','Char_Clothing_Hands','UNDEFINED','0d46bcd1-94f0-4685-9cfa-47a115ef7ea1','','','Keep your hands warm and dry with Fiore\'s Ventra gloves. Microstitching creates a snug, tailored fit to keep you looking stylish and warm.'), +(9132,'OMNI-AFS-Sapphire Helmet Slate','Armor','Helmet','750044d5-4c9a-4d29-bf64-35a3b6de20c9','','','Item Type: Light Helmet\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nSimilar to the helmet worn by UEE Navy pilots, the OMNI-AFS-Sapphire helmet delivers excellent protection and visibility. Multilayered plating protects against impacts while its wide faceplate ensures clear, unobstructed views whether in the cockpit or on foot.'), +(9133,'ORC-mkV Core Red','Armor','Torso','0368d9db-58d5-48ea-8a1b-5d646c4ad66a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(9134,'sc_nvy_pilot_light_helmet_01_01_fleetweek','Armor','Helmet','09061339-10ef-4c90-8622-97e3f6480c66','','',NULL), +(9135,'Pulverizer LMG Magazine (120 Cap)','WeaponAttachment','Magazine','b4df80a2-7aa6-412c-b1ff-67467bcf43ec','','','Item Type: Magazine\nCapacity: 120\n\nThis magazine for the Pulverizer LMG comes pre-loaded with one hundred and twenty .50 caliber rounds.'), +(9136,'Internal Tank','FuelTank','Fuel','8d2a2f03-ce3b-42d6-b48a-97ee983027ad','','',NULL), +(9137,'Zeus Coin','Misc','Utility','da18492c-a6bf-4f76-a23a-c76ab92a339f','','','A coin crafted to honor the RSI Zeus, the first commercial spaceship to feature a quantum drive. The historical exploration craft graces one side of the coin while the other side is embossed with the Roberts Space Industries logo.'), +(9138,'ORC-mkV Legs Tan','Armor','Legs','a3509d0d-e42f-42aa-a3c3-b1e186e58821','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(9139,'IAE 2951 Hat White','Char_Clothing_Hat','UNDEFINED','61877a59-553f-495e-84a2-9655bcdd5a46','','','The official hat of the 2951 IAE carries the logo for the event on the front and a smaller version of it on the back right panel.'), +(9140,'CRUS_Spirit_Thruster_Retro','ManneuverThruster','UNDEFINED','b1dc12b1-3690-4350-8f52-d57d1aaacf4a','','',NULL), +(9141,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','91a350f7-f031-48d6-a20c-38934d84a288','','','Aegis Gladius - Decoy Launcher'), +(9142,'ARGO_MPUV_Lights','Room','UNDEFINED','e21b90f9-caca-44e5-b950-628c1e3315d0','','',NULL), +(9143,'Controller_Salvage_ARGO_MOTH_FrontCab','SalvageController','UNDEFINED','c492c204-b7fa-4489-8db7-f5f1b6e8fdac','','',NULL), +(9144,'Revenant Tree Pollen','Cargo','Cargo','5d6179ac-c167-4558-b54f-26a650628d78','','',NULL), +(9145,'Inquisitor Core Tan','Armor','Torso','20cf959a-e66d-41c1-8140-6cba12459fa5','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(9146,'Ati Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','dc1b64f4-819c-4b90-adb0-92ee5ab601ec','','','Carrying Capacity: 2K µSCU\n\nFiore\'s is a modern update of traditional Earth design. Slim tailoring, a high collar, and striking asymmetrical design make this overcoat a must-have item for any wardrobe.'), +(9147,'E\'tam','Cargo','Cargo','52e16dee-1010-44a6-88bd-5bce8f3e12e7','','',NULL), +(9148,'DynaFlex','Cargo','Cargo','a6a89f84-dfc6-4bd3-bbfc-a654b73f8bc2','','',NULL), +(9149,'Grin_Rear_Module','Door','UNDEFINED','6191f4c3-1c1a-4fce-8ac9-fc7189157e9a','','',NULL), +(9150,'Seat','Usable','UNDEFINED','07daf792-e09a-48e5-8c30-979a9a487df2','','',NULL), +(9151,'Citadel Legs Earthwork','Armor','Legs','77e6c484-ffb7-45e4-934a-cac4f762b48d','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(9152,'Calister Jacket Westar','Char_Clothing_Torso_1','UNDEFINED','d9ab1663-805a-433c-b6c2-a4223ecba75d','','','Carrying Capacity: 1000 µSCU\n\nThe Calister Jacket by Habidash is made with thick synthetic fabric intended to ensure full body coverage. The cross-body panel that shapes the silhouette of the design provides additional insulation in harsher conditions.'), +(9153,'Seat','SeatAccess','UNDEFINED','e64c3b78-c0e1-4241-b4b6-758bdef0dc0c','','',NULL), +(9154,'SureGrip HV-S3 Tractor Beam','SalvageHead','UNDEFINED','3fb9a8c1-adee-4ace-a90c-17d4340c2b67','','','Manufacturer: Greycat Industrial\nItem Type: Tractor Beam\nMax Angle: 60°\nMax Range: 130 m\nFull Strength Distance: 55 m\n\nThis heavy-duty variant of Greycat’s SureGrip tractor beam sacrifices range in exchange for additional power to handle larger and heavier objects making it an essential tool in a variety of industrial applications.'), +(9155,'Access','SeatAccess','UNDEFINED','ca76f1a1-e2c5-4f73-955f-b4fd373bc989','','',NULL), +(9156,'fruit_tray_2_c','Misc','UNDEFINED','91117325-a0c7-49c5-8e2d-58cb8d0b50e8','','',NULL), +(9157,'Threshold Copperhead Pants','Char_Clothing_Legs','UNDEFINED','9f371afa-ec9f-40d9-a03e-f6efad04a7a9','','','Carrying Capacity: 0.5K µSCU\n\nThe company\'s classic pant, the Threshold line features a glossy faux-organic exterior, an attached belt with real metal buckle, and reinforced knee and shin pads. Additionally, the pants are decorated with non-constructive stitching and include two hip pockets. The Copperhead edition features golden accents on knee and shin pads.'), +(9158,'CNOU_Mustang_Beta_Thruster_Mav_Fixed_01_Down','ManneuverThruster','FixedThruster','fe18f9a7-0679-4802-b559-066e51a6490d','','',NULL), +(9159,'Geist Armor Core Whiteout','Armor','Torso','57423ca0-cb0b-4572-bca0-bec8eb8349eb','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(9160,'Ammonia','Cargo','Cargo','68c9d067-2496-4716-a11d-01ecb7e06a4b','','',NULL), +(9161,'Weapon_Rack_Cz_Firerat_009','Usable','UNDEFINED','0ebb859a-f999-42d2-8d27-7bda326fea3c','','',NULL), +(9162,'Marksman I Missile','Missile','Missile','37a5512d-e5c2-4b41-869d-44cd91d80eeb','','','Manufacturer: Behring\nTracking Signal: Infrared\nSize: 1\n\nBehring\'s Marksman series of proximity missiles has earned as much of a reputation for its ability to track a wide range of heat signatures as it has for its area-effect proximity damage.'), +(9163,'Hammerhead Ship Armor','Armor','Medium','33190167-101c-4693-b21a-b9b4b6bcaa18','','','Hammerhead Ship Armor'), +(9164,'ESPR_Prowler_Component_Housing_Small','Player','UNDEFINED','fccaf1b6-0685-4dd8-afa0-337eef6956c2','','',NULL), +(9165,'UI_EnvironmentScreen_Phoenix_ElevatorPanel_Bottom','StatusScreen','AirlockPart','37a231ea-652a-4e5e-80f7-c413ddeb61c2','','',NULL), +(9166,'Molina Mold Treatment','Cargo','Cargo','c550cc01-9191-4276-8a0b-b421d30094c7','','','A lifesaving treatment for those suffering from exposure to Molina Mold.'), +(9167,'Messhall_Food_Dispenser','Misc','UNDEFINED','46c62626-b513-48f7-ae92-9f7e6f84c143','','',NULL), +(9168,'Internal Tank','FuelTank','Fuel','2fb90572-7f62-4bab-a366-45e9696a9a9b','','',NULL), +(9169,'DockingTube_Fuel_Ports_CNOU_Nomad','DockingCollar','UNDEFINED','4e418849-c8b6-4f92-8a1b-9f75090a26da','','',NULL), +(9170,'CNOU_Nomad_Thruster_Retro_Right','ManneuverThruster','FixedThruster','55d2fa41-e20d-409c-8f90-a2bd94e22994','','',NULL), +(9171,'ORC-mkV Core Orange','Armor','Torso','87bf8c56-c86a-4732-b6b0-51783d174a8c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(9172,'Laranite (Raw)','Cargo','Cargo','c83acb09-a938-44a8-8dea-8c2b87407593','','',NULL), +(9173,'Ready-Up Helmet Olive','Char_Clothing_Hat','UNDEFINED','5b8781c1-3722-4e09-b1f2-24cb4639383b','','','The Ready-Up is a dependable, affordable softshell helmet alternative. Built from space-age plastic, the Ready-Up provides a vacuum-ready seal to keep you breathing for longer.'), +(9174,'Door Control','Door','UNDEFINED','abf90391-2cb2-4b1c-9ff9-78e33ce6fd81','','',NULL), +(9175,'Ketchum Beanie Sienna','Char_Clothing_Hat','UNDEFINED','b62eedeb-b03e-4a76-b115-a40dd33b2c59','','','Complete your cool-weather wardrobe with the classic Ketchum beanie from Alejo Brothers.'), +(9176,'Door Control','Door','UNDEFINED','dd47b13e-db71-4058-9061-4efc4721db85','','',NULL), +(9177,'TMBL_Cyclone_CargoGrid_Main','CargoGrid','UNDEFINED','a65b8b6a-127a-476e-96d4-c438f2e1da07','','',NULL), +(9178,'MISC Freelancer MIS Missile Launcher','MissileLauncher','MissileRack','a89a4b15-3e5a-4338-865f-4647d6d23188','','','MISC Freelancer MIS Missile Launcher'), +(9179,'Hull C Miniature','Misc','UNDEFINED','48e43ad5-a9a8-4b29-b5f0-3656e2ec6f41','','','Hold an iconic hauling ship in the palm of your hand with this Hull C miniature. Takuetsu carefully recreated the Hull C with exacting detail to honor what is believed to be the most common ship in the galaxy.'), +(9180,'Gadget_Cabinet_kegr_fire_extinguisher_NG_Flipped','Usable','UNDEFINED','3d1b7e85-4bee-44a4-a602-2237dc1a2a94','','',NULL), +(9181,'Morningstar Helmet Yellow','Armor','Helmet','ff595abb-14b6-420e-bc59-fea001e59f72','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(9182,'Seat','Usable','UNDEFINED','0205929c-0b77-4d0d-9885-584a385a7459','','',NULL), +(9183,'Gilick Boots Black / Dark Blue','Char_Clothing_Feet','UNDEFINED','125e9b76-2996-454d-86b8-a91062462d41','','','Gain the Octagon advantage with the Gilick boots. Whether on a work site or exploring the wilds, these boots will provide the comfort and support you crave. They feature an all-terrain tread, a supportive inner sole, and adjustable gaiters to cover your ankles and lower legs from the elements.'), +(9184,'util_pyro_bulkhead_lrg_airlock_lghtgrp','Lightgroup','AirlockPart','c4500bb8-554d-4f2d-b5e7-2fe93835794d','','',NULL), +(9185,'ORC-mkV Legs Black','Armor','Legs','d83b35bf-d498-4c13-bac8-b3d81ecabf0a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(9186,'Seat','SeatAccess','UNDEFINED','a2f20983-c624-47ef-99f0-43e71797c056','','',NULL), +(9187,'Reaper V-G Missile','Missile','GroundVehicleMissile','a5ea02e9-fb08-498e-9598-55224dfa4b9c','','','Manufacturer: Talon \nTracking Signal: Electromagnetic \nSize: 5 \n\nThe Reaper strike torpedo features a favorable destructive yield-to-expense ratio and a proven Talon EM tracking suite. Note: This missile may only be launched by ground vehicles.'), +(9188,'Tulsi Jacket Redwood','Char_Clothing_Torso_1','UNDEFINED','9e463af3-c1ed-48af-8827-357bb52997e6','','','Carrying Capacity: 1K µSCU\n\nThis Tulsi jacket features an outer shell designed to cut down on wind shear and an inner shell made to retain warmth without sacrificing comfort. For ease of use, it also features an gentle-glide zipper with a secure top stop and roomy pockets that guarantee you\'ll always have what you need on hand.'), +(9189,'INTK_DRAK_Cutter','FuelIntake','Fuel','de7a70c9-e105-4304-aa7c-9d459b439a88','','',NULL), +(9190,'Pembroke Backpack RSI Edition (Modified)','Armor','Backpack','38ec64d5-e99f-447b-899f-cb5392b3a236','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nThis version of Caldera\'s Pembroke backpack has been modified from its original form. Designed to extend the limits of Human endurance, the Pembroke RSI Edition was built to withstand the extreme heat of inhospitable high temperature environments. Based off of Caldera\'s best-in-class exploration armor platform, an advanced sensor suite intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. Featuring a spacious backpack, the special RSI Edition of the Pembroke ensures those seeking to cross bold new horizons do so in style.'), +(9191,'Ati Jacket Seagreen','Char_Clothing_Torso_1','UNDEFINED','d7091a0b-a443-4424-8c29-1a5615b35abb','','','Carrying Capacity: 2K µSCU\n\nFiore\'s is a modern update of traditional Earth design. Slim tailoring, a high collar, and striking asymmetrical design make this overcoat a must-have item for any wardrobe.'), +(9192,'Osoian Hides','Cargo','Cargo','2c97c1e9-62a2-4478-bb80-a81b75d3bb4a','','',NULL), +(9193,'Hardy Boots','Char_Clothing_Feet','UNDEFINED','5825831c-7158-4300-81da-6520e384bd06','','','Walk to the ends of the earth with DMC\'s Hardy line of rugged all-terrain boots. Featuring increased ankle support and waterproof materials, you can trudge through desert or mountain in comfort.'), +(9194,'Coramor \'54 Coin','Misc','Utility','8f5f5980-f254-4904-b2d6-be203a91e870','','','Celebrate 2954\'s Coramor holiday with this golden coin featuring pink, hearts on one face and two spacefaring lovers on the other, promising that not even the vastness of space can keep love apart.'), +(9195,'Aluminum (Ore)','Cargo','Cargo','2aa412d1-edb0-4092-a57d-247c413ca485','','',NULL), +(9196,'Carryable_1H_CY_tool_allenkey_1_a','Misc','UNDEFINED','4ed24698-6933-46cb-96fb-4e258d1256af','','',NULL), +(9197,'PSX Pistol Case','Misc','UNDEFINED','1bb7e9ae-182a-45a1-a39b-145cdc34b66f','','','Remain discreet yet ready with this sleek case capable of holding a pistol and several attachments. It features a hard outer shell and an inside lined with a special, rigid polyurethane foam designed to securely hold a wide variety of attachments.'), +(9198,'Seat','SeatAccess','UNDEFINED','ba980fd3-9b58-4d14-85cb-763102cdd82b','','',NULL), +(9199,'Methane','Cargo','Cargo','8c4b1b1d-f326-4101-b0d5-23aee46657b5','','',NULL), +(9200,'Odyssey II Helmet Obsidian','Armor','Helmet','9e4d6d1d-e19d-4bfb-9f2b-cded75235acd','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up. This special Obsidian variant features a darkened visor for anyone looking to maintain their anonymity.'), +(9201,'Prospector Polar Livery','Paints','UNDEFINED','521005cf-8a0c-41ea-ae2a-5894e3636aae','','','Modify your Prospector with this white and grey livery specifically designed for the 2950 IAE event on microTech.'), +(9202,'RD-1 Jaeger (1x Red Dot)','WeaponAttachment','IronSight','b886d522-04ca-493e-9373-daa8a4f8066e','','','Manufacturer: Klaus & Werner\nType: Red Dot\nAttachment Point: Optic\nMagnification: 1x - 3x\nAim Time: +5%\nParallax: Low\nSize: 1\n\nThe RD-1 Jaeger\'s simple and functional design provides pinpoint accuracy and rapid target acquisition in close-quarters combat.'), +(9203,'TRGT. STATUS','Seat','UNDEFINED','b698de2d-5d19-470d-a7e4-9ac492594b16','','',NULL), +(9204,'Inquisitor Core Imperial','Armor','Torso','485a2685-0e3c-4840-89d1-84c3432517a4','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(9205,'Taranite','Cargo','Cargo','b449f80b-51d7-4e0f-94f4-e61bb9f2f6a6','','',NULL), +(9206,'Cutlass Saurian Livery','Paints','UNDEFINED','be30eb09-9de0-4806-a491-68d74e22633a','','','Enwrap your Cutlass in the Saurian livery, which blends several shades of dark green.'), +(9207,'RS1 Odysey Spacesuits','Cargo','Cargo','864432a2-8b06-42a6-afc4-17225948bb22','','',NULL), +(9208,'INTK_GLSN_Shiv','FuelIntake','Fuel','ce95a43d-5ca5-402d-a1be-f9db43f2a644','','',NULL), +(9209,'Weapon Rack','Usable','UNDEFINED','cfc27314-3771-4b09-8ffc-d31103293091','','',NULL), +(9210,'XNAA_SanTokYai_Thruster_Mav_Main','ManneuverThruster','FlexThruster','0026f271-fbd7-48ec-8dd7-e7eb51abdb62','','',NULL), +(9211,'Cerrado Boots Wood','Char_Clothing_Feet','UNDEFINED','93436f11-e667-4f23-96c8-77f0f72a1017','','','These trail-rated Cerrado Boots from R6 Pro are comfortable, waterproof, and built to last. The tall cuff and lacing at the top provide a seamless combination of exceptional ankle support and the stability.'), +(9212,'Construction Salvage','Cargo','Cargo','2ce8aed9-0123-4e2a-85c4-faa306b069f8','','','Can be processed at refineries into Construction Material.'), +(9213,'Parallax \"GCD-Army\" Rifle','Weapon','Medium','b6dd5e0a-202c-4385-88f7-284583cd6528','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Assault Rifle\nClass: Energy (Electron)\n\nBattery Size: 80\nRate of Fire: 200 rpm - Beam\nEffective Range: 30 m\n\nAttachments: Optics (S2), Underbarrel (S2)\n\nWith the Parallax, VOLT offers consumers a rugged assault rifle design with features like a larger-than-average battery and a unique actuator that enables the weapon to scale up into a persistent beam as it fires.\n\nThis \"GCD-Army\" edition has yellow wiring and is decorated with a dark and light gray digital camo pattern.'), +(9214,'Venture Undersuit Pink/Black','Armor','Undersuit','064c7e7a-f71a-43db-b820-425a1f24ba1e','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(9215,'Katla Mask Green','Char_Clothing_Hat','UNDEFINED','cd0972ef-156d-4be6-9037-d8ded9810855','','','The Katla mask provides full face coverage from the elements or prying eyes. Oversized eyes provide a wide field of vision and a built-in air filter helps you breathe easy. Please note that this mask is not space-rated and should only be worn in naturally breathable environs.'), +(9216,'GammaMax','PowerPlant','Power','7efda460-54a9-4447-b74d-eaa25ea882cb','','','Item Type: Power Plant\nManufacturer: Tyler Design & Tech\nSize: 2\nGrade: B\nClass: Stealth\n\nA complete overhaul of the materials in the heatsinks dramatically decreased the emission level of the GammaMax. Few medium power plants run as quiet at the same price point of this one from Tyler Design & Tech.'), +(9217,'Overlord Helmet Flashback','Armor','Helmet','534a5a20-5121-404e-9209-f63d12d515bb','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord helmet delivers heavy armor protection while using a special lightweight composite plating that makes it feel like nothing\'s there. Repurposed ocular sensors normally found on ships keep you attuned to your surroundings and, when worn with the full Overlord suit, the high neck collar provides the helmet extra support and protection. Visor is AR crosshair compatible.\n\nThe Flashback edition is predominately white with orange accents and black joints.'), +(9218,'WeaponMount_Gun_S1_MISC_Starlancer_TAC_Left','WeaponMount','WeaponControl','92b15834-7f2b-4cdd-aec0-c6bee54f1131','','',NULL), +(9219,'Seat','Usable','UNDEFINED','56392f6a-2bf0-41a9-933b-55d59dd4bdf7','','',NULL), +(9220,'Door Control','ControlPanel','DoorPart','ec98efd0-c376-4f8a-a2fb-55a74164f04a','','',NULL), +(9221,'H_Dashboard_Projector_HUD_DRAK_Corsair','Display','UNDEFINED','6063142d-8c90-40d5-a70d-3e5d1b2046c9','','',NULL), +(9222,'ORC-mkV Legs Twilight','Armor','Legs','351dfd89-9884-4489-8600-30a9208a74ed','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(9223,'Mug','Drink','UNDEFINED','40e4cfd1-bf80-419e-afcb-422820c8e040','','','A small, handled drinking vessel made from insulating ceramic to help keep bevarages warm. Features a unique Orison theme.'), +(9224,'Carnifex Armor Legs Brassy','Armor','Legs','00126e44-fac3-45a6-b2c4-9bc584e1d0ef','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -5 / 35 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nThis homemade armor provides a marginal amount of protection but maximum attitude. It\'s aggressively styled with skulls and other intimidating accessories associated with those living on the edge. Wearing such a distinct look may either keep people away... or draw them to you.\n\nThe Brassy version features white coloring with bronze accents.'), +(9225,'ControlPanel_LightSwitch_ANVL','ControlPanel','DoorPart','99c123b6-3fd2-41e7-81ff-6f85e9158935','','',NULL), +(9226,'Vestal Water','Drink','Bottle','6d38f57a-deab-4449-8ead-3ec476811eb2','','','HEI: 44\nEffect: Hydrating\n\nSourced from carefully selected water-rich asteroids, this crystalline pure water contains naturally occurring minerals for a smooth, refreshing taste that makes it a perfect choice for all your hydration needs.'), +(9227,'Devastator \"Midnight\" Shotgun','Weapon','Medium','9752372c-6e3f-46f5-9cd8-6d3c64561097','','','Manufacturer: Kastak Arms\nItem Type: Shotgun\nClass: Energy (Plasma)\n\nBattery Size: 12\nRate Of Fire: 60 rpm\nEffective Range: 20 m\n\nAttachments: Optics (S1), Barrel (S3), Underbarrel (S2)\n\nKastak Arms’ Devastator is a pump-action plasma shotgun capable of delivering sustained medium range, high-impact plasma blasts for close combat, room clearances and other combat operations. If the situation requires a high-power presence, look no further than the Devastator.'), +(9228,'Station','SeatAccess','UNDEFINED','1889c04b-ee62-4d1d-ace0-5de9aeac3234','','',NULL), +(9229,'Stratus Pants Teal','Char_Clothing_Legs','UNDEFINED','5259937d-54bf-454c-9fa5-44ff6bddaeb8','','','Carrying Capacity: 0.5K µSCU\n\nCasual comfort that you can wear anywhere. The Stratus pants feature a soft comfort waistband that perfectly embraces your hips, and distinct reinforced paneling to ensure long wear and supreme style.'), +(9230,'Lycara','Cargo','Cargo','17a5663d-3cf9-49a2-92af-2db274ea1eb8','','',NULL), +(9231,'SHIELDS','ShieldController','UNDEFINED','626f4698-0935-40ba-b05a-db638f81199a','','',NULL), +(9232,'INTK_ANVL_Carrack','FuelIntake','Fuel','b494b197-5525-4317-9ff7-969b246ae94e','','',NULL), +(9233,'Door Control','Door','UNDEFINED','50bd54d7-4258-4ac2-90f5-bc821756fe6a','','',NULL), +(9234,'Odyssey II Helmet Green','Armor','Helmet','7f7c93da-3b89-45f0-9f46-48af149a3668','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(9235,'MISC_Starfarer_Thruster_Retro','ManneuverThruster','FixedThruster','cae171b3-d2e4-4c51-975c-89b2c29c682f','','',NULL), +(9236,'Aegis Eclipse - Noise Launcher','WeaponDefensive','CountermeasureLauncher','ed61e07d-9582-4b04-9304-7fc5aed33e0a','','','Aegis Eclipse - Noise Launcher'), +(9237,'Zeus Hurston Livery','Paints','UNDEFINED','09cfd63f-25e8-46cb-ba5f-843faf4f1c33','','','The Hurston livery for the Zeus features the company\'s logo atop a grey base paint with yellow highlights.'), +(9238,'ANVL_Carrack_Thruster_Main_Small','MainThruster','FixedThruster','f82646a8-8eb7-4b2a-a1ad-0225972117ac','','',NULL), +(9239,'Seat','Usable','UNDEFINED','68c4b4bd-ce65-4cdf-8cbc-2c5dae9ccd9a','','',NULL), +(9240,'Skellig Pants Silver','Char_Clothing_Legs','UNDEFINED','dd41b53e-03fa-4084-ae19-d17b045dacdc','','','Carrying Capacity: 2K µSCU\n\nGet down and dirty with CBD\'s Skellig-wear. These utility pants feature durable vinyl-composite material with reinforced ridged kneepads.'), +(9241,'Adroit Gloves Sage','Char_Clothing_Hands','UNDEFINED','32d430f2-8135-491f-9b8c-1a4344269e4c','','','Lightweight, quick-drying, and durable, the Adroit fingerless gloves keep your hands warm while giving your fingers the freedom to perform delicate work. The material on the wrist extends to meet long-sleeved apparel, cutting down on places that might be exposed to the elements.'), +(9242,'Counter_Bottle_Pickup','Misc','UNDEFINED','69aadf97-dec6-465a-9b27-664697949354','','',NULL), +(9243,'TRGT. STATUS','Seat','UNDEFINED','5856dfa0-ad96-44d9-ba7b-fe78386a04eb','','',NULL), +(9244,'Distilled Spirits','Cargo','Cargo','003aeb5a-acfe-4202-8a31-b2d567e479d6','','',NULL), +(9245,'Idris Commando Camo Livery','Paints','UNDEFINED','704a0768-3c0d-4751-80ba-139afe695ac9','','','The Commando Camo livery brings a classic green and tan camo look to the Idris.'), +(9246,'Soap','Misc','UNDEFINED','28d6c557-0732-4471-b6e0-c145c972aec3','','',NULL), +(9247,'Door Control','Door','UNDEFINED','5959fabe-0575-4133-a796-982f1534337c','','',NULL), +(9248,'sandwich_triangle_1_box_shop_1x3_a','ShopDisplay','Default','29f86e74-daf3-49c7-8bf4-c279bf78a847','','',NULL), +(9249,'Gallant \"Boneyard\" Rifle','Weapon','Medium','35bbb045-3b35-47a9-a603-42cce6a804b4','','','Manufacturer: Klaus & Werner\nItem Type: Assault Rifle\nClass: Energy (Laser)\n\nBattery Size: 45\nRate Of Fire: 450 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nDependable assault weapons never go out of style. Klaus & Werner maintains that tradition by unveiling the Gallant. This energy-based assault rifle is capable of providing accurate and sustained fire at targets up to medium range, while its high-capacity power system allows operators to fire considerably more shots per battery.'), +(9250,'Aloprat Skewer','Food','Consumable','40e197c6-707b-4d71-9d70-0bfaf46933a9','','','NDR: 25\nEffects: Immune Suppressing\n\nAloprat is a hearty species of rodent found across Human occupied space, and even can survive aboard space stations and ships eating a variety of food and scraps. This aloprat has been skewered and roasted rotisserie style for crisp skin and gamey, fatty meat.'), +(9251,'Manned Turret','TurretBase','MannedTurret','c283366e-e76a-4127-90d1-ee80cd296c37','','',NULL), +(9252,'Roughneck Pants','Char_Clothing_Legs','UNDEFINED','53dd1aa3-74c4-487f-90ba-7c2c8eeb6abb','','','Carrying Capacity: 2K µSCU\n\nDMC\'s Roughneck pants are low cut for maximum comfort with extra size pockets and built to weather the storms of life.'), +(9253,'MissileRack_Small','Usable','UNDEFINED','e043b692-f5e6-4fe4-b4b2-60d5b44ab219','','',NULL), +(9254,'ANVL_Terrapin_Thruster_Main_Medic','MainThruster','FixedThruster','781e7986-a7cb-4e5e-baeb-cb52b8485736','','',NULL), +(9255,'AEGS_Javelin_CargoGrid_M','CargoGrid','UNDEFINED','a095d119-b667-4dda-a04e-5972e85684df','','',NULL), +(9256,'Seat','Usable','UNDEFINED','df8b81f8-1c2f-4f17-b349-266b11bcd41a','','',NULL), +(9257,'Auditor Shirt Covalex Edition','Char_Clothing_Torso_1','UNDEFINED','0d515e89-55bc-4e42-a103-cf11e9c5962c','','','Octagon\'s Auditor line of shirts offers the ultimate in urban styling. The simple short-sleeve, button-down shirts feature an accent color and a collar that matches the modern fashion. Octagon\'s patented altsilk fabric allows for high breathability and a full range of flexible motion.'), +(9258,'Bed_ORIG_600i_Crew_D','Usable','UNDEFINED','f0c09148-1922-4b43-99c8-150d126b582f','','',NULL), +(9259,'Weapon_Rack_ANVL_Paladin_5_Slot','Usable','UNDEFINED','ae13d73a-f425-458f-be34-39294e06282e','','',NULL), +(9260,'Manned Turret','TurretBase','MannedTurret','5df90b86-bfdd-40ec-8041-88de76a04434','','',NULL), +(9261,'Zip','Cargo','Cargo','791532d4-169e-4eee-a7b3-ad5a0e5818b5','','',NULL), +(9262,'Bed','Seat','UNDEFINED','aece4fb0-b83e-437a-b0f5-8e1c84e0403f','','',NULL), +(9263,'RSI_Polaris_rec_table','Usable','UNDEFINED','cfd9171c-9fe7-47db-a6d7-dc494c5a6aae','','',NULL), +(9264,'ANVL_Terrapin_Thruster_Retro_Medic','ManneuverThruster','FixedThruster','681f75b2-5bd3-4424-ba6c-792a5fe6e34d','','',NULL), +(9265,'Weapon Rack','Usable','UNDEFINED','58f7194c-b042-407b-87ed-8da98f2c5679','','',NULL), +(9266,'HRST_LaserRepeater_PowerArray_S2','WeaponAttachment','PowerArray','851c418c-daef-4a75-8075-355dc5ec102a','','',NULL), +(9267,'Internal Tank','FuelTank','Fuel','ecc91543-dd12-458c-bf28-b893cba1e316','','',NULL), +(9268,'Nova Gunmetal Livery','Paints','UNDEFINED','d12dcd64-aaf5-485b-bda6-92ac337740a8','','','Featuring a metallic silver paint scheme, the Nova Gunmetal livery offers a devastating combination of weaponry to eliminate threats on the ground and in the air.'), +(9269,'Human Food Bars','Cargo','Cargo','53b36fcd-3b37-4056-8d9e-b9b63869c3a2','','',NULL), +(9270,'Seat','SeatAccess','UNDEFINED','4c192a7f-b6a5-40dc-8338-0e41c70ce232','','',NULL), +(9271,'f_human_mannequin_deckcrew_light','ShopDisplay','UNDEFINED','ae0cfb81-b2fa-4510-b78e-76149318bdac','','',NULL), +(9272,'Weapon Rack','Usable','UNDEFINED','5214952d-2174-45a2-a6e0-365e38f7ef69','','',NULL), +(9273,'Amaris Shirt Falstaff','Char_Clothing_Torso_0','UNDEFINED','9573db27-601e-4c9e-8c94-f56929773a85','','','The rugged Amaris Shirt is a breathable long-sleeve shirt reinforced by raised fabric on the shoulders to create an elegant but industrial look.'), +(9274,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','27b8828e-9376-4967-ab94-81bf8417f11d','','','Aegis Gladius - Decoy Launcher'), +(9275,'Recycled Material Composite','Cargo','Cargo','be014428-d35c-4f27-9660-250b5d485966','','',NULL), +(9276,'Radar_Display_Screen_BG','Display','UNDEFINED','96a3dcbf-7146-4c3c-b7fd-7aa2d9636e3c','','',NULL), +(9277,'AImodule_Cargo','AIModule','UNDEFINED','dc4d827c-5c7c-4582-886b-6b6833d85bf0','','',NULL), +(9278,'Selby Jacket Black','Char_Clothing_Torso_1','UNDEFINED','34f855f7-5055-4853-aa09-769390bfcf05','','','Carrying Capacity: 1K µSCU\n\nLook as good as you feel with this trendy jacket from DMC. The Selby also features a soft inner lining to provide extra comfort and insulation.\n\nWomen\'s sizes currently out of stock.'), +(9279,'Citadel Arms Outcrop','Armor','Arms','6c139104-ea89-41cb-8347-0922e6ed7bec','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(9280,'CRUS_Spirit_RADR_Display','Display','UNDEFINED','6700c856-16b2-44ee-8c00-47793bda4922','','',NULL), +(9281,'Seat','SeatAccess','UNDEFINED','8f00c5af-723f-4d55-bae6-d4b8081bd107','','',NULL), +(9282,'lt_crate_dry_1_0125x0125x0125_a','Cargo','UNDEFINED','7c322326-ad2b-4171-8c04-9a571caa093f','','',NULL), +(9283,'utensil_tray_1_food_a_stacked','Misc','UNDEFINED','283ad519-967b-4050-9a28-e2cc5dbf5ab8','','',NULL), +(9284,'Stash','Misc','UNDEFINED','734a71b5-5c4a-48df-bfe7-0fe03cb9fa68','','','A hidden cache of various items.'), +(9285,'Morozov-SH Arms Terrene','Armor','Arms','85c7536f-7625-40bc-9ce5-f87e971fb088','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(9286,'Lynx Arms Orange','Armor','Arms','ae3019a1-4f0f-4a41-8451-8b6b84c632e8','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(9287,'P8-SC \"Boneyard\" SMG','Weapon','Medium','a52fb950-f3e6-4353-accf-ccb4324a07dd','','','Manufacturer: Behring\nItem Type: SMG\nClass: Ballistic\n\nMagazine Size: 45\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nWhen the top fighting force in the universe chooses a weapon as their standard, it pays to stand up and take notice. The Behring-crafted P8-SC has been the ballistic submachine gun of choice for the UEE Marines since it first came off the production line, but since then, many have come to rely on this weapon for their own personal safety and protection.'), +(9288,'Venator Boots Grime Blue','Char_Clothing_Feet','UNDEFINED','76c84396-c1e8-4ac7-b4d7-6dbeb8d2ca2d','','','Whether you need to run or stand your ground, these rugged, lightweight all-terrain boots with reinforced uppers and acid-resistant tru-grip soles are the perfect choice. The Grime version is dyed a dusky blue to keep you subtle, but not unsightly.'), +(9289,'Torite','Cargo','Cargo','fe9bd2da-3c57-46c3-a73f-6ce01fce9516','','',NULL), +(9290,'ANVL_Pisces_C8R_Dashboard_Pilot','SeatDashboard','UNDEFINED','0ab675af-a089-48f9-8bd3-d28b4e82134d','','',NULL), +(9291,'Ati Jacket Twilight','Char_Clothing_Torso_1','UNDEFINED','63b9b570-863e-4cda-aeda-a8ff2e579f92','','','Carrying Capacity: 2K µSCU\n\nFiore\'s is a modern update of traditional Earth design. Slim tailoring, a high collar, and striking asymmetrical design make this overcoat a must-have item for any wardrobe.'), +(9292,'Utensil_Plate_Steak','Misc','UNDEFINED','705bee28-5632-4dd0-a660-f00817e3952f','','',NULL), +(9293,'5SA \'Rhada\'','Shield','UNDEFINED','9d309719-800c-4d42-946e-fa6c240bc2df','','','Item Type: Shield Generator\nManufacturer: Behring\nSize: 1\nGrade: C\nClass: Civilian\n\nThe 5SA ‘Rhada’ delivers Behring’s expert engineering and trusted performance to make it a worthy shield generator for any commercial ship.'), +(9294,'Custodian \"CitizenCon 2947\" SMG','Weapon','Medium','4fd568b4-8e53-48f9-bb74-bfee408909dd','','','Manufacturer: Kastak Arms\nItem Type: SMG\nClass: Energy (Laser)\n\nBattery Size: 60\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe Custodian SMG from Kastak Arms focuses on a high rate of fire over damage and accuracy making it an ideal choice for sweeping through tight environments and close quarters combat.'), +(9295,'GUARD','Shield','UNDEFINED','87710dba-dd06-41b4-974e-475ee7d36055','','','Item Type: Shield Generator\nManufacturer: Seal Corporation\nSize: 3\nGrade: C\nClass: Civilian\n\nDon’t be afraid to go up against the unknown with Seal Corp’s GUARD. This shield generator balances performance, durability, and stealth to allow the user to utilize the shield in whatever way suits them best.'), +(9296,'DockingTube_Fuel_Ports_RSI_Polaris','DockingCollar','UNDEFINED','6c60998d-eac4-4f31-b4c3-3ac2878a6e27','','',NULL), +(9297,'Vacuums Kill T-Shirt','Char_Clothing_Torso_0','UNDEFINED','8d29adb6-6998-4c92-b67f-8911fac9742e','','','This short sleeve shirt features the iconic warning sign found near airlocks across the universe. Wear the Vacuums Kill shirt to remind everyone of the horrors that happens when one removes their helmet in the vacuum of space.'), +(9298,'Deo Shirt Sienna','Char_Clothing_Torso_0','UNDEFINED','7da72e2d-9fc1-4514-a0e6-54d66aee83f5','','','Fiore\'s Deo is a slim cut work shirt that\'s as practical as it is timeless. Featuring a high collar and metal neck clasp, the Deo has been a mainstay in business attire.\n\nWomen\'s sizes currently out of stock.'), +(9299,'Railing_Straight_4m_Lowtech_Open','Usable','UNDEFINED','4fa0246b-ccdf-48dc-969f-36a4673447af','','',NULL), +(9300,'Internal Tank','FuelTank','Fuel','e88281d2-def8-4137-be27-5e9caaef6bc7','','',NULL), +(9301,'Counter_Shop_Casaba','Usable','UNDEFINED','53f3ecff-e2ec-4411-abf1-5319efb0025c','','',NULL), +(9302,'Carryable_1H_CY_weight_dumbbell_1_3kg_c','Misc','UNDEFINED','0918bc81-39a2-44e8-9727-34bd9a66252f','','',NULL), +(9303,'ESPR_BallisticCannon_PowerArray_S2','WeaponAttachment','PowerArray','d8a9ff5f-555f-4245-b08a-2e8597d3c396','','',NULL), +(9304,'MSD-322 Missile Rack','MissileLauncher','MissileRack','27b1b667-7374-4f05-8a47-9386d14108b3','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 3\nMissiles: 2xS2\n\nBehring’s MSD-322 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 3 hardpoint for the reliable and effective launch of two S2 missiles.'), +(9305,'Jumping Limes','Cargo','Cargo','10398945-6f3a-47e9-a13f-da323bce9a5d','','',NULL), +(9306,'Door_ChipReader_Level_2','Door','UNDEFINED','a4ff74dd-d03c-4c00-a8bf-1ab5b7da3751','','',NULL), +(9307,'Bed','Usable','UNDEFINED','e49573ca-3fd4-4ea9-9faa-2a3029a51641','','',NULL), +(9308,'Avenger Stalker Standard Flight Blade','FlightController','UNDEFINED','0306a3b9-f4d7-482a-a1ad-81542331067f','','','Manufacturer: Aegis Dynamics\nType: Flight Blade\n\nThis is the standard issue flight blade for the Aegis Avenger Stalker.'), +(9309,'H_Dashboard_Projector_HUD_RSI_Zeus','Display','UNDEFINED','ad990b37-b69a-4aeb-9b7f-2f86d9e2cd2d','','',NULL), +(9310,'Aurora Mk I Green and Gold Livery','Paints','UNDEFINED','69cd6d0b-3e05-4253-90ac-877046de882b','','','Customize your Aurora with this green and gold livery.'), +(9311,'satellite_power_plant_test','PowerPlant','Power','d3f6c888-60a6-4b3f-abf0-d6ccae0d0d8b','','',NULL), +(9312,'Remote Turret','Turret','GunTurret','09233455-5748-4ea3-9490-f2b7c02694c8','','','Remote Turret'), +(9313,'Aphorite','Cargo','Cargo','23006dfc-aef1-45c8-8461-72bd5064526f','','',NULL), +(9314,'Pite','Char_Head_Piercings','UNDEFINED','5e13ccbe-b5aa-4af5-925a-bcea0dad9652','','',NULL), +(9315,'Flight Blade','FlightController','UNDEFINED','04036508-5a31-440e-a5cd-288748d405e0','','',NULL), +(9316,'stand_shop_medium_b_Cooler','ShopDisplay','UNDEFINED','c2a9e6d0-f322-4dfd-a4ec-3b147ebaf56f','','',NULL), +(9317,'Elevator Control','Elevator','UNDEFINED','b3fe37f0-c7dc-4d7f-9b55-45484293ba72','','',NULL), +(9318,'Maintenance_Workzone_Inspect_DeckCrew','Usable','UNDEFINED','ca1c6436-5f7e-4efb-99c4-5041ea4e8575','','',NULL), +(9319,'Sabine Undersuit','Armor','Undersuit','b0272a6d-67a4-4838-a3e4-1abcef0e4476','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThe Sabine embodies the advanced look and performance you expect from Quirinus Tech. This cutting edge undersuit integrates strong, yet flexible microweaves with strategically placed plating to provide protection while remaining lightweight. Featuring a sleek design, the Sabine undersuit will ensure you stay safe and stylish no matter the path ahead.'), +(9320,'Dream Wishes T-Shirt','Char_Clothing_Torso_0','UNDEFINED','eda71787-41d7-49b3-8a7a-bd7ddffa2d37','','','The Dream Wishes t-shirt was proudly produced by a Banu souli to celebrate the magical world of Human dreams.'), +(9321,'DockingTube_Fuel_Ports_MISC_Freelancer_MAX','DockingCollar','UNDEFINED','482b8d3b-6826-4684-b17f-0ea4a562f157','','',NULL), +(9322,'Warden Backpack Crimson Camo','Armor','Backpack','66b4cbc7-3e47-4902-a30d-ad502259bf80','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nThis hard backpack from Virgil, Ltd. makes travel easy. Whether you need a place to carry your weapons or you\'ve decided to bring some extra rations along for a long journey, this backpack was designed to handle any occasion. The interior features a generous, closeable pocket to keep your small items from falling out of place.\n\nThis edition features a bold red digital camo pattern.'), +(9323,'Handmade Glazed Mug','Drink','UNDEFINED','0a8302c4-881e-4492-b8f5-f38341e86660','','','This slab-built pottery mug with ridged detailing was crafted by hand and finished with a speckled glaze.'), +(9324,'Door Control','ControlPanel','DoorPart','f0c5273a-0e7b-4b08-9b55-2afa81b61c51','','',NULL), +(9325,'un_crate_mining_1_0125x0125x0125_a','Cargo','UNDEFINED','ebe687c5-72df-4ba5-8827-09f99da031e4','','',NULL), +(9326,'Giocoso Helmet Ivory','Armor','Helmet','d2585ecb-f52e-43fd-b4dd-3cf2bd09ca9a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nInspired by the sleek stylings of the 100 series, the Giocoso is a helmet worthy of Origin Jumpworks. It features a wide face shield to provide excellent peripheral vision and a special internal air flow system to dissipate heat and humidity. In a nod to the 100 series, the back of the helmet slyly integrates the iconic shape language of the ship\'s tail into the form.'), +(9327,'Martel Dress','Char_Clothing_Torso_1','UNDEFINED','3166a12f-e35d-42b3-b54e-77aeb4f5abca','','','Carrying Capacity: 2K µSCU\n\nThis open-front grey dress from Dyna Lei reveals a draped, checkered layer offset by gold trim beneath its wide cinched belt. The finished look is paired with black bodysuit and a fetching handkerchief to complete the ensemble.\n\nMen\'s sizes currently not available.'), +(9328,'MISC_Hull_C_FoldingStrut_1A','Cargo','UNDEFINED','55958c2e-8739-45c6-8ebf-6519d06aae4b','','',NULL), +(9329,'Freelancer Ship Armor','Armor','Medium','e46c5f21-b77e-4e74-b18e-861ea8836ab0','','','Freelancer Ship Armor'), +(9330,'Landlite Boots Aqua','Char_Clothing_Feet','UNDEFINED','6d997d11-aea4-4341-8f30-9d4cdb7d2864','','','Who says work boots can\'t be comfortable? Grindstone\'s Landlite boots are built with a breathable synth-leather material to keep your feet dry, a contoured, memory footbed, and a slip-resistant outsole, making it perfect for whatever worksite you throw at it.'), +(9331,'Container','Container','UNDEFINED','a9aadbe5-089e-44f4-872c-dd9bb0da2da3','','',NULL), +(9332,'Prism \"Hazard\" Laser Shotgun','Weapon','Medium','7221fd5d-2ac3-4dd9-a735-0b5fafe7f587','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Shotgun\nClass: Energy (Laser)\n \nBattery Size: 20\nRate of Fire: 200 - 450 rpm\nEffective Range: 10m\n \nAttachments: Optics (S2), Underbarrel (S2)\n \nFiring powerful shortrange bursts of energy, engineers at Verified Offworld Laser Technologies have developed the Prism laser shotgun so that as the weapon\'s heat-levels rise, the pellets begin fusing together into slug-like projectiles that inflict higher damage on targets. The Hazard Edition is safety yellow with diagonal black stripes.'), +(9333,'Door','Door','UNDEFINED','cca6ad7b-dc66-4f8a-ac50-186bcb917887','','',NULL), +(9334,'Internal Tank','QuantumFuelTank','QuantumFuel','74b1992c-bea5-4522-aeb4-c295a56f0a5b','','',NULL), +(9335,'Deck Cap','Misc','UNDEFINED','657aa0be-b784-4e4e-b380-418c3f6ad9c2','','',NULL), +(9336,'Door Control','Door','UNDEFINED','b534ae6f-f887-478e-855a-bedd649b460d','','',NULL), +(9337,'SHIELDS','ShieldController','UNDEFINED','615b9b7a-bac5-441d-98b1-857cfa7562c9','','',NULL), +(9338,'Carryable_1H_CY_weight_dumbbell_1_10kg_c','Misc','UNDEFINED','586e24a0-ae52-4d80-ace4-be3cd03d284e','','',NULL), +(9339,'AEGS_Redeemer_Blankingplate_LT','Misc','UNDEFINED','7df0014e-638f-489f-8a42-bdc270f77d7e','','',NULL), +(9340,'Year of the Rooster Envelope','Cargo','Cargo','d687141e-094b-4186-b08e-4e91a91ca06a','','',NULL), +(9341,'Neograph','Cargo','Cargo','7627deb3-6381-4368-85f3-d6890d1ac91a','','',NULL), +(9342,'Hawk Aspire Livery','Paints','UNDEFINED','208ed779-ae52-4b4c-a366-70cb31ee9836','','','With the Aspire livery, blue and white combine to evoke both the colors and frigid temperatures of New Babbage. In honor of the landing zone that inspired it, the livery also features a depiction of the Aspire Grand building that dominates the city\'s skyline.'), +(9343,'Inquisitor Legs Black','Armor','Legs','3ce9726c-05ed-4ad4-8b6e-50768040434f','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(9344,'FullFrost','Cooler','UNDEFINED','572580a2-c164-4f99-beaa-d71cd1bd99a7','','','Item Type: Cooler\nManufacturer: Lightning Power Ltd.\nSize: 2\nGrade: B\nClass: Civilian\n\nProper thermal management and heat distribution is a concern for any pilot who cares about the longevity and performance of their ship. Now you can fly easy knowing you have the advanced FullFrost cooler by Lightning Power aboard.'), +(9345,'Flight Blade','FlightController','UNDEFINED','86a09bf8-7c2b-4e3d-88a7-01b70e3188ef','','',NULL), +(9346,'Li-Tok Boots Purple','Char_Clothing_Feet','UNDEFINED','b5a80934-e847-435c-b8e8-a0a270d7ab05','','','Stylish yet rugged, NorthStar\'s Li-Tok boots are made from a composite nylon fabric, vulcanized rubber grips that hold fast to a variety of surfaces, and reinforced ankle support making these perfect for hanging out or on the job.\n\nWomen\'s sizes currently out of stock.'), +(9347,'Quartz \"True Valor\" Energy SMG','Weapon','Medium','f3188dc4-264e-433e-93dc-e244e0e3ddf1','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: SMG\nClass: Energy (Electron)\n\nBattery Size: 45\nRate of Fire: Beam\nEffective Range: 15-20 m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nManufacturer VOLT\'s Quartz SMG utilizes exciting new weapon technology that fires a short range beam that fractures into multiple beams the longer it fires, making it an extremely effective close quarter weapon.\n\nThe dynamically designed \"True Valor\" edition features a blue base with a progression of grey, white, and yellow patterns from muzzle to stock.'), +(9348,'Flight Blade','FlightController','UNDEFINED','e6d86411-c51c-4611-b44d-4d23d92b367f','','',NULL), +(9349,'Brocius Waist Apron Daylight','Char_Clothing_Torso_1','UNDEFINED','e7ca1dbc-d84f-4aac-b66a-b2f03c61fd02','','','Habidash\'s Brocius Waist Apron features a quilted front panel paired with side skirting to protect the wearer from any overspills or other dirtying work while still providing freedom of movement.'), +(9350,'Mustang Guardian Livery','Paints','UNDEFINED','70f40ea0-7ddb-4333-80f9-e5a764254a9f','','','A unique ship deserves an equally bold look, so outfit your Mustang in yellow with the Guardian livery.'), +(9351,'BANU_TachyonCannon_Ventilation_S3','WeaponAttachment','Ventilation','d4174667-0469-45eb-be45-da6a1069854f','','',NULL), +(9352,'ASAD_DistortionRepeater_FiringMechanism_S1','WeaponAttachment','FiringMechanism','62b2c856-bc5e-4123-8896-5d2b0b64a7bd','','',NULL), +(9353,'TrueDef-Pro Arms Black/White/Violet','Armor','Arms','31134f3e-c658-4699-9dd9-7861611f7f72','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(9354,'Carryable_TBO_FL_32SCU_Commodity_ProcessedGoods_AceInterceptorHelmet','Cargo','Cargo','5d11ccf4-120b-48ff-922c-ab376c95f614','','',NULL), +(9355,'Book','Misc','UNDEFINED','c2f154cd-19d1-4ae6-ba49-0d739984f880','','',NULL), +(9356,'FarSight \"Golden Blossom\" (8x Telescopic)','WeaponAttachment','IronSight','201f58e3-7c17-4217-8edf-6f6a097e5ff8','','','Manufacturer: VOLT\nType: Telescopic\nAttachment Point: Optic\nMagnification: 8x\nAim Time: +0%\nSize: 3\n\nDesigned for long distance precision shooting, the FarSight is carefully crafted to provide unparalleled fidelity of targets. VOLT\'s TruePicture lens technology provides high levels of light transmission, ensuring easy target acquisition and daylight illumination so you always get your mark.\n\nThe Golden Blossom version is mostly black, embelished with intricate golden flowers, giving your enemies one final glimpse of life before death.'), +(9357,'Citadel Arms (Modified)','Armor','Arms','99026e33-0597-4ba1-acf1-493f2ae3d8de','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nThis version of Kastak Arms\' Citadel arms has been modified from its original form. Kastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure.'), +(9358,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','b4e41580-a67e-442c-a60a-189ff609fc5e','','','Aegis Gladius - Decoy Launcher'), +(9359,'Weapon_Rack_1_KSAR_Sniper_Common_001','Usable','UNDEFINED','81db694a-d3d3-4363-8bb3-ce65639cb63f','','',NULL), +(9360,'Ship Showdown \'52 Carrack Coin','Misc','Utility','d0269187-b78f-4489-9609-47027d36419b','','','A coin to celebrate the Carrack winning the 2952 Ship Showdown. The beloved expedition ship soars across one side of the coin ringed in red with the Anvil Aerospace logo appearing on the reverse.'), +(9361,'Vagabond Jacket Molehill Brown','Char_Clothing_Torso_1','UNDEFINED','c6966e76-f4bf-49d8-be8a-912504e6eaa5','','','Carrying Capacity: 2K µSCU \n\nWhen you need to move like your life depends on it. This lightweight layered jacket-and-poncho combination won\'t tie you up when things get tight. Finished with a hooded cowl, cross straps, and kit-webbing, the Vagabond is ready for whatever your day may have in store. The Molehill version is dyed a neutral brown to keep you subtle, but not unsightly.'), +(9362,'Storage','Cargo','UNDEFINED','d1c7e89a-415f-4c0c-9a41-e0eee8a27213','','',NULL), +(9363,'Quantum Fuel','Cargo','Cargo','7f724327-ea03-4a93-96ce-7f14cd441114','','',NULL), +(9364,'Dragonfly Coalfire Livery','Paints','UNDEFINED','6aaf6389-4898-46a7-b1ef-af5db0af8231','','','Style and speed meet with the Dragonfly Coalfire livery that blends red and grey for an alluring look.'), +(9365,'RSI_Constellation_SCItem_Seat_Merlin','Seat','UNDEFINED','3ff7371b-9d30-4b12-84be-e01f55f6d189','','',NULL), +(9366,'AEGS_Eclipse_Thruster_Mav_Joint','ManneuverThruster','JointThruster','ee7d608f-2b26-4260-8878-6d79e6e5b500','','',NULL), +(9367,'Screen','Usable','UNDEFINED','9cd50f7c-10d4-447a-b1b7-9c63204e62fe','','',NULL), +(9368,'Internal Tank','QuantumFuelTank','QuantumFuel','8c6cd476-dbdc-458e-ae6e-d2a61cabe0c0','','',NULL), +(9369,'Aril Legs','Armor','Legs','f4255f29-7e56-424e-9d1f-9ef52c7458a5','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(9370,'Internal Tank','FuelTank','Fuel','0de085e1-07c2-4f08-a081-3a62bfee1365','','',NULL), +(9371,'Seat','SeatAccess','UNDEFINED','db2cbf29-e6e5-49c0-8006-d30d9cc08feb','','',NULL), +(9372,'Inquisitor Core Sienna','Armor','Torso','c21b349e-2fff-4aee-afa2-96c0c97c4853','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(9373,'Combat Supplies','Cargo','Cargo','0770d94d-85c0-4385-b21c-7ed5f58b848a','','','A variety of items assembled to support combat forces, such as ammunition, structural repair tools and clothing.'), +(9374,'Renegade Racing Vest (Modified)','Char_Clothing_Torso_1','UNDEFINED','b3ae128b-1c8a-467a-b1da-b1882c1c4ab9','','','Carrying Capacity: 1K µSCU\n\nThis version of the Renegade Racing vest has been modified from its original form. The Renegade Racing vest provides protection against road rash without adding to your lap time. Graphene-based nanocomposite plating makes the vest extremely light yet ultra-durable. Ideal for everything from idyllic rides to heart pounding last laps.'), +(9375,'INTK_AEGS_Vanguard_Warden','FuelIntake','Fuel','2c40da97-85df-43cd-bbde-772448160836','','',NULL), +(9376,'ADP Arms Olive','Armor','Arms','b5deb872-f379-4a22-b943-44a169fdacfe','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(9377,'VariPuck S6 Gimbal Mount','Turret','GunTurret','60ec9d23-30c0-4b70-81c5-1d774460b319','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 6\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(9378,'Seat','Usable','UNDEFINED','82db6810-3ddf-4a8d-a0e0-d654ce24b4e0','','',NULL), +(9379,'Devastator \"Warhawk\" Shotgun','Weapon','Medium','4432aa90-a96c-4e93-ab6b-ea1634e39164','','','Manufacturer: Kastak Arms\nItem Type: Shotgun\nClass: Energy (Plasma)\n\nBattery Size: 12\nRate Of Fire: 60 rpm\nEffective Range: 20 m\n\nAttachments: Optics (S1), Barrel (S3), Underbarrel (S2)\n\nKastak Arms’ Devastator is a pump-action plasma shotgun capable of delivering sustained medium range, high-impact plasma blasts for close combat, room clearances and other combat operations. If the situation requires a high-power presence, look no further than the Devastator.'), +(9380,'M9A Cannon','Weapon','Gun','2b815637-2fa9-484d-ba91-8ae4411a8a64','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 7\n\nStrike at the very heart of your enemies with the devastating impact of Behring\'s M9A energy autocannon. When fully charged, the massive stopping power of this laser weapon has the potential to halt even capital ships in their tracks.'), +(9381,'Savrilium','Cargo','Cargo','f473f1b1-d3c2-48dc-bc9c-8e736a418a1f','','',NULL), +(9382,'Deri Gloves Tactical','Char_Clothing_Hands','UNDEFINED','9d3bcfe2-80c3-4ed1-a864-3f5100a6bd73','','','Maintain a tactile sense of the world while also keeping your hands safe and dry with the Deri fingerless gloves. Featuring a comfortable inner lining, lightweight plating on the back of the hand and slip resistant palm padding, the Deri gloves are an ideal choice for a wide variety of tasks.'), +(9383,'SHIELDS','ShieldController','UNDEFINED','3b050078-dd41-4cdf-84b3-3fbfc4d6fc26','','',NULL), +(9384,'SCNR_TARS_S02_Resonance','Scanner','Scanner','08e5d4f5-5298-4909-84df-4d359ead0724','','','@LOC_PLACEHOLDER'), +(9385,'MISC Prospector - Noise Launcher','WeaponDefensive','CountermeasureLauncher','389d4ae7-ec1c-40c9-96c9-1c97d8ce394e','','','MISC Prospector - Noise Launcher'), +(9386,'Internal Tank','FuelTank','Fuel','73294c7d-39a2-4498-b99e-98db986896f7','','',NULL), +(9387,'Golem IceBreak Livery','Paints','UNDEFINED','3731eeb4-c7a1-4a5f-826b-68ec801cbacf','','','Equip your Golem with a paint scheme cooler than a snow storm. The IceBreak livery mixes crisp, cool white with a frostbitten blue for an exciting look suitable for any season.'), +(9388,'DockingTube_Fuel_Ports_AEGS_Sabre_Peregrine','DockingCollar','UNDEFINED','f5b51270-9e56-4cc5-aba3-9c2d472953e9','','',NULL), +(9389,'Door Control','ControlPanel','DoorPart','0c7440c6-bf2c-492a-9f49-8f737b705829','','',NULL), +(9390,'Manned Turret','TurretBase','MannedTurret','76efc85b-599e-46d7-a4b7-fb5ced61cc08','','',NULL), +(9391,'Door Control','Door','UNDEFINED','b592a70f-7490-4429-83e7-e39c69f9e565','','',NULL), +(9392,'ESPR_LaserCannon_PowerArray_S3','WeaponAttachment','PowerArray','6b93dcc6-fa5d-49a4-95e5-2117907e5ca0','','',NULL), +(9393,'un_flask_hip_1_a','Misc','UNDEFINED','1cd09836-2f14-4053-81ab-e0350b45fd0b','','',NULL), +(9394,'Internal Tank','QuantumFuelTank','QuantumFuel','dd33bdba-9a9a-4c5f-bbeb-821a236e5f98','','',NULL), +(9395,'Riccite','Cargo','Cargo','736e904a-dc9d-4604-af89-b7a4e46b65fd','','',NULL), +(9396,'Door Control','Door','UNDEFINED','662ea36c-c907-4ed6-bb8a-919e64ffe9d3','','',NULL), +(9397,'Remote Turret','Turret','GunTurret','8bfe26ff-7855-4791-8c90-c0a0a8d8613a','','','Remote Turret'), +(9398,'SureGrip S3 Tractor Beam','SalvageHead','UNDEFINED','ae2b705a-10ff-4551-aa98-c9803194e17a','','','Manufacturer: Greycat Industrial\nItem Type: Tractor Beam\nMax Angle: 60°\nMax Range: 150 m\nFull Strength Distance: 75 m\n\nBacked by their certified Soft-Touch® guarantee, Greycat’s SureGrip tractor beam is a mainstay of its product catalogue thanks to its dependable range and control.'), +(9399,'Xanthule Tahn Helmet','Armor','Helmet','ae75691c-058e-4ad9-8ddb-64d4a9aa49f5','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nAdapted by Syang Fabrication to meet the unique requirements of the Human physique, the Xanthule helmet faithfully recreates the bold silhouette preferred by Xi\'an. When paired with the Xanthule suit, it creates a distinct and eye-catching look.'), +(9400,'LifeGuard Refill','WeaponAttachment','Magazine','03fc4136-a491-4713-b278-ef7e4333431d','','','Item Type: MedGel Refill\n\nThis vial is used to refill the LifeGuard medical multi-tool attachment with CureLife Pancea MedGel.'), +(9401,'Human Food Bars','Cargo','Cargo','f6c68f57-65a2-443e-9e07-507e330a1445','','',NULL), +(9402,'Medical Supplies','Cargo','Cargo','7ab1a3a5-579a-41b4-9b8f-f0d530c3c8b8','','',NULL), +(9403,'DRAK_Vulture_Thruster_Retro','ManneuverThruster','FixedThruster','a2b24963-a64a-4f0e-a00e-09ed782396ca','','',NULL), +(9404,'Nomo Grub Packet','Food','Sachet','b830a23a-d949-431b-a4bd-042969f39762','','','NDR: 15 \nEffects: Energizing, Hypermetabolic\n\nA package of dried, protein rich nomo grubs that have a savory and slightly bitter taste.'), +(9405,'Seat','Usable','UNDEFINED','40389b3b-6ba8-44fd-a509-7430b99daeb9','','',NULL), +(9406,'Internal Tank','FuelTank','Fuel','5334eb09-ac38-4de4-8702-444e7dbb6409','','',NULL), +(9407,'Seat','SeatAccess','UNDEFINED','9c72af2b-0255-4356-8d95-3ae69bb31dd2','','',NULL), +(9408,'Aril Arms Scorched','Armor','Arms','31c99f94-9523-43ed-941e-4fc6d55847f3','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(9409,'Seat','SeatAccess','UNDEFINED','8ff6e6c9-34a5-4925-9ced-85d164f028aa','','',NULL), +(9410,'pacheco_outfit_01','Char_Clothing_Torso_1','Female','65b8dfec-c9c1-40ca-9887-aab90b6ff853','','','@LOC_PLACEHOLDER'), +(9411,'Door','Door','UNDEFINED','9729566b-f8a2-4b89-acc1-5aa789c731e1','','',NULL), +(9412,'Carryable_1H_CY_weight_dumbbell_1_12kg_b','Misc','UNDEFINED','a4932bab-3412-415d-894b-8edcd4136f66','','',NULL), +(9413,'Door_ChipReader_Vault_002','Door','UNDEFINED','96206c3a-6e45-4f0f-a612-98af660a8586','','',NULL), +(9414,'Seat','SeatAccess','UNDEFINED','18e037eb-c81d-4930-9741-b3bf1e35f35d','','',NULL), +(9415,'RSI_Perseus_SeatAccess_Torpedo_Console','SeatAccess','UNDEFINED','e326f19b-fa16-4900-9e7f-f5f6b8ee7d38','','',NULL), +(9416,'Cargo_Slot_GRIN_STV_1Slot','Usable','UNDEFINED','2bee4823-1c60-4b5a-8d3e-7d10c9c35042','','',NULL), +(9417,'Safehab','LifeSupportGenerator','UNDEFINED','8f35858a-1403-42b0-aaee-36e7a9dcf8c0','','','Item Type: Life Support\nManufacturer: Aegis Dynamics\nSize: 4\n\nThis capital-class life support system was designed specifically for the Idris frigate.'), +(9418,'Lynx Core','Armor','Torso','52fe2c27-32f5-4a17-82fe-5fce8c8fbe41','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(9419,'Decari Pod','Cargo','Cargo','3864a4d3-20fe-4c79-9831-1d63c628637b','','',NULL), +(9420,'Internal Tank','QuantumFuelTank','QuantumFuel','f27f973d-9757-4fff-bc8d-00657d5b731d','','',NULL), +(9421,'Aphorite','Cargo','Small','86c53bbf-adea-44af-924b-039a840ad703','','','Decorative jewel crystal prized for its multi-hued tones.'), +(9422,'Seat','Usable','UNDEFINED','3b4572cc-b6c2-462f-8a40-2dfe06460d60','','',NULL), +(9423,'Radar_Display_MRAI_Guardian','Display','UNDEFINED','6e2b2969-5158-4fd7-8908-9647b2390b49','','',NULL), +(9424,'Seat','Usable','UNDEFINED','5b1560c2-940c-4b31-aa1f-66b45ddc460a','','',NULL), +(9425,'Morozov-SH Core Iceflow','Armor','Torso','fab2554e-f443-489a-8a1f-24ddcc3acc3a','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12K µSCU\nBackpacks: All\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(9426,'ARGO_MPUV_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','b6d97e58-b11c-4a25-b94a-9a9e2c7016bc','','',NULL), +(9427,'RSI_Hermes_LightCap_Right','AttachedPart','UNDEFINED','d25ca9fd-2d11-4004-ae51-4cb042ad364e','','',NULL), +(9428,'Quantum Fuel','Cargo','Cargo','48a9961a-ac0a-4e59-8637-23f6ca01ce5e','','',NULL), +(9429,'H_Dashboard_Projector_HUD_ORIG_400i','Display','UNDEFINED','aeaca549-50c2-4c54-97b7-b5a69747f023','','',NULL), +(9430,'ATLS 2956 Auspicious Red Rat Livery','Paints','UNDEFINED','7b934dc8-9836-4efb-84dd-a206b9332241','','','Seek peace and prosperity in the new year with the Auspicious Red Rat livery. Outfit your power suit with this bold red base paint complemented by gold accents and a stylized graphic of a rat.'), +(9431,'Castilla Wine Glass','Misc','UNDEFINED','e9225fe2-ef9a-41a5-b741-728ab4590673','','','Enhance your evening with this elegant stemware that is sure to make every moment feel like a special occasion.'), +(9432,'MC-Black Hat','Char_Clothing_Hat','UNDEFINED','6aa7a09c-e18a-4de2-b492-ee3c786a129a','','','This military cadet hat from CBD blends lightweight fabric and leather for a striking design.\n\nWomen\'s sizes currently out of stock.'), +(9433,'Bexalite (Raw)','Cargo','Cargo','25a68f9f-e350-4e9f-b8fd-e877e35974e3','','',NULL), +(9434,'Strata Backpack Pyrotechnic Edition','Armor','Backpack','420fe0da-40b1-4db6-94d6-72055715cdff','','','Item Type: Medium Backpack\nCarrying Capacity: 127.5K µSCU\nCore Compatibility: Medium & Heavy\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. This edition features the colors and logo of the now defunct Pyrotechnic Amalgamated.'), +(9435,'Seat','SeatAccess','UNDEFINED','a22630ef-82d9-4d16-9acb-586cac3877dd','','',NULL), +(9436,'Quartz Energy SMG Battery (45 cap)','WeaponAttachment','Magazine','83ac5196-05d0-45a1-8982-aa549650f9d9','','','Item Type: Battery\nCapacity: 45\n\nThis battery for the Quartz Energy SMG holds enough energy for 45 shots.'), +(9437,'Controller_Salvage_ARGO_MOTH_Left','SalvageController','UNDEFINED','ba2a5625-c6ed-4bf1-bb39-20d0a08efb7a','','',NULL), +(9438,'Vanduul Decoy Launcher','WeaponDefensive','CountermeasureLauncher','4f5be138-308a-4b2d-96ff-33b5c69a740c','','','Vanduul Decoy Launcher'), +(9439,'Cup','Drink','UNDEFINED','ba3b5cb9-2e5e-443b-9c2e-82f7d0fb95d9','','','A drinking vessel.'), +(9440,'ADP Arms Dark Green','Armor','Arms','4e7b8533-a5cb-4821-b007-2c6b8bf1a488','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(9441,'Door Control','Door','UNDEFINED','b01ff27b-62e6-4565-a2b9-3c61fc27312b','','',NULL), +(9442,'Idris Triton Camo Livery','Paints','UNDEFINED','ca4a07b0-7c4e-45cd-ab51-2d11ff3d2679','','','Conceal the shape of the Idris with the blue camo pattern of the Triton Camo livery.'), +(9443,'Bed','Usable','UNDEFINED','f9b5d208-2ba8-48a8-a880-e697170776ed','','',NULL), +(9444,'MISC_Hull_C_Thruster_Retro','ManneuverThruster','FixedThruster','7837dfda-fcef-4e12-b4e3-1ce54daf3b22','','',NULL), +(9445,'MSD-481 Missile Rack','MissileLauncher','MissileRack','27ed3da2-22cf-403c-9a56-964771718028','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 4\nMissiles: 8xS1\n\nBehring’s MSD-481 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 4 hardpoint for the reliable and effective launch of eight S1 missiles.'), +(9446,'Door','Door','UNDEFINED','9e47e4dc-2b74-45ee-908c-355c7d9ded78','','',NULL), +(9447,'Carryable_1H_CY_bottle_gin_pourable_1_a','Misc','UNDEFINED','add7d6d7-7a75-4753-9bbf-b0059fa10525','','',NULL), +(9448,'Carryable_1H_CY_Mixing_bottle_whiskey_a','Misc','UNDEFINED','2afe14d3-ae5d-4080-bf9c-4e7b6a8adf6a','','',NULL), +(9449,'Rush','QuantumDrive','UNDEFINED','4e256229-5224-40af-8806-72223f753da2','','','Item Type: Quantum Drive\nManufacturer: ArcCorp \nSize: 1\nGrade: C\nClass: Civilian\n\nThe Rush is a popular commercial quantum drive that lives up to its name.'), +(9450,'Col Head Cover Brown','Char_Clothing_Hat','UNDEFINED','43af1721-316e-4d1f-8af7-8849c79bf11e','','','Temp. Rating: -30 / 15 °C\n\nThe Col is an insulated yet lightweight head cover that keeps heat from escaping. The large, chip-resistant faceplate features a cutting-edge GX coating to ensure the purest light quality for viewing the surrounding environs.'), +(9451,'AEGS_Door_Decal_Escapepods_04','Decal','DoorPart','6f50e0d3-481e-468f-95ea-fd24a9b819cb','','',NULL), +(9452,'Terrapin Seabed Livery','Paints','UNDEFINED','453d25d5-0ecf-33b7-2a34-0c4d0bb5a49c','','','Bring a beautiful blue with grey and green highlights to the Terrapin with the Seabed livery.'), +(9453,'Destroyer Mass Driver Cannon','Weapon','Gun','26298097-2f16-4f25-b652-9c72170b5529','','','Manufacturer: Klaus & Werner\nItem Type: Mass Driver Cannon\nSize: 10\n\nMade for the Aegis Idris utilizing railgun technology to accurately fire high damage ballistic projectiles over long distances, the Destroyer mass driver from Klaus & Werner has made it\'s presence known on the battlefield time and again with devastating impact.'), +(9454,'Door_NoRoomConnector_OpenReverse_IP','Door','UNDEFINED','91f9ec3f-9460-42fc-bb6d-8070742a6f73','','',NULL), +(9455,'RSI_Salvation_Thruster_Retro_Bottom_Right','ManneuverThruster','Retro','6a7c575f-ac15-46b2-be5b-4e7a661d2626','','',NULL), +(9456,'Seat','SeatAccess','UNDEFINED','76b267e3-2af6-4231-8a33-eedd61c9a691','','',NULL), +(9457,'SHIELDS','ShieldController','UNDEFINED','58b1f314-100f-47b7-8da3-604cd7c692cc','','',NULL), +(9458,'Sharud Wrap and Arm Bands Spruce','Char_Clothing_Torso_1','UNDEFINED','283b7a94-accd-48e3-90e1-faf4215d1d3f','','','Carrying Capacity: 1K µSCU\n\nThe Sharud is an ideal top for staying cool in hot weather. Advanced production techniques allow Habidash to make a light yet absorbent shawl that looks and feels like handspun natural cotton but at a fraction of the cost. The three arm band pieces provide stylish accents and come embedded with microchips that tracks body temperature and other vitals.'), +(9459,'counter_kitchen_1_straight_01x01x01_b','Misc','UNDEFINED','5d9467cb-e3fc-4188-a99e-04f116ffdbf4','','',NULL), +(9460,'TRGT. STATUS','Seat','UNDEFINED','f4fc95a6-52d8-48bf-9f0e-93000be78536','','',NULL), +(9461,'Medical Bed','Usable','UNDEFINED','8b9af689-60ed-46cf-b45c-c4c4f6eb45f4','','',NULL), +(9462,'Bed','Usable','UNDEFINED','f1d24106-3262-4d13-bfc2-033af8606913','','',NULL), +(9463,'Lynx Legs Violet','Armor','Legs','a4f58559-692b-40a7-8b22-72b354a074e6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(9464,'TRGT. STATUS','Seat','UNDEFINED','871e2710-3de7-4245-b797-4c123ce4f7fe','','',NULL), +(9465,'TRGT. STATUS','Seat','UNDEFINED','f593f2ff-012b-4438-9587-641a7385f044','','',NULL), +(9466,'MRAI_Guardian_MX_SeatAccess','SeatAccess','UNDEFINED','4883e3e9-3e50-2108-1c1c-72d4e103dd89','','',NULL), +(9467,'facial_hair_028','Char_Head_Beard','UNDEFINED','e27a835b-965f-487b-bef7-ac8be077cc62','','',NULL), +(9468,'ARGO_MPUV_Cargo_Pod','Misc','UNDEFINED','de9f06e9-3730-4b4c-b7a2-52d027ad4b0d','','',NULL), +(9469,'DCP Armor Core New Dawn','Armor','Torso','f60af5b8-f119-4925-9bd7-272c115c1e2e','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(9470,'f_human_mannequin_slaver_light_02','ShopDisplay','UNDEFINED','b2f76983-90a8-4c46-a2bf-0c066a77a952','','',NULL), +(9471,'Hercules Starlifter Deadlock Camo Livery','Paints','UNDEFINED','47b1c5dd-b7bb-46a5-9397-8289ed6cdfca','','','Disguise the silhouette of the Hercules Starlifter with the Deadlock Camo livery, featuring a grey camo pattern with yellow highlights.'), +(9472,'AEGS_Javelin_SCItem_Seat_Pilot_Blocked','Seat','UNDEFINED','88699db5-fcff-4544-a2de-872bef2b7afc','','',NULL), +(9473,'Door Control','ControlPanel','DoorPart','8ade00b6-0019-4ea4-ad21-fd6093d8b3e7','','',NULL), +(9474,'ParaMed Medical Device','Weapon','Small','3ad9e5f0-8c8f-42b4-adc9-fed1435c8d26','','','Manufacturer: CureLife\nItem Type: Medical Device\n\nThe ParaMed from CureLife is a professional-grade emergency medical device designed to stabilize patients suffering from possible life-threatening injuries. Offering extremely accurate diagnostics and dosing, the ParaMed can treat more patients and offer longer relief with less risk of overdose.'), +(9475,'Tyros Jacket','Char_Clothing_Torso_1','UNDEFINED','3fd4a3ea-8cb3-4242-9f32-7668df0c98f7','','','Carrying Capacity: 1K µSCU\n\nThe Tyros white synth-leather jacket from Habidash features a striking side-closure pattern with silver clasps, reinforced ribbing at the cuffs and collars, and a silver-inlaid polygonal pattern across the chest and sleeve.'), +(9476,'SHIELDS','ShieldController','UNDEFINED','a1e7dc5c-46e0-4314-a98b-79ff294260e0','','',NULL), +(9477,'Chrome Dome Head Gear Grey Camo','Char_Clothing_Hat','UNDEFINED','b049e04b-daa2-45ab-ba66-761f80cbc40e','','','The Chrome Dome was designed to make hostile environments manageable. This unique head gear features a lightweight and reflective hat with a sloped brim, goggles that automatically adjust to lighting conditions, large ear flaps, and a neck gaiter to cover the face. Whether trudging through snow or sand, the Chrome Dome is ready to brave the elements with you.'), +(9478,'Inert Materials','Cargo','Cargo','1fded95a-08e4-4d5b-84f4-3a40342713e0','','',NULL), +(9479,'Hair Care Product','Misc','UNDEFINED','07160209-7dd0-4db9-bf1c-be561db3ec0a','','',NULL), +(9480,'Hammerhead Nightbreak Livery','Paints','UNDEFINED','56be51d7-5883-442d-8757-1f5874b15442','','','Discreetly soar through the night sky in the Hammerhead with the Nightbreak livery, which is primarily black with red highlights.'), +(9481,'Zeus Mk II Firmament Livery','Paints','UNDEFINED','a134062c-f767-4872-bef5-56d171db3665','','','The Firmament livery makes the Zeus Mk II a beautiful light blue with black and white highlights.'), +(9482,'RSI_Perseus_Thruster_Retro_Front_Top_Left','ManneuverThruster','Retro','dfc9bc0a-8041-4d6a-b606-7d6da845b9ef','','',NULL), +(9483,'VariPuck S1 Gimbal Mount','Turret','GunTurret','2937fd28-b033-4d47-a8cc-7b470248f2f9','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 1\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. This special VariPuck will accept any weapon the same size as the hardpoint it is mounting to.'), +(9484,'Strata Core Lodestar','Armor','Torso','1714e5cb-00ed-414f-bea7-61585c628bb6','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 15k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpack Compatibility: Light & Medium \n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres.'), +(9485,'bar_box_energy_onemeal_steak','ShopDisplay','Default','f0fb471c-c56b-447b-90df-bb98593409f1','','',NULL), +(9486,'Gadget_Cabinet_kegr_fire_extinguisher_01_nogeo_ground','Usable','UNDEFINED','a89c7d30-ef52-4251-bffe-0d2a7dae3cf9','','',NULL), +(9487,'Paint_Perseus_Black_Grey_Grey','Paints','UNDEFINED','3569841c-feb7-4047-9977-e1630b5a0d44','','',NULL), +(9488,'Jennet','PowerPlant','Power','926ea000-c084-4461-bfd1-bbab1c1138a9','','','Item Type: Power Plant\nManufacturer: Juno Starwerk\nSize: 0\nGrade: D\nClass: Industrial\n\nJuno Starwerk’s foray into vehicle power plants begins with the Jennet. While not as highly-rated as similar components, the company’s reputation for dependability and ease of maintenance still make it a favorite in some circles.'), +(9489,'ORC-mkV Arms Aqua','Armor','Arms','28f05d54-b617-43f2-b492-29883836e3d4','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(9490,'Paint_Hammerhead_Default','Paints','UNDEFINED','efacc02f-4cc1-44d4-a1d1-3755bc39c7a9','','',NULL), +(9491,'ANVL_Carrack_Thruster_Mav_Bottom','ManneuverThruster','FixedThruster','f9672d39-1950-48c1-9cc6-8cb230fa522c','','',NULL), +(9492,'Door Control','ControlPanel','DoorPart','7d7eb339-085b-4c13-9a95-e1a75584e828','','',NULL), +(9493,'Carryable_TBO_FL_8SCU_Commodity_Organic_Armillaria','Cargo','Cargo','596c47d8-1921-48a0-b261-6417106b90ad','','',NULL), +(9494,'Door','Door','UNDEFINED','20d050f2-58b6-4fbc-a109-431e48f46acd','','',NULL), +(9495,'Stor*All 8 SCU Self-Storage Container','InventoryContainer','Cargo','64d1c96f-a7c4-492f-a12e-91699e3b01bc','','','Designed by one of the most trusted names in cargo pods, the Stor*All Self-Storage Container provides a convenient place to keep anything too cumbersome to carry on your person. Its durable impact-resistant construction is sealed to survive the vacuum of space.'), +(9496,'Mining Arm','ToolArm','UNDEFINED','a7da931d-98d9-4fb4-a37d-750c11d20432','','',NULL), +(9497,'Ball','Char_Head_Piercings','UNDEFINED','5dfa7c35-5807-486d-bf21-97b7ef01f471','','',NULL), +(9498,'G-2 Helmet Tan','Armor','Helmet','9c28f894-4079-4ed0-8f5f-40741c47d138','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. Visor is AR crosshair compatible.'), +(9499,'Body','Char_Clothing_Hands','Medical','9ff56989-a3dc-4786-b389-6feea2dea25f','','',NULL), +(9500,'Dashboard','SeatDashboard','UNDEFINED','6a56d6b3-3863-4b25-a726-cb3df970a291','','',NULL), +(9501,'Pampero Boots Green','Char_Clothing_Feet','UNDEFINED','7c2c61b4-99b3-46f2-9b4e-a595ce082dd7','','','The Pampero are sleek ankle high boots feature lightweight yet durable soles to make it feel like you\'re walking on clouds even when trekking across the most unforgiving terrain.'), +(9502,'Door Control','ControlPanel','DoorPart','fac3b032-4e10-451a-884f-48b029a94ab0','','',NULL), +(9503,'Seat','SeatAccess','UNDEFINED','9cd7cef8-cf4d-4fc2-9952-5f1cba1a4100','','',NULL), +(9504,'Arrow Light Green and Grey Livery','Paints','UNDEFINED','f0daa12b-9873-4cf6-a341-9b95fa93d776','','','Customize your Arrow with this multi-tone green livery.'), +(9505,'Compboard','Cargo','Cargo','3a6e04ed-9f93-48ca-aaa4-5d6ef5949a40','','',NULL), +(9506,'Raw Ouratite','Cargo','Cargo','e41f195f-5e2c-477c-a95b-7542cde5ce9f','','',NULL), +(9507,'RSI_Polaris_SCItem_SeatAccess_Turret_Side_Right','SeatAccess','UNDEFINED','34f32d4a-f51b-4417-91eb-aa86478bb98d','','',NULL), +(9508,'Cadmium Allinide','Cargo','Cargo','6be953a6-6b08-41db-9f32-34d4e32608b7','','',NULL), +(9509,'Crusader Hat','Char_Clothing_Hat','UNDEFINED','31f70364-4c4d-4b03-826e-9e4e4d0a0e75','','','A blue, white, and gray cadet hat with Crusader Industries\' name and logo emblazoned across the front panel.'), +(9510,'Bluemoon Fungus','Misc','UNDEFINED','ac659f18-1681-4406-8eff-4bd9173b94a7','','','Preferring to spore in the depths of dark caves, the fruiting mushrooms of the Bluemoon fungus are often collected as a highly-valued petroleum-free lubricant used across a wide-variety of industries.'), +(9511,'Holdstrong','Shield','UNDEFINED','dfe6794e-80e7-4d2b-9dbc-6c2f8eb0018c','','','Item Type: Shield Generator\nManufacturer: Aegis Dynamics\nSize: 4\n\nThis capital-class shield generator was designed specifically for the Idris frigate.'), +(9512,'Concept Shirt Purple','Char_Clothing_Torso_0','UNDEFINED','349270a6-2bdc-4d13-85d3-fb11a702650d','','','This crisp, versatile button-front shirt from Fiore is made with cutting edge stain resistant and wrinkle-free technology, guaranteeing that you stay professional at all times.'), +(9513,'BEHR_LaserCannon_PowerArray_S7','WeaponAttachment','PowerArray','eed0d2cb-e6e8-4c93-9e6b-e07706f903b4','','',NULL), +(9514,'Inquisitor Arms Dark Green','Armor','Arms','40d944eb-b415-4888-a7c3-c867bc36908a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(9515,'ORC-mkV Arms White','Armor','Arms','ad0434c4-0244-461a-b45a-ee1105153d06','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(9516,'ORC-mkV Arms Greycat Edition','Armor','Arms','b0d891a5-f143-4793-9c9c-a6957610eed6','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement. The Greycat Edition was made specifically for the company.'), +(9517,'Seat','Usable','UNDEFINED','18c2d424-50a5-4df0-9638-d11e20b5c106','','',NULL), +(9518,'Seat','SeatAccess','UNDEFINED','2ed695c6-1e4b-4305-8bbe-5863c58c3d12','','',NULL), +(9519,'Ventris Jumpsuit Crusader Edition Blue','Char_Clothing_Torso_1','UNDEFINED','64699e98-4a20-449f-bd4d-5f20a46119e0','','','Carrying Capacity: 1K µSCU\n\nThe Ventris is a sleek jumpsuit that mixes several rip and stain resistant polymer fabrics for a dynamic design. It also features a half-zip front and adjustable belt to ensure an ideal fit while the soft inner lining makes it an ideal choice for all day wear. The special Crusader Edition was made to be worn by employees of the company and features the sword and C logo on the front.'), +(9520,'Argus Helmet Scorched','Armor','Helmet','acf39e6f-3d0b-4a71-b006-5163e6e9ccff','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s Argus helmet utilizes advanced multi-layered composite construction to provide incredible protection from weapon fire as well as environmental hazards. The tinted visor offers a wide field-of-view to improve situational awareness and unrestricted movement.'), +(9521,'Carafi Cube','Food','Consumable','3317c57a-5bfc-4dea-8a2e-9394f0626de6','','','NDR: 10\nEffects: Hypermetabolic\n\nA flavorless nutrient jelly with a firm, slippery texture.'), +(9522,'Permafrost','Cooler','UNDEFINED','5e8af166-4930-4fbc-be29-881fc605f067','','','Item Type: Cooler\nManufacturer: Aegis Dynamics\nSize: 2\nGrade: B\nClass: Military\n\nDesigned by Aegis to military standards, the Permafrost cooler has proven itself time and again to be more than capable of handling heat processing even while under the strains of combat.'), +(9523,'Hermes Dauntless Livery','Paints','UNDEFINED','e3b2de03-eb22-4603-af5f-9af12c119fe2','','','Carve a path through the unknown with the Dauntless livery. Featuring a deep, slate blue and striking red details, this color palette is for the bold and the brave.'), +(9524,'DockingTube_Fuel_Ports_DRAK_Caterpillar','DockingCollar','UNDEFINED','89b670a1-c26c-4548-84d6-412a22af07ab','','',NULL), +(9525,'AAT-34 Turret','Turret','MannedTurret','b8bea0f5-83f6-4fda-96e3-5c13b00362b4','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(9526,'MISC_Hull_C_FakeCargo','Cargo','UNDEFINED','1105b366-3253-493e-9445-1d027fc0eb36','','',NULL), +(9527,'Pembroke Exploration Suit RSI Graphite Edition','Armor','Undersuit','8bc00125-5d79-494d-9354-1c0d29048e02','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nDesigned to extend the limits of Human endurance, the Pembroke was built to withstand the extreme heat of inhospitable high temperature environments. Based off of Caldera\'s best-in-class exploration armor platform, an advanced sensor suite intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. The special RSI Edition of the Pembroke ensures those seeking to cross bold new horizons do so in style.'), +(9528,'Aegis Avenger - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','222edff1-53c1-454d-852c-cecd52381b23','','','Aegis Avenger - Decoy Launcher'), +(9529,'Clempt Pants','Char_Clothing_Legs','UNDEFINED','05898ef2-5b05-435f-9764-ac0a1016d1a6','','','Carrying Capacity: 2K µSCU\n\nStegman\'s factory pants have been taken to the next level with the Clempt line. These rugged all-purpose pants come with double knees for extra comfort and protection and are made from tough composite weave fabric to last as long as the work needs.'), +(9530,'Inquisitor Legs Red','Armor','Legs','73bdb20b-547f-4134-a89c-1727248fd9cb','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(9531,'PowerSuit_SCItem_SeatAccess','SeatAccess','UNDEFINED','46e6c32c-6a10-4474-be98-12b68a91ccc7','','',NULL), +(9532,'Badami Helmet Olivine','Armor','Helmet','f13c5d01-0d94-48a0-9674-5b8f85228fa4','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Badami helmet from Caldera provides premium head protection with a tough polycarbonate shell and an anti-microbial liner. Allowing you to boldly brave untamed locales and explore the dark corners of space.'), +(9533,'Li-Tok Boots Twilight','Char_Clothing_Feet','UNDEFINED','70bfb07c-093b-43e6-973c-aade452664e5','','','Stylish yet rugged, NorthStar\'s Li-Tok boots are made from a composite nylon fabric, vulcanized rubber grips that hold fast to a variety of surfaces, and reinforced ankle support making these perfect for hanging out or on the job.\n\nWomen\'s sizes currently out of stock.'), +(9534,'Arrowhead \"Executive\" Sniper Rifle','Weapon','Medium','1cb72e0a-59b6-403e-bd96-81a8aab1ab40','','','Manufacturer: Klaus & Werner\nItem Type: Sniper Rifle\nClass: Energy (Laser)\n\nBattery Size: 20\nRate Of Fire: 50 rpm\nEffective Range: 100 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nKlaus & Werner’s Arrowhead Model VI long-range energy rifle features a fiberglass composite body capable of withstanding any number of rigorous environments both in atmosphere and out. Built with a precision stock, compound scope and built-in bipod, the Arrowhead offers a stable and devastating weapon for operators who want to keep their distance, but stay in the fight.'), +(9535,'Strata Legs Heatwave','Armor','Legs','feb84493-af0e-49e3-b638-462bfef25856','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 10k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Heatwave edition is primarily black with glowing red highlights.'), +(9536,'XNAA_SanTokYai_Thruster_Main_Bottom','MainThruster','JointThruster','9ea6cb96-db23-4544-a665-ab0ba1d342f8','','',NULL), +(9537,'STV Whirlwind Livery','Paints','UNDEFINED','f2fa54ca-345b-4542-b62f-c3cb692b1c93','','','The Whirlwind livery mixes various shades of blue in a memorable animal stripe pattern to give the STV a daring look.'), +(9538,'INTK_DRAK_Buccaneer','FuelIntake','Fuel','62a48996-f8c7-4d8b-9503-991ab9bb4a89','','',NULL), +(9539,'LoadingPlatformLoadingGate','Door','UNDEFINED','8766cdf7-b008-419d-af81-96d734c12d4a','','',NULL), +(9540,'Door Control','Door','UNDEFINED','2cb17919-7afe-46e0-8298-63e5b456085f','','',NULL), +(9541,'Datapad','Misc','UNDEFINED','b92251c4-d51d-499f-909a-626ef62afdad','','','A portable tablet computing device featuring a touchscreen display.'), +(9542,'RSI_Polaris_Seat_Access_ExteriorDoor','SeatAccess','UNDEFINED','1e14cb27-295e-4dbc-af98-0bd550d2eafb','','',NULL), +(9543,'Waylite Shoes Crimson','Char_Clothing_Feet','UNDEFINED','3bb3ea87-923f-4b9b-8f8e-0b519746e719','','','Stay on your feet all day with Northstar\'s Waylite. These slip resistant shoes utilize comfortable memory foam and shock absorbent technology to make these casual sneakers perfect for the office or home.\n\nWomen\'s sizes currently out of stock.'), +(9544,'Irradiated Valakkar Pearl (Grade C)','Misc','Harvestable','e738c625-8ef7-4238-8170-5db0c4f9c15d','R','','The valakkar pearl is harvested from the skin of the valakkar. As the valakkar moves through its environment, a large piece of grit will sometimes penetrate its thick hide. If the grit is unable to be expelled on its own, the valakkar\'s skin will grow to encase it. Layers of organic matter will then coat the piece of grit, isolating it from the valakkar\'s vulnerable dermis, thus ensuring that it will not cause infection. These \"pearls\" can become substantial in size over time. Because the valakkar that grew this pearl was exposed to radiation over a long period of time, it has developed unusual properties.'), +(9545,'Weapon Rack','Usable','UNDEFINED','205282c8-cc66-48d7-829a-2e693be856c5','','',NULL), +(9546,'Cargo_Comm_125x3_Vice_Neon','Cargo','Cargo','2ccb78a6-41bf-4329-98a1-d766fe6a99a1','','',NULL), +(9547,'Titanium (Ore)','Cargo','Cargo','708ba367-0485-4875-9d36-67355487c727','','',NULL), +(9548,'GPI_Relay_2slot','Relay','UNDEFINED','0e9ac027-6e67-4609-ace3-341fd3a5b56a','','',NULL), +(9549,'TRGT. STATUS','Seat','UNDEFINED','bb1a8394-2710-4072-b913-e118e4b3a8dd','','',NULL), +(9550,'CNOU_Nomad_CargoGrid_Main','CargoGrid','UNDEFINED','ebf577c0-d12e-4d77-831d-6571ed4c9a1b','','',NULL), +(9551,'SHIELDS','ShieldController','UNDEFINED','f166c9d8-e055-4990-8fc5-c68622c74c09','','',NULL), +(9552,'RSI_Apollo_CargoGrid_Main','CargoGrid','UNDEFINED','8b0f46c8-895b-413b-9ef1-5e9e84797e9d','','',NULL), +(9553,'box_fabric_1_005x005x005_b_v004','Cargo','UNDEFINED','b5cca238-c64c-42ad-9d44-ead154f70d43','','',NULL), +(9554,'Overlord Legs Dust Storm','Armor','Legs','128daf5c-5035-4f73-b1d0-5fd4f4230308','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.'), +(9555,'fruit_tray_2_b','Misc','UNDEFINED','a7ad0888-d804-4fc7-b357-0cf82d340a13','','',NULL), +(9556,'Davin Work Gloves Seagreen','Char_Clothing_Hands','UNDEFINED','4db78881-0a98-45d9-bfd2-5071fbb49cfa','','','Field-tested for over fifty years, you can find Davin work gloves at numerous sites and ships around the Empire. Stegman\'s rugged construction and comfort lining have made them a customer favorite.'), +(9557,'GRIN_ROC_DS_CargoGrid_Main','Container','Cargo','f1c3b5c1-76b6-46ec-9436-7cd44d93e010','','',NULL), +(9558,'Carrion Legs','Armor','Legs','17b4faa2-b1a1-4730-9104-944dcb9ce4bc','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4K µSCU\n\nForged from scavenged metals and ragged clothes, the Carrion armor is a crude concoction of repurposed materials that demonstrates you\'ll do anything it takes to survive.'), +(9559,'Weapon_Rack_Cz_Firerat_008','Usable','UNDEFINED','2934ba66-22d3-4e40-9dff-6859870a6e6e','','',NULL), +(9560,'Carrion Legs Payback','Armor','Legs','a6c68ce3-03d8-41dc-8b22-f1d6917f8807','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4K µSCU\n\nForged from scavenged metals and ragged clothes, the Carrion armor is a crude concoction of repurposed materials that demonstrates you\'ll do anything it takes to survive.\n\nThe Payback version is sprayed with red paint and anointed with bone fragments.'), +(9561,'Gallant \"Executive Edition\" Rifle','Weapon','Medium','d7fc6971-8061-4cab-bf2e-020a922a43e5','','','Manufacturer: Klaus & Werner\nItem Type: Assault Rifle\nClass: Energy (Laser)\n\nBattery Size: 45\nRate Of Fire: 450 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nDependable assault weapons never go out of style. Klaus & Werner maintains that tradition by unveiling the Gallant. This energy-based assault rifle is capable of providing accurate and sustained fire at targets up to medium range, while its high-capacity power system allows operators to fire considerably more shots per battery.'), +(9562,'Carrion Legs Ashen','Armor','Legs','eb28a3de-f436-4860-942e-913f71081de5','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4K µSCU\n\nForged from scavenged metals and ragged clothes, the Carrion armor is a crude concoction of repurposed materials that demonstrates you\'ll do anything it takes to survive.\n\nThe Ashen version is sprayed with white paint and anointed with bone fragments.'), +(9563,'TRGT. STATUS','Seat','UNDEFINED','ce98b8ad-c7a3-4e64-afe1-9729355db0b1','','',NULL), +(9564,'DRAK_Golem_Thruster_Main','MainThruster','FixedThruster','5d38bb1d-cff8-4947-99ba-f10597dbb229','','',NULL), +(9565,'H_Dashboard_Projector_HUD_DRAK_Vulture','Display','UNDEFINED','2d00a40f-5161-4e4f-a05b-5c6ff91864b5','','',NULL), +(9566,'XIAN_Nox_CML_Chaff','WeaponDefensive','CountermeasureLauncher','5987a8ac-f033-4c3f-bba2-d9c9ca9f829a','','','@LOC_PLACEHOLDER'), +(9567,'Vulture Skullcrusher Livery','Paints','UNDEFINED','6daa8955-750e-4c47-bbb7-7f9882c33513','','','Exude attitude with the Skullcrusher livery for the Vulture, which features a massive skull across the top.'), +(9568,'m_human_mannequin_odyssey_suit_17','ShopDisplay','UNDEFINED','00fc127c-ad4c-4931-b59e-3363412d70f8','','',NULL), +(9569,'Prim Shoes Imperial','Char_Clothing_Feet','UNDEFINED','6e57ffb9-9189-4e9e-ba6a-08eb29004e6f','','','Professional yet casual, the Prim utilizes cutting-edge synthetic construction to provide maximum comfort and a shine that won\'t fade.'), +(9570,'Vera Compensator3','WeaponAttachment','Barrel','e52d18bc-740e-4057-9ae9-9a1c27d088eb','','','Manufacturer: ArmaMod\nType: Compensator\nAttachment Point: Barrel\nSize: 3\n\nAim Time: -35%\nSpread Min: -10%\nSpread Max: +10%\nAim Recoil: +50%\nRecoil Time: -15%\nProjectile Speed: -25%\nFire Rate: +15%\n\nWhen modified with the Vera Compensator3, your weapon will have a faster recovery time at cost of some loss of finesse allowing you to provide devastating salvos of suppressive fire.'), +(9571,'Yubarev Pistol','Weapon','Small','959520d7-d83d-45b7-9e7a-f6d057494736','','','Manufacturer: Lightning Bolt Co. \nItem Type: Pistol\nClass: Electron\n\nBattery Size: 10\nRate Of Fire: 350 rpm\nEffective Range: 35m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nEngineering excellence only scratches the surface of the distinct Yubarev pistol. Former merc turned weapon manufacturing mogul Irina Arkadova oversaw every aspect of the weapon, imbuing it with power, practicality, and panache. Featuring a classic woodgrain grip and cutting edge barrel design, the Yubarev fires a charged electron shot that impacts not only your target, amplifying the charge with each hit, but can spread to additional conductive targets in range.'), +(9572,'INTK_MISC_Reliant_Mako','FuelIntake','Fuel','95be3f8b-072a-4b36-b76e-cced9e883ac9','','',NULL), +(9573,'Oza','Cargo','Cargo','78de21f3-66a8-4e91-841c-f9f9cb2c1fc9','','',NULL), +(9574,'Door','Door','UNDEFINED','bbc356dd-88f6-450f-a958-c9361df381f3','','',NULL), +(9575,'Seat','Usable','UNDEFINED','0e0809f0-116a-4df9-90df-c515792567e8','','',NULL), +(9576,'Door Control','Door','UNDEFINED','9e309836-0a39-4bec-8cea-6f0857fafb73','','',NULL), +(9577,'DCP Armor Helmet New Dawn','Armor','Helmet','99840963-8d8b-4b87-90d6-4ac7dfc64a9d','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 16800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(9578,'Cutlass Black Ship Armor','Armor','Medium','a3182ef7-69e2-42b0-b115-8c49899d088e','','','Cutlass Black Ship Armor'), +(9579,'DCP Armor Helmet True Valor','Armor','Helmet','02f8aba6-608e-4826-b2b2-83cb4bb6a7f9','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 16800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(9580,'DCP Armor Helmet Clawed Steel','Armor','Helmet','e8d10cda-0991-4dbf-ba98-21246465b24e','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 16800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(9581,'TRGT. STATUS','Seat','UNDEFINED','d19c7678-8de0-42b8-8240-9d6c59c3d84b','','',NULL), +(9582,'Razorback Pants Violet','Char_Clothing_Legs','UNDEFINED','1d5a40cc-84c7-48e9-8bb0-8851e716a3aa','','','Carrying Capacity: 2K µSCU\n\nDMC\'s Razorback pants are made to be worn. Built from industrial quality material, they feature reinforced kneepads to prevent tears on the job and stay rugged yet comfortable.\n\nWomen\'s sizes currently out of stock.'), +(9583,'DCP Armor Helmet Cobalt Camo','Armor','Helmet','41d598bf-77fe-4b39-9e46-af9ee37f8498','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 16800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(9584,'DCP Armor Helmet Jungle Camo','Armor','Helmet','dfa621c1-849e-4370-bf1d-f359f3cac40b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 16800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(9585,'Door Control','ControlPanel','DoorPart','19ddf50a-9425-400d-9ec6-9c6dd56b12cc','','',NULL), +(9586,'DCP Armor Helmet Hunter Camo','Armor','Helmet','b348a315-1f87-49e0-bb9d-8e039f26928e','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 16800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(9587,'Warden Backpack Hiro','Armor','Backpack','53c1ab65-7aaa-4965-b0e2-0ba5a262e4d2','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nThis hard backpack from Virgil, Ltd. makes travel easy. Whether you need a place to carry your weapons or you\'ve decided to bring some extra rations along for a long journey, this backpack was designed to handle any occasion. The interior features a generous, closeable pocket to keep your small items from falling out of place.\n\nThe Hiro edition features a clean white finish with dark gray accents.'), +(9588,'GPI_Relay_1slot_001','Relay','UNDEFINED','76b49f01-1ecc-4ebd-a0f2-3d71eb6c4d6c','','',NULL), +(9589,'AEGS_Javelin_SCItem_Seat_Captain_Console','Seat','UNDEFINED','9cb4ac9b-0032-4719-9e53-0be05c08a864','','',NULL), +(9590,'Harlowe Shirt Tan','Char_Clothing_Torso_0','UNDEFINED','50569cd6-3f95-4321-b33e-17f1db229840','','','Capable as being worn on its own or as a base for layers, this long-sleeve henley style shirt from Alejo Brothers keeps you stylish and comfortable.'), +(9591,'Carryable_1H_CY_glass_tumbler_vodka_1_a','Misc','UNDEFINED','ea412161-79ae-44b0-9394-263797893208','','',NULL), +(9592,'Harvestable_Meat_1H_MarokMeat','Misc','Harvestable','ee581cd6-aee2-48af-822d-1a3f5e4bfb99','','',NULL), +(9593,'Decari Pod','Misc','UNDEFINED','0a7737eb-3240-4017-b7f5-99843a7c5631','','',NULL), +(9594,'AEGS_Hammerhead_RADR_Display','Display','UNDEFINED','d21fe12d-31d3-4137-80a8-0b8113c88966','','',NULL), +(9595,'Gadget_Cabinet_kegr_fire_extinguisher_01_nogeo_low','Usable','UNDEFINED','c0854216-3499-4022-8bb3-87bcf4a7fe20','','',NULL), +(9596,'Tuvois Jacket Green','Char_Clothing_Torso_1','UNDEFINED','0ec53953-9ce1-4e1d-9ea9-3193e086d6fc','','','Carrying Capacity: 1K µSCU\n\nCreated in collaboration with legendary designer Avon, OpalSky is proud to unveil the Tuvois, an open vest featuring stark, bold styling that\'s destined to make an impression. \n\nWomen\'s sizes currently out of stock.'), +(9597,'Yeng’tu Repeater','Weapon','Gun','a9780953-9488-4644-9b56-61464e9dd6b9','','','Item Type: Laser Repeater\nManufacturer: Torral Aggregate\nSize: 3\n\nInspired by Xi\'an mil-tech and tailor-made by Torral Aggregate exclusively for the Aopoa San\'tok.yāi, the Yeng\'tu laser repeater accentuates the ship\'s dexterity with a fighter\'s edge.'), +(9598,'Razorback Pants Tan','Char_Clothing_Legs','UNDEFINED','f1234b24-a673-4748-8c0a-e92abb88a778','','','Carrying Capacity: 2K µSCU\n\nDMC\'s Razorback pants are made to be worn. Built from industrial quality material, they feature reinforced kneepads to prevent tears on the job and stay rugged yet comfortable.\n\nWomen\'s sizes currently out of stock.'), +(9599,'orig_bedding_duvet_3_h','Seat','UNDEFINED','3bb23cf8-274f-44e2-8e79-320d23c31b3c','','',NULL), +(9600,'Arrowhead \"Nightstalker\" Sniper Rifle','Weapon','Medium','effc4f70-077f-49e3-ad97-53193626aabd','','','Manufacturer: Klaus & Werner\nItem Type: Sniper Rifle\nClass: Energy (Laser)\n\nBattery Size: 20\nRate Of Fire: 50 rpm\nEffective Range: 100 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nKlaus & Werner’s Arrowhead Model VI long-range energy rifle features a fiberglass composite body capable of withstanding any number of rigorous environments both in atmosphere and out. Built with a precision stock, compound scope and built-in bipod, the Arrowhead offers a stable and devastating weapon for operators who want to keep their distance, but stay in the fight.'), +(9601,'Arrowhead Sniper Rifle','Weapon','Medium','5ea1071e-2dc7-4c96-8ae7-aa10775a093a','','','Manufacturer: Klaus & Werner\nItem Type: Sniper Rifle\nClass: Energy (Laser)\n\nBattery Size: 20\nRate Of Fire: 50 rpm\nEffective Range: 100 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nKlaus & Werner’s Arrowhead Model VI long-range energy rifle features a fiberglass composite body capable of withstanding any number of rigorous environments both in atmosphere and out. Built with a precision stock, compound scope and built-in bipod, the Arrowhead offers a stable and devastating weapon for operators who want to keep their distance, but stay in the fight.'), +(9602,'Pressurized Ice','Cargo','Cargo','e78a76ea-4e7e-4fd4-afb2-7faaa99f2c87','','',NULL), +(9603,'AEGS_Retaliator_SCItem_Seat_Bed_Upper_Right','Seat','UNDEFINED','1e82fe51-96a0-4a09-8b79-0edc49ae2617','','',NULL), +(9604,'Carryable_1H_CY_weight_dumbbell_1_20kg_c','Misc','UNDEFINED','f6ac10ff-d6e7-478a-ad98-9cc5725a4320','','',NULL), +(9605,'Starlancer Crusader Livery','Paints','UNDEFINED','2cf0cffb-7abc-4a65-b52a-bc74b30007e1','','','The Crusader livery for the Starlancer features the company\'s logo atop a light blue base paint with black and white highlights.'), +(9606,'Elevator Control','Door','UNDEFINED','eeb6398c-392a-4b83-96ba-adb7df94ac27','','',NULL), +(9607,'Carryable_1H_SQ_DataPad_Fluff_StormBreaker_ResearchFacility_Transport','Misc','UNDEFINED','4e6f1821-63f4-8eaf-413c-eac5e68331a5','','',NULL), +(9608,'Luminalia Gift','Cargo','Cargo','608890e1-e4b8-424a-b1d4-483884dbb8b9','','',NULL), +(9609,'Internal Tank','QuantumFuelTank','QuantumFuel','97556e78-72af-4b90-ba3e-cad71e134bb5','','',NULL), +(9610,'Oracle Helmet Sienna','Armor','Helmet','c134cd92-c19e-49e6-9a7a-bc8ef272a5f8','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(9611,'Libio Jacket Green','Char_Clothing_Torso_1','UNDEFINED','8c995ee7-389f-4a8c-ae2d-7231ea4d5ff9','','','Carrying Capacity: 1K µSCU\n\nOne of OpalSky\'s classic pullovers, the Libio features a two-tone asymmetrical pattern and polyweave blend to keep it elegant and striking every time you wear it.\n\nWomen\'s sizes currently out of stock.'), +(9612,'Door Control','Door','UNDEFINED','e278f426-062c-4c0a-9678-809833a5c316','','',NULL), +(9613,'Strata Backpack ArcCorp Edition','Armor','Backpack','3bb8ddf3-d6e3-4709-894b-9abfa4260c05','','','Item Type: Medium Backpack\nCarrying Capacity: 127.5K µSCU\nCore Compatibility: Medium & Heavy\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The ArcCorp Edition was made specifically for the company.'), +(9614,'Remote Turret','Turret','GunTurret','f627cdcb-5597-4d05-b96d-80129104aba2','','','Remote Turret'), +(9615,'Savannah Kopion Horn','Misc','Harvestable','b9141d18-a8c4-4ac1-a2af-6bf91f441950','','','The horn of the kopion is made of a unique combination of bone and naturally-occurring carbon nanomaterials. When properly processed, it can be used to aid in bone regeneration with a far greater rate of success than lab-grown materials. This application has made it a valuable commodity.'), +(9616,'Door Control','Door','UNDEFINED','cb222138-4f62-44d4-8dc4-934868b157ad','','',NULL), +(9617,'Aphorite','Cargo','Cargo','2361fb12-d954-49ca-a094-67f7852e9578','','',NULL), +(9618,'Beacon Undersuit','Armor','Undersuit','b8bad4f1-faa8-4e9a-b7ba-55a0418026cb','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRSI\'s Beacon undersuit is a general use utility designed to provide total protection against environments and vacuum. Built out of a durable but flexible polymers, the Beacon provides a wide freedom of motion for a variety of body types.'), +(9619,'Luminalia Light Stick','Weapon','Grenade','3530c6a3-3223-4dea-ae01-47d3b821b0ae','','','Put the glow into \"Glow Festival\" with this festive Luminalia light stick. Turn it on and watch any room magically transform into a holiday wonderland.'), +(9620,'FLTR-XL Module','MiningModifier','Gun','6ebc1ebe-3058-4d41-b45b-6022f322d623','','','Manufacturer: Greycat Industrial\nItem Type: Mining Module (Passive)\n\nInert Material Level: -24%\n\nExtraction Laser Power: 95%\n\nReduce the amount of inert material collected from deposits with the FLTR-XL Module. Though it reduces the laser\'s extraction power, the FLTR-XL\'s patented filtration system screens out inert material to leave more storage space for valuable ore.'), +(9621,'Radiance','PowerPlant','Power','64844114-2aaa-4292-9326-0e3ac941afd9','','','Item Type: Power Plant\nManufacturer: Sakura Sun\nSize: 2\nGrade: B\nClass: Civilian\n\nConsidering its extensive and extremely diverse line of products, it’s incredible that Sakura Sun can maintain such quality and consistency. The Radiance power plant is a perfect example. A staple of their product line for years, the Radiance has won multiple consumer awards for its reliability and overall performance.'), +(9622,'Door Control','Door','UNDEFINED','1e98cae8-f75a-4de9-90a3-728a85c78bbf','','',NULL), +(9623,'MISC_Hull_C_Engineer_Console','Seat','UNDEFINED','5c301ef1-8dd9-404d-8467-8b2dd755fd99','','',NULL), +(9624,'counter_display_02x01x01_08Ports','ShopDisplay','UNDEFINED','31c239b6-2eae-41c6-97d6-ee36e2d53f56','','',NULL), +(9625,'Hull A Trailblazer Livery','Paints','UNDEFINED','48a27c8a-bb93-4bbd-96ee-86885a46d2ad','','','The Trailblazer livery creates a cool, understated style for your Hull A with grey on top and dark red on the bottom.'), +(9626,'Carryable_1H_CY_cutlery_chopsticks_set_1_a','Weapon','Knife','463bb84f-960f-4ffa-85aa-716ab8ce788b','','',NULL), +(9627,'Sabre Star Kitten Livery','Paints','UNDEFINED','5a9caa9e-e5b0-495e-baf8-9b117316d7b8','','','Embody Sally the Star Kitten\'s racing spirit with this custom Sabre livery. Combining the bright pink, vibrant blue, and crisp white of the beloved cartoon mascot, this livery brings a playfulness your competitors are sure to enjoy.'), +(9628,'RSI Polaris Torpedo Rack','MissileLauncher','MissileRack','ddd8d826-755f-4033-a58c-823f7047e18c','','','Item Type: Torpedo Rack\nManufacturer: RSI\nSize: 10\nTorpedo: 7xS10 \n\nBring the impressive firepower of the Polaris to bear with this bespoke torpedo rack holding seven massive S10 torpedoes.'), +(9629,'Torite','Cargo','Cargo','f43892db-be6e-4321-aac0-663282a23721','','',NULL), +(9630,'Laranite','Cargo','Cargo','b769fe42-9320-4453-b17f-c7494467312e','','',NULL), +(9631,'Dragonfly Roustabout Livery (Modified)','Paints','UNDEFINED','0dd8db43-36aa-445b-99b4-d92c0c80ce9e','','','This version of the livery has been modified from its original form with the addition of graffiti. Released in 2893 to celebrate the 400th anniversary of Pyro\'s discovery, the Roustabout livery gets it look and name from the ship whose scans led to the discovery of the first jump point into the system. It also features the logo of Pyrotechnic Amalgamated, the now-defunct mining company that named the system.'), +(9632,'Outback Helmet Molten','Armor','Helmet','c14c37c2-36cb-416a-9ca1-21584db42f71','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -65 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2k µSCU\n\nThis full-coverage reinforced leather helmet incorporates darkened goggles and a heavy-duty rebreather suitable for low oxygen environments. Visor is AR Crosshair compatible. The Molten version is dyed a deep red to keep you subtle, but not unsightly.'), +(9633,'DCP Armor Core True Valor','Armor','Torso','81eed668-bc58-482e-818d-869743c6aa5f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(9634,'AEGS_Door_Decal_Escapepods_03','Decal','DoorPart','89adb0dc-aaba-4af0-8455-6cd3e4aa91ad','','',NULL), +(9635,'Field Recon Suit Core','Armor','Torso','1516552d-9a25-40f5-9aed-e99e2dae8017','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -32 / 62 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nCDS’ Field Recon Suit is the perfect solution for the combat operator who wants a little extra protection without compromising any of their situational agility. EdgeCore composite plating is strategically sewn into the nano-weave suit to cover vital organs while keeping the suit flexible.'), +(9636,'Stud','Char_Head_Piercings','UNDEFINED','ae661336-5475-41ed-88d3-8b7a6733ead1','','',NULL), +(9637,'endcap_01_hanging_clothing_6Ports','ShopDisplay','Default','218abe69-f24f-4b52-8c98-d3e36c9f5fa3','','',NULL), +(9638,'VNCL_Gen2_PlasmaCannon_PowerArray_S4','WeaponAttachment','PowerArray','37b1d2de-4d15-4dba-96b8-d6c9269992c6','','',NULL), +(9639,'UI_EnvironmentScreen_Phoenix_AttractAnim','StatusScreen','AirlockPart','2c7e88d2-2217-497e-8a8e-83923790d30a','','',NULL), +(9640,'display_guns_04x01x01_3Ports','ShopDisplay','UNDEFINED','c3524537-53ab-4d30-829e-f5fffd5e9e55','','',NULL), +(9641,'Manned Turret','UtilityTurret','MannedTurret','facf753c-5895-4cd1-9bf8-a6b77208a580','','',NULL), +(9642,'Emod Stabilizer2','WeaponAttachment','Barrel','ecbc4c11-95f3-4bd3-9fad-49bba798a942','','','Manufacturer: ArmaMod\nType: Energy Stabilizer\nAttachment Point: Barrel\nSize: 2\n\nVisual Recoil: -30%\n\nArmaMod designed the Emod Stabilizer2 attachment to improve visual stability allowing for a more precise shot.'), +(9643,'Wolf Antilles Livery','Paints','UNDEFINED','b6ad06f5-4e7d-4d16-9d8e-45a4bebe84fc','','','The Antilles livery for the Wolf features a vibrant, electric blue base paint and bright red tail section.'), +(9644,'Jumping Limes','Cargo','Cargo','190c675b-0250-467a-ad3a-4f020e18b3df','','',NULL), +(9645,'AIModule_Unmanned_PU_PDC_CRIM','AIModule','UNDEFINED','6959c81c-06c0-4dcb-bdd2-c9a9df84ded2','','',NULL), +(9646,'Blue Bilva','Cargo','Cargo','2d3f3e66-95a8-4629-bb80-ec34d65b73a9','','',NULL), +(9647,'Door','Door','UNDEFINED','f961188f-ec17-4067-9eab-797feea032ad','','',NULL), +(9648,'Sizi Knife','Weapon','Knife','84d29f4f-36af-4343-b350-9b1954a07e15','','','Manufacturer: Banu\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nWith its trailing point tip, curved belly, and sturdy spine, the Sizi knife was crafted with meticulous attention to detail, balance, and usability. Featuring an intricate Banu design, additional chromium was added to the metal to ensure long-term resistance against corrosion.'), +(9649,'Venture Undersuit Yellow','Armor','Undersuit','74973552-2d0c-47bb-9411-1fbe4d965f3b','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(9650,'H_Dashboard_Projector_HUD_Generic_Alt_T','Display','UNDEFINED','0e5f3e52-9da1-4340-aecc-a5f6df3ecc13','','',NULL), +(9651,'AIModule_Unmanned_PU_UEE_GreenZone_Missile_Turret','AIModule','UNDEFINED','759eb100-fac4-468e-b677-bd9960eb2017','','',NULL), +(9652,'Carryable_1H_CY_medical_hammer_1_a','Misc','UNDEFINED','9cee8285-633c-47a2-a477-47ccb3f56462','','',NULL), +(9653,'Neograph','Cargo','Cargo','54b8e0a7-0768-442a-ab6a-e6135932f7df','','',NULL), +(9654,'DRAK_Vulture_Salvage_Arm_Left','ToolArm','UNDEFINED','374a959e-0b71-49ee-9f69-b7df06d6c581','','',NULL), +(9655,'CF-557 Galdereen Repeater','Weapon','Gun','d55ffb79-a3b9-4765-8ed6-15b882ec548c','','','Manufacturer: Klaus & Werner\nItem Type: Laser Repeater\nSize: 5\n\nWith a bite as fearsome as its fanged namesake, the Klaus & Werner CF-557 Galdereen laser repeater is a solid choice for a wide range of vehicles thanks to its high rate of fire and consistent efficacy.'), +(9656,'display_components_pallet_250x125x025_coolers','ShopDisplay','UNDEFINED','3c96ecee-747a-494b-ad53-9f568afd03f7','','',NULL), +(9657,'Controller_Salvage_AEGS_Reclaimer_ArmOperator','SalvageController','UNDEFINED','70c1c943-a363-420f-9e97-92d240f34a82','','',NULL), +(9658,'Savoir','Radar','MidRangeRadar','86c8ec89-6fa6-4bbe-852c-d9e98bb41325','','','Item Type: Radar\nManufacturer: Groupe Nouveau Paradigme\nSize: 2\nGrade: D\nClass: Military\n\nBoasting a decent range and energy efficiency, the Savoir is a radar designed for those that favor reliability.'), +(9659,'ANVL_Carrack_Thruster_Mav','ManneuverThruster','FixedThruster','758cda94-601c-438d-9171-bd048418c7b0','','',NULL), +(9660,'Prowler Hamada Livery','Paints','UNDEFINED','25b3d795-84c3-41c2-88d5-94c82c75e07f','','','The Hamada livery mixes tan and various shade of brown on the Prowler.'), +(9661,'QuadraCell MX','PowerPlant','Power','ecea4817-3a40-480d-918d-6fe8cf7227c2','','','Item Type: Power Plant\nManufacturer: Aegis Dynamics\nSize: 3\nGrade: A \nClass: Military\n\nAegis engineers set out to create a power plant that could deliver the performance and durability needed during prolonged engagements. The QuadraCell MX was the result. This large power plant received years of strenuous field testing before finally becoming available to the public.'), +(9662,'Internal Tank','QuantumFuelTank','QuantumFuel','83853b87-b284-49e4-8118-0df8785bc877','','',NULL), +(9663,'Freelancer ArcCorp Livery','Paints','UNDEFINED','f47bd64a-7721-4de1-9567-51d510d3e9f1','','','The ArcCorp livery for the Freelancer features the company\'s logo atop a maroon base paint with black and yellow highlights.'), +(9664,'Odyssey II Helmet Olive','Armor','Helmet','ca6c62bf-9057-400a-8798-e1a68a7435fc','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(9665,'Door Control','Door','UNDEFINED','5fb6352f-1e54-44be-8802-9944aef6ec13','','',NULL), +(9666,'ORIG_600i_Dashboard_Bridge_Right','SeatDashboard','UNDEFINED','0d839e0e-1778-4899-8d7f-5153238e4ffd','','',NULL), +(9667,'Sabine Undersuit Year of the Rat','Armor','Undersuit','1e5820ef-6627-476d-9201-7bf4493267eb','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThe Sabine embodies the advanced look and performance you expect from Quirinus Tech. This cutting edge undersuit integrates strong, yet flexible microweaves with strategically placed plating to provide protection while remaining lightweight. Featuring a sleek design, the Sabine undersuit will ensure you stay safe and stylish no matter the path ahead. \n\nThis special variant is adorned with a Year of the Rat symbol on the abdomen and features deep red and gleaming gold accents to help give your lunar new year an auspicious start.'), +(9668,'Manned Turret','TurretBase','MannedTurret','83a0c38e-83f6-4ebd-9d0e-6bc2e538fb7a','','',NULL), +(9669,'PAB-1 Core Black','Armor','Torso','8db259bf-a608-4187-8d3e-ab3f11b54582','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(9670,'Table_Booth_4_Seat_ORIG_400i','Usable','UNDEFINED','15f21883-d311-4df3-a5b7-40ac6cc29c03','','',NULL), +(9671,'Orange QuikFlarePro','Weapon','Grenade','2a3d6a82-b18f-4475-a4f4-85c5b6019ed1','','','Manufacturer: Shubin Interstellar\n\nIlluminate the way forward or signal for help with the Orange QuikFlarePro from Shubin Interstellar. For centuries, miners have counted on this flare as part of their core toolkit, thanks to its tried and true design and durability that ensures it stays ablaze in the various harsh weather and difficult atmospheric conditions encountered across the \'verse. The QuikFlarePro uses advanced tech to glow longer than regular flares.'), +(9672,'Drake Caterpillar Weapon Mount','Turret','GunTurret','04715722-9661-41f9-8932-961bfda89d34','','','Drake Caterpillar Weapon Mount'), +(9673,'Tempus Tank Olive','Char_Clothing_Torso_0','UNDEFINED','ec0cc130-be78-486b-9ab2-2e875c16fcf6','','','This classic tank by 987 is made with moisture-wicking fabric to keep you cool when you\'re at your most active. Each shirt comes with a bracer and a bandolier to create a bold and aggressive style.'), +(9674,'Aves Starchaser Helmet','Armor','Helmet','47698727-a43f-4172-9441-e3dabaa6954b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nCC\'s Conversions is proud to release the Aves Starchaser helmet to celebrate the beautiful and unique history of the Tevarin culture. This medium helmet honors traditional stylings with colorful white, purple, and grey plating, giving the helmet a bold and dynamic feel worthy of this great species. Visor is AR crosshair compatible.'), +(9675,'High End Couch','Usable','Cargo','c4dc650a-3020-4a7b-8f71-5791abfb29c3','','','Couch Decoration'), +(9676,'Venture Arms White','Armor','Arms','45ef2b88-d1d6-4439-a18f-bab47ef90a5e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(9677,'Frontier 05 Pants Noble','Char_Clothing_Legs','UNDEFINED','b61678bc-4b05-4b15-ba60-7fbe22a88caa','','','Carrying Capacity: 0.5K µSCU\n\nDMC\'s Frontier collection has been a staple of frontier living for centuries. These heavy denim workpants have double-stitched reinforcement and stainguard technology, making them dependable pants for any environment day in and day out.'), +(9678,'PAB-1 Arms Aqua','Armor','Arms','5f139f83-a414-4e85-88fd-7c177213f530','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(9679,'Book','Misc','UNDEFINED','83d37d14-c1b7-4293-a6c3-ccbf6f8c834e','','',NULL), +(9680,'MISC_Freelancer_Base_SCItem_Dashboard_Passenger_Left','SeatDashboard','UNDEFINED','4705d6e2-d372-4749-be3e-1f16efd02d35','','',NULL), +(9681,'Flight Blade','FlightController','UNDEFINED','8f95050d-6df6-4fe5-868a-137e3a492a1f','','',NULL), +(9682,'Giotto Jacket Crusader Edition','Char_Clothing_Torso_1','UNDEFINED','8c866f86-07c3-4ad8-8edc-9f6fc9fb3d01','','','Carrying Capacity: 1K µSCU\n\nFiore elevates the typical suit jacket with the Giotto. Subtle and stylish flourishes include light lines running down the left lapel and a strip of accent fabric along the arm seams that connect across the back of the jacket. The end result is an elegant and inspired addition to any wardrobe.\n\nThe Crusader Edition was made specifically for employees of Crusader Industries.'), +(9683,'RSI Noise Launcher','WeaponDefensive','CountermeasureLauncher','12f47a5d-e24e-4e20-9a94-3c74eade08c6','','','RSI Noise Launcher'), +(9684,'vanduul_thul_legs_01_01_01','Armor','Legs','56d07cfa-87e6-45fb-b752-3b2c053570dc','','',NULL), +(9685,'Carinite (Pure)','Cargo','Cargo','d2c48b4a-eae5-423b-8677-f4c916cb4346','','','Typical carinite sources feature various impurities. However, under certain extremely rare conditions, carinite veins that are more than 90% pure can form. Computing hardware that demands exacting precision will usually seek out pure carinite.'), +(9686,'H_Dashboard_Projector_HUD_DRAK_Golem','Display','UNDEFINED','0efac064-1e77-4b47-9772-20cca4044511','','',NULL), +(9687,'TrueDef-Pro Core Red/Silver','Armor','Torso','8b66c6fa-7d79-4df8-aa07-21f423aba990','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(9688,'Strata Core Greycat Edition','Armor','Torso','7902359a-6e60-4710-b962-a483b67a2646','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 15k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpack Compatibility: Light & Medium \n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Greycat Edition features the colors and logo of the company.'), +(9689,'Kavir Pants Redwood','Char_Clothing_Legs','UNDEFINED','5ff255a1-c4a8-438e-b809-f45a51dd4493','','','Carrying Capacity: 0.4K µSCU\n\nBlending Habidash style and ingenuity, the Kavir pants feature fashionable flourishes alongside practical perks ideal for managing extreme environments. Several fabric pieces are sewn directly into a thick, integrated belt that divides the pants between a large elastic waistband and looser, breathable cotton blend fabric through the legs. There are also two bands of fabric that ring the shins to keep dirt and other elements out.'), +(9690,'Vehicle_Screen_MFD_Holographic_MISC_Prospector_MR','Display','UNDEFINED','cbc378f8-c89f-445c-a95a-9c0c956aabdd','','',NULL), +(9691,'Parallax \"Downburst Camo\" Energy Assault Rifle','Weapon','Medium','2d446580-f196-416a-806a-c35065c305a9','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Assault Rifle\nClass: Energy (Electron)\n\nBattery Size: 80\nRate of Fire: 200 rpm - Beam\nEffective Range: 30 m\n\nAttachments: Optics (S2), Underbarrel (S2)\n\nWith the Parallax, VOLT offers consumers a rugged assault rifle design with features like a larger-than-average battery and a unique actuator that enables the weapon to scale up into a persistent beam as it fires.\n\nThe \"Downburst Camo\" is characterized by a black camo pattern with elegant gold detailing.'), +(9692,'Seat','Usable','UNDEFINED','1dd346f2-77c4-45bc-9186-7013632d4f8c','','',NULL), +(9693,'ARGO_ATLS_Battery_Storage','Usable','UNDEFINED','6e4d388b-d3bf-40ec-9686-aa9cec5cda47','','',NULL), +(9694,'Hornet Mk II Bracken Livery','Paints','UNDEFINED','636ecfea-6433-49c1-a050-12af54861906','','','Mark the occasion with a splash of color thanks to the Bracken livery featuring a sage green hull paired with deep orange accents.'), +(9695,'SHIELDS','ShieldController','UNDEFINED','50c12341-5b66-4ecb-8c43-25043d262e6a','','',NULL), +(9696,'MSD-341 Missile Rack','MissileLauncher','MissileRack','50593138-ee3f-4cc8-9654-b25c1bb6a569','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 3\nMissiles: 4xS1\n\nBehring’s MSD-341 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 3 hardpoint for the reliable and effective launch of four S1 missiles.'), +(9697,'Odyssey II Helmet Envy','Armor','Helmet','0d701b2d-e9c4-4772-bfde-139b7dfdacb8','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up. This special Envy edition inspired by the Coramor festival features a vibrant pink and purple color scheme for the most enthusiastic of lovers.'), +(9698,'Seat','Usable','UNDEFINED','c0f4cba8-4714-44f8-bcef-53abd4cc1bdc','','',NULL), +(9699,'Remote Turret','Turret','GunTurret','06649c1a-a839-4a74-9ac9-c93505c58f72','','',NULL), +(9700,'Polaris 2955 Ship Showdown Poster','Misc','Utility','7ecb4050-95ee-4c32-ab2f-6c87d840aec1','','','Congratulations to the Polaris for winning the 2955 Ship Showdown. This poster celebrates the beloved corvette-class capital ship that sports devastating firepower and a hangar that can fit a light fighter.'), +(9701,'F8C Lightning 2954 Ship Showdown Poster','Misc','Utility','b335ad9f-3bdb-489b-ade9-a96be3a6e287','','','Congratulations to the F8C Lightning for winning the 2954 Ship Showdown. This poster honors the Lightning, a ship that has protected Humanity countless times from countless threats at home and far from civilization.'), +(9702,'Corsair Flashpoint Livery','Paints','UNDEFINED','a6b9e53f-618e-4384-85cf-24802c13f12b','','','Bright red and crisp white combine in the Flashpoint livery to deliver a dynamic look to the Corsair.'), +(9703,'Vulture 2953 Ship Showdown Poster','Misc','Utility','2c029de8-8313-440e-bcbf-670c9105d921','','','Celebrate the Vulture, Drake Interplanetary\'s rugged wreck-ripper, making the final four of the 2953 Ship Showdown with this poster of the ship mid-flight.'), +(9704,'Pipe','Misc','Personal','839698f7-9c5e-4c21-90d0-6751b4ed92fe','','',NULL), +(9705,'CRUS_Starlifter_Ext_Door_Left_Sm_HACK','Container','UNDEFINED','f9350864-834a-49d3-a069-11f21217064c','','',NULL), +(9706,'TE_weapon_box__apar_special_ballistic_01','Misc','UNDEFINED','de4d9648-3d69-44b9-8aea-629649db4f4c','','',NULL), +(9707,'Carryable_1H_SQ_Datapad_Fluff_ContestedZone_Pyro','Misc','UNDEFINED','5bc1793f-7330-42cd-bc0c-1de02603a05d','','',NULL), +(9708,'Mug','Drink','UNDEFINED','6377020e-3f0d-4274-b3d3-e694b07e8c56','','','A small, handled drinking vessel made from insulating ceramic to help keep bevarages warm.'), +(9709,'Utensil_Plate_LambStalford','Misc','UNDEFINED','a9860df1-f399-4e15-af2f-f4573d451040','','',NULL), +(9710,'Taberna Jacket Crimson','Char_Clothing_Torso_1','UNDEFINED','0a2186df-58b5-48e3-b678-b0372b6e9578','','','Carrying Capacity: 5K µSCU\n\nThe Taberna jacket delivers refined design for rugged conditions. It features a weather resistant outer shell with additional paneling on the torso and arms. An integrated hood and shawl provide extra protection from the elements while a spacious toolbelt ensures gear remains within reach.'), +(9711,'DCP Armor Arms True Valor','Armor','Arms','305dbfd0-e44e-4654-afe3-1ce02f396840','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(9712,'Human Food Bars T-Shirt','Char_Clothing_Torso_0','UNDEFINED','6b9438fe-6559-4c7d-b242-7235100321ab','','','Eat, Humans! \n\nA Banu souli made this shirt to promote Human Food Bars, an all-around excellent energy source for hungry Humans. Be sure to track down these yummy, Human friendly treats when visiting Banu space.'), +(9713,'TRGT. STATUS','Seat','UNDEFINED','75e1779a-b257-435a-8e0f-191614f5c5d7','','',NULL), +(9714,'ht_glass_whiskey_1_a','Misc','UNDEFINED','15cc3135-d0fb-4f36-a520-fe5454409b82','','',NULL), +(9715,'Table_Booth_4_Seat_rdwn_c','Usable','UNDEFINED','0e483310-55c7-4fd7-ad9b-102c030bacb3','','',NULL), +(9716,'GP-33 MOD \"Ashfall\" Grenade Launcher','Weapon','Medium','e4a479eb-e58d-4fba-8d48-037af894b7b9','','','Manufacturer: Behring\nItem Type: Grenade Launcher\nClass: Ballistic\n\nMagazine Size: 6\nRate Of Fire: 40 rpm\nEffective Range: Variable (80m)\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nThe military-grade GP-33 MOD launcher fires 40mm grenades to clear rooms and flush out enemies behind cover thanks to Behring\'s precision design that primes each grenade to explode on impact. The Ashfall edition mixes dark blue, grey, and black for a subtle yet stylish look.'), +(9717,'Book','Misc','UNDEFINED','19683cd3-bdd7-4f2b-8f2f-306b8f271c09','','',NULL), +(9718,'Flight Blade','FlightController','UNDEFINED','c2037b91-9793-47b9-99f6-8ad97ca6cafc','','',NULL), +(9719,'stand_shop_small_b_PowerPlant','ShopDisplay','UNDEFINED','473acd17-9d42-490a-b677-6d1e212111b2','','',NULL), +(9720,'DRAK_Cutter_Winglets_Scout_Left','Misc','UNDEFINED','cef7f74c-9271-4ea6-b90c-7a67a9161eea','','',NULL), +(9721,'MacFlex Arms White','Armor','Arms','debaadff-62cb-4a4a-bf9e-d356891d8731','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(9722,'Weapon Rack','Usable','UNDEFINED','791cb2a7-afc2-4cc9-82b9-8900fda396e8','','',NULL), +(9723,'ESPR_BallisticCannon_Ventilation_S6','WeaponAttachment','Ventilation','bdc87185-924f-4e38-bf40-4947c02c77b5','','',NULL), +(9724,'ORIG_890_Jump_Thruster_Main_BR','MainThruster','FixedThruster','e983028e-9a77-498e-bfac-9bab610f6350','','',NULL), +(9725,'Seat','Usable','UNDEFINED','e8385457-94eb-43a8-963a-8986d4f16839','','',NULL), +(9726,'Carryable_TBO_FL_16SCU_Commodity_ProcessedGoods_HolidayLetter','Cargo','Cargo','da949c76-f97f-4094-b020-7f873de96923','','',NULL), +(9727,'Armor_Crate_CZ_Horizon_H_002','Usable','UNDEFINED','b48e0aa9-28f8-4b20-821d-8e96f31f2599','','',NULL), +(9728,'bar_box_energy_onemeal_chicken','ShopDisplay','Default','a4753500-5001-4c89-ab18-677654b2e568','','',NULL), +(9729,'Lamont Tawny Undersuit','Armor','Undersuit','990e975e-2693-4d6a-8556-735cb593fdb4','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe Lamont looks so good you won\'t want to wear armor over it. Seamlessly blending lightweight plating with durable synthetic weaves, the Lamont will be as comfortable in the cockpit as it is stylish in the streets. Embrace personal protection gear suitable for both work and play, and gain the Hardin Tactical advantage.'), +(9730,'Fluorine','Cargo','Cargo','2e9ea45c-6dfa-463b-b9c0-ca7b051ff4e7','','',NULL), +(9731,'Door Control','ControlPanel','DoorPart','b07a9c94-b9a8-4244-8e8f-ef7308b0ca65','','',NULL), +(9732,'ARGO_MPUV_1T_Thruster_Aux_Bottom','ManneuverThruster','JointThruster','53dc2220-9da4-4ebb-b81a-6bcfdc55d17a','','',NULL), +(9733,'Geist Armor Core','Armor','Torso','619bfecf-f076-46aa-bc4f-bf2b1e1b5aeb','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(9734,'Radar_Display_Arrow','Display','UNDEFINED','07265c0a-6727-499e-a775-dbc2cbb63819','','',NULL), +(9735,'Venator Boots','Char_Clothing_Feet','UNDEFINED','ffe46207-98b3-4476-b1e7-5aeb0bbdab3d','','','Whether you need to run or stand your ground, these rugged, lightweight all-terrain boots with reinforced uppers and acid-resistant tru-grip soles are the perfect choice.'), +(9736,'RSI_Perseus_Thruster_Retro_Front_Top_Right','ManneuverThruster','Retro','17c25f97-8aed-4abb-b244-c973bc5d212e','','',NULL), +(9737,'AEGS_Sabre_Peregrine_Thruster_Mav_Joint_01_Top','ManneuverThruster','Light','8c3ca3e5-a06c-488c-b166-02ebeda2b099','','',NULL), +(9738,'Black Prism (8x Telescopic)','WeaponAttachment','IronSight','71aac893-8957-42e2-8956-61985ab2c4a5','','','Manufacturer: Kastak Arms\nType: Telescopic \nAttachment Point: Optic \nMagnification: 8x\nAim Time: +0%\nSize: 3\n\nDelivering accurate fire at long distances is a skill that comes with practice – and the use of a proper scope like Kastak Arms\' Black Prism. Crafted with rugged, multi-coated crystalens to deliver bright, clear visuals, this 8x telescopic sight is completely at home on your favorite rifle.'), +(9739,'Mixed Mining','Cargo','Cargo','490e5b84-4e0a-4484-9b53-1abc2b0757b7','','',NULL), +(9740,'RSI_Constellation_Aquila_Thruster_Retro','MainThruster','FixedThruster','f506b09d-5f6a-415f-9e36-9f58a7d1d271','','',NULL), +(9741,'Get Up Coffee (Mocha)','Drink','Can','b1873456-fa9d-4a91-870b-5f56f65a5c8b','','','HEI: 15\nEffects: Dehydrating, Cognitive Boosting\n\nGet Up Coffee is roasted with care to ensure a smooth blend of rich coffee flavor brewed to perfection. Enjoy your break even more with Mocha, our coffee enhanced with a swirl of chocolate and milk.'), +(9742,'RSI_Hermes_Thruster_Mav','ManneuverThruster','FixedThruster','4be7508d-1485-0281-0b33-fec8e9f7bc80','','',NULL), +(9743,'Bed','Usable','UNDEFINED','05f725b5-bbb5-47b6-ad72-b3d94a253dfb','','',NULL), +(9744,'ReadyGrip Tractor Module','SalvageModifier','SalvageModifier_TractorBeam','cdcddccb-247c-4fcb-ab5b-915822159c87','','','Manufacturer: Greycat Industrial\nItem Type: Tractor Beam\nMax Angle: 60°\nMax Range: 150 m\nFull Strength Distance: 75 m\n\nThe Ready Grip Tractor Module compresses the dependability and power of Greycat’s signature tractor beam technology into a smaller sub-component that can be attached to a salvaging laser head.'), +(9745,'Lynx Arms Embark','Armor','Arms','38313cd3-7f86-473d-8434-73140099d22d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(9746,'Flight Blade','FlightController','UNDEFINED','13dba098-234e-4f52-a613-c22b87e10f6e','','',NULL), +(9747,'ControlPanel_LightSwitch','ControlPanel','DoorPart','8ce774ea-8713-480b-ad4a-8cbec01785ab','','',NULL), +(9748,'Prim Shoes Yellow','Char_Clothing_Feet','UNDEFINED','dfc67794-2b20-40e1-a18a-d8d4023647d5','','','Professional yet casual, the Prim utilizes cutting-edge synthetic construction to provide maximum comfort and a shine that won\'t fade.'), +(9749,'IAE 2954 T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','d6807e5b-232a-4974-af0c-038499f96977','','','The official shirt of the 2954 Intergalactic Aerospace Expo. This soft and supremely comfortable cotton t-shirt is a crisp white with the IAE logo on the front, \"The Next Frontier\" tagline across the back, and the year on the right sleeve.'), +(9750,'Harlowe Shirt Black','Char_Clothing_Torso_0','UNDEFINED','f5d02ab9-5be9-4cae-a566-e13a9dafbfae','','','Capable as being worn on its own or as a base for layers, this long-sleeve henley style shirt from Alejo Brothers keeps you stylish and comfortable.'), +(9751,'Tempo Jacket Sterling Silver','Char_Clothing_Torso_1','UNDEFINED','e6405005-0330-494e-9edd-54f9e34c7b5e','','','Carrying Capacity: 1K µSCU\n\nFashionable, fun and flashy, the Tempo is a quilt studded jacket featuring a unique metallic finish to make you stand out from the crowd. 987 balanced this bold design with sections of synthetic leather and complementary colors ringing the waistband and inner collar.'), +(9752,'Carryable_1H_CY_cutlery_chopstick_1_a','Misc','UNDEFINED','4d1babed-67d1-4ac3-afa4-bb7e2e9bc6c8','','',NULL), +(9753,'sw_heavy_eva_helmet','Armor','Helmet','e60d1980-2501-4eba-96fb-d2565d0438a6','','',NULL), +(9754,'ESPR_LaserCannon_Ventilation_S6','WeaponAttachment','Ventilation','1c9551fa-7f87-4fbc-9771-4a7971d23831','','',NULL), +(9755,'DockingTube_Fuel_Ports_GAMA_Syulen','DockingCollar','UNDEFINED','8dbb209a-22ed-4fbc-a919-b0f239432b83','','',NULL), +(9756,'400i Polar Livery','Paints','UNDEFINED','8b2969cc-defb-46ee-a801-6d44a05ae4ee','','','Modify your 400i with this white and grey livery specifically designed for the 2951 IAE.'), +(9757,'Shackleton Shirt','Char_Clothing_Torso_0','UNDEFINED','d1788ca8-ee86-4ca6-bbbc-e80b70d86f40','','','Distressed to impress, the Shackleton line provides comfort with an edge. Escar Limited abrades the shirt fabric to give it a repurposed charm and unique look that fits in at home or on the streets.'), +(9758,'Ship Ammunition','Cargo','Cargo','d30bb56b-6f83-402c-a01a-fd6eb46ab022','','',NULL), +(9759,'Razorback Pants Dark Green','Char_Clothing_Legs','UNDEFINED','e754c08a-b7bd-4f50-a2df-350a923ec078','','','Carrying Capacity: 2K µSCU\n\nDMC\'s Razorback pants are made to be worn. Built from industrial quality material, they feature reinforced kneepads to prevent tears on the job and stay rugged yet comfortable.\n\nWomen\'s sizes currently out of stock.'), +(9760,'orig_bedding_duvet_3_i','Seat','UNDEFINED','216c1217-5657-441f-ad92-c69020ec8989','','',NULL), +(9761,'Seat','SeatAccess','UNDEFINED','8fc6cead-2a6d-4e31-9d65-693af7347252','','',NULL), +(9762,'ARMR_MISC_Fortune','Armor','Medium','9cfc21e1-0427-4ddc-977f-0eaa47ca68d4','','',NULL), +(9763,'bar_box_snagglestick_pepper','ShopDisplay','Default','d5969017-d122-4121-8107-776b2be06e22','','',NULL), +(9764,'Fury Cloudburst Livery','Paints','UNDEFINED','edf108d5-3c32-4774-afff-758b3b5d0cdd','','','Go with the flow in your Fury with the Cloudburst livery, which blends blue and light grey for a distinct finish evoking the harmony between water and sky.'), +(9765,'Aurora Mk II Medallion Livery','Paints','UNDEFINED','d48aa151-859e-42ef-bc55-764f12f42ac7','','','Merging grays, greens, and bronze, the metallic Medallion livery emphasizes the sturdiness of the ship\'s shape.'), +(9766,'Freelancer Star Kitten Livery','Paints','UNDEFINED','0b3ff5dc-6346-4d0a-b027-b0a9fe801414','','','Bring joy and a pastel palette to the Freelancer with the Star Kitten livery, which features bright pink and pale blue alongside images of the famous cartoon space cat Sally.'), +(9767,'lt_tool_fire_extinguisher_1_a','Misc','UNDEFINED','7f96bf4f-f64c-474d-9c31-e6f747096d66','','',NULL), +(9768,'AEGS_Hammerhead_SCItem_Dashboard_Captain_Room','SeatDashboard','UNDEFINED','5d77583e-066d-4b0f-9366-461967296a90','','',NULL), +(9769,'DRAK_Clipper_CargoGrid_Main','CargoGrid','UNDEFINED','c2581ae4-ac58-4573-8740-faba827b013f','','',NULL), +(9770,'Li-Tok Boots Dark Green','Char_Clothing_Feet','UNDEFINED','47aaf80f-c7ac-40df-8636-6b6a8bdf6503','','','Stylish yet rugged, NorthStar\'s Li-Tok boots are made from a composite nylon fabric, vulcanized rubber grips that hold fast to a variety of surfaces, and reinforced ankle support making these perfect for hanging out or on the job.\n\nWomen\'s sizes currently out of stock.'), +(9771,'Aves Helmet Epoque','Armor','Helmet','4c3b48ba-1b77-4fa6-800a-5ad54cb0c832','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nCC\'s Conversions is proud to release the Aves to celebrate the beautiful and unique history of the Tevarin culture. This medium helmet honors traditional stylings while perfectly fitting a Human head. Visor is AR crosshair compatible.\n\nThe Epoque edition features a navy and black coloring, finished with baroque gold detailing.'), +(9772,'H_Dashboard_Projector_HUD_RSI_Perseus_CoPi','Display','UNDEFINED','f9be348d-0078-4017-bbc7-94b13f25bd47','','',NULL), +(9773,'Aves Helmet','Armor','Helmet','83462bdc-21c1-47e7-b315-76d505dfa1cf','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nCC\'s Conversions is proud to release the Aves to celebrate the beautiful and unique history of the Tevarin culture. This medium helmet honors traditional stylings while perfectly fitting a Human head. Red highlights provide colorful and vibrant accents to the black and white plating, giving the helmet a bold and dynamic feel worthy of this great species. Visor is AR crosshair compatible.'), +(9774,'Carrack XenoThreat Purge Livery','Paints','UNDEFINED','84184aaa-026f-4dc5-9297-ed08fce2e086','','','Let Humanity know you won\'t bow down to alien invaders with this XenoThreat livery featuring a muted teal with bright red accents.'), +(9775,'Strata Helmet Crusader Black','Armor','Helmet','763ca0bf-02ec-4447-aec7-41537cd0417d','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design features high quality materials and a next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Crusader Black variant was made specifically for the company.'), +(9776,'fruit_plant_2_b_6001','Misc','UNDEFINED','61ea6f7d-1f60-4a2b-a643-bfebc6c876e1','','',NULL), +(9777,'fruit_plant_2_b_4001','Misc','UNDEFINED','fb299441-bb6d-4256-833e-686c4fea179c','','',NULL), +(9778,'fruit_plant_2_b_5001','Misc','UNDEFINED','fcb3c7d9-19f9-4661-848f-b45292636bce','','',NULL), +(9779,'fruit_plant_2_b_2001','Misc','UNDEFINED','9f4f3ad8-1bc9-43ad-bfdc-79be631d8db5','','',NULL), +(9780,'fruit_plant_2_b_3001','Misc','UNDEFINED','f8e9cd5b-9f70-493c-bf42-90a4f135ff78','','',NULL), +(9781,'fruit_plant_2_b_1001','Misc','UNDEFINED','53c539e7-df30-47ef-81eb-aaeba0805885','','',NULL), +(9782,'Door Control','Door','UNDEFINED','2aee07a6-aa78-4cbf-80d3-33176ab638cf','','',NULL), +(9783,'Spirit ArcCorp Livery','Paints','UNDEFINED','a3ae2df5-461d-49f2-a6c2-cf23454e67f8','','','The ArcCorp livery for the Spirit features the company\'s logo atop a maroon base paint with black and yellow highlights.'), +(9784,'JOKR_DistortionCannon_PowerArray_S3','WeaponAttachment','PowerArray','97b4db56-1622-4292-91ed-914371b1d7e8','','',NULL), +(9785,'Cutter Headhunters Trauma Livery','Paints','UNDEFINED','da46c111-d6ee-4057-b7a0-f6d0c3bd7b12','','','Show your loyalty to the Headhunters gang with this livery featuring their logo emblazoned on a dark grey hull accented with a vibrant purple.'), +(9786,'Lynx Arms Olive','Armor','Arms','32c5e55b-2504-493f-94cf-e8482db6226f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(9787,'Rokmor Suit Jacket','Char_Clothing_Torso_1','UNDEFINED','75dad1b1-17ed-4a00-a420-ced2b36f6cdf','','','Carrying Capacity: 1k µSCU\n\nThe Rokmor is a stylish suit jacket ideal for the executive with an eye for quality. Not only is it wrinkle-resistant and able to retain its shape well, but the angular design of both the shoulder pads and the lapels strengthen the wearer\'s silhouette for a strong aesthetic sure to impress any boardroom.'), +(9788,'Internal Tank','FuelTank','Fuel','aa802fba-ab4b-4760-87f9-ad1fb3783419','','',NULL), +(9789,'Door Control','Door','UNDEFINED','b66cf4d3-b5e7-41cb-8759-6ea5b2af44a0','','',NULL), +(9790,'INTK_VNCL_Stinger','FuelIntake','Fuel','6fa7bb36-39cb-467f-8d29-fd2ba4197764','','',NULL), +(9791,'Door','Door','UNDEFINED','69880379-2d17-433e-9c57-e96ee524a7d2','','',NULL), +(9792,'Crate_Suit_Lootable','Usable','UNDEFINED','8eb00601-84cc-44d9-9b33-f4404768c2f9','','',NULL), +(9793,'tool_manual_1_spanner_a','Misc','UNDEFINED','464388ea-5fbe-416b-9f7f-78403ce07c1e','','',NULL), +(9794,'MaxLift AA Transport Tractor Beam','Weapon','Gadget','321ec859-45dc-4dc6-bdc5-f5d1808365da','','','Manufacturer: Greycat Industrial\nItem Type: Tractor Beam\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 10-20 m\n\nGreycat\'s heavy duty tractor beam boasts industrial performance at a consumer-friendly price. With its longer-lasting battery and wider beam emitter, the MaxLift can easily manipulate heavier and bulkier items making it the perfect tool for long days of hauling cargo.\n\nThe AA Transport edition features a metallic green coloring and was intended for those who assisted Alliance Aid\'s Transport Division during Levski\'s time of need.'), +(9795,'VNCL_Blade_Thruster_Main_Fixed_01','MainThruster','FixedThruster','366ea9b0-90d3-4c91-ba53-0cbc1ae34614','','',NULL), +(9796,'DRAK_Corsair_Side_Turret_Lighting','Room','UNDEFINED','f2837dae-40e7-48ec-a179-c686c827a118','','',NULL), +(9797,'Waldron Pants Black','Char_Clothing_Legs','UNDEFINED','290d5c7a-e71e-419e-9d7e-0b8973ddb82c','','','Carrying Capacity: 0.5K µSCU\n\nThe Waldron suit fuses classic style with contemporary flourishes in a way that\'s become definitively OpalSky. The repeating geometric pattern travels the length of the jacket and pants to create a cutting edge look that will turn heads wherever you go.'), +(9798,'ORIG_890_Jump_Thruster_Mav_FSR','ManneuverThruster','FixedThruster','3c51510f-a1a7-44fe-812d-65a07d2c9558','','',NULL), +(9799,'AIModule_Unmanned_PU_UEE','AIModule','UNDEFINED','5734c68c-7428-4c88-b70e-438fce68296d','','',NULL), +(9800,'AEGS_Idris_Lower_Camera_Mount','Turret','GunTurret','affebbab-2a46-4f66-b4c1-07b225879cd7','','',NULL), +(9801,'Karna \"Fate\" Rifle','Weapon','Medium','8ddd972d-78a4-4c4d-8c0e-805380cd3262','','','Manufacturer: Kastak Arms\nItem Type: Assault Rifle\nClass: Energy (Plasma)\n\nBattery Size: 35\nRate Of Fire: 500 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nThe Karna is a classic Kastak Arms plasma assault rifle. This mid-range mauler features charged and full-auto fire modes to allow for quick and easy situational adjustments. Besides its renowned firepower, the Karna\'s rugged looks and reliability have made it one of Kastak Arms\' most popular weapons. Show your Coramor passion with this Fate edition of the Karna, which has been made over with bold fuchsia and grey accents.'), +(9802,'Door Control','ControlPanel','DoorPart','4585848c-0dab-4349-94b5-53e9d1351e7b','','',NULL), +(9803,'AEGS_Idris_ATC_Seat_NoArmrests','Seat','UNDEFINED','0d77903f-0fac-4a8c-864c-390473681668','','',NULL), +(9804,'MISC_Fury_ButtonCover','Misc','UNDEFINED','35b358d5-6ff9-4187-89df-d94ddf98025b','','',NULL), +(9805,'Prism \"Bonedust\" Laser Shotgun','Weapon','Medium','2085a682-db46-4fa4-a00c-16925aaa26a4','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Shotgun\nClass: Energy (Laser)\n \nBattery Size: 20\nRate of Fire: 200 - 450 rpm\nEffective Range: 10m\n \nAttachments: Optics (S2), Underbarrel (S2)\n \nFiring powerful shortrange bursts of energy, engineers at Verified Offworld Laser Technologies have developed the Prism laser shotgun so that as the weapon\'s heat-levels rise, the pellets begin fusing together into slug-like projectiles that inflict higher damage on targets. The Bonedust Edition is tan with violet and blue highlights.'), +(9806,'Paint_300_Seat_White','Misc','UNDEFINED','b1b54bc7-33e3-49be-855b-0abb372759a2','','',NULL), +(9807,'display_grate_wall_a_s2_shipweapons','ShopDisplay','Default','1d574816-468f-484a-a009-c4e677fc9677','','',NULL), +(9808,'Year of the Rat Envelope','Misc','Harvestable','44e421c4-410b-4932-937f-8f1f48cbf5f7','','','A gilded red envelope celebrating the Year of the Rat. Exchanging these envelopes is one of the most popular ways of celebrating Red Festival. Often the envelope may include a small amount of credits inside to help those you care about have a strong start in the upcoming cycle. Growing in popularity is the newer tradition of hiding the envelopes as a way of spreading good fortune and prosperity to those that fate has deemed in need.'), +(9809,'Edgewear Pants \"Pathfinder\"','Char_Clothing_Legs','UNDEFINED','88181557-eff9-4c1a-b6cc-6d76801fbe4a','','','Carrying Capacity: 4K µSCU\n\nA reinforced nylon weave and temperature-rated quilted technology make Edgewear pants ideal for any jobsite. This staple of Stegman\'s line of utility clothes comes with double knees, reinforced joint pads, and extra pockets. The exclusive Pathfinder edition comes in purple with black and silver accents.'), +(9810,'BEHR_JavelinBallisticCannon_Ventilation_S7','WeaponAttachment','Ventilation','b3899836-534d-44aa-966c-ce38758485d7','','',NULL), +(9811,'FarSight \"Snow Camo\" (8x Telescopic)','WeaponAttachment','IronSight','6645ee2e-5a58-4db0-a3d7-5cdad7bf8d8a','','','Manufacturer: VOLT\nType: Telescopic\nAttachment Point: Optic\nMagnification: 8x\nAim Time: +0%\nSize: 3\n\nDesigned for long distance precision shooting, the FarSight is carefully crafted to provide unparalleled fidelity of targets. VOLT\'s TruePicture lens technology provides high levels of light transmission, ensuring easy target acquisition and daylight illumination so you always get your mark.\n\nFeaturing a white digital camo pattern, the Snow Camo edition is perfect for stalking prey in frozen environments.'), +(9812,'Epier','Radar','MidRangeRadar','c00521d8-7551-4c26-889f-30bf09d9a821','','','Item Type: Radar\nManufacturer: GNP\nSize: 2\nGrade: C\nClass: Military\n\nGNP’s finely tuned Epier medium radar delivers military grade stats for advanced signature detection wherever your mission takes you.'), +(9813,'LH86 \"Stormfall\" Pistol','Weapon','Small','b45e8eb9-270a-4266-9f8b-464c9350b235','','','Manufacturer: Gemini \nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 25\nRate Of Fire: 1200 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe LH86 from Gemini is a compact kinetic handgun designed for personal defense and close-quarter combat. A keen eye on ergonomics and balance coupled with hardy construction makes this pistol a natural fit for any shooter in any number of hostile conditions. The LH86 also comes with Tritium low-light sight and a twenty-five round magazine.'), +(9814,'Katsu Karē Kacho','Food','Box','021bdeb1-cd67-4c42-a013-fabd38acaa3a','','','NDR: 30\nEffects: None\n\nBig Benny\'s kacho is based on traditional family recipes straight from Corel, combining springy noodles and a rich, warm broth to create a taste enjoyed the \'verse over. The Katsu Karē flavor marries crispy fried protein pieces with a harmoniously mellow curry sauce.'), +(9815,'Overlord Helmet Dust Storm','Armor','Helmet','afbade92-936a-495d-bbdc-f96559cdeb68','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord helmet delivers heavy armor protection while using a special lightweight composite plating that makes it feel like nothing\'s there. Repurposed ocular sensors normally found on ships keep you attuned to your surroundings and, when worn with the full Overlord suit, the high neck collar provides the helmet extra support and protection. Visor is AR crosshair compatible.'), +(9816,'Door Control','Door','UNDEFINED','de519920-6df1-401b-97a2-2c17f4143cfb','','',NULL), +(9817,'Lynx Arms Violet','Armor','Arms','ae8e946a-8c02-41ff-a2b1-273dbec6c571','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(9818,'Elespo','Cargo','Cargo','bf0b20bc-ab78-4c27-a1ee-7ee05b4706ec','','',NULL), +(9819,'Bed','Usable','UNDEFINED','61cee7a1-738c-4507-8e79-522b7717b1a1','','',NULL), +(9820,'Seat','SeatAccess','UNDEFINED','551ed4f5-543d-42e6-b94b-f8bb53d0b17d','','',NULL), +(9821,'CNOU_Mustang_Delta_Thruster_Mav_Fixed_01_Up','ManneuverThruster','FixedThruster','51226f6c-fd81-4347-b6f3-4ae5399ab708','','',NULL), +(9822,'Day One Shirt Purple','Char_Clothing_Torso_0','UNDEFINED','4720c7fe-73b4-4264-ab78-aadf855f7fa3','','','This Henley shirt from Stegman\'s is made with AirFlow technology, a stain-resistant, air-cooled fabric that keeps you comfortable and dry.'), +(9823,'Guardian Whiteout Livery','Paints','UNDEFINED','08c615d0-3d09-4070-81d1-030414317fa5','','','Featuring a dramatically stark all-white finish, the Whiteout livery highlights the powerful form of the Guardian.'), +(9824,'Venture Undersuit Pathfinder','Armor','Undersuit','0cccfb5b-b84d-478f-9518-488950b1f579','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(9825,'ExerciseSpot_WarmupSpot','Usable','UNDEFINED','05728a04-f694-4513-afd3-9bf19d8a2b85','','',NULL), +(9826,'Pyro RYT \"Black Cherry\" Multi-Tool','Weapon','Gadget','044b2357-9b52-4b77-8829-267ff25d5ab3','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier. The \"Black Cherry\" edition is matte black with colorful pops of red.'), +(9827,'Vehicle_Screen_MFD_Holographic_MISC_Reliant_LL','Display','UNDEFINED','e63c8e8f-26ee-4486-a9f2-07fb0705bcc6','','',NULL), +(9828,'Available','Cargo','Cargo','c44c8e50-2861-4939-876f-6fd37959c1e7','','',NULL), +(9829,'DRAK_Cutter_Winglets_Expo_Left','Misc','UNDEFINED','ea980988-593a-49b4-a357-de16d935815d','','',NULL), +(9830,'Carryable_1H_SQ_Datapad_Fluff_Orb_HathorGroup_001','Misc','UNDEFINED','532d57bd-0b0f-4ecb-a316-10321af537a5','','',NULL), +(9831,'Hellion Scattergun Sharkmouth Edition','Weapon','Gun','961c6667-32b3-453a-b651-2e639f6742c7','','','Manufacturer: Apocalypse Arms\nItem Type: Ballistic Scattergun\nSize: 2\n\nApocalypse Arms\' Hellion is a size two scattergun that saturates targets with ballistic ammo in close quarters. The gun\'s smart ammo functionality allows it to switch between standard and specialty rounds.'), +(9832,'Paint_Caterpillar_Ninetails','Paints','UNDEFINED','f7ced997-2d54-44a4-92ff-a88543f89e51','','',NULL), +(9833,'88-RD Pants','Char_Clothing_Legs','UNDEFINED','cfdd6879-f3db-4ab0-842d-f169994f36a2','','','Carrying Capacity: 1K µSCU\n\n88s are the ultimate leisure attire from Escar Limited. From the striking color to the tailored fit, they are the perfect complement for laid back days and festive nights.\n\nWomen\'s sizes currently out of stock.'), +(9834,'ANVL_Paladin_Thruster_Retro_Right','ManneuverThruster','UNDEFINED','7b1e4b8e-1c08-403c-85b9-29a77ccb7178','','',NULL), +(9835,'VNCL_Blade_Thruster_Aux_Fixed_Top','ManneuverThruster','FixedThruster','0f1a3b2b-254f-4348-b997-28776f03b9b9','','',NULL), +(9836,'DRAK_Cutlass_Thruster_Maneuver_Vertical_Negative','ManneuverThruster','JointThruster','6748fb26-796a-4b6d-8675-cc1c9d239ff1','','',NULL), +(9837,'Seat','SeatAccess','UNDEFINED','b7abac6a-fbd9-4ac8-a65a-a0a997cb2233','','',NULL), +(9838,'Hercules Starlifter Invictus Blue and Gold Livery','Paints','UNDEFINED','cec048b6-8d9a-4e8d-818d-d909f65121ba','','','Featuring a vibrant blue base color and gold highlights, the Invictus Blue and Gold livery will give your Starlifter a striking style.'), +(9839,'Karna \"Scorched\" Rifle','Weapon','Medium','3e5d7a54-242b-4956-9e78-658cb01f0766','','','Manufacturer: Kastak Arms\nItem Type: Assault Rifle\nClass: Energy (Plasma)\n\nBattery Size: 35\nRate Of Fire: 500 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nThe Karna is a classic Kastak Arms plasma assault rifle. This mid-range mauler features charged and full-auto fire modes to allow for quick and easy situational adjustments. Besides its renowned firepower, the Karna\'s rugged looks and reliability have made it one of Kastak Arms\' most popular weapons. The Scorched edition features a unique flame patina.'), +(9840,'expo_display_shirts_and_hats_consolidated','ShopDisplay','Default','7ec71577-ffb3-496b-ab92-53e3d30c0403','','',NULL), +(9841,'Tarantula GT-870 Mark 3 Cannon','Weapon','Gun','eb562cbb-b113-4d95-aef7-a842c91b7d73','','','Manufacturer: Gallenson Tactical Systems\nItem Type: Ballistic Cannon\nSize: 3\n\nFed by Gallenson Tactical’s patented SpinGlide drum ammunition system, the Tarantula GT-870 Mk3 can smoothly and accurately deliver a consistent stream of ballistic shells. Though it only has a moderate rate of fire, its trustworthy durability makes it a dependable addition to any fight.'), +(9842,'Skin_Gold','Paints','Personal','ea28dc56-a330-4e50-8b34-817bdfd2ab39','','',NULL), +(9843,'Vanduul Cleaver','Missile','Torpedo','3be04d51-971d-42e3-b741-a5b28e177e38','','','Vanduul Cleaver'), +(9844,'Bed','Usable','UNDEFINED','7d0a362a-d402-438d-ab19-6b8ddb05be5e','','',NULL), +(9845,'ForceFlex Undersuit Autumn Camo','Armor','Undersuit','1ae7202d-b9c0-4492-87e6-a46b2e80fc56','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nVirgil\'s ForceFlex is the next generation in undersuit technology. Rated for combat as well as industrial work, you can rest assured that the comboweave will keep you protected in whatever situation you put it through.'), +(9846,'Carryable_1H_SQ_DataPad_Fluff_StormBreaker_DataFacility_Safe03','Misc','UNDEFINED','aa0130d7-ccb7-4467-a13d-5e02b36ba5bd','','',NULL), +(9847,'Personal Care Product','Misc','UNDEFINED','fd833f6c-ba24-4b16-b945-ec7c8c7dd850','','',NULL), +(9848,'recorder_blackbox_3_a','Misc','UNDEFINED','0514ec22-c15d-49f4-8f7d-98250a7fd94c','','',NULL), +(9849,'Creese Yormandi Jacket','Char_Clothing_Torso_1','UNDEFINED','a331124b-362a-4ba7-ab20-867877f3eca0','','','Make a splash with this Yormandi-themed jacket. Featuring the ferocious creature erupting from water, this predator snakes around the side of the dark teal jacket to showcase Vaporwear\'s logo on the back.'), +(9850,'Station','SeatAccess','UNDEFINED','3953b356-d809-47f7-88cd-e98cea84f1b3','','',NULL), +(9851,'Strata Helmet Onyx','Armor','Helmet','93913c87-7031-4058-844b-21e6c4b00d7e','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design features high quality materials and a next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Onyx edition is primarily dark red with grey and black highlights.'), +(9852,'VNCL_Stinger_Thruster_Retro_Fixed','ManneuverThruster','FixedThruster','6de28489-f22a-4ffe-81a7-68ef55bcb875','','',NULL), +(9853,'Evidence','Cargo','Small','e48394f4-96ab-42a1-a3e0-b569124118a5','','','This box is specifically designed for use with evidence in order to help prevent tampering and properly ensure the chain of custody.'), +(9854,'Gold (Ore)','Cargo','Cargo','d776f520-6c61-4c75-a4c4-1b8d175fb97f','','',NULL), +(9855,'Jaghte','Shield','UNDEFINED','0eae2a8c-8bc9-4b32-af70-a06e667b0165','','','Item Type: Shield Generator\nManufacturer: Yorm\nSize: 1\nGrade: B\nClass: Competition\n\nBuilt with performance in mind, Yorm’s Jaghte competition shield generator prioritizes shield health and generation rate over strength and stealth.'), +(9856,'Anvil Noise Launcher','WeaponDefensive','CountermeasureLauncher','fd50d9c4-16df-4609-a270-4887877da6db','','','Anvil Noise Launcher'), +(9857,'drug_bottle_1_c','Cargo','UNDEFINED','5d25d4f4-cac5-4fc4-93bc-7ab8064293de','','',NULL), +(9858,'Renegade Cut Vest','Char_Clothing_Torso_1','UNDEFINED','c5244c19-41d0-44b8-bbb2-efe33b2a2264','','','Carrying Capacity: 1K µSCU\n\nReveal your inner rebel with the Renegade Cut vest, featuring a wide notched lapel and metal studs on the left shoulder. High quality synthetic leather and an insulated lining give the vest both comfort and style.'), +(9859,'MSD-543 Missile Rack','MissileLauncher','MissileRack','cc26df31-20da-487a-b307-a963e2d3f7a4','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 5\nMissiles: 4xS3\n\nBehring’s MSD-543 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 5 hardpoint for the reliable and effective launch of four S3 missiles.'), +(9860,'ADP Core Dark Red','Armor','Torso','11183b53-4e06-40f8-a645-0e6c6ae848f2','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(9861,'RSI_Aurora_LN_Thruster_Retro','MainThruster','FixedThruster','a611004c-1a49-4264-b74d-3ffeabbdea3a','','',NULL), +(9862,'Access','SeatAccess','UNDEFINED','b0053924-28c8-49e2-98fb-3161716ff96e','','',NULL), +(9863,'Carryable_2H_FL_05x05x05_Commodity_ConsumerGoods','Cargo','Small','c42f549e-a097-47a1-b7a4-74c6ff64e9b3','','',NULL), +(9864,'Intrepid Wavefront Livery','Paints','UNDEFINED','e988055e-4815-454c-ac80-60472d7d077b','','','Featuring decorative white markings across a bluish-green base paint, the Wavefront livery brings a dynamic and distinct look to the Intrepid.'), +(9865,'Fieldsbury Dark Bear Helmet Lime','Armor','Helmet','e0985785-fc61-416f-8a6c-cf9b5db86bbc','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -40 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nCelebrate Day of the Vara in sinister style with this officially licensed Fieldsbury Dark Bear helmet. This twisted version of the Fieldsbury Bear mascot launched a seasonal soda flavor before being co-opted into a series of high-profile pranks. Ever since, the bear\'s big, toothy grin and off-set flickering eyes have become a standard sight at Day of the Vara celebrations. Now CC\'s Conversions has designed and delivered an official, high quality reproduction of this iconic mascot, available in six striking colors.'), +(9866,'Yenny Shirt','Char_Clothing_Torso_0','UNDEFINED','423cb5a3-ba6c-43ea-a053-64a4a4e6be93','','','A simple, light grey, long-sleeved shirt constructed from moisture wicking fabric ideal for keeping you comfortable during work and play.'), +(9867,'MacFlex Arms \"Rust Society\"','Armor','Arms','6d1558b9-67f8-44d2-9299-6627d5fb3417','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible. The Rust Society edition celebrates blue-collar workers with an exclusive red and tan coloration that hides dirt and wear and tear well.'), +(9868,'MISC_Fury_Thruster_Main_MX','MainThruster','JointThruster','87fae1f2-37c4-4cab-af67-7f6494e8bb30','','',NULL), +(9869,'DockingTube_Fuel_Ports_XIAN_Nox','DockingCollar','UNDEFINED','f10e464d-376d-45c4-a0e3-bc865cc440f2','','',NULL), +(9870,'Carryable_1H_CY_drug_stomachmedicine_1_a','Misc','UNDEFINED','d2ab0ac4-700c-41a4-85be-d49373e2a598','','',NULL), +(9871,'Hercules Starlifter Crusader Livery','Paints','UNDEFINED','7b5fd083-5fe4-40a2-98c0-55070d275ba6','','','The Crusader livery for the Starlifter features the company\'s logo atop a light blue base paint with black and white highlights.'), +(9872,'Lynx Legs Rager','Armor','Legs','5f770275-5813-44df-80f1-b45887072614','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(9873,'Odyssey II Undersuit Orange/Black','Armor','Undersuit','a398ecd3-517b-4155-9add-0490171bc3c1','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe latest generation of RSI\'s classic Odyssey undersuit features a new rugged design capable of withstanding the harshest of conditions in space or planetside. Built using the latest microweave technology, the Odyssey II undersuit provides hours of comfort in locations that are anything but comfortable.'), +(9874,'JOKR_DistortionCannon_Ventilation_S1','WeaponAttachment','Ventilation','6c06d2b8-58e1-49b2-8a99-59a37f4fbb15','','',NULL), +(9875,'Door','Door','UNDEFINED','b79aa3d2-af8e-4e93-af49-865af639578e','','',NULL), +(9876,'H_Dashboard_Projector_HUD_AEGS_Vanguard','Display','UNDEFINED','7f50b8e3-0db5-4e97-aa8a-ee3346d8594b','','',NULL), +(9877,'Strata Backpack Hurston Edition','Armor','Backpack','7fdd79ca-f01e-4560-8db2-09d450de563a','','','Item Type: Medium Backpack\nCarrying Capacity: 127.5K µSCU\nCore Compatibility: Medium & Heavy\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Hurston Edition was made specifically for the company.'), +(9878,'RangeFinder Jacket Sandstone','Char_Clothing_Torso_1','UNDEFINED','7f32cfb7-57d5-4d33-af9b-ee69d9161a80','','','Carrying Capacity: 3K µSCU\n\nThis insulation outdoor jacket from DMC is lined with reinforced padding to provide durable comfort for everyday wear.'), +(9879,'ORC-mkV Legs Scorched','Armor','Legs','6b89d308-07cb-4500-9f73-5495acf99022','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(9880,'Drema Injector','FPS_Consumable','Medical','6a163e8b-1819-424b-abac-3e8662c55237','','','Manufacturer: Roussimoff Rehabilitation Systems\nItem Type: Medical Consumable\n\nDesigned by RRS for field applications, this single-use device injects a fast-acting sedative into the target\'s body that will incapacitate the subject for a short duration preventing them from hurting themselves or others.'), +(9881,'Door','Door','UNDEFINED','20002afa-24dd-4963-9980-226bbd2f1f63','','',NULL), +(9882,'MASTER_lt_display_rtt','Display','UNDEFINED','12aedddb-8fb0-45a6-a73f-3119de50ff15','','',NULL), +(9883,'SoftLock_Terminal_Standard_Refueling_Starfarer_2','Display','UNDEFINED','abc7159f-e77d-419c-af0a-f807d5146723','','',NULL), +(9884,'HRST_LaserScatterGun_FiringMechanism_S1','WeaponAttachment','FiringMechanism','a2b739ea-0a14-48ea-8174-515d0f1fb169','','',NULL), +(9885,'Aegis Gladius - Noise Launcher','WeaponDefensive','CountermeasureLauncher','f8d9ca6c-0fd1-4673-9649-f2cd1718816d','','','Aegis Gladius - Noise Launcher'), +(9886,'MISC_Starlancer_Seat_Access_Turret_Left','SeatAccess','UNDEFINED','25b06a4b-c507-44ae-9cf4-93f201297466','','',NULL), +(9887,'Util_A_Airlock','Usable','UNDEFINED','9f79ced1-1469-4f2c-bfd7-57e5b1c91639','','',NULL), +(9888,'ARMR_MRAI_Pulse_LX','Armor','Medium','7bf9df00-598d-43ad-bb3f-fc9cdab13cd2','','',NULL), +(9889,'Door Control','Door','UNDEFINED','cca18610-bd6e-499e-9075-08945ceb051d','','',NULL), +(9890,'RSI_Constellation_Phoenix_Thruster_Turbine_Rear','ManneuverThruster','JointThruster','22a2c651-18ba-4b63-b455-ec39f73cb616','','',NULL), +(9891,'Piecemeal Armor Legs Olive','Armor','Legs','008bc2f3-1751-4b4d-ac73-64fa63085344','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nThis armor was created using repurposed parts from a Caldera armor set to provide the wearer with an extra layer of protection against aggressors and harsh environments.'), +(9892,'Chiron Core AA Support','Armor','Torso','ea095069-4da8-4152-972a-fb2ec02477e6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -32 / 62 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\nBackpacks: Light\n\nBe the first on the scene with the Chiron armor. Designed to provide the essential protection that combat medics need, the armor features ultra-lightweight panelling to keep the wearer quick on their feet without compromising on safety. Crucial, high-impact sections have been reinforced with raised carbon plating on top of a highly durable polyfiber for maximum flexibility.\n\nThe AA Support edition uses sharp red coloring and bright yellow detailing, ensuring that Alliance Aid Support Units remain visible while assisting the people of Levski through their crisis.'), +(9893,'Vanduul Plating','Misc','Harvestable','6d9192ac-dfc6-4eaa-bd2c-986e9a9c6ff2','','','A piece of plating typically worn by Vanduul as armor.'), +(9894,'Clipper Apis Livery','Paints','UNDEFINED','4fce54c9-11b3-4e47-878d-7897349ecf88','','','Predominantly yellow with black highlights and stripes, the Apis livery gives the Clipper a distinct look worthy of its name.'), +(9895,'Mercury Star Runner Polar Camo Livery','Paints','UNDEFINED','d10065b5-1b2f-4490-8f4e-cc0aa75c8d66','','','Modify your Star Runner with this white and grey camo livery specifically designed for the 2950 IAE event on microTech.'), +(9896,'ORIG_135c_Thruster_Mav_Right','ManneuverThruster','FixedThruster','c99f59f8-3735-48bf-9210-235bf9714381','','',NULL), +(9897,'LeMarque Pants Red','Char_Clothing_Legs','UNDEFINED','026d1f58-9437-48c9-8778-8061f371a229','','','Carrying Capacity: 0.5K µSCU\n\nClassic cuts never go out of style. A staple of any wardrobe, Derion\'s LeMarque are built for work or play and feature microseam pleats and wrinkle-free material that will guarantee that you\'ll get years out of this classic.\n\nWomen\'s sizes currently out of stock.'), +(9898,'Ready-Up Helmet Dark Red','Char_Clothing_Hat','UNDEFINED','3db9caa3-bcf9-41a6-8853-b8fa28508a16','','','The Ready-Up is a dependable, affordable softshell helmet alternative. Built from space-age plastic, the Ready-Up provides a vacuum-ready seal to keep you breathing for longer.'), +(9899,'Mercury Star Runner Fortuna Livery','Paints','UNDEFINED','deb67c9b-b026-4160-8d2c-37aeebf8f161','','','Make luck your co-pilot. Boldly set your sights on the stars and adventure forth in style with the Fortuna livery. This Stella Fortuna themed paint scheme is primarily green with grey accents.'), +(9900,'Venture Legs Blue','Armor','Legs','61a4d74a-64c2-4332-b302-c8923f5d6bf9','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(9901,'Door Control','Door','UNDEFINED','9b57cfa6-09c5-40ec-9811-b0e9054dbc57','','',NULL), +(9902,'MISSILES','MissileController','UNDEFINED','507221c8-8f00-4f53-a4dc-d5a654c8e62e','','',NULL), +(9903,'BEHR_BallisticGatling_Ventilation_S5','WeaponAttachment','Ventilation','e690c340-e63a-41e9-907d-21a9d8027c9d','','',NULL), +(9904,'vlk_spewgun_ballistic_01','Weapon','Medium','5a8845ad-8d3e-4c62-a3fe-3135316e3a27','','',NULL), +(9905,'Mountaintop Jacket Dune','Char_Clothing_Torso_1','UNDEFINED','8a5e2762-f3ad-4298-8fe8-dbb02322618b','','','Temp. Rating: -20 / 10 °C\nCarrying Capacity: 1K µSCU\n\nThese insulated, water-resistant jackets are perfect for any jobsite where temperature can be a factor. The Mountaintop from DMC features secure pockets and is made with a vinyl-weave exterior, guaranteeing that rough environments won\'t compromise your warmth.\n\nWomen\'s sizes currently out of stock.'), +(9906,'expo_display_shirts_and_hats_crusader','ShopDisplay','Default','e0b02386-aaf5-426f-8017-f5b7185908fd','','',NULL), +(9907,'Manned Turret','TurretBase','MannedTurret','044bbc7f-1baa-4034-a0d7-cb99ccf74738','','',NULL), +(9908,'Wolf HighSec Livery','Paints','UNDEFINED','50993a8a-a31a-4e41-8616-0839be025e50','','','The HighSec livery gives the Wolf a carbon fiber finish with red accents.'), +(9909,'Seat','SeatAccess','UNDEFINED','2f0c1576-913d-4cf9-b0fb-4e2705fa0c29','','',NULL), +(9910,'Antium Legs Midnight Sun','Armor','Legs','8e4c40b3-f9eb-40f3-811d-01a5099fdcd6','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(9911,'Revenant Pod','Cargo','Cargo','e6d37597-bfd2-4dde-a642-fb439a980d20','','',NULL), +(9912,'ANVL_Paladin_Thruster_Vtol_Front','ManneuverThruster','UNDEFINED','883d3500-b163-44aa-988b-18e82d03e9a6','','',NULL), +(9913,'Parallax \"Fun Military Tooth\" Energy Assault Rifle','Weapon','Medium','289d12fc-29a6-4399-8f2f-68bd53d4a76d','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Assault Rifle\nClass: Energy (Electron)\n\nBattery Size: 80\nRate of Fire: 200 rpm - Beam\nEffective Range: 30 m\n\nAttachments: Optics (S2), Underbarrel (S2)\n\nWith the Parallax, VOLT offers consumers a rugged assault rifle design with features like a larger-than-average battery and a unique actuator that enables the weapon to scale up into a persistent beam as it fires.\n\nThis modified version of the original rifle consists of a lunar surface inspired camo pattern and a small kopion fang strapped to the muzzle.'), +(9914,'POWR_Carryable_JUST_S02_Broken_SCItem','Cargo','Small','5df94f2a-5760-4a53-a8db-9df692fc3343','','',NULL), +(9915,'Personal Storage','Cargo','UNDEFINED','3fd02683-1304-47e1-9aff-20620d01b6fa','','',NULL), +(9916,'Vanduul Noise Launcher','WeaponDefensive','CountermeasureLauncher','5b5f24e2-c088-4fb6-9ca8-3d7f194fd620','','','Vanduul Noise Launcher'), +(9917,'CRUS_Starlifter_CargoGrid_Personal_Armory_Large','Cargo','UNDEFINED','56cbca50-f142-47e9-80d2-6bcb13eaa1a8','','',NULL), +(9918,'RSI_Aurora_ES_CargoGrid_Main','CargoGrid','UNDEFINED','fd512840-1c83-4609-80f8-3a71f149bb7c','','',NULL), +(9919,'Aves Legs Epoque','Armor','Legs','ead43470-3c23-4acc-99f1-f3dd0a3ecfe8','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nHonor and embody the Tevarin aesthetic with the Aves armor. Cutting edge manufacturing techniques were used to apply plating perfectly to fit the Human form and evoke the shape language imbued into the Tevarin\'s iconic ships. This medium armor from CC\'s Conversions is both sensational and practical, providing solid protection while keeping you light on your feet. When paired with the Aves helmet, the suit combines for a striking and unforgettable look.\n\nThe Epoque edition features a navy and black coloring, finished with baroque gold detailing.'), +(9920,'Door Control','Door','UNDEFINED','5bcc42b4-c5f3-4872-ac13-3e71cd99939d','','',NULL), +(9921,'Morningstar Helmet Aqua','Armor','Helmet','483d87dc-d93a-4c8b-9661-1f6f6b55d36c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(9922,'DCP Armor Core Cobalt Camo','Armor','Torso','cb499a8b-3f84-4684-a638-f6a159ec1488','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(9923,'Door Control','ControlPanel','DoorPart','a9764a53-af5a-44ae-8a64-60066c751155','','',NULL), +(9924,'Weapon Rack','Usable','UNDEFINED','603bd6a7-a81c-4cbc-8017-2058156f1cd2','','',NULL), +(9925,'Yubarev Pistol Battery (10 cap)','WeaponAttachment','Magazine','9dc383ba-2686-46d0-abf9-1bc764aec0b6','','','Item Type: Battery\nCapacity: 10\n\nThis battery for the Yubarev Pistol holds enough electron energy for 10 shots.'), +(9926,'G-2 Helmet Twilight','Armor','Helmet','305ab561-6edf-48f0-9c49-c987e911e9ed','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. Visor is AR crosshair compatible.'), +(9927,'AEGS_Javelin_SCItem_Seat_Pilot','Seat','UNDEFINED','0b467fe8-0d97-4114-a73a-8398362441e6','','',NULL), +(9928,'AAT-34 Turret','Turret','MannedTurret','dfe8b6ad-70e7-4768-bf30-c315d34e7854','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(9929,'Constellation 2952 Auspicious Red Monkey Livery','Paints','UNDEFINED','e10dac45-b393-438a-87a4-5bd90563b7f1','','','Seek peace and prosperity in the new year with the Auspicious Red Monkey livery. Outfit your ship with this bold red base paint complemented by gold accents and a stylized graphic of a monkey\'s head.'), +(9930,'Remote Turret','Turret','GunTurret','8efa5eac-5d2e-457a-8176-39cdba5094e3','','','Remote Turret'), +(9931,'Pulse \"Blacklist\" Pistol','Weapon','Small','280070a1-de10-4ea8-9e27-bf4229ad67fd','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Pistol\nClass: Energy (Laser)\n\nBattery Size: 60\nRate of Fire: 500 rpm (1000 rpm rapid)\nEffective Range: 15m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nThe Pulse Laser Pistol is a fully automatic pistol intended for close quarter combat. VOLT designed the weapon with a unique capacitor that condenses the pistol\'s laser energy, increasing its rate of fire at the cost of greater inaccuracy and a higher risk of overheating.\n\nThe Blacklist edition features a black finish.'), +(9932,'Chiron Core Heartthrob','Armor','Torso','2a53540e-5467-4e8d-9213-566734bd45f7','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -32 / 62 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\nBackpacks: Light\n\nBe the first on the scene with the Chiron armor. Designed to provide the essential protection that combat medics need, the armor features ultra-lightweight panelling to keep the wearer quick on their feet without compromising on safety. Crucial, high-impact sections have been reinforced with raised carbon plating on top of a highly durable polyfiber for maximum flexibility.\n\nThe Heartthrob edition is a dreamy, shimmering violet adorned with bright digital hearts; perfect for making friends and foes weak in the knees.'), +(9933,'Aves Talon Legs','Armor','Legs','80099a63-cfac-4a1d-81b9-633b991aca54','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nHonor and embody the Tevarin aesthetic with the Aves Talon armor; manufactured with white, blue, magenta, grey, and black plating to perfectly evoke the shape language imbued into their iconic ships. This medium armor from CC\'s Conversions is both sensational and practical, providing solid protection without sacrificing your mobility. When paired with the Aves Talon helmet, the suit combines for a striking and unforgettable look.'), +(9934,'Zeus Mk II Monteverde Livery','Paints','UNDEFINED','2458d55f-a9cb-4281-adb9-2c73f2a1961b','','','Featuring a lush green with yellow and black highlights, the Monteverde livery gives you a colorful option for the Zeus Mk II.'), +(9935,'ADP Arms Red','Armor','Arms','7daa0c89-f14e-4cb9-ae4c-411332ebcaf9','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(9936,'box_fabric_1_005x005x005_b_v002','Cargo','UNDEFINED','ce35f4df-bbfe-4f14-9f87-d365b5108596','','',NULL), +(9937,'AEGS_Reclaimer_CargoGrid_Salvage_Front_TEMP','CargoGrid','UNDEFINED','56278f62-cd74-4662-bfe1-7c4b1aa48bad','','',NULL), +(9938,'ITG Flask','Drink','Bottle','7444d6a8-1684-4186-851c-b72d97a00fc4','','','Honoring the Interstellar Transport Guild, this screw-top hip flask offers the ideal way to slake your thirst wherever your travels take you.'), +(9939,'Seat','SeatAccess','UNDEFINED','fe5644b9-90e9-4af3-90df-5150a685131f','','',NULL), +(9940,'6SA \'Arbiter\'','Shield','UNDEFINED','69eab676-9cc1-4e42-bacd-3fa9a78081ee','','','Item Type: Shield Generator\nManufacturer: Behring\nSize: 1\nGrade: B\nClass: Civilian\n\nProviding above average shield health and damage absorption, the 6SA ‘Arbiter’ has been a trusted component for centuries. Experience the Behring advantage by installing this small shield generator today.'), +(9941,'Aves Starchaser Arms','Armor','Arms','83052c6c-2ea1-4f7b-9c10-2715f9519de3','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nHonor and embody the Tevarin aesthetic with the Aves Starchaser armor; manufactured with white, purple, and grey plating to perfectly evoke the shape language imbued into their iconic ships. This medium armor from CC\'s Conversions is both sensational and practical, providing solid protection without sacrificing your mobility. When paired with the Aves Starchaser helmet, the suit combines for a striking and unforgettable look.'), +(9942,'Personal Storage','Cargo','UNDEFINED','9bb32cbf-c326-43b7-a5e9-052b919098ef','','',NULL), +(9943,'Door Control','ControlPanel','DoorPart','0d50b195-6402-48fe-ba0b-74eb990e5c8a','','',NULL), +(9944,'COOL_RSI_S04_Bengal_SCItem','Cooler','UNDEFINED','a2472bfc-17ff-461d-8d99-ec68da5d04b1','','',NULL), +(9945,'Dumper\'s Depot T-Shirt','Char_Clothing_Torso_0','UNDEFINED','7e44b7bc-71af-461d-9617-3d15d828ce00','','','Be sure to keep this shirt off the scrap heap. Made from ring-spun cotton for an ultra-comfortable fit, this Dumper\'s Depot shirt features an animated spinning gear in the logo that\'s bound to get people\'s attention.'), +(9946,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','a279f467-89ae-41f3-bffd-02a842e758b2','','','Aegis Gladius - Decoy Launcher'), +(9947,'Frost-Star SL','Cooler','UNDEFINED','387da568-31d2-4479-81da-21dd015db668','','','Item Type: Cooler\nManufacturer: J-Span\nSize: 0\nGrade: C\nClass: Civilian\n\nWhether cruising across the ground or sailing through space, there’s a J-Span cooler perfect for you. The Frost-Star SL is a mid-tier cooler designed to bring the line’s reliability to ground and open-canopy vehicles.'), +(9948,'VNCL_Stinger_SeatAccess','SeatAccess','UNDEFINED','b328d47e-647e-4a12-8ddb-fe0c54bb5f5a','','',NULL), +(9949,'Hornet Simoom Livery','Paints','UNDEFINED','443dcff7-c10c-48c3-8116-1c40c1056cd4','','','Gain an advantage when patrolling or exploring deserts in the Hornet F7A Mk2 with the Simoom livery, which mixes tan camo with black highlights.'), +(9950,'Door Control','ControlPanel','DoorPart','93e825dc-a328-4da9-abe3-5427ab0f130c','','',NULL), +(9951,'Prowler Darkrift Livery','Paints','UNDEFINED','63a2bf81-28e3-42ce-b4da-055749b6fa79','','','Slyly drift through darkened skies with the Darkrift livery, which tampers the luster of its metal finishes to make it less conspicuous.'), +(9952,'SLAM','Cargo','Cargo','bceaf152-b615-45dc-af4c-59d6af9381dc','','',NULL), +(9953,'Construction Salvage','Cargo','Cargo','c3fc4028-b100-47c9-964b-1e0d17033dca','','','Can be processed at refineries into Construction Material.'), +(9954,'Iron','Cargo','Cargo','56f5535b-fb4f-4afd-a890-8502426049b5','','',NULL), +(9955,'MISSILES','MissileController','UNDEFINED','ac235698-bae0-4f3a-868a-c82a451511f6','','',NULL), +(9956,'Food_box_noodle_01_closed_a','Food','Box','793687e4-355f-4e44-880a-892c29f3338d','','',NULL), +(9957,'Merlin Ship Armor','Armor','Medium','47a697ea-d042-4415-92b2-38118ecc93f1','','','Merlin Ship Armor'), +(9958,'Cliffback T-Shirt Seagreen','Char_Clothing_Torso_0','UNDEFINED','c938355a-00b5-477e-87b0-fa06d1b17594','','','Alejo Brothers\' classic loop tee with a spatter pattern.'), +(9959,'AEGS_Reclaimer_CargoGrid_Large','CargoGrid','UNDEFINED','ba943358-a13f-48b4-855c-e6dd1806167b','','',NULL), +(9960,'ASAD_DistortionRepeater_Barrel_S1','WeaponAttachment','Barrel','da467c09-db68-4e11-be84-7be6501d479a','','',NULL), +(9961,'Station','SeatAccess','UNDEFINED','d912bd40-348e-464c-8141-a143990234f9','','',NULL), +(9962,'DRAK_Caterpillar_CargoGrid_Nose_Access','CargoGrid','UNDEFINED','b6ac92b9-e3a6-4af2-9e0d-8ea39dc7d4e2','','',NULL), +(9963,'Lycara','Cargo','Cargo','4865a4b5-4083-4099-9cab-08cc525796fa','','',NULL), +(9964,'DRAK_Clipper_Thruster_Mav','ManneuverThruster','UNDEFINED','3b2e261f-c440-4543-ba65-39c3493b9c6a','','',NULL), +(9965,'Odyssey II Undersuit Tan/Black','Armor','Undersuit','a408caf4-b579-4018-a367-bb237bd78982','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe latest generation of RSI\'s classic Odyssey undersuit features a new rugged design capable of withstanding the harshest of conditions in space or planetside. Built using the latest microweave technology, the Odyssey II undersuit provides hours of comfort in locations that are anything but comfortable.'), +(9966,'INTK_MRAI_Pulse','FuelIntake','Fuel','5e0ed472-6918-4cf9-aad9-fd5416ae34d6','','',NULL), +(9967,'Salvation Lovestruck Livery','Paints','UNDEFINED','b5532228-ef37-47fd-9b83-2593c7a0d7af','','','Inspired by the colors of Coramor, the Lovestruck livery is a stylish iridescent pink and black look for your Salvation.'), +(9968,'Door Control','ControlPanel','DoorPart','a22e3786-76d7-4777-a687-5dc8d35eb625','','',NULL), +(9969,'Rustic Jacket Brown','Char_Clothing_Torso_1','UNDEFINED','3e4d3f71-f3ff-4ad5-8a39-97a9e71390ca','','','Carrying Capacity: 1K µSCU\n\nAssembled from an old Dusters flag, salvaged armor, and derelict ship parts, this serviceable jacket is secured to its wearer via sturdy leather straps.'), +(9970,'SHIELDS','ShieldController','UNDEFINED','f3030a68-e295-4dd1-8586-84a79492ba77','','',NULL), +(9971,'stand_shop_medium_b_PowerPlant','ShopDisplay','UNDEFINED','698d74de-c9c4-464a-a03f-5a24a0232d0c','','',NULL), +(9972,'MISC_Prospector_Thruster_Mav_Fixed_03','ManneuverThruster','FixedThruster','e57f1e63-4388-4c14-8476-5fda18ab8bb9','','',NULL), +(9973,'Argon','Cargo','Cargo','cb3beb44-5d18-428f-a4b6-4335b6eba249','','',NULL), +(9974,'m_human_mannequin_clothing_TandS_Civ01','ShopDisplay','UNDEFINED','94509609-7914-4782-a291-dd9c1312da54','','',NULL), +(9975,'Strata Core Shire','Armor','Torso','b80a76eb-9243-4a00-941a-40a0f1ae60f2','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 15k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpack Compatibility: Light & Medium \n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres.'), +(9976,'Seat','SeatAccess','UNDEFINED','f3894a04-cce2-4667-a1d8-d049f9d47938','','',NULL), +(9977,'PH - 987_shoes_01_01_9tails01','Char_Clothing_Feet','UNDEFINED','1cb67f40-d462-4900-8754-8e33884b8e45','','','From bustling backstreets to crowded clubs, the UrbEx boots will make your next step a bold one. The boots blend a stylish design with reinforced high ankle support and ultra durable outsoles.'), +(9978,'Flight Blade','FlightController','UNDEFINED','5e13cc22-27fd-4bed-8a31-8332a4ea8750','','',NULL), +(9979,'Deo Shirt Seagreen','Char_Clothing_Torso_0','UNDEFINED','b3a7f0ce-9cbb-42fd-bbbb-3a5d458f6bb6','','','Fiore\'s Deo is a slim cut work shirt that\'s as practical as it is timeless. Featuring a high collar and metal neck clasp, the Deo has been a mainstay in business attire.\n\nWomen\'s sizes currently out of stock.'), +(9980,'ROC Mining Arm','UtilityTurret','BallTurret','32c630dd-03e7-4c36-8587-9de4160c7d43','','','Manufacturer: Greycat Industrial\n\nWith a wide range of motion and smooth movement, this highly precise mining arm was designed by Greycat Industrial to allow the operator full gimbaled control of the mining laser head when deployed.'), +(9981,'ORIG_600i_Thruster_Mav_Fixed_03_Bottom','ManneuverThruster','FixedThruster','f346ad12-ef52-4d42-b557-0da9b2adae21','','',NULL), +(9982,'ARMR_MRAI_Guardian','Armor','Medium','5b43f372-4049-458d-b583-74a9e1918921','','',NULL), +(9983,'Medical Supplies','Cargo','Cargo','f555aab6-a32f-4e5b-ad21-c3e7dcced606','','',NULL), +(9984,'MISC_Hull_C_Thruster_Mav_Fixed_Small_Top','ManneuverThruster','JointThruster','f9541519-a4ee-44fe-b9d7-1b651d5ccd34','','',NULL), +(9985,'ArmorStand_CLDA_hazmat_Yellow','Misc','UNDEFINED','e11f27eb-bd88-46b8-b8ba-c35e2029a4f0','','',NULL), +(9986,'Sharud Wrap and Arm Bands Conifer','Char_Clothing_Torso_1','UNDEFINED','7b41801d-45bb-4ff9-8397-9a7b93481044','','','Carrying Capacity: 1K µSCU\n\nThe Sharud is an ideal top for staying cool in hot weather. Advanced production techniques allow Habidash to make a light yet absorbent shawl that looks and feels like handspun natural cotton but at a fraction of the cost. The three arm band pieces provide stylish accents and come embedded with microchips that tracks body temperature and other vitals.'), +(9987,'Stir Fry Vegetables and Beef Omni Pack','Food','Tin','aa7c9d5f-6b0c-41ac-b71e-02d503c654f9','','','NDR: 56\nEffects: Hypertrophic, Hypo-Metabolic\n\nOmni Packs use premium certified organic ingredients to create a complete balanced ready-to-eat meal with a premium taste.'), +(9988,'Ambit Coverall','Char_Clothing_Torso_1','UNDEFINED','555b3b68-f1e4-4f57-b7b5-1c1e56198160','','','Carrying Capacity: 0.4K µSCU\n\nThe Ambit Coverall is ideal jobsite attire with its multiple pockets, special super-stain resistant fabric, and a generous cut to allow for unrestricted movement. Step in, zip up, and work all day in comfort thanks to Stegman\'s.'), +(9989,'facial_hair_022','Char_Head_Beard','UNDEFINED','c5b7f31a-f0b5-4229-91c3-be2f859966fa','','',NULL), +(9990,'Prowler Panthera Livery','Paints','UNDEFINED','98b7b00b-086a-4504-92c7-bb5bc8ee8ac9','','','The Panthera livery brings bright orange and black highlights to the Prowler.'), +(9991,'ANVL_Terrapin_Medic_RoofCap','Misc','UNDEFINED','f6e89408-cd9f-4dc3-b2f9-66670ca7ec28','','',NULL), +(9992,'bottle_drink_1_substitute_shop_3x5_a','ShopDisplay','Default','72672dc5-ea31-4cba-87a2-470f8b8fd9fa','','',NULL), +(9993,'F8C Lightning Stormfire Livery','Paints','UNDEFINED','5b8a9c7e-bbaa-4772-a84f-dc199b177d82','','','Cut a classic profile through any battlefield with the Stormfire livery for Anvil\'s new F8C Lightning. Featuring a triple-coat of Kalding paint rated for a variety of atmospheres and conditions, this sleek platinum look will keep you looking good for years to come.'), +(9994,'Seat','SeatAccess','UNDEFINED','4eca55db-a73b-7ba6-1216-1c0b07ca6d9f','','',NULL), +(9995,'MISC_Freelancer_Base_SCItem_Seat_Passenger_Right','Seat','UNDEFINED','46b69c71-1816-4dda-89d9-b3a96a435c3e','','',NULL), +(9996,'NONE_LaserRepeater_Ventilation_S2','WeaponAttachment','Ventilation','c60c218a-685c-4768-8ada-190b8e29ddb1','','',NULL), +(9997,'Kopion Horn','Cargo','Cargo','2aad79f4-dec8-4584-9908-eec1eb487e0c','','',NULL), +(9998,'Morozov-SH-I Arms Pyrotechnic Horizon','Armor','Arms','329c8b9a-0c8f-4bc1-9036-2f4e9fe33d60','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing the same fortified armor plating, special anti-rip protective padding and ample storage, as the Morozov SH, the SH-I industrial variant was designed by RRS to protect workers employed in hostile zones while ensuring they had the full range of motion required to perform their duties. The Pyrotechnic Amalgamated Edition was made specifically for the company\'s mining efforts in Pyro during the 26th century.'), +(9999,'Basher T-Shirt','Char_Clothing_Torso_0','UNDEFINED','ce8b08dc-0962-4a30-944b-32330fdfb40e','','','Be an officially authorized party monster in this Gutterwash graphic tee from CBD with double-stitched hem and sleeves to help it survive those wild nights. \n\nWomen\'s sizes currently out of stock.'), +(10000,'Paint_Perseus_Beige_Beige_Beige','Paints','UNDEFINED','1e632aec-047d-4073-b9b9-952603523dcc','','',NULL), +(10001,'Fortune Lovestruck Livery','Paints','UNDEFINED','421f6dfe-005b-4d32-bb83-f781b7295d05','','','Inspired by the colors of Coramor, the Lovestruck livery is a iridescent pink and black look for your Fortune.'), +(10002,'Brocius Waist Apron Cloudcover','Char_Clothing_Torso_1','UNDEFINED','7dc210ff-1164-47b9-b440-50b79e96ccbd','','','Habidash\'s Brocius Waist Apron features a quilted front panel paired with side skirting to protect the wearer from any overspills or other dirtying work while still providing freedom of movement.'), +(10003,'SHIELDS','ShieldController','UNDEFINED','27055da4-53ae-4a54-8460-3e2c34fd4c04','','',NULL), +(10004,'DRAK_Clipper_Dashboard','SeatDashboard','UNDEFINED','cab2c9f0-02df-46cd-bc11-06e3a5d12d89','','',NULL), +(10005,'Door Control','Door','UNDEFINED','821d2593-fbac-4a6a-a052-45b37222b4e0','','',NULL), +(10006,'ADP Arms (Modified)','Armor','Arms','ad4a47ed-a1c2-43e9-987c-9561d53019df','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThis version of CDS\' ADP arms has been modified from its original form. Revolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(10007,'TrueDef-Pro Core Black/Silver/Blue','Armor','Torso','7e03acd0-edbf-4d74-9477-3b011cb7dad6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(10008,'DRAK_Cutlass_Red_Thruster_Maneuver_Vertical_Positive','ManneuverThruster','JointThruster','d6fadf8b-9937-4b29-b332-edd826a6c88c','','',NULL), +(10009,'Fury Waverider Livery','Paints','UNDEFINED','a8e62bfa-da71-46b5-911f-e95ca9b59201','','','The Waverider livery gives the Fury a distinct blue finish with black highlights.'), +(10010,'Flight Blade','FlightController','UNDEFINED','31cd13ad-f75f-48ab-9c3e-16d024fefffd','','',NULL), +(10011,'C8R Pisces TSB Flight Blade','FlightController','UNDEFINED','0ea9e1a2-cc41-4114-ac39-559d655c57d0','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Anvil C8R Pisces Rescue with the TSB Flight Blade from Broad & Rabiee. By re-allocating lateral thrust resources, you can expect your ship deliver increased top speeds in the straightaway.'), +(10012,'Serac','Cooler','UNDEFINED','d0b4ce5b-c8ba-4a9f-90b1-c9567a6c90e9','','','Item Type: Cooler\nManufacturer: Wen/Cassel \nSize: 4\nGrade: Bespoke\nClass: Civilian\n\nOnly available for Origin Jumpworks\' luxury liner, Wen/Cassel specially designed the Serac cooler to keep the 890 Jump operational through the diverse conditions typically encountered while cruising the stars.'), +(10013,'Seat','Usable','UNDEFINED','1d465cd8-92dd-4210-9a5a-429ec65819ae','','',NULL), +(10014,'Debnam Gloves Yellow','Char_Clothing_Hands','UNDEFINED','913ec563-307f-4e5a-88f5-05fe04a4dd6b','','','Named after the influential Terran tailor, Debnam gloves incorporate that famous tailor\'s classic design to keep your hands comfortable in colder temperatures.'), +(10015,'Aril Backpack Harvester','Armor','Backpack','eee19707-3e2d-436a-9a6e-0a447c28fd07','','','Item Type: Medium Backpack\nCarrying Capacity: 85K µSCU\nCore Compatibility: Medium & Heavy\n \nOriginally designed for miners, the Aril armor comes with an attachable backpack that can accommodate a variety of tools and supplies to keep your hands free. The Aril backpack is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(10016,'Remote Turret','Turret','GunTurret','bcec48d5-d452-42ee-980e-b8294e01880d','','','Remote Turret'), +(10017,'Weapon_Rack_DRAK_Herald','Usable','UNDEFINED','665aecf2-72e8-4cd2-87b2-b070cb08a0a2','','',NULL), +(10018,'Landlite Boots','Char_Clothing_Feet','UNDEFINED','79ffa833-298c-4ea1-8a47-191b632a23ee','','','Who says work boots can\'t be comfortable? Grindstone\'s Landlite boots are built with a breathable synth-leather material to keep your feet dry, a contoured, memory footbed, and a slip-resistant outsole, making it perfect for whatever worksite you throw at it.'), +(10019,'harvestable_base_PrisonStash_01','Misc','UNDEFINED','45d6de76-f2ff-4d51-9c64-d434149675e3','','',NULL), +(10020,'Lindinium (Ore)','Cargo','Cargo','fedd33e9-6aa4-43af-937b-5f7aea06097d','E','',NULL), +(10021,'Ketchum Beanie Black','Char_Clothing_Hat','UNDEFINED','8defaafe-7b61-42f0-baf0-d18581beb366','','','Complete your cool-weather wardrobe with the classic Ketchum beanie from Alejo Brothers.'), +(10022,'Seat','SeatAccess','UNDEFINED','09db2c92-ae62-40c1-9936-abcc686e6c99','','',NULL), +(10023,'Davin Work Gloves Sienna','Char_Clothing_Hands','UNDEFINED','a521a843-3068-4160-a5cb-772501b751bc','','','Field-tested for over fifty years, you can find Davin work gloves at numerous sites and ships around the Empire. Stegman\'s rugged construction and comfort lining have made them a customer favorite.'), +(10024,'Internal Tank','QuantumFuelTank','QuantumFuel','4da5620a-aa1d-4e90-88b0-d54e7c0de26e','','',NULL), +(10025,'Cordimon Jacket','Char_Clothing_Torso_1','UNDEFINED','f56608d1-856b-4521-bc04-e2ff7264c013','','','Carrying Capacity: 3K µSCU\n\nStegman\'s classic worker\'s jacket has been a staple of job sites for over seventy years. This duotone pattern is cut from the toughest material meaning you can wear it anywhere, anytime. It may not be armor, but it damn sure feels like it.'), +(10026,'Seat','Usable','UNDEFINED','18aa6788-f6e6-45d1-87a9-88864531155a','','',NULL), +(10027,'TRGT. STATUS','Seat','UNDEFINED','da44c54e-9b10-4205-926d-c28319d48690','','',NULL), +(10028,'MISC_Starlancer_CargoGrid','CargoGrid','UNDEFINED','4cecf036-2231-46c9-8762-3bfb2fb04229','','',NULL), +(10029,'ORIG_400i_SCItem_Seat_Captain','Seat','UNDEFINED','aff1cd14-108b-4832-ace6-3be9a13bb4e6','','',NULL), +(10030,'Seat','SeatAccess','UNDEFINED','50a3e8da-0de5-4f50-a1e1-593de2728fe8','','',NULL), +(10031,'Cutlass Mistwalker Livery','Paints','UNDEFINED','28713bde-51eb-4c42-a6dd-c74559ecf24b','','','Cover your Cutlass with grey camo with the special Mistwalker livery.'), +(10032,'PH - hdh_pants_02_01_11','Char_Clothing_Legs','UNDEFINED','280479a4-49e8-436e-b8e5-cd34717a3c62','','','Carrying Capacity: 7.3K µSCU\n\nStay warm and dry on rainy days in the Zelena pants and the Bisbee boots. Both made with water-repellant materials and built-in sweat-wicking technology, they\'ll be your go-to choice for adventures on even the most hostile worlds.'), +(10033,'Aril Arms Quicksilver','Armor','Arms','8a92b937-8df3-4891-a96f-f6224b3db4ee','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(10034,'Weapon_Rack_1_BEHR_SMG_AmmoOnly_001','Usable','UNDEFINED','edde754b-bcd2-4cb8-a972-e13ebb9b0b0c','','',NULL), +(10035,'MISC_Starfarer_Bump_Seat','Usable','UNDEFINED','865001f1-e630-4277-88c1-5aea782fb16d','','',NULL), +(10036,'Door','Door','UNDEFINED','87c4e44d-dd9d-4928-b73f-12a5502856da','','',NULL), +(10037,'Seat','Usable','UNDEFINED','e60bb6a1-88b9-4a86-8c33-89c57228d4ce','','',NULL), +(10038,'Seat','Usable','UNDEFINED','924c61e2-c40e-49b1-8da1-83c1f704445e','','',NULL), +(10039,'ADP Arms Twilight','Armor','Arms','e147e31d-4a5b-4d6b-ab5c-852d5e2121db','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(10040,'Paint_Starlifter_Pink_Pink_White','Paints','UNDEFINED','935ebeaf-9394-4d09-9b21-27e7d67815e9','','',NULL), +(10041,'Gold','Cargo','Cargo','8b6a4ea8-5052-42aa-94ec-3fb8182d68c0','','',NULL), +(10042,'Seat','SeatAccess','UNDEFINED','78114a85-b4e2-4999-94fa-42ee88747eeb','','',NULL), +(10043,'Door Control','ControlPanel','DoorPart','326404ef-f422-4dfd-a28f-efa84ea1beb5','','',NULL), +(10044,'display_ship_components_03x01x01_qdrives_s1','ShopDisplay','UNDEFINED','5febdd2d-51c5-4a06-8f2c-636f58215510','','',NULL), +(10045,'Venture Helmet Black','Armor','Helmet','09b804c2-c3fd-4665-8fdb-04c202f499a2','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover.'), +(10046,'MXOX_NeutronRepeater_PowerArray_S2','WeaponAttachment','PowerArray','f4bdaf29-0ffd-4ace-a45a-cbeea4fb1039','','',NULL), +(10047,'Decari Pod','Cargo','Cargo','802d3db3-9944-4fb7-92a6-a7b4af959efd','','',NULL), +(10048,'Relay_Maintenance_Wallpanel_Top','Usable','UNDEFINED','212e15dc-97a4-4fa7-98fc-434271072517','','',NULL), +(10049,'Caudillo Helmet Wildfire','Armor','Helmet','20ee36c8-9005-49cf-b0f3-813aea98a54a','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAdept at surviving firefights in both atmosphere and in space, the Caudillo helmet provides solid head protection while offering the wearer the stylish look of classical armor thanks to its visually striking metal crest. The Wildfire variant is being offered as a limited edition run.'), +(10050,'MPUV-1C TSB Flight Blade','FlightController','UNDEFINED','d211d188-d57e-4efc-a71f-8f081fe83e28','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Argo MPUV-1C with the TSB Flight Blade from Broad & Rabiee. By re-allocating lateral thrust resources, you can expect your ship deliver increased top speeds in the straightaway.'), +(10051,'ADP Arms Yellow','Armor','Arms','fc1dbf5c-f386-473d-8099-d3bc27598896','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(10052,'Thrust','Cargo','Cargo','28409dfc-b9b8-4a1a-b9e8-504e3698cecf','','',NULL), +(10053,'Lo Classic Kacho','Food','Box','86965521-cbe5-4587-a13c-2ffd0b76556c','','','NDR: 30\nEffects: None\n\nBig Benny\'s kacho is based on traditional family recipes straight from Corel, combining springy noodles and a rich, warm broth to create a taste enjoyed the \'verse over. The Lo Classic flavor is the unique blend of spices that got the \'Kacho Kraze\' started!'), +(10054,'HRST_LaserRepeater_FiringMechanism_S1','WeaponAttachment','FiringMechanism','2e01f175-c721-46b5-989d-cf4c1e64b3ee','','',NULL), +(10055,'Medical Supplies','Cargo','Cargo','66768faa-ebed-46b7-ba5c-143c03cca4d6','','',NULL), +(10056,'Seanut','Food','Consumable','2f002275-e636-43b5-a671-a5238e569df1','','','NDR: 17\nHEI: 07\nEffects: None\n\nEasy to grow and care for, these tubular sea creatures have become a popular food in the outer reaches of systems. When eaten raw, seanuts have a chewy and crisp texture with a bright briny and nutty flavor.'), +(10057,'Exo-8 Helmet (Used)','Armor','Helmet','19867337-458e-4396-8396-176278e2e37b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -60 / 90 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing a large face shield and torches on each side, the Exo-8 helmet lets you keep your eyes on the prize. Gyson designers smartly integrated space-safe fabrics into the helmet, so it can provide the protection you deserve at a price that won\'t break the bank. \n\nThis used helmet has been certified space-safe but may contain cosmetic defects not seen on the standard model.'), +(10058,'AEGS_Idris_SCItem_Seat_Tactical','Seat','UNDEFINED','48f1ead7-291f-43f6-91b9-3a21fe72f6a0','','',NULL), +(10059,'Counter_Bar_2m_mix_station_DEPRECATED','Usable','UNDEFINED','256d0df3-66dc-4b50-b9f1-dd7b5881580e','','',NULL), +(10060,'H_Dashboard_Projector_HUD_DRAK_Caterpillar_A','Display','UNDEFINED','2b9023a6-f5c4-4549-b4e7-9a203a331370','','',NULL), +(10061,'Strata Helmet Greycat Edition','Armor','Helmet','ab25a81e-03b5-4527-816d-b72aca854310','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design features high quality materials and a next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Greycat Edition features the colors and logo of the company.'), +(10062,'Monde Core Keystone','Armor','Torso','3203b170-0a8b-4b5d-be1a-241d619b63d5','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12.0 µSCU\nBackpacks: All\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints. \n\nThe Keystone edition features a white, gray and blue finish with URW logos.'), +(10063,'Internal Tank','FuelTank','Fuel','44a9a6fd-cb6d-4e5f-bc22-5f17f4e8b096','','',NULL), +(10064,'Seat','Usable','UNDEFINED','70037ee8-3937-41e0-85fa-d01e4aed41cc','','',NULL), +(10065,'Seat','Usable','UNDEFINED','19086563-84a2-499a-a01e-5db11365c58e','','',NULL), +(10066,'Paint_300_Dash_Wood','Misc','UNDEFINED','9774d932-4981-4c64-acd4-920708c6be77','','',NULL), +(10067,'DockingTube_Fuel_Ports_AEGS_Gladius','DockingCollar','UNDEFINED','40dd057e-af6e-4b12-aa76-2c85ffaf8aa2','','',NULL), +(10068,'Door Control','Door','UNDEFINED','ec7b993d-6fa2-4acc-9610-0a37349d3ee6','','',NULL), +(10069,'weight_barbell_rack_1_a','Misc','UNDEFINED','42ae6914-6fb6-45bb-88d9-19ef89c48a77','','',NULL), +(10070,'Carnifex Core Windfall','Armor','Torso','58b84a4e-2108-45dc-b982-1ae9a9bd483e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -5 / 38 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpack Compatibility: Light\n\nThis homemade armor provides a marginal amount of protection but maximum attitude. It\'s aggressively styled with skulls and other intimidating accessories associated with those living on the edge. Wearing such a distinct look may either keep people away... or draw them to you.'), +(10071,'Seat','Usable','UNDEFINED','92f42096-09e1-44b5-97b5-6aca970606db','','',NULL), +(10072,'Sunset Berries','Cargo','Cargo','10ef9b65-529a-4644-9258-2e3de4587021','','',NULL), +(10073,'MC-Pinhead Hat','Char_Clothing_Hat','UNDEFINED','b11c148e-8f08-4152-beeb-d35b2d0fc31b','','','Metal bullet studs are embedded into the front of this military cadet hat from CBD, which also features RAGE written across the side. \n\nWomen\'s sizes currently out of stock.'), +(10074,'Venture Undersuit Tan/Brown','Armor','Undersuit','7ed9e237-a706-4ece-adab-420b57e812d2','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(10075,'Door','AttachedPart','UNDEFINED','25b91169-2958-4df1-8052-e09ee75835b2','','',NULL), +(10076,'Screen','Usable','UNDEFINED','eceaf1f5-268f-4671-8620-5036e59e8998','','',NULL), +(10077,'sc_nvy_bdu_engineer_belt_01_01_20','Char_Clothing_Torso_2','UNDEFINED','cd27150b-9799-4850-a744-de3da1ba6373','','',NULL), +(10078,'Courser Jeans Lead','Char_Clothing_Legs','UNDEFINED','71e90d1f-7a4a-467a-8fe5-72bde27b5447','','','Made with soft yet sturdy cotton, these jeans are ripped and then \"repaired\" with colorful thread alongside misshapen patches that give them a touch of history.'), +(10079,'Internal Tank','QuantumFuelTank','QuantumFuel','85c562b9-18bf-4c4b-928c-7449e2d6f319','','',NULL), +(10080,'VNCL_Scythe_Thruster_top_back','ManneuverThruster','JointThruster','458d510d-9acb-4aa2-977e-9e40b407168e','','',NULL), +(10081,'Polaris Quasar Livery','Paints','UNDEFINED','4fba1da6-5795-4aa0-b2bd-4e5d5545cc8f','','','Ribbons of gold set against a matte black base paint bring a restrained and elevated beauty to the Polaris Quasar livery.'), +(10082,'MISC_Freelancer_MAX_Derelict_SCItem_Seat_Esc_Pod_Upper_Right','Seat','UNDEFINED','47f0d9e1-88d6-424e-a73c-5c5ef5682ba2','','',NULL), +(10083,'Seat','Usable','UNDEFINED','b8455ec8-c6db-43e3-8377-672dc2364c73','','',NULL), +(10084,'Bed','Usable','UNDEFINED','9f9e9041-ac0a-4019-9a79-2787efb1cbf1','','',NULL), +(10085,'sc_marine_bdu_shirt_01_01_eckhart','Char_Clothing_Torso_0','UNDEFINED','77db4ec3-62cf-4eb2-bc23-1f07cd1bb191','','',NULL), +(10086,'Radar_Display_Gladiator','Display','UNDEFINED','fc5b0705-02c2-4863-8bf9-b2f8ff8ee75a','','',NULL), +(10087,'Yellow QuikFlarePro','Weapon','Grenade','ec6dab4e-a4c2-4e4e-ab23-d9b573bd0b76','','','Manufacturer: Shubin Interstellar\n\nIlluminate the way forward or signal for help with the Yellow QuikFlarePro from Shubin Interstellar. For centuries, miners have counted on this flare as part of their core toolkit, thanks to its tried and true design and durability that ensures it stays ablaze in the various harsh weather and difficult atmospheric conditions encountered across the \'verse. The QuikFlarePro uses advanced tech to glow longer than regular flares.'), +(10088,'Hornet Mk II Regalia Livery','Paints','UNDEFINED','ffa18173-abfb-43e2-ab40-b066bc2454d9','','','Not every pilot was meant to fly a Hornet Mk II. Mark your distinction with the Regalia livery\'s emerald green hull paired with eye-catching gold accents.'), +(10089,'HighTechAirlockTerminalTemplate','ControlPanel','AirlockPart','c4eb30b3-6e30-4f1d-8831-4261c688f2c4','','',NULL), +(10090,'Seat','Usable','UNDEFINED','27e9f7bd-c19b-4380-aeb2-dd9dffcb9fa3','','',NULL), +(10091,'DockingTube_Fuel_Ports_VNCL_Blade','DockingCollar','UNDEFINED','400dfa5a-e5b7-4f2a-98f2-ca173043741c','','',NULL), +(10092,'Weapon_Rack_Powered_ESPR_Prowler','Usable','UNDEFINED','23288eb6-6851-4cb5-8a30-aff2b7649c10','','',NULL), +(10093,'Col_A_Airlock_Single_Small_Int','Door','AirlockPart','298bd130-2cbb-4386-8794-77119bd36046','','',NULL), +(10094,'DayBreak','PowerPlant','Power','fda65886-0ccb-4a80-a5ee-528b186d4584','','','Item Type: Power Plant\nManufacturer: Sakura Sun\nSize: 2\nGrade: C\nClass: Civilian\n\nSakura Sun knows exactly what you need. The DayBreak is a straightforward power plant that provides parity to its performance, durability, and stealth stats.'), +(10095,'Messhall_Tray','Misc','UNDEFINED','9bc5b227-46d4-48a2-9a13-5776834295d0','','',NULL), +(10096,'INTK_BANU_Defender','FuelIntake','Fuel','8c198cec-e4b1-432d-a6af-cabbec4c560e','','',NULL), +(10097,'Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','d9f2674f-b3a7-4228-abcd-14de48145afd','','','Live in comfort with MuyMuy\'s Davlos line of cotton-synthetic shirts. The durable, yet soft, fabric contains a patented SweatGuard technology that not only whisks away perspiration but helps prevent stains.'), +(10098,'Freelancer Deck the Hull Livery','Paints','UNDEFINED','2bb0bbaa-2057-45c7-a3ac-d6b6c910fbfb','','','Express your holiday spirit with the Deck the Hull livery, which uses the traditional Luminalia colors of green and red to celebrate the popular Banu festival that\'s become beloved by Humans.'), +(10099,'Toughlife Boots Seagreen','Char_Clothing_Feet','UNDEFINED','0e5a9e57-7da9-4452-aa03-b2a20604f76a','','','Grindstone\'s done it again. The Toughlife is an all-purpose workboot designed to provide comfort, durability and quality. Featuring a reinforced composite toe and lasercut sole to maximize traction on all surfaces, Toughlife is sure to be your dependable boot, day in and day out.'), +(10100,'Seat','Usable','UNDEFINED','014a08ba-1edd-49d5-bb8d-e7a00271c530','','',NULL), +(10101,'RSI Constellation Side Missile Rack','MissileLauncher','MissileRack','15e27bfc-12a3-4388-abaf-a1facf1437f3','','','RSI Constellation Side Missile Rack'), +(10102,'Artimex Helmet','Armor','Helmet','7491b9a8-f601-47d4-97ff-148924704363','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape. Visor is AR crosshair compatible.'), +(10103,'vanduul_drone_undersuit_01','Armor','Undersuit','6905cf60-5861-42c3-bbfd-c9c120c9fd27','','',NULL), +(10104,'Palatino Core Daystar','Armor','Torso','bc01680a-2d65-4572-b1b5-c09af2783c0c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: All\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower.'), +(10105,'Fizzz Cola','Drink','Can','a663297e-ad1d-4383-baae-f4f3d85b5146','','','HEI: 16\nEffects: Energizing, Hyper-Metabolic\n\nA refreshing burst of fizzzy cola flavor!'), +(10106,'Borase (Ore)','Cargo','Cargo','9d63d0db-2308-40fa-8659-389d8f6976a3','','',NULL), +(10107,'MXOX_NeutronRepeater_Ventilation_S2','WeaponAttachment','Ventilation','cd67ef2c-8124-4bca-8a43-1197c36c33cc','','',NULL), +(10108,'Taftan Boots Sandalwood','Char_Clothing_Feet','UNDEFINED','acb82f89-1b06-488e-b875-b34f1c84253e','','','Strong, practical, and stylish, these high-cut boots with reinforced straps will be just the thing you need for those long outdoor treks. The slip- and abrasion-resistant soles were constructed from a proprietary composite of recycled plastic and rubber to improve traction without sacrificing flexibility.'), +(10109,'Inquisitor Core Black Steel','Armor','Torso','c5eaa2a6-1259-47b5-b713-8e7cab5163ea','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(10110,'ORIG_890J_Seat_BattleBridge_Right','Seat','UNDEFINED','73d6e074-644f-4925-9b64-51bc2853eb27','','',NULL), +(10111,'Remote Turret','Turret','MissileTurret','5815fc36-9669-4b72-b5d1-8959cc857e48','','','Remote Turret'), +(10112,'DRAK_Mule_CargoGrid_Front','Cargo','UNDEFINED','e1776ba2-5abe-4f34-b61c-1c84f2d0e84e','','',NULL), +(10113,'SHIELDS','ShieldController','UNDEFINED','63feae6d-5ee6-470c-a388-f0d5035fb1e1','','',NULL), +(10114,'Zip','Cargo','Cargo','b9507a5c-d597-45a9-a140-2e80ceba074f','','',NULL), +(10115,'P8-SC \"Executive Edition\" SMG','Weapon','Medium','f39aea20-4d89-4525-be69-d6cd336e05e0','','','Manufacturer: Behring\nItem Type: SMG\nClass: Ballistic\n\nMagazine Size: 45\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nWhen the top fighting force in the universe chooses a weapon as their standard, it pays to stand up and take notice. The Behring-crafted P8-SC has been the ballistic submachine gun of choice for the UEE Marines since it first came off the production line, but since then, many have come to rely on this weapon for their own personal safety and protection.'), +(10116,'Door Control','Door','UNDEFINED','b9bd9fa9-88f7-4224-83fb-89f255471eb9','','',NULL), +(10117,'Seat','SeatAccess','UNDEFINED','f998f007-9ddd-4453-a57f-8865127166ba','','',NULL), +(10118,'Internal Tank','FuelTank','Fuel','03219503-0950-4a54-86d1-3513db38de66','','',NULL), +(10119,'Seat','SeatAccess','UNDEFINED','cfc0fca7-4203-4230-9657-644bc77d94f9','','',NULL), +(10120,'TrueDef-Pro Core Base','Armor','Torso','c2e23ceb-6844-4dde-a75d-5230fd0ec507','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(10121,'Door Control','ControlPanel','DoorPart','a811ba87-f7b8-48da-9cc8-a953964144df','','',NULL), +(10122,'DRAK_Golem_Thruster_Main_Right','MainThruster','FixedThruster','594b7665-57fd-44d5-a1c5-b48a8a5af048','','',NULL), +(10123,'Weapon_Rack_1_NONE_LMG_Uncommon_001','Usable','UNDEFINED','520f6c75-95d5-4a63-a6a8-8bf34e81a2b5','','',NULL), +(10124,'VNCL_Glaive_RADR_Display','Display','UNDEFINED','2735f9c2-6076-4de1-a4d5-720f86e230f7','','',NULL), +(10125,'Weekend Warrior Smoothie','Drink','Bottle','4dee4e50-4c57-450e-b866-6f42eac41430','','','HEI: 39\nNDR: 15\nEffects: Immune Boosting\n\nGarcia\'s Greens Weekend Warrior Smoothie is the perfect way to energize your immune system thanks to this electric blend\'s hint of spice.'), +(10126,'CSP-68M Backpack Epoque','Armor','Backpack','dda5fe81-7978-4bb9-86e5-c551f4d66e12','','','Item Type: Medium Backpack\nCarrying Capacity: 70K µSCU\nCore Compatibility: Medium & Heavy\n\nBe ready for any situation with the CSP-68M Backpack. Originally designed for the rigors combat support, this medium backpack has become popular thanks to its durability and a patented core connector that helps the CSP-68M sit comfortably and balanced on the back.\n\nThe Epoque edition features a navy and black coloring, finished with baroque gold detailing.'), +(10127,'sw_medium_helmet','Armor','Helmet','4d31155d-4ab9-45b7-abc6-1965e84dc94e','','',NULL), +(10128,'Edgeriders Shoes Bluebee','Char_Clothing_Feet','UNDEFINED','11a3e18d-3eab-4de7-b2f7-1aa26f5b8cbe','','','Nothing will take you back to the golden era club scene of Prime in the 2920s like Upsiders\' new Edgerider sneakers. These slip-on sneakers feature daz patterning and modern impact cushioning to keep you up and active for days on end.'), +(10129,'GATS_BallisticCannon_Barrel_S3','WeaponAttachment','Barrel','5bcd7b38-3d29-40f5-be4f-9d1bf81514ea','','',NULL), +(10130,'Redfin Energy Modulators','Cargo','Small','09dec91f-5480-4757-8ddc-642f8c40c8dc','','','Made by various Banu manufacturers, this energy modulator is distinct for its red-hued heatsinks. Though it can be installed into most Human component subsystems to reduce power draw, its extremely dangerous fail rate has caused it to be banned for import into the UEE.'), +(10131,'Beradom','Cargo','Cargo','8198cdbc-74da-40ac-96c2-baacf49b767b','','','Formed when sap from the Beraber Fir is crystalized during forest fires, this transparent deep blue \"gemstone\" is often polished smooth and used in jewelry. While it can be manufactured by growing trees and then doing a controlled burn, the time investment for the trees to reach the proper maturity still make this a rare commodity.'), +(10132,'Plasma Battery','Cargo','Cargo','1f024f7b-4b63-4b8f-897f-eede4f062ff0','','','A small plasma battery developed for use in ASD facilities.'), +(10133,'can_drink_3_energy_pips_shop_2x5_a','ShopDisplay','Default','eb62622c-0571-418f-8342-9f1392a28164','','',NULL), +(10134,'CRUS_Starlifter_Thruster_VTOL_Wing_Right','MainThruster','FixedThruster','f98b974a-28cf-42dd-9ca0-05c12ab1d4af','','',NULL), +(10135,'Hornet F7A Ship Armor','Armor','Medium','64ee6d28-2235-41fd-a6d7-dde7cb808393','','','Hornet F7A Ship Armor'), +(10136,'Geist Armor Arms Snow Camo','Armor','Arms','bfc2d914-873d-45a3-866d-c5757fb20c7b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.\n\nFeaturing a hooded shawl and a white digital camo pattern, the Snow Camo edition is perfect for stalking prey in frozen environments.'), +(10137,'Door','Door','UNDEFINED','8044f842-20db-4fa0-acbc-fa3bb9016684','','',NULL), +(10138,'Processed Goods','Cargo','Cargo','8c466409-fe60-4c6b-9832-30faa2674694','','',NULL), +(10139,'AEGS_Retaliator_SCItem_Seat_Bed_Rear_Left','Seat','UNDEFINED','b9be6ca1-b4a1-46e9-b57f-8b69e3bda22d','','',NULL), +(10140,'MISC_Fortune_Thruster_Mav_Fixed_03_Top','ManneuverThruster','FixedThruster','3d8087c6-49dc-4164-96b5-fc5ff0257d01','','',NULL), +(10141,'ORIG_300i_Thruster_Main','MainThruster','FixedThruster','06c74aa3-d87e-4a72-88ae-812d213cfc7c','','',NULL), +(10142,'Star Kitten Mug','Drink','UNDEFINED','d5f2412c-e848-44ff-87a3-df1df8a5e824','','','The cuteness can\'t be contained but hot beverages can be with this Star Kitten mug. Personally designed by the character\'s legendary creator Genady Kuzo, it features an extra large handle that makes it easy to hold and is constructed with an ultra-durable ceramic so its adorableness won\'t chip or fade away.'), +(10143,'Internal Tank','QuantumFuelTank','QuantumFuel','33745bfa-b2b5-4dc3-95cc-0388c5944865','','',NULL), +(10144,'Door Control','Door','UNDEFINED','bd7870ce-dc16-49a7-bc90-0bea76e6b80d','','',NULL), +(10145,'Seat','SeatAccess','UNDEFINED','7fcdb3cc-9618-4c84-9025-f580f53dd272','','',NULL), +(10146,'H_Dashboard_Projector_HUD_ORIG_X1','Display','UNDEFINED','5d869425-a747-494f-bd10-1d0e347fd760','','',NULL), +(10147,'Detara Jacket Mandalay','Char_Clothing_Torso_1','UNDEFINED','a39a7c2d-4985-4ecb-b96f-ab898d8db6f7','','','Carrying Capacity:1000 µSCU\n\nThe Detara Jacket by Habidash weaves several long panels of durable fabric together to create a unique silhouette well suited to harsh environments.'), +(10148,'Fierell Cascade','PowerPlant','Power','50e95028-4764-416c-9380-7d9d52d8d82b','','','Item Type: Power Plant\nManufacturer: Aegis Dynamics\nSize: 1\nGrade: B\nClass: Military\n\nRely on Aegis’ expertise to power your ship. The Fierell Cascade is a military-grade power plant that prioritizes performance over everything else.'), +(10149,'Bottle','Bottle','Default','a4324c66-f319-4d92-860e-ec7bba081dfa','','','Bottle'), +(10150,'Glacosite','Cargo','Cargo','221cf92e-190e-4ab5-9cdb-65a0eb6ce957','','','As glaciers form, heavier mineral contents sink over time and are then crushed by the weight above as the ice deforms and flows. When the glacier recedes, Glacosite deposits are left behind. White and blue in color, the crystals form in long shiny strands that almost are cotton-like in appearance. Glacosite has found specialized commercial use since it is an extremely light and durable insulator.'), +(10151,'Internal Tank','QuantumFuelTank','QuantumFuel','485b5298-7bcc-49a1-a542-543fcff8b53e','','',NULL), +(10152,'Carryable_1H_CY_tool_manual_socket_1_g','Misc','UNDEFINED','d3ff6806-c100-499e-be37-f3d3b67209de','','',NULL), +(10153,'ORC-mkV Legs Purple','Armor','Legs','4f7dae90-0366-431c-9f65-79b17f571512','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(10154,'Bed','Usable','UNDEFINED','3369ea25-5708-4904-a527-2fed9d8c122b','','',NULL), +(10155,'Door','Door','UNDEFINED','02544986-5ea1-4536-93dc-685b66cbe1c9','','',NULL), +(10156,'Rieger-C2 Module','MiningModifier','Gun','369d2b1b-d42e-41b4-aff4-74de9712ab68','','','Manufacturer: Shubin Interstellar\nItem Type: Mining Module (Passive)\n\nMining Laser Power: 120%\n\nOptimal Charge Window Size: -3%\n\nThe Rieger-C2 Module boosts laser power but requires more precision to find an effective mining area.'), +(10157,'Stor*All 1 SCU Self-Storage Container','InventoryContainer','Cargo','44512a35-3a37-48b9-bf0e-c1bf87b4503b','','','Designed by one of the most trusted names in cargo pods, the Stor*All Self-Storage Container provides a convenient place to keep anything too cumbersome to carry on your person. Its durable impact-resistant construction is sealed to survive the vacuum of space.'), +(10158,'Faction Jacket Purple','Char_Clothing_Torso_1','UNDEFINED','afe865e8-c514-45e9-91c8-dad4e8d35a87','','','Carrying Capacity: 1K µSCU\n\nWhether you\'re coasting through outdoor adventures or cruising to exclusive afterparties, the Faction coat is sure to turn heads. Fusing sections of ultra-insulated brick quilting with 987\'s DuraBull ripstop reinforced fabric, you\'ll stay warm while still looking cool.'), +(10159,'XIAN_Scout_SCItem_SeatAccess','SeatAccess','UNDEFINED','1ac88a6c-c145-4a53-83dc-22b6fdf56e76','','',NULL), +(10160,'Pulse Laser Pistol','Weapon','Small','02e848a0-d729-4826-a780-8506a2ae4a89','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Pistol\nClass: Energy (Laser)\n\nBattery Size: 60\nRate of Fire: 500 rpm (1000 rpm rapid)\nEffective Range: 15m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nThe Pulse Laser Pistol is a fully automatic pistol intended for close quarter combat. VOLT designed the weapon with a unique capacitor that condenses the pistol\'s laser energy, increasing its rate of fire at the cost of greater inaccuracy and a higher risk of overheating.'), +(10161,'Future Navy Pilot T-Shirt','Char_Clothing_Torso_0','UNDEFINED','39f98c32-8fc6-45d8-a9ed-0c726f9c49ed','','','Are you ready to shoot for the stars? Show the \'verse that you\'re on the way to being the best of the best: a pilot of the UEE Navy. In addition to the message emblazoned on the front, this show-stopping t-shirt features an all-over image of a blue and white nebula, the seal of the UEE Navy, and the Invictus logo.'), +(10162,'F55 LMG','Weapon','Medium','d52a4cbb-4791-476d-a104-9f21e8d3f855','','','Manufacturer: Gemini\nItem Type: LMG\nClass: Ballistic\n\nMagazine Size: 150\nRate Of Fire: 1000 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S2), Barrel (N/A), Underbarrel (S3)\n\nFeaturing an explosive rate of fire that tops at a 1000 rpm and Gemini\'s sleek and professional styling, the F55 is a light machine gun for discerning clientele who want the \'verse to know that they are not to be trifled with.'), +(10163,'Weapon Rack','Usable','UNDEFINED','747296ea-5e9c-49c5-a984-3c70b934cd95','','',NULL), +(10164,'Aurora Mk I Shocking Blue Livery','Paints','UNDEFINED','4e6b46cc-6675-4449-bbb7-1726d21c3404','','','Liven up the Aurora with this slick blue livery that is sure to earn you a second look.'), +(10165,'Aegis Sabre - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','07ada054-698a-4769-8129-ddd9bc059b75','','','Aegis Sabre - Decoy Launcher'), +(10166,'Door Control','Door','UNDEFINED','58141363-7ffc-4df5-8f68-a62a66e3afad','','',NULL), +(10167,'TRGT. STATUS','Seat','UNDEFINED','135341a7-ecbd-4cf5-9454-19eb9da42675','','',NULL), +(10168,'Harlowe Shirt Dark Red','Char_Clothing_Torso_0','UNDEFINED','d80c8d06-9687-411f-9d8c-ddaa81d1f6de','','','Capable as being worn on its own or as a base for layers, this long-sleeve henley style shirt from Alejo Brothers keeps you stylish and comfortable.'), +(10169,'KRIG_P52_Merlin_DockingTube','DockingCollar','UNDEFINED','1006fe37-88d5-46b7-b2de-3dc403394ada','','',NULL), +(10170,'SalvageFillerStation_MISC_Fortune_Right','SalvageFillerStation','UNDEFINED','4f191c66-88c5-4e6a-9762-7a5a5a67d6a2','','',NULL), +(10171,'Bed_MISC_Starfarer_Gemini_Captain','Usable','UNDEFINED','77b63487-90db-4d41-bdfa-c8bf7ce989e6','','',NULL), +(10172,'Flight Blade','FlightController','UNDEFINED','4e0a3638-d7e5-4609-8488-f72dc050d9f7','','',NULL), +(10173,'MacFlex Legs Purple','Armor','Legs','ed0660db-04f2-4520-9486-645f113d686b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(10174,'Seat','Usable','UNDEFINED','4d2d28ae-6c89-4e5f-8622-0e59ff0ad558','','',NULL), +(10175,'Razorback Pants Aqua','Char_Clothing_Legs','UNDEFINED','e339d52e-721c-4dab-9928-8e410ec2cf44','','','Carrying Capacity: 2K µSCU\n\nDMC\'s Razorback pants are made to be worn. Built from industrial quality material, they feature reinforced kneepads to prevent tears on the job and stay rugged yet comfortable.\n\nWomen\'s sizes currently out of stock.'), +(10176,'Balor HCH Helmet','Armor','Helmet','35e498db-02e4-4963-9afa-ee08970c2036','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. Visor is AR crosshair compatible.'), +(10177,'orig_bedding_duvet_3_f','Seat','UNDEFINED','e72d14e9-a264-4b8d-964f-ece2469276e3','','',NULL), +(10178,'RSI_Constellation_Taurus_Thruster_Turbine_Rear','ManneuverThruster','JointThruster','e564e22f-bd12-40c1-8a26-83cc52be7cb6','','',NULL), +(10179,'Carryable_1H_CY_tool_manual_socket_4_a','Misc','UNDEFINED','ce472825-424c-4b31-9dca-5f85404f3c65','','',NULL), +(10180,'Drink_bottle_substitute_01_a','Drink','Bottle','e33ad9e1-7ea9-423c-a573-dd11fd242293','','',NULL), +(10181,'Ambit Coverall','Char_Clothing_Torso_1','UNDEFINED','e6113791-d139-452a-8a89-9d2ab5776a7f','','','Carrying Capacity: 0.4K µSCU\n\nThe Ambit Coverall is ideal jobsite attire with its multiple pockets, special super-stain resistant fabric, and a generous cut to allow for unrestricted movement. Step in, zip up, and work all day in comfort thanks to Stegman\'s.'), +(10182,'Loscha Work Vest Sirocco','Char_Clothing_Torso_1','UNDEFINED','7afc67af-f00f-47c3-bda2-867068cbb3ac','','','Carrying Capacity: 400 µSCU\n\nThe heavy-duty Loscha Work Vest by Alejo Brothers is designed for people who want to be prepared for anything at any time.'), +(10183,'WiDoW','Cargo','Cargo','657ae4dc-a300-4fba-a882-0e2e3061f63c','','',NULL), +(10184,'facial_hair_032','Char_Head_Beard','UNDEFINED','5519577b-6efa-4f8a-9c64-62af3ff528ba','','',NULL), +(10185,'Li-Tok Boots Aqua','Char_Clothing_Feet','UNDEFINED','fec6388a-e902-41b2-a6e4-f0a6c8853e72','','','Stylish yet rugged, NorthStar\'s Li-Tok boots are made from a composite nylon fabric, vulcanized rubber grips that hold fast to a variety of surfaces, and reinforced ankle support making these perfect for hanging out or on the job.\n\nWomen\'s sizes currently out of stock.'), +(10186,'Quartz \"Hurston\" Energy SMG','Weapon','Medium','66614c4b-2fc8-4a82-a315-aef1ae1be062','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: SMG\nClass: Energy (Electron)\n\nBattery Size: 45\nRate of Fire: Beam\nEffective Range: 15-20 m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nManufacturer VOLT\'s Quartz SMG utilizes exciting new weapon technology that fires a short range beam that fractures into multiple beams the longer it fires, making it an extremely effective close quarter weapon. This special edition features Hurston branding.'), +(10187,'H_Dashboard_Projector_HUD_ANVL_Carrack','Display','UNDEFINED','2cee16d2-2219-4720-940b-8be2ebe6978b','','',NULL), +(10188,'fruit_pumpkin_1_a','Cargo','UNDEFINED','40b6eb6c-c3b6-4221-a48a-b9639329a97b','','',NULL), +(10189,'Chlorine','Cargo','Cargo','32fe2145-b56a-4ee8-ab32-d79dfd8a9605','','',NULL), +(10190,'BANU_TachyonCannon_Ventilation_S2','WeaponAttachment','Ventilation','8766cd54-08e9-42a3-b2b0-d85cf1790913','','',NULL), +(10191,'Lynx Legs Pariah','Armor','Legs','c1c986a8-5a4c-4a6f-b508-8da3d3a7bd20','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(10192,'Internal Tank','FuelTank','Fuel','1dd08408-4329-493d-968b-a5f098683222','','',NULL), +(10193,'CRUS_Starfighter_Energy_Nacelle_Left','Misc','UNDEFINED','0e63559e-65e8-43eb-a424-b4ca22892086','','',NULL), +(10194,'Ball','Char_Head_Piercings','UNDEFINED','ba82be4f-6607-41e3-ac0f-bf0bbb3482e6','','',NULL), +(10195,'Bantam Hat DMC','Char_Clothing_Hat','UNDEFINED','83cba1b0-098e-49c1-a45a-d43a6c13a40a','','','The Bantam hat from 987 offers a large bill and cushioned banding for all-day comfort. This version features a Denim Manufacture Corporation logo on the front with an dark slate back and bill.'), +(10196,'SCItemDisplayScreen_Station_Info_A','Display','Default','b42b1c83-3532-4cfb-ade7-9dd7b53ef13c','','',NULL), +(10197,'ANVL_Ballista_SCItem_SeatAccess_Support','SeatAccess','UNDEFINED','0252385f-3f85-401d-ac94-521ec902a169','','',NULL), +(10198,'he_a_wall_low_right_a_2Ports','ShopDisplay','UNDEFINED','ca82d371-9c52-4354-b375-936c40160d8a','','',NULL), +(10199,'Arden-CL Backpack','Armor','Backpack','d502827b-23b7-4e61-ab6d-86cba29b6f30','','','Item Type: Light Backpack\nCarrying Capacity: 40K µSCU\nCore Compatibility: All\n\nWhether carrying supplies into a combat zone or simply hauling extra gear, the Arden-CL backpack is battle ready and tested. Roussimoff Rehabilitation Systems designed the backpack with a universal core connector allowing it to attach to a wide variety of armors.'), +(10200,'Seat','Usable','UNDEFINED','8085b54f-2516-4929-8eea-dc47121dd819','','',NULL), +(10201,'ARGO_MPUV_CargoGrid_Main','CargoGrid','UNDEFINED','2e20319b-0d57-4c27-a3f7-6317736d0d76','','',NULL), +(10202,'Stirling Exploration Backpack','Armor','Backpack','ec96a58f-4675-4fc4-bbd7-33e3332e105f','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nThis heavy duty backpack is compatible with the Stirling suit and provides a convenient storage solution.'), +(10203,'Cargo_Comm_125x3_Mineral_Beryl_a','Cargo','Cargo','e1f1fe4f-4e9c-41d4-9f0e-b47aef85af87','','',NULL), +(10204,'Dolivine','Cargo','Cargo','59cd6143-9103-4dfe-a130-d7fb08ba25ba','','',NULL), +(10205,'AAT-34 Turret','Turret','MannedTurret','638eb0ee-251a-48f5-99d8-5d274c584ecd','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(10206,'Carryable_1H_CY_drug_calcar_1_b','Misc','UNDEFINED','36ee7f2d-c98e-4469-903b-920ff380ab6b','','',NULL), +(10207,'AEGS_Idris_SCItem_Seat_Pilot_Blocked','Seat','UNDEFINED','8b755b7e-8217-4d68-b6ea-5b06f0e8b9f8','','',NULL), +(10208,'tool_tinsnips_1_a','Misc','UNDEFINED','4f064836-b337-490a-9436-09108e191adf','','',NULL), +(10209,'P8-SC \"Epoque\" SMG','Weapon','Medium','1b9a7f76-907b-4c1a-8073-d353ebbb46fd','','','Manufacturer: Behring\nItem Type: SMG\nClass: Ballistic\n\nMagazine Size: 45\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nWhen the top fighting force in the universe chooses a weapon as their standard, it pays to stand up and take notice. The Behring-crafted P8-SC has been the ballistic submachine gun of choice for the UEE Marines since it first came off the production line, but since then, many have come to rely on this weapon for their own personal safety and protection. The Epoque edition features a navy and black coloring with baroque gold detailing and stylized wings on either side of the grip.'), +(10210,'Baru Gloves Brick (Left Only)','Char_Clothing_Hands','UNDEFINED','a2ff68d7-d240-4e11-97ce-87ee7b9c3954','','','Ensure you hands are always dry and at the right temperature with the Baru gloves. An advanced sensor system protected by a metal plate on the back of the hand monitors and regulates conditions within the glove. A patented synthetic leather woven with special microfibers works with the sensors and a strap cuff provides a snug fit.'), +(10211,'WeaponMount_FakeHolographic_Gun_S1_default_gatling_ballistic','WeaponMount','WeaponControl','a3efcfb9-9fcc-4b5e-ab26-a6b54f44a7a0','','',NULL), +(10212,'Davin Work Gloves Yellow','Char_Clothing_Hands','UNDEFINED','31a2094c-7849-4836-b52d-169cfe1b4a12','','','Field-tested for over fifty years, you can find Davin work gloves at numerous sites and ships around the Empire. Stegman\'s rugged construction and comfort lining have made them a customer favorite.'), +(10213,'Oza','Cargo','Cargo','1fe7dc01-47fa-4ed7-bce9-0a78ba0ccf7d','','',NULL), +(10214,'Seat','SeatAccess','UNDEFINED','cf0b0f09-498a-4b6b-a431-9e5a3984fc73','','',NULL), +(10215,'Seeker IX-G Torpedo','Missile','GroundVehicleMissile','d2cd6b43-5787-41a2-a581-4817b7155b22','','','Manufacturer: Talon \nTracking Signal: Electromagnetic \nSize: 9 \n\nTalon\'s Seeker torpedo is a precision, EM-targeting torpedo capable of delivering a massive payload quickly and accurately. Note: This missile may only be launched by ground vehicles.'), +(10216,'Aphorite','Misc','Harvestable','3f137385-dd8f-410b-b5f3-7b4d283c09cd','','','Decorative jewel crystal prized for its multi-hued tones.'), +(10217,'TMBL_Storm_Dashboard_Pilot','SeatDashboard','UNDEFINED','a5d87d1b-43e6-4dfe-927e-0956f7593bdb','','',NULL), +(10218,'Manned Turret','TurretBase','MannedTurret','83b3c04e-f976-4bed-9f8b-be73ec7c3bde','','',NULL), +(10219,'Li-Tok Boots Orange','Char_Clothing_Feet','UNDEFINED','63b41ddc-cc25-4e15-8f70-a5d2fa520c16','','','Stylish yet rugged, NorthStar\'s Li-Tok boots are made from a composite nylon fabric, vulcanized rubber grips that hold fast to a variety of surfaces, and reinforced ankle support making these perfect for hanging out or on the job.\n\nWomen\'s sizes currently out of stock.'), +(10220,'Seat','SeatAccess','UNDEFINED','5d7e4c94-dc94-4c2b-8f74-5d822d0252d0','','',NULL), +(10221,'Spartan Sidewinder Livery','Paints','UNDEFINED','0b55d477-383a-436b-b78a-746372ea94d2','','','Blend into rocky, desert landscapes with the Sidewinder livery for the Spartan.'), +(10222,'Door Control','Door','UNDEFINED','73a062a8-411a-4398-b912-6fa0d15475b8','','',NULL), +(10223,'Tuvois Jacket Grey','Char_Clothing_Torso_1','UNDEFINED','58412166-9986-48d9-a9d8-18cfe3215902','','','Carrying Capacity: 1K µSCU\n\nCreated in collaboration with legendary designer Avon, OpalSky is proud to unveil the Tuvois, an open vest featuring stark, bold styling that\'s destined to make an impression. \n\nWomen\'s sizes currently out of stock.'), +(10224,'Morozov-SH-I Helmet Gideon','Armor','Helmet','89aec5b9-d51b-41fe-ad81-2ba9d9668a10','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing the same fortified armor plating, special anti-rip protective padding and ample storage, as the Morozov SH, the SH-I industrial variant was designed by RRS to protect workers employed in hostile zones while ensuring they had the full range of motion required to perform their duties. The Gideon edition features a heavily worn teal finish with yellow accents. Visor is AR crosshair compatible.'), +(10225,'Copper','Cargo','Cargo','add891f5-99ec-4322-8ab7-d138b08cf27b','','',NULL), +(10226,'DockingTube_Fuel_Ports_DRAK_Herald','DockingCollar','UNDEFINED','db20e819-90c5-402c-8220-3a8a92ffc891','','',NULL), +(10227,'Internal Tank','FuelTank','Fuel','05cbc30c-9e21-44d1-bad7-1857ef4e31b3','','',NULL), +(10228,'Golden Medmon','Cargo','Cargo','4ce3ddf1-cdc3-45f7-8a3f-c1d8454e76b8','','',NULL), +(10229,'Death Mask \'54 Coin','Misc','Utility','755e9c47-374a-4bcb-9746-b5f9a97459cc','','','Carried by outlaws as way to show their elite standing in the pirate underworld, the Death Mask coin features a fierce Human skull on one side and a defaced UEE symbol on the other.'), +(10230,'Weapon_Rack_1_Volt_Shotgun_Uncommon_001','Usable','UNDEFINED','0ae5eb60-a259-47b5-8fdf-08f26828dcfb','','',NULL), +(10231,'G-2 Helmet Dark Green','Armor','Helmet','be40eecd-427b-485c-8010-83ef35e52386','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. Visor is AR crosshair compatible.'), +(10232,'Paint_300_Dash_CarbonFiber','Misc','UNDEFINED','2a97cff8-dc03-470a-860e-9226650da066','','',NULL), +(10233,'ANVL_Asgard_Thruster_Mav_Joint_Bottom','ManneuverThruster','FlexThruster','bdd2a629-37f6-4b8f-a02c-c3b5602a0d04','','',NULL), +(10234,'Adiva Jacket Aqua','Char_Clothing_Torso_1','UNDEFINED','e822bea6-453a-49aa-81f7-ec48d6548da8','','','Carrying Capacity: 1K µSCU\n\nDefine your ultimate you. The Adiva is an asymmetrical pullover with bold mixed-materials and solid reinforced trim.'), +(10235,'box_plastic_4_005x005x005_a_CINEMATIC','Cargo','UNDEFINED','d235d0b1-d684-43e8-be31-1a5896a697bb','','',NULL), +(10236,'ORIG_890J_Dashboard_BattleBridge_Left','SeatDashboard','UNDEFINED','07305fb3-2380-4dd0-9b47-223b10ee5561','','',NULL), +(10237,'Oracle Helmet White','Armor','Helmet','31e8ff2d-5e6a-44ba-8697-e75fb2fdbcb3','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(10238,'Libio Jacket Grey','Char_Clothing_Torso_1','UNDEFINED','6bfa3cf9-b399-402b-a6f7-d811656a426d','','','Carrying Capacity: 1K µSCU\n\nOne of OpalSky\'s classic pullovers, the Libio features a two-tone asymmetrical pattern and polyweave blend to keep it elegant and striking every time you wear it.\n\nWomen\'s sizes currently out of stock.'), +(10239,'Kamar Jacket','Char_Clothing_Torso_1','UNDEFINED','e12e6f4e-bd59-47a0-977f-31db657bf276','','','Carrying Capacity: 1K µSCU\n\nThe Kamar is a modern update on a classic style featuring a truly unique design and silhouette. Centered around an ultra-soft velvet front panel, it features a fitted collar, wide pleated waistband, and bishop sleeves cinched by extra long cuffs. The result is a formal top that\'s bold yet timeless.'), +(10240,'SCItemDisplayScreen_Station_Info_B','Display','Default','017917c0-8529-405b-b23a-e24f047193b3','','',NULL), +(10241,'ANVL_Hornet_Dashboard_Pilot','SeatDashboard','UNDEFINED','1fbd87cc-fb7d-47d3-8f49-1dceddd3c451','','',NULL), +(10242,'Door','Door','UNDEFINED','4725faf9-4517-41f2-adfd-d3ad9e2fb36c','','',NULL), +(10243,'ANVL_Hornet_F7CM_Mk2_Thruster_Retro_Right','ManneuverThruster','Retro','98fa5111-88b3-42f0-96c1-7c0cca1c674c','','',NULL), +(10244,'Guardian Desert Dusk Livery','Paints','UNDEFINED','924778b7-f262-4443-ba0a-6bc180c5eacd','','','Bold and adventurous, the Desert Dusk Guardian livery creates a gritty sense of sandblasted stone and darkened desert storms.'), +(10245,'Palatino Legs Moonfall','Armor','Legs','80f66f6f-8b0b-4517-87e9-8f094dcb2b55','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower.'), +(10246,'Fizzz Cola','Drink','Can','1c02d6b2-da89-4ca2-bbbe-16397ba9808f','','','HEI: 16\nEffects: Energizing, Hyper-Metabolic\n\nA refreshing burst of fizzzy cola flavor!'), +(10247,'RSI_Perseus_Thruster_VTOL','ManneuverThruster','UNDEFINED','1461ba9c-95b4-42db-930e-e62dd7630798','','',NULL), +(10248,'MSD-423 Missile Rack','MissileLauncher','MissileRack','fcf0cee0-94f6-4bfb-aed3-e255d7f1e12c','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 4\nMissiles: 2xS3\n\nBehring’s MSD-423 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 4 hardpoint for the reliable and effective launch of two S3 missiles.'), +(10249,'Cup','Drink','UNDEFINED','489a0746-be25-4666-87a5-38826ba6ce35','','','A drinking vessel.'), +(10250,'Bar_Table_Direct','Usable','UNDEFINED','617f46e1-db4d-401c-80f9-830279bf84f7','','',NULL), +(10251,'Outback Arms Molehill Brown','Armor','Arms','54b6887e-934e-4299-84cc-2b8e7cf642a8','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -65 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nSend a statement with thick leather paired with metal plated cuffs, pauldrons and spike-backed gloves. The Molehill version is dyed a neutral brown to keep you subtle, but not unsightly.'), +(10252,'Seat','SeatAccess','UNDEFINED','b3c8209e-01c4-4f9a-a191-d2045e58c911','','',NULL), +(10253,'AEGS_Idris_Thruster_Main_01','MainThruster','JointThruster','bd322d68-703f-4e11-9496-76c049b50552','','',NULL), +(10254,'Corundum (Raw)','Cargo','Cargo','99f0cfc0-4167-4534-9499-5407cd66f862','','',NULL), +(10255,'Party Favors','Cargo','Cargo','f5f27fe1-874a-4e09-af0d-03dd371ffe0a','','',NULL), +(10256,'Datapad','Misc','Gadget','82d7d445-2937-40fd-9787-91614bd450a2','','','A portable tablet computing device featuring a touchscreen display.'), +(10257,'Door Control','Usable','UNDEFINED','e8243c87-a6e6-4719-8e72-0fe2df899552','','',NULL), +(10258,'Gasping Weevil Eggs','Cargo','Cargo','55ec8856-e51f-41a7-9362-c1171558f79b','','',NULL), +(10259,'Nyman Jacket Grey','Char_Clothing_Torso_1','UNDEFINED','de5a222c-66b2-4fee-baca-30fa53011c75','','','Carrying Capacity: 1K µSCU\n\nOpalSky\'s Nyman light pullover is perfect to have on hand when lounging poolside or on those chilly nights.'), +(10260,'Invictus Hat Blue','Char_Clothing_Hat','UNDEFINED','b8969809-ae7b-429d-b4cd-a30ebe4f4e94','','','Show your support for the Navy and the brave souls that serve the Empire with this classic cadet hat commemorating Invictus Launch Week.'), +(10261,'CRUS_Starfighter_Thruster_Retro_Right','ManneuverThruster','FixedThruster','92c0f169-c622-4f86-966b-708bdfca9469','','',NULL), +(10262,'StrikeForce II-G Missile','Missile','GroundVehicleMissile','e768a935-97f7-45fc-9201-79ba2c5802da','','','Manufacturer: Thermyte Concern \nTracking Signal: Cross Section \nSize: 2 \n\nThe StrikeForce is the latest culmination of Thermyte Concern\'s expansion into the missile industry, showcasing notable design and cross-section targeting improvements. Note: This missile may only be launched by ground vehicles.'), +(10263,'TrueDef-Pro Core CDF','Armor','Torso','e0ce3a2c-f71b-421f-b6e2-a22da0359601','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents. This special version honors those who bravely fight alongside law enforcement and the Navy when called upon during times of great need by featuring a Civilian Defense Force logo on the front and back.'), +(10264,'Deri Gloves Crimson','Char_Clothing_Hands','UNDEFINED','3a9c9fac-d4d4-47a6-b268-bc71f3cf6cfe','','','Maintain a tactile sense of the world while also keeping your hands safe and dry with the Deri fingerless gloves. Featuring a comfortable inner lining, lightweight plating on the back of the hand and slip resistant palm padding, the Deri gloves are an ideal choice for a wide variety of tasks.'), +(10265,'Seat','SeatAccess','UNDEFINED','7acc9c50-1474-4d42-88f1-a937936f87ab','','',NULL), +(10266,'Apollo Tier 3 Module Right','Module','UNDEFINED','41eb4311-f7d4-8db4-1cb5-f77b32eb5c80','','','This module contains 3x Tier 3 medical beds.'), +(10267,'Testudo Backpack Deathblow','Armor','Backpack','c7714630-8e01-4be4-9fd4-f123a192a3eb','','','Item Type: Medium Backpack\nCarrying Capacity: 105K µSCU\nCore Compatibility: Medium & Heavy\n\nBased on Quirinus Tech\'s Testudo medium backpack, the Deathblow variant has received unauthorized aftermarket modifications. The backpack may feel as light as a feather in your hands, but it can hold an impressive amount of weight thanks to its use of the same tough yet lightweight plating as the armor set.'), +(10268,'RSI_Perseus_DockingTube','DockingCollar','UNDEFINED','6a181062-8e13-401b-836d-17f6aab01d4f','','',NULL), +(10269,'RSI_Scorpius_Thruster_Retro_Left','ManneuverThruster','JointThruster','9fa91245-dc14-429c-b35e-9ddae3b36b40','','',NULL), +(10270,'Hawk Central Tower Livery','Paints','UNDEFINED','19fa979b-8c22-4e75-a8e1-62c778b6b9ad','','','Give the Hawk a dramatic new look with the Central Tower livery. The orange and black color scheme is inspired by the furnaces of industry powering Lorville, and also features a representation of the landing zone\'s iconic Central Headquarters and Shared Services Center, aka Central Tower.'), +(10271,'f_human_mannequin_explorer','ShopDisplay','UNDEFINED','c878c3bb-f2a0-4d68-a231-85d5aa6a4224','','',NULL), +(10272,'Seat','Usable','UNDEFINED','463536d4-c907-47db-abaa-36890710ce92','','',NULL), +(10273,'Anvil Aerospace T-Shirt','Char_Clothing_Torso_0','UNDEFINED','81b7a449-ab70-433b-9768-69116c4fbce5','','','This dark green t-shirt sports the familiar logo of Anvil Aerospace, a name inspired by Robert Calvin\'s famous quote referencing \"the anvils of innovation.\"'), +(10274,'mod_tray_hotdog_1_a','ShopDisplay','Default','9132939f-ef03-4924-abfa-cffdda18dfbe','','',NULL), +(10275,'Door Control','ControlPanel','DoorPart','e0d871cc-bbc9-4e55-aa08-96aea968f29b','','',NULL), +(10276,'Ahmanson Gloves','Char_Clothing_Hands','UNDEFINED','264fe967-3f63-410d-8653-36cb98cb9caa','','','The Ahmanson gloves achieve elegance with an edge thanks to Dyna Lei. These leather opera gloves have a sumptuous black patina that will become more spectacular with time, and are made with a comfortable cashmere lining. \n\nMen sizes are currently unavailable.'), +(10277,'Door Control','Door','UNDEFINED','8b34dbe9-e153-4f5b-9a1c-3e2993ca3259','','',NULL), +(10278,'TRGT. STATUS','Seat','UNDEFINED','cd1f5318-9d2f-490e-8705-606d5556c0dd','','',NULL), +(10279,'Hephaestanite','Cargo','Cargo','88c6eee2-c741-4358-a4b7-2282f4793a34','','',NULL), +(10280,'Citadel Arms Roughshod','Armor','Arms','2ee042ec-8dd1-44fe-a584-d3824adb5323','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(10281,'Door Control','Door','UNDEFINED','842f9f66-327d-47de-b3ca-3c03e93e23bd','','',NULL), +(10282,'H_Dashboard_Projector_HUD_Generic_Alt','Display','UNDEFINED','a5dd45e4-b2c2-4d9b-af96-336bcc3ef138','','',NULL), +(10283,'ADP-mk4 Legs Exec','Armor','Legs','0b727012-b73d-43d7-8a82-4dd25733a188','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhen there\'s a difficult job at hand, you want to ensure that you can see it through to the end. Clark Defense Systems\' ADP-mk4 heavy armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers. This executive edition features a brushed chrome finish with an inlaid hexagonal pattern.'), +(10284,'Hair Care Product','Misc','UNDEFINED','4736171a-00c1-442e-8f6f-6f20d2d63c4a','','',NULL), +(10285,'CRUS_Starlifter_Door_Decal_LifeSupport_A','Decal','DoorPart','fbe5251a-dc32-49e3-a020-0e09f0937944','','',NULL), +(10286,'TrueDef-Pro Arms Gold/Grey/Black','Armor','Arms','3a18d6a1-ae8e-446d-bd87-7e92290c497a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(10287,'Zerua Jacket','Char_Clothing_Torso_1','UNDEFINED','c76c8fbc-c532-4e02-80a3-870b365bf070','','','Carrying Capacity: 2K µSCU\n\nMasterfully blending various colors and materials, the Zerua is a stylish jacket that features light yet breathable synthetics. Thanks to a unique dual layer design the jacket is meant to be worn open but is closable against the cold thanks to a snap button collar and zipper on the outer layer.'), +(10288,'Door Control','ControlPanel','DoorPart','4894f2f7-0370-501d-01b0-186587c98988','','',NULL), +(10289,'Testudo Legs Disrupt Camo','Armor','Legs','ddaa7dda-b8f8-4df4-9acf-4fc976134ecb','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4K µSCU\n\nThe Testudo armor for Quirinus Tech blends battlefield durability with everyday comfort. It weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort.\n\nThe Disrupt Camo edition utilizes carbon fiber grays and blacks printed in a disruptive pattern to keep your enemies guessing.'), +(10290,'Defiance Arms (Modified)','Armor','Arms','61cdc857-57cf-4335-bca2-0fe4154c0b3d','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThis version of CDS\'s Defiance arms has been modified from its original form. Incorporating the same manufacturing know-how and expertise that the UEE Marines have come to rely on, Clark Defense Systems has designed their civilian-line of Defiance heavy armors to stand firm in the face of even the most adverse combat scenarios with its three-star rated protective plating and fully integrated mobility framework.'), +(10291,'Vehicle_Screen_MFD_Holographic_MISC_Freelancer_L','Display','UNDEFINED','e625fe25-8dcc-4140-b3f2-a55fc0754198','','',NULL), +(10292,'Door Control','Door','UNDEFINED','2cd1c3ae-ef21-4279-80c1-2d1f58cba654','','',NULL), +(10293,'Pulse Nightrider Livery','Paints','UNDEFINED','8b43f871-5737-4ac4-9648-037d5063334d','','','The Nightrider livery can easily blend into the blackness of space, but upon closer inspection reveals itself to be silver with lettering spelling Mirai across the bottom half.'), +(10294,'AEGS_Gladius_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','ac0e33cd-13bb-4776-9717-02d725977ffe','','',NULL), +(10295,'Seat','SeatAccess','UNDEFINED','b2d49c3b-c933-4312-9dd0-bff924e86b68','','',NULL), +(10296,'Duotone Duster','Char_Clothing_Torso_1','UNDEFINED','c316507a-13e2-4d2a-927c-30fd081f1675','','','Carrying Capacity: 2K µSCU\n\nA modern update of CBD\'s classic duster, this full-length coat features two-tone coloring and inlaid accents to make a bold statement whatever environment you\'re in.'), +(10297,'Access','SeatAccess','UNDEFINED','82864af2-abf6-4ec5-b324-d926f79e1a3e','','',NULL), +(10298,'RSI_Constellation_Aquila_Thruster_Turbine_Rear','ManneuverThruster','JointThruster','35cb4e17-0530-4e7b-8319-3ce6d510a44b','','',NULL), +(10299,'ANVL_Valkyrie_Thruster_Main_Rear','MainThruster','FixedThruster','a0bd89dc-6702-4bb8-8035-8604380b2ea9','','',NULL), +(10300,'Variable Service Shoes','Char_Clothing_Feet','UNDEFINED','979c18d6-3e59-4038-be76-8364bb0196fc','','','Code Blue Apparel\'s Variable Service Shoes are constructed from a rigid rubber-carbon splice that help provide protection from physical impacts or piercings. The exterior is sprayed with artileather for a professional finish and offers maximum ease-of-cleaning.'), +(10301,'MVSA Cannon','Weapon','Gun','febc4b3a-09d7-446e-99a4-0f6be2387346','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 2\n\nThe classic M4A has been specially retooled by Behring to create the VS (Vanguard Special), a laser weapon designed to meet the Aegis\' unique requirements. The default nose-mounted weapon on the Vanguard Warden, the MVSA can only be loaded onto other Vanguard variants.'), +(10302,'DRAK_Cutlass_Thruster_Maneuver_Lateral','ManneuverThruster','JointThruster','3d0717f3-8ac3-4a9a-9956-019e143def82','','',NULL), +(10303,'Retaliator Underbrush Livery','Paints','UNDEFINED','39c706be-6f13-49ef-8b3b-1731e33932be','','','The Underbrush livery for the Retaliator was introduced during the First Tevarin War. This classic styling uses various shades of green and yellow highlights.'), +(10304,'f_human_mannequin_deckcrew_undersuit','ShopDisplay','UNDEFINED','5fcedeff-4990-4155-98bf-a93c5531d3a8','','',NULL), +(10305,'Seat','Usable','UNDEFINED','8a3a65b5-c9d7-495f-b9d2-36684994be9b','','',NULL), +(10306,'Grav Lev 1','ManneuverThruster','JointThruster','991d1cbd-a7e8-46f0-9ee0-3fbfcdf65bbf','','',NULL), +(10307,'Taranite (Raw)','Cargo','Cargo','d7f356aa-41c3-4d73-9683-d906b93cfae4','','',NULL), +(10308,'bench_table_showroom_1_a','Usable','UNDEFINED','59698d24-3566-4e20-9e67-7127bb86a311','','',NULL), +(10309,'Diamond Laminate','Cargo','Cargo','515ace49-9c03-4505-b840-15f2ee29279e','','',NULL), +(10310,'Ship Showdown \'52 Mercury Coin','Misc','Utility','136e5e15-f77a-4e16-8ade-87175aeb29d3','','','The Mercury Star Runner delivered a strong showing in the 2952 Ship Showdown with its second place finish. Ringed in blue, this coin commemorates the iconic courier ship with its image on one side and the Crusader Industries logo on the other.'), +(10311,'box_plastic_4_weapon_opened_005x010x00375_a','Misc','UNDEFINED','5b0e95e3-057f-4fcf-a3ea-f306b30dad15','','',NULL), +(10312,'INTK_RSI_Perseus','FuelIntake','Fuel','837cccba-2136-472e-ae98-0aad430ca01b','','',NULL), +(10313,'Seat','SeatAccess','UNDEFINED','33ecd7ff-9cd8-4b85-8817-3a83ef190fa4','','',NULL), +(10314,'m_human_mannequin_survival_secondlife','ShopDisplay','UNDEFINED','f01313a8-4015-48c3-b414-26de29c59562','','',NULL), +(10315,'Outback Core Grime Blue','Armor','Torso','c78ade7c-c1c9-4876-9b7c-e4cefbf77402','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -65 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2k µSCU\nBackpacks: Light\n\nThose on the frontier know that survival is paramount. The tough and lived-in Outback Armor is hewn from reinforced leather, with a thick hooded cowl neck and layered skirting. With the necessary gear, there\'s no guarantee that you\'ll live to see another day, but now you\'ve got a fighting chance. The Grime version is dyed a dusky blue to keep you subtle, but not unsightly.'), +(10316,'MISC Prospector - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','9435f4fd-d09f-44f3-a72b-27b20b28c1f8','','','MISC Prospector - Decoy Launcher'), +(10317,'Seat','SeatAccess','UNDEFINED','8439d909-43bf-4033-a3b4-65e72acef06b','','',NULL), +(10318,'Grilled Chicken Roll Omni Pack','Food','Sachet','0a7dcfec-eca5-4a82-b733-0ece20efc333','','','NDR: 70\nEffects: Hypertrophic, Hypo-Metabolic\n\nOmni Packs use premium certified organic ingredients to create a complete balanced ready-to-eat meal with a premium taste.'), +(10319,'Bluemoon Fungus','Misc','Harvestable','f0e84bd5-6205-491c-ab80-9cf377032c14','','','Preferring to spore in the depths of dark caves, the fruiting mushrooms of the Bluemoon fungus are often collected as a highly-valued petroleum-free lubricant used across a wide-variety of industries.'), +(10320,'Voidripper Dark Cloud Helmet','Armor','Helmet','2014ad88-72be-41a5-bfbb-5ea829c815d6','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nEmbrace your inner beast by equipping the Voidripper helmet. Layers of heavy armor plating provide premium protection and an unforgettable visage featuring a heavy brow and piercing turquoise eyes. Sakura Sun designers complimented this striking form with supreme function, including a state of the art sensor suite attached to the helmet\'s right side. Visor is AR crosshair compatible.'), +(10321,'Inquisitor Core Black','Armor','Torso','c6608ba6-3318-4477-b6a6-3d6c3a7461e2','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(10322,'Seat','Usable','UNDEFINED','97104994-b04e-473a-a2a7-49ceafe8c528','','',NULL), +(10323,'Titanium','Cargo','Cargo','7eebed8f-84b5-4ce8-ab6b-6e1011c67eb4','','',NULL), +(10324,'Wrecker Legs Payback','Armor','Legs','80db8cce-4a53-4157-aeaa-3dbd7b842322','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\n\nFavored by the most brutal of hunters, the Wrecker armor is a fusion of discarded metal and pilfered fabric cobbled together to offer protection while stalking prey.\n\nThe Payback version is sprayed with red paint and anointed with bone fragments and Vanduul armor pieces.'), +(10325,'Seat','SeatAccess','UNDEFINED','7a703b8e-3a7f-40c2-82d9-5fcb6bd23edd','','',NULL), +(10326,'Weapon_Rack_ANVL_Atlas_1_Slot','Usable','UNDEFINED','22fc70dd-fbd3-4d30-a155-ce0deed2b1c5','','',NULL), +(10327,'DRAK_Clipper_Thruster_Fin_Main_Inner','Misc','UNDEFINED','fb3622bb-70c4-48be-be9b-8e8c25fbbb07','','',NULL), +(10328,'Lightstrike I Cannon','Weapon','Gun','0cced6b1-acfd-4c55-96cc-d0503638b9ad','','','Manufacturer: Esperia\nItem Type: Laser Cannon \nSize: 1\n\nThe Lightstrike I takes the attack to distant targets by delivering focused, high damage blasts that will make any aggressor think twice before coming too close. Capable of providing powerful overwatch options during troop deployments or engaging targets in outer space, it\'s easy to see why the Lightstrike I was feared by UPE forces during the First Tevarin War.'), +(10329,'Utensil_Ladle','Misc','UNDEFINED','84e9e0a4-e61a-474e-b058-dcc79a414758','','',NULL), +(10330,'Door Control','Door','UNDEFINED','c60804e9-a492-4dc4-9993-64c6dd4e6558','','',NULL), +(10331,'DustUp Core Firestarter','Armor','Torso','890b8d44-eaad-4771-ad6b-abe683833867','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -60 / 90 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light \n\nThe DustUp has your back if you’re looking to get into some trouble. The body plating is built off of the same CDS undersuit used by the UEE Marines, it adds reconstructed Omni-Role mkII pieces to give you solid protection against incoming fire, but the real gem is the modified helmet. That thing was built to withstand explosions, so it should totally protect you against some shots. The whole thing’s been reasonably tested against vacuum too, so you can feel free to EVA all you want without worrying about dying.'), +(10332,'Personal Storage','Cargo','UNDEFINED','8f36268b-79f9-4a80-ae47-14097d8303d1','','',NULL), +(10333,'Argus Helmet Yellow/Grey','Armor','Helmet','5aeaab89-2fe3-4efd-bada-83c9bea6f343','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s Argus helmet utilizes advanced multi-layered composite construction to provide incredible protection from weapon fire as well as environmental hazards. The tinted visor offers a wide field-of-view to improve situational awareness and unrestricted movement.'), +(10334,'DRAK_Cutlass_Steel_Thruster_Maneuver_Left','ManneuverThruster','JointThruster','b5222c16-e3c4-4208-a63c-2e45be9757cd','','',NULL), +(10335,'Door Control','Door','UNDEFINED','e92329e2-637b-4cb2-b99c-b82a8b310248','','',NULL), +(10336,'SHIELDS','ShieldController','UNDEFINED','73648c03-3753-4401-be0d-ead0a24f46b6','','',NULL), +(10337,'AEGS_Retaliator_OC_Front','Room','UNDEFINED','ee50f6ef-6b78-4eb9-ad9a-d0208c193270','','',NULL), +(10338,'Radar_Display_CRUS_Starfighter','Display','UNDEFINED','53e557a2-348f-4aef-84a8-70e64ae49669','','',NULL), +(10339,'Door Control','Door','UNDEFINED','22ae6341-c9f9-41f8-968a-cf4f8fc1b3aa','','',NULL), +(10340,'Carrack Miniature \"2952 Best in Show\"','Misc','UNDEFINED','ca0c4dd1-01a2-4539-88e4-139e6e5dfc13','','','This highly detailed miniature celebrates the Carrack being named Best in Show at the 2952 Intergalatic Aerospace Expo. Takuetsu worked with Anvil Aerospace to get the dimensions and details precisely right so the handheld version of this beloved exploration ship can join you on adventures across the empire.'), +(10341,'AEGS_Javelin_SeatAccess_Rear_Left','SeatAccess','UNDEFINED','094c503f-566d-4c22-8238-4c826a0490b4','','',NULL), +(10342,'VariPuck S3 Gimbal Mount','Turret','GunTurret','f0151581-3d41-40c0-809f-71c3afc26428','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 3\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(10343,'Morozov-SH Legs Vesper','Armor','Legs','193991a2-0905-42b8-9076-468d07b76163','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5K µSCU\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(10344,'ORC-mkV Arms Executive','Armor','Arms','d52f5083-1dfa-42f4-ab17-06a0387206aa','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(10345,'SoftLock_Terminal_Standard_Refueling_Starfarer_Catwalk','Display','UNDEFINED','1fa1381c-c892-42ef-8f56-77d36962b7d7','','',NULL), +(10346,'Seat','Usable','UNDEFINED','285c844a-fe97-4c31-9577-76b2a6edd3dd','','',NULL), +(10347,'Door Control','ControlPanel','DoorPart','1b0aa195-608a-4cc7-aea6-ecf95e5fc68e','','',NULL), +(10348,'Door Control','ControlPanel','DoorPart','61c7abca-f35c-4c17-934e-e245b344990a','','',NULL), +(10349,'DRAK_Caterpillar_SCItem_Seat_Copilot','Seat','UNDEFINED','55847df3-abf8-4159-9dd0-191e3b0d07c7','','',NULL), +(10350,'DRAK_Cutlass_Thruster_Maneuver_Bottom','ManneuverThruster','JointThruster','a1de9fc8-9a5a-4a43-9a95-44d8f28a5582','','',NULL), +(10351,'ORC-mkV Legs (Modified)','Armor','Legs','dd61e1f6-26cb-439e-b8a5-63d1c5225e9f','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nThis version of CDS\' ORC-mkV legs has been modified from its original form. Dependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(10352,'Remote Turret','Turret','GunTurret','be5dc09d-583a-44e1-aed3-5bf094460c3a','','','Remote Turret'), +(10353,'PAB-1 Arms Dark Red','Armor','Arms','ad55fa01-fcde-4ada-9edf-d110cbc40878','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(10354,'ORIG_X1_Thruster_Main_Velocity','MainThruster','FixedThruster','85af7127-9c39-485a-a053-3f6d424e6d5f','','',NULL), +(10355,'AEGS_Hammerhead_Thruster_Mav_Fixed_LowPoly','ManneuverThruster','FlexThruster','789c0e2c-b5ef-45dc-91e3-6183af19fa5a','','',NULL), +(10356,'Small Artifact Fragment (Flawed)','Misc','UNDEFINED','b1f53744-0c95-4922-812b-ed795bd14b54','','','A small artifact fragment of unknown origin and made of an unidentified material. Broken and considered in flawed condition, it features intricate etchings that subtly glow green.'), +(10357,'tool_manual_1_screwdriver_b','Misc','UNDEFINED','6ab7750a-7132-4e97-8304-fe08d4c47364','','',NULL), +(10358,'MASTER_screen_16x9_6_0094x0054_a','Display','UNDEFINED','ccc9e9c6-98a6-464a-a756-31e8ed159731','','',NULL), +(10359,'Food_fruit_decari_pod_01','Food','Plant','09fffd16-ced5-499f-96fa-c7bd5f1c7ef7','','',NULL), +(10360,'Door Control','ControlPanel','DoorPart','5b2ee058-02b0-4f09-8635-d73ea1a3fe08','','',NULL), +(10361,'LH86 Pistol Magazine (25 cap)','WeaponAttachment','Magazine','068c28b8-3ea3-409a-b08d-1d53ae1e3303','','','Item Type: Magazine\nCapacity: 25\n\nThis combat-rated magazine for the Gemini LH86 holds twenty five 10mm rounds.'), +(10362,'DockingTube_Fuel_Ports_RSI_Constellation_Aquila','DockingCollar','UNDEFINED','03885cd9-228a-41d1-9b6f-a7472f77d5b5','','',NULL), +(10363,'Personal Care Product','Misc','UNDEFINED','ecdb2155-294d-469c-bf7e-1ab4a6de01b2','','',NULL), +(10364,'C8 Pisces Scrubland Camo Livery','Paints','UNDEFINED','194e3f24-e30a-4eb9-9c6f-4a8a0c34b754','','','Use the Scrubland Camo livery to outfit the C8 Pisces in green camo. A classic and commanding look that\'s also ideal for excursions across forests and grasslands.'), +(10365,'Seat','Usable','UNDEFINED','a949eee6-7a68-44e7-ade7-47d81857b160','','',NULL), +(10366,'Tungsten (Ore)','Cargo','Cargo','33b9ed09-e0f4-4986-ae02-5c9f4dc4cd8a','','',NULL), +(10367,'AEGS_Retaliator_OC_Front_Cargo','Room','UNDEFINED','f7784f3b-865a-45d0-9aad-395cbdacc378','','',NULL), +(10368,'Cloud City T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','d66f9346-cdec-4379-93e2-a9d19118c8b6','','','Due to its unique location, Orison is known as the city above the clouds. This shirt features the phrase and a truly unique view from one of its platforms.'), +(10369,'TEST_shelf','ShopDisplay','UNDEFINED','b19c3f9d-97d3-4b53-bf73-601eb67d30e9','','',NULL), +(10370,'Origin White Queen','Gadget','UNDEFINED','702d29a4-ea9e-4c06-86d5-857b86ba67f5','','','Made exclusively for Origin Jumpworks and included with the 890 Jump, this white chess piece is a modern version of a classic set.'), +(10371,'P-Series Murray Cup Livery','Paints','UNDEFINED','da2b554f-7bad-4ac1-9f61-9196a131d485','','','Slipstream into pole position with this sporty racing tint. Featuring blue emboldened by stylish yellow chevrons, this Murray Cup themed livery highlights the sleek and piercing nature of the P-52 Merlin and P-72 Archimedes ships.'), +(10372,'Carryable_1H_CY_bottle_bar_champagne_rsi_a','Misc','UNDEFINED','c6191e64-c47a-4001-9afd-0f064f21630a','','',NULL), +(10373,'Prospector Aphorite Livery','Paints','UNDEFINED','44fd4baf-ecb2-40dd-909b-afc333edfbbe','','','Decorate your Prospector with the Aphorite livery, which gets its name and color from the precious purple gemstone prized for its multi-hued tones.'), +(10374,'Harlowe Shirt Seagreen','Char_Clothing_Torso_0','UNDEFINED','848f77d4-ab81-4a6e-ae73-dd024a82e244','','','Capable as being worn on its own or as a base for layers, this long-sleeve henley style shirt from Alejo Brothers keeps you stylish and comfortable.'), +(10375,'DRAK_Cutlass_Thruster_Maneuver_Outer_Bot','ManneuverThruster','JointThruster','52892d57-3656-4d3e-9c63-8a0a90e8ea7b','','',NULL), +(10376,'Silverton Pants Olive','Char_Clothing_Legs','UNDEFINED','457f27cb-80a9-419f-b230-7c1a8fbfa033','','','Carrying Capacity: 1K µSCU\n\nMade with a sturdy blend of tough and flexible materials, the Silverton pants are the perfect fit for someone who needs heavy-duty workwear without sacrificing mobility. Got a job to do? We\'ve got you covered.'), +(10377,'Altimont Pants Dark Teal','Char_Clothing_Legs','UNDEFINED','902b63b1-c288-4fee-ae5f-ca94101a66c5','','','Carrying Capacity: 1K µSCU\n\nOctagon embraces a classic look and makes it boldly modern with the Altimont. These jodhpur style pants feature a slightly flared hip that becomes snug under the knees thanks to built-in garters. A uniquely shaped front seam secured by silver clips on the waist and shin provide further detailing that\'s both subtle and stylish.'), +(10378,'Remote Turret','Turret','PDCTurret','b611629a-ea05-47cf-b71e-6b72b8621847','','',NULL), +(10379,'Cadmium Allinide','Cargo','Cargo','d1200ba6-5ec5-459e-82ff-be2420b22bbc','','',NULL), +(10380,'Beacon Undersuit Purple/Black','Armor','Undersuit','e0282658-bea2-4f45-afe7-9f1466fc1be0','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRSI\'s Beacon undersuit is a general use utility designed to provide total protection against environments and vacuum. Built out of a durable but flexible polymers, the Beacon provides a wide freedom of motion for a variety of body types.'), +(10381,'Lastaprene','Cargo','Cargo','22bfac5b-dd4a-403b-a35e-740da4661b24','','',NULL), +(10382,'Reliant Tana Missile Launcher','MissileLauncher','MissileRack','64e06a7a-2609-4de3-aad4-1bb2020dfdcf','','','Item Type: Missile Launcher\nManufacturer: MISC\nSize: 5\nMissiles: 8xS2 \n\nBespoke missile launcher built into the wings of the Tana to make this Reliant variant a deceptively deadly dogfighter.'), +(10383,'Snaggle Stick (Smoke Daddy)','Food','Bar','99123640-9527-46f6-8fb2-e7eaf2e60a42','','','NDR: 14\nEffects: Hypertrophic, Dehydrating\n\nSnag one of these premium protein sticks and experience the ultimate in \"real meat\" snacking. Smoke Daddy Snaggle sticks feature an extra blast of intense smoky flavor that delivers satisfaction.'), +(10384,'Prowler Harmony Livery','Paints','UNDEFINED','e6720b13-ea37-44bd-ac16-418d1b879fbc','','','The Harmony livery is meant to showcase Humanity\'s peaceful relationship with aliens with a semi-pearlescent blue main coat marked with organic reflective red to suggest the coming together of disparate species and cultures. The Harmony livery has been designed and produced by the UEE\'s Diplomatic Corps and freely licensed to all spacecraft manufacturers. Now Esperia Prowler owners can celebrate the UEE\'s intentions of working toward a peaceful galaxy.'), +(10385,'Internal Tank','QuantumFuelTank','QuantumFuel','476ca244-5ffe-4472-850a-bc653d9fbcf7','','',NULL), +(10386,'Datapad','Misc','Gadget','ae9dfbd4-e2bf-4cf2-9855-cc178be7ae6a','','','A portable tablet computing device featuring a touchscreen display.'), +(10387,'FBL-8a Arms Desert Digital','Armor','Arms','67afb1c7-681a-4da6-94fd-2ce7efd53451','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nCDS\'s quest to create the ideal light armor continues with the FBL-8a. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible.'), +(10388,'Ship Showdown \'52 Scorpius Coin','Misc','Utility','bffe3208-a55b-426c-8ab2-c1ba70ea1c96','','','Thanks to its revolutionary rail-mounted turret the Scorpius blast its way into the final four of the 2952 Ship Showdown. This commemorative coin features the ship\'s unmistakable bi-wing design on one side with the Roberts Space Industries logo on the reverse.'), +(10389,'PAB-4 Light Armor','Suit','Armor','b2e758b5-99b3-40eb-9641-8f30d16f2c1b','','','When speed and mobility are essential, CDS’s PAB-4 light personal armor balances durability while still providing for maximum maneuverability. Widely used amongst the Advocacy, security forces, and discerning civilians.'), +(10390,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','9ea460a8-bfca-4121-866c-947f2808b516','','','Joker Defcon - Noise Launcher'), +(10391,'Pathfinder IV-G Missile','Missile','GroundVehicleMissile','4359f338-ee1c-47e3-8607-1613bb35dac5','','','Manufacturer: Behring \nTracking Signal: Infrared \nSize: 4 \n\nThe Pathfinder proximity missile has been a consistent member of Behring\'s already robust arsenal thanks to its tried and tested propulsion system and heat seeking guidance array. Note: This missile may only be launched by ground vehicles.'), +(10392,'VNCL_Stinger_Thruster_Aux_Fixed_01_Bottom','ManneuverThruster','FixedThruster','a62324ce-4df8-4686-b816-1ec8121b062d','','',NULL), +(10393,'PTV All Terrain Camouflage: Forest (ATC-F) Livery','Paints','UNDEFINED','847aa805-c322-451a-8b97-f9728e748742','','','ATC-F livery uses a non-reflective paint surface ideal for anyone looking to lower their profile in the wild. Perfect for military, sporting enthusiasts or naturalists.'), +(10394,'Ball','Char_Head_Piercings','UNDEFINED','cd8ddd1b-1ece-42d3-bd04-faf6f1ea9440','','',NULL), +(10395,'Avenger Invictus Blue and Gold Livery','Paints','UNDEFINED','6e8b2371-5381-4542-be9a-f6d97bb74612','','','Show your support for the newest batch of Navy recruits by customizing your Avenger with this special Blue and Gold livery to commemorate the 2950 Invictus Launch Week.'), +(10396,'HRST_LaserRepeater_FiringMechanism_S4','WeaponAttachment','FiringMechanism','c765f8cd-ac40-4b77-851f-0f68876428e0','','',NULL), +(10397,'Luminalia Gift','Cargo','Cargo','47059963-f01a-4b85-a475-33e117428713','','',NULL), +(10398,'Misfit Jacket Rawhide','Char_Clothing_Torso_1','UNDEFINED','a36483e1-8051-441f-86d9-953a4827180d','','','Carrying Capacity: 1K µSCU\n\nEmbody the hardcore attitude with the Misfit jacket. Durable synthetic leather combines with anarchic stylings for a jacket meant to send a message. Its distinct look includes spikes across the shoulder and right arm, two buckled straps on the left arm, and a badass image on the back highlighted by three lights powered via electronic boxes affixed to the front.'), +(10399,'ORIG_890J_Dashboard_Bridge_Left','SeatDashboard','UNDEFINED','4cfb87c4-6968-45d3-b193-89c0306c6d1b','','',NULL), +(10400,'ANVL_Terrapin_Thruster_Mav_Fixed','ManneuverThruster','JointThruster','0fe5382e-22c1-4e4b-b6a5-bd92ce054b96','','',NULL), +(10401,'orig_fridge_mini_1_a','Cargo','UNDEFINED','9d877b27-922c-48c6-be8a-2c0a1172cfe9','','',NULL), +(10402,'Hemera','QuantumDrive','UNDEFINED','3bd1502d-f593-456f-a3a9-14fec5b8c1a5','','','Item Type: Quantum Drive\nManufacturer: RSI\nSize: 2\nGrade: A\nClass: Civilian\n\nDesigning the Hemera quantum drive has allowed the technicians at Robert Space Industries to push the boundaries of quantum travel technology even further, and allow you to go even farther.'), +(10403,'DockingTube_Fuel_Ports_RSI_Aurora_MR','DockingCollar','UNDEFINED','781267b3-afdc-45c4-8763-407e762e789b','','',NULL), +(10404,'VariPuck S6 Gimbal Mount','Turret','GunTurret','5b7b1b80-e5ee-4cc3-8b24-93c9353412dc','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 6\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(10405,'Monde Arms Crimson Camo','Armor','Arms','6c826b04-85b7-4972-8380-d73aa8e3a560','','','tem Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints. \n\nThis edition features a bold red digital camo pattern.'), +(10406,'Zeus Exploration Backpack Starscape','Armor','Backpack','a511e130-95d3-45af-971e-6d0139e69a81','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K SP\nCore Compatibility: Heavy\n\nThe Zeus Exploration Suit has been designed to honor some of the earliest space pioneers, the RSI crews who developed and tested the Zeus, the first commercial spacecraft. While the suit is styled to match those used centuries ago with attachments for a helmet and backpack, it contains all of the modern technology and conveniences expected by present-day explorers. The Zeus offers good resistance to harsh environments and excellent storage space for sample-collecting during EVAs. The Starscape variant honors the black color scheme worn by RSI engineers.'), +(10407,'BANU_Defender_Thruster_Mav_Top','ManneuverThruster','JointThruster','31e09ba0-d489-497b-8db0-53de00ff04c6','','',NULL), +(10408,'Stud','Char_Head_Piercings','UNDEFINED','4fb636e1-3a50-46a2-925d-378336c78334','','',NULL), +(10409,'Cobalt','Cargo','Cargo','8a128475-6dfb-4afd-984d-b77598082ef4','','',NULL), +(10410,'Spirit IceBreak Livery','Paints','UNDEFINED','5e615822-2ae1-4f8d-a9f9-3d83c2912c7e','','','Equip your Spirit with a paint scheme cooler than a snow storm. The IceBreak livery mixes crisp, cool white with a frostbitten blue for an exciting look suitable for any season.'), +(10411,'SHIELDS','ShieldController','UNDEFINED','03a2e793-1b0e-4361-b886-7dd59102051d','','',NULL), +(10412,'Retaliator Grey Livery','Paints','UNDEFINED','efab3704-b3af-463a-bb23-ffed977ea759','','','Customize your Retaliator with this grey livery.'), +(10413,'DRAK_Cutter_Rambler_Thruster_Main_Left','MainThruster','FixedThruster','11ff1548-eb09-4a36-8365-f86980c157c6','','',NULL), +(10414,'ESPR_LaserCannon_PowerArray_S4','WeaponAttachment','PowerArray','4429224f-35f4-497b-b23a-c7861285ea68','','',NULL), +(10415,'Aves Arms Epoque','Armor','Arms','c39d6475-f85a-4084-9b4b-c5d13d976046','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nHonor and embody the Tevarin aesthetic with the Aves armor. Cutting edge manufacturing techniques were used to apply plating perfectly to fit the Human form and evoke the shape language imbued into the Tevarin\'s iconic ships. This medium armor from CC\'s Conversions provides solid protection while keeping you light on your feet. When paired with the Aves helmet, the suit combines for a striking and unforgettable look.\n\nThe Epoque edition features a navy and black coloring, finished with baroque gold detailing.'), +(10416,'RSI_Constellation_Andromeda_Thruster_Main','MainThruster','FixedThruster','d3d287b8-947a-4b9c-8c24-ab69e5e8db42','','',NULL), +(10417,'Anvil Bastion Ship Armor','Armor','Medium','eb6c0f07-8bf4-4edd-8386-1f31d00a0cb3','','','Anvil Bastion Ship Armor'), +(10418,'SafeTow S3 Towing Beam','TowingBeam','UNDEFINED','fd3625ad-6dce-4a48-ac86-3c7f8f09e11f','','','Manufacturer: Greycat Industrial\nItem Type: Towing Beam\nMax Angle: 160°\nMax Range: 250 m\nFull Strength Distance: 200 m\n\nThe safe and secure choice of recovery teams across the empire, the SafeTow towing beam from Greycat Industrial boasts enough strength, power, and control to transport both heavy cargo and vehicles across the ‘verse.'), +(10419,'Kamar Jacket','Char_Clothing_Torso_1','UNDEFINED','fef9e55d-4c9f-4849-885a-625ce1d1dcd4','','','Carrying Capacity: 1K µSCU\n\nThe Kamar is a modern update on a classic style featuring a truly unique design and silhouette. Centered around an ultra-soft velvet front panel, it features a fitted collar, wide pleated waistband, and bishop sleeves cinched by extra long cuffs. The result is a formal top that\'s bold yet timeless.'), +(10420,'Nox Whirlwind Livery','Paints','UNDEFINED','3f6c02bc-9cb2-4759-a26a-9bf47c476cab','','','The Whirlwind livery mixes various shades of blue in a memorable animal stripe pattern to give the Nox a daring look.'), +(10421,'CRUS_Starlifter_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','08042a38-a5e5-4864-aea8-e9f934c7315b','','',NULL), +(10422,'Flight Blade','FlightController','UNDEFINED','278e5e83-f74f-4cd2-8b02-306675bdce0a','','',NULL), +(10423,'AEGS_Sabre_Thruster_Mav_TopRL','ManneuverThruster','JointThruster','04152838-c121-4b87-8558-ca1a3eb1721f','','',NULL), +(10424,'TRGT. STATUS','Seat','UNDEFINED','86a10b84-b0bf-45bd-95a7-05e69a66d9ac','','',NULL), +(10425,'FarSight (8x Telescopic)','WeaponAttachment','IronSight','7b02ea9f-ba9a-48a9-89c4-e557155bd471','','','Manufacturer: VOLT\nType: Telescopic\nAttachment Point: Optic\nMagnification: 8x\nAim Time: +0%\nSize: 3\n\nDesigned for long distance precision shooting, the FarSight is carefully crafted to provide unparalleled fidelity of targets. VOLT\'s TruePicture lens technology provides high levels of light transmission, ensuring easy target acquisition and daylight illumination so you always get your mark.'), +(10426,'Golden Medmon','Misc','UNDEFINED','2b6e605b-d7a1-4691-8bb4-d38021d62540','','',NULL), +(10427,'Flight Recorder','Cargo','Small','dd3df180-9aa4-4ee8-adaf-29f934674505','','','Device used to record a vehicle\'s final moments during an attack or accident.'), +(10428,'HexaPolyMesh Coating','Cargo','Cargo','c39afc94-364d-40fb-bdd2-0a13c8345f77','','',NULL), +(10429,'Potassium','Cargo','Cargo','e8e41da8-6429-4d98-ac9f-4251f20f502a','','',NULL), +(10430,'ARGO_SRV_Thruster_Retro','ManneuverThruster','UNDEFINED','ee762ea7-e49f-4402-a6ff-95ce26f4050d','','',NULL), +(10431,'NDB-30 Repeater','Weapon','Gun','2f9fad1d-f591-4e69-ae64-af5ba0a883f7','','','Manufacturer: MaxOx\nItem Type: Neutron Repeater\nSize: 3\n\nDecades of design work went into perfecting the NDB line of neutron repeaters. The S3 NDB-30 rapidly fires powerful and precise neutron projectiles that will quickly deter anyone foolish enough to get too close.'), +(10432,'Agricium','Cargo','Cargo','39fc3d72-496b-40e8-8861-94e4285c16f1','','',NULL), +(10433,'FBL-8u Undersuit Arctic Digital','Armor','Undersuit','0208e4e8-1463-4749-a6ff-1f289cfc5353','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThe FBL-8u is the first CDS undersuit to utilize the manufacturers new orb-weave technology that produces an impressively light yet strong material that can withstand the rigors of space travel. Originally developed to pair perfectly with CDS\'s FBL-8a light armor, it remains compatible with other armor sets.'), +(10434,'Field Recon Suit Legs','Armor','Legs','cc7aa50a-e09d-4d23-a417-1386a35b0a2b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nCDS’ Field Recon Suit is the perfect solution for the combat operator who wants a little extra protection without compromising any of their situational agility. EdgeCore composite plating is strategically sewn into the nano-weave suit to cover vital organs while keeping the suit flexible.'), +(10435,'CRUZ Dark','Drink','Bottle','6fb96ac8-464d-4345-b45d-49e851b32957','','','HEI: 38\nNDR: 30\nEffects: Hypertrophic, Hypo-Metabolic\n\nRestore, refuel, and recharge with CRUZ Optimal Nutrition Drink. CRUZ Dark is a denser nutrition formula with a rich, dark flavor.'), +(10436,'Access','SeatAccess','UNDEFINED','9b51951e-aebc-4a39-8506-8550b2d67dcb','','',NULL), +(10437,'RSI_Constellation_PH_BayWall_Left','Container','UNDEFINED','5072c903-f5ed-4373-a526-6240cfeaeb0d','','',NULL), +(10438,'Venture Helmet Violet','Armor','Helmet','441d03a3-dee1-48f4-bf9e-b803cb76e530','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover.'), +(10439,'Armor_Crate_CZ_Firerat_005','Usable','UNDEFINED','fdb03d42-9120-4119-b47d-8fb816136392','','',NULL), +(10440,'Sion Compensator3','WeaponAttachment','Barrel','f739108f-7720-4a5e-b173-a65e07b314da','','','Manufacturer: ArmaMod\nType: Ballistic Compensator\nAttachment Point: Barrel\nSize: 3\n\nAim Recoil: -30%\nVisual Recoil: -20%\nAudible Range: +20%\n\nMaintain accuracy by countering muzzle rise with the Sion Compensator3. ArmaMod\'s expertly designed S3 barrel attachment efficiently expels gasses to keep every shot on target.'), +(10441,'display_weapon_rack_1_grate_b','ShopDisplay','UNDEFINED','d96deee3-6b30-4cd1-95a1-f4f7bfb56391','','',NULL), +(10442,'ADP Core','Armor','Torso','cf98d3f9-24d1-47b2-9cb9-f7ba09e3571f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(10443,'Carnifex Armor Legs Bruiser','Armor','Legs','28e7f7de-287b-4370-93b3-d24515b4c3cb','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -5 / 35 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nThis homemade armor provides a marginal amount of protection but maximum attitude. It\'s aggressively styled with skulls and other intimidating accessories associated with those living on the edge. Wearing such a distinct look may either keep people away... or draw them to you.\n\nThe Bruiser version features dark crimson and midnight blue coloring with polished metal accents.'), +(10444,'ARMR_CRUS_Star_Runner','Armor','Medium','fc82cdb8-4933-4cd7-955d-2e95a8e3e14e','','',NULL), +(10445,'TRGT. STATUS','Seat','UNDEFINED','5285c8fb-d828-417a-903d-b41f10f596d1','','',NULL), +(10446,'icePick','FPS_Consumable','Hacking','f6912bc9-83d8-4424-8579-367f1b2856e3','','','Initially made to allow microTech customer support technicians to access and diagnose security-locked systems, the icePick cryptokey was named by the team for its ability to \"quickly break through frozen code-blocks.\" Today, the powerful enterprise-level cryptokey has become available for direct purchase, allowing users and private IT professionals to problem solve issues themselves when they cannot be serviced by microTech technician.'), +(10447,'Seat','SeatAccess','UNDEFINED','018b0fef-6f87-4291-8628-9c37fb5cf99f','','',NULL), +(10448,'MSD-582 Missile Rack','MissileLauncher','MissileRack','31a7dd73-e9e4-419b-85ab-43a489d0e02b','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 5\nMissiles: 8xS2\n\nBehring’s MSD-582 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 5 hardpoint for the reliable and effective launch of eight S2 missiles.'), +(10449,'Agricultural Supplies','Cargo','Cargo','0df31f11-c659-4e7b-ad8b-d15106ed339e','','',NULL), +(10450,'Seat','Usable','UNDEFINED','dd68d2ee-f9f1-4b80-9816-66227651a613','','',NULL), +(10451,'Bexalite','Cargo','Cargo','9f63146d-c8e7-4e19-afd5-c05c0c19e995','','',NULL), +(10452,'Mirai Fury MX 2xS1 Missile Rack','MissileLauncher','MissileRack','25d8a725-42f4-4f2c-a197-b653c8383868','','','Item Type: Missile Rack\nManufacturer: Mirai\nSize: 2\nMissiles: 2xS1\n\nTo make the Fury a threat despite its small size, Mirai developed this bespoke missile rack, which can carry and deploy two S1 missiles without undermining the ship\'s compact profile.'), +(10453,'Door Control','ControlPanel','DoorPart','baf98d38-2f62-4d4d-bd68-ba33dd47a85b','','',NULL), +(10454,'300 Series Scarlet Steel Paint','Paints','UNDEFINED','63bff2af-0221-41e5-885a-3fb4cb1380d4','','','Standard paint job for the Origin 325a.'), +(10455,'Vehicle_Screen_MFD_Holographic_Glaive_BR','Display','UNDEFINED','f1f7b60b-3fc6-4346-adff-d1f4ab8bb9f3','','',NULL), +(10456,'AEGS_Retaliator_OC_Front_Base','Room','UNDEFINED','215e992a-0bb6-4bf2-9f74-b0e880fd447d','','',NULL), +(10457,'Strode Pants Sleet','Char_Clothing_Legs','UNDEFINED','8a528e68-1870-4292-8c88-63659254ec89','','','Carrying Capacity: 3K µSCU \n\nWhen you need to move like your life depends on it. Made from loose-fit tear-resistant polyweave with rigid greaves, these pants won\'t tie you up when things get tight. The Sleet version is dyed a well-worn grey to keep you subtle, but not unsightly.'), +(10458,'DustUp Legs Desert','Armor','Legs','8a83964b-e892-41a5-be76-d362e06581d5','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -60 / 90 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nThe DustUp has your back if you’re looking to get into some trouble. The body plating is built off of the same CDS undersuit used by the UEE Marines, it adds reconstructed Omni-Role mkII pieces to give you solid protection against incoming fire, but the real gem is the modified helmet. That thing was built to withstand explosions, so it should totally protect you against some shots. The whole thing’s been reasonably tested against vacuum too, so you can feel free to EVA all you want without worrying about dying.'), +(10459,'Nyman Jacket Imperial','Char_Clothing_Torso_1','UNDEFINED','25ce3f6c-1743-4bac-a6fa-9a01495ab245','','','Carrying Capacity: 1K µSCU\n\nOpalSky\'s Nyman light pullover is perfect to have on hand when lounging poolside or on those chilly nights.'), +(10460,'Ridgely Jacket Wavelength','Char_Clothing_Torso_1','UNDEFINED','5687180c-e590-4d7d-9d61-fbf0ce7f238f','','','Carrying Capacity: 1K µSCU\n\nThe extra-thick high collar of DMC’s Ridgely is part of a removable hood that makes the jacket surprisingly versatile and is a major reason why the Ridgely jacket is a perennial favorite amongst customers that live in, or venture through, cold environments.'), +(10461,'Calister Jacket','Char_Clothing_Torso_1','UNDEFINED','4465e84b-3244-4f8a-bb7e-0f84cf2d9a02','','','Carrying Capacity: 1000 µSCU\n\nThe Calister Jacket by Habidash is made with thick synthetic fabric intended to ensure full body coverage. The cross-body panel that shapes the silhouette of the design provides additional insulation in harsher conditions.'), +(10462,'AEGS_Hammerhead_Thruster_Mav_Fixed_Bottom','ManneuverThruster','FlexThruster','4369917e-024c-4437-8a92-34888ba2e086','','',NULL), +(10463,'ORIG_X1_CML_Flare','WeaponDefensive','CountermeasureLauncher','3d8fdd0f-e993-43e1-a632-ef002d36befb','','','@LOC_PLACEHOLDER'), +(10464,'DRAK_Clipper_Thruster_Main','MainThruster','UNDEFINED','12d39281-daf3-4119-890a-cef1692ff0f6','','',NULL), +(10465,'Carryable_1H_CY_tool_manual_socket_2_b','Misc','UNDEFINED','cf0c8912-8cee-4bed-9313-ff84e9e57050','','',NULL), +(10466,'weapon_underbarrel_light_narrow_purple_01','WeaponAttachment','Light','18d0e506-c28f-48fb-820b-d0333ca25db5','','',NULL), +(10467,'display_components_s2_modular_power','ShopDisplay','UNDEFINED','bf79af95-1a2e-4fcf-9097-9e47b7b5ec6b','','',NULL), +(10468,'ESPR_Talon_Thruster_Mav_Bottom','ManneuverThruster','JointThruster','116a7399-7be0-4273-ae00-92c8c6c687f1','','',NULL), +(10469,'ESPR_LaserCannon_Barrel_S4','WeaponAttachment','Barrel','2918d41c-ae45-40ed-adf8-b50461e38532','','',NULL), +(10470,'Grappler Gloves','Char_Clothing_Hands','UNDEFINED','4ec71867-d197-4047-8d20-e6b32328c48e','','','Originally made for open-canopy racers, the Grappler gloves became beloved for their versatility and durability. Their mix of leather and synthetic fabrics make for a lightweight and warm wear. They also feature an adjustable strap to guarantee the perfect fit, and a special tactile fingertip design so wearers don\'t have to remove the gloves to interact with screens.'), +(10471,'Door Control','Door','UNDEFINED','fa573c68-272f-4609-9f4c-9473cd14b375','','',NULL), +(10472,'Parallax \"Sunstone\" Energy Assault Rifle','Weapon','Medium','3e58c8fd-19ff-47b6-9b3a-333addb2573d','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Assault Rifle\nClass: Energy (Electron)\n\nBattery Size: 80\nRate of Fire: 200 rpm - Beam\nEffective Range: 30 m\n\nAttachments: Optics (S2), Underbarrel (S2)\n\nWith the Parallax, VOLT offers consumers a rugged assault rifle design with features like a larger-than-average battery and a unique actuator that enables the weapon to scale up into a persistent beam as it fires.\n\nThe \"Sunstone\" edition uses a combination of desert orange and matte black to create a refined appearance.'), +(10473,'Jaclium (Ore)','Cargo','Cargo','ea79efd5-6eaf-49ae-bd9b-4f1a9f1993c0','','','A naturally occurring rare metal form of jahlium, it is used in the production of extremely strong alloys with incredible tensile strength. Originally confused with common jahlium when first discovered, the above average results when used lead to researchers to realize its value.'), +(10474,'Raw Ouratite','Cargo','Cargo','da08c30f-b989-4417-bb80-06850166207b','','',NULL), +(10475,'Storm GCD-Army Livery','Paints','UNDEFINED','c3f4df2e-b978-47e9-b56c-7a27773d733b','','','In honor of the soldiers who protect the Empire, Tumbril crafted this limited-edition GCD-Army livery for the Storm. The golden seal of the UEE army and gold highlights stand out against the grey camo base paint.'), +(10476,'Carnifex Armor Core Bruiser','Armor','Torso','9d72d08c-9f77-4c3b-afc8-b5e6170c9430','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -5 / 38 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpack Compatibility: Light\n\nThis homemade armor provides a marginal amount of protection but maximum attitude. It\'s aggressively styled with skulls and other intimidating accessories associated with those living on the edge. Wearing such a distinct look may either keep people away... or draw them to you.\n\nThe Bruiser version features dark crimson and midnight blue coloring with polished metal accents.'), +(10477,'ANVL_Pisces_Thruster_Retro_Left_C8X','ManneuverThruster','JointThruster','ed5b0de0-6663-45ed-9b79-a7005b6daf8a','','',NULL), +(10478,'Door Control','Usable','UNDEFINED','c7555736-0b2e-4151-85de-f214ec44b528','','',NULL), +(10479,'Bed_OpenClose','Usable','UNDEFINED','0813eabf-5d58-4ccb-86f0-84aa6a97036a','','',NULL), +(10480,'Wastelander Undersuit','Armor','Undersuit','8b1649cc-aaa2-4895-a993-7307e7c7598e','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nRoughly sewn together from a variety of ransacked materials, the Wastelander undersuit will just about do the job. This version features a bold rust color.'), +(10481,'Door Control','ControlPanel','DoorPart','71984fe6-fd24-4da3-aa60-eee7d024836d','','',NULL), +(10482,'ControlPanel_Screen_LiftControl_1x1','ControlPanel','DoorPart','706216ae-f221-4d53-8c0a-2220b5b841b4','','',NULL), +(10483,'CRUS_Spirit_C1_Exterior_Collector','Misc','UNDEFINED','50feaf43-598c-4de3-b6c8-3c65fe132627','','',NULL), +(10484,'Ship Ammunition','Cargo','Cargo','a14f2f2a-d6e7-4109-aef5-c3a8ca295a73','','',NULL), +(10485,'AEGS_Reclaimer_Locker_Door_L','Player','UNDEFINED','c93dc15f-1979-4e16-bdfb-590bdfeba167','','',NULL), +(10486,'KRIG_L21_Wolf_Thruster_Pipe_Right','AttachedPart','UNDEFINED','bd014a33-8612-4570-ad28-9c10750ce454','','',NULL), +(10487,'XDL \"Tactical\" Monocular Rangefinder','Weapon','Gadget','89321e56-3758-4c3e-8d8c-89948518c734','','','The highly accurate XDL Monocular Rangefinder from Behring is as suitable on an expedition as it is on the battlefield. Ruggedly constructed with high-quality lenses, easy-to-read display, and a light-amplification mode, the XDL provides 10x magnification to reliably provide exact-distance laser measurements on faraway targets.\n\nThe Tactical edition features a black finish.'), +(10488,'Detara Jacket VIneland','Char_Clothing_Torso_1','UNDEFINED','5543ef74-868b-4d97-8bc8-9643725f7a26','','','Carrying Capacity:1000 µSCU\n\nThe Detara Jacket by Habidash weaves several long panels of durable fabric together to create a unique silhouette well suited to harsh environments.'), +(10489,'MISC_Starlancer_Thruster_Mav_Top','ManneuverThruster','FixedThruster','54e280b3-7695-468b-a886-3502e9a5c0d7','','',NULL), +(10490,'Waldron Jacket White','Char_Clothing_Torso_1','UNDEFINED','a1b11659-1f1a-4e6b-b5f7-66242442e641','','','Carrying Capacity: 1K µSCU\n\nThe Waldron suit exudes sophistication by fusing classic style with contemporary flourishes. OpalSky redefines success with this geometric patterned jacket, featuring a pinstriped false-shirt and tie layered underneath, plus a unique split-seam back.'), +(10491,'Cyclone Finish Line Livery','Paints','UNDEFINED','4148e2a6-4135-446e-b7d4-8a4ff5355c29','','','Give the Cyclone a classic racing design with the Finish Line livery. It features a yellow stripe across the front, a white one through the middle, and a grey one on the back.'), +(10492,'Nyman Jacket Purple','Char_Clothing_Torso_1','UNDEFINED','c438ac68-6b55-4e20-be3d-f37d41a39ec5','','','Carrying Capacity: 1K µSCU\n\nOpalSky\'s Nyman light pullover is perfect to have on hand when lounging poolside or on those chilly nights.'), +(10493,'Omnapoxy','Cargo','Cargo','5029e09a-9905-468a-978e-722f345f1f6e','','',NULL), +(10494,'Diligence','PowerPlant','Power','be3eb52b-243a-4ed9-833a-d348f910a32a','','','Item Type: Power Plant\nManufacturer: Juno Starwerk\nSize: 2\nGrade: C\nClass: Industrial\n\nThough the Diligence delivers high performance compared to other components in its class, this power plant’s dependability and ease of maintenance is what makes it a favorite of haulers.'), +(10495,'Drivetrain','WheeledController','UNDEFINED','5b34e25e-bf67-44be-9244-a137f2b17190','','',NULL), +(10496,'m_human_mannequin_legacy_marine_heavy','ShopDisplay','UNDEFINED','07de8c67-7ac9-4cbb-b39b-c47070f5f7de','','',NULL), +(10497,'Tolo Jacket Dark Teal Stripe','Char_Clothing_Torso_1','UNDEFINED','61e8df1e-0ce6-4b96-ae38-20fc6d578db7','','','Carrying Capacity: 1K µSCU\n\nA creatively integrated dickey gives the Tolo its fashionable and unconventional look. This three quarter sleeve shirt also features small epaulettes perched atop each shoulder.'), +(10498,'ADP-mk4 Core Justified','Armor','Helmet','bdc57882-359e-4ba1-a8d3-9bb645ebea8b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nBased on CDS\' ADP-mk4 heavy combat armor, this set has been modified from its original form. When there\'s a difficult job at hand, you want to ensure that you can see it through to the end. This armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers. Visor is AR crosshair compatible.'), +(10499,'Door Control','ControlPanel','DoorPart','d6fded4a-9062-4be3-8283-575607a27638','','',NULL), +(10500,'G-2 Helmet Imperial','Armor','Helmet','def46478-4494-44f9-9f2c-e516a8780a95','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. Visor is AR crosshair compatible.'), +(10501,'Taranite (Raw)','Cargo','Cargo','b1a55391-bbc1-45fc-9466-9fed47039e1b','','',NULL), +(10502,'Venture Arms','Armor','Arms','2b021c8a-5cfc-4316-a228-6e8e0e220162','','',NULL), +(10503,'ThermalFoam','Cargo','Cargo','62b5a361-0d9c-4527-ac9c-60e8f1bfb2b8','','',NULL), +(10504,'Morningstar Helmet Dark Green','Armor','Helmet','ae7a6249-33ae-42b0-bfa1-f3fa6f9ffa3e','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(10505,'Norfield','DockingCollar','UNDEFINED','b46eae55-2ed3-4008-9635-8fe26a1a3a4c','','','Manufacturer: Greycat Industrial\nItem Type: Fuel Nozzle\nSafe Flow Rate: 0.3 SCU/s\n\nAllowing for a greatly increased overall flow rate, the Norfield fuel nozzle from Greycat prioritizes the fast and efficient transfer of fuel while only sacrificing some pod storage capacity.'), +(10506,'Hardean Jacket and Shirt Dallas','Char_Clothing_Torso_1','UNDEFINED','c2904256-5ac1-4380-a356-99228156f7ac','','','Carrying Capacity: 2K µSCU\n\nThis blue and brown collarless synth-leather jacket from Escar Limited features quilted detailing around the opening and down the sleeves, and pairs effortlessly with a bold button-down, tropical-print shirt in pale yellow.'), +(10507,'ESPR_Talon_Thruster_Retro_R','ManneuverThruster','FixedThruster','1ef259f9-e889-49dc-8467-10f4effb4c9c','','',NULL), +(10508,'Stirling Exploration Backpack Granite Edition','Armor','Backpack','6fa2057f-c865-426d-9f08-b3627bbbb477','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nThis heavy duty backpack is compatible with the Stirling suit and provides a convenient storage solution. The Granite Edition uses blacks, beiges, and grays inspired by dark stones and excavated rocks.'), +(10509,'Stella Fortuna \'54 Coin','Misc','Utility','44c0e27b-70fc-486d-a8a6-858a0f118b2c','','','With Stella Fortuna 2954 on one side and the other featuring a lucky clover embossed with the words ‘Tempt Fate,’ this golden coin dares anyone to take luck into their own hands.'), +(10510,'Carrack Headhunters Trauma Livery','Paints','UNDEFINED','714504f3-0634-432b-8a77-3af72f52d853','','','Show your loyalty to the Headhunters gang with this livery featuring their logo emblazoned on a dark grey hull accented with a vibrant purple.'), +(10511,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','594e5e7a-1016-43f2-9999-4287bb7890ca','','','Aegis Gladius - Decoy Launcher'), +(10512,'Seat','SeatAccess','UNDEFINED','76e87307-6050-4587-a325-cb0e72a1db45','','',NULL), +(10513,'Cargo_Comm_125x3_Vice_Stims','Cargo','Cargo','58fd4740-1cf3-4a53-bcbe-2569e8cf7d52','','',NULL), +(10514,'Davin Work Gloves Blue','Char_Clothing_Hands','UNDEFINED','11751f17-95f8-414f-b5e4-071cceaf568a','','','Field-tested for over fifty years, you can find Davin work gloves at numerous sites and ships around the Empire. Stegman\'s rugged construction and comfort lining have made them a customer favorite.'), +(10515,'ADP Arms Orange','Armor','Arms','eeef5072-9099-44a3-8950-efec5769fdf2','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(10516,'Door Control','ControlPanel','DoorPart','bdc8b498-16f5-4147-a5fb-43624ae6a214','','',NULL), +(10517,'Copper (Ore)','Cargo','Cargo','298b5f65-3c52-4446-949e-e55ec57d1268','','',NULL), +(10518,'MISC Reliant Ship Armor','Armor','Medium','cb95183c-9957-4949-a76b-cb34c309bb11','','','MISC Reliant Ship Armor'), +(10519,'Railing_Straight_4m_Hurston_Lorville_Glass_A','Usable','UNDEFINED','903798f1-e79a-495f-97c0-3ff2b8662517','','',NULL), +(10520,'RSI Decoy Launcher','WeaponDefensive','CountermeasureLauncher','9281a5b2-6211-4dcb-909f-57ec70ce4117','','','RSI Decoy Launcher'), +(10521,'Seat','Usable','UNDEFINED','9451d536-d062-4b7f-8099-ae90d2b3f614','','',NULL), +(10522,'Constellation Invictus Blue and Gold Livery','Paints','UNDEFINED','aea811c0-c709-4b1e-8c38-ce0def31debe','','','Show your support for the newest batch of Navy recruits by customizing your Constellation with this special Blue and Gold livery to commemorate the 2950 Invictus Launch Week.'), +(10523,'TopLine Apron Pants Whammer\'s','Char_Clothing_Legs','UNDEFINED','4085636a-8c3c-47b4-b89c-8f7221201ef3','','','Carrying Capacity: 2K µSCU\n\nWith an attached apron and deep side pockets, the TopLine pants from Stegman\'s make even the toughest service jobs a little bit easier.'), +(10524,'Door Control','ControlPanel','DoorPart','455b2a13-9140-4c61-94c0-c65f89f4954b','','',NULL), +(10525,'MISC_Fortune_Ground_Refueling_Port','Door','UNDEFINED','8c462cbe-ecf2-4a68-a34f-931ecf13367b','','',NULL), +(10526,'CRUS_Starlifter_CargoGrid_Small_A2','CargoGrid','UNDEFINED','e2ed45c8-cadd-4082-af72-9357f32b2e6e','','',NULL), +(10527,'Fotia Seedpod','Cargo','Cargo','3aada733-8f06-42ae-8af9-36c19b354dc7','','',NULL), +(10528,'LH86 \"Permafrost\" Pistol','Weapon','Small','27b1ae96-778f-443e-b74f-204888ae35c6','','','Manufacturer: Gemini \nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 25\nRate Of Fire: 1200 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe LH86 from Gemini is a compact kinetic handgun designed for personal defense and close-quarter combat. A keen eye on ergonomics and balance coupled with hardy construction makes this pistol a natural fit for any shooter in any number of hostile conditions. The LH86 also comes with Tritium low-light sight and a twenty-five round magazine. This special Permafrost edition features blue and grey coloring reminiscent of a glacier under a blinding winter sky.'), +(10529,'m_human_mannequin_odyssey_suit_16','ShopDisplay','UNDEFINED','62b9664c-d5eb-4fbd-b3fa-66c90398b450','','',NULL), +(10530,'Railing_Straight_4m_Lowtech_Catwalk_A','Usable','UNDEFINED','0cfebeca-2074-492b-b6f0-bbcf1cfdb724','','',NULL), +(10531,'Venator Boots Molten','Char_Clothing_Feet','UNDEFINED','5eebd931-167a-467e-8349-a6cd82df15b0','','','Whether you need to run or stand your ground, these rugged, lightweight all-terrain boots with reinforced uppers and acid-resistant tru-grip soles are the perfect choice. The Molten version is dyed a deep red to keep you subtle, but not unsightly.'), +(10532,'Weapon_Rack_Cz_Firerat_004','Usable','UNDEFINED','d988f771-eab7-4ae8-bde8-e51abba680e8','','',NULL), +(10533,'Medium Artifact Fragment (Flawed)','Misc','UNDEFINED','11970df0-5796-43b0-aff0-ad026cb61ca3','','','A medium-sized artifact fragment of unknown origin and made of an unidentified material. Broken and considered in flawed condition, the fragment features intricate etchings that subtly glow green and is overlaid with dark-colored metallic banding.'), +(10534,'Door Control','ControlPanel','DoorPart','5077feae-a0cd-4a1a-ae4f-f6e8be0c69cc','','',NULL), +(10535,'DRAK_Cutlass_Blue_Thruster_Maneuver_Right','ManneuverThruster','JointThruster','32ccc804-9142-4481-8c08-7058ed0fb823','','',NULL), +(10536,'Drivetrain','WheeledController','UNDEFINED','4fb3ab46-25d3-4b41-af0b-f454e8a93503','','',NULL), +(10537,'Taranite','Cargo','Cargo','33be464b-34df-427e-8dc7-70bdbd528fa3','','',NULL), +(10538,'Seat','Usable','UNDEFINED','be9e9e7e-16df-4e9b-aaa0-7f9ed3a6761a','','',NULL), +(10539,'Flight Blade','FlightController','UNDEFINED','caa7a6dd-5975-405f-8c96-44d0ce3be6b7','','',NULL), +(10540,'Internal Tank','QuantumFuelTank','QuantumFuel','a8410d5b-4adb-490c-836b-7acbbeff8e10','','',NULL), +(10541,'Morozov-SH-S Helmet Spite','Armor','Helmet','a122d5b5-9bec-4855-a0e4-b94727e325bc','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -97 / 121 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(10542,'ORIG_M50_Thruster_Mav_Fixed_Bottom','ManneuverThruster','FixedThruster','868ce6db-490a-4871-b93f-df4d63b91cb0','','',NULL), +(10543,'MRAI_Pulse_LX_Thruster_Mav','ManneuverThruster','FixedThruster','882270cd-457d-42c8-85bb-18d7aedd0f56','','',NULL), +(10544,'Utensil_Plate_Tikka','Misc','UNDEFINED','9fb983ce-1576-4655-9801-37ee617d12c1','','',NULL), +(10545,'Prim Shoes Tan','Char_Clothing_Feet','UNDEFINED','7f967ac9-fd18-42ce-8002-9e86469cb7e1','','','Professional yet casual, the Prim utilizes cutting-edge synthetic construction to provide maximum comfort and a shine that won\'t fade.'), +(10546,'MRAI_Guardian_Thruster_Retro','ManneuverThruster','Retro','15c1a760-442b-4893-949e-326274dbcecb','','',NULL), +(10547,'Clempt Pants Dark Red','Char_Clothing_Legs','UNDEFINED','ccab5ae1-2ad5-4b7b-b47a-6857583e442b','','','Carrying Capacity: 2K µSCU\n\nStegman\'s factory pants have been taken to the next level with the Clempt line. These rugged all-purpose pants come with double knees for extra comfort and protection and are made from tough composite weave fabric to last as long as the work needs.'), +(10548,'ANVL_Door_Decal_Carrack_Ladder','Decal','DoorPart','6d24cde5-31ca-4aee-a181-103a46503d2d','','',NULL), +(10549,'Tuvois Jacket Yellow','Char_Clothing_Torso_1','UNDEFINED','fa2824c2-b143-4082-b954-5b15f64a2e07','','','Carrying Capacity: 1K µSCU\n\nCreated in collaboration with legendary designer Avon, OpalSky is proud to unveil the Tuvois, an open vest featuring stark, bold styling that\'s destined to make an impression. \n\nWomen\'s sizes currently out of stock.'), +(10550,'Razorback Pants Green','Char_Clothing_Legs','UNDEFINED','a7c713dc-b6d5-4fe7-a19f-ff50fd1a5c0d','','','Carrying Capacity: 2K µSCU\n\nDMC\'s Razorback pants are made to be worn. Built from industrial quality material, they feature reinforced kneepads to prevent tears on the job and stay rugged yet comfortable.\n\nWomen\'s sizes currently out of stock.'), +(10551,'Seat','SeatAccess','UNDEFINED','c59e98c6-556e-4feb-a3fb-3815d56a64ca','','',NULL), +(10552,'Weapon_Rack_RSI_Aurora_Mk2_8_Slot','Usable','UNDEFINED','e9a230de-6bc8-43c4-b0a8-1b7a45f37cfb','','',NULL), +(10553,'Internal Tank','FuelTank','Fuel','470a944b-bfbc-4ceb-837c-dbf721fd6c46','','',NULL), +(10554,'MISC_Razor_Thruster_Lateral','ManneuverThruster','FixedThruster','fdd5da78-74a6-46d3-a64e-d5d826299df1','','',NULL), +(10555,'Argo Hat Slate','Char_Clothing_Hat','UNDEFINED','9b4ae63f-1fc5-4551-8345-a04a45dcb916','','','This dark gray cadet hat features a stylized, understated version of Argo\'s logo on the front.'), +(10556,'M8A Cannon','Weapon','Gun','4e3897c1-a48f-4dce-b3cf-0f91fe3eb0f6','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 6\n\nThe M8A laser autocannon exemplifies Behring\'s extensive history designing and constructing ship armaments. The result is a dependable and effective energy weapon capable of handling large skirmishes or precise defensive maneuvers.'), +(10557,'RSI_Aurora_GS_CL_Thruster_Retro_Right','MainThruster','FixedThruster','25c9c739-1f69-4c16-8df6-beb582b64b6e','','',NULL), +(10558,'Overlord Arms Switchback','Armor','Arms','6482300c-bb8b-4d54-b198-19221b789338','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.'), +(10559,'Adiva Jacket Yellow','Char_Clothing_Torso_1','UNDEFINED','71496f52-dc9b-481f-841c-5f02b560ac02','','','Carrying Capacity: 1K µSCU\n\nDefine your ultimate you. The Adiva is an asymmetrical pullover with bold mixed-materials and solid reinforced trim.'), +(10560,'RSI_Polaris_Dashboard_ATC_NoFlight','SeatDashboard','UNDEFINED','9f14e554-df6f-4a19-984c-5e5a09ad8e41','','',NULL), +(10561,'RSI Default JetPack','Suit','ThrusterPack','f66a70d5-a484-4b01-b4e0-24b90c4c86f5','','','<-=MISSING=->'), +(10562,'Reclaimer Dolivine Livery','Paints','UNDEFINED','a00d9465-8e6f-4597-9bd0-1a0d0d24ab0d','','','Sharing the name with a gemstone prized for its beauty and industrial applications, the Dolivine livery blends shades of light green to give your Reclaimer a unique look.'), +(10563,'Lynx Core Sienna','Armor','Torso','3f1c3650-9760-48be-b285-a24ad58caff4','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(10564,'Inquisitor Legs Sienna','Armor','Legs','11670a31-10ce-4aea-b1fe-a27ea4068943','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(10565,'Libio Jacket Yellow','Char_Clothing_Torso_1','UNDEFINED','c5626a80-16b7-4a8a-9f80-77c183518bc9','','','Carrying Capacity: 1K µSCU\n\nOne of OpalSky\'s classic pullovers, the Libio features a two-tone asymmetrical pattern and polyweave blend to keep it elegant and striking every time you wear it.\n\nWomen\'s sizes currently out of stock.'), +(10566,'Quartz \"New Dawn\" Energy SMG','Weapon','Medium','ae9081fd-58c2-4346-a71e-bb834d00df89','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: SMG\nClass: Energy (Electron)\n\nBattery Size: 45\nRate of Fire: Beam\nEffective Range: 15-20 m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nManufacturer VOLT\'s Quartz SMG utilizes exciting new weapon technology that fires a short range beam that fractures into multiple beams the longer it fires, making it an extremely effective close quarter weapon.\n\nThe \"New Dawn\" edition brings a truly unique look to the weapon with a dazzling kaleidoscope of colors reminiscent of memorable sunrises.'), +(10567,'Organics','Cargo','Cargo','b948548b-180b-430f-86f2-4edd8810a334','','',NULL), +(10568,'ASAD_DistortionRepeater_FiringMechanism_S3','WeaponAttachment','FiringMechanism','c5fe3707-d93e-42b7-8c6f-7e9c8ce695fc','','',NULL), +(10569,'game_chess_1_rook_b','Misc','UNDEFINED','868d9cd3-15df-415d-924a-9ee9cc78b69d','','',NULL), +(10570,'Hull A Bombora Livery','Paints','UNDEFINED','9f99d159-e50a-4693-afb3-0ec99a64828d','','','Featuring a color scheme that\'s vibrant blue on the top and a vivid orange on the bottom, the Bombora livery gives that Hull A a strikingly distinct look.'), +(10571,'PAB-1 Core Executive','Armor','Torso','7fac7127-200f-4152-bed5-2b7362981d75','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(10572,'Valkyrie Foundation Fest Livery','Paints','UNDEFINED','4f90232a-2a34-45d4-bf47-1985139de61d','','','Foundation Festival is an opportunity for Citizens and Civilians to come together and strengthen the foundation of our community. Show your commitment to a better universe with this custom livery.'), +(10573,'Internal Tank','FuelTank','Fuel','8e325d76-2ec1-4b71-8f9b-075a0bb9429a','','',NULL), +(10574,'Seat','SeatAccess','UNDEFINED','7729a98c-63b7-4794-ba8f-3fcaa81ffa42','','',NULL), +(10575,'ANVL_Terrapin_Thruster_Mav_Joint','ManneuverThruster','FixedThruster','99aaf279-efd4-4db2-a1bc-00e0d8a96dbe','','',NULL), +(10576,'Door Control','ControlPanel','DoorPart','2022a5b2-cd42-46c5-b9d5-a51add45e0d2','','',NULL), +(10577,'Orsen Officer Pants','Char_Clothing_Legs','UNDEFINED','cbfd8fd6-4fda-4c8f-ab70-1dec05543334','','','Carrying Capacity: 0.5K µSCU\n\nThese practical, no-nonsense trousers provide the support and durability that those working in the defensive services would expect.'), +(10578,'ControlPanel_Screen_LightControl_4x3','ControlPanel','DoorPart','5a4fe35e-f408-49ee-8860-a04ec0f3359e','','',NULL), +(10579,'Mercury','Cargo','Cargo','a2611765-3c56-4acc-8fc3-fd589b1a9666','','',NULL), +(10580,'Razor Hosanna Livery','Paints','UNDEFINED','5f43669d-b4d3-4da9-801b-fa91956b529e','','','Inspired by the gorgeous clouds that enshroud Orison, the Hosanna livery blends red, ivory, and pink to give the Razor a distinct appearance. It also features a silhouette of the landing zone\'s famous Hosanna tree complete with its pink flowers.'), +(10581,'Manned Turret','Seat','UNDEFINED','4cbb0194-a946-da9a-e179-4b7f5b98ce98','','',NULL), +(10582,'Nyman Jacket Yellow','Char_Clothing_Torso_1','UNDEFINED','4dd8dee2-4019-4a4a-b320-fb4e7665b4c5','','','Carrying Capacity: 1K µSCU\n\nOpalSky\'s Nyman light pullover is perfect to have on hand when lounging poolside or on those chilly nights.'), +(10583,'Glas_Cup','Misc','UNDEFINED','14ce076b-b5fd-48ad-8f64-1d3d53f28e13','','',NULL), +(10584,'Door Control','Door','UNDEFINED','d1b1f7a1-d033-422b-a4d4-cb315ecf0f4b','','',NULL), +(10585,'Flight Blade','FlightController','UNDEFINED','61adfd26-1fb1-4a59-a8e9-68ea406b46c3','','',NULL), +(10586,'Carryable_1H_CY_weight_dumbbell_1_16kg_b','Misc','UNDEFINED','808d6323-a5a2-4afc-92ea-5c19142b71bd','','',NULL), +(10587,'Projector_HUD_Mining_MOTH','Display','UNDEFINED','65d936f2-9e44-4ebd-ba75-8f1775df0f01','','',NULL), +(10588,'Terra Liberty Ale (Bottle)','Drink','Bottle','0179f52a-2214-40c3-8d82-94ff974ce97d','','','HEI: 23\nEffects: Cognitive Impairment, Dehydrating\n\nLiberty Lake beer has been brewed by families on Terra for generations to provide a crisp, clean ale perfect to partake when you arrive at those little moments made to be spent enjoying life. Terra Liberty is hop forward with a crisp finish.'), +(10589,'Slayer Cannon','Weapon','Gun','60c7754c-32db-4855-9673-fb849d5e3a4a','','','Manufacturer: Hurston Dynamics\nItem Type: Ballistic Cannon\nSize: 5\n\nDesigned specifically for the Nova tank, Hurston Dynamics\' Slayer ballistic cannon earned its illustrious reputation through countless battlefield engagements during the Second Tevarin War. This battlefield beast excels against armored targets and fortified emplacements by firing large caliber artillery rounds with astounding accuracy and velocity. Hurston worked closely with Tumbril when the tank manufacturer decided to bring back the Nova. Though they painstakingly honored the original Slayer design, Hurston also updated it for the 30th century by improving the pivot speed, heat resistance, and associated software to provide a state-of-the-art gunner UI.'), +(10590,'Wrecker Helmet Payback','Armor','Helmet','a728485f-0fc2-41de-bf20-6feee8323c64','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFavored by the most brutal of hunters, the Wrecker armor is a fusion of discarded metal and pilfered fabric cobbled together to offer protection while stalking prey. It features an intimidating and enclosed helmet with four eye-like red sensors to keep the wearer connected to the world around them.\n\nThe Payback version is sprayed with red paint and anointed with bone fragments and Vanduul armor pieces.'), +(10591,'Seat','Usable','UNDEFINED','b7b4d504-5fcd-4a86-a019-1f77a7c416dc','','',NULL), +(10592,'Lynx Arms Abyss','Armor','Arms','a88fda49-54dc-4b2b-8e19-33559c29df55','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(10593,'DockingTube_Fuel_Ports_ORIG_85X','DockingCollar','UNDEFINED','3aaa0d85-8e41-49d3-a362-6fc8de1b36a1','','',NULL), +(10594,'Palatino Core Moonfall','Armor','Torso','a554ed13-c5d6-46df-a7b0-dce25cefe9d2','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: All\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower.'), +(10595,'Bed','Usable','UNDEFINED','bdc7306f-d879-43e8-9ef3-dd70c18ae8f7','','',NULL), +(10596,'Outback Helmet Molehill Brown','Armor','Helmet','3964b84c-f63a-4dbd-aaaa-8c6cadf861dd','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -65 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2k µSCU\n\nThis full-coverage reinforced leather helmet incorporates darkened goggles and a heavy-duty rebreather suitable for low oxygen environments. Visor is AR Crosshair compatible. The Molehill version is dyed a neutral brown to keep you subtle, but not unsightly.'), +(10597,'INTK_AEGS_Javelin','FuelIntake','Fuel','e5dac81e-796d-48f1-9d84-08cf73409e8b','','',NULL), +(10598,'Allegro','QuantumDrive','UNDEFINED','70163f66-522d-4161-824e-18eb08299258','','','Item Type: Quantum Drive\nManufacturer: ArcCorp \nSize: 4\nGrade: Bespoke\nClass: Civilian\n\nDesigned specifically for the 890 Jump, the Allegro quantum drive blends ArcCorp\'s expertise with Origin\'s exceptionally high standards, making it the ideal companion for a luxury cruise through the stars.'), +(10599,'TRGT. STATUS','Seat','UNDEFINED','d97e2015-2833-4d84-891d-c47973ef95e0','','',NULL), +(10600,'Weapon_Rack_2_Slots_RSI_Meteor','Usable','UNDEFINED','da91c3eb-3b66-46f3-89d2-5938e1885ab9','','',NULL), +(10601,'Abetti','Radar','MidRangeRadar','1c6c2145-5f0f-4a69-adf6-82339a0b2559','','','Item Type: Radar\nManufacturer: WillsOp\nSize: 1\nGrade: A\nClass: Civilian\n\nSupplying high powered detection technology, the Abetti\'s advanced systems offer a responsive radar experience.'), +(10602,'GMRCK_S02_TMBL_Storm_AA_Custom','GroundVehicleMissileLauncher','GroundVehicleMissileRack','65193d8e-3df2-4eed-bf13-71d95c0ddec4','','',NULL), +(10603,'Carryable_2H_FL_MissionItem_IndustrialFlare','Misc','UNDEFINED','10838ba5-d257-4708-8601-7d41ac8efb34','','',NULL), +(10604,'Carryable_2H_CY_weight_barbell_bumperplate_1_20kg_b','Misc','UNDEFINED','c05c9802-ee90-45a5-a01f-705ca0fe77dc','','',NULL), +(10605,'MISSILES','MissileController','UNDEFINED','158a8461-a8b2-4778-ac64-63ae56a1f5a0','','',NULL), +(10606,'Flight Blade','FlightController','UNDEFINED','b879d40e-5066-40e8-92ff-d8f32c6376a0','','',NULL), +(10607,'Carinite','Cargo','Cargo','b7cea3c9-0c55-4fd0-8c2c-ef70245389c9','','','A rare mineral because the extreme pressure needed for its formation is very uncommon, it is in high demand thanks to its use in advanced computer processors and other cutting-edge electronics.'), +(10608,'Veil Flash Hider3','WeaponAttachment','Barrel','678aae5b-0d55-42fb-bfe2-ce9973715529','','','Manufacturer: ArmaMod\nType: Flash Hider\nAttachment Point: Barrel\nSize: 3\n\nRecoil Stability: +15%\nRecoil Smoothness: +15%\n\nThe Veil Flash Hider3 is an S3 flash hider from ArmaMod. Designed to reduce muzzle flash, it will help keep your position hidden once the action begins.'), +(10609,'LifeCore Boots','Char_Clothing_Feet','UNDEFINED','6f71ba7a-97a9-43d5-bb65-d6ac15fcff2b','','','These all-purpose, all-terrain workboots from Grindstone feature full ankle support, molded heel counter and a waterproof, abrasion resistant material.'), +(10610,'Flight Blade','FlightController','UNDEFINED','fdec799f-dc40-45e0-bc57-6ed70b33b5c3','','',NULL), +(10611,'shelf_hat_bandana_02x01x01_03Ports','ShopDisplay','Default','ca41a962-b89f-4f68-b6a4-d9207d332e07','','',NULL), +(10612,'ORIG_350r_Thruster_Mav_Fixed_02','ManneuverThruster','FixedThruster','3250a417-37a9-4ae1-aa85-5939269e3296','','',NULL), +(10613,'Avenger Titan Standard Flight Blade','FlightController','UNDEFINED','42a4e6e4-a6cf-4a51-998b-5131f8fe821c','','','Manufacturer: Aegis Dynamics\nType: Flight Blade\n\nThis is the standard issue flight blade for the Aegis Avenger Titan.'), +(10614,'Weapon_Rack_1_Slot_ARGO_Pistol','Usable','UNDEFINED','31bf792a-d35f-4f44-8bad-fba57650be77','','',NULL), +(10615,'Door Control','ControlPanel','DoorPart','f4310978-24b9-4a71-a26f-ebeecf9fae58','','',NULL), +(10616,'Door Control','Door','UNDEFINED','46f538de-0d79-49e0-89a9-90bf1454551a','','',NULL), +(10617,'Devastator \"Starchaser\" Shotgun','Weapon','Medium','a150758d-fb03-435d-bad8-77774292f4ba','','','Manufacturer: Kastak Arms\nItem Type: Shotgun\nClass: Energy (Plasma)\n\nBattery Size: 12\nRate Of Fire: 60 rpm\nEffective Range: 20 m\n\nKastak Arms’ Devastator is a semi-automatic electric shotgun capable of delivering sustained medium range, high-impact plasma blasts for close combat, room clearances and other combat operations. If the situation requires a high-power presence, look no further than the Devastator. Created to celebrate the 2954 IAE, the Starchaser edition is a vivid purple with white and black highlights.'), +(10618,'Finley the Stormwal Mug','Drink','UNDEFINED','1ad58e8f-ffc7-4e9a-81e7-f808c8d8d465','','','Made from durable stoneware, the Finley the Stormwal mug features the mascot\'s iconic grin and inquisitive eyes. This fun mug will keep beverages warm and bring a smile to your face.'), +(10619,'ANVL_Hornet_F7CM_Mk2_Thruster_Main','MainThruster','FixedThruster','cf25a82a-95fb-49b2-b0f1-4b3efc605361','','',NULL), +(10620,'Main Powerplant','PowerPlant','Power','ae9cec5a-0917-441d-802b-3d96d79478cc','','','Aegis Idris Powerplant'), +(10621,'Radar_Display_CRUS_Spirit_A1','Display','UNDEFINED','f7a2d524-445e-4fb0-8387-404ce67b67d0','','',NULL), +(10622,'Redfin Energy Modulators','Cargo','Cargo','3a199ae7-7d0b-4ca9-8d2e-369ada31fec2','','',NULL), +(10623,'Anvil Gladiator - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','b16cbb47-7dc7-4be4-b95e-de7275f9cd2d','','','Anvil Gladiator - Decoy Launcher'), +(10624,'Snapback Boots','Char_Clothing_Feet','UNDEFINED','49932044-a878-47cf-9114-782f4d3e7bad','','','Vibrant light green leather and bold metallic accents bring an eye catching look to the Snapback boots. Grindstone Boots\' classic thick, cushioned sole and an odor absorbing insole are complemented by a steel toe, magnetic clasps protecting the laces, and a metallic counter for additional support.'), +(10625,'TopLine Apron Pants Kel-To','Char_Clothing_Legs','UNDEFINED','796fb0f7-6987-4d0f-8b19-3fb801c57929','','','Carrying Capacity: 2K µSCU\n\nWith an attached apron and deep side pockets, the TopLine pants from Stegman\'s make even the toughest service jobs a little bit easier.'), +(10626,'S71 Rifle Magazine (30 cap)','WeaponAttachment','Magazine','1fc5d1dc-1fbd-480b-9b1a-a5121963de78','','','Item Type: Magazine\nCapacity: 30\n\nThis magazine for the Gemini S71 rifle holds thirty 5mm rounds.'), +(10627,'Calister Jacket Armadillo','Char_Clothing_Torso_1','UNDEFINED','c0a76c89-7b05-4f94-9c15-0fc31ecfdfc1','','','Carrying Capacity: 1000 µSCU\n\nThe Calister Jacket by Habidash is made with thick synthetic fabric intended to ensure full body coverage. The cross-body panel that shapes the silhouette of the design provides additional insulation in harsher conditions.'), +(10628,'Carryable_1H_CY_personal_flare_1_a','Misc','UNDEFINED','772340c2-5c67-4d26-8385-320f93ced5bc','','',NULL), +(10629,'Aluminum','Cargo','Cargo','c9eabe69-ba70-4567-94b8-c39d78d0c739','','',NULL), +(10630,'Jericho','Weapon','Rocket','679d7f26-7539-4414-976d-0c809ba89933','','','Item Type: Rocket Pod\nManufacturer: Hurston Dynamics\nSize: 1\nRockets: 6xS1\n\nThe Jericho rocket pod from Hurston Dynamics is compatible with any size one hardpoint and capable of carrying six S1 rockets.'), +(10631,'facial_hair_031','Char_Head_Beard','UNDEFINED','c3080eb5-5e6d-4659-9f35-a68721830b13','','',NULL), +(10632,'Weapon_Rack_1_BEHR_Sniper_Common_001','Usable','UNDEFINED','03edfc1a-9a7b-488d-bc15-d1c7a9dec612','','',NULL), +(10633,'AEGS_Reclaimer_Thruster_Mav_Fixed_Large','ManneuverThruster','FixedThruster','e54842f8-e002-4b9e-8e68-40d7a06414f7','','',NULL), +(10634,'Quantainium','Cargo','Cargo','b84af979-4f10-481e-bd1c-280e3cd147fb','','',NULL), +(10635,'Processed Food','Cargo','Cargo','f3929b85-0191-4cd9-9d3c-8afd8594ef43','','',NULL), +(10636,'Borase (Ore)','Cargo','Cargo','30211a91-e90c-45eb-8860-eb88f90c6b6b','','',NULL), +(10637,'weapon_underbarrel_light_wide_Darkblue_01','WeaponAttachment','Light','f83b27c3-6e73-49db-b486-8a2033e710ed','','',NULL), +(10638,'Anvil Gladiator Torpedo Rack','MissileLauncher','MissileRack','13349103-5fe6-4dc1-bbb9-4a27bcc01b40','','','Anvil Gladiator Torpedo Rack'), +(10639,'ORIG_400i_SCItem_Dashboard_Captain_Room','SeatDashboard','UNDEFINED','a458ad5f-4391-4c36-8c56-db816edde532','','',NULL), +(10640,'TRGT. STATUS','Seat','UNDEFINED','15e8399f-8c67-4653-a05c-feacc30606d1','','',NULL), +(10641,'Inquisitor Arms Neon Pink','Armor','Arms','6d8d3c54-19f3-4ed1-bfe4-43caa62acd90','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(10642,'Lynx Legs Frostline','Armor','Legs','dedd80f6-374b-4974-b666-1169e003ec8a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(10643,'H_Dashboard_Projector_HUD_ANVL_Gladiator','Display','UNDEFINED','40ae562d-46db-4364-86dd-e2cda43a20b7','','',NULL), +(10644,'Leyland\'s Tortoise','Misc','UNDEFINED','baddd87c-ae22-4534-a7e3-f8fda1a44542','','','Leyland’s tortoise is a species of tortoise indigenous to Earth (Sol III). Extremely docile, they are kept as pets by Humans, especially long-haul spacers. Over-collection and habitat destruction have made them nearly extinct in the wild.'), +(10645,'Lt_AirlockDoorPanelScreen','Misc','UNDEFINED','33b38cd4-11c0-44ac-891d-d4414afd7a39','','',NULL), +(10646,'Lost Plague Helmet Biohazard Blue','Armor','Helmet','bbfc48f5-b10b-4701-98ed-1c694bc32d49','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -40 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nInfect your friends with your Day of the Vara spirit when you wear this helmet inspired by the hit vid Lost Plague. The helmet perfectly replicates the horrific death of xenoarchaeologist Diane Wu, first victim of the ancient alien virus she unwittingly unleashes on an unsuspecting galaxy. CC\'s Conversions utilized a proprietary lightweight yet sturdy rubber to accurately reproduce the deadly plague\'s signature spines so you can enjoy hours of wear without straining your neck.'), +(10647,'Door Control','Door','UNDEFINED','89511fb1-e0fe-4d10-923c-7f3005d7c49f','','',NULL), +(10648,'DRAK_Cutlass_Thruster_Maneuver_Left','ManneuverThruster','JointThruster','5eb60288-e1e7-45f5-ad78-e74c2232c7ad','','',NULL), +(10649,'Kavir Pants','Char_Clothing_Legs','UNDEFINED','41483b87-d5af-4c7e-a0ca-e8db21e86131','','','Carrying Capacity: 0.4K µSCU\n\nBlending Habidash style and ingenuity, the Kavir pants feature fashionable flourishes alongside practical perks ideal for managing extreme environments. Several fabric pieces are sewn directly into a thick, integrated belt that divides the pants between a large elastic waistband and looser, breathable cotton blend fabric through the legs. There are also two bands of fabric that ring the shins to keep dirt and other elements out.'), +(10650,'Medical Bed','Usable','UNDEFINED','56abde54-c9b1-4a7e-adc8-0dbe9e5a64b5','','',NULL), +(10651,'Seat_Jump_ORIG_300i_Bathroom_Toilet','Usable','UNDEFINED','8c61f5fc-23c5-4ad6-926e-a1809ba2b91f','','',NULL), +(10652,'Soap','Misc','UNDEFINED','0af26e66-8e92-4e23-9790-ca28c0b3948c','','',NULL), +(10653,'Internal Tank','FuelTank','Fuel','851319cf-e5c5-4978-ba5f-ae337664e353','','',NULL), +(10654,'Standing_Harness_ESPR_Prowler_C','Usable','UNDEFINED','79a9d403-6e37-41ec-9140-3e0de6412ee8','','',NULL), +(10655,'Cutter Caiman Livery','Paints','UNDEFINED','75d7a2ae-1622-4b46-9dfa-00d968c27477','','','Green and white with orange highlights, the Caiman livery brings a distinct and dramatic look to the Cutter.'), +(10656,'TS-2','QuantumDrive','UNDEFINED','8ea47c7e-f70f-469d-abc2-911cc5013854','','','Item Type: Quantum Drive\nManufacturer: Wei-Tek\nSize: 3\nGrade: A\nClass: Military\n\nAdvanced protective plating provides the TS-2 with superior durability and protection against the elements and aggressors, making it an ideal quantum drive for those moments when danger calls.'), +(10657,'MISC_Starfarer_Thruster_Main','MainThruster','FixedThruster','965ee334-131c-490d-b096-4ab82406d455','','',NULL), +(10658,'ARGO_ATLS_IKTI_ARGOS_Shoulder_Shield','Misc','UNDEFINED','b4e901ff-d2a0-4d34-b96d-1860449dd1b1','','',NULL), +(10659,'Door_NoRoomConnector_RSI_Polaris_Toilet_R','Door','UNDEFINED','45b6787c-9b91-4a0d-a34d-bdca9f30e9f7','','',NULL), +(10660,'Door Control','ControlPanel','DoorPart','f71e777f-dfca-4939-9c5a-eca41ae8083e','','',NULL), +(10661,'Screen','SeatDashboard','UNDEFINED','3c16e8e2-5bee-45b6-83f0-7eddc02ce43e','','',NULL), +(10662,'Terrapin Purple Haze Livery','Paints','UNDEFINED','fb335d47-b37b-44a8-9d1a-8384f2d828ba','','','Celebrate Day of the Vara in style with the Purple Haze livery, featuring a glimmering metallic purple base paint splattered in green.'), +(10663,'Carryable_1H_CY_drug_calcar_1_a','Misc','UNDEFINED','48570b07-5ceb-4470-99d1-fe6f05916a2f','','',NULL), +(10664,'Flight Blade','FlightController','UNDEFINED','db89de23-e7d8-4ec9-b532-6ac9af8f14b6','','',NULL), +(10665,'Piecemeal Armor Legs','Armor','Legs','36200c80-ecf8-472f-9cbe-4994e11ecbab','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nThis armor was created using repurposed parts from a Caldera armor set to provide the wearer with an extra layer of protection against aggressors and harsh environments.'), +(10666,'AEGS_Javelin_Thruster_Retro_Invulnerable','ManneuverThruster','FixedThruster','62d2c4a0-0b1a-4f92-8d0f-1689e7265730','','',NULL), +(10667,'shelf_shoe_1_highend_b','ShopDisplay','Default','a301c049-dea4-4474-9283-0e0e9ddd60a2','','',NULL), +(10668,'Access','SeatAccess','UNDEFINED','e40fd268-8923-41f6-a4e5-3e28b2014270','','',NULL), +(10669,'Aloprat Skewer','Misc','Consumable','02051b5d-b4dc-4c59-8c86-369135c24c68','','','NDR: 25\nEffects: Immune Suppressing\n\nAloprat is a hearty species of rodent found across Human occupied space, and even can survive aboard space stations and ships eating a variety of food and scraps. This aloprat has been skewered and roasted rotisserie style for crisp skin and gamey, fatty meat.'), +(10670,'Strata Helmet Pyrotechnic Edition','Armor','Helmet','269bfab5-e97a-4d71-a053-06d7abbf765c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design features high quality materials and a next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. This edition features the colors and logo of the now defunct Pyrotechnic Amalgamated.'), +(10671,'ORC-mkX Helmet Nightfire','Armor','Helmet','85cba80f-4284-4880-9070-fbbac78d9fd7','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology that maximizes protection against projectiles, explosives and the elements without hindering the operator\'s agility. Visor is AR crosshair compatible.'), +(10672,'DockingTube_Fuel_Ports_DRAK_Dragonfly_Pink','DockingCollar','UNDEFINED','a16375c4-34d7-48bf-8d92-9cdf54fb4938','','',NULL), +(10673,'Calister Pants Westar','Char_Clothing_Legs','UNDEFINED','a92cab3c-d2a6-4a4c-8940-8ee722edeca9','','','Carrying Capacity: 1000 µSCU\n\nThe Calister Pants by Habidash are made with thick synthetic fabric intended to ensure coverage of the wearer\'s legs even in adverse environmental conditions.'), +(10674,'Lycara','Cargo','Cargo','dc6088d5-18f8-43d6-9b1a-c70352a71629','','',NULL), +(10675,'JOKR_DistortionCannon_Barrel_S3','WeaponAttachment','Barrel','5b36c810-176a-4a2d-80bf-5d452242c1b6','','',NULL), +(10676,'Flair_Hologram_Vanduul_Skull_1_a','Usable','UNDEFINED','b0b71d3d-3b34-404b-9179-a47407e679b2','','',NULL), +(10677,'Castillo Jacket Formal','Char_Clothing_Torso_1','UNDEFINED','7e320fe2-8d67-4aef-999d-bace4e6e38d7','','','Carrying Capacity: 1K µSCU\n\nRefined enough for day, but ready for night, this jacket is essential for any young professional\'s collection. Notched lapels and a center back seam provide a tailored look at the Spar Van Miles price.\n\nWomen\'s sizes currently out of stock.'), +(10678,'Weapon_Rack_3_Slot_RSI_Common_Medgun','Usable','UNDEFINED','9017db4b-82b6-4f7f-89a4-8f5412e7e7fa','','',NULL), +(10679,'Pulse 2956 Auspicious Red Rat Livery','Paints','UNDEFINED','7593bd66-377f-4472-89f2-fee872e079da','','','Seek peace and prosperity in the new year with the Auspicious Red Rat livery. Outfit your Pulse with this bold red base paint complemented by gold accents and a stylized graphic of a rat.'), +(10680,'Processed Food','Cargo','Cargo','8447c077-93f5-48e4-93c7-2ebe49ae4276','','',NULL), +(10681,'Sureshot Helmet','Armor','Helmet','02bee84d-1bc7-4530-8fe3-61e6e49e53bd','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -65 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWin the fight before it starts with this intimidating, take-no-prisoners helmet. But if it does go down, this combination of an ablative ceramic mask and polyweave skull cap has you covered with the optimum combination of easy breathability and airtight protection. Visor is AR Crosshair compatible.'), +(10682,'m_human_mannequin_odyssey_suit_10','ShopDisplay','UNDEFINED','fd9eec4f-e0dd-494a-b577-0b0c5475ed71','','',NULL), +(10683,'Carbon-Silk','Cargo','Cargo','e7d6b938-c200-40e9-95ae-eb9f7eade1c8','','',NULL), +(10684,'Morozov-SH-C Helmet Terrene','Armor','Helmet','d8556daf-60ba-413b-9d70-5b2f31d8af61','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(10685,'Godmother Sandwich','Food','Junk','61b3eb5a-7edc-4803-b564-1874c70d7204','','','NDR: 41\nEffects: None\n\nLayers of cured meats and salami are stacked high with tangy fosso cheese, tomatoes, lettuce, roasted peppers and our famous house dressing on rice bread. At Twyn\'s, it\'s what\'s inside that counts.'), +(10686,'AEGS_Reclaimer_Seat_TractorBeam_Left','Seat','UNDEFINED','dc3aa40d-54cb-4aee-a59c-784d6c04d71e','','',NULL), +(10687,'Ready-Up Helmet Red','Char_Clothing_Hat','UNDEFINED','89cbf76c-e09f-4ff3-b585-f9876aa3df13','','','The Ready-Up is a dependable, affordable softshell helmet alternative. Built from space-age plastic, the Ready-Up provides a vacuum-ready seal to keep you breathing for longer.'), +(10688,'CNOU_Mustang_Thruster_Mav_Fixed_01_Up','ManneuverThruster','FixedThruster','4b551f5a-65ab-4445-8ae1-50028116f103','','',NULL), +(10689,'weapon_underbarrel_light_narrow_gold_01','WeaponAttachment','Light','46c7a3a0-55f6-414a-852f-c62376d747cd','','',NULL), +(10690,'Hadanite','Cargo','Small','b9f3755d-125e-4af0-8876-5630fb5fcd9b','','','A crystal oscillator sought out for its extremely high frequency of vibration which makes it useful in various applications.'), +(10691,'Manned Turret','TurretBase','MannedTurret','d2e36cb0-33bb-4bec-877b-cd1336e1bfc4','','',NULL), +(10692,'Seat','SeatAccess','UNDEFINED','fe331e51-b1eb-4b55-8a32-6c3346b7f190','','',NULL), +(10693,'TwoStateAnimator_Control_SingleButton_Instanced','Misc','Default','6dad61be-8ab5-4412-ab8b-118763225a2e','','',NULL), +(10694,'MTC Boreal Livery','Paints','UNDEFINED','5ab8d057-aae8-4c37-91b1-143384842d20','','','The Boreal livery brings a mix of metallic light grey, grey, and orange highlights to the MTC. It\'s also compatible with other Greycat M-series vehicles.'), +(10695,'ActiveWear Training Shorts','Char_Clothing_Legs','UNDEFINED','311d0c49-59f5-4004-94cb-caa234df753d','','','Standard issue ActiveWear training shorts are constructed from four-way stretch fabric technology to allow for increased airflow and a larger range of motion while keeping you cool and dry during the most intensive training sessions.'), +(10696,'Bed_ORIG_600i_Crew_C','Usable','UNDEFINED','66533670-7c5e-4bd0-86c4-ad7e09e9a9d3','','',NULL), +(10697,'MOLE Aphorite Livery','Paints','UNDEFINED','2fa51a37-2de3-4297-9ed6-86a61f20ef57','','','Decorate your MOLE with the Aphorite livery, which gets its name and color from the precious purple gemstone prized for its multi-hued tones.'), +(10698,'Railing_Straight_1m_LowTech_Util_Stairs_01x01_end_b','Usable','UNDEFINED','7b881286-21fe-4d79-b414-05d5b652aa85','','',NULL), +(10699,'mobiGlas Apricot Casing','MobiGlas','Personal','cd6f3213-9aa5-4dbb-ae23-72f015c221d8','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(10700,'Cutlass Flashfire Specialty Mount','TurretBase','MannedTurret','06056515-2d92-4697-a432-0c1e158bacff','','','Cutlass Flashfire Specialty Mount Description'), +(10701,'IAE 2950 T-Shirt','Char_Clothing_Torso_0','UNDEFINED','3ba85dd2-d1ce-40e3-b8b7-d512d882912c','','','When Audrey Timmerman and friends gathered in 2670 to test her ship\'s experimental thrusters no one could have predicted the event would evolve into the Intergalactic Aerospace Expo. Nearly three centuries later, this grey t-shirt with white ribbing commemorates the 2950 IAE. Featuring the event\'s logo on the front and back, all proceeds from the shirt\'s sale will go to Simpods Pals, a charity founded by Timmerman to help underprivileged children learn to fly.'), +(10702,'Aslarite','Cargo','Cargo','d4a481f5-0584-45bc-9b7e-ccfa2441c2df','','',NULL), +(10703,'Bed','Usable','UNDEFINED','c240cde2-fd05-41c3-a8f5-bc7737e4429e','','',NULL), +(10704,'HRST_LaserRepeater_PowerArray_S5','WeaponAttachment','PowerArray','fa13abfe-b343-48a8-8497-9c96c18974e7','','',NULL), +(10705,'MASTER_couch_2','Usable','UNDEFINED','405433af-4427-4a6b-909e-a748924a5ea1','','',NULL), +(10706,'TruBarrier Hazard Suit Mask Warning','Char_Clothing_Hat','UNDEFINED','12bbf500-5f7c-437e-a317-11ff5bb677ad','','','Temp. Rating: -30 / 15 °C\n\nThe TruBarrier Hazard Mask by Greycat Industrial helps its user face unexpected environmental hazards while keeping the most vulnerable parts of the head safe from damage. The encapsualted design provides full-body protection from direct contact with dangerous materials when worn with its accompanying jumpsuit.'), +(10707,'Armor_Crate_CZ_Horizon_H_001','Usable','UNDEFINED','c375930f-90b1-4c22-a629-ed30d05ab511','','',NULL), +(10708,'TruBarrier Hazard Suit Mask Dark Biohazard','Char_Clothing_Hat','UNDEFINED','396f65bb-75cd-4788-b4d4-17cbd40d7328','','','Temp. Rating: -30 / 15 °C\n\nThe TruBarrier Hazard Mask by Greycat Industrial helps its user face unexpected environmental hazards while keeping the most vulnerable parts of the head safe from damage. The encapsualted design provides full-body protection from direct contact with dangerous materials when worn with its accompanying jumpsuit.'), +(10709,'TruBarrier Hazard Suit Mask Moss','Char_Clothing_Hat','UNDEFINED','4f2ad480-bcc0-4f0c-9c69-35b5ea316b42','','','Temp. Rating: -30 / 15 °C\n\nThe TruBarrier Hazard Mask by Greycat Industrial helps its user face unexpected environmental hazards while keeping the most vulnerable parts of the head safe from damage. The encapsualted design provides full-body protection from direct contact with dangerous materials when worn with its accompanying jumpsuit.'), +(10710,'TruBarrier Hazard Suit Mask Hi-Vis Biohazard','Char_Clothing_Hat','UNDEFINED','aa8d386c-696b-4fef-bf64-0aef10190072','','','Temp. Rating: -30 / 15 °C\n\nThe TruBarrier Hazard Mask by Greycat Industrial helps its user face unexpected environmental hazards while keeping the most vulnerable parts of the head safe from damage. The encapsualted design provides full-body protection from direct contact with dangerous materials when worn with its accompanying jumpsuit.'), +(10711,'Paladin Downstream Livery','Paints','UNDEFINED','cf22e114-9a98-474c-8da7-41eb3de33441','','','The Downstream livery features subtle shades of blue and black to help the Paladin discreetly reach drop zones.'), +(10712,'Seat','SeatAccess','UNDEFINED','f77db077-366e-45a4-a2e5-54b68a9a4e32','','',NULL), +(10713,'Door Control','Door','UNDEFINED','60618a88-efed-44ac-b6af-58cf8b43ad94','','',NULL), +(10714,'Flight Blade','FlightController','UNDEFINED','a713988b-57e2-48de-9c31-9869316ff41e','','',NULL), +(10715,'Fury Tengu Livery','Paints','UNDEFINED','545e4bc2-225d-49f9-ae33-4f8482ba1cbd','','','Announce the presence of the Fury with the Tengu livery, featuring a bold red look with black highlights.'), +(10716,'AAT-34 Turret','Turret','MannedTurret','191cbacf-82a8-4ae4-9081-0ce594aaab25','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(10717,'Door Control','ControlPanel','DoorPart','9db87a9f-6a7a-4b56-baeb-ffe3671d118d','','',NULL), +(10718,'Atzkav \"Venom\" Sniper Rifle','Weapon','Medium','fc4903e4-7e46-44d8-a20d-3db7e0062e26','','','Manufacturer: Lightning Bolt Co. \nItem Type: Sniper Rifle\nClass: Electron\n\nBattery Size: 5\nRate Of Fire: 30 rpm\nEffective Range: 150m+\n\nAttachments: Optics (S3), Underbarrel (S2)\n\nThe Atzkav is a unique precision sniper rifle from Lightning Bolt Co. Once the charging handle is engaged, it accurately fires a charged electron to deal significant energy damage that spreads to nearby conductive targets. This special pulse effect also leaves a residual charge in the strike area that increases damage delivered by subsequent electron shots. Alongside the rifle\'s special firing capabilities, the Atzkav is best known for its distinct barrel that crackles with energy when powering its next shot. The Venom edition integrates a vibrant green coating into the weapon.'), +(10719,'Gadget_Cabinet_kegr_fire_extinguisher_01_nogeo_med_low','Usable','UNDEFINED','e8bd63dc-4142-44b7-84aa-312c784f4def','','',NULL), +(10720,'Door','Door','UNDEFINED','231e4fb9-8948-438b-9904-4178464d1528','','',NULL), +(10721,'Palatino Core Metropolis','Armor','Torso','336e2289-16ea-4c51-934c-39aca677b21b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: All\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower.'), +(10722,'Tin','Cargo','Cargo','25ae0b7e-3128-4cba-bd83-a1cbfc19c96d','','',NULL), +(10723,'Foundation Festival Hat Black','Char_Clothing_Hat','UNDEFINED','1b261147-6914-47de-9364-41fba0098f51','','','Celebrate the nations of Earth joining together to explore the stars with this special Foundation Festival hat featuring the logo across the front panel.'), +(10724,'Paint_Idris_Procyon','Paints','UNDEFINED','833f0ca4-5d6a-48e7-b72d-046be3ba251d','','',NULL), +(10725,'KLWE_MassDriver_Ventilation_S3','WeaponAttachment','Ventilation','c69ad780-94d8-49ba-9cc6-68e307c539a8','','',NULL), +(10726,'Idris_Crew_Qtrs_Locker_l','Player','UNDEFINED','178d218f-145c-40ab-8462-882f331b6584','','',NULL), +(10727,'Stark Compensator3','WeaponAttachment','Barrel','b72f4a2e-6609-4ee3-80a1-1d6a02490c75','','','Manufacturer: ArmaMod\nType: Compensator\nAttachment Point: Barrel\nSize: 3\n\nSpread: +30%\nProjectile Speed: +7.5%\nFire Rate: +15%\nDamage: +7.5%\n\nDesigned by ArmaMod to cycle rounds quicker, the Stark Compensator3 amplifies the speed in which the bullets leave the chamber in exchange for reduced accuracy.'), +(10728,'Datapad','Misc','Gadget','58a7f76c-b029-4220-9aee-344a9b02f5f7','','','A portable tablet computing device featuring a touchscreen display.'), +(10729,'ESPR_Prowler_Thruster_Mav_Down_Utility','ManneuverThruster','UNDEFINED','61482039-bc3d-42d9-bf99-ad3f95d9913f','','',NULL), +(10730,'Focus Module','MiningModifier','Gun','e8864c48-6cd1-49e8-95ba-91912e321f35','','','Manufacturer: Thermyte Concern\nItem Type: Mining Module (Passive)\n\nOptimal Charge Window Size: +30%\n\nMining Laser Power: 85%\n\nThe Focus Module uses a modified mining laser crystal to create a larger optimal charge window at the expense of laser power.'), +(10731,'Main Powerplant','PowerPlant','Power','4f29e9ae-6a77-4461-b479-0479b9ecdca0','','','Aegis Idris Powerplant'), +(10732,'RSI_Zeus_Thruster_Main_Bottom_Left','MainThruster','UNDEFINED','828a462f-d4e3-416a-aa9d-8d0a2dfdbae8','','',NULL), +(10733,'TCS-4 Undersuit Desert','Armor','Undersuit','339e2d46-80aa-4eed-84cd-9efd5725b52b','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThis comprehensive Tactical Combat Suit provides a complete sealed suit against vacuum, free range of motion, and interfaces seamlessly with compatible armor systems.'), +(10734,'Aves Shrike Core','Armor','Torso','8c717a1f-7f67-448c-b340-b4322fc7481a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nHonor and embody the Tevarin aesthetic with the Aves Shrike armor; manufactured with white, blue, magenta, grey, and black plating to perfectly evoke the shape language imbued into their iconic ships. This medium armor from CC\'s Conversions is both sensational and practical, providing solid protection without sacrificing your mobility. When paired with the Aves Shrike helmet, the suit combines for a striking and unforgettable look.'), +(10735,'Golem Deck the Hull Livery','Paints','UNDEFINED','dd7c1cb0-8a9a-467a-914e-051d26251918','','','Express your holiday spirit with the Deck the Hull livery, which uses the traditional Luminalia colors of green and red to celebrate the popular Banu festival that\'s become beloved by Humans.'), +(10736,'m_human_mannequin_locker','ShopDisplay','UNDEFINED','c787947d-e12a-4d58-84eb-4754ffdf1e90','','',NULL), +(10737,'Carryable_1H_CY_bottle_vodka_pourable_1_a','Misc','UNDEFINED','bedcb7a2-f6a8-4863-a90d-7574a17175b2','','',NULL), +(10738,'bar_mmhc_glass_coke_empty','Misc','UNDEFINED','8d7f9dfd-a9cd-4573-a2d9-b1c236a684a2','','',NULL), +(10739,'Pathfinder IV Missile','Missile','Missile','77dc28bf-0742-490f-ac49-1d430cb6b48f','','','Manufacturer: Behring\nTracking Signal: Infrared\nSize: 4\n\nThe Pathfinder proximity missile has been a consistent member of Behring\'s already robust arsenal thanks to its tried and tested propulsion system and heat seeking guidance array.'), +(10740,'Bed_Simple','Usable','UNDEFINED','446a089e-065c-4dbd-9f65-6d1df15e6be7','','',NULL), +(10741,'Seat','SeatAccess','UNDEFINED','71c40387-c53f-4d2e-acbd-393036f3e6c7','','',NULL), +(10742,'Door Control','ControlPanel','DoorPart','07374957-cfaa-4687-bb6c-16e5a7f2a817','','',NULL), +(10743,'Cloud City T-Shirt Black','Char_Clothing_Torso_0','UNDEFINED','6bf651ce-1f3f-4fe3-8b59-034bcdc7de33','','','Due to its unique location, Orison is known as the city above the clouds. This shirt features the phrase and a truly unique view from one of its platforms.'), +(10744,'GP-XP Industrial Battery','Battery','Cargo','1ac9abb1-dc3d-4e2a-aded-8470f83add22','','','An extremely powerful battery used in industrial processes, like powering mining lasers. Its proprietary design generates significantly more energy than other batteries of its size but makes the GP-XP extremely heavy and unwieldy. Please use caution when attempting to move.'), +(10745,'counter_display_mod_end_b_0038x01x01_02Ports','ShopDisplay','UNDEFINED','9db76fbd-b74b-4c70-9f87-1d010baa844a','','',NULL), +(10746,'Emilion Pants','Char_Clothing_Legs','UNDEFINED','d6415769-ff23-430c-a326-d40c6d62ca59','','','Carrying Capacity: 0.5K µSCU\n\nDerion has done it again. The Emilion pants deliver a simple silhouette that reveals strikingly stylish details upon closer inspection. Made from a subtly textured stain-resistant fabric, the pants feature micropleats on the front and back that converge into a single decorative seam at the knees before splitting off again near the ankles, giving the Emilion pants an artful geometric design down the length of the leg.'), +(10747,'DoorProximitySensorItem_12x4x4','Sensor','DoorPart','c427395e-4f52-4b92-b21e-a96b87fbe453','','',NULL), +(10748,'Ambit Coverall','Char_Clothing_Torso_1','UNDEFINED','828d7cb2-00ad-4f4a-9e69-f66ac42e8642','','','Carrying Capacity: 0.4K µSCU\n\nThe Ambit Coverall is ideal jobsite attire with its multiple pockets, special super-stain resistant fabric, and a generous cut to allow for unrestricted movement. Step in, zip up, and work all day in comfort thanks to Stegman\'s.'), +(10749,'Railing_Straight_2m_Lowtech_Hangar_A','Usable','UNDEFINED','807cd39e-a9d8-4545-a3bb-ba3fdad406cd','','',NULL), +(10750,'ARGO_MPUV_DockingTube','DockingCollar','UNDEFINED','e00e9287-c93d-4fd9-9385-b1a82e83586c','','',NULL), +(10751,'Weapon Rack','Usable','UNDEFINED','0ca64cf3-eb53-41ca-932f-13896441180c','','',NULL), +(10752,'Altimont Pants Teal','Char_Clothing_Legs','UNDEFINED','c4771b30-57cb-40a4-acea-a8f3b9497892','','','Carrying Capacity: 1K µSCU\n\nOctagon embraces a classic look and makes it boldly modern with the Altimont. These jodhpur style pants feature a slightly flared hip that becomes snug under the knees thanks to built-in garters. A uniquely shaped front seam secured by silver clips on the waist and shin provide further detailing that\'s both subtle and stylish.'), +(10753,'f_human_mannequin_truDef_pro_odyssey','ShopDisplay','UNDEFINED','6cc2bc47-914e-46ee-a6a0-c2f154021a6e','','',NULL), +(10754,'Lillo Pants Purple','Char_Clothing_Legs','UNDEFINED','d5f52524-03c8-4f39-9549-95bdc3520573','','','Carrying Capacity: 0.5K µSCU\n\nThese slim cut pants from Fiore give you a tailored feel at a fraction of the cost. Built from space-age weaves, the Lillo are a low maintenance, high impact addition to your office wardrobe.'), +(10755,'MacFlex Legs Yellow','Armor','Legs','3f4d46ba-9512-4277-8ff1-0c0b96904401','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(10756,'Internal Tank','QuantumFuelTank','QuantumFuel','c714619c-012d-47e1-9a83-523be972a76b','','',NULL), +(10757,'Razorback Pants Dark Red','Char_Clothing_Legs','UNDEFINED','b418034e-d9e9-43aa-9f43-1b50b85f2883','','','Carrying Capacity: 2K µSCU\n\nDMC\'s Razorback pants are made to be worn. Built from industrial quality material, they feature reinforced kneepads to prevent tears on the job and stay rugged yet comfortable.\n\nWomen\'s sizes currently out of stock.'), +(10758,'orig_bedding_duvet_3_j','Seat','UNDEFINED','e621abc3-e146-4b81-a1f4-5b94186b7d1a','','',NULL), +(10759,'Scout Ship Armor','Armor','Medium','59d32a20-d36e-40f5-99ec-641954677c04','','','Scout Ship Armor'), +(10760,'RSI_Zeus_Thruster_VTOL','ManneuverThruster','UNDEFINED','8a0e466e-a1a1-436a-a417-32533e86b985','','',NULL), +(10761,'Book','Misc','UNDEFINED','b07f33c8-0fae-49eb-b60d-e56d00bda2d9','','',NULL), +(10762,'ADP-mk4 Legs Red Alert','Armor','Legs','a2dd47d0-3d8c-4a04-ae91-8be9bcf6bb24','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhen there\'s a difficult job at hand, you want to ensure that you can see it through to the end. Clark Defense Systems\' ADP-mk4 heavy armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers.'), +(10763,'Carryable_1H_CY_weight_dumbbell_1_20kg_a','Misc','UNDEFINED','b18aee51-fc53-4128-88f2-96b96e4ca66d','','',NULL), +(10764,'Door Control','Door','UNDEFINED','9f340b7b-7aee-4c80-972d-ba30cce770cb','','',NULL), +(10765,'Reliant Missile Launcher Cap','MissileLauncher','MissileRack','ae51c660-a166-4811-8979-15e64c4fc4ce','','','Item Type: Missile Launcher Cap\nManufacturer: MISC\nSize: 5 \n\nBespoke missile launcher cap used by the MISC Reliant.'), +(10766,'Flight Blade','FlightController','UNDEFINED','f561ee9a-a8da-40b8-9837-849583a6500f','','',NULL), +(10767,'Overlord Arms Riptide','Armor','Arms','12d78608-d86c-4d0e-9a7a-0bec5e418139','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.'), +(10768,'Seat','SeatAccess','UNDEFINED','e61cc803-e5b6-40bb-9e90-c6d17b475d0d','','',NULL), +(10769,'Bed','Usable','UNDEFINED','4bc4bab8-20db-4651-ad41-f85513df386b','','',NULL), +(10770,'C-788 Cannon','Weapon','Gun','6635dc5f-dfcd-4b72-9d9d-8d3620820352','','','Manufacturer: Behring\nItem Type: Ballistic Cannon\nSize: 4\n\nHurtling high caliber rounds with devastating velocity, Behring’s C-788 Ballistic Autocannon was built to punch through ship armor. Extremely durable with exceptional heat resistance, the “Combine” can handle a heavy workload that, even with the weapon’s slower rate of fire, makes it an ideal choice for taking on larger, less maneuverable targets.'), +(10771,'Devastator \"Whirlwind\" Shotgun','Weapon','Medium','e3c66ad6-44a9-4130-92b6-5da8c70c8574','','','Manufacturer: Kastak Arms\nItem Type: Shotgun\nClass: Energy (Plasma)\n\nBattery Size: 12\nRate Of Fire: 60 rpm\nEffective Range: 20 m\n\nAttachments: Optics (S1), Barrel (S3), Underbarrel (S2)\n\nKastak Arms’ Devastator is a pump-action plasma shotgun capable of delivering sustained medium range, high-impact plasma blasts for close combat, room clearances and other combat operations. If the situation requires a high-power presence, look no further than the Devastator. This special Whirlwind edition features analogous shades of blue reminiscent of waves on a turbulent sea.'), +(10772,'ATLS Safety Orange Livery','Paints','UNDEFINED','e752fd5b-c275-471f-9a81-4de6d3c7972e','','','Ideal for bustling work sites, the Safety Orange livery brings a bright orange base and white stripes to the ATLS.'), +(10773,'Outback Legs Molten','Armor','Legs','53720e21-4f47-4cda-8fc9-12090923872b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -65 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2k µSCU\n\nThese durable, reinforced leather pants are not only practical for traversal through inhospitable territory, the metal plated boots will keep you protected along the long road ahead. The Molten version is dyed a deep red to keep you subtle, but not unsightly.'), +(10774,'Lunes (Spiral Fruit)','Cargo','Cargo','71b65393-bda1-4267-9e70-4361a259ec7a','','',NULL), +(10775,'Carryable_TBO_FL_4SCU_Commodity_Organic_MarokPearl','Cargo','Cargo','7be1ef1b-7e35-4ed8-8228-c53ba35dadab','','',NULL), +(10776,'PAB-1 Core Yellow','Armor','Torso','3e73a2a2-bba5-4483-8415-95b6643c57d3','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(10777,'Anvil Decoy Launcher','WeaponDefensive','CountermeasureLauncher','5a9e0874-ec5e-4ef2-84f0-6f8cb8444176','','','Anvil Decoy Launcher'), +(10778,'Carryable_TBO_FL_16SCU_Commodity_ProcessedGoods_Thrust','Cargo','Cargo','54dad888-be83-490a-bf14-96b557af4873','','',NULL), +(10779,'AImodule_GenATC02','AIModule','UNDEFINED','ffa40c2a-f97b-4a31-8931-400fcde38007','','',NULL), +(10780,'Seat','SeatAccess','UNDEFINED','d76b0af3-63fa-4435-b9de-1c1a4ca4dc63','','',NULL), +(10781,'DockingTube_Fuel_Ports_ANVL_Hurricane','DockingCollar','UNDEFINED','622827e6-5854-4b16-a8e4-e9a0c9537fd0','','',NULL), +(10782,'ANVL_Pisces_Thruster_Mav_Joint_Top','ManneuverThruster','JointThruster','82e7d690-4237-4af3-8c41-50efd413268b','','',NULL), +(10783,'Camion Jacket','Char_Clothing_Torso_1','UNDEFINED','08f8f4a5-ff76-4449-add2-373e36853fd6','','','Carrying Capacity: 1K µSCU\n\nCome prepared with the Camion. This button up blue jacket delivers on style with complimentary dark brown synthetic leather around the neck, shoulders, and arms. A cross-shoulder sling bag and integrated utility belt allows you to carry plenty of gear and keep it organized.'), +(10784,'Jumping Limes','Misc','Harvestable','eb1bc678-53dd-4c2d-90c5-6bfe1310fc6e','','','NDR: 09\nHEI: 06\nEffects: Dehydrating\n\nGrows on a cactus in the deserts of Yar (Centauri II). A local variant that developed naturally after terraformation was complete, the spiny fruit start off purple and turn green when they are ripe.\n\nThey acquired their name because of the ease in which they fall off the cactus and attach themselves to clothing and skin, as if they \"jumped\" there.\n\nThe leathery, barbed skin must be peeled back to reveal the juicy flesh of the interior. The taste is sweet, extremely tart and astringent.\n\nLocals warn that if you become lost in the dessert you should be careful using jumping limes for hydration as they can make you feel even more thirsty.'), +(10785,'Controller_Salvage_DRAK_Vulture','SalvageController','UNDEFINED','56157788-054f-4994-b840-062c638023f9','','',NULL), +(10786,'CF-227 Badger Repeater','Weapon','Gun','0e3f4b37-8085-4641-a360-40e4e372cd15','','','Manufacturer: Klaus & Werner\nItem Type: Laser Repeater\nSize: 2\n\nThe CF-227 Badger is Klaus & Werner’s dependable size two repeating laser. Its increased output and high rate of fire make it a solid contender in any fight.'), +(10787,'Stirling Exploration Helmet Olympian Edition','Armor','Helmet','8393d934-246c-4285-9aab-62062136eea1','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nDesigned to withstand inhospitable environments, the Stirling Exploration Suit provides a base level of protection from environmental hazards including radiation. Combining Caldera\'s advanced insulation fabrics with sophisticated polymers, the Stirling is able to safeguard the wearer whilst minimizing disruption to movement. Additionally, a self-cleaning system automatically activates after radiation exposure to expunge dangerous excess down to nominal levels. This helmet is only compatible with the Stirling Exploration Suit. The Olympian Edition melds gleaming yellows and golds with a subtle hexagonal pattern, completed with a reflective visor to create an almost luminous appearance.'), +(10788,'Pancea MedGel Canister','Container','Medical','21789f4a-ffaa-4d9c-ab24-3de6fd2880b3','','','This Pancea canister from CureLife is used to refill the MedGel supply of medical beds.'), +(10789,'Avenger Titan Ship Armor','Armor','Medium','7090c713-5e36-4150-a19b-8c4fe439be9d','','','Avenger Titan Ship Armor'), +(10790,'SHIELDS','ShieldController','UNDEFINED','27320011-9723-47f4-9d7d-ba5d93a8d349','','',NULL), +(10791,'Internal Tank','QuantumFuelTank','QuantumFuel','99544286-58d3-41d7-9aac-380a17ea4936','','',NULL), +(10792,'Tona Shoes Orange','Char_Clothing_Feet','UNDEFINED','46788831-9ec2-4bf5-9e75-0b28e80c83f2','','','Perfect for hiking or fieldwork, the Tona from R6 Pro is a low-top sneaker built out of breathable Cheofreme materials which not only provide extra protection against impacts, but keep your feet dry.'), +(10793,'M50 Murray Cup Livery','Paints','UNDEFINED','4cd1b1bf-5ea0-442c-843b-e74720e993a2','','','Slipstream into pole position with this sporty racing tint. Featuring a blue and yellow paint scheme accented by stylish chevrons, this Murray Cup themed livery highlights the sleek and piercing nature of the M50.'), +(10794,'Sabre Raven Ship Armor','Armor','Medium','f7b85e3a-86b0-485d-a35c-b41668fc88da','','','Sabre Raven Ship Armor'), +(10795,'Overlord Legs Stinger','Armor','Legs','d3b40c0e-e7b9-44b2-af5b-774df8685632','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.'), +(10796,'Ixonia Gloves Coal','Char_Clothing_Hands','UNDEFINED','17502f4f-6f15-459d-a754-13eefec83e2c','','','When you\'re preparing for the tough day ahead, don\'t leave your hands ungarded. These gloves feature built-in knuckle plates, secured to the durable synthetic leather and cotton fabric with a strong polymer-reinforced thread.'), +(10797,'KRIG_l22_AlphaWolf_Thruster_Mav_Round','ManneuverThruster','UNDEFINED','4557e4e8-714d-4b81-a16e-babc20086404','','',NULL), +(10798,'Seat','SeatAccess','UNDEFINED','40c82d59-d42a-4ecd-89e5-a96b26087ba9','','',NULL), +(10799,'Custodian \"Boneyard\" SMG','Weapon','Medium','57b40b0c-90da-40c5-ba9d-07aec1a8e595','','','Manufacturer: Kastak Arms\nItem Type: SMG\nClass: Energy (Laser)\n\nBattery Size: 60\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe Custodian SMG from Kastak Arms focuses on a high rate of fire over damage and accuracy making it an ideal choice for sweeping through tight environments and close quarters combat.'), +(10800,'Lindinium (Ore)','Cargo','Cargo','ce2e4f2c-2cbf-4236-92e6-c2999edf8b52','','',NULL), +(10801,'BlastChill','Cooler','UNDEFINED','94ea5bb5-070c-4c75-b90d-66c26c38bb2a','','','Item Type: Cooler\nManufacturer: Lightning Power Ltd. \nSize: 1\nGrade: D\nClass: Civilian\n\nThe BlastChill is a consumer-grade cooler from Lightning Power Ltd. It keeps your ship running without straining its signature, but is best known for a much mocked 2945 ad campaign that promised it was “Built to bring the chill.”'), +(10802,'Iron (Ore)','Cargo','Cargo','35ef9f0c-1b7d-4004-a8c4-474820e170ff','','',NULL), +(10803,'Door Control','Door','UNDEFINED','2d7e111c-e1a8-490b-a0ea-a493b00fbf28','','',NULL), +(10804,'OT4-RF (4x Telescopic)','WeaponAttachment','IronSight','718aca95-c774-4266-a0e2-50ba2a56088e','','','Manufacturer: Gemini \nType: Telescopic\nAttachment Point: Optic   \nMagnification: 4x\nAim Time: +25%\nSize: 2\n\nCombining a premium 4x telescopic sight with Gemini\'s innovative echoburst rangefinder, the OT4-RF model allows you to accurately gauge the distance to your target; vital for effective precision shooting. When paired with the Gemini S71 or other compatible weapon, the OT4-RF is engineered to impress in a variety of situations and engagements.'), +(10805,'M9A Cannon','Weapon','Gun','c2a8fdaa-a195-4f1d-a223-70eef526e09d','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 7\n\nStrike at the very heart of your enemies with the devastating impact of Behring\'s M9A energy autocannon. When fully charged, the massive stopping power of this laser weapon has the potential to halt even capital ships in their tracks.'), +(10806,'Cutter Frontier Fighters Camo Livery','Paints','UNDEFINED','5413291f-f462-4e0c-b237-6c067468affa','','','Be ready to battle in the untamed wilds with this green camo livery featuring the logo of the Frontier Fighters vigilante group.'), +(10807,'Food_bowl_chowder_01_a','Food','Consumable','8535ed63-0214-4ff2-85c7-d82d4980c2d2','','',NULL), +(10808,'Agrodolce Delight Kacho','Food','Box','91914070-df29-4be8-a6bb-0710532c6a08','','','NDR: 30\nEffects: None\n\nBig Benny\'s kacho is based on traditional family recipes straight from Corel, combining springy noodles and a rich, warm broth to create a taste enjoyed the \'verse over. The Agrodolce Delight flavor has strong blast of sweet and sour vinegar flavor that is sure to have you coming back for more.'), +(10809,'Door_NoRoomConnector_Syulen_Ground_FuelPort','Door','UNDEFINED','78304e9f-d01a-49b8-89ad-6839b73276ad','','',NULL), +(10810,'SHLD_GODI_S04_Javelin_SCItem','Shield','UNDEFINED','9b94c0fa-476b-42bd-bebd-b1d633f149ca','','',NULL), +(10811,'Weapon_Rack_1_VOLT_LMG_Uncommon_001','Usable','UNDEFINED','927ea71a-88b8-4aaf-abe2-d56bffd046fa','','',NULL), +(10812,'Calico Helmet Tactical','Armor','Helmet','69e5c3b0-90d7-4269-a664-553169988519','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -39 / 69 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDesigned to be an EVA-compliant light combat suit, the Calico set is the perfect armor suit for infiltrators, snipers, thieves, basically anyone who likes to avoid kicking in doors. Built out of a combination of PAB3 armor and a custom helmet, it can help you weather some incoming fire without slowing you down.'), +(10813,'AEGS_Door_Decal_Brig_SecurityRm','Decal','DoorPart','625a1f6d-af6c-4119-bda3-9b1a0bc26137','','',NULL), +(10814,'Falston Jumpsuit \"Sakura Sun Edition\"','Char_Clothing_Torso_1','UNDEFINED','8a77dc2b-2bab-4245-960f-4a2dad5c419d','','','Carrying Capacity: 1K µSCU\n\nThe Falston jumpsuit has a high collar to guard against the elements, triple-reinforced stitching, and an extra soft interior lining because everyone deserves a bit of comfort.'), +(10815,'Palatino Legs Sunstone','Armor','Legs','5d00db0e-c92b-4379-ab41-79708c02d7dd','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower.'), +(10816,'TRGT. STATUS','Seat','UNDEFINED','24c57dac-759d-4bd6-bef6-72f422ffbac9','','',NULL), +(10817,'Internal Tank','QuantumFuelTank','QuantumFuel','5b17582f-2b2a-4493-8df1-a0534405f760','','',NULL), +(10818,'Seat','Usable','UNDEFINED','39372fe0-cdf3-4932-9fb0-fbc4877aeec5','','',NULL), +(10819,'Hephaestanite','Cargo','Cargo','6b2b370c-1005-4a1e-8e45-b9f471f678d5','','',NULL), +(10820,'Door Control','ControlPanel','DoorPart','a1fd39ec-9386-4f15-ad88-e10bf8b5e4dc','','',NULL), +(10821,'Access','SeatAccess','UNDEFINED','2d504f28-4bed-4260-aa21-e55e6e1383d1','','',NULL), +(10822,'Door Control','Door','UNDEFINED','14f07f14-bd73-4e7b-af48-7c5b27fa51a5','','',NULL), +(10823,'Hull C Horizon Livery','Paints','UNDEFINED','631770c0-a3f0-4502-bb69-e806eb8dd2ae','','','Even a hard working spacecraft deserves to look its best. The Hull C Horizon Livery offers a stylish two-tone grey-and-white color scheme that\'s ideal for turning heads at the spaceport.'), +(10824,'GAMA_Syulen_Thruster_Mav_Top','ManneuverThruster','FlexThruster','8cad3e69-09ab-4eb2-aec6-157e352d01a5','','',NULL), +(10825,'Mustang IceBreak Livery','Paints','UNDEFINED','4ca56399-3457-47e8-86d5-e83106d01af2','','','Equip your Mustang with a paint scheme cooler than a snow storm. The IceBreak livery mixes crisp, cool white with a frostbitten blue for an exciting look suitable for any season.'), +(10826,'AEGS_Hammerhead_Thruster_Mav_Fixed_Top','ManneuverThruster','FlexThruster','0cbf9f9a-84c2-4f5b-bb82-bd3b80fc13be','','',NULL), +(10827,'Seat','SeatAccess','UNDEFINED','31895c4b-bb65-417b-8273-ac4e9178f689','','',NULL), +(10828,'LH86 \"Boneyard\" Pistol','Weapon','Small','c4289e35-b35d-4357-9cc9-c290e566b388','','','Manufacturer: Gemini \nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 25\nRate Of Fire: 1200 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe LH86 from Gemini is a compact kinetic handgun designed for personal defense and close-quarter combat. A keen eye on ergonomics and balance coupled with hardy construction makes this pistol a natural fit for any shooter in any number of hostile conditions. The LH86 also comes with Tritium low-light sight and a twenty-five round magazine.'), +(10829,'stand_shop_large_b_Cooler','ShopDisplay','UNDEFINED','c5d17165-b13a-4729-a00f-c0dacc852107','','',NULL), +(10830,'Aegis Eclipse - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','5f2b344a-89b5-43af-a2ae-269a2dd5150f','','','Aegis Eclipse - Decoy Launcher'), +(10831,'Door Control','Door','UNDEFINED','fba99136-43e9-4907-a4f4-71e6ceff1219','','',NULL), +(10832,'Salvation','SeatAccess','UNDEFINED','6f5b75d0-b2b6-4173-88c9-24feb48b8158','','',NULL), +(10833,'Door Control','Door','UNDEFINED','76730ed4-fbeb-4584-a7d4-0b55be50b422','','',NULL), +(10834,'TRGT. STATUS','Seat','UNDEFINED','12516294-990d-4d00-87a0-e5280e5fef26','','',NULL), +(10835,'Grin_MDC_Door_Exterior_Decal','Decal','DoorPart','14990696-0d57-4694-a960-39a008301135','','',NULL), +(10836,'Seat','Usable','UNDEFINED','05a8c458-a5a8-4260-acb2-dea20159dfd5','','',NULL), +(10837,'SunFlare','PowerPlant','Power','8e828c4f-b435-4db5-aab4-318dead98403','','','Item Type: Power Plant\nManufacturer: ACOM\nSize: 1\nGrade: C\nClass: Competition\n\nHarness the power of a star with this high performance power plant from ACOM. Ideal for racers and those who seek speed.'), +(10838,'Maze','Cargo','Small','c731e598-8691-4ea9-a4ed-8f86740e094f','','','Street name for a tranquilizer and knock-out hallucinogen that\'s Tevarin in origin. Dosing up is like taking a massive journey into your own mind. To the outside world, you’re nearly comatose, but to you, it’s a wild trip. A handful of religions have been started after a user took a trip into the maze. Aside from the toxic element, there’s a chance you won’t come down from the high. They call this ‘getting disconnected.’ Users stay locked in their own head until their brain decays. Maze was originally used as a near religious experience for Tevarin warriors to find their path in life. Since the fall of the Tevarin empire, it\'s become corrupted into a purely recreational drug. The Tevarin who once treated this drug with reverence and ritual, now make boatloads of credits selling it to anyone who wants to risk a potentially dangerous trip.'), +(10839,'m_human_mannequin_ship_jacker','ShopDisplay','UNDEFINED','8ab1eb6a-8278-40c6-a0a4-c816e9c2c758','','',NULL), +(10840,'ClipVest Work Harness','Char_Clothing_Torso_1','UNDEFINED','f6e31bbf-ef09-40ec-b0f2-201dfe1f9847','','','Carrying Capacity: 2K µSCU\n\nStegman\'s ClipVest is a multi-purpose work harness that keeps your tools handy when and where you need them. Built from industrial strength materials, this harness offers a back piece to help alleviate strain and provide counterbalance.'), +(10841,'Spirit Valor Livery','Paints','UNDEFINED','6a9b1dc3-a073-44a8-afad-17f3d641a0e4','','','Where ever your mission takes you, this livery featuring dark grey with sky blue highlights and white trim will make sure that your Crusader Spirit looks the part.'), +(10842,'Ati Jacket Imperial','Char_Clothing_Torso_1','UNDEFINED','e1ea77e9-23d5-42fe-aef4-b088ad3cdbf6','','','Carrying Capacity: 2K µSCU\n\nFiore\'s is a modern update of traditional Earth design. Slim tailoring, a high collar, and striking asymmetrical design make this overcoat a must-have item for any wardrobe.'), +(10843,'TRGT. STATUS','Seat','UNDEFINED','c3809be1-b37c-4ff7-846e-689eb252eee5','','',NULL), +(10844,'DRAK_Vulture_Component_Battery','Player','UNDEFINED','5a816b66-5bf4-42b5-846f-1fb467504df0','','',NULL), +(10845,'Falston Jumpsuit \"Crusader Edition\"','Char_Clothing_Torso_1','UNDEFINED','0d4d5f99-6258-4f27-bf5d-f787bf23b379','','','Carrying Capacity: 1K µSCU\n\nThe Falston jumpsuit has a high collar to guard against the elements, triple-reinforced stitching, and an extra soft interior lining because everyone deserves a bit of comfort.'), +(10846,'HRST_LaserRepeater_Barrel_S4','WeaponAttachment','Barrel','fadfa113-d0c5-4444-8848-dd8490f5878b','','',NULL), +(10847,'Copper (Ore)','Cargo','Cargo','a18794a7-9320-4d4b-a684-7dd8565f8d53','','',NULL), +(10848,'Sunset Berries','Cargo','Cargo','88663c6c-4340-45e9-8822-972a2e6b17c2','','',NULL), +(10849,'DRAK_Dragonfly_SCItem_Dashboard_Pilot_YellowJacket','SeatDashboard','UNDEFINED','dac370ec-c8b9-4a14-b863-dc2628d72715','','',NULL), +(10850,'Door Control','Door','UNDEFINED','108727ff-ae76-466b-8b63-7d99d1df22c3','','',NULL), +(10851,'Locker_Suit_RSI_Polaris_XO','Usable','UNDEFINED','e226c8c7-c2c6-450d-b903-7028c9ccd3eb','','',NULL), +(10852,'Vulture Oriole Livery','Paints','UNDEFINED','9103a4a7-4ab1-4a18-aec0-e5442f65766d','','','The Oriole livery offers Vulture captains a no-nonsense matte grey toned hull patterned after those operated by military organizations. Understated orange highlights mark the craft\'s salvage-and-recovery role.'), +(10853,'Door','Door','UNDEFINED','338605d5-13b7-4faa-be30-309b73f83730','','',NULL), +(10854,'ODOK Jacket','Char_Clothing_Torso_1','UNDEFINED','c565b33e-49d4-4bb9-8b60-87576d937cef','','','Carrying Capacity: 1K µSCU\n\nA plain jacket covered by a thick apron, shoulder pauldrons, dust flaps, and a reinforced metal collar complete with tether.\n\n\nWomen\'s sizes currently not available.'), +(10855,'ORC-mkV Arms Yellow','Armor','Arms','72b8d295-fcbd-45ae-a155-389ecdae8c3c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(10856,'screen_4x3_reclaimer_datapad','Display','UNDEFINED','a0a4d1d4-5d38-47ef-ae4a-8e3171e70e82','','',NULL), +(10857,'TRGT. STATUS','Seat','UNDEFINED','420b6d9c-2abb-48bc-87b7-88f2bfb8ba0a','','',NULL), +(10858,'E\'tam','Misc','Utility','7b3d4cf2-3313-4472-9180-8f5896d411d6','','','Created from the leaves of indigenous plants, E\'tam is an organic hallucinogenic drug used by the Xi\'an to slow body function and focus in order to achieve a deeper meditative state. For Humans, the effects are much more severe. E\'tam causes hyper awareness, cognitive enhancement and improved focus. Users can be so engrossed in tasks that they neglect to eat, sleep or take care of other body functions.'), +(10859,'DRAK_Herald_Thruster_Main','MainThruster','FixedThruster','ad0de399-7fea-421d-ba3d-104a286b0f1d','','',NULL), +(10860,'Carryable_2H_FL_crate_weapon_3_075x045x00375_a','Misc','UNDEFINED','a455a4bf-bbf0-4e9e-bfb4-f8776590d54d','','',NULL), +(10861,'RSI_Salvation_Thruster_Main_Small_Bottom_Left','MainThruster','FixedThruster','8a15be85-cf37-4987-adf5-3f10984ff58a','','',NULL), +(10862,'Door Control','ControlPanel','DoorPart','eaad2d7d-52de-4371-8ce1-64a803694742','','',NULL), +(10863,'Theta Pro LL (8x Telescopic)','WeaponAttachment','IronSight','89ed520d-5514-49a5-bd11-2620f725b509','','','Manufacturer: NV-TAC \nType: Telescopic\nAttachment Point: Optic \nMagnification: 8x\nAim Time: +0%\nSize: 3\n\nCarefully crafted and calibrated, the Theta Pro delivers precise and effective long distance combat engagement capabilities thanks to its powerful 8x telescopic sight. This version of the scope includes low-light functionality suitable for operations in dim environments.'), +(10864,'ESPR_BallisticCannon_PowerArray_S3','WeaponAttachment','PowerArray','aba67d74-1e55-4248-9c7a-6c3cb960b85e','','',NULL), +(10865,'Lynx Core Orange','Armor','Torso','42977ad5-7264-43e1-98e3-3124ce3901ca','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(10866,'Door Control','Door','UNDEFINED','389feee9-32d1-4281-9788-9d5ca21d4cf3','','',NULL), +(10867,'Personal Storage','Cargo','UNDEFINED','d156ea6d-9a13-4f59-9640-40713c925a4a','','',NULL), +(10868,'Testudo Helmet Disrupt Camo','Armor','Helmet','3d103e2c-2322-4647-9c82-b2f7ebc9dea1','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nKeep your eyes on the prize and your head protected with the Testudo helmet. It features a wide faceplate and a durable outer shell that protrudes above the forehead in a way specifically designed to absorb and efficiently disperse the energy of impacts.\n\nThe Disrupt Camo edition utilizes carbon fiber grays and blacks printed in a disruptive pattern to keep your enemies guessing.'), +(10869,'UEE 6th Platoon Medal (Worn)','Misc','Trophy','adc5a48b-ff05-4a1e-8f13-cec792ed8a87','','','A medal given to members of the UEE Marines 6th Platoon for distinguished service. The esteemed 6th Platoon \'Phantoms\' have received this honor on numerous occasions, including for operations during the Second Tevarin War, on the Vanduul front and for rescuing a UEE survey team taken hostage by the Outsiders on Leir III. The discoloration of the ribbon and corroded metal have left this medal in worn condition.'), +(10870,'WhiteRose','PowerPlant','Power','a5518651-cd87-490d-98ee-dccba428fdca','','','Item Type: Power Plant\nManufacturer: Sakura Sun\nSize: 1\nGrade: A\nClass: Civilian\n\nPull incredible performance from the WhiteRose. This small power plant from Sakura Sun shines when generating the kind of power that leaves the other small power plants in its wake.'), +(10871,'ToolSafe Vest','Char_Clothing_Torso_1','UNDEFINED','245a0669-f18b-4b30-8fdc-63e2522b8649','','','Carrying Capacity: 10000 µSCU\n\nThe ToolSafe Vest is constructed with thick materials accentuated by high-visibility straps to ensure worker safety. The inclusion of numerous pouches gives this jacket a generous amount of storage to make it a staple of worksites everywhere.'), +(10872,'Ambrus Suit','Char_Clothing_Torso_1','UNDEFINED','533c9f98-0bed-4310-9ffc-ec708e6ccd0c','','','MuyMuy\'s Ambrus suit was expertly crafted by artisans on Saisei from natural brocade silk and worsted ma\'xy.un wool. Featuring bold coloration and a relaxed fit, it lets the wearer maintain comfort without sacrificing style.'), +(10873,'Beacon Undersuit Woodland','Armor','Undersuit','889ada90-0990-4d77-9882-d63d046e9d73','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRSI\'s Beacon undersuit is a general use utility designed to provide total protection against environments and vacuum. Built out of a durable but flexible polymers, the Beacon provides a wide freedom of motion for a variety of body types.'), +(10874,'Concept Shirt Tan','Char_Clothing_Torso_0','UNDEFINED','3293c787-c3d2-41d9-9ecf-07bfd16621f9','','','This crisp, versatile button-front shirt from Fiore is made with cutting edge stain resistant and wrinkle-free technology, guaranteeing that you stay professional at all times.'), +(10875,'TCS-4 Undersuit Red Alert','Armor','Undersuit','a32d3418-e09a-4715-90fd-80ea7e521070','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThis comprehensive Tactical Combat Suit provides a complete sealed suit against vacuum, free range of motion, and interfaces seamlessly with compatible armor systems.'), +(10876,'Carrion Helmet Maniac','Armor','Helmet','148e90e8-938f-4418-b07d-8e0e94b3df06','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nForged from scavenged metals and ragged clothes, the Carrion armor is a crude concoction of repurposed materials that demonstrates you\'ll do anything it takes to survive. The helmet has an opaque faceplate that allows the wearer to see clearly while obscuring their visage.\n\nThe Maniac variant comes with a mid-length cape and integrates bones prominently into several pieces.'), +(10877,'AEGS_Retaliator_Door_Cap_Front','Misc','UNDEFINED','bab56126-c1ae-4c0d-98ba-dd8d93ee6092','','',NULL), +(10878,'Seat','SeatAccess','UNDEFINED','5d8d3758-5765-4dc7-b332-1264242b888b','','',NULL), +(10879,'Balor HCH Helmet Dark Green','Armor','Helmet','229cab57-75ea-49b2-b637-ebc7ccf140c4','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. Visor is AR crosshair compatible.'), +(10880,'Seat','Usable','UNDEFINED','c8969807-d46c-4d51-9855-beef44364c20','','',NULL), +(10881,'Green Blend Smoothie','Drink','Bottle','53f383f7-2132-4038-b4c3-6d88b95dddfc','','','HEI: 35\nNDR: 14\nEffects: Immune Boosting\n\nA smoothie made with a fresh blend of healthy greens.'), +(10882,'RSI_Polaris_SeatAccess_Tractor_Console','SeatAccess','UNDEFINED','acf568cd-d2dc-4dda-8757-6de1099ff098','','',NULL), +(10883,'Palatino Arms Daystar','Armor','Arms','9dc4078f-9598-4453-92e8-d479acadfca8','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower.'), +(10884,'AEGS_Redeemer_Wardrobe_Decal_01','Decal','DoorPart','eff4bb07-dd9e-4fc5-8ae1-c832dd32b5fc','','',NULL), +(10885,'Cordimon Jacket Imperial','Char_Clothing_Torso_1','UNDEFINED','a6a304e9-d2ea-4b5c-a0d4-3da1a375795c','','','Carrying Capacity: 3K µSCU\n\nStegman\'s classic worker\'s jacket has been a staple of job sites for over seventy years. This duotone pattern is cut from the toughest material meaning you can wear it anywhere, anytime. It may not be armor, but it damn sure feels like it.'), +(10886,'Nox Turbocharged Livery','Paints','UNDEFINED','46541353-3aba-4c0c-bccf-1ded19f98510','','','The Turbocharged is a distinct, purple racing livery for the Nox that will make you stand out from the rest of the field.'), +(10887,'display_ship_components_03x0075x0275_a_shields','ShopDisplay','UNDEFINED','4c6abaff-54b6-4de6-ad4f-f7c7a440b74b','','',NULL), +(10888,'SCItemDisplayScreen_ScreenSize_W64_H36_H74','Display','Default','c4a50c4c-9c93-48a7-8a43-989fc342cbdf','','',NULL), +(10889,'display_components_pallet_250x125x025_b_quantum','ShopDisplay','UNDEFINED','d9b8df12-3546-4d34-b18d-cabe389a1895','','',NULL), +(10890,'S-38 \"Scorched\" Pistol','Weapon','Small','5c3e378d-69b1-47dd-86ef-4a154a9c84c2','','','Manufacturer: Behring\nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 20\nRate Of Fire: 450 rpm\nEffective Range: 25 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThanks to a streamlined design and a lightweight polymer frame that helps to minimize recoil, it\'s easy to see why the versatile and dependable S-38 from Behring has become a trusted sidearm across the Empire for both citizens and law enforcement officers. The Scorched edition features a unique flame patina.'), +(10891,'IndVest Jacket','Char_Clothing_Torso_1','UNDEFINED','d9e81a07-af5e-4519-89fc-9a555991f4d1','','','Carrying Capacity: 5K µSCU\n\nKeep your tools within easy reach with Stegman\'s IndVest. Made from industrial strength materials, this is a rare jacket that\'s both stylish and sensible.'), +(10892,'Re-Authorizer','FPS_Consumable','Hacking','1bdf2214-6e54-44f7-87bd-eef795513078','','','Released by Lortell Computing as a way to gain access to a system with a lost or forgotten password, the slow but reliable Re-Authorizer cryptokey is considered an affordable option for people who want to attempt to repair their system themselves.'), +(10893,'Guri Pants Lime','Char_Clothing_Legs','UNDEFINED','335cb29d-af24-46f0-bb07-f65286757e8b','','','Carrying Capacity: 1K µSCU\n\nStep up the style with these bold pants from City Lights. Six zipper pockets and a slanted fly will bring a bit of attitude to your wardrobe.\n\nWomen\'s sizes currently out of stock.'), +(10894,'Li-Tok Boots Olive','Char_Clothing_Feet','UNDEFINED','bf08ee5b-9277-4f6d-a288-6770c32a2d7a','','','Stylish yet rugged, NorthStar\'s Li-Tok boots are made from a composite nylon fabric, vulcanized rubber grips that hold fast to a variety of surfaces, and reinforced ankle support making these perfect for hanging out or on the job.\n\nWomen\'s sizes currently out of stock.'), +(10895,'Internal Tank','FuelTank','Fuel','4f50909f-e812-0aef-b2d7-9e323c15e299','','',NULL), +(10896,'IFR-W57 Turret','TurretBase','MannedTurret','a1a6eaa7-b0d6-4afe-9b99-07a9d57d0e52','','','Item Type: Turret\nManufacturer: Aegis Dynamics\nSize: 7\n\nThis manned turret, designed by Aegis to be equipped with two size 5 weapons, is bespoke to the Idris frigate.'), +(10897,'Door Control','Door','UNDEFINED','b85331b6-bcae-424b-a64b-9a2191bb98b5','','',NULL), +(10898,'AEGS_Reclaimer_Thruster_Main','MainThruster','FixedThruster','45e0a42f-092a-41c8-a95e-a7a05c1b9735','','',NULL), +(10899,'Salvaged Skull 1 SCU Container','InventoryContainer','Cargo','f034b39f-4d86-4dbc-9d9a-4544041dde08','','','It may be used to transport “goods”, but this battered and scarred 1 SCU container is anything but thanks to its vivid skull markings.'), +(10900,'VNCL_Scythe_RADR_Display','Display','UNDEFINED','c6840520-fe9f-4213-ab18-9606749297f2','','',NULL), +(10901,'RSI_Meteor_Thruster_Main_Right','MainThruster','FixedThruster','00651c34-c0d0-47be-bd0a-3f3e03ff4fda','','',NULL), +(10902,'Guardian Black Magic Livery','Paints','UNDEFINED','660df6a1-e7dd-417a-b4a5-90b81f41b453','','','The Black Magic livery for the Guardian mixes a macabre black with glowing orange highlights for a look inspired by the sinister spirit of Day of the Vara.'), +(10903,'Access','SeatAccess','UNDEFINED','630ec417-5ab8-4a35-95df-d552c4f981b6','','',NULL), +(10904,'Fury Sunrise Livery','Paints','UNDEFINED','780cc9de-e4ec-44ec-ad98-f8d9302351c2','','','Primarily white with red accents streaking across the ship, the design of the Sunrise livery gives the Fury an exciting, aerodynamic look.'), +(10905,'INTK_AEGS_Vanguard_Sentinel','FuelIntake','Fuel','19a90c48-d5fd-4394-9121-5885f2b0cfe9','','',NULL), +(10906,'Palatino Core Sunstone','Armor','Torso','89c91b5c-3006-4777-a870-9059b4f3efb2','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: All\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower.'), +(10907,'Iron (Ore)','Cargo','Cargo','46e7bd2a-42ea-41c7-bcf9-8f1eae8cb52a','','',NULL), +(10908,'ORIG_100i_Thruster_Main_Right','MainThruster','FixedThruster','0e954da4-a096-4a86-bc48-fabae1152a92','','',NULL), +(10909,'Ship Showdown \'52 Mercury Coin','Misc','Utility','29f6bf04-c2d1-4006-a23a-ac7f1a4ae254','','','The Mercury Star Runner delivered a strong showing in the 2952 Ship Showdown with its second place finish. Ringed in blue, this coin commemorates the iconic courier ship with its image on one side and the Crusader Industries logo on the other.'), +(10910,'UEE 6th Platoon Medal (Damaged)','Misc','Trophy','69ec5112-0ce4-4fc2-9b41-c6884cf9b15d','','','A medal given to members of the UEE Marines 6th Platoon for distinguished service. The esteemed 6th Platoon \'Phantoms\' have received this honor on numerous occasions, including for operations during the Second Tevarin War, on the Vanduul front and for rescuing a UEE survey team taken hostage by the Outsiders on Leir III. The discoloration of the ribbon and broken, corroded metal have left this medal in damaged condition.'), +(10911,'Outback Arms Grime Blue','Armor','Arms','fcd41c68-367c-40c7-86c4-712786bb73a6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -65 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nSend a statement with thick leather paired with metal plated cuffs, pauldrons and spike-backed gloves. The Grime version is dyed a dusky blue to keep you subtle, but not unsightly.'), +(10912,'Colonialism_Outpost_RN_Comms_Mast','CommsController','UNDEFINED','3d0dc49d-c08a-4452-a87b-2c44294d4b7d','','',NULL), +(10913,'ClipVest Work Harness Imperial','Char_Clothing_Torso_1','UNDEFINED','74186540-75f1-422a-a05f-55ce7fa38f79','','','Carrying Capacity: 2K µSCU\n\nStegman\'s ClipVest is a multi-purpose work harness that keeps your tools handy when and where you need them. Built from industrial strength materials, this harness offers a back piece to help alleviate strain and provide counterbalance.'), +(10914,'Nomad Jackal Livery','Paints','UNDEFINED','934be226-4f96-4d6a-a84d-97750e6f98d5','','','Discreetly roam the stars with this custom Nomad livery featuring a jet black paint scheme with red accents.'), +(10915,'Inquisitor Core Dark Green','Armor','Torso','7b756dc5-ad76-47e2-9e48-d398d6f25827','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(10916,'Vagabond Jacket','Char_Clothing_Torso_1','UNDEFINED','b40e52c5-d3b4-495e-b8d5-f5e0428c5a5d','','','Carrying Capacity: 2K µSCU \n\nWhen you need to move like your life depends on it. This lightweight layered jacket-and-poncho combination won\'t tie you up when things get tight. Finished with a hooded cowl, cross straps, and kit-webbing, the Vagabond is ready for whatever your day may have in store.'), +(10917,'FBL-8a Arms Righteous','Armor','Arms','91fe75da-ee46-47f7-9968-26acbedab5d1','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBased on CDS\' FBL-8a combat armor, this set has been modified from its original form. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible.'), +(10918,'CRUS_Starlifter_Door_Decal_Cooler_A','Decal','DoorPart','cddbc63f-b8c7-4d80-a7cb-fb67a246ab3e','','',NULL), +(10919,'Fizzz Soursop','Drink','Can','984ec579-deb1-4c68-8bde-0cb0e995b8f1','','','HEI: 16\nEffects: Energizing, Hyper-Metabolic\n\nA refreshing burst of fizzzy soursop flavor!'), +(10920,'Door Control','Door','UNDEFINED','60f0922d-aa4c-40c0-b736-1833a6d2b8e0','','',NULL), +(10921,'Jacopo Monocle','Char_Accessory_Eyes','UNDEFINED','f9c45e20-1522-4f87-9f9c-932d089514e0','','','As part of their Dafne collection, Derion is proud to present the Jacopo monocle. This diamond-laminate accessory features a tungsten chain and features the latest upgradable optiVis interface for unmatched comfort.'), +(10922,'Paint_Gladius_Hurston','Paints','UNDEFINED','0f242cc7-718e-4d8e-8e9e-19858773df17','','',NULL), +(10923,'Seat','Usable','UNDEFINED','df2e23e8-1dca-405e-a5c1-37e7895767fb','','',NULL), +(10924,'Turret','Turret','GunTurret','b13be22c-06a1-477c-b550-1139a0b51607','','','Multitask on the battlefield with this remote turret system. Featuring precise controls and a wide field of fire, the turret allows pilots to add combat support to their resume.'), +(10925,'KRIG_l21_Wolf_Thruster_Mav_Round','ManneuverThruster','UNDEFINED','24a986e8-7843-4388-bfc6-536b6dd7d66d','','',NULL), +(10926,'AEGS_Door_Decal_Escapepods_01','Decal','DoorPart','ce771e5c-8ed6-4f86-975a-5c762eb94a34','','',NULL), +(10927,'screen_4x3_1_0018x00135_a','Display','UNDEFINED','6c5e5afe-635e-4bc5-ba66-27fe09105bb7','','',NULL), +(10928,'Seat','Usable','UNDEFINED','9c04d786-c757-4fcd-a431-3e786d3c8a46','','',NULL), +(10929,'Beacon Undersuit','Armor','Undersuit','1d1afe42-39a6-46cb-b8b5-a60a8eb66f74','','',NULL), +(10930,'Perseus Resilient Livery','Paints','UNDEFINED','dced07ce-cb72-4cad-865a-0e4a6bdf64c1','','','The Resilient livery for the Perseus elegantly mixes grey and blue with red highlights.'), +(10931,'Flight Blade','FlightController','UNDEFINED','d7236108-290f-4bde-ac25-0fee2bae7334','','',NULL), +(10932,'ORIG_600i_Dashboard_Bridge_Left','SeatDashboard','UNDEFINED','29fd47f9-4098-4317-8dc2-85507b3920cf','','',NULL), +(10933,'Mixed Mining','Cargo','Cargo','16500844-88c6-4837-85e9-4328028a1b4d','','',NULL), +(10934,'Paint_300_SeatTrim_GlossBlue','Misc','UNDEFINED','064dd7d3-bf85-4cc7-9fc9-e67596753b5a','','',NULL), +(10935,'Headhunter Head Lamp','Misc','UNDEFINED','f6b4c6f1-5e64-4775-8c07-469fc9c95cbe','','','Light your way with this reproduction of the iconic Headhunter seal of authority. Crafted at the promotion of a new Chief, this lamp is constructed using four skulls, one provided by each of the Chief\'s four Counselors as a sign of their loyalty, and serves as a symbol of the Chief\'s new authority.'), +(10936,'Door Control','Door','UNDEFINED','6f142fe4-4cf8-4eda-b378-04217191200d','','',NULL), +(10937,'Weapon_Rack_RSI_Ursa_Rover_2_Slots','Usable','UNDEFINED','9c0fe6a2-62d2-4566-8450-aa6d792e131c','','',NULL), +(10938,'Door Control','ControlPanel','DoorPart','37a1fc8d-cd39-49a8-b37f-541b0d234226','','',NULL), +(10939,'Seat','Usable','UNDEFINED','73ccdef0-d6ba-4e6e-a9db-0a0510601f68','','',NULL), +(10940,'Njakte Knife','Weapon','Knife','c5f73e29-47ab-49dd-a571-9d3280d938c8','','','Manufacturer: Banu\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nBanu engineering and ingenuity combine in the Njakte knife. Its distinct curved blade and serrated edge is rust resistant and remains ultra-sharp even after extensive use thanks to a proprietary metal alloy that\'s a trade secret of the souli that manufacturers it. The intricately detailed handle gives it a distinctly Banu visual style and provides texture to ensure a great grip.'), +(10941,'Venture Undersuit Seagreen/Black','Armor','Undersuit','019f9e2f-9205-47a6-ab24-5feefc38c4a6','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(10942,'ADP-mk4 Legs Big Boss','Armor','Legs','3b8cafc9-822e-456a-886b-5f0bfc3a509b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhen there\'s a difficult job at hand, you want to ensure that you can see it through to the end. Clark Defense Systems\' ADP-mk4 heavy armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers.'), +(10943,'Small Container','Container','UNDEFINED','eb935401-8c7c-4291-8d68-e8d70efedf23','','','A small container used to hold various items.'), +(10944,'Foundation Pants (Modified)','Char_Clothing_Legs','UNDEFINED','a21e7b95-f7f1-4634-9d45-348edfda3d1a','','','Carrying Capacity: 1K µSCU\n\nThis version of DMC\'s Foundation pants has been modified from its original form. DMC\'s Foundation line is just that; the foundation for your work wear. Featuring a simple, elegant cut with easy-access pockets, the Foundation is both professional and functional.'), +(10945,'Door','Door','UNDEFINED','903c62b3-ddcf-46e5-b279-b24345b1425d','','',NULL), +(10946,'Dolivine','Misc','Harvestable','20094ded-ad04-46a3-b734-9e37aa3154b3','','','A dull green gemstone that is used decoratively but also can be used for industrial purposes thanks to its resistance to weathering and high density.'), +(10947,'tool_screwdriver_2_a','Misc','UNDEFINED','36f87f92-e732-4d4c-af32-49092eaa68ab','','',NULL), +(10948,'Table_6_Seat_ANVL_Carrack','Usable','UNDEFINED','8f405cbd-a030-4b6c-bf5d-7fd4f9e7a830','','',NULL), +(10949,'Wooden Rooster Charm (Medium)','Misc','UNDEFINED','0335bfc2-2613-4e1c-84e6-44acb20a3f07','','','Give the gift of good fortune and prosperity with this charm, handcarved by frontier settlers in honor of the Year of the Rooster. This thoughtful gift is crafted from wood to represent one\'s efforts to put down roots in a new world while this particular rooster design, larger than most of its counterparts, represents courage and confidence.'), +(10950,'VNCL_Scythe_Thruster_Aux_Joint','ManneuverThruster','JointThruster','c4a0512b-d919-4d5f-8929-4ae73fd97d88','','',NULL), +(10951,'Saldynium (Ore)','Cargo','Cargo','ca2d525e-541f-4a93-950a-d17efaed3244','','','A rare metal that has traditionally been extremely difficult to find in large quantities owing to the particular environmental requirements for its formation. It is sought after for its use in the production of high-powered lasers. It also shows some antimicrobial properties though its scarcity has seen it used less for medical purposes.'), +(10952,'Vivant Shoes Grey','Char_Clothing_Feet','UNDEFINED','45985c07-701e-4f41-8602-da2c7ad8fba4','','','Slip into style and comfort with the Vivant shoes from Hawksworth\'s. These synthetic leather loafers feature an accentuated cap toe, metallic inlay atop the vamp, and a lightweight yet durable outsole made from a unique blend of rubber nanocomposites.'), +(10953,'RS1 Odysey Spacesuits','Cargo','Cargo','e4ac7ad6-0a03-4105-b10d-7a13d1b569d2','','',NULL), +(10954,'Morningstar Helmet Neon Pink','Armor','Helmet','78835c61-f743-4239-b560-6e33a1e93569','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(10955,'TRGT. STATUS','Seat','UNDEFINED','774bd021-1710-4bf9-8110-c1a6f3cf4fe6','','',NULL), +(10956,'Construction Rubble','Cargo','Cargo','4394d5c0-bf17-4247-9c64-55ea076adedd','','','Can be processed at refineries into Construction Material.'), +(10957,'Door Control','Door','UNDEFINED','7e2892eb-82d7-4d81-8711-a9918aa7a957','','',NULL), +(10958,'Internal Tank','FuelTank','Fuel','8e00f476-2c69-4edb-a792-864ed8132324','','',NULL), +(10959,'TrueDef-Pro Core Black/Silver','Armor','Torso','8b70a1a7-d685-4645-b05e-f3baa49e6e66','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(10960,'Chill-Max','Cooler','UNDEFINED','98180be7-076c-4621-994a-284d1c17a366','','','Item Type: Cooler\nManufacturer: Juno Starwerk\nSize: 3\nGrade: A \nClass: Industrial\n\nThe Chill-Max name is as straightforward as the design on this Juno Starwerk cooler. This highly-rated industrial cooler has been a favorite of haulers for centuries.'), +(10961,'DRAK_Herald_SeatAccess_Ship_Enter','SeatAccess','UNDEFINED','febd8557-9c16-4e4c-a41c-db794d4be6bb','','',NULL), +(10962,'Cup','Drink','UNDEFINED','be7e9a47-3378-415e-ac2e-70769989da99','','','A drinking vessel.'), +(10963,'WowBlast Desperado Toy Pistol Magazine (10 cap)','WeaponAttachment','Magazine','2a509aec-7439-4416-881d-59d30568ff6c','','','Item Type: Magazine \nCapacity: 10\n\nThis magazine for the WowBlast Desperado holds ten darts.'), +(10964,'Calico Arms Desert','Armor','Arms','962f0e10-5d39-43c9-8afe-ee7429699b27','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -39 / 69 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDesigned to be an EVA-compliant light combat suit, the Calico set is the perfect armor suit for infiltrators, snipers, thieves, basically anyone who likes to avoid kicking in doors. Built out of a combination of PAB3 armor and a custom helmet, it can help you weather some incoming fire without slowing you down.'), +(10965,'un_jar_glass_1_berries_b','Misc','UNDEFINED','a1264f81-2e8f-4c18-a61f-1628d591e951','','',NULL), +(10966,'AEGS_Door_Decal_Escapepods_Turrets','Decal','DoorPart','b058568d-af46-48eb-8cdf-495b9242851a','','',NULL), +(10967,'FieldLite Flashlight Red','WeaponAttachment','BottomAttachment','d7d93249-f0ef-4b50-803b-781a904a2cef','','','Manufacturer: NV-TAC\nType: Flashlight\nAttachment Point: Underbarrel\nSize: 1\n\nThe FieldLite Red is a tough and tactical underbarrel flashlight. Featuring a corrosion-proof body and impact resistant lens, NV-TAC tested the attachment across a variety of environments and conditions to ensure it works when needed most. This special Red edition projects a red light in the shape of a circle. Ideal for situations when illumination on close range targets is essential without projecting a bright light that could be easily spotted.'), +(10968,'Venture Arms Twilight','Armor','Arms','3268f149-5624-49a6-af48-549d0e48fa71','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(10969,'Door Control','ControlPanel','DoorPart','0391ca27-2eee-41eb-96dd-99e6fd6d0728','','',NULL), +(10970,'TrueDef-Pro Core (Modified)','Armor','Torso','b434206e-6ed5-432f-956c-b26f3b39ef39','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nThis version of Virgil\'s TrueDef-Pro core has been modified from its original form. Virgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(10971,'Debnam Gloves Orange','Char_Clothing_Hands','UNDEFINED','b702cb56-c153-4d3d-bd1f-919bc4e908e7','','','Named after the influential Terran tailor, Debnam gloves incorporate that famous tailor\'s classic design to keep your hands comfortable in colder temperatures.'), +(10972,'Flight Blade','FlightController','UNDEFINED','7427f9d0-17c1-40b5-a031-9dc94c466dc9','','',NULL), +(10973,'TRGT. STATUS','Seat','UNDEFINED','2edc20db-08f3-4db3-85aa-e4931a6b9bbc','','',NULL), +(10974,'HG-2 Jaeger (2x Holographic)','WeaponAttachment','IronSight','484cc311-5ef6-4d07-ab75-a75452e7d244','','','Manufacturer: Klaus & Werner\nType: Holographic\nAttachment Point: Optic\nMagnification: 2x - 4x\nAim Time: +5%\nParallax: Low\nSize: 1\n\nSpecializing in medium distance combat, the HG-2 Jaeger excels in situations where you want to keep your distance from hostiles.'), +(10975,'ANVL_Valkyrie_Thruster_Main_Front','MainThruster','FixedThruster','db065f22-aa08-4389-be82-b8ff7094b38f','','',NULL), +(10976,'Carryable_2H_CY_container_ore_1_tall_c','Misc','UNDEFINED','c8abf6d0-526e-4ce4-835c-05fb3278d38c','','',NULL), +(10977,'Carryable_TBO_FL_24SCU_Commodity_ProcessedGoods_EvidenceBox','Cargo','Cargo','2db1fe90-97fa-419f-8c4b-7c18ffd05761','','',NULL), +(10978,'AAT-34 Turret','Turret','MannedTurret','44e8f5aa-3f12-45e2-87d4-0423de88e7b0','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(10979,'ESPR_BallisticCannon_Barrel_S2','WeaponAttachment','Barrel','7cde0f79-3e0c-4d9a-b71a-b83b3251673e','','',NULL), +(10980,'Carryable_2H_CY_weight_barbell_bumperplate_1_5kg_a','Misc','UNDEFINED','a551076c-183c-4ff7-b232-b310055040bf','','',NULL), +(10981,'Sadaryx','Cargo','Cargo','4444061f-61e0-4247-987e-855f65fa118a','','',NULL), +(10982,'BANU_Defender_Thruster_Main','MainThruster','FixedThruster','bed07c41-3f9f-4daa-85e2-288436da9f98','','',NULL), +(10983,'RSI_Aurora_GS_Cargo_Rack','AttachedPart','UNDEFINED','f61f3dcb-eb85-4d53-a21c-bcf0d83a43c8','','',NULL), +(10984,'Locker_Suit_DRAK_Corsair','Usable','UNDEFINED','060e5ce0-913f-4989-8330-49292dab87c8','','',NULL), +(10985,'Arden-CL Backpack Red Alert','Armor','Backpack','45d17cb6-95f1-4987-b41e-c7210ded2376','','','Item Type: Light Backpack\nCarrying Capacity: 40K µSCU\nCore Compatibility: All\n\nWhether carrying supplies into a combat zone or simply hauling extra gear, the Arden-CL backpack is battle ready and tested. Roussimoff Rehabilitation Systems designed the backpack with a universal core connector allowing it to attach to a wide variety of armors.'), +(10986,'Ventra Gloves Dark Red','Char_Clothing_Hands','UNDEFINED','7aa2a9fb-839a-45e0-b8ba-6f510a363597','','','Keep your hands warm and dry with Fiore\'s Ventra gloves. Microstitching creates a snug, tailored fit to keep you looking stylish and warm.'), +(10987,'MASTER_lt_crate_1SCU','Cargo','UNDEFINED','48251649-ae6a-49c1-895d-843818d7f711','','',NULL), +(10988,'facial_hair_018','Char_Head_Beard','UNDEFINED','2dec0896-245b-4ab1-b13d-44b0046c6774','','',NULL), +(10989,'burrito_2_shop_1x10_a','ShopDisplay','Default','d2b307d4-186b-4852-af52-152ba57d8861','','',NULL), +(10990,'Zenith \"Landslide\" Laser Sniper Rifle','Weapon','Medium','b1662474-624e-453d-93fa-64638bcf9317','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Sniper Rifle\nClass: Energy (Laser)\n\nBattery Size: 22\nRate of Fire: 60-300 rpm\nEffective Range: 80 m\n\nAttachments: Optics (S3), Underbarrel (S2)\n\nThe Zenith Laser Sniper Rifle from VOLT offers operational flexibility on the battlefield as it can fire lower-energy shots rapidly, or be allowed time to automatically charge to fire a much more powerful energy blast that also generates significantly more noise and heat.\n\nThe Landslide edition features an olive brown that compliments the natural metallic finish of the weapon.'), +(10991,'LH86 \"Desert Shadow\" Pistol','Weapon','Small','15beb454-90fb-4492-a06f-44a8eda06949','','','Manufacturer: Gemini \nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 25\nRate Of Fire: 1200 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe LH86 from Gemini is a compact kinetic handgun designed for personal defense and close-quarter combat. A keen eye on ergonomics and balance coupled with hardy construction makes this pistol a natural fit for any shooter in any number of hostile conditions. The LH86 also comes with Tritium low-light sight and a twenty-five round magazine.'), +(10992,'HAVEN','Shield','UNDEFINED','aebbc33c-5a32-43c7-8646-f3373466c68f','','','Item Type: Shield Generator\nManufacturer: Seal Corporation\nSize: 3\nGrade: D\nClass: Civilian\n\nThe HAVEN is an admired shield generator for large ships. Seal Corp’s simple, clean design makes repairing the component an easy and affordable task, and has only increased its popularity over the years.'), +(10993,'WorkLife Pants Black','Char_Clothing_Legs','UNDEFINED','2ab42a6b-ba40-4783-bd77-e1538238032a','','','Carrying Capacity: 2K µSCU\n\nWith Stegman\'s, you know you\'re getting clothes made for workers, by workers. Featuring multiple external pockets with easy access tabs, WorkLife pants are rugged, functional and professional. Just like you.'), +(10994,'ActiveWear Training Shorts Khaki','Char_Clothing_Legs','UNDEFINED','bbd8c0de-d106-4533-a028-cea52d999b40','','','Standard issue ActiveWear training shorts are constructed from four-way stretch fabric technology to allow for increased airflow and a larger range of motion while keeping you cool and dry during the most intensive training sessions.'), +(10995,'Remote Turret','Turret','GunTurret','87d06f4d-2a38-47af-ab8d-52f427ae4917','','','Remote Turret'), +(10996,'Tungsten (Ore)','Cargo','Cargo','ffea8c03-60a0-4d6f-b2ee-d847e084a8f6','','',NULL), +(10997,'mobiGlas Ocean Casing','MobiGlas','Personal','70285c6e-e46e-4270-a61b-082ae71f38dc','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(10998,'Seat','SeatAccess','UNDEFINED','22e4ff27-5645-4b91-bdad-3c988f3ab624','','',NULL), +(10999,'Parvat Jacket Backdraft','Char_Clothing_Torso_1','UNDEFINED','69d17a6c-0338-4f06-a42e-4c6bb2e3bca2','','','Carrying Capacity: 2K µSCU\n\nWeather the cold with this waterproof and insulated jacket from Escar Limited. Featuring a stylish design and unique dual-layer collar, the Parvat will keep you warm when you need it most.'), +(11000,'Weapon Rack','Usable','UNDEFINED','e76fe33a-4e54-4ba4-8f5a-dac668b591a4','','',NULL), +(11001,'ANVL_Gladiator_Thruster_Mav_Joint_02','ManneuverThruster','JointThruster','500a6de0-26ed-4831-bbfc-9f13baa3c5c2','','',NULL), +(11002,'Quartz (Raw)','Cargo','Cargo','4a85671f-e17b-4792-af89-9b1f352645e1','','',NULL), +(11003,'BEHR_BallisticRepeater_FiringMechanism_S2','WeaponAttachment','FiringMechanism','6ad18354-8c76-4578-b060-a1b2d3eaf3ee','','',NULL), +(11004,'MISC T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','1806ffa5-84ed-4252-9daf-947fde440f9c','','','Proclaim your admiration for MISC\'s cutting-edge ships with this high-quality white t-shirt, featuring the company\'s logo on the front and back.'), +(11005,'Blood_Decal_Streak','Decal','DoorPart','6a957fb1-8b70-4f4d-a975-22466ac4e2c8','','',NULL), +(11006,'ORIG_X1_Ground_Refueling_Port','Door','UNDEFINED','02bb4e97-1e63-4998-bc04-b151cd2835c4','','',NULL), +(11007,'Door','Door','UNDEFINED','d4dbb2f7-eb01-4946-8d5c-703110a9ecdc','','',NULL), +(11008,'Venture Arms Yellow','Armor','Arms','1ac304b7-7855-4558-8b26-04b25f93961f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(11009,'H_Dashboard_Projector_HUD_ANVL_Lightning_F8','Display','UNDEFINED','517ee1fe-2e3a-4070-a332-62487efcd448','','',NULL), +(11010,'Flight Blade','FlightController','UNDEFINED','4c143b67-e684-47b7-99e3-6ec869ed90ea','','',NULL), +(11011,'Novikov \"Expo\" Helmet','Armor','Helmet','e60e1386-51d1-488a-9ad9-04f98d7ee81c','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -225 / 75 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nConfidently explore cold environments while wearing the Novikov \"Expo\". Caldera built the exploration suit with an advanced sensor suite that intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. Also featuring a bespoke helmet that integrates with the cutting edge life support system, those venturing across unknown terrain can count on the Novikov to help them survive the journey. The \"Expo\" edition celebrates CitizenCon 2949 by blending orange and purple for an eye catching look that\'s highly visible against the elements.'), +(11012,'Testudo Core Disrupt Camo','Armor','Torso','5056e6f9-4a55-4902-9190-ce4d8e5dfc5e','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Medium, Light\n\nThe Testudo armor for Quirinus Tech blends battlefield durability with everyday comfort. It weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort.\n\nThe Disrupt Camo edition utilizes carbon fiber grays and blacks printed in a disruptive pattern to keep your enemies guessing.'), +(11013,'Paint_Hammerhead_Procyon','Paints','UNDEFINED','abf9e951-73eb-429a-861b-f42da2a25c2a','','',NULL), +(11014,'TruBarrier Hazard Suit Cobalt','Char_Clothing_Torso_1','UNDEFINED','1a7b010d-ac45-4749-bc2e-22ec924de710','','','Carrying Capacity: 1K µSCU\nTemp. Rating: -5 / 32 °C\n\nGuard yourself from toxic environmental hazards with the TruBarrier Hazard Suit, constructed from industrial-grade fabric and coated with a multi-layered, laminated polymer that offers a broad range of chemical protection without sacrificing mobility. The encapsulated design provides full-body protection from direct contact with dangerous materials when worn with its accompanying mask.'), +(11015,'Tona Shoes Green','Char_Clothing_Feet','UNDEFINED','e3879057-edd4-4060-b240-8580813f8897','','','Perfect for hiking or fieldwork, the Tona from R6 Pro is a low-top sneaker built out of breathable Cheofreme materials which not only provide extra protection against impacts, but keep your feet dry.'), +(11016,'Door','Door','UNDEFINED','e5ce64f1-c7dc-4b3e-9c64-1c4c1fd409af','','',NULL), +(11017,'RSI_Bengal_Dashboard_Large_Remote_Turret','SeatDashboard','UNDEFINED','995869bb-3583-4345-b748-f0e1d44b09a1','','',NULL), +(11018,'ComfortAir Lite','LifeSupportGenerator','UNDEFINED','b9c57c11-2e49-4098-9475-671b7788e318','','','Item Type: Life Support\nManufacturer: Tyler Design & Tech \nSize: 0\nGrade: C\nClass: Civilian\n\nDesigned to be able to process atmosphere to above UEE standards, the ComfortAir life support system from Tyler Design & Tech provides you and your crew with a clean and comfortable environment.'), +(11019,'Weapon_Rack_1_NONE_LMG_Common_001','Usable','UNDEFINED','a655d368-d1c3-48b1-a1f4-0f9ec28b565a','','',NULL), +(11020,'Flareweed Stalk','Misc','UNDEFINED','90c24dc0-6d94-424d-86a3-8c4358168c16','','',NULL), +(11021,'RPEL','Shield','UNDEFINED','0d335e5f-94ea-4d27-a608-6024e588e131','','','Item Type: Shield Generator\nManufacturer: Seal Corporation\nSize: 2\nGrade: D\nClass: Civilian\n\nSee why more people trust Seal Corporation to protect their ship than any other company. With the RPEL shield generator you can be certain you’ll be sealed off from danger.'), +(11022,'Inquisitor Core Olive','Armor','Torso','167623eb-929c-44a0-9005-2942fc69de7c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(11023,'Door Control','Door','UNDEFINED','e21c4c09-d78b-4e83-9227-8cd7f1bbd019','','',NULL), +(11024,'AEGS_Retaliator_CargoGrid_Front_Main','CargoGrid','UNDEFINED','85330907-ff0d-4ddf-9b8d-5e1ee6e28a5e','','',NULL), +(11025,'Testudo Core Clanguard','Armor','Torso','6384133d-4fc0-49e5-9481-0e5160c0e383','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Medium, Light\n\nThe Testudo armor for Quirinus Tech blends battlefield durability with everyday comfort. It weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort. The Clanguard version has been modified with Vanduul materials and alien artifacts.'), +(11026,'Beradom','Cargo','Cargo','0eeaba20-45f7-4b9d-afe5-ce9dee006d86','','','Formed when sap from the Beraber Fir is crystalized during forest fires, this transparent deep blue \"gemstone\" is often polished smooth and used in jewelry. While it can be manufactured by growing trees and then doing a controlled burn, the time investment for the trees to reach the proper maturity still make this a rare commodity.'), +(11027,'RSI_Mantis_Thruster_Retro','ManneuverThruster','JointThruster','5c08cc95-30c3-4a23-9f6e-683ee02eab37','','',NULL), +(11028,'Aurora Mk I Invictus Blue and Gold Livery','Paints','UNDEFINED','85d6910a-93f3-4a1d-96f9-1954860a78bc','','','Show your support for the newest batch of Navy recruits by customizing your Aurora with this special Blue and Gold livery to commemorate the 2950 Invictus Launch Week.'), +(11029,'Book','Misc','UNDEFINED','effef363-37cb-4e65-879a-7f0873e2f9c5','','',NULL), +(11030,'Door Control','Door','UNDEFINED','d1631ef5-c9b1-4616-bd5a-c1d5f58570dd','','',NULL), +(11031,'Torrent Compensator2','WeaponAttachment','Barrel','88dcee19-a914-4624-8100-45a2ac913731','','','Manufacturer: ArmaMod\nType: Compensator\nAttachment Point: Barrel\nSize: 2\n\nAim Time: +10%\nSpread: +22.5%\nProjectile Speed: +35%\nAim Recoil: +17.5%\nVisual Recoil: -12.5%\nDamage: +5%\n\nDesigned to overwhelm opponents in the heat of battle, the Torrent Compensator2 increases projectile speed whilst reducing accuracy.'), +(11032,'Flight Blade','FlightController','UNDEFINED','5b5c7aed-38ac-42e8-a180-43a574c690f7','','',NULL), +(11033,'ORIG_600i_Seat_Bridge_Right','Seat','UNDEFINED','302fc178-6d26-40c0-8b4a-35e324c41abe','','',NULL), +(11034,'Elevator Control','Elevator','UNDEFINED','95fdaf3e-ad7a-4ba4-9b3e-21fc229b5d11','','',NULL), +(11035,'Seat','SeatAccess','UNDEFINED','5d3beb4f-464b-4f1e-b419-9f3512ed44bd','','',NULL), +(11036,'Omnisky IX Cannon','Weapon','Gun','95c85f25-ccd9-402e-b02a-522f5a97a654','','','Manufacturer: Amon & Reese Co.\nItem Type: Laser Cannon\nSize: 3\n\nThe Omnisky IX is the size three version of Amon & Reese\'s popular laser autocannon. The weapon\'s low rate of fire is offset by its effective range, which allows it to deliver a powerful shot from afar.'), +(11037,'Ati Jacket Dark Green','Char_Clothing_Torso_1','UNDEFINED','f5dc3c80-10c6-4858-83f5-31dcc7a71e34','','','Carrying Capacity: 2K µSCU\n\nFiore\'s is a modern update of traditional Earth design. Slim tailoring, a high collar, and striking asymmetrical design make this overcoat a must-have item for any wardrobe.'), +(11038,'rack_gun_size_4_005x00375x015_1_a','Misc','UNDEFINED','20f68c9d-423c-442a-a38c-70a4b0e3897d','','',NULL), +(11039,'AEGS_Sabre_Firebird_Thruster_Mav_Joint_04','ManneuverThruster','JointThruster','b5681fcf-666a-41c0-8d84-5086f1c6b3a4','','',NULL), +(11040,'CRUS_Intrepid_Thruster_Mav_Top','ManneuverThruster','UNDEFINED','365056b5-5a8b-4115-af4f-3f09cc5631ad','','',NULL), +(11041,'Stud','Char_Head_Piercings','UNDEFINED','907a2fc0-4823-44e7-9593-1766aa1892ae','','',NULL), +(11042,'Tractor Turret','ToolArm','UNDEFINED','43421e75-383e-48c3-9820-00e0f8193c08','','',NULL), +(11043,'Bed','Usable','UNDEFINED','44adc9b7-81c3-430c-906d-acfbeb9698f0','','',NULL), +(11044,'MSD-683 Missile Rack','MissileLauncher','MissileRack','094b4d58-a73c-4ccb-8151-68b4f9fb1d66','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 6\nMissiles: 8xS3\n\nBehring’s MSD-683 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 6 hardpoint for the reliable and effective launch of eight S3 missiles.'), +(11045,'Mala','Cargo','Cargo','741a39f0-fc9a-4560-b7a5-fdfb09bb1ecd','','',NULL), +(11046,'Titanium','Cargo','Cargo','1bde62de-c306-4756-b901-b4299a223b3a','','',NULL), +(11047,'Flight Blade','FlightController','UNDEFINED','a5e39736-be94-4214-8063-c8fa9aabe24d','','',NULL), +(11048,'INTK_CNOU_HoverQuad','FuelIntake','Fuel','8d26d892-445c-4b60-ab17-eec78218ff55','','',NULL), +(11049,'MISC_Hull_A_Thruster_VTOL','ManneuverThruster','FixedThruster','7edc17aa-a5b1-43cb-b8a3-25b44fe64661','','',NULL), +(11050,'Bar_Table_small_rdwn_2_seat','Usable','UNDEFINED','fb6e1068-b3e0-450e-87d8-d0088af7d86d','','',NULL), +(11051,'Mug','Drink','UNDEFINED','3e723218-e982-4ec1-b430-43583ead0a43','','',NULL), +(11052,'Door Control','Door','UNDEFINED','8ffab339-cb54-4795-92cb-31dd3cd17764','','',NULL), +(11053,'Testudo Core Deathblow','Armor','Torso','a3ce6502-8004-4c58-9788-bc391d77ad3f','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Medium, Light\n\nBased on Quirinus Tech\'s Testudo medium combat armor, the Deathblow variant has received unauthorized aftermarket modifications. This armor set weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort.'), +(11054,'Concept Shirt','Char_Clothing_Torso_1','UNDEFINED','e6cb0703-a25b-4adb-b51c-4799b6e55bf5','','','This crisp, versatile button-front shirt from Fiore is made with cutting edge stain resistant and wrinkle-free technology, guaranteeing that you stay professional at all times.'), +(11055,'Deadhead Helmet Dust','Armor','Helmet','d765957b-e68d-463b-887f-379654a5510b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\n\nRemind your enemies that death is coming with the Deadhead helmet. In place of a visor, the ghastly visage of a Human skull, lit from within by an infernal glow, is sure to send any opponent running.'), +(11056,'MacFlex Legs Olive','Armor','Legs','a7a1807b-4ffa-420a-939c-d181cbabfc91','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(11057,'Carnifex Armor Core Brassy','Armor','Torso','648bca08-c754-4bec-8bf1-4d1d46e033e5','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -5 / 38 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpack Compatibility: Light\n\nThis homemade armor provides a marginal amount of protection but maximum attitude. It\'s aggressively styled with skulls and other intimidating accessories associated with those living on the edge. Wearing such a distinct look may either keep people away... or draw them to you.\n\nThe Brassy version features white coloring with bronze accents.'), +(11058,'Venture Undersuit Purple/Black','Armor','Undersuit','75862bfe-9432-47ff-8ea7-d1ce8397008e','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(11059,'un_box_plastic_1_berries_b','Misc','UNDEFINED','551c7d09-ccdc-43d5-a544-ae4585695952','','',NULL), +(11060,'Salvation Eureka Livery','Paints','UNDEFINED','b47c2586-e012-4321-b642-ed44e0c7ff37','','','The Eureka livery features glittering gold highlights against a black base paint for the Salvation.'), +(11061,'Caterpillar Deck the Hull Livery','Paints','UNDEFINED','5f6eb22e-f7e0-4c87-9e68-27179f217b2a','','','Express your holiday spirit with the Deck the Hull livery, which uses the traditional Luminalia colors of green and red to celebrate the popular Banu festival that\'s become beloved by Humans.'), +(11062,'Door Control','ControlPanel','DoorPart','2d150366-15ab-4da4-9060-3843b8467106','','',NULL), +(11063,'Aves Talon Helmet','Armor','Helmet','113b8ce8-6703-4004-8b30-a73b96d48c23','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nCC\'s Conversions is proud to release the Aves Talon helmet to celebrate the beautiful and unique history of the Tevarin culture. This medium helmet honors traditional stylings with colorful green accents on black and white plating, giving the helmet a bold and dynamic feel worthy of this great species. Visor is AR crosshair compatible.'), +(11064,'CNOU_Mustang_Beta_Thruster_Main','MainThruster','FixedThruster','66a2703e-8df3-4f57-9e0b-031e6c432bb6','','',NULL), +(11065,'Aurora Mk II Obscurity Livery','Paints','UNDEFINED','da651812-4804-4c9d-9b0a-d143bbdd92db','','','Mainly gray with select white features, the sharp reds of the Obscurity livery cut through an otherwise brooding appearance.'), +(11066,'Pulverizer \"Zigzag\" LMG','Weapon','Medium','d04c3b55-ca67-4076-834c-45e57e4d3de2','','','Manufacturer: Unknown\nItem Type: LMG\nClass: Ballistic\n\nMagazine Size: 120\nRate Of Fire: 355 rpm\nEffective Range: 100 m\n\nNothing like ripping through a huge mag of .50 cal bullets to scare away unwanted guests. Based on a modified FS9, the Pulverizer LMG wastes no time with pleasantries, instead lends itself to a more direct confrontational approach. \n\nThis version features a gray finish with a zigzag pattern.'), +(11067,'Ready-Up Helmet Sienna','Char_Clothing_Hat','UNDEFINED','65fed3c6-aba7-45a2-be7b-bffa27e639d2','','','The Ready-Up is a dependable, affordable softshell helmet alternative. Built from space-age plastic, the Ready-Up provides a vacuum-ready seal to keep you breathing for longer.'), +(11068,'Radar_Display_Hornet_F7A_MK2','Display','UNDEFINED','594550f8-d202-4d17-9f94-7334ffe65916','','',NULL), +(11069,'Coloma Coat Sage and Navy','Char_Clothing_Torso_1','UNDEFINED','b45986d8-2360-4488-a9df-da6120b87136','','','Carrying Capacity: 1K µSCU\n\nStuffed with water-resistant gilly down, the Coloma coat blocks wind, traps body heat, and allows the wearer to move freely, making it the perfect choice for changeable weather conditions. Additionally, its roomy pockets provide plenty of storage.'), +(11070,'Hair Care Product','Misc','UNDEFINED','9f0cb790-2bdf-4c49-b8db-0667a8c8fcbd','','',NULL), +(11071,'RSI Decoy Ammo Box','WeaponDefensive','CountermeasureLauncher','c34456a1-eda3-421b-bb10-bb676c616017','','','RSI Decoy Ammo Box'), +(11072,'TMBL_Cyclone_SCItem_Dashboard_Passenger','SeatDashboard','UNDEFINED','cbb230de-7fae-40e1-a3d8-37b5c14150fd','','',NULL), +(11073,'Invictus Hat Blue','Char_Clothing_Hat','UNDEFINED','6d3712a7-b1f3-4d23-9921-85ba93ae5824','','','A classic cadet hat commemorating Invictus Launch Week. It features the Invictus logo across the front and back.'), +(11074,'Jaclium (Ore)','Cargo','Cargo','59969a6a-76e7-4316-9893-6ddb50a7199c','','','A naturally occurring rare metal form of jahlium, it is used in the production of extremely strong alloys with incredible tensile strength. Originally confused with common jahlium when first discovered, the above average results when used lead to researchers to realize its value.'), +(11075,'Door Control','Door','UNDEFINED','bdc3b905-fad7-4213-920c-92af9ad7bb95','','',NULL), +(11076,'Aurora Mk II DM Module','Module','UNDEFINED','29913ca8-55ff-4add-992e-e779b1e4ab18','','','RSI designed this defensive measures module to increase the combat capabilities of the Aurora Mk II.'), +(11077,'Morozov-SH-I Helmet Pyrotechnic Vesper','Armor','Helmet','ad9cc137-ea54-45d5-af8c-0b2efe96d3ed','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing the same fortified armor plating, special anti-rip protective padding and ample storage, as the Morozov SH, the SH-I industrial variant was designed by RRS to protect workers employed in hostile zones while ensuring they had the full range of motion required to perform their duties. The Pyrotechnic Amalgamated Edition was made specifically for the company\'s mining efforts in Pyro during the 26th century. Visor is AR crosshair compatible.'), +(11078,'Internal Tank','FuelTank','Fuel','6b5e5a09-582d-4df3-b04f-753ebd7584ce','','',NULL), +(11079,'DRAK_Caterpillar_SCItem_Seat_TractorBeam','Seat','UNDEFINED','04824870-5fb6-4966-b399-fd048f71ba60','','',NULL), +(11080,'Pressurized Ice','Cargo','Cargo','7b7f7d1a-bac5-490f-b4da-fa2f61acbd9f','','','Ice that has been purified and compressed to transparent by restricting natural expansion. This allows for more efficient transport in bulk.'), +(11081,'display_components_pallet_250x125x025_a_power','ShopDisplay','UNDEFINED','18af5b3a-cd4e-4b56-af67-ed84dd4b2c74','','',NULL), +(11082,'MISC_Starlancer_Thruster_Main','MainThruster','FixedThruster','26ec8ad9-a0d0-49ad-b328-3d0571af7f8d','','',NULL), +(11083,'Box_Plastic_050x050x050','Cargo','Small','bc7e0525-8c64-49e1-a1f2-c85b53546580','','',NULL), +(11084,'AirlockDoorDefaultTemplate_Int','Door','AirlockPart','aa1a1ecd-de0a-4d94-ba2a-bb59c2f33805','','',NULL), +(11085,'Kino Shoes White','Char_Clothing_Feet','UNDEFINED','de5247b1-ca7b-4af1-9079-bb4997168881','','','These two-tone slip-on shoes are comfortable enough for casual wear, but stylish enough for the workplace.'), +(11086,'Door Control','Door','UNDEFINED','4b81b30e-1377-4039-9ddd-83875cd03786','','',NULL), +(11087,'Door','Door','UNDEFINED','45ec770a-1607-4b7a-9f6b-8f2ec127ab72','','',NULL), +(11088,'Internal Tank','QuantumFuelTank','QuantumFuel','8a4b7764-22fc-49ab-b8c2-2f8001400fb9','','',NULL), +(11089,'Door Control','Door','UNDEFINED','d2cbe74a-11da-42ce-b82a-f76206768773','','',NULL), +(11090,'Delta \"Scorched\" (1x Reflex)','WeaponAttachment','IronSight','d4d27d5f-3c80-4b31-bc34-2de8357b79d7','','','Manufacturer: NV-TAC \nType: Reflex\nAttachment Point: Optic\nMagnification: 1x - 3x\nAim Time: +2.5%\nAim Recoil: -10%\nVisual Recoil: -10%\nParallax: Medium\nSize: 1\n\nIdeal for civilians and professionals, the Delta non-magnifying reflex sight from NV-TAC provides a precise illuminated target marker, visible across a wide range of light levels. The Scorched edition features a unique flame patina.'), +(11091,'Irradiated Valakkar Pearl (Grade A)','Misc','Harvestable','e738b605-8ef7-4238-8170-5db0c4f9c15d','R','','The valakkar pearl is harvested from the skin of the valakkar. As the valakkar moves through its environment, a large piece of grit will sometimes penetrate its thick hide. If the grit is unable to be expelled on its own, the valakkar\'s skin will grow to encase it. Layers of organic matter will then coat the piece of grit, isolating it from the valakkar\'s vulnerable dermis, thus ensuring that it will not cause infection. These \"pearls\" can become substantial in size over time. Because the valakkar that grew this pearl was exposed to radiation over a long period of time, it has developed unusual properties.'), +(11092,'m_human_mannequin_base_armor_Collector_HeavyUtil','ShopDisplay','UNDEFINED','da56c51c-936f-44cb-9278-8d38a18e8c16','','',NULL), +(11093,'Door Control','ControlPanel','DoorPart','b1c71ab1-f92a-4f4c-aea9-f16ce9498548','','',NULL), +(11094,'MSD-442 Missile Rack','MissileLauncher','MissileRack','0a38dafc-a21d-4684-bbb6-20b179ba3535','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 4\nMissiles: 4xS2\n\nBehring’s MSD-442 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 4 hardpoint for the reliable and effective launch of four S2 missiles.'), +(11095,'Table_Gama_Syulen','Usable','UNDEFINED','d02bd10c-7e66-4444-b736-36069577b5a6','','',NULL), +(11096,'Vehicle_Screen_MFD_Holographic_Nox_C','Display','UNDEFINED','92854604-b167-466b-9144-3b66a84e732b','','',NULL), +(11097,'Hercules Starlifter ArcCorp Livery','Paints','UNDEFINED','fdbfaeee-f978-4c2e-86ef-fe1f45050d1d','','','The ArcCorp livery for the Starlifter features the company\'s logo atop a maroon base paint with black and yellow highlights.'), +(11098,'Citadel-SE Legs White','Armor','Legs','4822ce40-491f-4d30-9eb1-0a4b64837b98','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(11099,'Double Dog','Food','Junk','aa514342-dc16-44ce-afc7-34b962228b5e','','','NDR: 34\nEffects: Dehydrating, Hyper-Metabolic\n\nTwo dogs perfectly grilled before being stacked together on a bun.'), +(11100,'Torreto Pants Green','Char_Clothing_Legs','UNDEFINED','4cd4f142-0aba-4dfa-afa8-bcef1c8587d5','','','Carrying Capacity: 0.5K µSCU\n\n987 redefines classic slacks with the Torreto. These mid-rise, straight cut pants incorporate a section of fabric studding along the side seam to provide a pop of personality.'), +(11101,'Seat','Usable','UNDEFINED','f187ae0b-d7f4-48ea-a891-28b8daa03e7b','','',NULL), +(11102,'Tempus Tank Horizon','Char_Clothing_Torso_0','UNDEFINED','54726173-0bfb-48d7-8889-4fe195534405','','','This classic tank by 987 is made with moisture-wicking fabric to keep you cool when you\'re at your most active. Each shirt comes with a bracer and a bandolier to create a bold and aggressive style.'), +(11103,'Horizon Helmet Grey','Armor','Helmet','bab1351e-a4c0-4f33-a1b2-ce9af62f2346','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Horizon helmet is a durable and robust environmental enclosed work helmet. The single sheet laminate dome gives you an extremely wide field of view. A pair of side-mounted LED light modules provide additional illumination to make sure you can see what you\'re doing.'), +(11104,'Door Control','Door','UNDEFINED','734f285b-e36c-4b8a-8bae-361d6b24451a','','',NULL), +(11105,'sc_nvy_medical_corpsman_pants_01_01_01','Char_Clothing_Legs','UNDEFINED','d9728c9d-270a-4f3f-8ad6-e35b228c15c8','','',NULL), +(11106,'Taranite','Cargo','Cargo','fee4c438-9c15-46fd-b69b-215f28c2494c','','',NULL), +(11107,'ForceFlex Undersuit Purple/Gold','Armor','Undersuit','ff15f00d-918e-460c-9abb-5bfa5941a4ab','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nVirgil\'s ForceFlex is the next generation in undersuit technology. Rated for combat as well as industrial work, you can rest assured that the comboweave will keep you protected in whatever situation you put it through.'), +(11108,'Weapon Rack','Usable','UNDEFINED','38925736-c3be-4d90-b014-7849d01bca23','','',NULL), +(11109,'Elevator Control','Elevator','UNDEFINED','286b904f-f67f-48af-b8ba-ac9869491aff','','',NULL), +(11110,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','85566c9e-e299-40f4-9d47-0b412ee5bf59','','','Aegis Gladius - Decoy Launcher'), +(11111,'Citadel-SE Core Dark Green','Armor','Torso','68fd65e6-6017-4ad6-a770-b164253c204f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(11112,'m_human_mannequin_base_armor_Collector_SpikeyArmor','ShopDisplay','UNDEFINED','068cd85b-2786-4fbc-b7bd-6171b1678f3a','','',NULL), +(11113,'display_wall_stand_centermass_3port','ShopDisplay','Default','e222468f-2d4c-4969-8640-a542ee4acd95','','',NULL), +(11114,'J-5 Helmet Rust','Armor','Helmet','4d1b1131-572b-4db2-896f-8f7461f7902f','','','Item Type: Light Helmet\nDamage Reduction: 20%\nTemp. Rating: -25 / 65 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nGyson delivers another unique softshell helmet with the J-5. Large optic sensors and an oversized breathing apparatus deliver a striking visage. The distinct design is space-rated and provides a modicum of protection, while keeping the helmet lightweight and affordable.'), +(11115,'OneMeal Nutrition Bar (Roast Chicken)','Food','Bar','b90ef8cd-8c71-4e37-b354-fe6fab41c07a','','','NDR: 21\nEffects: Hypo-Metabolic\n\nOneMeal optimal nutrition bars are a scientifically balanced and complete meal replacement that\'s \"ready when you are.\"'), +(11116,'GRIN_STV_Dashboard_Driver','SeatDashboard','UNDEFINED','6d808555-04cb-4670-95ab-3fe402ddaa50','','',NULL), +(11117,'Door','Door','UNDEFINED','69dbbc3e-0a5a-4d49-84d7-c9eae80ac8a9','','',NULL), +(11118,'Morozov-CH Backpack Thule','Armor','Backpack','7063d4ef-e198-49a4-8da0-0230e3474dcf','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nComfortably carry vital gear with the Morozov-CH backpack. This softshell bag is made with an advanced duraweave that\'s lightweight yet ready for battlefield action. It also features several easy to access pockets and a plethora of straps to keep supplies secure and tight to your back.'), +(11119,'Scourge Railgun','Weapon','Large','699db405-4ca1-4993-ba58-a9f90001ae6b','','','Manufacturer: Apocalypse Arms\nItem Type: Railgun\nClass: Ballistic\n\nMagazine Size: 5\nRate Of Fire: 60 rpm\nEffective Range: 200 m\n\nAttachments: Optics (N/A), Barrel (N/A), Underbarrel (S4)\n\nEqually devastating to larger threats and hostile vehicles, this shoulder mounted railgun from Apocalypse Arms uses electromagnets to deliver its payload accurately over great distances, making it the Scourge of land, air and space.'), +(11120,'CBH-3 Helmet Violet','Armor','Helmet','c43bd2f8-3c3f-4d65-a60b-d47decd619bc','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. Visor is AR crosshair compatible.'), +(11121,'Polaris Nightbreak Livery','Paints','UNDEFINED','bc0f6356-3cfa-4a54-875b-5456ac03ff0e','','','Discreetly soar through the night sky in the Polaris with the Nightbreak livery, which is primarily black with red highlights.'), +(11122,'Ravager-212 Twin Shotgun','Weapon','Medium','3ec76bc1-de5a-44f8-8469-783ec803d89d','','','Manufacturer: Kastak Arms\nItem Type: Shotgun\nClass: Ballistic\n\nMagazine Size: 16\nRate Of Fire: 105 rpm\nEffective Range: 15 m\n\nAttachments: Optics (S1), Barrel (N/A), Underbarrel (S2)\n\nThe Kastak Arms Ravager-212 Twin shotgun earns its name from its unique dual-barrels that allow for multiple ammo types to be used in conjunction with each other for maximum tactical possibilities. '), +(11123,'Ponos Boots Imperial','Char_Clothing_Feet','UNDEFINED','6b15415e-fd25-4b68-a64c-fd92687fb0db','','','Quite simply, R6 Pro\'s Ponos boots were built for backbreaking work. Constructed out of Thermosulate technology, these waterproof and insulated workboots are rated for sub-arctic environments while the composite outsole ignores hazards to maintain traction when you need it most.'), +(11124,'Manned Turret','TurretBase','MannedTurret','982679e6-e701-4006-9cb2-4785acdc940f','','',NULL), +(11125,'Agricultural Supplies','Cargo','Cargo','9bdf3f41-951d-4419-b35d-3230b3060634','','',NULL), +(11126,'KLWE_MassDriver_PowerArray_S1','WeaponAttachment','PowerArray','f745dc02-c36d-419a-99ff-966852c596b5','','',NULL), +(11127,'Zeus 2955 Ship Showdown Poster','Misc','Utility','b2d397f9-993a-4495-afc1-11c11743bcfe','','','The legacy of the first commercially available ship only continues to grow. This poster celebrates the Zeus\' selection as one of the final four ships in the 2955 Ship Showdown.'), +(11128,'Internal Tank','FuelTank','Fuel','18f0edd5-2c31-4827-9407-5bc4ab2964fa','','',NULL), +(11129,'Terrapin 2954 Ship Showdown Poster','Misc','Utility','2f535672-73c5-4e49-90ef-74b42c3cbd0c','','','A poster commemorating the Anvil Aerospace Terrapin making its way in the final four of the 2954 Ship Showdown. Outfitted with long-range scanners and encased in heavy armor and oversized shields, the Terrapin faces potentially hazardous circumstances with confidence.'), +(11130,'Redeemer 2953 Ship Showdown Poster','Misc','Utility','f2ddab21-a878-4faf-8314-e8bfcf361dcf','','','A poster commemorating the Aegis Dynamics Redeemer blasting its way in the final four of the 2953 Ship Showdown. It captures the ship not just surviving, but thriving in its natural environment: the heat of battle.'), +(11131,'Ma\'s Ready to Eat Chicken Home Stew','Food','Tin','37a49a6f-78f7-49bb-a419-a049bd3132fb','','','NDR: 36\nEffects: Dehydrating, Hyper-Metabolic\n\nMa\'s Ready to Eat Chicken Home Stew has the classic taste you love and the convenience your busy life demands.'), +(11132,'Pepperoni Pizza (Slice)','Food','Consumable','686bfc31-e597-4484-a244-624880d7a720','','','NDR: 22\nEffects: Dehydrating, Hyper-Metabolic\n\nA crisp crust topped with a fresh tomato sauce, spicy pepperoni slices, and melted cheese.'), +(11133,'TCS-4 Undersuit Lifeforce','Armor','Undersuit','0602b4d4-00bd-41a7-84a2-4f6e48879156','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThis comprehensive Tactical Combat Suit provides a complete sealed suit against vacuum, free range of motion, and interfaces seamlessly with compatible armor systems. The Lifeforce edition was designed with first responders in mind with a highly visible white, red, and grey color scheme.'), +(11134,'Door Control','Door','UNDEFINED','6b6f0797-913d-4cfb-958c-c217b27f4f94','','',NULL), +(11135,'Inquisitor Core Raven','Armor','Torso','1e4144b4-b08b-4282-bd67-79e9a1162976','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(11136,'7MA \'Lorica\'','Shield','UNDEFINED','fb145cc4-2e30-44a0-865d-b9ea0e40fae1','','','Item Type: Shield Generator\nManufacturer: Behring\nSize: 2\nGrade: A\nClass: Civilian\n\nTrust a component that has been equipped on crafts for centuries — the 7MA ‘Lorica’. Experience Behring’s top-of-the-line shield generator on your ship today.'), +(11137,'ARGO_ATLS_GEO_SCItem_Seat_Driver','Seat','UNDEFINED','e069e960-816f-42a1-8711-7e46b94dea4e','','',NULL), +(11138,'Vulcan','QuantumDrive','UNDEFINED','ead4350a-695e-4d5d-86c3-e33f99d08217','','','Item Type: Quantum Drive\nManufacturer: Juno Starwerk\nSize: 1\nGrade: D\nClass: Industrial\n\nJuno Starwerk designed the Vulcan to be both cost efficient and durable. It won’t win any awards for its performance but can be trusted to get you to your destination.'), +(11139,'Aegis Gladius - Noise Launcher','WeaponDefensive','CountermeasureLauncher','58010245-07e0-4235-aff4-d506cc07e318','','','Aegis Gladius - Noise Launcher'), +(11140,'Door Control','ControlPanel','DoorPart','4c7fb496-eb0c-49a0-ba3a-8beb285a11a7','','',NULL), +(11141,'Advocacy Badge (Replica)','Misc','UNDEFINED','e628df8a-122c-46a9-a4cc-710183fef436','','','A high quality replica Advocacy Agent badge featuring solid construction and authentic detailing. This item is intended for decorative or recreational purposes only.'), +(11142,'vanduul_pilot_arms_01_01_01','Armor','Arms','07d3a685-7756-4c35-9ca4-79e204a17ba1','','',NULL), +(11143,'TRGT. STATUS','Seat','UNDEFINED','df104805-3e9b-48c4-be46-a4a8215de7fb','','',NULL), +(11144,'Taberna Jacket Ash','Char_Clothing_Torso_1','UNDEFINED','4f69045d-8af3-4f6c-9fa3-ebb32ab6fe72','','','Carrying Capacity: 5K µSCU\n\nThe Taberna jacket delivers refined design for rugged conditions. It features a weather resistant outer shell with additional paneling on the torso and arms. An integrated hood and shawl provide extra protection from the elements while a spacious toolbelt ensures gear remains within reach.'), +(11145,'RapidCool','Cooler','UNDEFINED','8db577f4-7874-4c0d-950f-1722015b6f5f','','','Item Type: Cooler\nManufacturer: ACOM\nSize: 2\nGrade: D \nClass: Competition\n\nACOM brings its performance first philosophy to this medium cooler. The RapidCool trades signature strength and durability for better performance.'), +(11146,'Kino Shoes Tan','Char_Clothing_Feet','UNDEFINED','8e7e53fb-2179-40d4-ba72-f32d6d89604d','','','These two-tone slip-on shoes are comfortable enough for casual wear, but stylish enough for the workplace.'), +(11147,'Rieger Module','MiningModifier','Gun','44b6d85a-ad86-479b-8cd9-5b3d9ab9eddc','','','Manufacturer: Shubin Interstellar\nItem Type: Mining Module (Passive)\n\nMining Laser Power: 115%\n\nOptimal Charge Window Size: -10%\n\nThe Rieger Module boosts laser power but requires more precision to find an effective mining area.'), +(11148,'Venture Core Olive','Armor','Torso','bfc7556e-6cbe-48a8-abda-3172da05cc44','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(11149,'Remote Turret','Turret','Utility','b3344733-3afa-478a-a6c2-0e438cd5a9a7','','','Remote Turret'), +(11150,'ORC-mkX Core Twilight','Armor','Torso','6bac597c-1848-42c2-9aa1-d7d7e109d5d1','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(11151,'stand_shop_medium_Shields','ShopDisplay','UNDEFINED','409e67fe-4d7a-4fbd-ad9c-c46cffa02cea','','',NULL), +(11152,'Diamond Laminate','Cargo','Cargo','f2c36585-179c-4848-949c-3b2dae71e5b9','','',NULL), +(11153,'Ares Star Fighter Hosanna Livery','Paints','UNDEFINED','2f6d0e7e-5dee-455d-851a-f330a17c2f65','','','Inspired by the gorgeous clouds that enshroud Orison, the Hosanna livery blends red, ivory, and pink to give the Ares Star Fighter a distinct appearance. It also features a silhouette of the landing zone\'s famous Hosanna tree complete with its pink flowers.'), +(11154,'AIModule_Unmanned_PU_PDC_PIR','AIModule','UNDEFINED','50375166-0435-4016-b9eb-b0b5a58231e3','','',NULL), +(11155,'Maintenance_Workzone_Down_Inspect','Usable','UNDEFINED','6a24abe9-4ea9-4cef-82cc-8c088c774a4f','','',NULL), +(11156,'Mivaldi Pants Dark Red','Char_Clothing_Legs','UNDEFINED','4d7083e2-0d0e-4f21-aced-cbdda58343ad','','','Carrying Capacity: 0.5K µSCU\n\nCut to a narrow fit, OpalSky\'s Mivaldi pants feature bold asymmetrical design with smart yet casual dual material styling, making it the perfect addition to any wardrobe.\n\nWomen\'s sizes currently out of stock.'), +(11157,'Horizon Helmet Sienna','Armor','Helmet','977eed9f-c3d8-45c9-8c91-6bdd0f651584','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Horizon helmet is a durable and robust environmental enclosed work helmet. The single sheet laminate dome gives you an extremely wide field of view. A pair of side-mounted LED light modules provide additional illumination to make sure you can see what you\'re doing.'), +(11158,'Carryable_1H_SQ_DataPad_Fluff_StormBreaker_DataFacility','Misc','UNDEFINED','40d76551-9fc4-735b-bd3f-d369c644f48d','','',NULL), +(11159,'Stratus Jacket Teal','Char_Clothing_Torso_1','UNDEFINED','d63caeed-4086-4964-9f3c-b36f1c2b237b','','','Temp. Rating: -20 / 20 °C\nCarrying Capacity: 3K µSCU\n\nEven though it\'s rated to withstand arctic conditions, you won\'t want any snow accumulating on this distinct and dazzling jacket. The Stratus will keep you warm from neck to knees thanks to its high collar and precisely layered pieces.'), +(11160,'Pite','Char_Head_Piercings','UNDEFINED','53df111e-293d-4968-b631-a3a27ef9026b','','',NULL), +(11161,'H_Dashboard_Projector_HUD_ANVL_Hornet_F7C','Display','UNDEFINED','902940fc-2183-4dc6-badd-91d2472e003a','','',NULL), +(11162,'Custodian \"Brimstone\" SMG','Weapon','Medium','04f4d949-9504-4dda-ad33-fadcdec04d8f','','','Manufacturer: Kastak Arms\nItem Type: SMG\nClass: Energy (Laser)\n\nBattery Size: 60\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nThe Custodian SMG from Kastak Arms focuses on a high rate of fire over damage and accuracy making it an ideal choice for sweeping through tight environments and close quarters combat. The \"Brimstone\" special edition features a bold red top-trim and a dark gray finish on the lower half of the weapon.'), +(11163,'Spirit Intrepid Livery','Paints','UNDEFINED','e17d8189-666f-41aa-b1c8-af212b07a84d','','','Featuring a matte moss green with dusty orange highlights and accent stripes, this livery ensures your Crusader Spirit is one to watch.'), +(11164,'Door Control','Door','UNDEFINED','4b9ddcde-5aee-4b9e-bd4e-b731bc21d0da','','',NULL), +(11165,'Seat','Usable','UNDEFINED','151d7b19-64f5-4897-a238-e559b4a3aa4c','','',NULL), +(11166,'Coda Pistol (Modified)','Weapon','Small','052b79e7-6c1d-4aee-96f6-e6d92559892f','','','Manufacturer: Kastak Arms\nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 6\nRate Of Fire: 180 rpm \nEffective Range: 100 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nOften called the Kastak Arms \"hand cannon,\" the Coda can end an engagement with a single .50 caliber round, although the substantial power can make the Coda\'s recoil hard to handle. Considering its limited magazine size and substantial kick, sustained fire is discouraged in favor of more accurate single shots.'), +(11167,'none_lmg_ballistic_01_collector01','Weapon','Medium','ee891d64-c65a-47fb-97d2-a5658e16fa85','','',NULL), +(11168,'Parvat Jacket Forest Shade','Char_Clothing_Torso_1','UNDEFINED','3a580346-3e9e-4f69-815b-b2d6d0e6eb7f','','','Carrying Capacity: 2K µSCU\n\nWeather the cold with this waterproof and insulated jacket from Escar Limited. Featuring a stylish design and unique dual-layer collar, the Parvat will keep you warm when you need it most.'), +(11169,'ORIG_350r_Winglet','Misc','UNDEFINED','7901b246-b8fe-4747-8f07-29669431cd18','','',NULL), +(11170,'VNCL_Weapon_Mount_Left','Misc','UNDEFINED','3a2e523e-6e5e-46cc-b604-2188fa0781dd','','',NULL), +(11171,'MISC_Hull_A_Thruster_Mav_Roll','ManneuverThruster','FixedThruster','634393c2-40e2-4c4a-8cf0-ff46bb3cbd6e','','',NULL), +(11172,'Carryable_1H_CY_tool_manual_socket_1_b','Misc','UNDEFINED','60cc8237-766e-4416-a688-f53e58497aa4','','',NULL), +(11173,'Taranite','Cargo','Cargo','be1d4ea6-91c4-4b66-a5e6-0e35aa9eec59','','',NULL), +(11174,'DRAK_Clipper_Thruster_Retro_Right','ManneuverThruster','UNDEFINED','39f92801-c849-4d26-b4e0-306bea7ce1a6','','',NULL), +(11175,'Carryable_1H_CY_bottle_gas_1_a','Misc','UNDEFINED','1fd2a757-2e53-47c3-91fc-7e137c2a787f','','',NULL), +(11176,'Invictus Hat Beige','Char_Clothing_Hat','UNDEFINED','4027c62b-cfb1-44f0-a016-f4ff33305614','','','A classic cadet hat commemorating Invictus Launch Week. It features the Invictus logo across the front and back.'), +(11177,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','118b1a38-9427-4aac-abfe-b65d4e0acac6','','','Aegis Gladius - Decoy Launcher'), +(11178,'Carryable_2H_FL_05x05x05_Commodity_Nonmetal','Cargo','Small','11fd89d0-df38-4e88-b19b-fe629d863b95','','',NULL), +(11179,'TrueDef-Pro Legs Grey/Green','Armor','Legs','bbc4d982-f0ea-45f8-888d-a38111787a2c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.\"'), +(11180,'ARMR_ESPR_Prowler','Armor','Medium','ef591c41-6546-4026-9a40-c05937c7e13c','','',NULL), +(11181,'Internal Tank','FuelTank','Fuel','c53884b8-fbd0-4b0b-8f89-9084afba11c0','','',NULL), +(11182,'Low End Couch','Usable','Cargo','101f3a22-1817-42de-8117-ba8b31e088cd','','','Couch Decoration'), +(11183,'Hangar_FreightElevator_CargoGrid_XL','CargoGrid','UNDEFINED','8465c434-90fc-493e-9aec-a89465420601','','',NULL), +(11184,'SCItemDisplayScreen_NewsScreen_Lorville','Display','Default','a8a5f3fb-7f06-43de-967e-d42fa1a93cb2','','',NULL), +(11185,'AEGS_Retaliator_Door_Screen_01','Decal','DoorPart','9ec430cd-2d83-4f61-a89a-f9e40f92f090','','',NULL), +(11186,'Adiva Jacket','Char_Clothing_Torso_1','UNDEFINED','0456e210-a99a-4708-b83c-103c1d02923a','','','Carrying Capacity: 1K µSCU\n\nDefine your ultimate you. The Adiva is an asymmetrical pullover with bold mixed-materials and solid reinforced trim.'), +(11187,'HeatSink','Cooler','UNDEFINED','4df4557d-6c24-421a-9db6-36d731dcffe4','','','Item Type: Cooler\nManufacturer: Tyler Design & Tech\nSize: 2\nGrade: C\nClass: Stealth\n\nThe HeatSink produces low signatures without sacrificing too much performance or durability, making it a reliable stealth component.'), +(11188,'TRGT. STATUS','Seat','UNDEFINED','9691ecc2-975f-46f7-a27d-9fe9460550a2','','',NULL), +(11189,'Corundum (Raw)','Cargo','Cargo','fdf2d12c-eafa-4eac-be26-c418e651bbad','','',NULL), +(11190,'INTK_MISC_Fortune','FuelIntake','Fuel','6df259b2-5df0-46de-b471-2ae611e3c024','','',NULL), +(11191,'Lost Wallet T-Shirt','Char_Clothing_Torso_0','UNDEFINED','845e1eeb-174a-4396-b368-4a0dacc5bf93','','','Scoundrels, scalawags, and scum gather at Grim HEX, so show that you\'re part of such illustrious company with the Lost Wallet shirt made from comfortable, synthetic cotton.'), +(11192,'DockingTube_Fuel_Ports_BANU_Defender','DockingCollar','UNDEFINED','fbe6aa73-d527-465f-adc8-642a4817ae34','','',NULL), +(11193,'M8A Cannon','Weapon','Gun','9937a13e-65d7-4ee2-8ce0-d027e999be97','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 6\n\nThe M8A laser autocannon exemplifies Behring\'s extensive history designing and constructing ship armaments. The result is a dependable and effective energy weapon capable of handling large skirmishes or precise defensive maneuvers.'), +(11194,'UDM Cargo Plushie','Misc','Flair_Wall_Picture','6490c0b0-b7ba-4ea0-abb0-7f1b4fbe897a','','','Here\'s a haul you can hug. This plushie shaped like a cargo container features Unified Distribution Management branding with the company\'s logo and white and purple color scheme.'), +(11195,'Steel','Cargo','Cargo','cdd37bb5-97a0-4089-8518-8e9f812e643f','','',NULL), +(11196,'Vulture Longhorn Livery','Paints','UNDEFINED','0c52ceb6-d267-4dd5-abd0-d546c4cca9f9','','','For the Vulture captain dedicated to a hard day\'s work, the Longhorn livery\'s black-and-burnt orange hull with rough silver highlights lend a classic industrial feel to the famed spacecraft.'), +(11197,'MSD-442 Missile Rack','MissileLauncher','MissileRack','f74933cf-181c-42d0-b7b9-e01f6340749c','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 4\nMissiles: 4xS2\n\nBehring’s MSD-442 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 4 hardpoint for the reliable and effective launch of four S2 missiles.'), +(11198,'ADP Legs Violet','Armor','Legs','1e1edec0-3bd3-45dd-a5c1-581ad4f12208','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(11199,'Torite (Ore)','Cargo','Cargo','f9a563ba-4437-4855-97e5-5387a54b8d6f','','',NULL), +(11200,'Mala','Cargo','Cargo','a89b60a1-0253-4bd0-ae99-94f20bc0635e','','',NULL), +(11201,'Ridgewalker Boots Navy Blue','Char_Clothing_Feet','UNDEFINED','338bedd9-831e-4e7c-bb29-9e0a121100f1','','','Functional style meets modern comfort with the Ridgewalker boots. Made with a lightweight yet durable synthetic leather, these boots feature a custom cushioned footbed and total traction soles that will keep you on your feet for hours. Fit for adventure or fashion the Ridgewalker boots are perfect for any occasion.'), +(11202,'AIModule_Unmanned_PU_NineTails','AIModule','UNDEFINED','888ff370-b005-4559-9c10-320bd8ade7c7','','',NULL), +(11203,'RSI_Aurora_LN_Thruster_SG_Main','MainThruster','FixedThruster','d24bb9ff-7a3b-47ee-8665-888411b6f30c','','',NULL), +(11204,'Seat','SeatAccess','UNDEFINED','5f35e976-b447-4169-850c-73cc8d76b860','','',NULL), +(11205,'Deep-Space Undersuit Bruiser','Armor','Undersuit','9fb6a5f1-f5ae-4ca7-ac11-02a23e56c59d','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nConfidently venture into the unknown with the Deep-Space undersuit. Smartly designed with several overlapping sections to guarantee the suit\'s integrity, Gyson has created an affordable and fashionable undersuit that helps make space travel more accessible to all.\n\nThe Bruiser version features dark crimson and midnight blue coloring with polished metal accents.'), +(11206,'Bottle_Liquor','Misc','UNDEFINED','e03c54dc-e198-4f24-b769-bf4b81d822d1','','',NULL), +(11207,'Anvil Gladiator','SeatDashboard','UNDEFINED','11b66d92-5eb2-42b9-bc16-9f6ee8c05561','','',NULL), +(11208,'AEGS_Retaliator_Thruster_Mav_Fixed_Front_Top_Right','ManneuverThruster','FixedThruster','7f695455-716c-4c0c-9aa6-9d137ac4d34b','','',NULL), +(11209,'CargoBox_050x050x050_Metal_StartTop','Cargo','Cargo','2296e12c-8f59-4e9f-8ad6-21744fab6407','','',NULL), +(11210,'Degnous Root','Cargo','Cargo','f5a8d50f-231b-40c6-9a3d-3ee9d40b08e3','','',NULL), +(11211,'Carryable_TBO_Creature_Trophy_vlkApexFang','Misc','Harvestable','68ccd2a1-6c7f-4373-af4f-501e7a7db99e','','','The valakkar continually sheds its teeth throughout its lifetime. As the animal burrows through the sand and catches prey, its teeth are frequently damaged. Once a new tooth finishes forming, it severs the connective tissue that was holding the old tooth in place, causing it to break off and fall to the ground. The fangs of the valakkar can also be extracted from the animal\'s mouth after its death. Collectors seek out the valakkar fangs for use in crafting various luxury items.'), +(11212,'MISC_Razor_LX_Thruster_Lateral','ManneuverThruster','FixedThruster','14a2eb30-82ea-4ca0-bbdb-24576c2534b3','','',NULL), +(11213,'Quell Suppressor2','WeaponAttachment','Barrel','121af95d-f791-42f8-bf26-c4ec73d65db4','','','Manufacturer: ArmaMod\nType: Suppressor\nAttachment Point: Barrel\nSize: 2\n\nHeat: -25%\nSpread: +7.5%\nAim Recoil: -22.5%\nVisual Recoil: - 22.5%\nAudible Range: -33%\n\nWith careful placement of high insulation materials to allow increased heat dissipation, the Quell Suppressor2 ensures you\'ll stay cool under pressure in favor of a slightly wider bullet spread.'), +(11214,'Tumbril Storm Turret','Turret','TopTurret','7ef065cf-e830-48c1-836d-089ed6cb4574','','',NULL), +(11215,'counter_display_mod_center_a_01x01x01_noTopPort','ShopDisplay','UNDEFINED','668b4bb4-7d9b-4246-899f-3e6c7ea3917b','','',NULL), +(11216,'H_Dashboard_Projector_HUD_CRUS_Spirit_A1','Display','UNDEFINED','e5dd8381-ca77-4595-a6f8-6a9e080d6aeb','','',NULL), +(11217,'ControlPanel_Screen_LightControl_Physical_NoAlarm','ControlPanel','DoorPart','bc8af3c6-60bc-4407-8530-2039c9a7ce0f','','',NULL), +(11218,'Wrecker Helmet Ashen','Armor','Helmet','25f43e4d-991c-4d20-aa5b-96bc375a02d9','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFavored by the most brutal of hunters, the Wrecker armor is a fusion of discarded metal and pilfered fabric cobbled together to offer protection while stalking prey. It features an intimidating and enclosed helmet with four eye-like red sensors to keep the wearer connected to the world around them.\n\nThe Ashen version is sprayed with white paint and anointed with bone fragments and Vanduul armor pieces.'), +(11219,'ForceFlex Undersuit Black/Gold','Armor','Undersuit','e8f87624-cf90-4c1a-811a-b789eb83b36c','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nVirgil\'s ForceFlex is the next generation in undersuit technology. Rated for combat as well as industrial work, you can rest assured that the comboweave will keep you protected in whatever situation you put it through.'), +(11220,'Levin Undersuit Electrum (Refurbished)','Armor','Undersuit','95c5685e-02c3-4730-9bfa-e7b5ea48de1c','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nFeaturing flexible gaskets for greater comfort and more natural movement, along with a convenient range of chest connector port options, the Levin from Caldera has been a practical choice for explorers everywhere. This particular undersuit has been repaired for extended use.'), +(11221,'Spiced Protein Stew Combat Ration','Food','Tin','58c88acc-7dc6-4069-a322-819bfc10f212','','','NDR: 64\nEffects: Hypertrophic, Hypo-Metabolic, Cognitive Boosting\n\nA single serving combat ration specially formulated to provide complete high-performance nutrition for UEE Army personnel.'), +(11222,'Door Control','DockingAnimator','UNDEFINED','926571fa-bffa-443d-b765-f06e5810a5aa','','',NULL), +(11223,'Table_Bench_4_AEGS','Usable','UNDEFINED','75a6fed3-1d4e-4d44-bb9a-647a563c9220','','',NULL), +(11224,'Ares Star Fighter Polar Camo Livery','Paints','UNDEFINED','34e27746-0cef-4eab-a97b-f24b04f3c452','','','Modify your Ares Star Fighter with this white and grey camo livery specifically designed for the 2951 IAE.'), +(11225,'Horizon Helmet Twilight','Armor','Helmet','f514397f-ccd3-49a1-854c-09412542a58b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Horizon helmet is a durable and robust environmental enclosed work helmet. The single sheet laminate dome gives you an extremely wide field of view. A pair of side-mounted LED light modules provide additional illumination to make sure you can see what you\'re doing.'), +(11226,'Table_Bench_7_AEGS','Usable','UNDEFINED','c96a7733-9873-4c7f-80a7-2269bf5bde8b','','',NULL), +(11227,'Table_Bench_8_AEGS','Usable','UNDEFINED','daf73d72-a2b3-4047-bed0-943fab16528b','','',NULL), +(11228,'Fortune Luminance Livery','Paints','UNDEFINED','5a20caf8-ca85-45a0-b81b-b6493c00066a','','','The cool white of the Fortune Luminance livery are offset by metallic greys and bright dashes of yellow.'), +(11229,'ARGO_ATLS_PowerSuit_SCItem_Seat_Driver','Seat','UNDEFINED','ad9758a5-9dfc-4f16-8b8e-f4ec12394a24','','',NULL), +(11230,'Attrition-2 Repeater','Weapon','Gun','ea6b4297-83a4-476f-aee0-9d4f87168cf7','','','Manufacturer: Hurston Dynamics\nItem Type: Laser Repeater\nSize: 2\n\nWhen the battle is heating up, that\'s when Hurston Dynamics\' cascade laser technology really shines. With the size two Attrition-2 repeater, an operator can utilize sustained bursts of laser fire in order to translate excess heat into greater weapon performance.'), +(11231,'Aurora Mk I False Colors Livery','Paints','UNDEFINED','9766d23a-8930-4734-bef2-d898e4a5bb75','','','Become a force to be reckoned with thanks to this livery which features a black finish, red and silver accents, and the intimidating visage of a skull.'), +(11232,'ORIG_315p_Intake','FuelIntake','UNDEFINED','e27e92cd-ad8d-4116-b93e-288044c0aa2e','','',NULL), +(11233,'PC2 Dual S4 Mount','Turret','NoseMounted','f10376d0-7068-4124-adf5-aabea4b69c43','','','PC2 Dual S4 Mount'), +(11234,'Vaux Module','MiningModifier','Gun','586a6f24-c94f-4cfc-9370-0df8a5ed3fe2','','','Manufacturer: Shubin Interstellar\nItem Type: Mining Module (Passive)\n\nExtraction Laser Power: 115%\n\nOptimal Charge Rate: -20%\n\nThe Vaux Module from Shubin Interstellar reduces the charge rate when mining but makes extracting valuable ore faster.'), +(11235,'Carryable_1H_SQ_Datapad_Fluff_Orb_HathorGroup_003','Misc','UNDEFINED','48e894b5-6a0f-4b0a-8906-b0f3b08a1a79','','',NULL), +(11236,'Test_OutpostMission_DataPad_KeyCode_4x3_Screen_Clue','Display','UNDEFINED','1f0bf2f0-a5c8-4308-a866-e9da32f567e3','','',NULL), +(11237,'game_checker_piece_double_b','Gadget','UNDEFINED','23d79324-2b33-4fa8-8fad-eb0beed144eb','','',NULL), +(11238,'Door Control','Door','UNDEFINED','ccf656b3-bffc-492d-8368-0eb17432cb20','','',NULL), +(11239,'Ammo Crate','Cargo','Cargo','ac3d6f79-258c-47fb-9fe0-8ece7babff68','','',NULL), +(11240,'display_grate_wall_a_s1_shipweapons','ShopDisplay','Default','58dfb504-45b8-4f0f-8952-b116591a51c1','','',NULL), +(11241,'Aztalan Tamarack Legs','Armor','Legs','91e1da4a-faf8-4b4f-b583-babb996f170e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nFear no frontier while wearing the Aztalan armor. This mixture of armor plating and reinforced fabrics will keep you safe yet swift on your feet. Tehachapi\'s masterful design gives the armor a subtle yet unmistakable frontier style that also providing ample storage. Suitable for everything from sand dunes to bustling backstreets, the Aztalan is the ideal choice for your next adventure.'), +(11242,'Year of the Monkey Envelope','Misc','UNDEFINED','7c0c019e-29f1-46c7-9adf-3733495d0e14','','','A gilded red envelope celebrating the Year of the Monkey. Exchanging these envelopes is one of the most popular ways of celebrating Red Festival. Often the envelope may include a small amount of credits inside to help those you care about have a strong start in the upcoming cycle. Growing in popularity is the newer tradition of hiding the envelopes as a way of spreading good fortune and prosperity to those that fate has deemed in need.'), +(11243,'Oracle Helmet Embark','Armor','Helmet','8b7770f5-b664-466b-80d8-1ed97923c0be','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(11244,'Snapback Boots','Char_Clothing_Feet','UNDEFINED','307628da-b47d-41df-84fc-b47fb0b23d87','','','Vibrant light green leather and bold metallic accents bring an eye catching look to the Snapback boots. Grindstone Boots\' classic thick, cushioned sole and an odor absorbing insole are complemented by a steel toe, magnetic clasps protecting the laces, and a metallic counter for additional support.'), +(11245,'One Light Undersuit Blue','Armor','Undersuit','57bea4cf-d6ab-45ae-82af-e44a0e577745','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nFeaturing durable poly-fiber fabric, a comfortable fit, and a special holiday design, this undersuit is the perfect thing to wear to any Luminalia party.'), +(11246,'Cordimon Jacket Aqua','Char_Clothing_Torso_1','UNDEFINED','9df3d60a-0708-4b9b-857b-85714c7af870','','','Carrying Capacity: 3K µSCU\n\nStegman\'s classic worker\'s jacket has been a staple of job sites for over seventy years. This duotone pattern is cut from the toughest material meaning you can wear it anywhere, anytime. It may not be armor, but it damn sure feels like it.'), +(11247,'MRAI_Guardian_Thruster_Mav_Top_MX','ManneuverThruster','FixedThruster','4ec2ed72-29d5-7b5a-478c-4e27d409e7ba','','',NULL), +(11248,'Bottle','Misc','UNDEFINED','6823c3ad-055b-4566-aa56-1292b3f36de6','','',NULL), +(11249,'Frost-Star XL','Cooler','UNDEFINED','bea66e66-0d30-4f9c-8eaa-b15002fb2299','','','Item Type: Cooler\nManufacturer: J-Span \nSize: 3\nGrade: C\nClass: Civilian\n\nAs your ship flies, components generate heat that can be damaging and even lead to system failures unless properly dealt with by a dependable and properly designed cooler like the Frost-Star XL from J-Span.'), +(11250,'Carryable_1H_CY_tool_manual_socket_1_a','Misc','UNDEFINED','59c2bab6-f224-4f0f-acc7-f4b314675c33','','',NULL), +(11251,'Personal Storage','Cargo','UNDEFINED','c3967c91-5a65-4f44-a647-4dffc0f0553c','','',NULL), +(11252,'Steel','Cargo','Cargo','ea4de041-27f4-4405-9be4-54ed2e4ada34','','',NULL), +(11253,'H_Dashboard_Projector_HUD_CRUS_Intrepid','Display','UNDEFINED','eead1877-8557-4a4d-9e59-bb97faae4474','','',NULL), +(11254,'ControlPanel_Screen_LightControl_9x16_col','ControlPanel','DoorPart','fd2064d1-51fb-4a31-a112-688d8376239a','','',NULL), +(11255,'Strata Helmet ArcCorp Black','Armor','Helmet','b05e445d-dc87-420b-93b7-5a6eb964b440','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design features high quality materials and a next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The ArcCorp Black variant was made specifically for the company.'), +(11256,'MXOX_NeutronRepeater_FiringMechanism_S3','WeaponAttachment','FiringMechanism','6768613e-5c87-4505-940e-5b4a96e3038b','','',NULL), +(11257,'RSI Constellation Painting','Misc','Flair_Wall_Picture','2c7b59c8-2c40-4dfe-97cf-9b99f1dd9f19','','','Rendered with incredible detail, this beautiful painting features RSI\'s iconic ship sailing through a tempestuous stretch of unexplored space.'), +(11258,'Door Control','Door','UNDEFINED','df956979-c941-483d-8410-33beb6c7efa6','','',NULL), +(11259,'FS-9 \"Stoneface\" LMG','Weapon','Medium','cd5b759f-5d1f-4a70-a47e-4153ad35e495','','','Manufacturer: Behring\nItem Type: LMG\nClass: Ballistic\n\nMagazine Size: 75\nRate Of Fire: 800 rpm\nEffective Range: 40 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S3)\n\nBehring designed the FS-9 to be an overwhelming battlefield force. This light machine gun features a full auto mode that makes it ideal for laying down covering fire or holding back advancing enemies. The FS-9 is also acclaimed for its ability to maintain accuracy while unleashing sustained fire. This entry in the Legendary Bounty Hunters line had famed tracker Farook \'Stoneface\' Norris design a look for his beloved FS-9 LMG featuring striking pops of red against a grey base tint.'), +(11260,'Fortuna Racing Flight Suit','Armor','Undersuit','e6511d9a-03ab-41c6-8d1f-5f8d2b4b879d','','','Item Type: Flight Suit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nNeed a bit of luck to help you cross the finish line? This Fortuna Racing Flight Suit in green with shimmering accents may be just the thing to turn your fortune around.'), +(11261,'Door Control','ControlPanel','DoorPart','efcb578e-eabd-46bc-8579-d6607d57d99a','','',NULL), +(11262,'Hardean Jacket and Shirt Sunday','Char_Clothing_Torso_1','UNDEFINED','8e0d98ad-7fe0-440e-9b32-1f1b1530533d','','','Carrying Capacity: 2K µSCU\n\nThis olive green and brown collarless synth-leather jacket from Escar Limited features quilted detailing around the opening and down the sleeves, and pairs effortlessly with a bold button-down, tropical-print shirt in light pink.'), +(11263,'RSI_Scorpius_Thruster_Main_Top_Right','MainThruster','FixedThruster','791b1713-a71c-4d79-9f90-f3f3045101d7','','',NULL), +(11264,'ANVL_Lightning_F8_Thruster_Main_Grey','MainThruster','FixedThruster','8390efa5-b95f-4887-a5ef-335176f2a87f','','',NULL), +(11265,'VNCL_Blade_Thruster_Aux_Fixed_01','ManneuverThruster','FixedThruster','5f63e356-b0bb-4d52-9dec-f60249845ab3','','',NULL), +(11266,'Dak Galbi Chicken Burrito','Food','Junk','d030076e-3747-4b1b-bb81-7eb1e5f1f98d','','','NDR: 34\nEffects: Dehydrating\n\nThis satisfying burrito features a tortilla wrapper filled with sweet and spicy chicken.'), +(11267,'Radar_Display_Hornet_F7CM_Mk2_CP','Display','UNDEFINED','af3cdd1b-2369-4db2-8acd-109bbc4c30b3','','',NULL), +(11268,'rod_torso1_03x01x04_18Ports','ShopDisplay','Default','d0f9e126-476e-4b01-af90-b7361963a4d7','','',NULL), +(11269,'ST-205 Missile Rack','MissileLauncher','MissileRack','0aacb3f5-96b3-43a1-b566-d537d9e6cebe','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 2\nMissiles: 8xS2\n\nTo further improve the defenses of the Origin 400i, Behring built the SNT-205 \"Santoro\", which can carry and deploy eight S2 missiles.'), +(11270,'DRAK_Cutlass_Steel_Thruster_Maneuver_Rear_Bot','ManneuverThruster','JointThruster','ef4986c1-c3e9-4eec-8c28-8aec74f2888d','','',NULL), +(11271,'SparkFire','QuantumDrive','UNDEFINED','83ecc7c9-7869-42c9-9b67-c58948a89e58','','','Item Type: Quantum Drive\nManufacturer: Ace Astrogation\nSize: 2\nGrade: C\nClass: Competition\n\nThe SparkFire quantum drive from Ace Astrogation delivers fined tuned performance at a reasonable price.'), +(11272,'RangeFinder Jacket Element','Char_Clothing_Torso_1','UNDEFINED','24eae38f-0ea4-4d51-96c6-e5d0dbadf682','','','Carrying Capacity: 3K µSCU\n\nThis insulation outdoor jacket from DMC is lined with reinforced padding to provide durable comfort for everyday wear.'), +(11273,'Seat','Usable','UNDEFINED','4915dbe9-c3d2-4e67-bb79-5af2754870d1','','',NULL), +(11274,'Libio Jacket White','Char_Clothing_Torso_1','UNDEFINED','48a1d3c4-1a77-4f02-96e6-80400cadf04e','','','Carrying Capacity: 1K µSCU\n\nOne of OpalSky\'s classic pullovers, the Libio features a two-tone asymmetrical pattern and polyweave blend to keep it elegant and striking every time you wear it.\n\nWomen\'s sizes currently out of stock.'), +(11275,'Inquisitor Core Blue','Armor','Torso','2c010f15-4e9b-481d-93ae-71ea4c739d69','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(11276,'DockingTube_RefuelNozzle_FuelGiver_MISC_Starfarer','DockingCollar','UNDEFINED','66cd26ca-7db5-402e-aaac-e391bdcb1def','','',NULL), +(11277,'Datapad','Misc','UNDEFINED','ad02c964-20bc-4c45-9da5-55b180cfe741','','','A portable tablet computing device featuring a touchscreen display.'), +(11278,'Door','Door','UNDEFINED','f130e12e-fd92-4ea9-ae88-06e1f2c98080','','',NULL), +(11279,'ASAD_DistortionRepeater_PowerArray_S1','WeaponAttachment','PowerArray','c8a3bfbd-b17d-4f90-b094-935c003a70df','','',NULL), +(11280,'Cody Gloves','Char_Clothing_Hands','UNDEFINED','80e5cf8b-b704-4e2c-ad4f-daf13490ba55','','','The Cody gloves are pros at keeping hands warm whether you\'re holding a multi-tool in a mine or an ice-cold drink at the bar. Made for frigid environments but stylish enough to be worn anywhere.'), +(11281,'Ventris Jumpsuit Crusader Edition','Char_Clothing_Torso_1','UNDEFINED','6b74d1d3-ab4b-46f3-af0a-4e2c90f494e9','','','Carrying Capacity: 1K µSCU\n\nThe Ventris is a sleek jumpsuit that mixes several rip and stain resistant polymer fabrics for a dynamic design. It also features a half-zip front and adjustable belt to ensure an ideal fit while the soft inner lining makes it an ideal choice for all day wear. The special Crusader Edition was made to be worn by employees of the company and features the sword and C logo on the front.'), +(11282,'Lt_DoorPanelScreen_Locked','Misc','UNDEFINED','b788cb4f-842a-4d33-84df-e59c81086f09','','',NULL), +(11283,'Jungle Quasi Grazer Egg','Misc','Harvestable','3a74229d-4654-43f7-8148-8c135f62b82b','','','A gourmet egg that is renowned for its complex flavor, it is always in demand from restauranteurs and gourmands alike. The flavor of the egg can vary depending on diet and environment. After the eggs are laid, their shells chemically bond to specialized pouches located on the Quasi grazer\'s belly, where they are carried until they hatch.'), +(11284,'Beacon Undersuit Red/Black','Armor','Undersuit','47a9fe47-405e-4828-bc2d-73192c6ef946','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRSI\'s Beacon undersuit is a general use utility designed to provide total protection against environments and vacuum. Built out of a durable but flexible polymers, the Beacon provides a wide freedom of motion for a variety of body types.'), +(11285,'H_Dashboard_Projector_HUD_RSI_Polaris_CP','Display','UNDEFINED','3f60da49-8614-4ad6-90aa-5527cc448612','','',NULL), +(11286,'weight_barbell_bumperplate_rack_1_a','Misc','UNDEFINED','258101bc-25ed-4710-9c34-9f12a61bcadd','','',NULL), +(11287,'Balor HCH Helmet Red','Armor','Helmet','5fc35e71-19ff-4e2a-9f82-f9c968721838','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. Visor is AR crosshair compatible.'), +(11288,'orig_bedding_duvet_3_g','Seat','UNDEFINED','b06a3f79-1efd-4b62-8517-248c7cb779b8','','',NULL), +(11289,'Chada Collar and Panniers Spruce','Char_Clothing_Torso_1','UNDEFINED','278abb41-ff29-4ade-a6f8-2cf34b40bb03','','','Carrying Capacity: 400 µSCU\n\nNeed extra inventory? We\'ve got you covered. Designed for hands-free carrying, the Chada Panniers by Habidash come with an adjustable strap that lets you securely attach them around your hips. Each set of panniers comes with a fashionable steel and leather gorget.'), +(11290,'GLSN_Shiv_Thruster_Retro_Right','MainThruster','FixedThruster','b8910d6f-16d2-48d2-9de0-70fdfccff0d0','','',NULL), +(11291,'Li-Tok Boots Green','Char_Clothing_Feet','UNDEFINED','a802e1fc-4d88-4f4c-8a68-771fd175b56c','','','Stylish yet rugged, NorthStar\'s Li-Tok boots are made from a composite nylon fabric, vulcanized rubber grips that hold fast to a variety of surfaces, and reinforced ankle support making these perfect for hanging out or on the job.\n\nWomen\'s sizes currently out of stock.'), +(11292,'Livia Shirt (Modified)','Char_Clothing_Torso_0','UNDEFINED','e9d6b566-1b0d-4074-9420-3f8042747ffd','','','This version of MuyMuy\'s Livia shirt has been modified from its original form. MuyMuy\'s loose hooded shirt is an ultra-modern take on a classic look. The Livia features a soft knit blend, designed for comfort and elegance.'), +(11293,'DockingTube_Fuel_Ports_AEGS_Vanguard_Hoplite','DockingCollar','UNDEFINED','a7bb37a3-5b80-4be2-aeab-0e0894315cca','','',NULL), +(11294,'Stormburst Bomb','Bomb','Utility','1b95523e-e2de-4de9-9b41-2cf79bfae59a','','','Manufacturer: FireStorm Kinetics\nItem Type: Explosive Bomb\nSize: 5\n\nWreak havoc on ground forces from the skies above, with the Stormburst. Designed by FireStorm Kinetics to maximize destructive impact at a more moderate size, these S5 bombs feature a mixed composite ordnance to decimate armored targets. The Stormburst also utilizes FireStorm Kinetics\' patented Atmo-Xact fins to ensure the payload reaches its target.'), +(11295,'Adiva Jacket Violet','Char_Clothing_Torso_1','UNDEFINED','cf63d187-71bb-4934-ba8b-c455f0350444','','','Carrying Capacity: 1K µSCU\n\nDefine your ultimate you. The Adiva is an asymmetrical pullover with bold mixed-materials and solid reinforced trim.'), +(11296,'Vehicle_Screen_MFD_Holographic_ORIG_400i_L','Display','UNDEFINED','c33db04e-9395-448a-8fdf-f72d218432b7','','',NULL), +(11297,'Citadel Arms Dark Red','Armor','Arms','de45351f-8bb1-4e5a-b7cc-e3e560d14ee6','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure.'), +(11298,'RSI_Apollo_Docking_Collar_Large','Door','UNDEFINED','4271f80f-1e9b-eb77-f05f-c420c4537f97','','',NULL), +(11299,'Vehicle_Screen_MFD_Holographic_ORIG_100i_L','Display','UNDEFINED','2eee634d-b5bd-4fc1-ba0b-c7fc2f85253c','','',NULL), +(11300,'Carryable_TBO_Creature_Trophy_vlkApexPearl','Misc','Harvestable','732174ca-e164-47f6-a19a-08deda6ab1f2','','',NULL), +(11301,'RSI_Constellation_Fake_Merlin','Container','UNDEFINED','038a6d91-7064-4c19-a2fb-dde328adaeeb','','',NULL), +(11302,'Maze','Cargo','Cargo','baad59ea-c25d-4b46-ba53-8400059491d9','','',NULL), +(11303,'MSD-683 Missile Rack','MissileLauncher','MissileRack','72b8b47b-d61f-4e07-9298-f20044f9508f','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 6\nMissiles: 8xS3\n\nBehring’s MSD-683 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 6 hardpoint for the reliable and effective launch of eight S3 missiles.'), +(11304,'Foundation Festival \'54 Coin','Misc','Utility','2feafc37-9768-4ac3-9631-d35ec6f3cd2f','','','This 2954 Foundation Festival coin honors those volunteers who endeavor to strengthen their community through charitable acts and features the program\'s distinct winged torch logo.'), +(11305,'Fractus Gloves Teal','Char_Clothing_Hands','UNDEFINED','62173a57-ce47-465a-bc03-e83dfbc2a4eb','','','Developed for work sites, but refined enough for everyday use, the Fractus gloves layer StretchStrong fabric for a tight yet breathable fit. Reinforced knuckle plating and scaled fingertips provide extra durability and a stylish flourish.'), +(11306,'StorageCage_Damage_ZeroG_Empty','Cargo','UNDEFINED','abe2cc34-d9fe-4050-9e98-399c2aecc2a0','','',NULL), +(11307,'Datapad','Misc','UNDEFINED','1c4242b7-0da8-4ded-80e1-0a4ac4bd56b7','','',NULL), +(11308,'ORIG_100i_Thruster_Retro_Right','ManneuverThruster','JointThruster','13961747-8cf7-4aaf-99f7-6632fed23783','','',NULL), +(11309,'Bannock Jumpsuit Black','Char_Clothing_Torso_1','UNDEFINED','25e0b4e7-f6da-4caa-b17b-23083b1ee697','','','Carrying Capacity: 1K µSCU\n\nThe Bannock jumpsuit combines comfort and durability. It features reinforced padding in critical areas, plenty of storage, and an adjustable belt to ensure a snug fit. Its unique design also includes a built-in secondary layer, allowing the wearer to unzip and cool down without fear of damaging their everyday clothes.'), +(11310,'ORC-mkV Legs Aqua','Armor','Legs','b5c3262c-936a-4f82-8b4a-ff97c3d1cafe','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(11311,'400i Penumbra Livery','Paints','UNDEFINED','0b98f172-5ab8-403b-8a82-093a96911833','','','Inky black and shimmering gold combine for the Penumbra livery, making it an elegant option for the 400i.'), +(11312,'Chokehold Gloves Sleet','Char_Clothing_Hands','UNDEFINED','2364ccda-e3fa-4d7a-a2cf-30af731705a2','','','When you can\'t afford to fumble. Flexible polyweave provide excellent grip plus ablative ceramic demi-gaunt reinforcement and close-fit cuffs. The Sleet version is dyed a well-worn grey to keep you subtle, but not unsightly.'), +(11313,'Ati Jacket','Char_Clothing_Torso_1','UNDEFINED','d410f968-8aed-4426-9120-a3fb4648c2e1','','','Carrying Capacity: 2K µSCU\n\nFiore\'s is a modern update of traditional Earth design. Slim tailoring, a high collar, and striking asymmetrical design make this overcoat a must-have item for any wardrobe.'), +(11314,'RSI_Zeus_ES_Thruster_Main_Top_Left','MainThruster','UNDEFINED','3473a99b-cf25-4d42-8655-491c1834dd36','','',NULL), +(11315,'Pitambu','Cargo','Cargo','7388e39d-b6e9-4dba-a4f2-68b924737c4f','','',NULL), +(11316,'Access','SeatAccess','UNDEFINED','5f66fa45-a93a-4bef-a941-9205de892a8a','','',NULL), +(11317,'Calister Jacket Shuttle Gray','Char_Clothing_Torso_1','UNDEFINED','fc251db0-c0ef-4df9-acf1-f5ee28b2f18f','','','Carrying Capacity: 1000 µSCU\n\nThe Calister Jacket by Habidash is made with thick synthetic fabric intended to ensure full body coverage. The cross-body panel that shapes the silhouette of the design provides additional insulation in harsher conditions.'), +(11318,'Door Control','Door','UNDEFINED','77f45e8a-4e2c-45c4-ad54-9f5f2e7b2e51','','',NULL), +(11319,'Overlord Legs Flashback','Armor','Legs','0a5b19d8-2e51-425e-bba9-83485d91a7f0','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.\n\nThe Flashback edition is predominately white with orange accents and black joints.'), +(11320,'Seat','Usable','UNDEFINED','9aafdcaa-0fb1-422d-b032-aeddd69af4d3','','',NULL), +(11321,'MISC_Door_Decal_Hull_A_Airlock','Decal','DoorPart','7586c17c-10bd-4e16-9c5a-c11eb4cc8d75','','',NULL), +(11322,'Glacosite','Misc','Harvestable','ae6d8d74-04fa-4d21-9991-4232f8eb2cfe','','','As glaciers form, heavier mineral contents sink over time and are then crushed by the weight above as the ice deforms and flows. When the glacier recedes, Glacosite deposits are left behind. White and blue in color, the crystals form in long shiny strands that almost are cotton-like in appearance. Glacosite has found specialized commercial use since it is an extremely light and durable insulator.'), +(11323,'Remote Turret','Turret','GunTurret','a0571aa6-f71f-4465-a38a-44005e372ccc','','','Remote Turret'), +(11324,'ADP-mk4 Helmet Righteous','Armor','Helmet','40db1cc3-db01-4c3c-97a7-3f6a902c4d99','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nBased on CDS\' ADP-mk4 heavy combat armor, this set has been modified from its original form. When there\'s a difficult job at hand, you want to ensure that you can see it through to the end. This armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers. Visor is AR crosshair compatible.'), +(11325,'Esteril Lab Coat ASD Edition','Char_Clothing_Torso_1','UNDEFINED','7f85c5a3-101f-4a8c-ab27-ad8a45dc671b','','','Carrying Capacity: 2K µSCU\n\nThe Esteril Lab Coat from luxury brand Fiore dares to answer the question, \"Should laboratory clothing be fashionable?\" with a resounding, \"Yes.\" Based on the bestselling Ati Jacket, this coat features slim tailoring, a high collar, and striking asymmetrical design.'), +(11326,'he_a_wall_low_left_a_center','ShopDisplay','UNDEFINED','d561126f-da6c-498f-817b-6de3dd927925','','',NULL), +(11327,'Door','Door','UNDEFINED','6da456b4-79b8-4d82-a699-b9e09d45b0b7','','',NULL), +(11328,'Internal Tank','QuantumFuelTank','QuantumFuel','0ac5b393-3462-41a3-ab4f-7940e1de6ac1','','',NULL), +(11329,'display_guns_scopes_04x01x01_2_4Ports','ShopDisplay','UNDEFINED','8383cd52-c55f-47c5-aa61-ab2016bc9f39','','',NULL), +(11330,'Remote Turret','Turret','BallTurret','975fb594-5a96-4f42-bb79-554668e9e0a6','','','Multitask on the battlefield with this remote turret system. Featuring precise controls and a wide field of fire, the turret allows pilots to add combat support to their resume.'), +(11331,'Lynx Legs Sandstorm','Armor','Legs','fd1367e0-9c11-418f-8a34-bcbfad550b78','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(11332,'Cumulus Pants Teal','Char_Clothing_Legs','UNDEFINED','05d2d567-0575-42b4-803b-88655162c6f0','','','Temp. Rating: -35 / 15 °C\nCarrying Capacity: 3K µSCU\n\nBe bold and brave the cold with Cumulus pants. Designed with a synthetic fabric that insulates the inside and wicks away moisture from the outside, these pants provide protection against temperature drops to -35 °C.'), +(11333,'Seat','SeatAccess','UNDEFINED','5feb8526-754b-4154-ad17-ce2a66a04a4b','','',NULL), +(11334,'Parallax \"ArcCorp\" Energy Assault Rifle','Weapon','Medium','60a7a08c-9450-421e-ae10-3acf1b0686f0','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Assault Rifle\nClass: Energy (Electron)\n\nBattery Size: 80\nRate of Fire: 200 rpm - Beam\nEffective Range: 30 m\n\nAttachments: Optics (S2), Underbarrel (S2)\n\nWith the Parallax, VOLT offers consumers a rugged assault rifle design with features like a larger-than-average battery and a unique actuator that enables the weapon to scale up into a persistent beam as it fires. This special edition features ArcCorp branding.'), +(11335,'Door Control','Door','UNDEFINED','021d1d15-5648-4d2e-ade1-d19969025ee8','','',NULL), +(11336,'GAMA_Syulen_Headlight_Top','Misc','UNDEFINED','ae3fc01a-ee78-4dbf-8bc7-5149ae64b3bd','','',NULL), +(11337,'Door Control','ControlPanel','DoorPart','02ea923b-c288-4a1a-a96f-d53a9bc7227f','','',NULL), +(11338,'Combat Supplies','Cargo','Cargo','623b4e75-7221-4db3-9410-a5972b80cbea','','','A variety of items assembled to support combat forces, such as ammunition, structural repair tools and clothing.'), +(11339,'ARGO_MOLE_Thruster_Mav_Joint','ManneuverThruster','JointThruster','ca2c842a-4c3d-4291-aefa-9c37d6d53635','','',NULL), +(11340,'Testudo Arms Combustion','Armor','Arms','7ad4b3e9-343d-4fc5-a4a7-951350eef978','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Testudo armor for Quirinus Tech blends battlefield durability with everyday comfort. It weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort.'), +(11341,'Pingala Seeds','Cargo','Cargo','1ed06f81-6b41-4107-84b1-18fa3c8c97c0','','',NULL), +(11342,'GRIN_ROC_CargoGrid_Main','Container','Cargo','a3ea3ede-23a3-410d-a576-175d25949c17','','',NULL), +(11343,'MC-DFA Hat','Char_Clothing_Hat','UNDEFINED','61346f85-70eb-4442-9634-ab67e2a70b86','','','This military cadet hat from CBD blends lightweight fabric and leather for a striking design. Featuring a white skull offset on the front and \"Death From Above\" on the side.\n\nWomen\'s sizes currently out of stock.'), +(11344,'AEGS_Redeemer_Storage_Decal_01','Decal','DoorPart','fe3767b9-2afb-4ce6-8799-0aeaae1b5dda','','',NULL), +(11345,'Miner\'s Horn','Misc','Harvestable','332b51c6-d1da-476f-960c-f76154c0cf5f','','','First discovered in the sewer lines at the QV Mining Station built into the Delemar asteroid in Nyx, this quick growing fungus has become a useful manufacturing component for the settlers of Levski thanks to the strong mycelium fibers that can be dried and used in a variety of ways.'), +(11346,'Omarof (16x Telescopic)','WeaponAttachment','IronSight','ab80732a-c829-45e7-92c0-2f4893a8f1f8','','','Manufacturer: Lightning Bolt Company \nType: Telescopic\nAttachment Point: Optic \nMagnification: 16x\nAim Time: +0%\nSize: 3\n\nGet a crystal clear view of distant targets with this powerful telescopic scope from Lightning Bolt Company. Designed specifically for the Atzkav Sniper Rifle, the Omarof uses ultra-precise laser etched lenses that are then multi-coated to allow for high light transmission, wide sight picture and crisp colors, providing strikingly sharp images across significant distances.'), +(11347,'DockingTube_Fuel_Ports_ARGO_MOLE','DockingCollar','UNDEFINED','dcc5827c-2d51-44bd-b821-f1223d36aa18','','',NULL), +(11348,'Seat','Usable','UNDEFINED','8e04c557-4715-4e2e-8f53-2e8df3358e27','','',NULL), +(11349,'TRGT. STATUS','Seat','UNDEFINED','01cb781b-9e46-4c12-93e9-aea749092570','','',NULL), +(11350,'sc_nvy_bdu_jumpsuit_02_01_20','Char_Clothing_Torso_1','UNDEFINED','3b0e29a1-ecee-4182-b705-aca2be69a62a','','',NULL), +(11351,'Lynx Core Imperial','Armor','Torso','588b2565-ae51-4bc1-85e2-ffaebba632f5','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(11352,'Quantity','Misc','UNDEFINED','1c2cf175-30bb-4860-a2c6-d3d8f42a9646','','',NULL), +(11353,'RSI_Bengal_Thruster_Retro_Main_Right','ManneuverThruster','JointThruster','94f8e005-ce15-4429-9878-6da902129920','','',NULL), +(11354,'Lindinium (Ore)','Cargo','Cargo','7ad7a688-93d1-4daa-8f83-6be34f88f14e','','',NULL), +(11355,'BEHR_LaserRepeater_FiringMechanism_S10','WeaponAttachment','FiringMechanism','f7e2ec51-931a-47f3-b71f-07b7313bafd5','','',NULL), +(11356,'Samya Tank Birch','Char_Clothing_Torso_0','UNDEFINED','271af0de-8a7a-4b7f-b597-54d8bad90e1e','','','This Samya Tank is your perfect staple for hot weather. Made with soft and breathable fabric, it features moisture-wicking technology and reinforced binding at the openings to protect it from wear and tear. A detachable sleeve is included with each shirt.'), +(11357,'Seat','SeatAccess','UNDEFINED','89a1c5f2-c9ef-4499-8aa0-1f1b705e3310','','',NULL), +(11358,'Counter_Bar_1m_shelf_DEPRECATED','Usable','UNDEFINED','0a445bd5-c5ac-43ed-9681-13f1aa1bdc09','','',NULL), +(11359,'Hermes Navarra Livery','Paints','UNDEFINED','a1d7c68e-af12-4a8c-876c-0fdc73040fb5','','','Evoking the sandy browns of an arid savanna, the Navarra livery is offset with a splash of bright blue.'), +(11360,'Neograph','Cargo','Cargo','a02c059e-bff1-42a9-b3cb-c15794757d65','','',NULL), +(11361,'Fortifier Helmet Roughshod','Armor','Helmet','93cc91da-f89d-4fd8-805b-2ad85db26e6c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nProtect your most valuable asset with the Fortifier. Intended for extremely hostile environments, this heavy helmet makes up for its limited visibility with extra plating that protects the neck and back of the head.'), +(11362,'Vacha Jacket Midnight','Char_Clothing_Torso_1','UNDEFINED','cd02c7b4-c103-4db2-85d5-ee241ec25b2e','','','Carrying Capacity: 400 µSCU\n\nThe Vacha jacket offers the wearer an admirable degree of comfort across a wide range of environments thanks to its sealed cuffs and utility neck collar. Additionally, the rugged design features a sealed cross closure, incorporated belt, and auxiliary ports. The garment\'s sheer durability and utility has cemented the Vacha jacket as a perennial favorite in Habidash\'s collection.'), +(11363,'Door Control','Door','UNDEFINED','5f34a55c-fde9-44d7-b29f-6b42e023cf0a','','',NULL), +(11364,'CRUS_Spirit_Door_Decal_PowerPlant','Decal','DoorPart','2385af23-43fc-4d6b-b6f6-61f6722e8416','','',NULL), +(11365,'Locker_Shallow_WallRight_AEGS_NoWall','Misc','UNDEFINED','7ef4b77c-3b02-4df2-95d7-1869e81ad81b','','',NULL), +(11366,'Weapon Rack','Usable','UNDEFINED','da779de9-844e-46e2-a9a1-537b6ca2053f','','',NULL), +(11367,'Balor HCH Helmet Olive','Armor','Helmet','bd9a0eba-9da9-46a6-a100-318e9f8c1da2','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. Visor is AR crosshair compatible.'), +(11368,'AEGS_Door_Decal_MessHall_Single','Decal','DoorPart','1149dca5-05f4-4405-bb87-49c5c05af7da','','',NULL), +(11369,'INTK_CNOU_Mustang_Alpha','FuelIntake','Fuel','bbcbe77b-1be2-42ce-8cca-c4aa04b5ea8b','','',NULL), +(11370,'MISC_Hull_C_Dashboard_Tractor','SeatDashboard','UNDEFINED','82f39cb2-b073-465c-91a4-8ba7a8b01626','','',NULL), +(11371,'Shimmer','Shield','UNDEFINED','ecc8d200-548c-4de0-a60e-d1e316515170','','','Item Type: Shield Generator\nManufacturer: Ascension Astro\nSize: 1\nGrade: C\nClass: Stealth\n\nAscension Astro is known for one thing — quality stealth components. Their Shimmer shield generator was built not only to help avoid detection, but also provide protection when needed most.'), +(11372,'AEGS_Door_Decal_CapQ','Decal','DoorPart','68b97bde-44d0-495f-8e64-a9aff2700a47','','',NULL), +(11373,'Door Control','ControlPanel','DoorPart','d2c0f090-1191-4a2d-9c92-c92e44b46f14','','',NULL), +(11374,'Door_Ship_Sensor_Proximity_6x4x2','Sensor','DoorPart','4d7474bc-364d-4b97-88d6-8e644a0e40a1','','',NULL), +(11375,'MPUV-1P PHB Flight Blade','FlightController','UNDEFINED','c3aab17a-cc16-4c8a-afae-0ffa0a5eb3f0','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Argo MPUV-1P with the PHB Flight Blade from Broad & Rabiee. By re-allocating forward thrust resources, you can expect your ship deliver increased precision handling during tight maneuvers.'), +(11376,'Door Control','Door','UNDEFINED','715fd0ff-2e94-4a1c-bc6b-9e8eaa9538e3','','',NULL), +(11377,'Intrepid Nocturne Livery','Paints','UNDEFINED','ee6b42a1-df1d-47fa-b898-5ee452bc9868','','','Bold blue highlights pop against the black base paint of the Nocturne livery.'), +(11378,'PAB-1 Legs Greycat Edition','Armor','Legs','63de3464-11ee-45df-bc7c-1ef4df879a91','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile. The Greycat Edition was made specifically for the company.'), +(11379,'Stronghold','Shield','UNDEFINED','3a2e37f0-dc95-4082-b74d-fe968ed64eb3','','','Item Type: Shield Generator\nManufacturer: Basilisk \nSize: 3\nGrade: C\nClass: Industrial\n\nThe Stronghold shield generator uses patented hull plating techniques to reinforce the generator’s body to make it one of the sturdiest on the market. That means the shield and component are both built to last.'), +(11380,'DoorProximitySensor_8x3x3','Sensor','DoorPart','526b8d86-ed70-4ca8-97b8-88b2557d7514','','',NULL), +(11381,'PAB-1 Arms Black','Armor','Arms','8a24e0e2-7bba-4e95-879d-6c864a6d758a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(11382,'RSI_Polaris_SeatAccess_ATC','SeatAccess','UNDEFINED','f355bd06-c6bd-4f3d-8fca-c19716981889','','',NULL), +(11383,'AAT-34 Turret','Turret','MannedTurret','24c9fd70-995e-4b66-9ccd-0c65992ebf66','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(11384,'Door','Door','UNDEFINED','c58ea601-320c-4a24-a994-c1ca13d663dc','','',NULL), +(11385,'Gamma LL (1x Holographic)','WeaponAttachment','IronSight','d5da6ad7-8013-4db0-a75e-3060f7d987db','','','Manufacturer: NV-TAC\nType: Projection \nAttachment Point: Optic\nMagnification: 1x\nAim Time: +15%\nSize: 1\n\nWhether under the blazing sun or on the dark side of a moon, the NV-TAC Gamma projects an easy to see reticle to help ensure your shot finds its mark. This version of the scope includes low-light functionality suitable for operations in dim environments.'), +(11386,'Anvil Noise Launcher','WeaponDefensive','CountermeasureLauncher','f77baf89-8edc-4c1c-b385-5827ee44d112','','','Anvil Noise Launcher'), +(11387,'ORIG_125a_Thruster_Mav_Right','ManneuverThruster','FixedThruster','2fa5dc80-65a0-43d0-b099-4ff4b01a7d08','','',NULL), +(11388,'ammoCrate_01Port','ShopDisplay','UNDEFINED','48e5b64b-958c-400b-97e7-42bbef21d1db','','',NULL), +(11389,'Cargo_Comm_125x3_Metal_Aluminum_a','Cargo','Cargo','c832b978-2f4a-4121-8c26-0f8ed3c821f6','','',NULL), +(11390,'ESPR_Talon_Thruster_Main_TR','MainThruster','FixedThruster','1e8c3a62-2f24-4fb1-904e-469726d8a4f1','','',NULL), +(11391,'Carryable_1H_CY_subi_dain_sasu_s01_pl01_100','Misc','UNDEFINED','c44c0121-d9ba-4ac5-929c-3c6fb4dbafcb','','',NULL), +(11392,'AEGS_Retaliator_SCItem_Seat_Bed_Lower_Left','Seat','UNDEFINED','87e8d6ec-fa29-47df-be5c-f585b07d16bb','','',NULL), +(11393,'Stirling Exploration Backpack Sediment Edition','Armor','Backpack','1eb980e9-1cad-41f5-b01f-d1c1d00d7c68','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nThis heavy duty backpack is compatible with the Stirling suit and provides a convenient storage solution. The Sediment Edition blends reds, blacks, and grays reminiscent of clay and other planetary minerals.'), +(11394,'RSI_Hermes_Nacelles_Mount','AttachedPart','UNDEFINED','09cafb8c-1575-4fa2-939a-aa17a3a0c16d','','',NULL), +(11395,'MASTER_lt_tank_1SCU','Cargo','UNDEFINED','002846b9-b085-4489-a699-dcc9ff572a85','','',NULL), +(11396,'AEGS_Redeemer_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','d59fbcef-e64e-40fb-9acb-56a062c488e9','','',NULL), +(11397,'Diamond','Cargo','Cargo','27e1d544-c7f9-4293-b1e2-6298aff53be0','','',NULL), +(11398,'SHIELDS','ShieldController','UNDEFINED','8b749dab-6806-4970-a8db-99da054bcb98','','',NULL), +(11399,'Manned Turret','TurretBase','MannedTurret','8a296bd2-a47c-4ce7-829b-b5eb5a6ad5ed','','',NULL), +(11400,'Weapon_Rack_ANVL_Hawk_1Slot','Usable','UNDEFINED','2ca31d21-be4d-4647-b20b-61e22a7828ea','','',NULL), +(11401,'Lt_A_Airlock_GreenZone','Usable','UNDEFINED','6bdb2541-2233-43b3-b9c5-0aed1475a4b4','','',NULL), +(11402,'Seat','SeatAccess','UNDEFINED','1e397b62-635f-477a-85f7-3af47e32c11d','','',NULL), +(11403,'cbd_main_hall_display_case_1_S3Port_2_S1Ports','ShopDisplay','Default','c36169f9-8fa0-4427-a718-abc49b3066d5','','',NULL), +(11404,'Quartz \"GCD-Army\" SMG','Weapon','Medium','d18fdc66-e468-409f-8349-9fc547c60158','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: SMG\nClass: Energy (Electron)\n\nBattery Size: 45\nRate of Fire: Beam\nEffective Range: 15-20 m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nManufacturer VOLT\'s Quartz SMG utilizes exciting new weapon technology that fires a short range beam that fractures into multiple beams the longer it fires, making it an extremely effective close quarter weapon.\n\nThis \"GCD-Army\" edition has yellow wiring and is decorated with a dark and light gray digital camo pattern.'), +(11405,'Twenty-Sided Die Ship Manufacturers','Misc','UNDEFINED','d15b41ac-67b2-4325-845f-bf312153d7fe','','','When you have too many choices in your hangar, this fun novelty die is a great way to decide what to pilot. Rolled along a surface, this twenty-sided die will display the logo of a ship manufacturer or the Intergalactic Aerospace Expo. If you get the IAE logo, we suggest taking your newest vehicle out for a ride.'), +(11406,'Assailant IV-G Missile','Missile','GroundVehicleMissile','8814fe40-39c1-43c0-8ad4-5bad1c2a2c5c','','','Manufacturer: Talon \nTracking Signal: Cross Section \nSize: 4 \n\nThe Assailant missile from Talon is a perfect weapon solution for precision strikes against motivated opponents. Note: This missile may only be launched by ground vehicles.'), +(11407,'Counter_Bar_1m_tap_DEPRECATED','Usable','UNDEFINED','cccf3fd9-70a5-49b0-b74d-90755bba237a','','',NULL), +(11408,'Datapad','Misc','Gadget','907d775d-8fac-4704-95a2-33d011897c60','','','A portable tablet computing device featuring a touchscreen display.'), +(11409,'Flight Blade','FlightController','UNDEFINED','62ee1944-9df6-4e60-a912-2fff1d3abaa1','','',NULL), +(11410,'Guerra Pants Stonewall','Char_Clothing_Legs','UNDEFINED','08bc4ddc-87ec-4c29-8244-159b51efc406','','','The Guerra pants by Alejo Brothers are a staple for daily wear. The synthetic fabric ensures adequate protection from the general wear and tear of frontier life while remaining easy to patch up if the need arises.'), +(11411,'ThermoWeave Gloves ASD Edition','Char_Clothing_Hands','UNDEFINED','0673155b-2b19-4e2a-ad79-e6a42305b6f8','','','The ThermoWeave gloves were designed with a special multilayer weave and extra insulated padding on the palm and fingers for additional protection when touching hot objects.\n\nWorn by employees who require an extra level of protection in their field, the ASD Edition showcases the reds and greens of the ASD branding.'), +(11412,'Internal Tank','QuantumFuelTank','QuantumFuel','27bdfdae-097a-4072-84f2-9a369ac6e986','','',NULL), +(11413,'TRGT. STATUS','Seat','UNDEFINED','2f9a285d-9949-4f5e-98a7-e1200b3a1a14','','',NULL), +(11414,'Crusader Mercury Star Runner Nose Turret','Turret','BallTurret','bb009a7b-bbce-4f41-a8d5-6cb0a80f7182','','','Item Type: Turret\nManufacturer: Crusader Industries\nSize: 3\n\nThis pilot-controlled, dual-linked nose turret is mounted to the belly of the Mercury Star Runner. Bespoke to the ship, the turret is outfitted with two size-3 laser repeaters ready to help keep your flight path clear.'), +(11415,'Seat','Usable','UNDEFINED','ad03f538-4e3c-40d9-b8e7-52cab05ca657','','',NULL), +(11416,'Bucket_Ice_1_rsi_a','Misc','UNDEFINED','8f46ef1c-d3ef-4d7a-892b-c6f65c1daa88','','',NULL), +(11417,'Zeus Mk II Sunswept Livery','Paints','UNDEFINED','bc38563b-284d-4437-8095-9088073236ad','','','Proclaim your presence with the Sunswept livery for the Zeus Mk II, which features a vibrant yellow with black highlights.'), +(11418,'Strata Legs Greycat Edition','Armor','Legs','034569d7-8453-4d9d-b018-18ea66eac310','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 10k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Greycat Edition features the colors and logo of the company.'), +(11419,'AEGS_Idris_RADR_Display','Display','UNDEFINED','11012ab2-2bc5-49e3-b129-9c311e9d93f5','','',NULL), +(11420,'Potassium','Cargo','Cargo','81e45e4e-4df6-4193-ba07-b9ef30589083','','',NULL), +(11421,'Flight Blade','FlightController','UNDEFINED','c32625a3-dba8-4b93-aad8-5ad4c67b25db','','',NULL), +(11422,'Methane','Cargo','Cargo','12e66c82-af0f-4408-9e5d-c75cf7a9006d','','',NULL), +(11423,'Seat','SeatAccess','UNDEFINED','1226848b-1c40-48fb-82a2-53e324e3aff1','','',NULL), +(11424,'AEGS_Redeemer_SCItem_Support_Seat_Rear','Seat','UNDEFINED','1c0868f9-9483-491c-aa9b-d6a756ae7bfc','','',NULL), +(11425,'AEGS_Vanguard_RADR_Display','Display','UNDEFINED','389a44a0-7a37-4352-9c85-117d1c02e74c','','',NULL), +(11426,'Lt_D_Airlock_Op_Small','Usable','UNDEFINED','bcd7b278-b858-46f7-9c89-9b666ae90745','','',NULL), +(11427,'Aril Helmet','Armor','Helmet','b07c855e-79ac-4c5c-b7b7-aa8df9b1a987','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(11428,'Seat','Usable','UNDEFINED','83c778da-f495-43db-92ed-63afb67d8ed7','','',NULL), +(11429,'Hawk Timberline Livery','Paints','UNDEFINED','050ac7fc-09cc-4723-8109-6544e960153a','','','Customize your Hawk with the Timberline livery that\'s olive green with orange accents.'), +(11430,'Bed_MISC_Starfarer_Gemini_Crew','Usable','UNDEFINED','6f332438-9104-4378-81e6-2390aaec6add','','',NULL), +(11431,'RSI_Hermes_SeatAccess_Tractor_Station','SeatAccess','UNDEFINED','63201dbc-981a-4874-ad4e-261296846fad','','',NULL), +(11432,'Palatino Backpack Metropolis','Armor','Backpack','62f4655f-7fbb-40c0-92bb-9bf82d531fe8','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. The associated backpack seamlessly integrates into the armor, matching its silhouette while also providing ample storage.'), +(11433,'BANU_TachyonCannon_FiringMechanism_S2','WeaponAttachment','FiringMechanism','8f3fe3ad-f671-415d-a97c-7d43f733e805','','',NULL), +(11434,'HRST_LaserRepeater_Barrel_S1','WeaponAttachment','Barrel','110bb508-2042-4290-85f0-f045d999c448','','',NULL), +(11435,'sc_nvy_commodore_bridgeofficer_hat_01_01_01','Char_Clothing_Hat','UNDEFINED','f55d0aab-0009-4885-9370-6bfe319dbd74','','',NULL), +(11436,'Controller_Mining_Vehicle','MiningController','UNDEFINED','e6e717b9-6fcf-4002-bafa-c7ac6aea9f29','','',NULL), +(11437,'Railing_Straight_4m_Lowtech_Guardrail_C','Usable','UNDEFINED','08dd1801-a7fc-4642-880c-70de6feb9abf','','',NULL), +(11438,'Polaris Apex Livery','Paints','UNDEFINED','566f7415-fc71-4141-9b89-a0eb1a7f16c8','','','Equip the Apex livery to give the mighty Polaris a distinct green and grey look.'), +(11439,'AEGS_Redeemer_Thruster_Main_Right','MainThruster','FixedThruster','3104f043-26b8-49ee-b348-299ae739d6e2','','',NULL), +(11440,'SalvageInternalStorage','SalvageInternalStorage','UNDEFINED','01bbe184-3534-40b7-9311-735ae5844fd6','','',NULL), +(11441,'VNCL_Stinger_Thruster_Aux_Fixed_02_Bottom','ManneuverThruster','FixedThruster','0ea89a89-57b3-4eb1-8a96-24b401afb627','','',NULL), +(11442,'Salvation Safeguard Livery','Paints','UNDEFINED','65b10317-c5b2-43a6-b32b-f4a0ea20778c','','','The colorful industrial design of the Safeguard livery for the Salvation includes a vibrant blue and yellow stripes.'), +(11443,'AEGS_Hammerhead_Thruster_Mav_Fixed_Left','ManneuverThruster','FlexThruster','91bbb14b-040c-4723-b362-6c0a7acbf05c','','',NULL), +(11444,'table_glass_1_b_2_Seat','Usable','UNDEFINED','63069bcf-2bbd-412e-b26d-87eee108cf17','','',NULL), +(11445,'Flight Blade','FlightController','UNDEFINED','345b1dd3-207f-46dd-97dd-fa2dab471e1b','','',NULL), +(11446,'table_glass_1_b_3_Seat','Usable','UNDEFINED','5b1ed398-fee9-4acd-83aa-bc50117bf413','','',NULL), +(11447,'EX-T12-EM \"Executor\" Torpedo','Missile','Torpedo','f3a369d7-b39a-4ab0-9265-224d994bb5bd','','','Manufacturer: Behring\nTracking Signal: Electromagnetic\nSize: 12\n\nBehring prides itself on crafting ordnance that is as dependable as it is powerful and the EX-T12 \"Executor\" is no exception. Designed as an anti-ship and anti-installation weapon, Behring engineers worked tirelessly to ensure this torpedo was a bold strategic statement.'), +(11448,'Foundation Pants Desert','Char_Clothing_Legs','UNDEFINED','ea8aa707-ceb2-4690-a418-ad3ab8f25b55','','','Carrying Capacity: 1K µSCU\n\nDMC\'s Foundation line is just that; the foundation for your work wear. Featuring a simple, elegant cut with easy-access pockets, the Foundation is both professional and functional.\n\nWomen\'s sizes currently out of stock.'), +(11449,'LeMarque Pants Grey','Char_Clothing_Legs','UNDEFINED','18d2af08-b04a-4500-8041-50f361749e44','','','Carrying Capacity: 0.5K µSCU\n\nClassic cuts never go out of style. A staple of any wardrobe, Derion\'s LeMarque are built for work or play and feature microseam pleats and wrinkle-free material that will guarantee that you\'ll get years out of this classic.\n\nWomen\'s sizes currently out of stock.'), +(11450,'Whamburger D-Lux','Food','Junk','d5301c1a-01c1-41f8-82e4-9561dc25fb56','','','NDR: 38\nEffects: Dehydrating, Hyper-Metabolic\n\nTake your whamburger up a notch and make it D-Lux with twice the meat and double the cheese. All Whams come with crisp greens, tomatoes, piccamix, and Crave Sauce.'), +(11451,'Potassium','Cargo','Cargo','d02ecfa2-0762-43e7-a457-497fb6ab09d1','','',NULL), +(11452,'Projector_HUD_Mining_ROC','Display','UNDEFINED','af5f7f3a-037c-4f3e-aae3-fd508c147338','','',NULL), +(11453,'Hammerhead Polar Camo Livery','Paints','UNDEFINED','225e3679-0cc9-4076-bebf-b74531410e68','','','Modify your Hammerhead with this white and grey camo livery specifically designed for the 2951 IAE.'), +(11454,'Gadget_Cabinet_kegr_fire_extinguisher_01_med_high','Usable','UNDEFINED','421b5bb2-93e1-4f14-b248-8017bb524b07','','',NULL), +(11455,'Sag Paneer Combat Ration','Food','Tin','ff07c63e-3963-4733-8497-22956cbf2fbc','','','NDR: 64\nEffects: Hypertrophic, Hypo-Metabolic, Cognitive Boosting\n\nA single serving combat ration specially formulated to provide complete high-performance nutrition for UEE Army personnel.'), +(11456,'AEGS_Vanguard_Sentinel_Thruster_Retro','ManneuverThruster','FixedThruster','a1ccf90c-8ab2-485d-a7bc-5022775eafb8','','',NULL), +(11457,'Radar_Display_MISC_Razor','Display','UNDEFINED','04c974b0-8f45-41dc-a1a4-d13212b84b38','','',NULL), +(11458,'M9A Cannon','Weapon','Gun','af019617-94ee-4a91-b62b-124c93f2a45e','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 7\n\nStrike at the very heart of your enemies with the devastating impact of Behring\'s M9A energy autocannon. When fully charged, the massive stopping power of this laser weapon has the potential to halt even capital ships in their tracks.'), +(11459,'AEGS_Door_Decal_Hangar_04','Decal','DoorPart','4948c6b0-788f-4250-91b3-4b918229cda4','','',NULL), +(11460,'Aegis Avenger Stalker','SeatDashboard','UNDEFINED','2057a35e-7531-4cd8-a80a-af8e9651dcbc','','',NULL), +(11461,'ANVL_Valkyrie_Turret_Console_Left','Seat','UNDEFINED','b4e98599-956d-4b3a-8129-497da1ad96bf','','',NULL), +(11462,'RSI_Constellation_CargoGrid_Main','CargoGrid','UNDEFINED','f3963899-a698-4b9c-8efc-e0ad363d0e77','','',NULL), +(11463,'RSI_Aurora_Mk2_Ground_Refueling_Port','Door','UNDEFINED','2e34c469-5093-4507-9100-4b17469be815','','',NULL), +(11464,'G-2 Helmet Desert','Armor','Helmet','63d5c4b1-7a41-42fc-b202-ea9b07fc6389','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. Visor is AR crosshair compatible.'), +(11465,'Concept Shirt Black','Char_Clothing_Torso_0','UNDEFINED','507718a6-f77f-4302-b637-ca3ccf90a5bb','','','This crisp, versatile button-front shirt from Fiore is made with cutting edge stain resistant and wrinkle-free technology, guaranteeing that you stay professional at all times.'), +(11466,'Door Control','ControlPanel','DoorPart','56b3406a-c2d8-440e-b108-8e5d8011ff55','','',NULL), +(11467,'Performance T-Shirt (Modified)','Char_Clothing_Torso_0','UNDEFINED','61a5bb90-aad2-4cb5-ac61-8e360924bb38','','','This version of City Light\'s Performance t-shirt has been modified from its original form. The Performance t-shirt from City Lights is made from 100% dryweave synthetics, keeping the fabric soft, comfortable and sweat-free.'), +(11468,'Demon Fang Combat Knife','Weapon','Knife','9e8d6cf1-17d6-453e-bfe3-44529969eebf','','','Manufacturer: Apocalypse Arms\nItem Type: Knife\nClass: Melee\n\nSize: 15 cm\n\nThe Demon Fang is a simple yet sinister split blade knife supported by a sturdy and lightly textured handle. Vibrant red cutting edges highlight the knife\'s unusual and intimidating look, guaranteeing to give anyone second thoughts about getting in its way.'), +(11469,'Ramp Control','Usable','UNDEFINED','1fd940c8-ecce-4854-919d-90f6b97ddb3d','','',NULL), +(11470,'RCMBNT-RGL-1','InventoryContainer','Cargo','378ddc31-5d39-4511-9d77-48fc052df7b7','','','An imprint recombinant sample created from CTLST-RGL and REAGENT-01 as part of Dr. Logan Jorrit\'s Project Hyperion experiment.'), +(11471,'CRUS_Spirit_A1_Exterior_Nose','Misc','UNDEFINED','de7e6ed3-8f10-4070-ae80-48d1b145fb3d','','',NULL), +(11472,'Beacon Undersuit Orange','Armor','Undersuit','76f8ae3d-4e44-4459-94d2-db9f00ef2586','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRSI\'s Beacon undersuit is a general use utility designed to provide total protection against environments and vacuum. Built out of a durable but flexible polymers, the Beacon provides a wide freedom of motion for a variety of body types.'), +(11473,'INTK_MISC_Reliant_Sen','FuelIntake','Fuel','b94e4023-a43f-4eea-adc8-17111e097fec','','',NULL), +(11474,'Diamond Laminate','Cargo','Cargo','b245ebd1-c670-4610-95c9-fc4343275404','','',NULL), +(11475,'Door Control','ControlPanel','DoorPart','b7b4c89b-6a1c-4313-a4e3-d06c60b7bb43','','',NULL), +(11476,'MissileRack_Large_Pathfinder_BEHR','Usable','UNDEFINED','314a9cd4-31e0-4e7f-a634-3ae4272fd180','','',NULL), +(11477,'Door Control','Door','UNDEFINED','e1f3db61-8cb0-45b5-afab-1c2891128475','','',NULL), +(11478,'Saskia Jacket','Char_Clothing_Torso_1','UNDEFINED','23799159-4649-468e-aef5-758e808a4b47','','','Carrying Capacity: 1K µSCU\n\nBe formal and fashionable with the Saskia jacket. This hybrid jacket and collared shirt features dynamic geometric patterns, including diagonal lines that swoop across the front and back.'), +(11479,'Vindel','Misc','UNDEFINED','d9dc71af-3ae1-4dfa-a153-ca1e1c6f93fb','','','Generally found in shallow waters in the temperate regions of Locke, this species of fish feeds on waste and algae that collects at the bottom of rivers. The tentacles allow the fish to sift through the loose rock and soil. Though technically edible, most avoid eating them because they taste pretty terrible.'), +(11480,'ANVL_Paladin_SCItem_Remote_Turret_Seat_Right','Seat','UNDEFINED','541cb916-a34f-487c-bccc-8530158dc18b','','',NULL), +(11481,'Constellation Andromeda Ship Armor','Armor','Medium','30fdaba0-4307-453c-8273-746479ae98ce','','','Constellation Andromeda Ship Armor'), +(11482,'GATS_BallisticCannon_Ventilation_S2','WeaponAttachment','Ventilation','a736f0bf-155b-4c7f-988d-902a51096759','','',NULL), +(11483,'KRON_LaserCannon_Ventilation_S3','WeaponAttachment','Ventilation','4f963d23-b8bd-4fa0-b1d3-0358cb4d1919','','',NULL), +(11484,'CVSA Cannon','Weapon','Gun','8115a034-92bf-4766-b0ce-408398ddc7e7','','','Manufacturer: Behring\nItem Type: Ballistic Cannon\nSize: 2\n\nBehring designed the CVSA to be their Vanguard only ballistic cannon variant. This weapon features a slower rate of fire delivers a higher velocity round that is ideal for dealing major damage to targets at medium to long ranges.'), +(11485,'Aztalan Galena Arms','Armor','Arms','5ab46e93-33ef-443d-a9a8-694121286bfc','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFear no frontier while wearing the Aztalan armor. This mixture of armor plating and reinforced fabrics will keep you safe yet swift on your feet. Tehachapi\'s masterful design gives the armor a subtle yet unmistakable frontier style that also providing ample storage. Suitable for everything from sand dunes to bustling backstreets, the Aztalan is the ideal choice for your next adventure.'), +(11486,'ht_glass_cocktail_1_a','Misc','UNDEFINED','de58fe06-5278-447c-9bf1-c551ec7c114e','','',NULL), +(11487,'MISC_Hull_C_FoldingStrut','Cargo','UNDEFINED','3f9fc5fe-95d2-4e5a-9640-afbb943a7c7f','','',NULL), +(11488,'Ship Showdown \'52 Mercury Coin','Misc','Utility','571cdfb4-3a55-4692-ae1f-cff4c6d5b6a4','','','The Mercury Star Runner delivered a strong showing in the 2952 Ship Showdown with its second place finish. Ringed in blue, this coin commemorates the iconic courier ship with its image on one side and the Crusader Industries logo on the other.'), +(11489,'CRUS_Starlifter_Thruster_Mav_Front_A2','ManneuverThruster','JointThruster','4d788737-61c6-491a-839a-3eccdddc1604','','',NULL), +(11490,'ChipSet_Apollo_DockingMaster','Misc','UNDEFINED','46c7334a-0c4f-1ce0-0f52-495aa8299296','','',NULL), +(11491,'Big Benny\'s Mug','Drink','UNDEFINED','6259d9a0-b449-4427-924a-e7713c5e15ee','','','Grab Drink! \n\nThis playful Big Benny\'s mug features the brand\'s iconic mascot. Its unique dual layer design features a chip and fade proof ceramic that feels comfortable in the hand with special plastic coating on the lip and handle to ensure it\'s never too hot to touch.'), +(11492,'m_human_mannequin_deckcrew_light','ShopDisplay','UNDEFINED','ba53cf52-faca-41d9-b163-8040d1a6aab8','','',NULL), +(11493,'Corsti Boots CFP','Char_Clothing_Feet','UNDEFINED','d95596d6-9895-46a5-887f-6caacb66de3f','','','Made with hardy and adaptable materials, the Corsti boots are suitable for any conditions, whether you\'re taking a day-long hike on a well-worn road or exploring a strange landscape on an untamed world.\n\nThe CFP edition is a deep fjord blue with black vamp detailing.'), +(11494,'MISC_Hull_C_Dashboard_Pilot','SeatDashboard','UNDEFINED','3d41e1bc-3ebf-4658-8e32-fe4686a156f5','','',NULL), +(11495,'Seat','SeatAccess','UNDEFINED','a3ef4c2f-326c-4141-aad3-ce3ed0c4267d','','',NULL), +(11496,'Levin Undersuit Limelight (Refurbished)','Armor','Undersuit','9f88dd1f-8e47-4104-98e6-be0bdd2b5c06','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nFeaturing flexible gaskets for greater comfort and more natural movement, along with a convenient range of chest connector port options, the Levin from Caldera has been a practical choice for explorers everywhere. This particular undersuit has been repaired for extended use.'), +(11497,'MISC_Fortune_Thruster_Mav_Fixed_01_Top','ManneuverThruster','FixedThruster','8a5d4c98-f9b3-4317-80b1-21fd69b5e725','','',NULL), +(11498,'Seat','Usable','UNDEFINED','88a77c69-6455-4d87-a6d4-3a49fcb59d62','','',NULL), +(11499,'MISC_Starlancer_Thruster_Front_Mav','ManneuverThruster','FixedThruster','25e6cf55-b138-471a-8bec-198f5150f4af','','',NULL), +(11500,'Internal Tank','QuantumFuelTank','QuantumFuel','2046ec36-046f-4bb7-bb8c-accd7e3d31e0','','',NULL), +(11501,'COMP_BEHR_S01_CSR_RP','Misc','UNDEFINED','6a717799-51a3-48ec-bded-917b870216f6','','',NULL), +(11502,'DoorProximitySensorItem_3x1x2_Directional_Proximity','Sensor','DoorPart','b6dd9118-ff8a-4435-b35b-a5188fb9b0e1','','',NULL), +(11503,'Door Control','Door','UNDEFINED','9d6c7541-75a1-43ba-8082-3d6e2c7687a3','','',NULL), +(11504,'Coin Display Case','Misc','Flair_Wall_Picture','da798ecd-5685-45c8-b0f8-e2a9a1a498e9','','','Proudly display your coins with this handsome case featuring a red velvet setting for up to ten coins and a pristine glass front so all can enjoy your collection.'), +(11505,'expo_display_shirts_and_hats','ShopDisplay','Default','32e2d90a-bcd6-4ff6-8267-1c46efa78de7','','',NULL), +(11506,'MSD-683 Missile Rack','MissileLauncher','MissileRack','504840a4-821b-4a20-bb67-062f89c16320','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 6\nMissiles: 8xS3\n\nBehring’s MSD-683 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 6 hardpoint for the reliable and effective launch of eight S3 missiles.'), +(11507,'Venture Helmet Carrack Edition','Armor','Helmet','596f9763-3231-4ee2-8c74-50d2fc7f01c3','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nTo celebrate 2950\'s Carrack Day, Anvil Aerospace partnered with RSI\'s armor division for a special version of their popular Venture helmet. Built with impact-resistant composites and an anti-scuff laminate faceplate offering an unparalleled upward field of view, the Venture Carrack Edition is white with grey accents and features the Carrack name and silhouette on the back.'), +(11508,'box_plastic_4_weapon_opened_005x010x00375_a_ksar_shotgun','Misc','UNDEFINED','b516c541-8548-45ec-8c91-90fa8c49a658','','',NULL), +(11509,'ORC-mkX Core Justified','Armor','Torso','5f6f389e-1f32-4e81-88c2-466bdbd5df55','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nThis version of CDS\' ORC-mkX combat armor has been modified from its original form. The mark X is part of CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(11510,'Test_Clovis_Datapad_Clue01_4x3_Screen','Display','UNDEFINED','46c47bff-ed94-4794-a3c8-87790507cf58','','',NULL), +(11511,'ORIG_890_Jump_Thruster_Main','MainThruster','FixedThruster','37630081-f12d-46df-9e85-11d770180d13','','',NULL), +(11512,'Seat','Usable','UNDEFINED','37b94944-e63a-4cf9-a876-8159d7043bfc','','',NULL), +(11513,'Carryable_2H_CY_weight_barbell_bumperplate_1_20kg_a','Misc','UNDEFINED','f5fca9a4-4eea-41f8-94b7-41996e9b5197','','',NULL), +(11514,'MXOX_NeutronRepeater_FiringMechanism_S2','WeaponAttachment','FiringMechanism','e090007e-3c41-4429-8b32-76794da6e246','','',NULL), +(11515,'Carrion Core Maniac','Armor','Torso','62c5bdd0-a035-4f93-8e5e-eeb1b85243e8','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Medium, Light\n\nForged from scavenged metals and ragged clothes, the Carrion armor is a crude concoction of repurposed materials that demonstrates you\'ll do anything it takes to survive.\n\nThe Maniac variant comes with a mid-length cape and integrates bones prominently into several pieces.'), +(11516,'Door Control','Door','UNDEFINED','8068f7a9-2df4-4b4b-9d4d-9cb031961763','','',NULL), +(11517,'Door Control','Door','UNDEFINED','c6ca20ad-b2aa-446c-acfd-31b0358baaac','','',NULL), +(11518,'Testudo Backpack Earthshake','Armor','Backpack','17d9c6b5-8a2c-4900-9639-2026707570b6','','','Item Type: Medium Backpack\nCarrying Capacity: 105K µSCU\nCore Compatibility: Medium & Heavy\n\nThe Testudo backpack may feel as light as a feather in your hands, but it can hold an impressive amount of weight thanks to its use of the same tough yet lightweight plating as the armor set.'), +(11519,'Razorback Pants White','Char_Clothing_Legs','UNDEFINED','065a00be-c9f9-4762-b44a-49ffecc6dbc0','','','Carrying Capacity: 2K µSCU\n\nDMC\'s Razorback pants are made to be worn. Built from industrial quality material, they feature reinforced kneepads to prevent tears on the job and stay rugged yet comfortable.\n\nWomen\'s sizes currently out of stock.'), +(11520,'orig_bedding_duvet_3_o','Seat','UNDEFINED','15a9ee34-a59c-46f8-98da-e15450483b6d','','',NULL), +(11521,'Carryable_1H_CY_utensil_soda_1_a','Misc','UNDEFINED','faabe6c6-f5c4-4978-aa48-1bdde69e0a4b','','',NULL), +(11522,'Gold','Cargo','Small','739c6b5a-69e5-45a6-bd6f-64913f644907','','','A commonly found ductile metal favored for its conductivity. Though it falls in and out of fashion, it is often used for decorative purposes as well.'), +(11523,'Mustang Omega Livery','Paints','UNDEFINED','de95879d-ebaf-49c6-8016-ebfbd1d8d7bb','','','Standard livery for the C.O. Mustang Omega.'), +(11524,'Hydropulse','Cooler','UNDEFINED','3127738f-d2ba-44bb-913c-eb380182bef8','','','Item Type: Cooler\nManufacturer: Juno Starwerk\nSize: 3\nGrade: D \nClass: Industrial\n\nAn entry level option to Juno Starwerk’s brand of coolers, the Hydropulse sacrifices some durability and utilizes some design tricks to make this large industrial cooler an option for those unable to afford one of their top of the line models.'), +(11525,'Overlord Arms Predator','Armor','Arms','5a0eddea-874b-4493-96dc-e52c10c4bd16','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.'), +(11526,'Weapon Rack','Usable','UNDEFINED','cbcb8f60-11d1-4938-9805-2a33fa343243','','',NULL), +(11527,'DRAK_Clipper_Thruster_Fin_Main_Outer','Misc','UNDEFINED','f4775e7b-ef8a-42f8-8635-aa75281fc35a','','',NULL), +(11528,'RSI_Aurora_Mk2_Module','Module','UNDEFINED','e8d9c34e-33a0-4c43-8194-e7326b61f479','','',NULL), +(11529,'weapon_underbarrel_light_wide_red_01','WeaponAttachment','Light','8b848848-07b5-44dc-8709-5f292d028625','','',NULL), +(11530,'Hill Horror Reborn Poster','Misc','Utility','0c5fa958-f9be-4db1-8137-fab85f78b305','','','A poster for the horror sequel vid “The Hill Horror Reborn” that tells the continuing story of rampaging masked killer Neville Lott.'), +(11531,'H_Dashboard_Projector_HUD_Generic','Display','UNDEFINED','eac65871-9378-45e3-a67a-b56011648d97','','',NULL), +(11532,'Berry Blend Smoothie','Drink','Bottle','0794d4f6-1e8b-4ad4-afea-df58458ef5e9','','','HEI: 35\nNDR: 14\nEffects: Immune Boosting\n\nA smoothie made with a fresh blend of berries.'), +(11533,'Valkyrie V-G Missile','Missile','GroundVehicleMissile','c87e69f1-f860-431f-8739-78f938ce4be0','','','Manufacturer: Talon \nTracking Signal: Infrared \nSize: 5 \n\nTalon\'s torpedo design team pulled out all the stops for their latest Valkyrie strike torpedo by creating a multitiered thrust solution with state of the art infrared tracking capabilities. Note: This missile may only be launched by ground vehicles.'), +(11534,'PAB-1 Core Blue','Armor','Torso','c51d801c-a4f2-4f3d-b5c3-77ddcc6167dd','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(11535,'Starlancer Snowcap Livery','Paints','UNDEFINED','2ea2b311-ec4a-479f-9540-8dc07277b221','','','The dynamic stylings of the Snowcap livery gives the Starlancer a white front with a crisp shift to black in the back.'), +(11536,'RSI_Zeus_Thruster_Retro_Right','ManneuverThruster','Retro','3f6623f1-9fcf-478d-9539-4462b1895f42','','',NULL), +(11537,'display_ship_components_03x01x01_power_s1','ShopDisplay','UNDEFINED','a91915f2-9113-4e0d-8129-20cf19a43994','','',NULL), +(11538,'Ma\'s Ready to Eat Traveler\'s Day Dinner','Food','Sachet','2fff6a4a-2dd2-4748-a91e-e9ea851ff450','','','NDR: 40\nEffects: Dehydrating, Hyper-Metabolic\n\nMa\'s Ready to Eat Traveler\'s Day Dinner has the traditional taste of this festive meal with all the favorites you love and the convenience your busy life demands.'), +(11539,'AEGS_Redeemer_Wardrobe_Decal_03','Decal','DoorPart','ab9dcc33-d68e-4033-b13d-6699ae663c59','','',NULL), +(11540,'Relay','Relay','UNDEFINED','175e10ba-3752-4b28-bcb0-9f50c6349f80','','',NULL), +(11541,'GPI_Relay_3slot','Relay','UNDEFINED','87b549c6-1ab6-44ca-adc3-f47aa4462469','','',NULL), +(11542,'Door Control','Door','UNDEFINED','0ca765ac-3110-44bf-97fc-4b27d0267169','','',NULL), +(11543,'MISC_Hull_C_FoldingStrut_1D','Cargo','UNDEFINED','0ca877ed-b2bd-4202-bac5-5bfeb8e9a6c7','','',NULL), +(11544,'Jumping Limes','Cargo','Cargo','1d5db1e7-0e61-4ed4-b549-a87ff5fd35df','','',NULL), +(11545,'Venture Arms Blue','Armor','Arms','b7729883-55cb-4ae6-8d65-d134bc575ce3','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(11546,'Carryable_2H_CY_furniture_pillow_1_d','Misc','UNDEFINED','914a5537-e28d-47df-8e55-cf3c3814f9b5','','',NULL), +(11547,'fruit_plant_interactable','Misc','UNDEFINED','eb3655d6-bd8e-4047-aec5-c37cd2ef950e','','',NULL), +(11548,'Arden-SL Core Coramor Edition \"Kismet\"','Armor','Torso','369bb4b1-7713-4f56-af20-f91ea46a371a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics. It also features a toolbelt for easy access to important gear. The special Kismet edition of this armor features black and pink coloration in honor of the ship Yuri Ilyin flew in the classic vid \'Coramor\' while he searched for his lost lover Corazon Tan.'), +(11549,'Door Control','Door','UNDEFINED','be0cc73b-9ba7-4cab-b023-7b7386a26fdc','','',NULL), +(11550,'Small Container','Container','UNDEFINED','aaf95219-c2dc-458a-869a-df5df935bbf8','','','A small container used to hold various items.'), +(11551,'RSI_Aurora_MR_Thruster_Retro','MainThruster','FixedThruster','c4cc2197-e260-4501-ab0b-08c76668e628','','',NULL), +(11552,'ANVL_Terrapin_Medic_Lightbar','Misc','UNDEFINED','31fbb266-9fdc-4aeb-85c8-301d17ba6ede','','',NULL), +(11553,'CRUS_Star_Runner_Secret_Cargo_Panel','Player','UNDEFINED','c4cfae2e-bef4-45fe-914e-818c920f853e','','',NULL), +(11554,'Radar_Display_RSI_Polaris','Display','UNDEFINED','e6036d99-cc04-46ca-868c-f49a3e2f9b90','','',NULL), +(11555,'Tona Shoes Seagreen','Char_Clothing_Feet','UNDEFINED','0b7bfad8-0a69-4f44-8e9f-8f83cdca6099','','','Perfect for hiking or fieldwork, the Tona from R6 Pro is a low-top sneaker built out of breathable Cheofreme materials which not only provide extra protection against impacts, but keep your feet dry.'), +(11556,'Agricultural Supplies','Cargo','Cargo','282e0a66-c9e0-4140-95c8-56a511ba2399','','',NULL), +(11557,'f_human_mannequin_survival_secondlife','ShopDisplay','UNDEFINED','f4f92a6d-fcd4-4366-9365-aa96c313a3d1','','',NULL), +(11558,'Lunes (Spiral Fruit)','Cargo','Cargo','e55f1ab8-de81-4c07-aa03-047a9066f82d','','',NULL), +(11559,'CRUS_Starfighter_Thruster_Retro','ManneuverThruster','FixedThruster','fc390626-f63f-490e-9e62-f086e8e18830','','',NULL), +(11560,'display_shop_mount_1_wall_a','ShopDisplay','UNDEFINED','36961074-4be2-4aa3-94f4-82970aa23282','','',NULL), +(11561,'MISC_Fury_Thruster_Main_Bottom_LX','MainThruster','JointThruster','d4e53d51-831f-4d47-969c-1e4834aa38ca','','',NULL), +(11562,'OneMeal Nutrition Bar (Fried Tofu)','Food','Bar','6dc7fccb-9e6a-437c-924b-ade224667b66','','','NDR: 21\nEffects: Hypo-Metabolic\n\nOneMeal optimal nutrition bars are a scientifically balanced and complete meal replacement that\'s \"ready when you are.\"'), +(11563,'Falston Jumpsuit \"Red Wind Edition\"','Char_Clothing_Torso_1','UNDEFINED','88e01754-d8bd-41ec-9ced-27c994630d53','','','Carrying Capacity: 1K µSCU\n\nThe Falston jumpsuit has a high collar to guard against the elements, triple-reinforced stitching, and an extra soft interior lining because everyone deserves a bit of comfort.'), +(11564,'Door','Door','UNDEFINED','43938b9b-a393-41e6-aa66-a5e6cef60297','','',NULL), +(11565,'Khaos','QuantumDrive','UNDEFINED','1a7eabcd-1c1f-4641-bf5b-41089a774fb6','','','Item Type: Quantum Drive\nManufacturer: RSI\nSize: 2\nGrade: C \nClass: Civilian\n\nRSI\'s Khaos has been tuned to provide dependable performance with reliable construction. Once you\'ve got this strapped in, you\'ll appreciate the order this quantum drive brings to the chaos of travel.'), +(11566,'DRAK_Clipper_Thruster_Main_Top','MainThruster','UNDEFINED','1e3726fc-f779-483c-898c-ecd5d24d131f','','',NULL), +(11567,'Inquisitor Core Olive','Armor','Torso','9302d7d7-f9c0-469a-ac31-f2339b8f991a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(11568,'G-2 Helmet Violet','Armor','Helmet','4cbdcb40-b22e-4418-a2c0-858d9fff8482','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. Visor is AR crosshair compatible.'), +(11569,'Seat','Usable','UNDEFINED','31410b63-6b2b-4356-b3f0-69cc6dbcd49b','','',NULL), +(11570,'Internal Tank','FuelTank','Fuel','978b024e-ccf7-4087-8306-1cc9e5c7c6dd','','',NULL), +(11571,'Revenant Gatling','Weapon','Gun','83671df2-63e6-4683-8125-bdccd7d1cd7e','','','Manufacturer: Apocalypse Arms\nItem Type: Ballistic Gatling\nSize: 4\n\nIf it ain’t broke, don’t fix it. And if you want it broke, aim a Revenant at it. Solidly built on a foundation of centuries-old tech, Apocalypse Arms puts an innovative spin on battle-tested designs to create a rugged ballistic Gatling that can steadily hurtle death across the void. Though it’s slow to spin up and cool down, the Revenant’s dependability makes it a favorite for those expecting to find trouble.'), +(11572,'DRAK_Golem_Thruster_VTOL_Retro_Left','ManneuverThruster','Retro','a22a1095-4b79-4df6-a316-e3d85d989f4f','','',NULL), +(11573,'MSD-683 Missile Rack','MissileLauncher','MissileRack','d3497338-3bf8-4433-bcd4-50b3693f90b3','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 6\nMissiles: 8xS3\n\nBehring’s MSD-683 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 6 hardpoint for the reliable and effective launch of eight S3 missiles.'), +(11574,'Construction Salvage','Cargo','Cargo','2e11ba45-2701-4fcd-8aea-482430910239','','','Can be processed at refineries into Construction Material.'), +(11575,'ARGO_MPUV_Leg_Left','Misc','UNDEFINED','469652b2-8d31-4e97-a71c-76deadde110b','','',NULL), +(11576,'Artimex Arms Elysium','Armor','Arms','80720f8a-00ad-4bf5-b04b-42fcb146446e','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.\n\nThe Elysium edition combines bright gold detailing of winged skulls with a navy blue.'), +(11577,'Pisces Headhunters Trauma Livery','Paints','UNDEFINED','6d3d35c6-049c-4fb9-b831-d098d40dc5d2','','','Show your loyalty to the Headhunters gang with this livery featuring their logo emblazoned on a dark grey hull accented with a vibrant purple.'), +(11578,'Strog-N-Off Burrito','Food','Junk','07c9d587-6da6-4c21-82d0-bd718e3ccb20','','','NDR: 38\nEffects: Dehydrating\n\nTorpedo Burrito crams a full payload of flavor into their newest creation, the Strog-N-Off burrito, featuring rich and meaty high-grade roasted protein encased in a creamy mushroom sauce, drenched over springy spaetzle and wrapped in their signature size-4 multi-grain tortilla.'), +(11579,'Door','Door','UNDEFINED','1720bf22-8cdc-4067-9e20-0e591b64da2e','','',NULL), +(11580,'ORIG_400i_Thruster_Main','MainThruster','FixedThruster','75b95dd5-b751-4eef-80e6-847b4bd02f0f','','',NULL), +(11581,'Door Control','ControlPanel','DoorPart','479cd940-fe1d-4e9f-b7f8-f8963ea48541','','',NULL), +(11582,'Seat','Usable','UNDEFINED','cd23e960-c337-4332-b847-761813edc5b6','','',NULL), +(11583,'Remote Turret','Turret','GunTurret','dbd219ff-eca1-4e6b-8426-783f119e102a','','','Remote Turret'), +(11584,'rod_torso0_02x01x04_09Ports','ShopDisplay','Default','521b34e6-df14-4e72-b924-f9c12eff781c','','',NULL), +(11585,'Radford Shirt Crusader Edition','Char_Clothing_Torso_0','UNDEFINED','3c733ed1-4f5f-42c5-a485-e5b91773ab3a','','','The Radford dress shirt and tie combo proves that simple elegance is eternal. The shirt features a unique side seam that provides a tailored fit. A silver tie bar is the perfect finishing accent to make sure everything stays in place. \n\nThe Crusader Edition was made specifically for employees of Crusader Industries.'), +(11586,'Radford Shirt Crusader Edition Dark Blue','Char_Clothing_Torso_0','UNDEFINED','c2e04302-10c2-47cd-aff2-1fde85e2b9ee','','','The Radford dress shirt and tie combo proves that simple elegance is eternal. The shirt features a unique side seam that provides a tailored fit. A silver tie bar is the perfect finishing accent to make sure everything stays in place. \n\nThe Crusader Edition was made specifically for employees of Crusader Industries.'), +(11587,'Radford Shirt Crusader Edition Light Blue','Char_Clothing_Torso_0','UNDEFINED','b8b8e24d-9f77-49a9-a95c-37e5ec0c33d1','','','The Radford dress shirt and tie combo proves that simple elegance is eternal. The shirt features a unique side seam that provides a tailored fit. A silver tie bar is the perfect finishing accent to make sure everything stays in place. \n\nThe Crusader Edition was made specifically for employees of Crusader Industries.'), +(11588,'Diluthermex','Cargo','Cargo','7df26686-8161-4978-b0db-6a98611eff65','','',NULL), +(11589,'RS-Barrier','Shield','UNDEFINED','6ed772d7-ba17-4bf1-ae49-0a6ff82be1a9','','','Item Type: Shield Generator\nManufacturer: Aegis Dynamics\nSize: 4\nGrade: Bespoke\nClass: Industrial\n\nDesigned to defend against the debris common during large-scale salvage projects, Aegis Dynamics developed this bespoke industrial shield generator in-house for the Reclaimer.'), +(11590,'m_human_mannequin_slaver_undersuit_02','ShopDisplay','UNDEFINED','3e76f61c-958a-4ee3-9f4a-710250271e31','','',NULL), +(11591,'Zeta-Prolanide','Cargo','Cargo','557c666c-ba5e-40de-b9a6-34f4568e413d','','','This chemical is an industrial reactant that has found widespread use neutralizing irradiated materials. Because of how volatile it is, it must be kept in an electrically charged state or else a rapid exothermic reaction may occur before desired.'), +(11592,'RSI_Zeus_Thruster_Retro_Left','ManneuverThruster','Retro','2ab4256b-b5fc-49e9-b8e2-0b4151eed5b3','','',NULL), +(11593,'Deep-Space Undersuit Shutdown','Armor','Undersuit','fc43a93b-b862-4f2b-a97a-1c0e8e05b947','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nConfidently venture into the unknown with the Deep-Space undersuit. Smartly designed with several overlapping sections to guarantee the suit\'s integrity, Gyson has created an affordable and fashionable undersuit that helps make space travel more accessible to all.\n\nThe Shutdown version features black and gray coloring with dark metal accents.'), +(11594,'Table_Booth_4_Seat_MISC_Starlancer','Usable','UNDEFINED','ec56e772-9345-4feb-a986-738f629cfb33','','',NULL), +(11595,'Seat','SeatAccess','UNDEFINED','216f435d-8146-4296-958f-be0ce112d27a','','',NULL), +(11596,'Boreal','Cooler','UNDEFINED','62f0d8cc-ed06-47d6-9522-bd3950faa19d','','','Item Type: Cooler\nManufacturer: Aegis Dynamics\nSize: 2\nGrade: D\nClass: Military\n\nDesigned to disperse the heat of battle, Aegis Dynamics’ Boreal cooler is a military standard with the capacity to survive stressful situations.'), +(11597,'TrueDef-Pro Legs Black/Silver','Armor','Legs','a9d685fe-785d-4de7-985b-0a5073bc78b7','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.\"'), +(11598,'un_box_plastic_1_berries_a','Misc','UNDEFINED','59d6ad1f-ea26-4954-997b-050c52d7410e','','',NULL), +(11599,'CF-337 Panther Repeater','Weapon','Gun','bd13235d-1261-4b71-b32f-aed1a8beb526','','','Manufacturer: Klaus & Werner\nItem Type: Laser Repeater\nSize: 3\n\nThe CF-337 Panther is the size three model in Klaus & Werner\'s laser repeater line. The Panther is a true fire-and-forget weapon with a respectable power consumption-to-damage ratio. Pilots who outfit their ships with Panthers rarely regret the decision.'), +(11600,'Carinite (Pure)','Cargo','Cargo','a2505f3d-550f-4f27-89e6-b4cd1ed81712','','','Typical carinite sources feature various impurities. However, under certain extremely rare conditions, carinite veins that are more than 90% pure can form. Computing hardware that demands exacting precision will usually seek out pure carinite.'), +(11601,'Stoic Suppressor2','WeaponAttachment','Barrel','4ef9f8dd-6229-4c86-bc8e-025c6cc87c2c','','','Manufacturer: ArmaMod\nType: Suppressor\nAttachment Point: Barrel\nSize: 2\n\nAim Time: +12.5%\nSpread: -12.5%\nHorizontal Aim Recoil: -45%\nVertical Aim Recoil: -15%\nVisual Recoil: -33%\nRecoil Time: -5%\nAudible Range: -33%\n\nUsing a more heavyweight barrel attachment for increased control, the longer chamber of the Stoic Suppressor2 grants reduced noise and increased accuracy at the cost of slower responsiveness.'), +(11602,'Carryable_1H_SQ_DataPad_Fluff_StormBreaker_ResearchFacility','Misc','UNDEFINED','4f2918ac-39af-4ca2-9b04-4738a69b1a80','','',NULL), +(11603,'ANVL_Pisces_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','07241088-c4c7-4b2a-9579-585dd0036a99','','',NULL), +(11604,'Carbon','Cargo','Cargo','7dac41a5-7c94-4273-bf57-51927edd6f9c','','',NULL), +(11605,'Seat','Usable','UNDEFINED','5f4d0cb1-8343-403e-b52f-68573046d24d','','',NULL), +(11606,'AEGS_Eclipse_Thruster_Main','MainThruster','FixedThruster','c41f1bf5-34c3-498f-a47f-4a6fdba8cd91','','',NULL), +(11607,'DynaFlux','PowerPlant','Power','0b758584-4cc6-4306-85dd-07e1b81d6852','','','Item Type: Power Plant\nManufacturer: Amon & Reese Co.\nSize: 1\nGrade: B\nClass: Military\n\nThe DynaFlux was one of the first components A&R Co. built when they expanded their product line to more than energy weapons. Their years of experience manufacturing military-grade equipment went a long way to making the DynaFlux power plant a standout right from the beginning.'), +(11608,'ARGO_ATLS_GEO_Thruster_Small','Misc','UNDEFINED','0d2f54bb-a5fd-42f5-8cd1-fbff2ddbb3af','','',NULL), +(11609,'Oracle Helmet Red','Armor','Helmet','c94881f7-6ce1-4fb3-8bd7-018e71d1d19a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(11610,'Lynx Core Aqua','Armor','Torso','7afbaddb-6dff-47e1-bf1b-2d38854b5a37','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(11611,'AEGS_Idris_SCItem_Seat_Bridge_Rear_Left','Seat','UNDEFINED','e7dedffb-414f-4947-a433-ea9984305ae2','','',NULL), +(11612,'Deadrig \"Smudge\" Shotgun','Weapon','Medium','4eb70778-c449-459e-8d2b-91dbc15cd6be','','','Manufacturer: Unknown\nItem Type: Shotgun\nClass: Ballistic\n\nMagazine Size: 8\nRate Of Fire: 120 rpm\nEffective Range: 0-10 m\n\nAttachments: N/A\n\nThe Deadrig is a high powered, double-barreled shotgun with a simple design pieced together from junkyard scraps. Prioritizing power above all else, the Deadrig lacks the refinement of mass-produced weapons and suffers from heavy recoil. \n\nThe Smudge variant features a black finish.'), +(11613,'Seat','Usable','UNDEFINED','c865c3a7-773b-4fb4-be67-cf3cf387c175','','',NULL), +(11614,'Seat','Usable','UNDEFINED','78edaa29-e238-4a97-8e72-4dec608cdb6f','','',NULL), +(11615,'Vehicle_Screen_MFD_Holographic_MISC_Razor_L','Display','UNDEFINED','f689ab5f-2b25-41f1-a07c-e0c46077d05c','','',NULL), +(11616,'Paint_Reclaimer_Default','Paints','UNDEFINED','5053de1a-7736-4893-815d-6c9684f6416d','','',NULL), +(11617,'Ball','Char_Head_Piercings','UNDEFINED','23dc9eae-9a20-48f1-b20d-d8de86c7a5bf','','',NULL), +(11618,'Stirling Exploration Helmet Alkaline Edition','Armor','Helmet','8d4e342c-5984-44a5-9643-2eb1cdc080d8','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nDesigned to withstand inhospitable environments, the Stirling Exploration Suit provides a base level of protection from environmental hazards including radiation. Combining Caldera\'s advanced insulation fabrics with sophisticated polymers, the Stirling is able to safeguard the wearer whilst minimizing disruption to movement. Additionally, a self-cleaning system automatically activates after radiation exposure to expunge dangerous excess down to nominal levels. This helmet is only compatible with the Stirling Exploration Suit. Influenced by refined ores, the Alkaline Edition fuses black, bronze, and gray accents.'), +(11619,'shelf_shoe_2_highend_a','ShopDisplay','Default','90fb569b-904a-4cc5-ad53-9db64694d558','','',NULL), +(11620,'Ball','Char_Head_Piercings','UNDEFINED','7d910114-a979-434f-b455-e40fc0b8e3ff','','',NULL), +(11621,'Aril Helmet Scorched','Armor','Helmet','e5882903-64ef-492f-8925-824e87d12e40','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(11622,'RSI_Constellation_Andromeda_Thruster_Mav_Joint','ManneuverThruster','JointThruster','e992d170-2343-4d88-b8e3-45794f1b54b6','','',NULL), +(11623,'Door Control','DockingAnimator','UNDEFINED','7e73c75e-2f0b-41f8-bfd9-5fe767d0cc90','','',NULL), +(11624,'Seat','Usable','UNDEFINED','aa25979e-1bad-48ba-8eec-8703afbfc75a','','',NULL), +(11625,'Tuvois Jacket Sienna','Char_Clothing_Torso_1','UNDEFINED','5cda15be-9b98-436d-a9a8-7f7faea64ff9','','','Carrying Capacity: 1K µSCU\n\nCreated in collaboration with legendary designer Avon, OpalSky is proud to unveil the Tuvois, an open vest featuring stark, bold styling that\'s destined to make an impression. \n\nWomen\'s sizes currently out of stock.'), +(11626,'PAB-1 Arms Seagreen','Armor','Arms','8a5ffcee-61b3-4306-963d-2e3117e8c462','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(11627,'Door Control','ControlPanel','DoorPart','42d889e5-bfa7-4ec5-b254-81fe57242157','','',NULL), +(11628,'Bioplastic','Cargo','Cargo','19ec701c-3273-4e36-8ade-8a469f9134e6','','',NULL), +(11629,'Madras Asada Burrito','Food','Junk','1f634ecf-d8d1-44cd-b5fa-ff9f5cea9074','','','NDR: 38\nEffects: Dehydrating\n\nTorpedo Burrito crams a full payload of flavor into their signature size-4 multi-grain tortilla wrapped Madras Asada burrito that delivers mouthfuls of spicy grilled beef into every bite.'), +(11630,'Stirling Exploration Helmet Tungsten Edition','Armor','Helmet','2da53b97-2d4f-4db6-9b92-3f86a7f068d5','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nDesigned to withstand inhospitable environments, the Stirling Exploration Suit provides a base level of protection from environmental hazards including radiation. Combining Caldera\'s advanced insulation fabrics with sophisticated polymers, the Stirling is able to safeguard the wearer whilst minimizing disruption to movement. Additionally, a self-cleaning system automatically activates after radiation exposure to expunge dangerous excess down to nominal levels. This helmet is only compatible with the Stirling Exploration Suit. The Tungsten Edition combines blues, grays, and silvers creating a metallic appearance.'), +(11631,'Redeemer Seraphim Livery','Paints','UNDEFINED','1c0fe724-cead-4758-a98b-133cb6054893','','','The striking white Seraphim livery for the Redeemer helps make the ship both a beauty and a beast.'), +(11632,'DockingTube_Fuel_Ports_RSI_Constellation','DockingCollar','UNDEFINED','32b3be75-c1c1-46c0-baee-21c247833250','','',NULL), +(11633,'AEGS_Vanguard_Hoplite_Thruster_Retro','ManneuverThruster','FixedThruster','e45de9ea-3fe3-4308-8814-2a3a17cd33d8','','',NULL), +(11634,'Stirling Exploration Backpack Tungsten Edition','Armor','Backpack','ffed2a85-50bc-4e64-b0dc-8d9f743537b7','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nThis heavy duty backpack is compatible with the Stirling suit and provides a convenient storage solution. The Tungsten Edition combines blues, grays, and silvers creating a metallic appearance.'), +(11635,'Beacon Undersuit Yellow','Armor','Undersuit','933894e3-d30b-4465-855a-5c96a853965d','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRSI\'s Beacon undersuit is a general use utility designed to provide total protection against environments and vacuum. Built out of a durable but flexible polymers, the Beacon provides a wide freedom of motion for a variety of body types.'), +(11636,'PAB-1 Arms White','Armor','Arms','568b97c6-8474-4b13-9d9a-a15fee167c62','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(11637,'sc_nvy_pilot_light_core_01_01_01','Armor','Torso','e2abd6ef-9435-465d-82f1-707bf115b5e1','','','@LOC_PLACEHOLDER'), +(11638,'m_human_mannequin_slaver_heavy','ShopDisplay','UNDEFINED','379fbfeb-0eb8-4b46-9fde-03ba01b8c0ca','','',NULL), +(11639,'RSI_Apollo_Thruster_Mav_Top','ManneuverThruster','FixedThruster','5f67e0af-bdf6-415a-8e3e-533a541eee72','','',NULL), +(11640,'DRAK_Corsair_Thruster_Mav','ManneuverThruster','UNDEFINED','30d6313a-fd07-48d9-919b-eca8f17fe242','','',NULL), +(11641,'Door Control','Door','UNDEFINED','f908a0a4-9f51-4f3d-bb67-1e6fdc1595dc','','',NULL), +(11642,'ADP Core Hurston Edition','Armor','Torso','c0d24124-2f68-4799-a2d8-00e72ef148f3','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor. The Hurston Edition was made specifically for the company\'s security services.'), +(11643,'Carryable_2H_CY_weight_barbell_bumperplate_1_5kg_b','Misc','UNDEFINED','2fa611cb-d6f3-460d-8c8f-ffcd8af4ab2f','','',NULL), +(11644,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','64630f02-4ba0-4d46-9af0-c3e12ff87a86','','','Joker Defcon - Noise Launcher'), +(11645,'INTK_ORIG_890J','FuelIntake','Fuel','e49684c8-2c14-44bf-856f-adc4c82f3ef3','','',NULL), +(11646,'rack_drink_1_icecream','ShopDisplay','Default','2a6a1b64-a942-448f-8a7e-222d3447e964','','',NULL), +(11647,'AEGS_Vanguard_Sentinel_SCItem_Engineer_Console','Seat','UNDEFINED','70a61b0f-6506-407f-b2bf-3d9ac746d11c','','',NULL), +(11648,'Carryable_TBO_FL_32SCU_Commodity_ProcessedGoods_OrganHarvesting','Cargo','Cargo','2fa9bda3-779d-4f61-bf5d-8eaf0be3d319','','',NULL), +(11649,'Degnous Root','Misc','UNDEFINED','3bcb41db-ece0-4e4f-904b-3b961c6d219e','','',NULL), +(11650,'Door Control','Door','UNDEFINED','99f4bd73-d312-4bcc-9d1b-e68ce06a2252','','',NULL), +(11651,'Door Control','ControlPanel','DoorPart','1c61fcc2-79c0-4c0c-9bf6-a27d35d441af','','',NULL), +(11652,'Karna Rifle','Weapon','Medium','b0253c68-8f48-4313-a4b7-034a7d9e7441','','','Manufacturer: Kastak Arms\nItem Type: Assault Rifle\nClass: Energy (Plasma)\n\nBattery Size: 35\nRate Of Fire: 500 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nThe Karna is a classic Kastak Arms plasma assault rifle. This mid-range mauler features charged and full-auto fire modes to allow for quick and easy situational adjustments. Besides its renowned firepower, the Karna\'s rugged looks and reliability have made it one of Kastak Arms\' most popular weapons.'), +(11653,'Chlorine','Cargo','Cargo','fe8c1451-9806-4575-b066-0b30c239855b','','',NULL), +(11654,'Auditor Shirt Crusader Edition','Char_Clothing_Torso_1','UNDEFINED','976976c9-2116-4fc9-a402-bbf2b2433a72','','','Octagon\'s Auditor line of shirts offers the ultimate in urban styling. The simple long-sleeve, button-down shirts feature an accent color and a collar that matches the modern fashion. Octagon\'s patented altsilk fabric allows for high breathability and a full range of flexible motion.'), +(11655,'RADR_Display','Display','UNDEFINED','ffc98aab-70a8-4553-83bd-ba3ba10d331c','','',NULL), +(11656,'Ball','Char_Head_Piercings','UNDEFINED','818dc943-f641-4810-8cb0-347b5e2b6a19','','',NULL), +(11657,'Oshi','Misc','UNDEFINED','b847e420-9bf2-41f1-bd72-ef0fbab2307e','','','A smaller cousin of a deep-sea bioluminescent species, the Oshi have only recently adapted to the lighter pressure closer to the surface of the vast oceans.'), +(11658,'Door Control','Door','UNDEFINED','0691a7ce-e740-480f-a1ea-0fd8d98cf57f','','',NULL), +(11659,'Copper','Cargo','Cargo','e83d00a8-7bd6-434f-b5c8-ae37741bfdf9','','',NULL), +(11660,'Cockpit Recorder Prop','Misc','Personal','19fe6c47-06ab-4e40-bd74-02fdeb876855','','','With true-to-life crash damage and a special recorded emergency message, this realistic facsimile of an actual cockpit voice recorder looks like it was salvaged straight from a wreck and makes a fun addition to your den or hangar.'), +(11661,'AEGS_Reclaimer_Thruster_Retro_02','ManneuverThruster','JointThruster','89c78d15-b6d1-4ec3-9283-2f1fb085a153','','',NULL), +(11662,'display_wall_centermass_NewBabbage_4port','ShopDisplay','Default','4366f398-8c50-4c33-9618-31f8bea8804f','','',NULL), +(11663,'Bantam Hat Phill\'s Fill-Up','Char_Clothing_Hat','UNDEFINED','0f901e72-dc3c-4f89-abcd-e14e1290b9f4','','','The Bantam hat from 987 offers a large bill and cushioned banding for all-day comfort. This version features a Phil\'s Fill-Up logo on the front with a red back and bill.'), +(11664,'Seat','Usable','UNDEFINED','6f759d3a-b80e-4db1-bd34-86ff20fb7a72','','',NULL), +(11665,'Internal Tank','FuelTank','Fuel','cbfeea69-e21d-48d5-8346-dab69f5bc479','','',NULL), +(11666,'Door','Door','UNDEFINED','41e4bfb3-4a99-443a-b918-f71ba14704c2','','',NULL), +(11667,'Aves Shrike Helmet','Armor','Helmet','c4409ebd-1cd2-4de1-a720-0d5ba889497d','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nCC\'s Conversions is proud to release the Aves Shrike helmet to celebrate the beautiful and unique history of the Tevarin culture. This medium helmet honors traditional stylings with colorful blue and magenta accents on black and white plating, giving the helmet a bold and dynamic feel worthy of this great species. Visor is AR crosshair compatible.'), +(11668,'Seat','Usable','UNDEFINED','3ed4456e-46c3-4760-b171-c04f5ed99e66','','',NULL), +(11669,'StorageCage_Damage_ZeroG','Cargo','UNDEFINED','f42dda38-2cab-471b-8c43-e67e6a8a096b','','',NULL), +(11670,'Audio-Visual Equipment','Cargo','Cargo','66a48bdc-e86c-4ff8-959a-b447e4403049','','',NULL), +(11671,'Strata Legs Shire','Armor','Legs','9f69fbf7-b71e-4255-a91d-4f47cc65cc29','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 10k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres.'), +(11672,'AEGS_Retaliator_CargoGrid_Rear_main','CargoGrid','UNDEFINED','57218002-83a7-40bb-931b-44c0e3a1facf','','',NULL), +(11673,'Microid Battle Suit Legs Lodestone','Armor','Legs','2af41fa2-7ee1-47ab-baf7-d0045a166026','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(11674,'RADR_Unmaned_Turret','Radar','MidRangeRadar','89637ea5-8897-45ba-8403-46ca3188ed61','','','@LOC_PLACEHOLDER'), +(11675,'Weapon Rack','Door','UNDEFINED','5b6c04a4-4a7d-424d-8a78-54b7c2db3040','','',NULL), +(11676,'MacFlex Arms Blue','Armor','Arms','a3afc4cd-bc14-4f19-8c90-75eb22e53feb','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(11677,'Day One Shirt Dark Green','Char_Clothing_Torso_0','UNDEFINED','28b327f8-954f-4fce-9628-2f212f1734b4','','','This Henley shirt from Stegman\'s is made with AirFlow technology, a stain-resistant, air-cooled fabric that keeps you comfortable and dry.'), +(11678,'Personal Care Product','Misc','UNDEFINED','591fb76f-04ed-428f-857b-81883442d901','','',NULL), +(11679,'Cobalt','Cargo','Cargo','1b8506a4-40ed-4015-9f7d-071efc7d6906','','',NULL), +(11680,'HRST_LaserScatterGun_Barrel_S2','WeaponAttachment','Barrel','bf863df2-430f-4eb5-addd-25afc9ad7ebc','','',NULL), +(11681,'Fortifier Helmet Base','Armor','Helmet','ddb57a14-88c9-416e-bb38-b5da0bea94a0','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nProtect your most valuable asset with the Fortifier. Intended for extremely hostile environments, this heavy helmet makes up for its limited visibility with extra plating that protects the neck and back of the head.'), +(11682,'Carryable_1H_SQ_datapad_rugged_1_a','Misc','UNDEFINED','285257f2-efea-4c32-a43c-913fd867dd89','','',NULL), +(11683,'volume_foot_01','Armor','Undersuit','4aa968f3-4e6c-42d6-9a19-88702bf8b174','','','@LOC_PLACEHOLDER'), +(11684,'Weapon_Rack_1_Volt_SMG_Uncommon_001','Usable','UNDEFINED','0ad7646d-b37d-41bd-870b-d5c4cd3802a0','','',NULL), +(11685,'Door Control','ControlPanel','DoorPart','303bfd5d-aa0e-4ee7-b05d-af5e14e1ac22','','',NULL), +(11686,'UEE 6th Platoon Medal (Pristine)','Misc','Trophy','366d803c-d830-4668-8375-01776d852519','','','A medal given to members of the UEE Marines 6th Platoon for distinguished service. The esteemed 6th Platoon \'Phantoms\' have received this honor on numerous occasions, including for operations during the Second Tevarin War, on the Vanduul front and for rescuing a UEE survey team taken hostage by the Outsiders on Leir III. The excellent appearance of the ribbon and etchings on the observe have left this medal in pristine condition.'), +(11687,'Glacosite','Cargo','Cargo','204cfa4f-2f57-4d09-8555-bd1c75fb6792','','','As glaciers form, heavier mineral contents sink over time and are then crushed by the weight above as the ice deforms and flows. When the glacier recedes, Glacosite deposits are left behind. White and blue in color, the crystals form in long shiny strands that almost are cotton-like in appearance. Glacosite has found specialized commercial use since it is an extremely light and durable insulator.'), +(11688,'CRUS_Spirit_A1_Exterior','Misc','UNDEFINED','3ac685aa-bab2-4c79-8558-591a3144e3ed','','',NULL), +(11689,'Remote Turret','Turret','PDCTurret','e841d7ed-3807-4173-82b5-109ae3943077','','',NULL), +(11690,'ARMR_ANVL_Terrapin_Medic','Armor','Medium','f17fd7ca-3bd8-4164-8b96-042d5a4222de','','',NULL), +(11691,'Door','Door','UNDEFINED','58df0aca-f7b5-43b4-bbce-7bd63c3a78a1','','',NULL), +(11692,'Dust Devil Legs Epoque','Armor','Legs','24606af7-106f-4892-a522-081ac7d771f8','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -85 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nReinforced alloys are carefully layered to recreate the appearance of warriors from Humanity\'s past to create an armor that\'s intimidating and fuctional. A decorative leather belt completes the look.\n\nThe Epoque edition features a navy and black coloring, finished with baroque gold detailing.'), +(11693,'Novikov \"Ascension\" Backpack','Armor','Backpack','5c007fa0-4354-47c6-b1e3-03c9fd9d2be3','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nConfidently explore cold environments while wearing the Novikov. Caldera designed a spacious backpack to complement this advanced exploration suit, so those venturing across unknown terrain can bring enough supplies to survive the journey. This special IAE 2953 edition is decorated with a copper and white damascus pattern inspired by Gatac Manufacture\'s Syulen.'), +(11694,'volume_shirt_01','Armor','Undersuit','3fcec19e-ee3b-4e4d-b11a-fb380a8d3b89','','','@LOC_PLACEHOLDER'), +(11695,'BANU_Defender_Thruster_Retro','ManneuverThruster','Retro','97334a38-1722-46ec-9119-18d908e9912f','','',NULL), +(11696,'Internal Tank','QuantumFuelTank','QuantumFuel','f483672e-c317-4ce8-b94f-b8afe1428aff','','',NULL), +(11697,'Seat','Usable','UNDEFINED','e8f26cb7-6a3f-483b-b1bb-2db44e14f421','','',NULL), +(11698,'Internal Tank','QuantumFuelTank','QuantumFuel','7443c014-3705-42b2-b967-d08ba688475e','','',NULL), +(11699,'Agricium (Ore)','Cargo','Cargo','724b2fcc-f89d-4474-ac95-c9d02399b345','','',NULL), +(11700,'JDRV_AEGS_S04_Javelin_SCItem','JumpDrive','UNDEFINED','c7d2da14-754f-41f1-9251-4d5f7694fa00','','',NULL), +(11701,'Seat','SeatAccess','UNDEFINED','bc0474e2-b774-4224-9cf5-6654813ec1b5','','',NULL), +(11702,'Quantum Fuel','Cargo','Cargo','1b2250da-46e6-4d9b-847c-a57cf958ba2e','','',NULL), +(11703,'Markanda Undersuit Basalt (Refurbished)','Armor','Undersuit','cae6ba4d-4be2-4af6-a64e-1b9a929c69b3','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nBuilt for adventure but comfortable enough for everyday, the Markanda undersuit has become beloved by explorers. A unique patchwork design creates a flexible yet resilient undersuit, while an odor resistant SureSoft inner lining will keep you from wanting to take it off. This particular undersuit has been repaired for extended use.'), +(11704,'Anvil Decoy Launcher','WeaponDefensive','CountermeasureLauncher','de5d5a8e-c69d-44a3-9126-415d87a17e60','','','Anvil Decoy Launcher'), +(11705,'Access','SeatAccess','UNDEFINED','43d7166d-cf1a-424c-84d5-b06ebbf14f16','','',NULL), +(11706,'Aztalan Helmet Epoque','Armor','Helmet','7ede6215-65ac-4629-afd2-29e66374bb48','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -32 / 64 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFear no frontier while wearing the Aztalan armor. This mixture of armor plating and reinforced fabrics will keep you safe yet swift on your feet. Tehachapi\'s masterful design gives the armor a subtle yet unmistakable frontier style that also providing ample storage. Suitable for everything from sand dunes to bustling backstreets, the Aztalan is the ideal choice for your next adventure. Visor is AR crosshair compatible.\n\nThe Epoque edition features a navy and black coloring, finished with baroque gold detailing.'), +(11707,'un_box_plastic_2_berries_a','Misc','UNDEFINED','92496b4b-581d-45b4-9b4f-6f5651c9f17a','','',NULL), +(11708,'Karna \"Brimstone\" Rifle','Weapon','Medium','b5a8e588-4d57-410f-a784-99403cf65fc4','','','Manufacturer: Kastak Arms\nItem Type: Assault Rifle\nClass: Energy (Plasma)\n\nBattery Size: 35\nRate Of Fire: 500 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nThe Karna is a classic Kastak Arms plasma assault rifle. This mid-range mauler features charged and full-auto fire modes to allow for quick and easy situational adjustments. Besides its renowned firepower, the Karna\'s rugged looks and reliability have made it one of Kastak Arms\' most popular weapons. The \"Brimstone\" special edition features a bold red top-trim and a dark gray finish on the lower half of the weapon.'), +(11709,'Venture Core','Armor','Torso','dc079d73-0014-41ff-8c00-3adf0eabbc3b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(11710,'Golem Greysteel Livery','Paints','UNDEFINED','4599c9c0-f1d0-4f63-af8c-def1cb01bfb4','','','The Greysteel livery artfully deploys various shades of grey across the Golem for a subtle yet captivating look.'), +(11711,'United Empire of Earth Mini-Flag','Flair_Cockpit','Flair_Static','0da6ef02-1468-4adf-bc88-79a62a931165','','','Celebrate the United Empire of Earth (UEE) wherever you go by flying a holographic version of the flag. The small and sleek stands makes it an ideal accessory for a desk or ship. Featuring a vibrant blue color offset by white, this iconic symbol incorporated iconography from the previous UPE flag to represent the next phase of Humanity\'s united government as it grew into a massive empire.'), +(11712,'Internal Tank','QuantumFuelTank','QuantumFuel','6370972a-804a-44af-a196-3fea93780626','','',NULL), +(11713,'Specialty Hornet S5 VariPuck Mount','Turret','BallTurret','18895043-42c5-4f1d-a5e8-4cf7c78bd69f','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 5\n\nA ‘special mission’ weapon mount from Flashfire Systems designed to allow the Hornet to attach weapons the same size as the hardpoint the VariPuck is mounting to.'), +(11714,'Freelancer Whammer\'s Livery','Paints','UNDEFINED','ea626499-8dfa-4af0-a148-5286a2cfcac2','','','Cravin\' a special look for your Freelancer? Then equip this Whammer\'s branded black and red paint scheme and have yourself a good time.'), +(11715,'F8 Lightning Auspicious Red Livery','Paints','UNDEFINED','c8d663e3-c741-43e1-a7cd-2a0d53d3c7f9','','','The Auspicious Red livery brings a bold red base paint and striking gold accents to the F8 Lightning.'), +(11716,'ADP Legs Olive','Armor','Legs','409def54-f7ff-468c-be29-2a7715091164','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(11717,'Internal Tank','QuantumFuelTank','QuantumFuel','ab9e05fd-a53b-4adf-880b-ae9fa070a05c','','',NULL), +(11718,'sp_int_gift_kiosk_stand_b','ShopDisplay','Default','8994d19f-56b7-4594-b941-4a8c605edcd2','','',NULL), +(11719,'Bengal_BallisticGatling_Ventilation_S6','WeaponAttachment','Ventilation','68cde8c8-3b09-496c-b9c6-4153a18f4a7e','','',NULL), +(11720,'GLSN_Shiv_Thruster_Main_Side','MainThruster','FixedThruster','1b3ed1f1-45a3-4b32-a152-4948de032db8','','',NULL), +(11721,'WiDoW','Cargo','Cargo','4cb316cb-23f9-4c23-9303-b0b358d15180','','',NULL), +(11722,'MISC_Starfarer_CargoGrid_Side_Alcove','CargoGrid','UNDEFINED','b59d47c7-0c5c-4f29-9292-f9c833826c5f','','',NULL), +(11723,'Carnifex Armor Legs','Armor','Legs','06ee376e-daff-4cc8-8dac-87c7299c1f64','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -5 / 35 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nThis homemade armor provides a marginal amount of protection but maximum attitude. It\'s aggressively styled with skulls and other intimidating accessories associated with those living on the edge. Wearing such a distinct look may either keep people away... or draw them to you.'), +(11724,'QuadraCell MT','PowerPlant','Power','18d542ac-ee74-411e-ad3e-e2e0b980c103','','','Item Type: Power Plant\nManufacturer: Aegis Dynamics\nSize: 2\nGrade: A \nClass: Military\n\nAn Aegis intern crafted the initial design for the QuadraCell MT power plant, inspiring a phrase often heard around their office, “Fresh eyes bring fresh innovation.” This military-grade component still outperforms any other medium power plant they make.'), +(11725,'Radford Shirt Crusader Edition Blue Wide Pinstripe','Char_Clothing_Torso_0','UNDEFINED','b519786e-bab8-460b-b95f-b1e476b354d1','','','The Radford dress shirt and tie combo proves that simple elegance is eternal. The shirt features a unique side seam that provides a tailored fit. A silver tie bar is the perfect finishing accent to make sure everything stays in place. \n\nThe Crusader Edition was made specifically for employees of Crusader Industries.'), +(11726,'Levin Undersuit Greyscale (Refurbished)','Armor','Undersuit','32786c0f-5be6-4110-b360-37cab7349806','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nFeaturing flexible gaskets for greater comfort and more natural movement, along with a convenient range of chest connector port options, the Levin from Caldera has been a practical choice for explorers everywhere. This particular undersuit has been repaired for extended use.'), +(11727,'Door','Door','UNDEFINED','d96b5d2f-bf5e-4f44-84a0-b53140eedd91','','',NULL), +(11728,'Seat','SeatAccess','UNDEFINED','df9c1a75-d3f3-4c56-baa5-87873be19817','','',NULL), +(11729,'Radford Shirt Crusader Edition White Pinstripe','Char_Clothing_Torso_0','UNDEFINED','2a725eee-a719-467a-9073-71e78971a2d7','','','The Radford dress shirt and tie combo proves that simple elegance is eternal. The shirt features a unique side seam that provides a tailored fit. A silver tie bar is the perfect finishing accent to make sure everything stays in place. \n\nThe Crusader Edition was made specifically for employees of Crusader Industries.'), +(11730,'TRGT. STATUS','Seat','UNDEFINED','08165143-6f44-4b6e-aaf0-4892e0ff8a11','','',NULL), +(11731,'Radford Shirt Crusader Edition White Grid','Char_Clothing_Torso_0','UNDEFINED','6712fb50-049a-4f54-89c8-332a67197e3a','','','The Radford dress shirt and tie combo proves that simple elegance is eternal. The shirt features a unique side seam that provides a tailored fit. A silver tie bar is the perfect finishing accent to make sure everything stays in place. \n\nThe Crusader Edition was made specifically for employees of Crusader Industries.'), +(11732,'Radford Shirt Crusader Edition White Wide Pinstripe','Char_Clothing_Torso_0','UNDEFINED','c65bd5d4-d629-4111-b21e-3ea7a6c6f9ce','','','The Radford dress shirt and tie combo proves that simple elegance is eternal. The shirt features a unique side seam that provides a tailored fit. A silver tie bar is the perfect finishing accent to make sure everything stays in place. \n\nThe Crusader Edition was made specifically for employees of Crusader Industries.'), +(11733,'DRAK_Cutlass_Steel_Thruster_Maneuver_Front_Top','ManneuverThruster','JointThruster','d65163e3-c434-41f0-ae2f-ed5548c025a2','','',NULL), +(11734,'TRGT. STATUS','Seat','UNDEFINED','d6cc3437-cbf5-47e6-9a2c-dfaba7e602a3','','',NULL), +(11735,'PyroBurst Scattergun','Weapon','Gun','aa41e4d8-6b99-4f63-90d5-b0956e70c1d8','','','Manufacturer: Amon & Reese Co.\nItem Type: Plasma Scattergun\nSize: 3\n\nYou ship will spread havoc with A&R’s PyroBurst plasma shotgun. Effective in close quarters, the PyroBurst sprays self-detonating plasma projectiles, sacrificing pinpoint accuracy for area saturation.'), +(11736,'Reclaimed Water','Drink','Bottle','7bc46fe2-756c-4093-b7b3-cb5e0a4ab9f5','','','HEI: 44\nEffects: Hydrating, Toxic\n\nFiltered water that has been reclaimed from various sources.'), +(11737,'lt_lamp_desk_1_a','Light','UNDEFINED','a4fb9977-55ba-4467-8b72-4c33df96d28f','','',NULL), +(11738,'TRGT. STATUS','Seat','UNDEFINED','02e461f4-6f2a-449a-bd34-b1dca7d92d18','','',NULL), +(11739,'Veil','Shield','UNDEFINED','32e241cf-130e-4b00-8752-0da67e98a40f','','','Item Type: Shield Generator\nManufacturer: Ascension Astro\nSize: 1\nGrade: B\nClass: Stealth\n\nAn advanced cooling system significantly reduces the heat produced by the Veil stealth shield generator. No other component in its class even comes close to rivaling its heat suppression technology.'), +(11740,'Internal Tank','FuelTank','Fuel','08747c97-b1e1-406f-a2bb-1db7583a6600','','',NULL), +(11741,'Attrition-6 Repeater','Weapon','Gun','f02c1934-9ebb-413c-9f3e-cbcb262f25de','','','Manufacturer: Hurston Dynamics\nItem Type: Laser Repeater\nSize: 6\n\nWith Hurston Dynamics\' cascade technology, the Attrition-6 laser repeater maximizes it\'s combat potential. It\'s common for weapons to heat up when used heavily in combat, but what sets this size six repeater apart is that thermal energy is translating directly into increased offensive strength.'), +(11742,'Torrent III Module','MiningModifier','Gun','54f4471f-592d-49c1-a12f-fb24c4771ab2','','','Manufacturer: Thermyte Concern\nItem Type: Mining Module (Passive)\n\nOptimal Charge Rate: +40%\n\nOptimal Charge Window Size: -1%\n\nSave time while mining with the Torrent III Module. It requires steady hands to hit the sweet spot but accelerates the charge rate once there.'), +(11743,'Stirling Exploration Suit Alkaline Edition','Armor','Undersuit','9beed295-b9e9-4293-b65a-331e919764e1','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nDesigned to withstand inhospitable environments, the Stirling Exploration Suit provides a base level of protection from environmental hazards including radiation. Combining Caldera\'s advanced insulation fabrics with sophisticated polymers, the Stirling is able to safeguard the wearer whilst minimizing disruption to movement. Additionally, a self-cleaning system automatically activates after radiation exposure to expunge dangerous excess down to nominal levels. Influenced by refined ores, the Alkaline Edition fuses black, bronze, and gray accents.'), +(11744,'Performance T-Shirt','Char_Clothing_Torso_0','UNDEFINED','5172964d-7d58-4339-841c-5a4eebfef9d8','','','This Performance t-shirt from City Lights is made from 100% dryweave synthetics, keeping the fabric soft, comfortable and sweat-free.'), +(11745,'Door Control','Door','UNDEFINED','15b0f4df-5696-4eba-a236-36744b07e360','','',NULL), +(11746,'MISC_Starfarer_Thruster_Mav_Joint','ManneuverThruster','JointThruster','740314dd-d000-4acb-8ca4-27a81a4bbd54','','',NULL), +(11747,'shelf_01x005x00375_2ports','ShopDisplay','Default','39471b0d-74ed-47f9-a095-41f209dad19e','','',NULL), +(11748,'MISC_Reliant_Thruster_Mav_Fixed_Vertical','ManneuverThruster','FixedThruster','168822e8-2075-4862-ab9a-c7a544d30803','','',NULL), +(11749,'Kino Shoes','Char_Clothing_Feet','UNDEFINED','06a90691-c551-46fa-977b-f7831222884f','','','These two-tone slip-on shoes are comfortable enough for casual wear, but stylish enough for the workplace.'), +(11750,'Seat','Usable','UNDEFINED','bb6cd2a4-8a69-4861-8182-919e09c2488c','','',NULL), +(11751,'KLWE_MassDriver_Barrel_S2','WeaponAttachment','Barrel','25335c83-3aab-4aa3-80dd-b1fe87180b29','','',NULL), +(11752,'m_human_mannequin_truDef_pro_odyssey','ShopDisplay','UNDEFINED','3c69b05d-5828-43a3-9581-13fffeb75b43','','',NULL), +(11753,'Pitman Mining Laser','Mining','Gun','5a704f96-c339-43e7-b918-7fc9957673ed','','','Manufacturer: Drake Interplanetary\nItem Type: Mining Laser \nSize: 1\n\nOptimal Range: 40m\nMaximum Range: 45m\nMining Laser Power: 3150\n\nModule Slots: 2\n \nResistance: +25 %\nLaser Instability: +35 %\nInert Material Level: -30%\nOptimal Charge Window Rate: -40%\n\nBespoke to the Drake Golem, this mining laser was designed for those beginning a career in mining. It\'s been carefully calibrated to ensure an easy operator experience and reduce the likelihood of catastrophic accidents.'), +(11754,'Table_2_Seat_High_Lowtech_1_a','Usable','UNDEFINED','fb133951-8276-4580-a031-9ad980ed4096','','',NULL), +(11755,'Collector_SCItem_SeatAccess_ATC','SeatAccess','UNDEFINED','877f8c03-2a3e-4aaf-bef1-e133daa950cb','','',NULL), +(11756,'Nivala Shoes Ash','Char_Clothing_Feet','UNDEFINED','0b9fb0aa-2489-4c5c-90ec-615efdcb0e88','','','The Alejo Brothers expertly engineered the Nivala shoes to provide high ankle support while remaining lightweight. The shoes mix the company\'s patented FullFlex rubber with synthetic nubuck leather for flexible yet strategic support, and feature cushioning on the heels and balls of the feet for supreme comfort.'), +(11757,'Seat','Usable','UNDEFINED','88289098-f0ba-401e-87f6-4f2c0ac0cf0f','','',NULL), +(11758,'600i Cold Forge Livery','Paints','UNDEFINED','2cf575b1-925b-42c7-9e0a-5fb888a069a6','','','Give your 600i a classic metallic tint with stylish red and black highlights with the Cold Forge livery.'), +(11759,'Carryable_2H_FL_Safe_1_b','Misc','UNDEFINED','7b9df71c-1ce4-4196-9efc-536f36b09b21','','',NULL), +(11760,'Door Control','Door','UNDEFINED','b1f3b42e-660c-4ca1-9e41-adf92be3840c','','',NULL), +(11761,'Internal Tank','QuantumFuelTank','QuantumFuel','3ecf1e1e-bde7-4185-a955-020673128d8e','','',NULL), +(11762,'DRAK_Herald_Thruster_Aux','MainThruster','FixedThruster','7b0dbc57-1e54-4761-b8f8-7fee93a091dc','','',NULL), +(11763,'Mivaldi Pants Blue','Char_Clothing_Legs','UNDEFINED','db40dfef-4eac-4ad2-af15-48a6bbabc888','','','Carrying Capacity: 0.5K µSCU\n\nCut to a narrow fit, OpalSky\'s Mivaldi pants feature bold asymmetrical design with smart yet casual dual material styling, making it the perfect addition to any wardrobe.\n\nWomen\'s sizes currently out of stock.'), +(11764,'Nova Nightbreak Livery','Paints','UNDEFINED','ea5e4814-d6de-4fec-8444-1255fee713eb','','','Discreetly traverse under the night sky in the Nova with the Nightbreak livery, which is primarily black with red highlights.'), +(11765,'Fresh Food','Cargo','Cargo','7323eff2-9389-4b39-b349-6274d155da59','','',NULL), +(11766,'Weapon_Rack_1_GMNI_Sniper_Common_001','Usable','UNDEFINED','a20fde15-1caa-4e18-9f3a-b475233d7b63','','',NULL), +(11767,'AEGS_Retaliator_Thruster_Mav_Fixed_Lateral','ManneuverThruster','FixedThruster','d8f36606-82df-4602-8db8-51944be53eb5','','',NULL), +(11768,'Door Control','Door','UNDEFINED','80d730ec-369b-4c38-b3b8-7124dbe5a111','','',NULL), +(11769,'Seat','Usable','UNDEFINED','c2dd4168-be6b-4ea1-bfd6-4dde7ea9aa1a','','',NULL), +(11770,'Winter-Star XL','Cooler','UNDEFINED','71df1f43-b44d-47e7-9d29-2a4e090aee07','','','Item Type: Cooler\nManufacturer: J-Span \nSize: 3\nGrade: D\nClass: Civilian\n\nFor two centuries, J-Span has dedicated itself to manufacturing coolers. The Winter-Star XL is their entry level large cooler. What it lacks in features, it more than makes up for in solid craftsmanship.'), +(11771,'Flight Blade','FlightController','UNDEFINED','ce0c3841-823b-4ecd-bf72-e61389c3a0e3','','',NULL), +(11772,'Personal Storage','Cargo','UNDEFINED','9749b221-ac93-43ec-8925-61f5bebdca1d','','',NULL), +(11773,'Tolo Jacket Crusader Edition','Char_Clothing_Torso_1','UNDEFINED','5c845b5f-2368-4944-b11f-1bbaab6ec40d','','','Carrying Capacity: 1K µSCU\n\nA creatively integrated dickey gives the Tolo its fashionable and unconventional look. This three quarter sleeve shirt also features small epaulettes perched atop each shoulder. The Crusader Edition was made to be worn by Crusader employees and features the company\'s sword & C logo on each shoulder.'), +(11774,'Vehicle_Screen_MFD_Holographic_MISC_Fortune_LL','Display','UNDEFINED','e80545c2-bf0d-4cfa-a79b-4aa7f5aba5bc','','',NULL), +(11775,'Pite','Char_Head_Piercings','UNDEFINED','348b6c50-50c1-4ee8-ae01-a1da48174d54','','',NULL), +(11776,'DockingTube_Fuel_Ports_DRAK_Cutlass','DockingCollar','UNDEFINED','7b319933-6244-4874-9d39-63eb342ceebc','','',NULL), +(11777,'DRAK_Cutlass_Blue_PrisonerPods','Usable','UNDEFINED','be93fd54-32da-4a63-9dad-b60fe35faf1b','','',NULL), +(11778,'HRST_LaserScatterGun_PowerArray_S2','WeaponAttachment','PowerArray','22df0629-c164-444a-bd5b-9413f5d3380e','','',NULL), +(11779,'ANVL_Lightning_F8_Thruster_Mav_Joint_Grey','ManneuverThruster','JointThruster','2da08a4d-6d8c-4b21-a610-71de3f5c71b9','','',NULL), +(11780,'KLWE_MassDriver_PowerArray_S3','WeaponAttachment','PowerArray','06391919-f026-4e93-9acd-31dc6d7b72a8','','',NULL), +(11781,'Screen','SeatDashboard','UNDEFINED','b2e6f541-e23b-4c76-ae1d-ec444b1c4e4c','','',NULL), +(11782,'TrueDef-Pro Legs','Armor','Legs','26d116dd-ae63-485f-9146-f4f4f5ae548d','','',NULL), +(11783,'Mule Reburn Livery','Paints','UNDEFINED','99b7f9ef-953f-4802-aec5-48f91e107f10','','','Who says you can\'t have a bit of fun while on the job? The Reburn livery for the Drake Mule brings a red tint to the cockpit glass and cargo cover.'), +(11784,'Tigo Gloves','Char_Clothing_Hands','UNDEFINED','3a5b0afb-1106-4e7b-8e36-aa666a9f1a1c','','','Make a statement without saying a word. Spar Van Miles\' Tigo gloves made headlines in the fashion world with their open-finger design.'), +(11785,'Door Control','Door','UNDEFINED','8907caf6-3fe5-4d01-8414-3765b5463bd3','','',NULL), +(11786,'Zelena Pants Midnight and Bisbee Boots','Char_Clothing_Legs','UNDEFINED','e71bbab3-950f-4ce6-b2f5-b720938e427f','','','Carrying Capacity: 1K µSCU\n\nStay warm and dry on rainy days in the Zelena pants and the Bisbee boots. Both made with water-repellant materials and built-in sweat-wicking technology, they\'ll be your go-to choice for adventures on even the most hostile worlds.'), +(11787,'Internal Tank','QuantumFuelTank','QuantumFuel','b8790a9c-4cbf-4b63-8a25-4bcd9447d5d7','','',NULL), +(11788,'Internal Tank','QuantumFuelTank','QuantumFuel','12588602-1b5a-4084-93fd-121045a43eee','','',NULL), +(11789,'HLX99 Hyperprocessors','Cargo','Cargo','68f6217c-dc0f-4143-8433-c5923b947b55','','',NULL), +(11790,'Hangar_FreightElevator_CargoGrid_Small','CargoGrid','UNDEFINED','004baa98-099f-4276-921a-d07ea4646c09','','',NULL), +(11791,'Tussock Boots Hematite','Char_Clothing_Feet','UNDEFINED','4a378cc9-435f-4703-af86-ca15ceaebe6a','','','A proprietary blend of natural and artificial leather provides the Tussock Boot with unbeatable toughness, making it the perfect fit for both work and leisure.'), +(11792,'Redfin Energy Modulators','Cargo','Cargo','99bde026-946a-4667-97c8-abe7b2cba1c7','','',NULL), +(11793,'Cliffback T-Shirt Dark Red','Char_Clothing_Torso_0','UNDEFINED','00fd8adb-9306-44cf-b285-1f9b3f5e2a98','','','Alejo Brothers\' classic loop tee with a spatter pattern.'), +(11794,'PAB-1 Legs Twilight','Armor','Legs','11f3c184-5fe3-4a5e-b807-8daf35d9f609','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(11795,'utensil_tray_1_medical_a','Misc','UNDEFINED','9a074346-ebfd-40fb-a123-03434e366db5','','',NULL), +(11796,'CRUS_Starlifter_CargoGrid_Small_M2','CargoGrid','UNDEFINED','243fa30c-dd5e-4a72-9e99-fbf9145fe910','','',NULL), +(11797,'Manned Turret','TurretBase','MannedTurret','ae0f5d20-d740-449c-920b-84ff32340321','','',NULL), +(11798,'WeaponMount_Gun_S1_default_laser_repeating','WeaponMount','WeaponControl','3734c6b5-5f3c-4720-b5fa-f2b48b38e653','','',NULL), +(11799,'CSV Primer Livery','Paints','UNDEFINED','0a84028a-a810-42ac-987e-b91445a43078','','','A clean worksite is a point of professional pride for many in the industry, and nothing says neat and tidy like the pristine white Primer livery for the Argo CSV.'), +(11800,'AEGS_Sabre_Thruster_Mav_SideRR','ManneuverThruster','JointThruster','0474efc3-11fb-44c0-904c-5a3ec0c427b5','','',NULL), +(11801,'Microid Battle Suit Arms Crucible','Armor','Arms','1b50a564-2395-4c5d-b51a-db4692aebbed','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(11802,'counter_display_mod_end_0038x01x01_01Port_HackingTools','ShopDisplay','UNDEFINED','36df471b-bb30-4adf-91af-0e4fe90f3ea8','','',NULL), +(11803,'BANU_TachyonCannon_FiringMechanism_S1','WeaponAttachment','FiringMechanism','6cc8457a-d30f-442d-9755-087d82985de9','','',NULL), +(11804,'Seat','Usable','UNDEFINED','9a6a10cc-2730-477f-9d6c-4ec768d92b02','','',NULL), +(11805,'Door Control','Door','UNDEFINED','f43ef7e3-e009-4c1b-8b30-d3b6eb0fb0f3','','',NULL), +(11806,'Railing_Straight_4m_Lowtech_Guardrail_D','Usable','UNDEFINED','83237163-2945-4ec7-a7cd-fa9d07dd21ac','','',NULL), +(11807,'ARGO_MPUV_Thruster_Retro_Joint','ManneuverThruster','FixedThruster','48f5629c-66d8-4a01-9225-6518ca527121','','',NULL), +(11808,'Carryable_2H_FL_Vlk_Pearl_Low_04','Misc','Harvestable','863ac535-a76d-4807-a181-678249ae6d7b','','',NULL), +(11809,'Strata Helmet Hurston Edition','Armor','Helmet','5e578b7d-fc39-437e-a9ac-1bb8336f2ec4','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design features high quality materials and a next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Hurston Edition was made specifically for the company.'), +(11810,'Riccite (Ore)','Cargo','Cargo','d7bebd12-e05a-4bec-aedb-799c57a96874','','',NULL), +(11811,'ITG Hat','Char_Clothing_Hat','UNDEFINED','0743319c-2ee2-4db3-b3ff-ce9cc5757242','','','A blue and black cadet hat with the Interstellar Transport Guild\'s name and logo emblazoned across the front and back panels.'), +(11812,'Tarantula GT-870 Mark 1 Cannon','Weapon','Gun','8bebf292-a9a3-4dc8-a86c-ddfa3b9b79be','','','Manufacturer: Gallenson Tactical Systems\nItem Type: Ballistic Cannon\nSize: 1\n\nFed by Gallenson Tactical’s patented SpinGlide drum ammunition system, the Tarantula GT-870 Mk1 can smoothly and accurately deliver a consistent stream of ballistic shells. Though it only has a moderate rate of fire, its trustworthy durability makes it a dependable addition to any fight.'), +(11813,'AEGS_Sabre_Peregrine_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','5172b6a5-2b37-45af-ace5-b580bff1b7cd','','',NULL), +(11814,'Hammerhead Ship Armor','Armor','Medium','3e75b2cd-1b99-46b2-91eb-2177a2024910','','','Hammerhead Ship Armor'), +(11815,'Inquisitor Legs Outcrop','Armor','Legs','b2de6ee0-b010-4134-befc-c342767456cc','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(11816,'Tungsten','Cargo','Cargo','edd35ba6-9297-4555-8b28-167f13338e7d','','',NULL), +(11817,'Raw Silicon','Cargo','Cargo','0249352c-75fb-4a8a-8906-b241ef368a6a','','','A strong and brittle element with good thermal conductivity. Crystalizes in a diamond form.'), +(11818,'Door_ASD_OneWay_AutoClose','Door','UNDEFINED','8987b910-1aa4-4741-ac21-fcc80b899323','','',NULL), +(11819,'SHIELDS','ShieldController','UNDEFINED','6046efc9-f61a-4c70-94b7-bb4b50c88b74','','',NULL), +(11820,'Bed','Usable','UNDEFINED','cec46bef-7bfa-4bc2-a568-6a2b2d0954c9','','',NULL), +(11821,'Kamar Jacket','Char_Clothing_Torso_1','UNDEFINED','7095ce23-e75d-4ddb-a738-9cc6f3c75e2a','','','Carrying Capacity: 1K µSCU\n\nThe Kamar is a modern update on a classic style featuring a truly unique design and silhouette. Centered around an ultra-soft velvet front panel, it features a fitted collar, wide pleated waistband, and bishop sleeves cinched by extra long cuffs. The result is a formal top that\'s bold yet timeless.'), +(11822,'Table_Desk_1_Seat_CRUS_Star_Runner','Usable','UNDEFINED','f7995e61-b027-4d1e-b557-d60ebb8e0564','','',NULL), +(11823,'Tumbril T-Shirt','Char_Clothing_Torso_0','UNDEFINED','7e7e8e3c-8a87-425a-9e51-19afe4893d22','','','This orange and gray shirt displays the famed logo of Tumbril Land Systems, makers of legendary land vehicles such as the Nova tank and the Cyclone buggy. In need of a military-grade vehicle at a civilian price? Think Tumbril.'), +(11824,'food_ration_pack_f','Misc','UNDEFINED','252f3284-c83e-4527-a450-c45de09602c9','','',NULL), +(11825,'G-2 Helmet Cry-Astro Edition','Armor','Helmet','f4faf578-bbf9-40ee-adc4-70cc163813ae','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. The Cry-Astro Edition was made specifically for the company.'), +(11826,'Mala','Cargo','Cargo','3b8ae922-3a49-481b-8c3b-a333980cb91f','','',NULL), +(11827,'Helium','Cargo','Cargo','73c924fd-7f64-4c2b-b190-e1e631156137','','',NULL), +(11828,'VendingMachine_coffee_1_c','Cargo','UNDEFINED','2b47efa7-a69d-45f3-8bf6-50da1e86377f','','',NULL), +(11829,'Zip','Cargo','Cargo','60dc412a-bcfd-44e4-87f7-b1843d2e8ea3','','',NULL), +(11830,'ARGO_MOTH_Thruster_VTOL','MainThruster','FixedThruster','cf0799ae-77ed-494f-b5db-3b76ee40f432','','',NULL), +(11831,'Gadget_Cabinet_kegr_fire_extinguisher_display_02','Usable','UNDEFINED','99c2523d-cd31-4866-88b7-b45608f4fbca','','',NULL), +(11832,'display_booth_stand_2_weapon_00555x0015x008','ShopDisplay','Default','602642b7-3dbf-4c60-9ce0-417edb73d48f','','',NULL), +(11833,'Lycara','Cargo','Cargo','c5610e66-b90e-476d-ada1-f2ed7f429e29','','',NULL), +(11834,'Strata Arms','Armor','Arms','80ebb28f-cf3f-4a06-82f4-981a2467a9eb','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres.'), +(11835,'Citadel Legs Dark Red','Armor','Legs','74214901-360c-46fa-9ff8-2d60d8260290','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure.'), +(11836,'TRGT. STATUS','Seat','UNDEFINED','9b5673db-661f-4a6f-98fd-e61e47772a92','','',NULL), +(11837,'Beryl (Raw)','Cargo','Cargo','a1ed52ef-540c-4fd3-94a2-3c2a6a010208','','',NULL), +(11838,'Door Control','Door','UNDEFINED','2f1b41ee-d168-4bf7-af0f-735a781dfae8','','',NULL), +(11839,'MISC_Starlancer_OuterBtn_Exterior','Elevator','UNDEFINED','ad7a28b2-ded9-4541-a167-d0c657628af8','','',NULL), +(11840,'Drake T-Shirt Red Logo','Char_Clothing_Torso_0','UNDEFINED','ad08cdd6-01e1-4a4b-a5d7-7368e6737b87','','','Drake Interplanetary\'s designs have caught the public\'s imagination. From the Kraken to the Cutlass, share your love for their ships with this comfortable black and red shirt, featuring the company\'s logo.'), +(11841,'lowtech_grimhex_airlock_lghtgrp','Lightgroup','AirlockPart','c5422a7d-ddd8-4037-9988-31f6fdc2e57b','','',NULL), +(11842,'Markanda Undersuit (Refurbished)','Armor','Undersuit','036bd7d8-d487-4069-ba7c-873a26afc9a1','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nBuilt for adventure but comfortable enough for everyday, the Markanda undersuit has become beloved by explorers. A unique patchwork design creates a flexible yet resilient undersuit, while an odor resistant SureSoft inner lining will keep you from wanting to take it off. This particular undersuit has been repaired for extended use.'), +(11843,'Crusader Mercury Star Runner Nose Turret','Turret','BallTurret','920c89a5-30e2-403a-88bf-9e3d33a3f8f9','','','Item Type: Turret\nManufacturer: Crusader Industries\nSize: 3\n\nThis pilot-controlled, dual-linked nose turret is mounted to the belly of the Mercury Star Runner. Bespoke to the ship, the turret is outfitted with two size-3 laser repeaters ready to help keep your flight path clear.'), +(11844,'ROC Module','MiningModifier','Gun','e17408e8-e1ad-4402-9cd9-3e05425a291a','','','Manufacturer: Greycat Industrial\nItem Type: Mining Module (Passive)\n\nThis bespoke mining module was designed specifically for use with the ROC.'), +(11845,'Bed','Usable','UNDEFINED','9e260408-594c-4d08-864d-22560cb07f3a','','',NULL), +(11846,'Edgewear Pants','Char_Clothing_Legs','UNDEFINED','588ea4cf-7b02-4562-8679-e11753d5e0b1','','','Carrying Capacity: 4K µSCU\n\nStegman\'s Edgewear utility clothes are made from reinforced nylon weaves and lined with temperature-rated quilted technology to provide you with a little extra protection while on the jobsite. Double knees, reinforced joint pads and extra pockets add comfort and durability to this field-tested and worker-approved clothing line.'), +(11847,'GME 240-15 Patient Slippers Honeycomb','Char_Clothing_Feet','UNDEFINED','a4c61f14-0d28-473a-a3b5-2aeeea391c08','','','The standard GME 240-15 Patient Slippers offer necessary foot protection and comfort during a patient\'s visit to a medical facility. Constructed from the same antibacterial fabric as the GME 338-10 Medical Gown, the slippers feature an easy on/off design and an anti-slip coating on the sole.'), +(11848,'MISC_Reliant_CargoGrid_Tana','CargoGrid','UNDEFINED','ba5e8590-a090-4997-8e2b-2839d4d69faa','','',NULL), +(11849,'Hercules Starlifter Meridian Livery','Paints','UNDEFINED','5553e9b0-0659-49fc-a4a7-9f95ae10243e','','','The Meridian livery gives the Hercules Starlifter a simple yet stylish metallic silver finish.'), +(11850,'Personal Care Product','Misc','UNDEFINED','80f7fdea-0e00-48ca-8ef7-3ff1f3dfd1ed','','',NULL), +(11851,'Door Control','Door','UNDEFINED','0dc8538f-d698-4b23-8318-027f01e850d9','','',NULL), +(11852,'m_teeth_vlk_adult_irradiated','Char_Accessory_Head','Vanduul','bfd6d16c-472b-4d86-8b98-5585e3617495','','',NULL), +(11853,'ANVL_Door_Decal_Carrack_StarTurret','Decal','DoorPart','793db4da-e779-4079-b0c2-e43dcb6871f3','','',NULL), +(11854,'M3A Cannon Defense Division','Weapon','Gun','871d4786-d443-493f-b2b9-d610b4108c6a','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 1\n\nThe M3A is Behring\'s entry level laser autocannon. The autocannon configuration offers modest damage per projectile and a fairly low rate of fire. As the most basic offering in Behring\'s weapons lineup, it features low power consumption, but poor power efficiency. It makes up ground for its shortcomings by being cheap, a feature many pilots are looking for when outfitting their ships on a budget.\n\nThe Defense Division edition features a gray, urban camo pattern and was given to those who assisted Alliance Aid\'s Defense Division during Levski\'s time of need.'), +(11855,'ANVL_Door_Decal_Carrack_Garage','Decal','DoorPart','206fda87-7eff-4dbc-8fcf-d0370fb0d52f','','',NULL), +(11856,'Normstar T-Shirt','Char_Clothing_Torso_0','UNDEFINED','7ad1e532-9af6-476d-a8c7-5048b92b3f88','','','Normstar knows the secret to making Human shoes that are comfortable on the feet and pleasing to the eye. A Banu souli created this shirt in honor of that great accomplishment.'), +(11857,'Weapon_Rack_1_VOLT_LMG_Uncommon_003','Usable','UNDEFINED','396d5599-3917-4dd8-9370-1d76ab454888','','',NULL), +(11858,'Hermes Paragon Livery','Paints','UNDEFINED','c4ce78ee-f972-4b04-a73b-9d208e784490','','','The Paragon livery consists of a cool, crisp white, with regal blue and gold accents worthy of admiration.'), +(11859,'GATS_BallisticGatling_Ventilation_S2','WeaponAttachment','Ventilation','ac8c15b2-4e46-4523-8671-cee943031741','','',NULL), +(11860,'MRAI_Guardian_Thruster_Main_Right_MX','MainThruster','JointThruster','463cb6d0-eb06-c364-09a9-e709795b6cab','','',NULL), +(11861,'Aves Shrike Legs','Armor','Legs','3d3ad894-769a-44ce-b824-90454e9d51ad','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nHonor and embody the Tevarin aesthetic with the Aves Shrike armor; manufactured with white, blue, magenta, grey, and black plating to perfectly evoke the shape language imbued into their iconic ships. This medium armor from CC\'s Conversions is both sensational and practical, providing solid protection without sacrificing your mobility. When paired with the Aves Shrike helmet, the suit combines for a striking and unforgettable look.'), +(11862,'Green Curry Primavera','Food','Box','55507f33-6ecb-46af-9977-adf2ddc4da6d','','','NDR: 48\nEffects: Hypertrophic, Hypo-Metabolic\n\nCreamy green curry with a hint of heat is the ideal match for garlicy vegetables and pasta.'), +(11863,'H_Dashboard_Projector_HUD_ARGO_MPUV','Display','UNDEFINED','174b7253-c50d-4120-bbe2-076ccae7f200','','',NULL), +(11864,'H_Dashboard_Projector_HUD_VNCL_Blade','Display','UNDEFINED','0b170e4d-b7d1-43c7-b672-e1bac8524add','','',NULL), +(11865,'KLWE_MassDriver_Ventilation_S1','WeaponAttachment','Ventilation','0736ce29-2427-4584-89bb-7abee8d42908','','',NULL), +(11866,'weapon_underbarrel_light_narrow_Darkblue_01','WeaponAttachment','Light','6225f48e-d543-4d51-8359-d200eb3fc5da','','',NULL), +(11867,'Hercules Starlifter Cerberus Livery','Paints','UNDEFINED','732e7568-b903-4777-9542-b6c4ee84efff','','','Let your Hercules Starlifter become one with the vast, black expanse of space with the Cerberus livery.'), +(11868,'Focus III Module','MiningModifier','Gun','91417d7d-a6ad-4ce2-9d57-1ae15a7486f9','','','Manufacturer: Thermyte Concern\nItem Type: Mining Module (Passive)\n\nOptimal Charge Window Size: +40%\n\nMining Laser Power: 95%\n\nThe Focus III Module uses a modified mining laser crystal to create a larger optimal charge window at the expense of laser power.'), +(11869,'Odyssey II Helmet Tan','Armor','Helmet','13a3a6db-0a80-4084-8292-3224b875bd06','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(11870,'Door Control','Door','UNDEFINED','0abbb451-bcf7-4e0e-8c3c-6a1bf5752751','','',NULL), +(11871,'Seat','SeatAccess','UNDEFINED','2d679924-f0b4-4064-9901-80582bcab287','','',NULL), +(11872,'Degnous Root','Cargo','Cargo','fddf6632-f9f6-475b-8731-c9b80c252d13','','',NULL), +(11873,'Gold','Cargo','Cargo','f3a103cc-81a6-48e7-8028-d9b9215c5617','','',NULL), +(11874,'Quartz \"Cobalt Camo\" Energy SMG','Weapon','Medium','1b833280-efb7-4a2e-a34d-d4431c097289','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: SMG\nClass: Energy (Electron)\n\nBattery Size: 45\nRate of Fire: Beam\nEffective Range: 15-20 m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nManufacturer VOLT\'s Quartz SMG utilizes exciting new weapon technology that fires a short range beam that fractures into multiple beams the longer it fires, making it an extremely effective close quarter weapon.\n\nThe \"Cobalt Camo\" edition features a striking dark blue and black camo pattern.'), +(11875,'Elevator Control','Door','UNDEFINED','02c04e4d-90c2-4b10-84ce-891a22e085c8','','',NULL), +(11876,'FPS_DefaultRadar','FPS_Radar','UNDEFINED','ff08bbcf-9364-40d7-9bfa-e3271542a500','','',NULL), +(11877,'Seat','SeatAccess','UNDEFINED','28f55ea9-c12a-4579-b98f-6b1877e24050','','',NULL), +(11878,'Lancet MH2 Mining Laser','Mining','Gun','c2006c91-f8f7-4bda-ae38-e0ca5af5c737','','','Manufacturer: Greycat Industrial\nItem Type: Mining Laser \nSize: 2\n\nOptimal Range: 45m\nMaximum Range: 135m\n\nMining Laser Power: 900 - 3600\nExtraction Laser Power: 2590\n\nModule Slots: 2\n\nLaser Instability: -10%\nOptimal Charge Window Rate: +40%\nInert Material Level: -40%\n\nOptimal Charge Window Size: -60%\n\nGreycat classifies the Lancet MH2 as a support laser best utilized when mining with others. While the mining laser\'s small optimal charge window size means precision is key, the Lancet MH2 excels at filling it once found and reducing the amount of inert materials collected by the extraction laser. For mining crews, it\'s an ideal support laser to use alongside other lasers.'), +(11879,'Door Control','Door','UNDEFINED','6a123d95-0a4c-4b0e-91d4-9b4e79713651','','',NULL), +(11880,'facial_hair_027','Char_Head_Beard','UNDEFINED','bda4e041-2f54-4ec6-9bd8-6807e80ddfd6','','',NULL), +(11881,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','37ce7ec6-b9db-417b-be6d-b743597ec401','','','Aegis Gladius - Decoy Launcher'), +(11882,'CRUS_Starlifter_CargoGrid_Small','CargoGrid','UNDEFINED','efad5058-d7e8-48c9-8770-e60b04d64b55','','',NULL), +(11883,'Chicken Pesto Omni Pack','Food','Tin','fed3908f-5c2f-4aa2-ba0b-2e7c9f830d98','','','NDR: 56\nEffects: Hypertrophic, Hypo-Metabolic\n\nOmni Packs use premium certified organic ingredients to create a complete balanced ready-to-eat meal with a premium taste.'), +(11884,'TE_weapon_box__behr_smg_ballistic_01','Misc','UNDEFINED','ddd381c7-58de-42a3-becd-e0460d50cdf8','','',NULL), +(11885,'Carnifex Pants Windfall','Armor','Legs','a1cbff37-756a-49e6-8463-8f0d9e3c879a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -5 / 35 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nThis homemade armor provides a marginal amount of protection but maximum attitude. It\'s aggressively styled with skulls and other intimidating accessories associated with those living on the edge. Wearing such a distinct look may either keep people away... or draw them to you.'), +(11886,'Internal Tank','FuelTank','Fuel','2ff9ff6c-78f3-4e04-be9c-882b9e4fbd57','','',NULL), +(11887,'Hadanite','Cargo','Cargo','ab2530ea-cd41-455e-b6bc-1033d7ca6f19','','',NULL), +(11888,'Radar_Display_ORIG_100','Display','UNDEFINED','9e343915-f29e-4346-aba0-2960bcb0f995','','',NULL), +(11889,'Gauntlet Gloves','Char_Clothing_Hands','UNDEFINED','20eceede-2f6b-426b-93a6-1ddb71ff21ad','','','DMC\'s Gauntlet gloves feel like a hard day\'s work. Built with resilient GranTec composite weaves, these Gauntlets live up to their name, providing maximum protection against environments and impacts so you can work another day.'), +(11890,'MacFlex Legs Seagreen','Armor','Legs','6ccf55f7-b9b5-44c7-b05e-ed81c308b05d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(11891,'ht_booth_table_microtech_2_seater_a','Usable','UNDEFINED','13f5b5ba-7f8e-4387-b25d-96d62d744c3c','','',NULL), +(11892,'Door Control','ControlPanel','DoorPart','0d329039-f0c1-4998-9dd5-3efda3c5ee1e','','',NULL), +(11893,'countertop_display_rotating_8Ports_test','ShopDisplay','UNDEFINED','facf81eb-9704-4d36-8d6c-79001188a2b9','','',NULL), +(11894,'RSI_Polaris_SCItem_SeatAccess_Turret_Top_Left','SeatAccess','UNDEFINED','f1e281db-632d-4664-987c-669af67351ac','','',NULL), +(11895,'ARMR_MISC_Prospector','Armor','Medium','baa06b3f-cb95-4c14-9431-42793da9db22','','',NULL), +(11896,'ORC-mkV Core Sienna','Armor','Torso','4ef3c42b-1993-4776-adbe-97a32785760e','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(11897,'Gallant Rifle','Weapon','Medium','2d4a0321-92ce-4947-9be5-cac36f9f5150','','','Manufacturer: Klaus & Werner\nItem Type: Assault Rifle\nClass: Energy (Laser)\n\nBattery Size: 45\nRate Of Fire: 450 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nDependable assault weapons never go out of style. Klaus & Werner maintains that tradition by unveiling the Gallant. This energy-based assault rifle is capable of providing accurate and sustained fire at targets up to medium range, while its high-capacity power system allows operators to fire considerably more shots per battery.'), +(11898,'TrueDef-Pro Core Black/Aqua/Silver','Armor','Torso','4e100a6f-eb3a-4b0d-8662-bfb25a45b2bc','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(11899,'Zeus Frontier Fighters Camo Livery','Paints','UNDEFINED','e66ef17b-0a71-4885-b0ac-fd6025ea0347','','','Be ready to battle in the untamed wilds with this green camo livery featuring the logo of the Frontier Fighters vigilante group.'), +(11900,'Manned Turret','TurretBase','MannedTurret','e44d42ad-c74f-4ed4-b33f-1c9297d16552','','',NULL), +(11901,'SCItemDisplayScreen_HoloVolume','Display','Default','510c0d8f-5222-49e8-af3f-b289c6452e4e','','',NULL), +(11902,'Access','SeatAccess','UNDEFINED','4128d91f-9888-44c8-b080-94df4c6154a4','','',NULL), +(11903,'Door Control','Door','UNDEFINED','e494bb6b-3bc2-4e86-98a1-55564f360105','','',NULL), +(11904,'INTK_ORIG_X1','FuelIntake','Fuel','deae2e0f-3837-40a4-b16e-9cb2cbb4ceb4','','',NULL), +(11905,'Debnam Gloves','Char_Clothing_Hands','UNDEFINED','05fee1e8-7a26-42a7-8462-f497fa9ddf7c','','','Named after the influential Terran tailor, Debnam gloves incorporate that famous tailor\'s classic design to keep your hands comfortable in colder temperatures.'), +(11906,'Outback Legs Sleet','Armor','Legs','3de4d034-50f2-4030-977f-1357f424ac60','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -65 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2k µSCU\n\nThese durable, reinforced leather pants are not only practical for traversal through inhospitable territory, the metal plated boots will keep you protected along the long road ahead. The Sleet version is dyed a well-worn grey to keep you subtle, but not unsightly.'), +(11907,'PAB-1 Core Seagreen','Armor','Torso','914d2896-860d-425a-891c-30e338eb1723','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(11908,'Stitcher Legs','Armor','Legs','750ab5dc-ebea-46ec-a880-8a9498ce7198','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -52 / 82 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDress to impress in scrapheap chic! The Stitcher armor might look like it\'s held together with tape and good intentions but we swear it\'s space safe. The intentional ramshackle design features a funky double collar, plenty of storage, and a ribbed industrial hose attached to a metal cylinder on the back just for the hell of it.'), +(11909,'ORC-mkV Legs Orange','Armor','Legs','9a1f56b5-5cf2-4755-94a3-3e1d9a8d0efe','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(11910,'Lastaprene','Cargo','Cargo','9107ca52-d38e-4fc1-acfa-ab8af47905ad','','',NULL), +(11911,'RSI_Salvation_Thruster_Retro_Bottom_Left','ManneuverThruster','Retro','b0b653e9-6ff3-4bd7-9898-f514e682724a','','',NULL), +(11912,'BEHR_BallisticGatling_FiringMechanism_S7','WeaponAttachment','FiringMechanism','e13cb553-bf8f-4570-bf91-d8a3991e26c2','','',NULL), +(11913,'Taos Balaclava and Goggles Arctic','Char_Clothing_Hat','UNDEFINED','d3a56045-9adf-42b2-8540-71c3622b3880','','','Fearlessly face any weather with the Taos balaclava and goggles. An ultra-soft inner lining provides warmth and comfort while a special exterior coating repels precipitation. The adjustable headband ensures an ideal fit, and the padding of the anti-fog goggles is integrated directly into the fabric to seal out the elements.'), +(11914,'Pite','Char_Head_Piercings','UNDEFINED','0e24c257-3382-48e5-b35a-3a7550674661','','',NULL), +(11915,'M8A Cannon','Weapon','Gun','493338b9-a7c6-4598-ba32-dd61d5ffef8f','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 6\n\nThe M8A laser autocannon exemplifies Behring\'s extensive history designing and constructing ship armaments. The result is a dependable and effective energy weapon capable of handling large skirmishes or precise defensive maneuvers.'), +(11916,'MRX \"Torrent\"','Turret','PDCTurret','239a48af-d767-4a0f-a3da-8840901eac38','','','Item Type: Ballistic Gatling Turret\nManufacturer: Behring\n\nThe latest generation of point-defense technology, the MRX \"Torrent\" utilizes advanced search, detection, and tracking software to unleash a swift barrage of ballistic fire, protecting ships from incoming missiles, torpedoes, and other high-speed threats.'), +(11917,'Jericho X','Weapon','Rocket','06c3eecf-c6e5-4f63-91ab-158103f04e4a','','','Item Type: Rocket Pod\nManufacturer: Hurston Dynamics\nSize: 2\nRockets: 12xS1\n\nThe Jericho X rocket pod from Hurston Dynamics is compatible with any size two hardpoint and capable of carrying twelve S1 rockets.'), +(11918,'Locker_Suit_MRAI_Guardian','Usable','UNDEFINED','95d8ae91-3cdb-40b8-a6fa-171a453316cc','','',NULL), +(11919,'Quantainium','Cargo','Cargo','b83976c6-9580-4179-a3b7-54ac2f8bea23','','',NULL), +(11920,'GME 338-10 Medical Gown Honeycomb','Char_Clothing_Torso_1','UNDEFINED','6515e7ed-b1c5-4585-a744-9257bc37171c','','','Carrying Capacity: 0.4K µSCU\n\nThe GME 338-10 Medical Gown is the de facto medical gown assigned to in-patients at hospitals and other care facilities across the Empire. This standard gown was designed so that patients could be dressed or undressed easily, and made with antibacterial fabric to help facilitate keeping wounds clean, lowering the risk of infection.'), +(11921,'Salvation Vespid Livery','Paints','UNDEFINED','723d6c3c-0a53-4ee0-b7c3-cb2d510844ab','','','The Vespid livery turns the Salvation white with orange highlights that stand in stark contrast to its black base paint.'), +(11922,'TRGT. STATUS','Seat','UNDEFINED','781f33f2-6497-4496-9c96-aabbb571a40f','','',NULL), +(11923,'customizer_pants','Char_Clothing_Legs','UNDEFINED','c7fe6acf-acd6-4162-94f4-ea8fb71216cd','','',NULL), +(11924,'Seat','SeatAccess','UNDEFINED','0020cdfe-3fa4-4b2f-993b-f5f028c89997','','',NULL), +(11925,'Weapon_Rack_Cz_Firerat_006','Usable','UNDEFINED','5b9a311a-45cb-4f0d-a6b5-17542f9b1e8b','','',NULL), +(11926,'SLAM','Cargo','Cargo','aa308368-abe6-4fa7-8627-6f7b6c2f8842','','',NULL), +(11927,'Gadget_Cabinet_kegr_fire_extinguisher_01_nogeo_med','Usable','UNDEFINED','073feded-7384-407f-a4b1-9167d6988869','','',NULL), +(11928,'TCS-4 Undersuit','Armor','Undersuit','d4d18f9f-bd28-4b43-a199-9f89223aa3de','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThis comprehensive Tactical Combat Suit provides a complete sealed suit against vacuum, free range of motion, and interfaces seamlessly with compatible armor systems.'), +(11929,'ArmorStand_CLDA_hazmat_Blue','Misc','UNDEFINED','92db8b61-ae62-4183-8d9a-338aeae5a6f7','','',NULL), +(11930,'SHIELDS','ShieldController','UNDEFINED','2691d357-e7fc-4d56-8456-74db236b7895','','',NULL), +(11931,'INTK_ORIG_300i','FuelIntake','Fuel','ed230fc3-27d8-42f5-ad2e-7bc53b77e374','','',NULL), +(11932,'Construction Materials','Cargo','Cargo','6f1ace49-44e2-4421-b821-95e0461198e2','','',NULL), +(11933,'ToolSafe Vest Falstaff','Char_Clothing_Torso_1','UNDEFINED','cb46a3c5-c624-4dee-9a5b-8f0e07655e81','','','Carrying Capacity: 10000 µSCU\n\nThe ToolSafe Vest is constructed with thick materials accentuated by high-visibility straps to ensure worker safety. The inclusion of numerous pouches gives this jacket a generous amount of storage to make it a staple of worksites everywhere.'), +(11934,'Morozov-SH-S Helmet Scorched','Armor','Helmet','1964e516-205a-4477-9d4e-0bc2bda6fe2c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -97 / 121 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(11935,'Corsair Downburst Camo Livery','Paints','UNDEFINED','cc37bf36-0a11-4f0a-ae3d-4693429fd13d','','','The Downburst Camo livery features a black camo pattern with accents of gold that beautifully catch the sunlight.'), +(11936,'PowerBolt','PowerPlant','Power','4a4a2a9c-040f-4f36-befe-7101b230fa53','','','Item Type: Power Plant\nManufacturer: Lightning Power Ltd.\nSize: 1\nGrade: C\nClass: Civilian\n\nThe PowerBolt provides all the power and performance you need for your journey through the stars. You can trust Lightning Power to get you there.'), +(11937,'FBL-8a Helmet Justified','Armor','Helmet','b37171e2-2d67-4324-99f3-66e6d165cbd5','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBased on CDS\' FBL-8a combat armor, this set has been modified from its original form. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible. Visor is AR crosshair compatible.'), +(11938,'Canelo Pants Laurel','Char_Clothing_Legs','UNDEFINED','fb22581f-3d5a-4672-aea7-d50509fd4d35','','','Carrying Capacity: 400 µSCU\n\nWhether you need them for work, play, or rest, the adaptable Canelo Pants from Habidash are guaranteed to fit the bill. Its convenient pockets allow you to carry all your essentials, and its stain-resistant fabric is comfortable enough to be worn for hours.'), +(11939,'TRGT. STATUS','Seat','UNDEFINED','b18a62f7-5bab-417a-9e5d-9b918ea8bc33','','',NULL), +(11940,'Clempt Pants Grey','Char_Clothing_Legs','UNDEFINED','b5ecae98-7212-4178-bd13-31291b375347','','','Carrying Capacity: 2K µSCU\n\nStegman\'s factory pants have been taken to the next level with the Clempt line. These rugged all-purpose pants come with double knees for extra comfort and protection and are made from tough composite weave fabric to last as long as the work needs.'), +(11941,'hair_39_prop','Char_Hair_Prop','UNDEFINED','8b9b32df-b360-4344-8d11-240b22160241','','',NULL), +(11942,'Scorpius Red Alert Livery','Paints','UNDEFINED','794db369-7918-4dc8-bf3c-a6a5d0e474ea','','','Embody the furious firepower of the Scorpius with the metallic red and black look of the Red Alert livery.'), +(11943,'DRAK_Herald_Thruster_Main_V2','MainThruster','FixedThruster','65526b17-8485-4036-a70c-f095f192888d','','',NULL), +(11944,'RSI_Aurora_ES_Thruster_Mav_Joint_01','ManneuverThruster','JointThruster','8ce65a84-02ba-41f3-b5ad-2016e68c9b2e','','',NULL), +(11945,'Sojourn','QuantumDrive','UNDEFINED','4e2d202e-4336-4afc-bada-fbb20450755f','','','Item Type: Quantum Drive\nManufacturer: Tarsus\nSize: 2\nGrade: B\nClass: Civilian\n\nWhen you explore a star system, it should be about the experiences, the sights, the memories. The Tarsus Sojourn quantum drive takes all the worry out of quantum travel so that you can focus on what’s important, the journey.'), +(11946,'Door Control','ControlPanel','DoorPart','6470d894-b52b-4eea-9ffc-381ace6ae5bc','','',NULL), +(11947,'Carbon','Cargo','Cargo','aaae8279-9d4f-463c-83fa-3a7dcf5b3773','','',NULL), +(11948,'AEGS_Vanguard_Harbinger_Thruster_Main_01','MainThruster','FixedThruster','436e33e3-18a4-44f4-95f7-6d7cc3b9963f','','',NULL), +(11949,'Molina Mold','Misc','UNDEFINED','dbdc6487-28d6-476f-8512-309b2d17e612','','','This aggressive fungus was first discovered growing within faulty air filters installed in Levski. The spores, when inhaled in high enough concentrations, can make Humans fatally ill.'), +(11950,'DockingTube_Fuel_Ports_RSI_Scorpius','DockingCollar','UNDEFINED','3176b21f-0d42-4bb4-9074-6b91ec5a6c30','','',NULL), +(11951,'Falston Jumpsuit','Char_Clothing_Torso_1','UNDEFINED','e3512eb5-cfae-476f-8096-35656ad7fdc5','','','Carrying Capacity: 1K µSCU\n\nThe Falston jumpsuit has a high collar to guard against the elements, triple-reinforced stitching, and an extra soft interior lining because everyone deserves a bit of comfort.'), +(11952,'Concept Shirt Twilight','Char_Clothing_Torso_0','UNDEFINED','ff615419-6632-4e61-91b1-5043613252ad','','','This crisp, versatile button-front shirt from Fiore is made with cutting edge stain resistant and wrinkle-free technology, guaranteeing that you stay professional at all times.'), +(11953,'SoftLock_Terminal_Standard_Starfarer_Fuel_Pods_Ship_L2','Display','UNDEFINED','23a927b7-1d0e-4d13-8bfc-11dd273c1567','','',NULL), +(11954,'TrueDef-Pro Legs','Armor','Legs','03f72f55-70e7-41a4-b005-1fc4dd6f9fa3','','',NULL), +(11955,'Inquisitor Arms Seagreen','Armor','Arms','4a867717-1fe5-4c58-82ce-08ab51eabef1','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(11956,'Seat','Usable','UNDEFINED','1978d0d0-fff8-4ae4-bb0a-2eeeac092eda','','',NULL), +(11957,'Razorback Pants Blue','Char_Clothing_Legs','UNDEFINED','7a568db7-76bd-46f9-9125-e80e3e35ef76','','','Carrying Capacity: 2K µSCU\n\nDMC\'s Razorback pants are made to be worn. Built from industrial quality material, they feature reinforced kneepads to prevent tears on the job and stay rugged yet comfortable.\n\nWomen\'s sizes currently out of stock.'), +(11958,'Balor HCH Helmet Grey','Armor','Helmet','51e87c01-182f-4276-bc8c-149c31846def','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. Visor is AR crosshair compatible.'), +(11959,'Inquisitor Legs Raven','Armor','Legs','1376ec64-6a00-4104-8fa6-d09648b4c323','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(11960,'IndVest Jacket Tan','Char_Clothing_Torso_1','UNDEFINED','9826d1cd-98f3-4dd4-acce-89da696b4b95','','','Carrying Capacity: 5K µSCU\n\nKeep your tools within easy reach with Stegman\'s IndVest. Made from industrial strength materials, this is a rare jacket that\'s both stylish and sensible.'), +(11961,'Chiron Helmet Lifesaver','Armor','Helmet','4188aa1a-0039-4238-956b-75152d24ca77','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nUtilizing a crystal clear protective glass treated with a specialist hydrophobic glaze, the Chiron light helmet was purpose built to protect against fogging and glare, guaranteeing that first responders will retain complete vision in emergency situations.\n\nThe Lifesaver edition was styled for first responders to be highly visible. The teal, white, and red color scheme features a medical cross symbol across the chest and helmet.'), +(11962,'Sharud Wrap and Arm Bands Olive','Char_Clothing_Torso_1','UNDEFINED','5c306c34-845b-4c55-b449-2d939ef3fe9c','','','Carrying Capacity: 1K µSCU\n\nThe Sharud is an ideal top for staying cool in hot weather. Advanced production techniques allow Habidash to make a light yet absorbent shawl that looks and feels like handspun natural cotton but at a fraction of the cost. The three arm band pieces provide stylish accents and come embedded with microchips that tracks body temperature and other vitals.'), +(11963,'Power_Chemline_Generator','PowerPlant','Power','dd4e3e6f-0b91-4ee6-9f2c-2168f5b2427d','','',NULL), +(11964,'GRIN_MTC_CargoGrid','CargoGrid','UNDEFINED','78f06299-d317-43d0-9982-cf064d67db93','','',NULL), +(11965,'Lynx Legs Sienna','Armor','Legs','81565c8e-9099-4400-941f-2f9fd38568a0','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(11966,'RSI_Polaris_Turret_Lighting_OC','Room','UNDEFINED','8e57f83f-ab27-4d7a-9d95-b9263043bcd6','','',NULL), +(11967,'Door Control','Door','UNDEFINED','b0689672-f786-4260-99a8-818cb48a6c95','','',NULL), +(11968,'Gold (Ore)','Cargo','Cargo','34d42cf1-0bd4-4229-b4c5-a90bdf4b7eb3','','',NULL), +(11969,'Internal Tank','QuantumFuelTank','QuantumFuel','2fa4a732-a252-4045-9178-b4dabac6fd99','','',NULL), +(11970,'RN_Light_Basic','Weapon','UNDEFINED','960d49d4-ce99-4626-9066-a2d539d41e87','','',NULL), +(11971,'Seat','SeatAccess','UNDEFINED','58ca24f5-6efc-430b-8652-17d87319e92d','','',NULL), +(11972,'Inert Materials','Cargo','Cargo','bbc00a82-ccac-4cd5-a5c7-374bf5b0fff0','','',NULL), +(11973,'ANVL_Hurricane_Thruster_Retro','ManneuverThruster','FixedThruster','14b339af-7ecf-4cbe-979d-7e18e77aa0fa','','',NULL), +(11974,'Pips A20','Drink','Can','70da6ba9-4982-4eac-b56b-ce2155b29a77','','','HEI: 39\nEffects: Energizing, Cognitive Boosting\n\nHeavily scientifically researched to provide optimal energy restoration and targeted thirst quenching, Pips is trusted the \'verse over. Pips A20 is specially formulated for long-haul pilots to provide sustained results.'), +(11975,'Door Control','Door','UNDEFINED','b3d129e9-d7c1-446a-b886-109473ea283c','','',NULL), +(11976,'tumbler_conditions_test','Misc','UNDEFINED','fd34a43b-9d63-4c6d-af8d-d2b21a7140fb','','',NULL), +(11977,'Door Control','Door','UNDEFINED','e858fced-b414-4ad4-8b68-e4a14a486a14','','',NULL), +(11978,'Copper','Cargo','Small','9e6a15af-b35f-4387-9598-f1a020455a03','','','A soft red-orange colored metal with high conductivity. Prone to oxidation unless properly treated.'), +(11979,'ThermalFoam','Cargo','Cargo','d27db453-268e-42a4-990c-79e7372f4045','','',NULL), +(11980,'table_bar_booth_2_seat_1_a','Usable','UNDEFINED','ad45434a-66d4-4da5-9c58-2f79937cc4c3','','',NULL), +(11981,'AAT-34 Turret','Turret','MannedTurret','82965cc0-24f5-40cb-af5d-5e64e3af956c','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(11982,'RSI_Bengal_Thruster_Main_Large','MainThruster','JointThruster','8423b75f-7a02-4d89-a9d5-99d29af3ba82','','',NULL), +(11983,'Seat','SeatAccess','UNDEFINED','d5bbb6d8-1d07-4e03-9b2d-18ca57ab3abc','','',NULL), +(11984,'Katla Mask Crimson','Char_Clothing_Hat','UNDEFINED','e6c279ca-4f3d-4f3e-a85f-4b761c1fe084','','','The Katla mask provides full face coverage from the elements or prying eyes. Oversized eyes provide a wide field of vision and a built-in air filter helps you breathe easy. Please note that this mask is not space-rated and should only be worn in naturally breathable environs.'), +(11985,'Morozov-SH Core Terrene','Armor','Torso','e17c5b05-9113-4607-8eac-de48e3f71e9a','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12K µSCU\nBackpacks: All\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(11986,'H_Dashboard_Projector_HUD_ANVL_Hornet_F7CS','Display','UNDEFINED','ed77fd51-df21-4ca6-9d0c-42a0e722f278','','',NULL), +(11987,'MC-Gray Hat','Char_Clothing_Hat','UNDEFINED','72a6cf25-e9e4-48e8-b20a-0c57ad47b3e4','','','This military cadet hat from CBD blends lightweight fabric and leather for a striking design.\n\nWomen\'s sizes currently out of stock.'), +(11988,'Book','Misc','UNDEFINED','0254c39f-7d7e-419e-9966-b2730a9ced0c','','',NULL), +(11989,'Fuse','Misc','Fuse','8cf8dd1b-756e-496c-a1ae-e88ebbf999f7','','','This safety device provides protection to relays and other power systems from excessive current. Once tripped, fuses need to be replaced before normal operation can resume.'), +(11990,'Origin White Knight','Gadget','UNDEFINED','79924811-0c84-462f-aa8e-5f655c5a04ab','','','Made exclusively for Origin Jumpworks and included with the 890 Jump, this white chess piece is a modern version of a classic set.'), +(11991,'INTK_DRAK_Caterpillar','FuelIntake','Fuel','91f20573-1011-43f6-aea8-db3a38f38253','','',NULL), +(11992,'Carryable_1H_CY_weight_dumbbell_1_2kg_c','Misc','UNDEFINED','07471b88-2a37-4f0b-8188-6a2b4ea377a7','','',NULL), +(11993,'Covalex_Datapad_Darnell_4x3_Screen','Display','UNDEFINED','aa194f3d-7fde-4c67-a02f-f0ed7aae6d24','','',NULL), +(11994,'Dashboard','SeatDashboard','UNDEFINED','d07c82f5-68fa-447d-ab3e-ac8b76bd9aff','','',NULL), +(11995,'Manned Turret','TurretBase','MannedTurret','2d365d5e-46a6-43e3-8204-24052d19f5c3','','',NULL), +(11996,'Deep-Space Undersuit Windfall','Armor','Undersuit','ec241dff-95b6-4006-aa12-18ef3dee852c','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nConfidently venture into the unknown with the Deep-Space undersuit. Smartly designed with several overlapping sections to guarantee the suit\'s integrity, Gyson has created an affordable and fashionable undersuit that helps make space travel more accessible to all.'), +(11997,'display_guns_04x01x01_3Guns_9Mods_s01_s02_s03','ShopDisplay','UNDEFINED','360d1120-da83-404a-86d7-21ebd960778f','','',NULL), +(11998,'Aslarite (Raw)','Cargo','Cargo','43555b27-4345-40f1-b859-94c904e894f8','','',NULL), +(11999,'Fortuna Racing Helmet','Armor','Helmet','6e7052d5-3cdc-4678-8d84-e604529b4708','','','Item Type: Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nNeed a bit of luck to help you cross the finish line? This Fortuna Racing Helmet in shimmering green may be just the thing to turn your fortune around.'), +(12000,'Revenant Gatling','Weapon','Gun','df89e9ca-8a11-477c-8abd-f4837a277dbe','','','Manufacturer: Apocalypse Arms\nItem Type: Ballistic Gatling\nSize: 4\n\nIf it ain’t broke, don’t fix it. And if you want it broke, aim a Revenant at it. Solidly built on a foundation of centuries-old tech, Apocalypse Arms puts an innovative spin on battle-tested designs to create a rugged ballistic Gatling that can steadily hurtle death across the void. Though it’s slow to spin up and cool down, the Revenant’s dependability makes it a favorite for those expecting to find trouble.'), +(12001,'DockingTube_Fuel_Ports_ANVL_Terrapin','DockingCollar','UNDEFINED','6bab2eec-355c-487f-82a7-eb36e9f2516b','','',NULL), +(12002,'Elespo','Cargo','Cargo','23abef12-d20e-41a5-a24e-eeba10df0c50','','',NULL), +(12003,'Falston Jumpsuit \"TABA Edition\"','Char_Clothing_Torso_1','UNDEFINED','907758f6-a76c-40c1-8643-d62ac30fe30f','','','Carrying Capacity: 1K µSCU\n\nThe Falston jumpsuit has a high collar to guard against the elements, triple-reinforced stitching, and an extra soft interior lining because everyone deserves a bit of comfort.'), +(12004,'Personal Storage','Cargo','UNDEFINED','32eff2aa-a7e9-4a19-bddd-9c29ca3ab012','','',NULL), +(12005,'Seat','SeatAccess','UNDEFINED','aa2bebe0-23af-4245-8c46-a9a27d8d5703','','',NULL), +(12006,'MASTER_drug_carryable_1h','Cargo','UNDEFINED','e7b52283-4d02-4352-b7f8-0d024f06cc50','','',NULL), +(12007,'Corundum','Cargo','Cargo','2771c9f2-e6f3-480a-8428-2113070f089c','','',NULL), +(12008,'Hammerhead Stormbringer Livery','Paints','UNDEFINED','16420086-531e-4d00-a37a-3999bf4173fe','','','Celebrate the 2951 IAE with this custom Hammerhead livery. Blending blue and black with white accents, the paint scheme gives the ship an electric new look.'), +(12009,'Lynx Arms Black','Armor','Arms','fd7ca539-4462-43b4-b3b4-8f6246dc0362','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(12010,'ThermalCore','Cooler','UNDEFINED','fd9f41c7-f60b-4ac8-95be-cb501fc5dd5d','','','Item Type: Cooler\nManufacturer: Juno Starwerk \nSize: 3\nGrade: C\nClass: Industrial\n\nWhen you’re in the middle of an important job, you don’t want to waste time wondering if your cooler is doing its part. Now you don’t have to. With the dependable mid-level ThermalCore cooler from Juno Starwerk onboard, you can take all the guesswork out of heat management.'), +(12011,'Door Control','ControlPanel','DoorPart','dd2a5a64-6654-4fe3-9d5e-232cf1c77dc2','','',NULL), +(12012,'Seat','Usable','UNDEFINED','e45cc408-002b-47dd-b376-58989395d719','','',NULL), +(12013,'Door Control','ControlPanel','DoorPart','f7a858f1-fe88-4b13-bd79-1f8f8249d412','','',NULL), +(12014,'Weapon Rack','Door','UNDEFINED','338b3a12-f59c-484b-993d-dbb1309d0582','','',NULL), +(12015,'Torite','Cargo','Cargo','f95349b7-4fbc-4816-81f1-6abd5760199a','','',NULL), +(12016,'ORC-mkX Arms (XenoThreat)','Armor','Arms','62e2fc15-8391-4607-bbd0-37b133e4f601','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThis version of CDS\' ORC-mkX combat armor has been modified from its original form. The mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(12017,'Counter_1m_basic','Usable','UNDEFINED','d0605af0-7061-4bb2-9fd4-b82b04162b58','','',NULL), +(12018,'Door','Door','UNDEFINED','4895fbff-8dde-46df-b653-b0fe1c53b394','','',NULL), +(12019,'Six-Sided Rotating Die Red','Misc','Utility','ebb4909c-c7a2-46c1-9c51-abe5ffa00f74','','','This red six-sided die houses a rotating core that features the numbers one through six. When rolled along a surface, a random number will display on the upper face of the die as the rotating core comes to rest.'), +(12020,'Door','Door','UNDEFINED','1b2298ba-29d2-489a-927b-a88a3d5cdd30','','',NULL), +(12021,'Sabre_Firebird_WingCap_Right','Misc','UNDEFINED','4e5e191b-6535-4c8f-bbfd-aec0304f464b','','',NULL), +(12022,'Meteor Shimmer Livery','Paints','UNDEFINED','76097045-6bdc-437f-a9e2-ffffa9f47890','','','The eye-catching Shimmer livery brings a beautiful luster to the Meteor with a paint that shifts between gold and dark blue depending on the lighting and viewing angle.'), +(12023,'Turret','Turret','MissileTurret','11248eb8-d9f7-49e7-bd03-3c9b75b92948','','','Remote Turret'), +(12024,'DRAK_Cutlass_CargoGrid_Rear','CargoGrid','UNDEFINED','49824f72-5e46-4683-a1c0-2f4c5114ce9f','','',NULL), +(12025,'Vulture Heartthrob Livery','Paints','UNDEFINED','aca07eeb-b79e-4707-9215-c56a9a588021','','','Make people weak in the knees by adorning the Vulture with the Hearthrob livery, featuring a shimmering violet paint scheme.'), +(12026,'INTK_ANVL_Lightning_F8','FuelIntake','Fuel','acd6d10b-9bdc-402a-a25d-f0ba1019c8db','','',NULL), +(12027,'Seat','SeatAccess','UNDEFINED','015a276c-c2e3-40ca-9092-15bcf6f25ee6','','',NULL), +(12028,'Carryable_1H_CY_weight_dumbbell_1_16kg_c','Misc','UNDEFINED','778d8793-0fa1-4c76-beee-473b2fe63e8d','','',NULL), +(12029,'Protean Boots','Char_Clothing_Feet','UNDEFINED','746bee07-54dd-4cb8-9c15-d09deb9e37e2','','','These rugged and durable boots from R6 Pro are perfect to wear on your ship or while planetside. Padded insole cushions ensure they\'ll also be comfortable in any situation. \n\nWomen\'s sizes currently out of stock.'), +(12030,'SLAM','Cargo','Cargo','14bb31e5-a952-4346-a287-4c71bb76087f','','',NULL), +(12031,'Seat','SeatAccess','UNDEFINED','3eafff78-008e-4856-8b78-7f7f414d8660','','',NULL), +(12032,'Blood_Decal_HandPrint','Decal','DoorPart','c2d4e63e-d2fa-4145-b3c0-2c508d56f90b','','',NULL), +(12033,'Ling Hat','Char_Clothing_Hat','UNDEFINED','8d00de6b-2a79-405b-8945-8fabe611390c','','','A red and white cadet hat with Ling Family Hauling\'s name and logo emblazoned across the front and back panels.'), +(12034,'StorageCage_Damage_ZeroG_CustomLoadout','Cargo','UNDEFINED','67d13b0a-0edc-4943-ba86-ad2a4acd8b7e','','',NULL), +(12035,'Door Control','Door','UNDEFINED','908f57e5-2c66-4fa0-9d26-619bd2535811','','',NULL), +(12036,'SHIELDS','ShieldController','UNDEFINED','429e0e9b-44c4-4c50-91e4-99ae6601a88d','','',NULL), +(12037,'MISC_Razor_Thruster_Main','MainThruster','FixedThruster','14e79be3-e93b-4c3a-9fba-2db8f9a35b40','','',NULL), +(12038,'Neon','Cargo','Cargo','125390d6-989d-4454-a84c-49a668c4c77c','','',NULL), +(12039,'Personal Storage','Cargo','UNDEFINED','b68f5190-0f78-455e-bd5b-006f9d12eb2f','','',NULL), +(12040,'Silco Shirt Silvertusk','Char_Clothing_Torso_0','UNDEFINED','c8ebba20-4f87-43c1-b5ed-a11ea39649db','','','With a sleek design and durable material, the Silco Shirt by Habidash is a comfortable shirt that can be conveniently worn either as an undershirt or on its own.'), +(12041,'Food_bowl_oatmeal_01_a','Food','Consumable','0fae9e0d-46f2-418c-934a-1e9fd31ed22b','','',NULL), +(12042,'Docking Collar','DockingCollar','UNDEFINED','faf77766-5285-4458-ae88-fb302406c504','','',NULL), +(12043,'Argos IX Torpedo','SpaceMine','UNDEFINED','53279429-8de5-472e-8dc0-e733452f2bdb','','','Manufacturer: Talon\nTracking Signal: Cross Section\nSize: 9\n\nThe Talon Argos strike torpedo features a classic, straightforward design that relies on exacting manufacturing standards and a classic cross section targeting system.'), +(12044,'Aves Core','Armor','Torso','8834d182-25d6-4804-b017-75cd1c87879a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nHonor and embody the Tevarin aesthetic with the Aves armor. Cutting edge manufacturing techniques were used to place white, red, grey, and black plating perfectly to fit the Human form and evoke the shape language imbued into the Tevarin\'s iconic ships. This medium armor from CC\'s Conversions is both sensational and practical, providing solid protection while keeping you light on your feet. When paired with the Aves helmet, the suit combines for a striking and unforgettable look.'), +(12045,'Seat','Usable','UNDEFINED','8cd34bd8-dc7e-40df-bca5-3b7b66a0d3c5','','',NULL), +(12046,'Calico Core Desert','Armor','Torso','4efeb516-34fd-4df1-abda-f7af806ea9bf','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -39 / 69 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light \n\nDesigned to be an EVA-compliant light combat suit, the Calico set is the perfect armor suit for infiltrators, snipers, thieves, basically anyone who likes to avoid kicking in doors. Built out of a combination of PAB3 armor and a custom helmet, it can help you weather some incoming fire without slowing you down.'), +(12047,'MISC_Freelancer_Base_SCItem_Dashboard_CoPilot','SeatDashboard','UNDEFINED','2cd8b466-d5c4-4e6c-a8a9-619b1ba24332','','',NULL), +(12048,'Morozov-SH-S Helmet Crusader Edition','Armor','Helmet','2e97eb89-d976-48b5-acb2-455b69bba84b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -97 / 121 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart. The Crusader Edition was made specifically for the company\'s security services. Visor is AR crosshair compatible.'), +(12049,'Book','Misc','UNDEFINED','5f9d3718-8168-4fa3-9781-85b4c8f6c7fd','','',NULL), +(12050,'Ventra Gloves Violet','Char_Clothing_Hands','UNDEFINED','001a34eb-b3a0-4c39-807a-63e43dc467b0','','','Keep your hands warm and dry with Fiore\'s Ventra gloves. Microstitching creates a snug, tailored fit to keep you looking stylish and warm.'), +(12051,'Door_NoRoomConnector_CSV_ComponentBay_Avionics','Door','UNDEFINED','59e45c00-cc3e-46e0-b092-97d7f36f5c86','','',NULL), +(12052,'Highball Glass','Drink','UNDEFINED','5a83fd87-c7e4-4011-8b11-e45ecf86b227','','','A tall and narrow drinking vessel made from tempered glassware.'), +(12053,'Door Control','ControlPanel','DoorPart','42ab4184-40bc-40eb-9f8e-93a97464ac54','','',NULL), +(12054,'Red Heart Plushie','Misc','Personal','00e0682f-61b2-4aa4-ab79-b17c8e8dd9b0','','','Huggable, lovable, and thoroughly squashable, this red heart plushie will fill your heart with joy. With a firm but springy filling, this plush cushion consist of a synthetic leather casing dyed with a passionate scarlet coloring.'), +(12055,'TrueDef-Pro Arms Yellow/Grey','Armor','Arms','28516ac1-7c77-4b3c-ba0d-8f60c23e5923','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(12056,'mobyGlass Personal Computers','Cargo','Cargo','cad6ceef-b53c-48ed-847c-6ea3155e8b3d','','',NULL), +(12057,'Pressurized Ice','Cargo','Cargo','12e50dde-2747-4d2e-b92b-e05f188ecf6d','','','Ice that has been purified and compressed to transparent by restricting natural expansion. This allows for more efficient transport in bulk.'), +(12058,'Seat','Usable','UNDEFINED','1f19dc0b-43fa-4400-9332-a896f17f63f4','','',NULL), +(12059,'Door','Door','UNDEFINED','cc66995f-27b1-4839-9caf-8fb671e66c86','','',NULL), +(12060,'INTK_ORIG_M50','FuelIntake','Fuel','4c506a3d-a7ac-4357-a704-4bdb73f61286','','',NULL), +(12061,'Chokehold Gloves','Char_Clothing_Hands','UNDEFINED','e3b4803a-83cf-44f5-9db9-6af06a1cfa42','','','When you can\'t afford to fumble. Flexible polyweave provide excellent grip plus ablative ceramic demi-gaunt reinforcement and close-fit cuffs.'), +(12062,'ANVL_Hornet_F7CS_Mk2_Thruster_Mav_1','ManneuverThruster','JointThruster','9e8fefa3-4a7a-421d-bc28-2b72d14d98cd','','',NULL), +(12063,'MOTH Tide Pool Livery','Paints','UNDEFINED','d6646b29-8d14-4e5d-ab42-75123ec2a398','','','The colorful Tide Pool livery makes the MOTH blue with grey and green highlights.'), +(12064,'RSI_Bengal_SCItem_Seat_Pilot','Seat','UNDEFINED','24f2ab57-d32e-43af-b030-d98af10eff8b','','',NULL), +(12065,'Door Control','ControlPanel','DoorPart','e1e0c595-43e7-4045-aa53-9fb0baa52bca','','',NULL), +(12066,'Personal Storage','Cargo','UNDEFINED','ae10590e-7333-42ec-b8fa-9d4d761fbde9','','',NULL), +(12067,'Landlite Boots Red','Char_Clothing_Feet','UNDEFINED','04566a34-467a-4622-8a23-71f0f38cdfc7','','','Who says work boots can\'t be comfortable? Grindstone\'s Landlite boots are built with a breathable synth-leather material to keep your feet dry, a contoured, memory footbed, and a slip-resistant outsole, making it perfect for whatever worksite you throw at it.'), +(12068,'PH - hdh_pants_02_01_03','Char_Clothing_Legs','UNDEFINED','bafd7a86-b7cf-4639-8614-58db692225f1','','','Carrying Capacity: 7.3K µSCU\n\nStay warm and dry on rainy days in the Zelena pants and the Bisbee boots. Both made with water-repellant materials and built-in sweat-wicking technology, they\'ll be your go-to choice for adventures on even the most hostile worlds.'), +(12069,'Flight Blade','FlightController','UNDEFINED','12dacdc5-2b59-4c8c-a4a1-500b3b037168','','',NULL), +(12070,'H_Dashboard_Projector_HUD_RSI_Scorpius','Display','UNDEFINED','e3eb68d4-3d3c-4233-9b4b-5d829140ebc6','','',NULL), +(12071,'Ketchum Beanie Dark Red','Char_Clothing_Hat','UNDEFINED','c546f921-2a4c-4fd7-8e47-3f119a7f9bb8','','','Complete your cool-weather wardrobe with the classic Ketchum beanie from Alejo Brothers.'), +(12072,'Ringaling','Food','Consumable','bca16fd2-37fd-42ba-8aa9-bf7b78a3bd0f','','','NDR: 10\nEffects: Energizing, Hyper-Metabolic\n\nThis holiday favorite cookie features a crumbly shortbread ring filled with a sweet and tart jam. Often enjoyed during Luminalia.'), +(12073,'Internal Tank','FuelTank','Fuel','02d1a6cd-284b-441d-b2b4-679659a803a1','','',NULL), +(12074,'ColonialismAirlockExteriorStatusSign','StatusScreen','AirlockPart','303d3585-a49e-4c92-baea-d328a9f361da','','',NULL), +(12075,'Faction Jacket White','Char_Clothing_Torso_1','UNDEFINED','d000b52d-ceb8-4e5d-acea-e610b7f36359','','','Carrying Capacity: 1K µSCU\n\nWhether you\'re coasting through outdoor adventures or cruising to exclusive afterparties, the Faction coat is sure to turn heads. Fusing sections of ultra-insulated brick quilting with 987\'s DuraBull ripstop reinforced fabric, you\'ll stay warm while still looking cool.'), +(12076,'ARMR_CNOU_Nomad','Armor','Medium','b170495e-4a4f-420e-b260-a59e65474757','','',NULL), +(12077,'Bolon','QuantumDrive','UNDEFINED','74cc0d0b-1bf5-436c-a38c-1baf93962b89','','','Item Type: Quantum Drive\nManufacturer: Juno Starwerk \nSize: 2\nGrade: C\nClass: Industrial\n\nDon’t let lesser craftsmanship put you and your precious cargo at risk. The Bolon industrial quantum drive was built with durability in mind to keep it working when you need it most.'), +(12078,'SHIELDS','ShieldController','UNDEFINED','90963c20-b759-4b6d-8c6f-c76ae16f92bd','','',NULL), +(12079,'Axiom L-22 Repeater','Weapon','Gun','890880a7-afa7-41f9-bc1c-925d7958a436','','','Manufacturer: Kruger Intergalactic\nItem Type: Laser Repeater\nSize: 4\n\nMeticulous design makes the Axiom L-22 an ideal armament for the L-22 Alpha Wolf. Premium parts and cutting-edge manufacturing have created a laser repeater made to thrive in the heat of battle.'), +(12080,'CR-60','ExternalFuelTank','UNDEFINED','6b44bba8-ab96-471d-93de-d57a4907487b','','','Manufacturer: MISC\nItem Type: Fuel Pod\nFlow Rate: 1.15 SCU/s\nCapacity: 60 SCU\n\nThe standard fuel pod of the Starfarer, the CR-60 was designed by MISC to be a well balanced fuel storage option ready to tackle a wide variety of jobs.'), +(12081,'BEHR_BallisticGatling_Barrel_S6','WeaponAttachment','Barrel','8e760f65-9e60-47b5-b760-2d006083d4c0','','',NULL), +(12082,'ARGO_MOLE_SCItem_Dashboard','SeatDashboard','UNDEFINED','998fe3fd-296c-4fc1-acd0-d7c11f7b921c','','',NULL), +(12083,'Vehicle_Screen_MFD_Holographic_Prowler_BL','Display','UNDEFINED','69edc5c8-36da-445a-87d0-f93e123e18ed','','',NULL), +(12084,'harvestable_base_PrisonStash_02','Misc','UNDEFINED','bf4da654-923d-4d18-9ecb-179dacdbb340','','',NULL), +(12085,'Titanium','Cargo','Cargo','e3046c8f-5c62-4883-86a7-fc9c5e535c58','','',NULL), +(12086,'Door','Door','UNDEFINED','5b55f38a-aa05-4339-b838-1396c871600b','','',NULL), +(12087,'Lynx Legs Tan','Armor','Legs','3e965216-cfab-4e04-867e-a911766bbc76','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(12088,'Kino Shoes Dark Green','Char_Clothing_Feet','UNDEFINED','f372934a-f016-4803-8b72-b0db18c11379','','','These two-tone slip-on shoes are comfortable enough for casual wear, but stylish enough for the workplace.'), +(12089,'Seat','Usable','UNDEFINED','ab47230f-32cd-414d-be96-e1902660b261','','',NULL), +(12090,'Baru Gloves Moss (Left Only)','Char_Clothing_Hands','UNDEFINED','1394ce60-dead-4fd1-9945-ebd7c621e47d','','','Ensure you hands are always dry and at the right temperature with the Baru gloves. An advanced sensor system protected by a metal plate on the back of the hand monitors and regulates conditions within the glove. A patented synthetic leather woven with special microfibers works with the sensors and a strap cuff provides a snug fit.'), +(12091,'display_expo_hall_weapon_stand_1_a','ShopDisplay','UNDEFINED','04840500-fb24-4e26-a445-d576211c4ea6','','',NULL), +(12092,'Davin Work Gloves Aqua','Char_Clothing_Hands','UNDEFINED','1da13ad2-4f9c-464a-b2ea-54734316ebbe','','','Field-tested for over fifty years, you can find Davin work gloves at numerous sites and ships around the Empire. Stegman\'s rugged construction and comfort lining have made them a customer favorite.'), +(12093,'Scaleweave Undersuit Barrens','Armor','Undersuit','3ad9724e-67f2-4487-b293-8620a3ff6f5c','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThis baseline undersuit from Kastak Arms offers complete protection seal from the elements and compatibility with multiple armor types.'), +(12094,'ADP Legs Red','Armor','Legs','d8177e36-e202-470f-8465-8f57dbebd1d7','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(12095,'Cordimon Jacket Red','Char_Clothing_Torso_1','UNDEFINED','00b6bb1c-664e-402f-a1c3-2f41b8e20a07','','','Carrying Capacity: 3K µSCU\n\nStegman\'s classic worker\'s jacket has been a staple of job sites for over seventy years. This duotone pattern is cut from the toughest material meaning you can wear it anywhere, anytime. It may not be armor, but it damn sure feels like it.'), +(12096,'Utensil_Plate_Boumbo','Misc','UNDEFINED','4fbf50e9-404f-4aa6-b1b4-dd1773981087','','',NULL), +(12097,'Pico the Penguin Plushie','Misc','Personal','8d1a53c1-72d4-49d5-8485-11e2fbd56f2e','','','This adorable mascot of New Babbage loves nothing more than carving their way down the snow covered slopes of microTech.'), +(12098,'display_components_pallet_250x125x025_b_power','ShopDisplay','UNDEFINED','8736381c-4dba-4e8e-b8f9-714aef3e59e1','','',NULL), +(12099,'Paint_300_Dash_GlossRed','Misc','UNDEFINED','454c8027-3044-4f6f-8471-4f5c63974e35','','',NULL), +(12100,'Food_bowl_puree_01_a','Food','Consumable','e4bcfd81-1359-4fb4-87f3-c84435015054','','',NULL), +(12101,'Door Control','ControlPanel','DoorPart','cfb34adb-29ff-4e64-aa09-254264b40cda','','',NULL), +(12102,'Seat','SeatAccess','UNDEFINED','eef00342-19c4-49d1-8cfe-01d9e008455f','','',NULL), +(12103,'RSI_Aurora_GS_ES_Thruster_Main','MainThruster','FixedThruster','ae7b25b1-a45e-4fc8-a92c-76980355bf82','','',NULL), +(12104,'Manned Turret','TurretBase','MannedTurret','25520edd-3f5c-40ce-84d5-2dca36bdb221','','',NULL), +(12105,'Missile Rack','MissileLauncher','MissileRack','bfe3d552-c5a8-47f8-b877-d0d6aaf38bea','','','Item Type: Missile Rack\nManufacturer: Mirai\nSize: 2\nMissiles: 1xS2\n\nTo make the Fury a threat despite its small size, Mirai developed this bespoke missile rack, which can carry and deploy one S2 missile without undermining the ship\'s compact profile.'), +(12106,'MISC_Razor_LX_Thruster_Main','MainThruster','FixedThruster','6977970e-1f42-42b0-bdd2-a2b3dba1f109','','',NULL), +(12107,'ARGO_RAFT_Thruster_Main','MainThruster','FixedThruster','c41d6f42-6a98-43a1-8748-80129f5a33ad','','',NULL), +(12108,'Railing_Straight_3m_LT_Delta_b','Usable','UNDEFINED','752fa905-64ba-437a-9340-43ee76d2f2e5','','',NULL), +(12109,'MacFlex \"Rucksack\" Backpack','Armor','Backpack','84982692-cf64-4157-a03d-678a2e297ddc','','','Item Type: Light Backpack\nCarrying Capacity: 50K µSCU\nCore Compatibility: All\n\nThe MacFlex Backpack is a back-mounted hard-shell case that provides extra commodity storage options. Whether bringing extra supplies on a long excursion or filling it with ore after a successful mining run, the MacFlex Backpack will be there to carry the load.'), +(12110,'Savrilium','Cargo','Cargo','61b9eda7-c250-4fb1-a714-248176ae5fd9','','',NULL), +(12111,'XIAN_Scout_CML_Flare','WeaponDefensive','CountermeasureLauncher','11800c0b-fe74-4f88-bbb7-9241e8f9f1b7','','','@LOC_PLACEHOLDER'), +(12112,'Palatino Core Necropolis','Armor','Torso','1bc01620-1781-4a5d-ad27-6251653c071d','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: All\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower.'), +(12113,'RS1 Odysey Spacesuits','Cargo','Cargo','efd19e59-b737-421a-894b-57ef24b7c3a9','','',NULL), +(12114,'100 Series IceBreak Livery','Paints','UNDEFINED','4720718b-c902-4cbd-81cb-7e29aa686005','','','Equip your 100 Series with a paint scheme cooler than a snow storm. The IceBreak livery mixes crisp, cool white with a frostbitten blue for an exciting look suitable for any season.'), +(12115,'Carryable_TBO_FL_8SCU_Commodity_ProcessedGoods_AceInterceptorHelmet','Cargo','Cargo','bd6de2d9-b3d3-4429-b342-5d5aa1f6ecb2','','',NULL), +(12116,'SLAM','FPS_Consumable','Medical','ad8918b3-3af9-4c8d-9c1c-a00f13f7feb4','','','Most commonly ingested as a gas. Vials of SLAM are cracked and inhaled. Initially developed as a performance enhancer for athletes, SLAM targets the user\'s nervous system acting as a fear-inhibitor and painkiller. Once the severe physical side effects were discovered, the drug went underground and found popularity among mercs and outlaws who relied on it to provide that slight edge in combat. Unfortunately, SLAM is also heavily addictive, so many of these mercs ended up getting burned out on the drug. Heavy-duty SLAM junkies are easily identifiable in public; they have ‘the shakes’ -- involuntary muscle twitches. Important to note that this is not a sign of withdrawal, simply a side effect.'), +(12117,'DockingTube_Fuel_Ports_RSI_Constellation_Phoenix','DockingCollar','UNDEFINED','8aeee974-9e4a-44d4-978f-f22fc5d52114','','',NULL), +(12118,'Performance T-Shirt','Char_Clothing_Torso_0','UNDEFINED','4bd0e1d1-57dc-4672-9ef3-838cef1ec26f','','','The Performance t-shirt from City Lights is made from 100% dryweave synthetics, keeping the fabric soft, comfortable and sweat-free.'), +(12119,'Construction Rubble','Cargo','Cargo','c123dcbd-eb5c-489c-b184-634286679b4f','','','Can be processed at refineries into Construction Material.'), +(12120,'Seat','SeatAccess','UNDEFINED','4ff778eb-a03c-449f-a7b1-6b111f7d35c4','','',NULL), +(12121,'Carryable_2H_FL_box_ammo_1_a','Misc','UNDEFINED','40064c98-517d-47bf-9c30-64a914be1fde','','',NULL), +(12122,'Chlorine','Cargo','Cargo','e502ee93-c4f0-4c1c-9d84-d2dcb717fe3a','','',NULL), +(12123,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','abb92386-cc6c-4e6f-84e3-4e5c069d0112','','','Aegis Gladius - Decoy Launcher'), +(12124,'Balor HCH Helmet Platinum','Armor','Helmet','2db7871c-23bd-495b-afd6-8dc75fafff07','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. Visor is AR crosshair compatible.'), +(12125,'Uncut SLAM','Cargo','Cargo','daa88ddd-f014-4d5e-806e-21e23022dfd4','','',NULL), +(12126,'Morozov-SH-I Core Pyrotechnic Horizon','Armor','Torso','2d102573-0864-407b-9694-e5364e90d4c4','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12K µSCU\nBackpacks: All\n\nFeaturing the same fortified armor plating, special anti-rip protective padding and ample storage, as the Morozov SH, the SH-I industrial variant was designed by RRS to protect workers employed in hostile zones while ensuring they had the full range of motion required to perform their duties. The Pyrotechnic Amalgamated Edition was made specifically for the company\'s mining efforts in Pyro during the 26th century.'), +(12127,'Seat','Usable','UNDEFINED','58ad2849-10c2-4cc6-be1c-a87c7ec65231','','',NULL), +(12128,'Zenith Laser Sniper Rifle','Weapon','Medium','0c37582b-ab78-440d-911e-c39322bccf1f','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Sniper Rifle\nClass: Energy (Laser)\n \nBattery Size: 22\nRate of Fire: 60-300 rpm\nEffective Range: 80 m\n \nAttachments: Optics (S3), Underbarrel (S2)\n \nThe Zenith Laser Sniper Rifle from VOLT offers operational flexibility on the battlefield as it can fire lower-energy shots rapidly, or be allowed time to automatically charge to fire a much more powerful energy blast that also generates significantly more noise and heat.'), +(12129,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','551a9752-4ea6-4e37-ba90-0be9550a3ff2','','','Joker Defcon - Noise Launcher'), +(12130,'CRUS_Spirit_C1_Exterior_Nose','Misc','UNDEFINED','00652c7e-67d2-45a9-b308-ae9307fdb329','','',NULL), +(12131,'BEHR_LaserCannon_Barrel_S3','WeaponAttachment','Barrel','f03eec37-5cc3-4ae5-8bca-658942039d97','','',NULL), +(12132,'Palatino Arms Necropolis','Armor','Arms','1b0b51c5-b6e4-4bd7-b4fe-d763909e429a','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower.'), +(12133,'Door Control','Door','UNDEFINED','a80fc81c-d242-497a-b059-7c6aa244ff82','','',NULL), +(12134,'TRGT. STATUS','Seat','UNDEFINED','ff6f1454-b66b-487a-b73f-65baba09d11c','','',NULL), +(12135,'Carryable_Mop','Misc','UNDEFINED','be3a7bac-af49-4c77-bf82-cad4ace94c90','','',NULL), +(12136,'Door Control','ControlPanel','DoorPart','7e4479ba-eb04-4456-9161-8c24eab0e544','','',NULL), +(12137,'Door Control','Door','UNDEFINED','48993eb1-4613-4f3f-b3c5-2560de32cd16','','',NULL), +(12138,'MISC_Fury_MX_Thruster_FixedMav_Bottom','ManneuverThruster','FixedThruster','e9b84593-6086-443a-9e78-4c223b061a50','','',NULL), +(12139,'DRAK_Caterpillar_Mattress_B','Seat','UNDEFINED','dd7265c2-140d-4062-a08c-54c05d7fbdab','','',NULL), +(12140,'TMBL_Storm_Windshield','Misc','UNDEFINED','44767fcc-8afb-4eb2-9e8d-9e8226b9478e','','',NULL), +(12141,'Odyssey II Helmet Alpha','Armor','Helmet','75bda9ac-9f0d-4e8d-a52b-4e5e639e815e','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(12142,'ORIG_300i_Yoke','Misc','UNDEFINED','70df37e6-797c-459f-a844-ba7e99a63b7e','','',NULL), +(12143,'nodraw_undersuit_helmet_01_01_01','Armor','Helmet','d62ea5ef-cb7c-4b29-a047-ea029474ddd1','','',NULL), +(12144,'Door Control','ControlPanel','DoorPart','e91483d8-257d-4bf5-bf76-7c81fa64d430','','',NULL), +(12145,'Quartz','Cargo','Cargo','3a160f92-022f-4514-b986-5b7e50306b9c','','',NULL), +(12146,'ARMR_RSI_Apollo_Medivac','Armor','Medium','42014f8c-2b70-e411-4f1a-1c15cd36ce9f','','',NULL), +(12147,'Wolf Nighttide Camo Livery','Paints','UNDEFINED','367cd862-1a03-426b-b297-d6d02615ca24','','','Orange highlights provide a bit of color to the gray and black Nighttide Camo livery.'), +(12148,'Weapon_Rack_ANVL_Paladin_LargeWeapon','Door','UNDEFINED','06b3fab3-7434-44e9-bf34-8ef4bbcd9256','','',NULL), +(12149,'ORC-mkX Legs Desert','Armor','Legs','21c17af8-5a87-4c56-ba1a-091926192b60','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(12150,'NONE_LaserRepeater_Barrel_S1','WeaponAttachment','Barrel','b127e84c-5805-4404-a1c4-c975476964bd','','',NULL), +(12151,'ReadyMeal (Chicken Patty and Noodles)','Food','Sachet','4ad1c5eb-53c7-4192-ad21-e3a394606b7d','','','NDR: 60\nEffects: None\n\nThe classic taste that\'s all you need, this Chicken Patty and Noodles from ReadyMeal features a crispy chicken patty paired with garlic butter noodles all ready-to-eat in seconds.'), +(12152,'Door Control','ControlPanel','DoorPart','110c8c96-87a7-403e-92dd-6f3888c5cf55','','',NULL), +(12153,'CF-117 Bulldog Repeater','Weapon','Gun','c9c2bb19-3298-448e-a117-043e082a1c74','','','Manufacturer: Klaus & Werner\nItem Type: Laser Repeater\nSize: 1\n\nFeaturing a three-barrel sequential fire design, the Klaus & Werner CF-117 Bulldog laser repeater is capable of delivering high velocity energy rounds while maintaining heat efficiency making it a favorite among new pilots who are outfitting their first ship.'), +(12154,'Ready-Up Helmet Dark Green','Char_Clothing_Hat','UNDEFINED','e8054da0-9609-4a6b-8541-af34aeff1cea','','','The Ready-Up is a dependable, affordable softshell helmet alternative. Built from space-age plastic, the Ready-Up provides a vacuum-ready seal to keep you breathing for longer.'), +(12155,'ESPR_Prowler_Component_Housing_Small_Locked','Player','UNDEFINED','7a48e1e4-7396-469d-a464-5da3ae7d24f8','','',NULL), +(12156,'SLAM','Cargo','Cargo','9ded6915-c77f-405c-b6db-bcc638275dee','','',NULL), +(12157,'Hammerhead Fortuna Livery','Paints','UNDEFINED','53128752-7863-4a3c-858a-6ca6324b0544','','','Make luck your co-pilot. Boldly set your sights on the stars and adventure forth in style with the Fortuna livery. This Stella Fortuna themed paint scheme is primarily green with grey accents.'), +(12158,'Door Control','Door','UNDEFINED','bbdd91af-df26-4d70-864e-6c2e8f175e6a','','',NULL), +(12159,'Cutlass Black Plushie','Misc','Personal','d6028d77-ccdf-44c2-b2e8-1bbe640b4e6a','','','This soft plushie is modeled after Drake Interplanetary\'s widely popular multifunction ship the Cutlass Black. Even the most hardened spacefarer will appreciate its gentle squish.'), +(12160,'srvl_combat_heavy_arms_03_01_01','Armor','Arms','428d72a7-1786-4e5f-86cb-6afd248f1352','','',NULL), +(12161,'sc_nvy_bridgeofficer_captain_jacket_01_01_01','Char_Clothing_Torso_1','UNDEFINED','6fb71a1e-64f4-41ed-a3b2-bedf142a6f49','','',NULL), +(12162,'DCP Armor Legs Hunter Camo','Armor','Legs','4ffb6e07-e7c6-4db5-8735-c35179a723d0','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(12163,'AEGS_Door_Screen_Single_01','Decal','DoorPart','05895857-712a-43c7-b47d-3ef4016d576d','','',NULL), +(12164,'ANVL_Terrapin_Thruster_Main','MainThruster','FixedThruster','8d59191e-cfbb-4d22-a206-ff0d93530cea','','',NULL), +(12165,'Carryable_1H_CY_weight_dumbbell_1_10kg_b','Misc','UNDEFINED','908c42d1-1eb8-4fae-97a2-0d0291902c2f','','',NULL), +(12166,'Lynx Core Sandstorm','Armor','Torso','aa446b0b-eb56-4413-b455-639617e7c330','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(12167,'Spyglass','Radar','MidRangeRadar','458ad6a8-b422-412b-b2f4-10ee2a9f5f3b','','','Item Type: Radar\nManufacturer: Blue Triangle Inc.\nSize: 2\nGrade: C\nClass: Stealth\n\nDesigned to help you remain undetected by hostile parties, the Spyglass radar operates with lower emissions while still giving you the full picture.'), +(12168,'Door Control','Door','UNDEFINED','91cf6d51-e045-4a93-98b2-6719043b43c3','','',NULL), +(12169,'Freelancer Storm Surge Livery','Paints','UNDEFINED','40790c91-63ff-4d99-8a1f-1873ca0d12c5','','','Customize your Freelancer with this fragmented blue livery.'), +(12170,'Heart of the Woods','Cargo','Cargo','c1f47af6-f6bd-4640-8222-c63f0e67509b','','',NULL), +(12171,'Bolide','PowerPlant','Power','22ca3ca2-1bdc-48a7-8689-a0f8259a5441','','','Item Type: Power Plant\nManufacturer: Aegis Dynamics\nSize: 2\nGrade: B\nClass: Military\n\nThe Bolide power plant from Aegis has logged innumerable hours of flight experience and is frequently used by the UEE Navy and security forces across the Empire.'), +(12172,'MISC_Freelancer_Base_Toilet_Door','Door','UNDEFINED','1b62a304-a953-4a97-a0ba-489d9c6c72f4','','',NULL), +(12173,'Suldrath','Shield','UNDEFINED','f8d44a06-9b5e-49c1-a578-8e45386c2539','','','Item Type: Shield Generator\nManufacturer: Banu\nSize: 1\nGrade: C\nClass: Military\n\nClassic Tevarin tech melds with modern design for the Suldrath shield generator. The Banu beautifully blend the best parts of historic Tevarin shield tech with contemporary upgrades and conveniences expected of this component generation. The result is an effective and unique xeno-crafted shield ready to shroud your ship and protect you from whatever dangers come your way.'), +(12174,'Libio Jacket Purple','Char_Clothing_Torso_1','UNDEFINED','9c5b4134-7205-4725-9d59-99b8a3db1f23','','','Carrying Capacity: 1K µSCU\n\nOne of OpalSky\'s classic pullovers, the Libio features a two-tone asymmetrical pattern and polyweave blend to keep it elegant and striking every time you wear it.\n\nWomen\'s sizes currently out of stock.'), +(12175,'Quartz','Cargo','Cargo','92e4fdd4-e6a4-4ad0-bbb9-8c912691112c','','',NULL), +(12176,'MSD-221 Missile Rack','MissileLauncher','MissileRack','9f9eab9c-4038-492d-bdd0-053d60a50307','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 2\nMissiles: 2xS1\n\nBehring’s MSD-221 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 2 hardpoint for the reliable and effective launch of two S1 missiles.'), +(12177,'Weapon_Rack_ANVL_Paladin_NormalWeapon','Door','UNDEFINED','5c7d2e12-d6d7-4db3-a865-3643cfd2da33','','',NULL), +(12178,'ORIG_600_CargoGrid_Main_Small','CargoGrid','UNDEFINED','719ee5b2-29eb-401c-90d2-194a1c73cad1','','',NULL), +(12179,'Freeze','Cargo','Cargo','7cb94d9d-e03c-4fc8-9245-92389b0b4ee5','','',NULL), +(12180,'un_can_drink_2_d','Misc','UNDEFINED','3cbdd322-c643-4f5e-b6db-3bdfc98129e1','','',NULL), +(12181,'Carryable_TBO_FL_1SCU_Commodity_Organic_Armillaria','Cargo','Cargo','53196136-1a49-40cd-b25e-96a4bd191c96','','',NULL), +(12182,'AdrenaPen (Demexatrine)','FPS_Consumable','Medical','a6768bc4-5245-4df0-bd57-49fe5ec1994b','','','Manufacturer: CureLife\nItem Type: Medical Consumable\n\nFrom the Empire’s most trusted medical company, the CureLife AdrenaPen can rapidly dispense doses of the synthetic adrenaline Demexatrine during emergency situations to help relieve muscle fatigue and symptoms related to being concussed. Use only as recommended.'), +(12183,'Starlancer Hurston Livery','Paints','UNDEFINED','2ac4d3ad-c0a7-41a3-91a9-0b76077ef297','','','The Hurston livery for the Starlancer features the company\'s logo atop a grey base paint with yellow highlights.'), +(12184,'Ardent Boots Purple','Char_Clothing_Feet','UNDEFINED','99549b34-5b60-4ae8-9623-96f66a6f8a24','','','Who says NorthStar can\'t keep it pro? The Ardent boot features a molded rubber sole and all-weather construction to withstand a constant battery from the elements.\n\nWomen\'s sizes currently out of stock.'), +(12185,'FBL-8a Arms (Modified)','Armor','Arms','82f49acc-8156-4e69-89aa-c84854ce2042','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBased on CDS\' FBL-8a combat armor, this set has been modified from its original form. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible.'), +(12186,'Carryable_2H_CY_weight_barbell_bumperplate_1_15kg_b','Misc','UNDEFINED','610b1b6e-fc8e-49ac-aba1-252b44683ba0','','',NULL), +(12187,'Morozov-SH Core Thule','Armor','Torso','348830d6-ba18-4efd-bb2d-73e126f66057','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12K µSCU\nBackpacks: All\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(12188,'Door Control','Door','UNDEFINED','c6bc3cfd-017b-48b6-8f3e-ba7284cadaac','','',NULL), +(12189,'Chrome Dome Head Gear Minefield','Char_Clothing_Hat','UNDEFINED','f1407119-418f-44e3-8982-c49161126f40','','','The Chrome Dome was designed to make hostile environments manageable. This unique head gear features a lightweight and reflective hat with a sloped brim, goggles that automatically adjust to lighting conditions, large ear flaps, and a neck gaiter to cover the face. Whether trudging through snow or sand, the Chrome Dome is ready to brave the elements with you.\n\nThe Minefield edition features metal rivet detailing.'), +(12190,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','eb8f93b7-27a8-4326-a260-28b296b1e29e','','','Joker Defcon - Noise Launcher'), +(12191,'Gadget_Cabinet_kegr_fire_extinguisher_01_Nozzle_med_low','Usable','UNDEFINED','ab21866f-d55b-48ba-aafc-d695266b0872','','',NULL), +(12192,'Walesko','FPS_Consumable','Hacking','f3f3f5b2-c8d2-43bd-ad68-6871ad3b2a6b','','','Instructions for how to build this simple cryptokey were first published publicly in 2887 by political activist Aris Walesko who had hoped that it would lead to greater governmental transparency. Though not up to the standards of most modern security protocols, this slow and unreliable device it is still in use today owing to its ease of construction and wide availability from numerous small manufacturers.'), +(12193,'MacFlex Core Green','Armor','Torso','07b00f98-f6f4-4a88-99b1-84d1b0240f09','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(12194,'un_can_drink_2_c','Misc','UNDEFINED','20149390-35f7-481e-b6c6-86dfb37eeb0d','','',NULL), +(12195,'Flight Blade','FlightController','UNDEFINED','d8f06766-b639-4e71-a539-406fdfe93961','','',NULL), +(12196,'M9A Cannon','Weapon','Gun','a1ea51dd-1665-41cf-923a-d6a42a7130ce','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 7\n\nStrike at the very heart of your enemies with the devastating impact of Behring\'s M9A energy autocannon. When fully charged, the massive stopping power of this laser weapon has the potential to halt even capital ships in their tracks.'), +(12197,'ORC-mkX Legs Autumn','Armor','Legs','1f9286a2-1181-4129-a2ac-450b63271082','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(12198,'P6-LR Magazine (8 cap)','WeaponAttachment','Magazine','b038fea7-2e2f-4b47-b90d-4bb39bde3229','','','Item Type: Magazine\nCapacity: 8\n\nThis magazine for the Behring P6-LR sniper rifle holds eight rounds.'), +(12199,'Pyro RYT Multi-Tool','Weapon','Gadget','396ccb0d-c251-484d-998e-cc3616a37ee5','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier.'), +(12200,'Weapon_Rack_1_Volt_SMG_Uncommon_003','Usable','UNDEFINED','1a1865f7-8201-4cb7-a04a-2111cd0b06e5','','',NULL), +(12201,'Odyssey II Helmet White','Armor','Helmet','0661d322-2761-4c0d-8aca-14490ec07975','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(12202,'Door','Door','UNDEFINED','48ba32ab-a387-4467-8428-1dd39df0d492','','',NULL), +(12203,'Zeta-Prolanide','Cargo','Cargo','e22b7b9d-36ef-49bf-bf4f-ca1933cc7c99','','','This chemical is an industrial reactant that has found widespread use neutralizing irradiated materials. Because of how volatile it is, it must be kept in an electrically charged state or else a rapid exothermic reaction may occur before desired.'), +(12204,'ControlPanel_GenericSwitch','ControlPanel','DoorPart','1f910f79-cb2b-4a30-9d28-d4f45c419c9f','','',NULL), +(12205,'Omnapoxy','Cargo','Cargo','20ac3e4b-16a8-4b27-a957-1e4650aecf77','','',NULL), +(12206,'Door Control','Door','UNDEFINED','a4a8af64-7acf-4b15-b759-f955a30a7b87','','',NULL), +(12207,'GATS_BallisticCannon_PowerArray_S3','WeaponAttachment','PowerArray','492010f1-32cb-4832-93b8-bbf1bd4849f4','','',NULL), +(12208,'Overlord Arms Skimmer','Armor','Arms','78c74c51-eb2b-4280-a4d6-32ce1e35f573','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.\n\nThe Skimmer edition features white plating with cool blue accents.'), +(12209,'Helium','Cargo','Cargo','abca8125-a53e-4b0b-aaf2-098328720e61','','',NULL), +(12210,'Seat','SeatAccess','UNDEFINED','1cb768a4-e7d0-413b-8aa1-e1eeeedc2936','','',NULL), +(12211,'MSD-644 Missile Rack','MissileLauncher','MissileRack','c870f6a8-5db9-4999-909a-675aa511ba19','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 6\nMissiles: 4xS4\n\nBehring’s MSD-644 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 6 hardpoint for the reliable and effective launch of four S4 missiles.'), +(12212,'ORC-mkV Arms Cry-Astro Edition','Armor','Arms','f9189dcf-9a10-46ea-ab92-8edec6336bc6','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement. The Cry-Astro Edition was made specifically for the company.'), +(12213,'MISC_Hull_C_FoldingStrut_1D_Outer','Cargo','UNDEFINED','5b8f1da6-946f-4cc8-b8aa-1989907f3f49','','',NULL), +(12214,'Stalwart','Gadget','Gadget','14398612-495b-498b-90d1-e55a346be810','','','Manufacturer: Thermyte Concern\nItem Type: Mining Gadget\n\nLaser Instability: -35%\nCluster Modifier: +30%\nOptimal Charge Window Rate: +50%\n\nOptimal Charge Window Size: -30%\n\nThe Stalwart is for miners looking to wield power precisely. The gadget reduces the optimal charge window size, making miners skillfully manage conditions to find the sweet spot. Once there, the increased power will fill the optimal charge window faster while also keeping clusters of valuable ore together. \n\nManufacturer Warning! Using more than one mining gadget per deposit can result in a catastrophic explosion.'), +(12215,'Seat','Usable','UNDEFINED','20b73e18-edf8-4316-bc10-1be93a33c90b','','',NULL), +(12216,'Seat','Usable','UNDEFINED','ee255016-989a-4b72-97a5-242e17544117','','',NULL), +(12217,'bar_box_energy_calomeal_vanilla','ShopDisplay','Default','cbd72003-2e1b-4202-a358-52ea19bb83c9','','',NULL), +(12218,'Markanda Undersuit Jasper (Refurbished)','Armor','Undersuit','c89da07f-a856-4113-8e5e-56db79306ad3','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nBuilt for adventure but comfortable enough for everyday, the Markanda undersuit has become beloved by explorers. A unique patchwork design creates a flexible yet resilient undersuit, while an odor resistant SureSoft inner lining will keep you from wanting to take it off. This particular undersuit has been repaired for extended use.'), +(12219,'MISC Reliant Ship Armor','Armor','Medium','4d6ecf54-e6aa-40c3-b26e-2fa460f0835a','','','MISC Reliant Ship Armor'), +(12220,'Surveyor-Lite','Radar','MidRangeRadar','87008b2d-438a-4091-8ae4-303be47190d8','','','Item Type: Radar\nManufacturer: Chimera Communications\nSize: 1\nGrade: C\nClass: Industrial\n\nThere’s a lot for you to worry about on those long hauls. Don’t let your radar’s performance be one of them. You can count on the Surveyor-Lite from Chimera Communications to provide the durability and performance that you need.'), +(12221,'Avenger Skullcrusher Livery','Paints','UNDEFINED','16254b4c-b531-419e-93f3-e31a1ade4c8b','','','Exude attitude with the Skullcrusher livery for the Avenger, which features a massive skull across the top.'), +(12222,'TrueDef-Pro Core Black/Grey','Armor','Torso','56cd8ed6-8780-442a-a7a6-100c87dd0056','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(12223,'GrimHex_Datapad_BennyBeyond_4x3_Screen','Display','UNDEFINED','8cbba12f-2614-46a5-844e-76b5be4b1cf1','','',NULL), +(12224,'Paint_300_Dash_CarbonFiberYellow','Misc','UNDEFINED','a5dc4e65-25bd-4023-b02e-0491cf70928b','','',NULL), +(12225,'Guardian Vector Livery','Paints','UNDEFINED','4f8c2158-24ab-4afe-9087-cae704370530','','','Contrasting whites, reds, and blacks create strikingly angular design on the Vector livery.'), +(12226,'TRGT. STATUS','Seat','UNDEFINED','2352a96d-30df-4918-9b73-27fbe4cbe978','','',NULL), +(12227,'RSI_Zeus_Thruster_Main_Top_Left','MainThruster','UNDEFINED','618417c2-a40a-4c14-a960-5fd008a6d619','','',NULL), +(12228,'Booth_Table','Usable','UNDEFINED','3d8f78d2-b13b-48a6-ac5c-c2f7a618cebd','','',NULL), +(12229,'Pite','Char_Head_Piercings','UNDEFINED','73c62848-2585-4183-905a-64242cdf37d4','','',NULL), +(12230,'VNCL_Scythe_Thruster_top_front','ManneuverThruster','FixedThruster','6e60a0d4-1838-4171-8934-e216a705a715','','',NULL), +(12231,'Door Control','Door','UNDEFINED','ee70e8fa-1995-4e4c-a872-752f02730130','','',NULL), +(12232,'Internal Tank','FuelTank','Fuel','45ff1a15-d526-6991-84ae-e74dd075509f','','',NULL), +(12233,'AAT-34 Turret','Turret','MannedTurret','1fff897a-8515-49d0-821f-b8be5f410dc2','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(12234,'Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','767efcd7-b179-4637-bf50-132c188841e5','','','Live in comfort with MuyMuy\'s Davlos line of cotton-synthetic shirts. The durable, yet soft, fabric contains a patented SweatGuard technology that not only whisks away perspiration but helps prevent stains.'), +(12235,'Pite','Char_Head_Piercings','UNDEFINED','336b6232-bd09-4c66-813f-4f07ce82a34e','','',NULL), +(12236,'Toughlife Boots Aqua','Char_Clothing_Feet','UNDEFINED','9402e5e0-d045-4e31-b1a8-dcfab67bd7a5','','','Grindstone\'s done it again. The Toughlife is an all-purpose workboot designed to provide comfort, durability and quality. Featuring a reinforced composite toe and lasercut sole to maximize traction on all surfaces, Toughlife is sure to be your dependable boot, day in and day out.'), +(12237,'Keldur Hat and Oak Goggles','Char_Clothing_Hat','UNDEFINED','ceb11885-abb1-4d2a-83bb-760a3e42370c','','','Blowing winds and blazing sun won\'t be an issue when wearing the Keldur hat and goggles. Insulated flaps keep the sun and elements off your neck, while a lightweight metal brim and scratch resistant, industrial-grade goggles protect your eyes.'), +(12238,'Seat','Usable','UNDEFINED','e86c9567-f304-4907-92a6-500ff8593839','','',NULL), +(12239,'Manned Turret','TurretBase','MannedTurret','6d0aad2c-bdfe-47c5-afc5-db3c72c38c49','','',NULL), +(12240,'box_plastic_4_005x005x005_a_commodity','Cargo','Cargo','b7f3b684-9304-4d83-babb-d9e85ab0bbf9','','',NULL), +(12241,'CK13-GID Seed Blend','Cargo','Cargo','0f14aea2-e4bb-45cc-b616-5ce5994ace83','','',NULL), +(12242,'IAE 2952 Hat Red','Char_Clothing_Hat','UNDEFINED','850439d1-2689-44d0-872f-86e06d437ff9','','','A red cadet hat celebrating the 2952 Intergalactic Aerospace Expo featuring the event\'s logo across the front.'), +(12243,'Console','Usable','UNDEFINED','7656770d-bf2a-4231-97db-011582873176','','',NULL), +(12244,'Mug','Drink','UNDEFINED','cb0d12d7-77c7-46a6-99e3-86f3dd31afe5','','',NULL), +(12245,'Flight Blade','FlightController','UNDEFINED','d648e492-785a-4ed1-ab63-5bdf36c744c4','','',NULL), +(12246,'ANVL_Pisces_Thruster_Mav_Joint_C8R','ManneuverThruster','JointThruster','6c1774dd-237d-43b7-88a6-183af317c6a3','','',NULL), +(12247,'Mivaldi Pants Orange','Char_Clothing_Legs','UNDEFINED','0da5705b-b3c5-4041-b8f2-2533c58cf84f','','','Carrying Capacity: 0.5K µSCU\n\nCut to a narrow fit, OpalSky\'s Mivaldi pants feature bold asymmetrical design with smart yet casual dual material styling, making it the perfect addition to any wardrobe.\n\nWomen\'s sizes currently out of stock.'), +(12248,'Internal Tank','FuelTank','Fuel','e9200dee-fb64-4d51-95b7-227ee4ba4c5b','','',NULL), +(12249,'Paint_Idris_Military','Paints','UNDEFINED','176de3ed-8599-44a5-b846-fee7882cbf99','','',NULL), +(12250,'stand_shop_large_b_QTDrive','ShopDisplay','UNDEFINED','709c6180-7675-4d1e-b63c-e714d12bb395','','',NULL), +(12251,'MISC Ore Pod','Container','Cargo','ca23670c-f690-4027-af9a-a5d6dda74c79','','','Capacity: 8 SCU\n\nMade to work with any compatible mining ship, the MISC Ore Pod boasts several unique features, including anti-abrasion paint inside the pod that ensures it can withstand hefty payloads for years to come.'), +(12252,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','ac7791ff-1524-41fe-942f-96d2af52cc51','','','Aegis Gladius - Decoy Launcher'), +(12253,'Jaclium (Ore)','Cargo','Cargo','27b445e2-3f34-4796-8730-aadf6f019f6c','','','A naturally occurring rare metal form of jahlium, it is used in the production of extremely strong alloys with incredible tensile strength. Originally confused with common jahlium when first discovered, the above average results when used lead to researchers to realize its value.'), +(12254,'Testudo Backpack Combustion','Armor','Backpack','d463ff3b-ada2-4fd3-8155-6e8c5ecc6bbc','','','Item Type: Medium Backpack\nCarrying Capacity: 105K µSCU\nCore Compatibility: Medium & Heavy\n\nThe Testudo backpack may feel as light as a feather in your hands, but it can hold an impressive amount of weight thanks to its use of the same tough yet lightweight plating as the armor set.'), +(12255,'Drivetrain','WheeledController','UNDEFINED','f83db275-20b8-4b49-b6d4-272f68b66484','','',NULL), +(12256,'Overlord Core Skimmer','Armor','Torso','8d73db5e-d483-414b-8964-92942f9bc946','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12.0 µSCU\nBackpacks: All\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.\n\nThe Skimmer edition features white plating with cool blue accents.'), +(12257,'Construction Materials','Cargo','Cargo','18b8ec08-06d3-4e64-a11b-790f7945e2ba','','',NULL), +(12258,'Bed_Bunk_Shutter_Bottom_AEGS','Door','UNDEFINED','012c96c2-ba4f-4784-9ca5-27fe08f4cd75','','',NULL), +(12259,'CSP-68L Backpack','Armor','Backpack','d176699d-7032-4eeb-a351-3e27d567e4a7','','','Item Type: Light Backpack\nCarrying Capacity: 54K µSCU\nCore Compatibility: All\n\nBe ready for any situation with the CSP-68L Backpack. Originally designed for the rigors of combat support, this light backpack has become popular thanks to its durability and a patented core connector that helps the CSP-68L sit comfortably and balanced on the back.'), +(12260,'Parvat Jacket Mosaic Marble','Char_Clothing_Torso_1','UNDEFINED','de57616d-0fbd-47b2-a264-dcdfec6bb51a','','','Carrying Capacity: 2K µSCU\n\nWeather the cold with this waterproof and insulated jacket from Escar Limited. Featuring a stylish design and unique dual-layer collar, the Parvat will keep you warm when you need it most.'), +(12261,'MISC_Fury_LX_Thruster_FixedMav_Right','ManneuverThruster','FixedThruster','c4d49fd5-596c-46a2-83f3-3a9eb4291019','','',NULL), +(12262,'Internal Tank','QuantumFuelTank','QuantumFuel','a35ec17d-914e-4223-917f-0f42f7e482bf','','',NULL), +(12263,'GRIN_ROC_Dashboard_Driver','SeatDashboard','UNDEFINED','a891b1e3-44d7-4c4d-b7ea-8e8c29743656','','',NULL), +(12264,'Imperial Trio Kacho','Food','Box','cad183b5-e2ba-45d2-8ad7-d127b6c02e13','','','NDR: 30\nEffects: None\n\nBig Benny\'s kacho is based on traditional family recipes straight from Corel, combining springy noodles and a rich, warm broth to create a taste enjoyed the \'verse over. The Imperial Trio flavor features three different and delicious savory proteins lightly seasoned to perfection.'), +(12265,'Prota','Cargo','Cargo','739b9d47-b260-44d4-94fd-015e585f0e8e','','',NULL), +(12266,'Seat','Usable','UNDEFINED','5547e66f-7ee8-49a5-b184-31714398ab89','','',NULL), +(12267,'Year of the Rooster Envelope','Cargo','Cargo','eeb7f7a5-121e-4749-be63-24ea3d06daf9','','',NULL), +(12268,'Azrael Helmet','Armor','Helmet','2cbf115c-6558-4048-be0d-5e5bc5f68bee','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nWhen flying through the dangerous reaches of space, it\'s common for brave pilots to routinely face down death as part of their every day. Now with the Azrael helmet from CC\'s Conversions you can look the part with the grim visage of a skull peering out from beneath the visor of this otherwise normal looking helmet.'), +(12269,'Osoian Hides','Cargo','Cargo','dc775b58-1c1c-4b40-bd33-f6780ade305a','','',NULL), +(12270,'Omnisky XVIII Cannon','Weapon','Gun','1901415b-cfbd-49fb-82f8-42eff2c11f01','','','Manufacturer: Amon & Reese Co.\nItem Type: Laser Cannon\nSize: 6\n\nNicknamed \'Augustus\' by Amon & Reese engineers after the Roman Emperor who founded the notable \'Eighteenth Legion,\' this massive size six laser autocannon hits hard over great distances, making the Omnisky XVIII an effective way to keep enemies at bay.'), +(12271,'Seat','SeatAccess','UNDEFINED','f6030322-9620-4fbc-bfdc-bd2c7b336fec','','',NULL), +(12272,'Ati Jacket Dark Red','Char_Clothing_Torso_1','UNDEFINED','af0a2fd5-cbf4-46bb-99a7-59b64b30c3c9','','','Carrying Capacity: 2K µSCU\n\nFiore\'s is a modern update of traditional Earth design. Slim tailoring, a high collar, and striking asymmetrical design make this overcoat a must-have item for any wardrobe.'), +(12273,'Turret','TurretBase','MannedTurret','9c8965da-dfc3-4af0-98aa-eb429cfa87f1','','',NULL), +(12274,'P6-LR \"Rime\" Sniper Rifle','Weapon','Medium','ee6a1e19-269b-42d6-9449-12e833316b2d','','','Manufacturer: Behring\nItem Type: Sniper Rifle\nClass: Ballistic\n\nMagazine Size: 8\nRate Of Fire: 20 rpm\nEffective Range: 120 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nThe Behring P6-LR ballistic sniper rifle more than makes up for its slow rate of fire with a high powered round that\'s effective from long range. Featuring a scope with variable zoom modes and a barrel composed of a proprietary high-strength alloy, the P6-LR was designed to deliver when needed most.'), +(12275,'Door Control','Door','UNDEFINED','3e0ba780-9faa-421a-87c5-9be1400b215f','','',NULL), +(12276,'Warlord Throne','Usable','Cargo','5144e536-c942-406e-b328-423163650ce8','','','Reign over your subjects from the haughty heights of your very own throne. Fabricated from a disused engine, animal bones, scavenged metal parts, and a swathe of vibrant red feathers, this chair\'s menacing presence is reinforced by a golden plated skull sculpted into the back.'), +(12277,'f_human_mannequin_legacy_marine_light','ShopDisplay','UNDEFINED','955909ed-c4a5-4be9-a28c-0c9781c8446c','','',NULL), +(12278,'Voidripper Sunbeam Helmet','Armor','Helmet','d7085b15-3e22-4815-b1d6-25ff520e8902','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nEmbrace your inner beast by equipping the Voidripper helmet. Layers of heavy armor plating provide premium protection and an unforgettable visage featuring a heavy brow and piercing turquoise eyes. Sakura Sun designers complimented this striking form with supreme function, including a state of the art sensor suite attached to the helmet\'s right side. Visor is AR crosshair compatible.'), +(12279,'Remote Turret','Turret','GunTurret','1418a786-f180-4c8a-9c5d-84c090c69b8e','','','Remote Turret'), +(12280,'Cutter IceBreak Livery','Paints','UNDEFINED','23ab7122-cb35-4126-888f-f4a32ea744fc','','','Equip your Cutter with a paint scheme cooler than a snow storm. The IceBreak livery mixes crisp, cool white with a frostbitten blue for an exciting look suitable for any season.'), +(12281,'Seat','SeatAccess','UNDEFINED','eb69a39e-caf5-444e-a622-8e19e015570d','','',NULL), +(12282,'Stirling Exploration Suit Olympian Edition','Armor','Undersuit','d9e66956-5621-4c5f-9528-885276e1d9f4','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nDesigned to withstand inhospitable environments, the Stirling Exploration Suit provides a base level of protection from environmental hazards including radiation. Combining Caldera\'s advanced insulation fabrics with sophisticated polymers, the Stirling is able to safeguard the wearer whilst minimizing disruption to movement. Additionally, a self-cleaning system automatically activates after radiation exposure to expunge dangerous excess down to nominal levels. The Olympian Edition melds gleaming yellows and golds with a subtle hexagonal pattern, completed with a reflective visor to create an almost luminous appearance.'), +(12283,'Stirling Exploration Suit Transistor Edition','Armor','Undersuit','925506f1-1c34-498b-81c7-38d93fa939cc','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nDesigned to withstand inhospitable environments, the Stirling Exploration Suit provides a base level of protection from environmental hazards including radiation. Combining Caldera\'s advanced insulation fabrics with sophisticated polymers, the Stirling is able to safeguard the wearer whilst minimizing disruption to movement. Additionally, a self-cleaning system automatically activates after radiation exposure to expunge dangerous excess down to nominal levels. The Transistor Edition is primarily copper with a white accent that cuts down the middle, finished with a tinted yellow visor.'), +(12284,'Mandible Helmet (Modified)','Armor','Helmet','cb5e7074-4397-4bd3-8803-02ef0265bd72','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThis version of Sakura Sun\'s Mandible helmet has been modified from its original form. Show that you\'re ready to \'bug out\' with the exclusive Mandible helmet from Sakura Sun. Lightweight plating provides protection while metal fangs protrude from the front for an intimidating insectoid shape that walks the line between fun and frightening.'), +(12285,'bar_box_energy_calomeal_lunes','ShopDisplay','Default','5b1e9394-8f9d-44f8-ad5f-389defa559f1','','',NULL), +(12286,'Door_ChipReader_Yormandi_Access','Door','UNDEFINED','48a356b5-573a-479c-ab50-fbb2e34c18e1','','',NULL), +(12287,'BEHR_LaserCannon_FiringMechanism_S5','WeaponAttachment','FiringMechanism','8a53e3a5-6bf1-4bff-938d-6814aa6da332','','',NULL), +(12288,'video_wall_display_1_015x005x005_a','Display','UNDEFINED','4b0f230b-ddaf-4b8c-92cd-921dd940671b','','',NULL), +(12289,'H_Dashboard_Projector_HUD_RSI_Constellation','Display','UNDEFINED','2d311626-b124-4313-b2e1-8491b5924a34','','',NULL), +(12290,'Torite (Ore)','Cargo','Cargo','b1ec3111-f51a-4b70-a70b-190d1dba89a8','','',NULL), +(12291,'Door_LoadoutScanner_StormBreaker_DataFacility1','Door','UNDEFINED','c7e2d3a2-50ef-4556-bf17-098cfd287189','','',NULL), +(12292,'Strata Core Amber','Armor','Torso','6227ba71-1b64-4cdc-997a-fca6ac7d1cbe','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 15k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpack Compatibility: Light & Medium \n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres.'), +(12293,'Sunset Berries','Misc','Harvestable','7a751e90-5093-47de-be6b-4b4016d85226','','','NDR: 08\nHEI: 06\nEffect: Toxic\n\nThese sunset-hued berries grow best in cold climates. They are toxic and not suitable for Human consumption. Eating them can result in symptoms such as vomiting and extreme cramping. Higher dosages have been known to be fatal. While the raw unprocessed berries are very bitter and tannic, once fermented, the resulting poisonous brew has a very sweet taste and is more commonly known as \"Death Wine.\" Recently, medical researchers are investigating if the toxin in sunset berries could be used to help treat nerve damage or neurological diseases.'), +(12294,'Apollo Shockwave Livery','Paints','UNDEFINED','4cd28a2d-1185-4422-90ba-f3aad5e70533','','','The subtle style of the Shockwave livery brings an appealing blue with orange highlights to the Apollo.'), +(12295,'Borase (Ore)','Cargo','Cargo','81382380-d17d-4d56-8e4a-c4fd91134b1e','','',NULL), +(12296,'Aurora Mk I SXSW15 Commemorative Livery','Paints','UNDEFINED','836dc7ef-66a7-456e-a0ba-2c62c1a41821','','','Strike out boldly into the universe with this vibrant livery commemorating the iconic 2945 festival that celebrated community spirit and expansion.'), +(12297,'AEGS_Avenger_PrisonPod_3','Usable','UNDEFINED','c3727fe9-1457-44f0-971e-87dcc00e2863','','',NULL), +(12298,'Cordimon Jacket \"Voyager\"','Char_Clothing_Torso_1','UNDEFINED','a8d54600-ab59-48a1-bfc7-745e721e7f2c','','','Carrying Capacity: 3K µSCU\n\nStegman\'s classic worker\'s jacket has been a staple of job sites for over seventy years. The exclusive Voyager edition blends red and black with gold highlights to provide a stylish edge, making the Cordimon tough, durable, and perfect to wear anytime, anywhere.'), +(12299,'Orison T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','b1b4921e-87bb-4716-afef-d60c9cbbfce4','','','Named after an old word for \"prayer,\" the city of Orison is unlike any other in the empire. Commemorate this special locale with the image of one of the city\'s iconic cloud vistas framed inside the name.'), +(12300,'WowBlast Desperado Toy Pistol Orange','Weapon','Small','75be95dc-3679-458a-b41f-728b8422fdc4','','','Manufacturer: Sakura Sun\nItem Type: Toy Pistol\nClass: Foam Dart\n\nMagazine Size: 10\nRate Of Fire: 450 rpm\nEffective Range: 35m\n\nMake friendly fire fun with the Sakura Sun WowBlast Desperado. Playfully fire foam darts at friends or fictitious foes with these ultra-colorful plastic toy pistols. Whether killing time at a landing zone or during a long-haul through the stars, the WowBlast toy line provides lighthearted excitement and entertainment for the entire family. The Desperado toy pistol is available in several vibrant colors, each featuring a unique sound effect!'), +(12301,'TMBL_Nova_Component_Cooler','Player','UNDEFINED','c12b0bf6-1edc-4ff2-8d4c-09098edc2893','','',NULL), +(12302,'MISC_Prospector_Thruster_Main','MainThruster','FixedThruster','b41884ec-1934-4a87-9f9b-8bb2c03d60a0','','',NULL), +(12303,'Novikov \"Ascension\" Helmet','Armor','Helmet','cdd246df-3680-438a-af7b-6133fba4ee37','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -225 / 75 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nIn order to confidently explore cold environments, Caldera built the Novikov exploration suit with an advanced sensor suite that intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. Also featuring a bespoke helmet that integrates with the cutting edge life support system, those venturing across unknown terrain can count on the Novikov to help them survive the journey. This special IAE 2953 edition is decorated with a copper and white pattern inspired by Gatac Manufacture\'s Syulen.'), +(12304,'Remote Turret','Turret','GunTurret','a7174c39-5d6e-4176-80f2-719e14dda858','','','Remote Turret'), +(12305,'fruit_tray_1_b','Misc','UNDEFINED','48581926-914c-4dab-abe8-1d94cff0838b','','',NULL), +(12306,'Internal Tank','QuantumFuelTank','QuantumFuel','69bd0212-7362-49a4-b476-54af2be9e8b7','','',NULL), +(12307,'PAB-1 Core Aqua','Armor','Torso','88894db8-945b-4027-a82c-66ab2beac4ac','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(12308,'AEGS_Idris_MPUV_DockingTube','DockingCollar','UNDEFINED','75e98cf4-2057-4a36-bd8a-fcd22588db96','','',NULL), +(12309,'Medical Supplies','Misc','UNDEFINED','d2678727-91e0-470f-b640-a12b4ad909c1','','',NULL), +(12310,'DRAK_Caterpillar_SCItem_Seat_Engineering','Seat','UNDEFINED','4be1d91f-7766-416e-b214-fa0e7b3d88b1','','',NULL), +(12311,'Quantainium (Raw)','Cargo','Cargo','f73f5312-7d24-402b-bb56-51bf4778525a','L','',NULL), +(12312,'Tractor Beam','UtilityTurret','UNDEFINED','6ab1e8c7-a2ae-41f9-b046-578841110b59','','','Tractor Beam'), +(12313,'Zeus XenoThreat Purge Livery','Paints','UNDEFINED','67b55d61-4b48-441f-9c17-4f5429466e09','','','Let Humanity know you won\'t bow down to alien invaders with this XenoThreat livery featuring a muted teal with bright red accents.'), +(12314,'IAE 2955 Hat Gray','Char_Clothing_Hat','UNDEFINED','33703021-ec76-4a91-bb45-c7c4f8da0998','','','The official hat of the 2955 Intergalactic Aerospace Expo features gray fabric with the logo across the front.'), +(12315,'AEGS_Vanguard_Sentinel_Thruster_Main_02','MainThruster','FixedThruster','f1c75690-7674-4287-82e6-5643e8538689','','',NULL), +(12316,'Mountaintop Jacket Neutral','Char_Clothing_Torso_1','UNDEFINED','7b5b3053-c65b-4e2f-82ca-94a1832b8547','','','Temp. Rating: -20 / 10 °C\nCarrying Capacity: 1K µSCU\n\nThese insulated, water-resistant jackets are perfect for any jobsite where temperature can be a factor. The Mountaintop from DMC features secure pockets and is made with a vinyl-weave exterior, guaranteeing that rough environments won\'t compromise your warmth.\n\nWomen\'s sizes currently out of stock.'), +(12317,'Venture Arms Aqua','Armor','Arms','8faa3232-2e11-4742-868d-1b1fbf3deb79','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(12318,'Ponos Boots Desert','Char_Clothing_Feet','UNDEFINED','98114206-c54f-4157-90c9-7e1781fdc10d','','','Quite simply, R6 Pro\'s Ponos boots were built for backbreaking work. Constructed out of Thermosulate technology, these waterproof and insulated workboots are rated for sub-arctic environments while the composite outsole ignores hazards to maintain traction when you need it most.'), +(12319,'ANVL_Arrow_Dashboard_Pilot','SeatDashboard','UNDEFINED','df365fd8-29df-4471-8dab-020cc544d3f8','','',NULL), +(12320,'Ventris Jumpsuit Crusader Edition','Char_Clothing_Torso_1','UNDEFINED','9db6446a-e4ad-40f6-8d75-c7da6678f668','','','Carrying Capacity: 1K µSCU\n\nThe Ventris is a sleek jumpsuit that mixes several rip and stain resistant polymer fabrics for a dynamic design. It also features a half-zip front and adjustable belt to ensure an ideal fit while the soft inner lining makes it an ideal choice for all day wear. The special Crusader Edition was made to be worn by employees of the company and features the sword and C logo on the front.'), +(12321,'Argus Helmet Black/Silver','Armor','Helmet','5aa32656-a7a6-4464-8036-7067deb87466','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s Argus helmet utilizes advanced multi-layered composite construction to provide incredible protection from weapon fire as well as environmental hazards. The tinted visor offers a wide field-of-view to improve situational awareness and unrestricted movement.'), +(12322,'Tail Cap','TurretBase','MannedTurret','28440bb3-e39e-4d28-a0dd-94ac1331447b','','',NULL), +(12323,'Piercings_pite_01','Char_Head_Piercings','UNDEFINED','a367c26d-67ea-432f-8f40-8fa189969b6d','','',NULL), +(12324,'HexaPolyMesh Coating','Cargo','Cargo','c9e26835-15e4-461f-a824-f376190e31eb','','',NULL), +(12325,'Tona Shoes Dark Green','Char_Clothing_Feet','UNDEFINED','eb1a00fd-7204-4da9-8a63-6104ad438532','','','Perfect for hiking or fieldwork, the Tona from R6 Pro is a low-top sneaker built out of breathable Cheofreme materials which not only provide extra protection against impacts, but keep your feet dry.'), +(12326,'Defiance Core Desert','Armor','Torso','dc893f37-783a-4c3f-8416-c748043fc5cd','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nIncorporating the same manufacturing know-how and expertise that the UEE Marines have come to rely on, Clark Defense Systems has designed their civilian-line of Defiance heavy armors to stand firm in the face of even the most adverse combat scenarios with its three-star rated protective plating and fully integrated mobility framework.'), +(12327,'RSI_Polaris_SeatAccess_TurretSeat_Left','SeatAccess','UNDEFINED','4dcf6db7-7bad-4a94-be48-677eec50b687','','',NULL), +(12328,'Perseus Alliance Aid Camo Livery','Paints','UNDEFINED','49ecc52e-d1b3-4cb6-8e81-a7c319b90af5','','','Showcase your dedication to helping Alliance Aid assist the people of Levski during their time of need with this grey camo livery.'), +(12329,'Cardona Jacket Iron','Char_Clothing_Torso_1','UNDEFINED','c78616f0-6bd7-48fc-ad17-dee9841635e2','','','Carrying Capacity: 1K µSCU\n\nDMC’s Cardona is a utility jacket designed for performance in cold weather environments. Featuring a high collar for better wind protection and numerous pockets to store any survival essentials.'), +(12330,'Morozov-CH Backpack Snowdrift','Armor','Backpack','9a5d5351-6336-4629-b068-850555c6d286','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nComfortably carry vital gear with the Morozov-CH backpack. This softshell bag is made with an advanced duraweave that\'s lightweight yet ready for battlefield action. It also features several easy to access pockets and a plethora of straps to keep supplies secure and tight to your back.'), +(12331,'Falston Jumpsuit \"ASD Technician\"','Char_Clothing_Torso_1','UNDEFINED','2549e4d5-f716-4bfa-80fa-dad0c84c366e','','','Carrying Capacity: 1K µSCU\n\nThe Falston jumpsuit has a high collar to guard against the elements, triple-reinforced stitching, and an extra soft interior lining because everyone deserves a bit of comfort. The ASD Technician version is white with green detailing.'), +(12332,'Silnex','Cargo','Cargo','20e2f453-7d34-4918-b65c-287dc9a91692','','',NULL), +(12333,'Avenger Splinter Livery','Paints','UNDEFINED','23a086bb-cb67-4fe4-914d-ac1a4e1e8cc7','','','Customize your Avenger with this fragmented green livery.'), +(12334,'Internal Tank','QuantumFuelTank','QuantumFuel','60b5d2ed-c20f-48c5-a5ac-a6af82baf3b6','','',NULL), +(12335,'Badami Helmet Graphite','Armor','Helmet','6cf5606f-6a40-4a9a-b9bc-8fc60bac0589','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Badami helmet from Caldera provides premium head protection with a tough polycarbonate shell and an anti-microbial liner. Allowing you to boldly brave untamed locales and explore the dark corners of space.'), +(12336,'Carryable_1H_CY_drug_painkillers_2_b','Misc','UNDEFINED','e0990bea-53e8-4bfe-80bf-25f99ede9e4c','','',NULL), +(12337,'RSI_Bengal_Thruster_Main','MainThruster','JointThruster','a750d049-082e-4ad7-b6df-cd2ad21a6d8f','','',NULL), +(12338,'game_checkers_1_a','Misc','UNDEFINED','90f03da4-11ce-4425-9ed7-de18d1a2cf24','','',NULL), +(12339,'Seat','SeatAccess','UNDEFINED','51430e72-539c-4fd4-9fa3-436765334974','','',NULL), +(12340,'Ravager-212 \"Red Alert\" Twin Shotgun','Weapon','Medium','ab479579-efda-45e3-b2f5-a08650708cf7','','','Manufacturer: Kastak Arms\nItem Type: Shotgun\nClass: Ballistic\n\nMagazine Size: 16\nRate Of Fire: 105 rpm\nEffective Range: 15 m\n\nAttachments: Optics (S1), Barrel (N/A), Underbarrel (S2)\n\nThe Kastak Arms Ravager-212 Twin shotgun earns its name from its unique dual-barrels that allow for multiple ammo types to be used in conjunction with each other for maximum tactical possibilities. The \"Red Alert\" edition mixes grey and a vibrant red for a bold and dynamic design.'), +(12341,'Food_fruit_alien_01_a','Food','Plant','48add695-4de8-426c-978f-2c4fa04e5b9c','','',NULL), +(12342,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','378e4771-e01e-4b85-9a43-9b7b487252e7','','','Aegis Gladius - Decoy Launcher'), +(12343,'Citadel-SE Core Maroon','Armor','Torso','1783a4d9-666f-4b37-a329-b6cba798a703','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(12344,'Seat','Usable','UNDEFINED','1a003805-bf1f-4e73-8519-058d987e0a00','','',NULL), +(12345,'INTK_ORIG_315p','FuelIntake','Fuel','62749a19-3311-4e05-9a12-c2a6cadfe7c6','','',NULL), +(12346,'RSI_Aurora_Mk2_Thruster_Retro_Left','ManneuverThruster','Retro','c29550de-3299-4437-892c-0569d8c93350','','',NULL), +(12347,'99-GR/BL Pants','Char_Clothing_Legs','UNDEFINED','a1d627a1-0f84-4fe7-a04c-365080f7dc76','','','Carrying Capacity: 1K µSCU\n\nSpice up your wardrobe with a pair of 99 pants from Escar Limited. The juxtaposition of colors, each made from a different fabric, form a striking design for when you want to make a statement.\n\nWomen\'s sizes currently out of stock.'), +(12348,'DynaFlex','Cargo','Cargo','41f5018b-8cde-48bb-9c8b-3fe6888158a6','','',NULL), +(12349,'AAT-34 Turret','Turret','MannedTurret','e2ff5d64-0d85-4008-812e-9663103a8157','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(12350,'MISC_Freelancer_CargoGrid_Rear_DUR','CargoGrid','UNDEFINED','dd224f26-b227-42a8-b435-f0cadc0886ae','','',NULL), +(12351,'Railing_Straight_4m_Lowtech_Open_Ext','Usable','UNDEFINED','805f40db-5ac2-492d-a642-7baeab78ff45','','',NULL), +(12352,'Seat','Usable','UNDEFINED','cc8b6459-74bf-4802-bbc1-f3df9640355a','','',NULL), +(12353,'ORC-mkV Legs Crusader Edition','Armor','Legs','4cf3f9b9-4de9-41e2-bf33-3db65123cb7f','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement. The Crusader Edition was made specifically for the company\'s security services.'), +(12354,'FR-66','Shield','UNDEFINED','0baaf20a-460e-4668-84f2-d09f9d31b492','','','Item Type: Shield Generator\nManufacturer: Gorgon Defender Industries\nSize: 1\nGrade: A\nClass: Military\n\nThe FR-66 is one of the most versatile small shield generator currently on the market. Get military strength protection and performance from Gorgon Defender Industries to ensure your ship can survive any onslaught.'), +(12355,'Door Control','Usable','UNDEFINED','c6caadd6-0638-4731-852d-cc807214eb9f','','',NULL), +(12356,'ESPR_Prowler_Thruster_Mav_02','ManneuverThruster','UNDEFINED','ce7e851e-5436-4488-90d2-cace25c0eb53','','',NULL), +(12357,'MacFlex Arms Dark Red','Armor','Arms','2d765889-7b81-462f-90b8-85dd627795a1','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(12358,'M5A Cannon Defense Division','Weapon','Gun','c3cb8de9-dbd1-43c5-bc65-4dadc5f3ecee','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 3\n\nThe M5A is Behring\'s entry level laser autocannon. The autocannon configuration offers modest damage per projectile and a fairly low rate of fire. As the most basic offering in Behring\'s weapons lineup, it features low power consumption, but poor power efficiency. It makes up ground for its shortcomings by being cheap, a feature many pilots are looking for when outfitting their ships on a budget.\n\nThe Defense Division edition features a gray, urban camo pattern and was given to those who assisted Alliance Aid\'s Defense Division during Levski\'s time of need.'), +(12359,'Manned Turret','TurretBase','MannedTurret','9c20804f-099a-4443-af23-ee1b1f7f524f','','',NULL), +(12360,'Syulen Luminary Livery','Paints','UNDEFINED','df034c8f-f65f-48b6-9870-1fe4b4f9f12a','','','The Luminary livery gives the Syulen a glossy green base paint with brown highlights for a dazzlingly beautiful and complex design.'), +(12361,'Neon','Cargo','Cargo','6bce5cb4-16b6-43ed-9d95-cb523f4c20f6','','',NULL), +(12362,'Cassidy Shirt Daylight','Char_Clothing_Torso_0','UNDEFINED','a6adc5eb-0e87-4b35-a917-cc8c75f9e7eb','','','Habidash\'s Cassidy short-sleeved henley t-shirt features a lightweight, breathable fabric blend paired with a neck covering and separated arm sleeves for a stylish look that remains practical in dustier climates.'), +(12363,'SureGrip S1 Tractor Beam','TractorBeam','UNDEFINED','34f8a503-41bc-4245-baea-e824c8a39411','','','Manufacturer: Greycat Industrial\nItem Type: Tractor Beam\nMax Angle: 60°\nMax Range: 150 m\nFull Strength Distance: 75 m\n\nBacked by their certified Soft-Touch® guarantee, Greycat’s SureGrip tractor beam is a mainstay of its product catalogue thanks to its dependable range and control.'), +(12364,'Seat','SeatAccess','UNDEFINED','dff94803-b9c2-4510-bae7-ae609cbcdd68','','',NULL), +(12365,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','738a5795-b87b-41c8-9d6e-d8d67a2afc7d','','','Aegis Gladius - Decoy Launcher'), +(12366,'PC2 Dual S3 Mount','Turret','NoseMounted','9352b228-86a5-43c7-9b8d-a04cd7f0470b','','','PC2 Dual S3 Mount'), +(12367,'Tripledown Pistol','Weapon','Small','9f047e7d-1324-473c-b944-03e87976f25a','','','Manufacturer: Unknown\nItem Type: Pistol\nClass: Ballistic\n \nMagazine Size: 12\nRate Of Fire: 185 rpm\nEffective Range: 10 m\n \nAttachments: Optics (S1), Barrel (NA), Underbarrel (S1)\n\nFiring three shotgun shells with each pull of the trigger thanks to it\'s triple-barrel construction, the bolt-action Tripledown pistol is ready to blast its way through anything from the smallest disagreements to massive dustups.'), +(12368,'Threshold Skullsnap Pants','Char_Clothing_Legs','UNDEFINED','8a656319-a8f6-4b38-8624-d02752aa66f4','','','Carrying Capacity: 0.5K µSCU\n\nThe company\'s classic pant, the Threshold line features a glossy faux-organic exterior, an attached belt, and reinforced silver knee and shin pads. Additionally, the pants are decorated with non-constructive stitching and include two hip pockets. The Skullsnap edition features the Vaporwear logo over an orange and blue stripe on the front left leg.'), +(12369,'Door Control','ControlPanel','DoorPart','d09ae2d4-75e8-4447-9a0a-148eb1c90306','','',NULL), +(12370,'m_human_mannequin_slaver_undersuit_01','ShopDisplay','UNDEFINED','3ca8498c-0079-4833-83a9-a0afc3767c3d','','',NULL), +(12371,'Giotto Jacket','Char_Clothing_Torso_1','UNDEFINED','d5cf1bd9-d347-4954-95f1-290151197672','','','Carrying Capacity: 1K µSCU\n\nFiore elevates the typical suit jacket with the Giotto. Subtle and stylish flourishes include light lines running down the left lapel and a strip of accent fabric along the arm seams that connect across the back of the jacket. The end result is an elegant and inspired addition to any wardrobe.'), +(12372,'Cheddar Ham Burrito','Food','Junk','2034cae6-00a2-48c8-8c4a-b7cbb1ecd1e1','','','NDR: 38\nEffects: Dehydrating\n\nTorpedo Burrito crams a full payload of flavor into their Cheddar Ham burrito, featuring chunks of smoked ham and creamy sharp cheddar cheese wrapped in their signature size-4 multi-grain tortilla.'), +(12373,'RSI_Perseus_Seat_Access_CoPilot','SeatAccess','UNDEFINED','1665f39b-f9e7-4a9b-979b-ed034abe4724','','',NULL), +(12374,'mobyGlass Personal Computers','Cargo','Cargo','c7098c35-d01c-411a-a278-f8fc7dd31110','','',NULL), +(12375,'Carryable_1H_CY_drug_inhaler_1_a_box_PlayerCannotUse','Misc','UNDEFINED','e9cd022f-47d4-47c1-9f54-e8319a1b7561','','',NULL), +(12376,'TrueDef-Pro Legs White/Silver/Grey','Armor','Legs','1a0eb92b-dea2-4c07-b76e-76f772fc2f36','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.\"'), +(12377,'DRAK_Cutlass_Blue_Thruster_Maneuver_Vertical_Positive','ManneuverThruster','JointThruster','4efa736b-9f2f-458d-acfa-d9def3daf36c','','',NULL), +(12378,'Seat','SeatAccess','UNDEFINED','f3d16bad-cda3-4ee4-a1db-f47a32c1550b','','',NULL), +(12379,'Fresh Food','Cargo','Cargo','d5f599b5-dfca-4121-a1c9-476948b8310b','','',NULL), +(12380,'SureGrip TH2 Tractor Beam','Weapon','Gun','fc1bbd77-fdf8-4c13-bd37-8c28061cbe6b','','','Manufacturer: Greycat Industrial\nItem Type: Tractor Beam\n\nGreycat’s latest addition to their field-tested tractor beam line is a dependable addition to their catalog. Aside from a more efficient pull/draw ratio, the latest model does little to advance from the previous models. The SureGrip has settings to target and extract everything from asteroid fragments to drifting crewmen, backed by Greycat’s certified Soft-Touch® guarantee.'), +(12381,'Hair Care Product','Misc','UNDEFINED','00ba6f48-5dab-4408-bb75-69c612891eca','','',NULL), +(12382,'CRUS_Star_Runner_Thruster_Main_Extra','MainThruster','UNDEFINED','540734ce-4165-4335-b6c9-cf85b8077755','','',NULL), +(12383,'Weapon_Rack_1_VOLT_Sniper_Uncommon_002','Usable','UNDEFINED','c7e451f1-cc41-4f7d-99ff-9df9bdbc0c17','','',NULL), +(12384,'Kinolo Shoes','Char_Clothing_Feet','UNDEFINED','c2665234-c23e-4c30-976c-af29db9a4dbd','','','The Kinolo shoes deliver a subtle yet striking look. Made from grey synthetic leather punctuated with gold highlights, these slip-on shoes feature a heel cushion for extra support and a special non-slip sole.'), +(12385,'PAB-1 Arms Crusader Edition','Armor','Arms','3fed2653-885b-4c77-ac54-84544e05de55','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile. The Crusader Edition was made specifically for the company\'s security services.'), +(12386,'Door Control','ControlPanel','DoorPart','1c738471-2351-4029-bd41-e9ccbc201737','','',NULL), +(12387,'Access','SeatAccess','UNDEFINED','61b576a6-18c6-475f-8d1d-2703d91b390c','','',NULL), +(12388,'TRGT. STATUS','Seat','UNDEFINED','e2e7d02a-9148-4004-a5b1-91eacc050d6e','','',NULL), +(12389,'Dash Apron Ellroy\'s','Char_Clothing_Torso_1','UNDEFINED','27f97ec5-b7d8-4360-997b-dcae71e31042','','','Carrying Capacity: 1K µSCU\n\nStegman\'s Dash apron is made from a thick, stain-resistant polyfiber that not only protects the wearer but looks as good at the end of the shift as it does at the beginning. The practical design is embellished with a bold waistline and pocket detailing alongside a fun accent color panel on the lower skirt.'), +(12390,'Uncut SLAM','Cargo','Cargo','5125b658-62ec-422b-a161-fbf544b9fbdd','','',NULL), +(12391,'Flight Blade','FlightController','UNDEFINED','2364ee89-d2d3-4e6b-8b93-5b21129da9ea','','',NULL), +(12392,'DRAK_Cutter_Winglets_Addon_Scout_Right','Misc','UNDEFINED','a7cfad43-3f7e-4f79-a429-73301e44b0c0','','',NULL), +(12393,'ORIG_100i_Seat_Bed','Seat','UNDEFINED','c3ee2e3f-3dcf-4fdd-bf33-1a4fe6201eae','','',NULL), +(12394,'Cutlass Destiny Livery','Paints','UNDEFINED','780e59d1-4dee-429f-aa71-64480cfcc204','','','Attract adventure and fortune by boldly venturing forth with the Destiny livery for the Cutlass. The livery blends a striking red base color with gold highlights.'), +(12395,'Ball','Char_Head_Piercings','UNDEFINED','b0f7961b-b607-4010-abb9-1f2b3bcadc30','','',NULL), +(12396,'Stirling Exploration Helmet Chroma Edition','Armor','Helmet','c90aed91-bb4a-4c54-901a-224775e73499','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nDesigned to withstand inhospitable environments, the Stirling Exploration Suit provides a base level of protection from environmental hazards including radiation. Combining Caldera\'s advanced insulation fabrics with sophisticated polymers, the Stirling is able to safeguard the wearer whilst minimizing disruption to movement. Additionally, a self-cleaning system automatically activates after radiation exposure to expunge dangerous excess down to nominal levels. This helmet is only compatible with the Stirling Exploration Suit. The Chroma Edition features a vibrant metallic red with against grey with black highlights.'), +(12397,'Sarrab Glasses','Char_Accessory_Eyes','UNDEFINED','70262488-00c4-4607-b735-7528736c799a','','','The Sarrab are stylish half-rim glasses that are so light you\'ll forget you\'re wearing them. Ideal for everyday use, these glasses feature clear polycarbonate temple arms that complement the lens without demanding too much attention.'), +(12398,'Quantainium (Raw)','Cargo','Cargo','677c565c-27d8-4c10-a8e5-20992747acbe','','',NULL), +(12399,'Prowler Wanderer Livery','Paints','UNDEFINED','ba1985ee-060c-4016-bed9-d68e54860bde','','','The Wanderer livery features crisscrossing purple and grey lines over a platinum foundation. Inspired by the sacred Xi\'an gardens of R.aip?uang, famous for its trails that wander in surprising ways and encourage a focus on the journey instead of the destination.'), +(12400,'SHIELDS','ShieldController','UNDEFINED','ac0949c8-38a5-40b8-85e1-7d29e42c3713','','',NULL), +(12401,'Seat','SeatAccess','UNDEFINED','69199d60-373c-4d48-a690-2b9336c6ad40','','',NULL), +(12402,'Seat','Usable','UNDEFINED','8d038637-e040-47fd-ba0e-549c855fef6c','','',NULL), +(12403,'Tuvois Jacket Tan','Char_Clothing_Torso_1','UNDEFINED','ab153446-92cf-461d-9a0f-514961a6bdf6','','','Carrying Capacity: 1K µSCU\n\nCreated in collaboration with legendary designer Avon, OpalSky is proud to unveil the Tuvois, an open vest featuring stark, bold styling that\'s destined to make an impression. \n\nWomen\'s sizes currently out of stock.'), +(12404,'ParaMed \"AA Support\" Medical Device','Weapon','Small','68a8b5ff-8285-4a68-89ba-ab7132f36b16','','','Manufacturer: CureLife\nItem Type: Medical Device\n\nThe ParaMed from CureLife is a professional-grade emergency medical device designed to stabilize patients suffering from possible life-threatening injuries. Offering extremely accurate diagnostics and dosing, the ParaMed can treat more patients and offer longer relief with less risk of overdose.\n\nThe AA Support edition features a sharp red coloring and was intended for those who assisted Alliance Aid during Levski\'s time of need. Additionally, this special edition has an increased healing rate to allow injured individuals to return to their vital work even faster.'), +(12405,'Flight Blade','FlightController','UNDEFINED','4c1ba38f-8fa2-4562-be52-9faccdad8c6a','','',NULL), +(12406,'ARGO_CSV_Dashboard_Driver','SeatDashboard','UNDEFINED','ea0e03d7-1865-4131-862e-21e018221fdf','','',NULL), +(12407,'Ponos Boots Red','Char_Clothing_Feet','UNDEFINED','b0e2153f-190c-4ae8-981e-2de0096cd6d4','','','Quite simply, R6 Pro\'s Ponos boots were built for backbreaking work. Constructed out of Thermosulate technology, these waterproof and insulated workboots are rated for sub-arctic environments while the composite outsole ignores hazards to maintain traction when you need it most.'), +(12408,'Pembroke Helmet Starchaser Edition','Armor','Helmet','b8b1992c-11ff-44b4-a381-11ca5a667c89','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nDesigned to extend the limits of Human endurance, the Pembroke Starchaser was built to withstand the extreme heat of inhospitable high temperature environments. Based off of Caldera\'s best-in-class exploration armor platform, an advanced sensor suite intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. Also featuring a bespoke helmet that integrates with the cutting edge life support system, the special Starchaser edition of the Pembroke ensures those seeking to cross bold new horizons do so in style.'), +(12409,'heavyArmor_legs_skelExt_test','Armor','Legs','26772b0e-fb61-40d8-b68c-49c2ae040c7d','','',NULL), +(12410,'expo_display_shirts_and_hats_aegis','ShopDisplay','Default','fb2809ec-ec82-47d6-98da-ba6f5ac819d9','','',NULL), +(12411,'ControlPanel_LightSwitch_GLSN_Shiv','ControlPanel','DoorPart','ad95c862-15b5-4314-b64c-eb0535e9281a','','',NULL), +(12412,'ESPR_BallisticCannon_Barrel_S6','WeaponAttachment','Barrel','534117ad-1901-4cf1-9614-db00d795319a','','',NULL), +(12413,'G-2 Helmet Black','Armor','Helmet','5d4c2654-3e4b-4a13-8d1b-cd3efcd32c0e','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. Visor is AR crosshair compatible.'), +(12414,'CBH-3 Helmet Purple','Armor','Helmet','7cc35dc1-d184-4d5b-a397-8d62fc351890','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. Visor is AR crosshair compatible.'), +(12415,'Quartz \"Black Op\" Energy SMG','Weapon','Medium','b84b275c-2413-49fa-8664-b40b188e7369','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: SMG\nClass: Energy (Electron)\n\nBattery Size: 45\nRate of Fire: Beam\nEffective Range: 15-20 m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nManufacturer VOLT\'s Quartz SMG utilizes exciting new weapon technology that fires a short range beam that fractures into multiple beams the longer it fires, making it an extremely effective close quarter weapon.\n\nThe green glow of the Quartz\'s barrel pops against the all black look of the \"Black Op\" edition.'), +(12416,'TRGT. STATUS','Seat','UNDEFINED','fc273b65-d10b-4c2b-8318-218201e89c0e','','',NULL), +(12417,'ANVL_Asgard_Thruster_Mav_Joint','ManneuverThruster','FlexThruster','c3fb7601-2194-423d-919f-bfccfc812520','','',NULL), +(12418,'RSI Default JetPack','Suit','ThrusterPack','562342f0-6f4f-4752-a598-1b606a8af8bf','','','<-=MISSING=->'), +(12419,'stand_shop_small_c_Shield','ShopDisplay','UNDEFINED','d8456251-44d7-4a41-8780-146007a8b191','','',NULL), +(12420,'Bottle','Bottle','Default','fd2e19ec-67a1-44e8-ab2f-a771ecd53c8b','','','Bottle'), +(12421,'Argon','Cargo','Cargo','1a8a0d30-d3cb-40f8-a664-85141be2273a','','',NULL), +(12422,'Carryable_1H_CY_Utensil_Spoon','Misc','UNDEFINED','d8e62bcc-bd9b-491b-950f-17bba594077c','','',NULL), +(12423,'Cryo-Star EX','Cooler','UNDEFINED','b3e803cc-f907-494d-8e35-51703eae4b6f','','','Item Type: Cooler\nManufacturer: J-Span\nSize: 2\nGrade: B\nClass: Civilian\n\nWith its EX line, J-Span has brought the same reliable heat absorption of their popular Cryo-Star cooler to pilots looking to outfit larger ships.'), +(12424,'Access','SeatAccess','UNDEFINED','eb2c8c02-4765-4e96-bf75-83e3b79c37a5','','',NULL), +(12425,'ARGO_MPUV_1T_Thruster_Aux_Fixed_02','ManneuverThruster','FixedThruster','a51309af-6e3a-46a4-aaff-4bd2f3c38ac9','','',NULL), +(12426,'Giotto Jacket Crusader Edition Dark Blue','Char_Clothing_Torso_1','UNDEFINED','2e59147f-00a1-47ff-beb0-ebb1de5fc8f0','','','Carrying Capacity: 1K µSCU\n\nFiore elevates the typical suit jacket with the Giotto. Subtle and stylish flourishes include light lines running down the left lapel and a strip of accent fabric along the arm seams that connect across the back of the jacket. The end result is an elegant and inspired addition to any wardrobe.\n\nThe Crusader Edition was made specifically for employees of Crusader Industries.'), +(12427,'Shared_Piercing','Char_Head_Piercings','UNDEFINED','c45be9d2-ed6c-41a1-8578-72d0811ed9dc','','',NULL), +(12428,'DoorProximitySensorItem_3x1x2','Sensor','DoorPart','6324115c-b0ce-4b66-bfcd-9245fc057656','','',NULL), +(12429,'Door Control','Door','UNDEFINED','56360d30-f4ff-4344-9a58-97fe9ea5caaf','','',NULL), +(12430,'Observer-Lite','Radar','MidRangeRadar','28c7f719-37c3-432e-ab94-59dab4c3a0f7','','','Item Type: Radar\nManufacturer: Chimera Communications\nSize: 1\nGrade: D\nClass: Industrial\n\nThe Observer-Lite is a no-frills radar ready for those long hauls. Trust the brand that focuses on how good a radar works and not just how it looks.'), +(12431,'GATS_BallisticGatling_Mounted_Barrel_S1','WeaponAttachment','Barrel','3d478cf8-b28f-4c19-99fc-3f270108ce01','','',NULL), +(12432,'Seat','SeatAccess','UNDEFINED','189e8f16-6def-4558-9e55-27c0504e5e6b','','',NULL), +(12433,'FBL-8a Legs (Modified)','Armor','Legs','b7ee874f-a7cf-4250-a190-64d59c771a3f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nBased on CDS\' FBL-8a combat armor, this set has been modified from its original form. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible.'), +(12434,'Medivac Rescue Light','Weapon','Grenade','4fcb60a4-f56d-4c2d-88c3-3a43b16a3d55','','','Manufacturer: RSI\n\nUtilizing multiple vibrant lights housed in a compact durable frame, the Rescue Light is capable at being seen from all directions in all kinds of hazardous atmospheric conditions, letting rescue teams know exactly where you are.'), +(12435,'MSD-322 Missile Rack','GroundVehicleMissileLauncher','GroundVehicleMissileRack','fcc8cce4-bc63-4764-973b-e691853ac72d','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 3\nMissiles: 2xS2\n\nBehring’s MSD-322 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 3 hardpoint for the reliable and effective launch of two S2 missiles.'), +(12436,'Cliffback T-Shirt Twilight','Char_Clothing_Torso_0','UNDEFINED','eb104969-1b37-4fed-8fab-c86581d8c506','','','Alejo Brothers\' classic loop tee with a spatter pattern.'), +(12437,'ORIG_135c_Thruster_Mav_Fixed_Bottom','ManneuverThruster','FixedThruster','bb5ddc08-3e73-45b4-b497-77423b440f00','','',NULL), +(12438,'MISC_Fury_LX_Thruster_FixedMav_Bottom','ManneuverThruster','FixedThruster','e69dc024-36d6-4951-b24d-88cf85290461','','',NULL), +(12439,'Sion \"Scorched\" Compensator2','WeaponAttachment','Barrel','10831736-4bdf-4465-b517-94281261d317','','','Manufacturer: ArmaMod\nType: Ballistic Compensator\nAttachment Point: Barrel\nSize: 2\n\nSpread: -10%\nProjectile Speed: -12.5%\nAim Recoil: -20%\nVisual Recoil: -40%\nDamage: -10%\n\nMaintain accuracy by countering muzzle rise with the Sion Compensator2. ArmaMod\'s expertly designed S2 barrel attachment efficiently expels gasses to keep every shot on target. The Scorched edition features a unique flame patina.'), +(12440,'Vanduul S3 Quad Missile Rack','MissileLauncher','MissileRack','41562bac-5811-46d6-8cb9-9d40f80e8ebe','','','Vanduul S3 Quad Missile Rack'), +(12441,'Ranta Dung','Cargo','Cargo','63c255ea-d453-4430-a01f-47e8a8b8380b','','',NULL), +(12442,'Stalker V-G Missile','Missile','GroundVehicleMissile','1928b138-e521-4cec-8791-183f6c6c93ec','','','Manufacturer: Talon \nTracking Signal: Cross Section \nSize: 5 \n\nWith dedicated cross section tracking, the Talon Stalker has endured over the years as a precision strike torpedo with maximum stopping power. Note: This missile may only be launched by ground vehicles.'), +(12443,'Food_bowl_rice_01_b','Food','Consumable','81585355-6c26-47cc-ab07-0bdf55bc37f7','','',NULL), +(12444,'ORIG_600i_Dashboard_Expl_Module_Left','SeatDashboard','UNDEFINED','bc34b4bd-e05f-4a3a-b4bc-9fea670d2be6','','',NULL), +(12445,'rack_gun_size_3_01x00625x01125_1_a','Misc','UNDEFINED','f9a5454b-420c-47a6-9c23-caabf149fc47','','',NULL), +(12446,'video_wall_display_2_08x075x03_a','Display','UNDEFINED','91913c26-2224-4fa9-981d-faddd2cd9b43','','',NULL), +(12447,'Maintenance_Workzone_Below_Inspect','Usable','UNDEFINED','19a23f99-a14e-43ad-8312-129cf59f4ea4','','',NULL), +(12448,'Navoi Boot and Pants Striker','Char_Clothing_Legs','UNDEFINED','6bdbfc8e-14b6-4ce2-aa7c-7b84e674be1f','','','Carrying Capacity: 0.4K µSCU\n\nBe ready to take on whatever the day brings when wearing the Navoi. This unique piece integrates the pants perfectly into knee high boots. Made from a combination of synthetic materials to be tough yet comfortable, the Navoi also comes with shin pads and pouches strapped onto each leg.\n\nThe Striker edition is a green camo with rust colored boots.'), +(12449,'Seat','Usable','UNDEFINED','1b28bb8c-62bd-4ea6-9600-597675fc0c64','','',NULL), +(12450,'ControlPanel_Screen_LiftControl_4x3','ControlPanel','DoorPart','17debeeb-4366-4592-9ab0-e78889096ab5','','',NULL), +(12451,'TRGT. STATUS','Seat','UNDEFINED','448c25a7-0c55-45fb-ae3f-9a583465c6b3','','',NULL), +(12452,'TurboDrive','PowerPlant','Power','5df9fe17-bda5-433d-a2cd-bff6b29eeac9','','','Item Type: Power Plant\nManufacturer: Amon & Reese Co.\nSize: 2\nGrade: C\nClass: Military\n\nThe TurboDrive is a common military-grade power plant from A&R that slightly favors performance over durability and stealth.'), +(12453,'Geist Armor Helmet Rogue','Armor','Helmet','dad9dec1-4e24-45c2-b8c9-fc286a8d688a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(12454,'SCItemDisplayScreen_ScreenSize_W64_H36_H74_Command','Display','Default','25dd06e6-638b-423b-80fb-e49bb84b13de','','',NULL), +(12455,'MegaFlux','PowerPlant','Power','5fac1c59-a35b-468b-805c-cc273faa02bb','','','Item Type: Power Plant\nManufacturer: Amon & Reese Co.\nSize: 3\nGrade: B\nClass: Military\n\nRepeated requests from military veterans to make the MegaFlux commercially available convinced A&R Co. to release this large power plant to the public.'), +(12456,'Access','SeatAccess','UNDEFINED','e713f400-a240-4a89-8a0d-a6483a117c6c','','',NULL), +(12457,'BEHR_BallisticRepeater_Barrel_S3','WeaponAttachment','Barrel','86ca9f40-5bcf-4f17-8834-2760ef15dd56','','',NULL), +(12458,'Carryable_2H_FL_Safe_Locked','Misc','UNDEFINED','9b3035fc-a852-44dd-9d6a-67b104ac83ca','','',NULL), +(12459,'Internal Tank','QuantumFuelTank','QuantumFuel','aa9db7c6-394d-4f83-bccf-e5ed8b4fc49c','','',NULL), +(12460,'Personal Storage','Cargo','UNDEFINED','d89546ff-da34-41ca-a818-9ec78837d595','','',NULL), +(12461,'DRAK_Cutlass_Red_CargoGrid_Left','CargoGrid','UNDEFINED','9e77a5d6-cbba-498c-af33-126b5cc1d706','','',NULL), +(12462,'IAE 2954 T-Shirt Purple','Char_Clothing_Torso_0','UNDEFINED','437d5974-713c-4384-bafd-8b2149f727ea','','','The official shirt of the 2954 Intergalactic Aerospace Expo. This soft and supremely comfortable cotton t-shirt is a vibrant purple with the IAE logo on the front, \"The Next Frontier\" tagline across the back, and the year on the right sleeve.'), +(12463,'Altruciatoxin','Cargo','Cargo','bb2adc61-947d-49cb-93b8-97105f8603b5','','',NULL), +(12464,'ANVL_Door_Decal_Carrack_Medical','Decal','DoorPart','86715c13-989c-4931-a836-4584491c10cc','','',NULL), +(12465,'Door Control','Door','UNDEFINED','fed0023a-3ba9-4129-965a-d8d2a9f6b546','','',NULL), +(12466,'Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','8bc0055e-e1bd-4c25-92a1-3446d9406ed8','','','Joker Defcon Flares Ammo'), +(12467,'rack_wood_2_highend_b_rod_shoe_12Ports','ShopDisplay','Default','f508ece6-78ad-444f-832e-45945fe897e8','','',NULL), +(12468,'Radar_Display_Gladius','Display','UNDEFINED','6671ef0a-b3dc-4196-b083-85cb56927dd8','','',NULL), +(12469,'DRAK_Cutlass_Red_Thruster_Maneuver_Lateral','ManneuverThruster','JointThruster','a56a8649-ac8b-4cf9-b14d-8bc7b1f0f474','','',NULL), +(12470,'Lindinium (Ore)','Cargo','Cargo','d17453e9-61e0-4e5b-9356-9ef1792f32c0','','',NULL), +(12471,'K7 Pants Tan','Char_Clothing_Legs','UNDEFINED','dd8fc7fd-74d8-4492-9055-66bfcf3beb5b','','','Carrying Capacity: 3K µSCU\n\nDMC\'s K7 are an all-purpose cargo pants. Four easy access pockets provide extra storage while the triple-stitched polymer weave fabric is designed to withstand all kinds of weather conditions.'), +(12472,'Door Control','DockingAnimator','UNDEFINED','614b41cb-1231-4bdd-8340-5ae86b576df9','','',NULL), +(12473,'Gasping Weevil Eggs','Cargo','Cargo','ac7ee4dc-ea40-48a8-9f11-8b11c0af4565','','',NULL), +(12474,'Door Control','Door','UNDEFINED','899bf015-ec3f-476a-ab2b-3d94ade31f7d','','',NULL), +(12475,'Stark Compensator1','WeaponAttachment','Barrel','986d275f-f847-4b0a-86de-68ad47820ff8','','','Manufacturer: ArmaMod\nType: Compensator\nAttachment Point: Barrel\nSize: 1\n\nRecoil Time: +10%\nFire Rate: -20%\nDamage: +17.5%\n\nRedirecting gases from the barrel to increase the force of bullet impact, this Stark Compensator1 slows the rate of fire but significantly increases damage output.'), +(12476,'game_chess_1_bishop_a','Misc','UNDEFINED','8c127ff0-f924-42c4-89b5-f8cdba53e30e','','',NULL), +(12477,'400i Fortuna Livery','Paints','UNDEFINED','bfdb7f10-0969-4235-8130-25a2a77540b4','','','Make luck your co-pilot. Boldly set your sights on the stars and adventure forth in style with the Fortuna livery. This Stella Fortuna themed paint scheme is primarily green with grey accents.'), +(12478,'Radar_Display_ORIG_X1','Display','UNDEFINED','2dea8fbd-ce70-49c0-8671-a6ddcbe74fbe','','',NULL), +(12479,'Seat','Usable','UNDEFINED','f5f4dfad-2feb-4b71-97e4-cb6d0311b8c0','','',NULL), +(12480,'Seat','Usable','UNDEFINED','49c52043-d87e-4d7a-9a7c-3cdb127e751c','','',NULL), +(12481,'Morozov-SH-I Helmet Pyrotechnic Terrene','Armor','Helmet','6841796c-86bc-42ac-b1d6-349d39a65007','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing the same fortified armor plating, special anti-rip protective padding and ample storage, as the Morozov SH, the SH-I industrial variant was designed by RRS to protect workers employed in hostile zones while ensuring they had the full range of motion required to perform their duties. The Pyrotechnic Amalgamated Edition was made specifically for the company\'s mining efforts in Pyro during the 26th century. Visor is AR crosshair compatible.'), +(12482,'TrueDef-Pro Arms Yellow/Black','Armor','Arms','4d8cd56e-a5dd-46dc-baac-44a081b81a21','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(12483,'KRIG_P72_Archimedes_WingTip_Left','AttachedPart','UNDEFINED','280421ce-bd97-4592-a98a-fcc1a4d34f14','','',NULL), +(12484,'Gladius PHB Flight Blade','FlightController','UNDEFINED','b9b7b8f4-cb08-438f-82e5-56e39f4ec1f6','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Aegis Gladius with the PHB Flight Blade from Broad & Rabiee. By re-allocating forward thrust resources, you can expect your ship deliver increased precision handling during tight maneuvers.'), +(12485,'Flight Blade','FlightController','UNDEFINED','6897d4f9-86f2-4789-841a-155ba2884df6','','',NULL), +(12486,'Seat','SeatAccess','UNDEFINED','aa9c22a5-a09f-4175-b054-05409c47efd2','','',NULL), +(12487,'Gen Liberty Ale (Bottle)','Drink','Bottle','9dcd4290-3acf-4588-bb0e-e78b0d5ee394','','','HEI: 23\nEffects: Cognitive Impairment, Dehydrating\n\nLiberty Lake beer has been brewed by families on Terra for generations to provide a crisp, clean ale perfect to partake when you arrive at those little moments made to be spent enjoying life. Gen Liberty is a tart lactic ale perfect for warm nights.'), +(12488,'Laranite','Cargo','Small','f7038211-9a4f-4741-a922-3917bd71773f','','','A somewhat radioactive, crystalline gemstone. Black with streaks of dark red, it can only be used as jewelry if shielded.'), +(12489,'Surveyor','Radar','MidRangeRadar','3260e018-64ca-42e9-b85a-8b80d24d5375','','','Item Type: Radar\nManufacturer: Chimera Communications\nSize: 2\nGrade: C\nClass: Industrial\n\nThe Surveyor radar from Chimera Communications does away with all the unnecessary extras other manufacturers hide behind to focus on what matters: signature and emission detection that works the way you need it to.'), +(12490,'ADP Legs Sienna','Armor','Legs','4636c4de-6f00-4197-a0d8-0fab36761e94','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(12491,'Carryable_1H_SQ_DataPad_Fluff_StormBreaker_ResearchFacility_Relocation','Misc','UNDEFINED','4c9b4d41-f970-1722-d177-6e074d012ea7','','',NULL), +(12492,'Door','Door','UNDEFINED','fa1c04c0-bdfd-400f-9ed8-680d9dc13a49','','',NULL), +(12493,'MISC_Razor_LX_Thruster_Vertical_Bottom','ManneuverThruster','FixedThruster','0de3db8e-1112-47f7-934b-0f7268283511','','',NULL), +(12494,'Detatrine','Cargo','Cargo','86d56bfc-c804-4db6-80bb-6ad48633bfc1','','','Refined from the natural toxin found within the rare detatium fruit, this chemical has numerous medical applications.'), +(12495,'Gadget_Cabinet_kegr_fire_extinguisher_01_low','Usable','UNDEFINED','f48594cf-d99a-4560-b7bd-fc5f3eb20c7d','','',NULL), +(12496,'PlayerDeco_lt_couch_leather_2_straight_b','Usable','UNDEFINED','0ae4d7a2-52dd-4eff-82e4-64d32443b952','','',NULL), +(12497,'Door Control','Door','UNDEFINED','170d40bf-0e2e-41d1-806d-8fc6a55f205b','','',NULL), +(12498,'RSI_Zeus_ES_Thruster_Main_Bottom_Left','MainThruster','UNDEFINED','1b339652-7d02-46b9-b911-f91ed82cf550','','',NULL), +(12499,'DRAK_Cutlass_Red_Thruster_Maneuver_Right','ManneuverThruster','JointThruster','e9d135b5-9a8e-44d0-bd17-8d9a72692909','','',NULL), +(12500,'Internal Tank','QuantumFuelTank','QuantumFuel','bbb6a95d-5820-4a89-a1aa-2d03c14a6c07','','',NULL), +(12501,'MISL_S09_CS_TALN_Argos_2','Missile','Torpedo','5bdd509f-93eb-4638-83a9-dfcaae0c91ad','','',NULL), +(12502,'Food_plant_mushroom_01_heart_b','Food','Plant','6293d8f2-4421-454d-8e7e-9087705d44d0','','',NULL), +(12503,'StorageCage_Damage','Cargo','UNDEFINED','affdb277-32e1-41bc-af32-6d8640028cba','','',NULL), +(12504,'Diluthermex','Cargo','Small','85de5342-9928-42f8-a6d9-9eb6ef6c6c0d','','','An extremely heat resistant epoxy often used in the mounting and repair of ship thrusters. It is considered very difficult to transport in its uncured state as it becomes explosively unstable when exposed to Chan-Eisen fields during quantum travel. Specialized containers must be used to safely transport the epoxy long distances. Once set and cured, the Diluthermex is no longer reactive.'), +(12505,'FSK-8 \"Mirage\" Combat Knife ','Weapon','Knife','4534b4a3-6427-490a-a557-9e7a8114c3e9','','','Manufacturer: UltiFlex\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nThe FSK-8 Combat Knife from UltiFlex is as sparse a weapon as you can get. While many become enamored with dazzling tech of modern weaponry, UltiFlex has focused on making a simple effective combat tool. Featuring a balanced 1055 carbon steel blade honed to a razor\'s edge, this knife is capable of handling all the abuse you can throw at it.'), +(12506,'glass_tumbler_2_a','Misc','UNDEFINED','a3fae4de-a6ba-4e96-9a46-e8c271f07c7d','','',NULL), +(12507,'Carryable_1H_CY_bottle_liquor_pourable_1_a','Misc','UNDEFINED','1019b7b8-477c-49fb-85bb-39e33a7d55a0','','',NULL), +(12508,'Ardent Boots Green','Char_Clothing_Feet','UNDEFINED','842d17bf-18be-4d47-b8ca-e92cf18507a4','','','Who says NorthStar can\'t keep it pro? The Ardent boot features a molded rubber sole and all-weather construction to withstand a constant battery from the elements.\n\nWomen\'s sizes currently out of stock.'), +(12509,'SHIELDS','ShieldController','UNDEFINED','2145f92d-695e-43e7-8ec7-2012f1473328','','',NULL), +(12510,'ANVL_Door_Decal_Carrack_Drone','Decal','DoorPart','f69d4f05-357d-417d-a927-e37f67501a4e','','',NULL), +(12511,'INTK_RSI_Aurora_LX','FuelIntake','Fuel','123054da-9075-41a0-a31b-53cf6669b230','','',NULL), +(12512,'Internal Tank','QuantumFuelTank','QuantumFuel','ca7b121d-b8e5-4253-a45c-bddd75d9fb17','','',NULL), +(12513,'ADP Core Tan','Armor','Torso','0aeaa1c2-31c0-46e3-9957-05c83ec48d14','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(12514,'Arcus Gloves Red','Char_Clothing_Hands','UNDEFINED','0510b7db-8059-4cfa-9486-eba1542526ae','','','Temp. Rating: -35 / 25 °C\n\nThe Arcus gloves are thin enough to wear on everyday excursions, yet capable of keeping your hands warm in frigid conditions. Textured touch fingertips even allow you to easily access your mobi and other touch screens without removing your gloves.'), +(12515,'AEGS_Reclaimer_Salvage_Arm','ToolArm','UNDEFINED','6e99cfb7-45cb-4221-aa7f-d24964fd0cef','','',NULL), +(12516,'Oza','Cargo','Cargo','d412b132-5ea0-4ec9-96e3-5f11aa73cbb4','','',NULL), +(12517,'Flight Blade','FlightController','UNDEFINED','ee9801dd-3528-4448-967b-3de16e4f7f9b','','',NULL), +(12518,'CRUS_Star_Runner_Dashboard_Pilot','SeatDashboard','UNDEFINED','6b228efe-5de4-4792-8090-f2b899465627','','',NULL), +(12519,'Zelena Pants Olive and Bisbee Boots','Char_Clothing_Legs','UNDEFINED','8d0ae6c2-f1ed-4d18-8f64-79fcf07a5fb6','','','Carrying Capacity: 1K µSCU\n\nStay warm and dry on rainy days in the Zelena pants and the Bisbee boots. Both made with water-repellant materials and built-in sweat-wicking technology, they\'ll be your go-to choice for adventures on even the most hostile worlds.'), +(12520,'Cargo_Comm_125x3_Metal_a','Cargo','Cargo','be18b69f-3235-46f3-90fc-b10706c670d4','','',NULL), +(12521,'Morozov-SH-I Legs Gideon','Armor','Legs','e98473de-9bf9-4092-b47f-21b19acd40c0','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -97 / 121 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart. The Gideon edition features a heavily worn teal finish with yellow accents.'), +(12522,'Agricultural Supplies','Cargo','Small','ae596ace-fb95-43b4-8ad7-e299a771c033','','','Items required for agricultural production. Includes fertilizers, feed, and pesticides.'), +(12523,'M9A Cannon','Weapon','Gun','cd34396d-3fa5-4afc-a164-e4f2a77147cd','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 7\n\nStrike at the very heart of your enemies with the devastating impact of Behring\'s M9A energy autocannon. When fully charged, the massive stopping power of this laser weapon has the potential to halt even capital ships in their tracks.'), +(12524,'rack_wood_2_highend_a_rod_6Ports','ShopDisplay','Default','a79bd649-4dc1-4287-8aa9-21738e4a7815','','',NULL), +(12525,'Ready-Up Helmet Black','Char_Clothing_Hat','UNDEFINED','5408cb4c-575b-4f10-8e99-ac7baf271b3f','','','The Ready-Up is a dependable, affordable softshell helmet alternative. Built from space-age plastic, the Ready-Up provides a vacuum-ready seal to keep you breathing for longer.'), +(12526,'Medical Supplies','Cargo','Small','dc9ad624-c31f-4451-8046-7b6a1c871e3e','','','A variety of items produced primarily to treat injury or illness.'), +(12527,'Geist Backpack','Armor','Backpack','f3e516b1-1fed-4f98-86fd-970e84786ddf','','','Item Type: Light Backpack\nCarrying Capacity: 54K µSCU\nCore Compatibility: All\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(12528,'Silverton Jacket Pine','Char_Clothing_Torso_1','UNDEFINED','c38d5709-6956-49fb-8cce-d55e23b57ee5','','','Carrying Capacity: 1K µSCU\n\nWhen you\'re on the frontier, you need reliable clothing that won\'t fray when the going gets tough. That\'s why DMC made the Silverton jacket with double-stitched, element-resistant leather and plenty of roomy pockets so you can keep your supplies on hand. With the Silverton, you\'ll be prepared for anything.'), +(12529,'AEGS_Avenger_PrisonPod_1','Usable','UNDEFINED','077ad6ba-859e-4443-933a-640c24d2e419','','',NULL), +(12530,'Internal Tank','QuantumFuelTank','QuantumFuel','2e35b4bd-165f-4641-b813-1c3965c8243e','','',NULL), +(12531,'Col_A_Airlock_Tube_Door_Double_Ext','Door','AirlockPart','b035e7d0-27d9-43c4-a73d-f47e1fe3fc91','','',NULL), +(12532,'Luminalia Gift','Cargo','Cargo','3faa7b66-88cd-4153-9cc3-560686b9ce28','','',NULL), +(12533,'Radar_Display_RSI_Polaris_C','Display','UNDEFINED','c806daa0-04e6-488e-af98-9a25d6270451','','',NULL), +(12534,'ORC-mkV Arms Dark Red','Armor','Arms','5b588435-e363-42ca-8bf5-951af4e8be72','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(12535,'VariPuck S2 Gimbal Mount','UtilityTurret','GunTurret','6b756217-01c9-44cd-89be-1d5d6c87673b','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 2\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(12536,'Cargo_Comm_125x3_Gas_Iodine_a','Cargo','Cargo','28192a9d-13b1-468c-8d78-ead7a9cc2d52','','',NULL), +(12537,'Tracer Laser Pointer Orange','WeaponAttachment','BottomAttachment','cdf4adaa-de1e-42cf-8b50-0fd3ad138a10','','','Manufacturer: Klaus & Werner\nType: Laser Pointer\nAttachment Point: Underbarrel\nSize: 1\n\nSpread: -12.5%\n\nTrust Klaus & Werner to manufacture a tactical laser pointer that always hits the mark. The Tracer features a rust and impact resistant casing for an advanced laser diode that produces an efficient and stable beam. This special edition generates an orange beam that\'s easy to see and identify.'), +(12538,'Pite','Char_Head_Piercings','UNDEFINED','030268df-bb52-401a-b2d7-117b7006a95a','','',NULL), +(12539,'Weapon_Rack_1_Volt_Rifle_Uncommon_001','Usable','UNDEFINED','46f47948-1802-42d2-b09d-6a9b86c74071','','',NULL), +(12540,'Molina Mold Treatment','Cargo','Cargo','1a6cf9f3-18b7-4cf0-9e62-38ab19c127e9','','','A lifesaving treatment for those suffering from exposure to Molina Mold.'), +(12541,'Arden-SL Core Red Alert','Armor','Torso','bc4711b5-5f10-4746-8863-0fd06b22d4f6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics. It also features a toolbelt for easy access to important gear.'), +(12542,'ControlPanel_LightSwitch_RSI_Polaris_Turret','ControlPanel','DoorPart','45a68414-94e9-4229-adc4-735e22364fa1','','',NULL), +(12543,'DRAK_Cutter_Roof','Misc','UNDEFINED','06ea8557-af31-4859-afb6-072893e337b9','','',NULL), +(12544,'ADP-mk4 Arms Righteous','Armor','Arms','30f3d430-7097-4f1b-b47a-63e7fb342028','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nBased on CDS\' ADP-mk4 heavy combat armor, this set has been modified from its original form. When there\'s a difficult job at hand, you want to ensure that you can see it through to the end. This armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers.'), +(12545,'Red QuikFlarePro','Weapon','Grenade','3e98c2a9-4edb-4501-ab3d-99c2c54d1d26','','','Manufacturer: Shubin Interstellar\n\nIlluminate the way forward or signal for help with the Red QuikFlarePro from Shubin Interstellar. For centuries, miners have counted on this flare as part of their core toolkit, thanks to its tried and true design and durability that ensures it stays ablaze in the various harsh weather and difficult atmospheric conditions encountered across the \'verse. The QuikFlarePro uses advanced tech to glow longer than regular flares.'), +(12546,'Carryable_2H_FL_Safe_1_a_Advocacy_a','Misc','UNDEFINED','7f682009-2a92-4791-9d23-abd85e6bc4ec','','',NULL), +(12547,'RSI_Polaris_SeatAccess_Turret_TopLeft','SeatAccess','UNDEFINED','d25355de-0343-4e08-b25d-2891646e8a02','','',NULL), +(12548,'Aegis Retaliator Torpedo Rack','MissileLauncher','MissileRack','dd0b3606-b9bc-4afe-9bc0-dc15ca0ad3df','','','Aegis Retaliator Torpedo Rack'), +(12549,'Stileron','Cargo','Cargo','b0bcb9d5-01ec-434e-8b8a-98076bae3678','','',NULL), +(12550,'Janalite','Cargo','Cargo','dcf09d52-2a84-49be-a42f-2d5c8c52ec8d','','',NULL), +(12551,'MISC_Fury_Thruster_FixedMav_Top','ManneuverThruster','FixedThruster','b4ae27f2-8ff2-4ef7-b84f-31b514988bb1','','',NULL), +(12552,'Ketchum Beanie Twilight','Char_Clothing_Hat','UNDEFINED','ee9048f4-0dd9-4945-ae5d-155d370683fe','','','Complete your cool-weather wardrobe with the classic Ketchum beanie from Alejo Brothers.'), +(12553,'Personal Storage','Cargo','UNDEFINED','75dd7136-d69c-4705-9264-ff71234f516c','','',NULL), +(12554,'Monde Legs Hemlock Camo','Armor','Legs','5c94a154-e25a-4a27-aea2-52868429f14e','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints.\n\nThe Hemlock edition features a green camo pattern.'), +(12555,'Assailant IV Missile','Missile','Missile','ce8ef95e-edd9-45d7-8c21-5e644a8ba75e','','','Manufacturer: Talon\nTracking Signal: Cross Section\nSize: 4\n\nThe Assailant missile from Talon is a perfect weapon solution for precision strikes against motivated opponents.'), +(12556,'Door Control','ControlPanel','DoorPart','a4574d1c-8b46-409f-b3ce-5317c15e0f56','','',NULL), +(12557,'Bottle','Bottle','Default','20e89ba8-faee-4c99-842a-83ebebac0f2e','','','Bottle'), +(12558,'REP-8 EMP Generator','EMP','UNDEFINED','5b592245-58a7-4ce9-9c96-3145d0424da8','','','Manufacturer: Behring\nItem Type: EMP Generator\n\nThe REP-8 is a highly regarded EMP-focused burst generator from Behring. It balances a manageable charge time with a strong blast of distortion damage that knocks out electronic components caught within its radius. Solid engineering and centuries of use have made this a standard non-lethal deterrent across the Empire.'), +(12559,'600i Flight Jacket','Char_Clothing_Torso_1','UNDEFINED','837ab689-2505-4329-bb5a-3a56ea3e24e6','','','Carrying Capacity: 2K µSCU\n\nEmbrace elegance with the 600i flight jacket. Featuring beautiful brown synthetic leather and an ultra-soft yet durable inner lining, the jacket honors the stunning ship with the best bedtime view in the verse. Origin\'s logo graces the jacket\'s front and a patch featuring a top down view of the ship\'s classic contours adorns the back.'), +(12560,'Personal Storage','Cargo','UNDEFINED','66348bb4-20d0-4c9c-9b1f-bbdaac133dae','','',NULL), +(12561,'Edgewear Pants Black','Char_Clothing_Legs','UNDEFINED','37878ec2-d955-48f9-9e0e-00bde650392b','','','Carrying Capacity: 4K µSCU\n\nStegman\'s Edgewear utility clothes are made from reinforced nylon weaves and lined with temperature-rated quilted technology to provide you with a little extra protection while on the jobsite. Double knees, reinforced joint pads and extra pockets add comfort and durability to this field-tested and worker-approved clothing line.'), +(12562,'R97 \"Righteous\" Shotgun','Weapon','Medium','97b5b51a-a161-4477-92df-1f35fefdb9c4','','','Manufacturer: Gemini\nItem Type: Shotgun\nClass: Ballistic\n\nMagazine Size: 18\nRate Of Fire: 120 rpm / 60 rpm\nEffective Range: 15 m / 35 m\n\nAttachments: Optics (S1), Barrel (N/A), Underbarrel (S2)\n\nThe R97 combines sleek design and stopping power for an elegant and effective close quarters weapon. This ballistic shotgun from Gemini features two distinct fire modes — a semi-auto wide spread mode ideal for dealing quick damage and a focused mode that offers increased range at the expense of some power. This combat flexibility has made the R97 a popular personal defense weapon across the Empire. The \"Righteous\" edition features a bold red paint perfect for showing your dedication to the fight.'), +(12563,'Carryable_1H_CY_drug_medical_pills_1_a','Misc','UNDEFINED','b1ebf9d9-c95f-42d6-923c-0ecd7a03f221','','',NULL), +(12564,'RSI_Apollo_Medivac_Thruster_Retro','ManneuverThruster','FixedThruster','434532e6-3aa7-8c7e-cb8a-c8401b87029c','','',NULL), +(12565,'P8-SC \"Nightstalker\" SMG','Weapon','Medium','c28c3a87-80a5-4df0-9faf-f61dcdebb16e','','','Manufacturer: Behring\nItem Type: SMG\nClass: Ballistic\n\nMagazine Size: 45\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nWhen the top fighting force in the universe chooses a weapon as their standard, it pays to stand up and take notice. The Behring-crafted P8-SC has been the ballistic submachine gun of choice for the UEE Marines since it first came off the production line, but since then, many have come to rely on this weapon for their own personal safety and protection.'), +(12566,'Door Control','ControlPanel','DoorPart','4ec68fb6-6c0b-4aab-9af1-3acae4f49821','','',NULL), +(12567,'Carryable_1H_CY_glass_tumbler_1_a_prefilled','Misc','UNDEFINED','54938f3c-8ec2-48b6-a73d-d132b2c259bf','','',NULL), +(12568,'Strata Helmet Shire','Armor','Helmet','9c8a751a-b2ad-4e81-a83e-79e48ef97c3c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design features high quality materials and a next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Shire edition is primarily green with black and white highlights.'), +(12569,'Horizon Helmet Olive','Armor','Helmet','e65434a1-c517-4b0c-8746-bc914c2a3c86','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Horizon helmet is a durable and robust environmental enclosed work helmet. The single sheet laminate dome gives you an extremely wide field of view. A pair of side-mounted LED light modules provide additional illumination to make sure you can see what you\'re doing.'), +(12570,'Clean and Clear Work Apron','Char_Clothing_Torso_1','UNDEFINED','87466b3c-aef4-4761-845a-ae742c328385','','','Carrying Capacity: 1K µSCU\n\nDon\'t let your clothes suffer when you\'re just doing your job. Designed to be waterproof, stain resistant and easy to clean, the Clean and Clear work apron is ideal protection for your clothes when your job requires getting down and dirty.'), +(12571,'Builders of Tomorrow T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','6b17edf9-fff3-45bb-bf43-c41ecada9e53','','','Crusader strives to be the builders of tomorrow through aerospace innovations and an unwavering commitment to philanthropy. Signal your support for Crusader\'s future-focused initiative with this shirt featuring the company logo and a cloudy Orison vista.'), +(12572,'Door Control','ControlPanel','DoorPart','a89129ac-bf75-401d-a06e-98b6ea4a8c54','','',NULL), +(12573,'Locker_Suit_DRAK_Cutter_Rambler','Usable','UNDEFINED','466fa608-6a53-4788-84fa-35ae9d1af657','','',NULL), +(12574,'MISC_Starlancer_Thruster_Mav_Side','ManneuverThruster','FixedThruster','e2abd3a8-218a-4672-bb04-e389a1ba33bc','','',NULL), +(12575,'Corbel Helmet Smolder','Armor','Helmet','fdaffa09-1693-4db2-a3b1-99d90fdfb384','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nOriginally designed as a strength enhancement suit to give factory workers better lifting power, CDS found wider application in utilizing its defensive capabilities. It\'s triple-enforced armor plating provides extreme physical protection, with deliberate placing of materials to protect the most vulnerable parts of the body. A series of pneumatic levers offer increased flexibility in the joints, alleviating pressure and weight in key areas to create an accessible and highly protective armor despite its heavy weight.\n\nThe Smolder edition is primarily gray and black with sharp red segments.'), +(12576,'TRGT. STATUS','Seat','UNDEFINED','92294416-6daa-4d4b-a1ae-27f337b25d64','','',NULL), +(12577,'Seat','SeatAccess','UNDEFINED','cda63d37-2e3f-4eb4-85bb-2aa6d9a49e4b','','',NULL), +(12578,'MISC_Prospector_RADR_Display','Display','UNDEFINED','e6a0d71f-06f4-49d6-b8ac-9c06a85fd8bf','','',NULL), +(12579,'Lynx Core Ferrum','Armor','Torso','7276eed8-e1be-453b-a2b0-e8aca32c7447','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(12580,'Bed','Usable','UNDEFINED','23d8d17d-913c-4a96-b0d3-b352b1724ed7','','',NULL), +(12581,'MISC_Freelancer_Thruster_DUR_Main_Right','MainThruster','FixedThruster','5eff23ca-cbe9-4794-a288-5627837a7d76','','',NULL), +(12582,'SCItemDisplayScreen_Source','Display','Default','29a11578-05e7-4777-a500-e73c1de6f188','','',NULL), +(12583,'Davin Work Gloves','Char_Clothing_Hands','UNDEFINED','4521f35f-eeba-4f82-98cc-662940b48af0','','','Field-tested for over fifty years, you can find Davin work gloves at numerous sites and ships around the Empire. Stegman\'s rugged construction and comfort lining have made them a customer favorite.'), +(12584,'Hardline Hard Hat Hazard','Char_Clothing_Hat','UNDEFINED','4f5ecfda-446b-414f-9a6a-53aebc7ecf73','','','Stegman\'s Hardline 7800 is the latest in a proud line of safety wear. The Hardline is constructed from the same high-density plastics used in some body armor.'), +(12585,'Chiron Backpack','Armor','Backpack','bba48b2a-0b61-4040-9dc8-0999137c6895','','','Item Type: Light Backpack\nCarrying Capacity: 75K µSCU\nCore Compatibility: All\n\nEngineered with first responders in mind, the Chiron backpack provides an ideal carryall for critical supplies with quick access to the medical essentials that are stored inside.'), +(12586,'Radar_Display_Eclipse','Display','UNDEFINED','09f0dfbf-b30e-4bf2-beec-315899a85448','','',NULL), +(12587,'ESPR_Prowler_Component_Housing_Large','Player','UNDEFINED','e75feb06-3cdf-4941-9382-a02f329bfe51','','',NULL), +(12588,'Vehicle_Screen_MFD_Holographic_Top','Display','UNDEFINED','b62d5d8b-e6c2-48c9-8a0e-d0e10b5f1f8b','','',NULL), +(12589,'MXC Perdition Livery','Paints','UNDEFINED','335e3fa9-7ec2-4542-bf80-0967b8d5d55e','','','The Perdition livery envelops the MXC, and other Greycat M-Series vehicles, in dark black with gold highlights.'), +(12590,'Blood_Decal_Splatter1','Decal','DoorPart','792b024d-9d19-41e4-8416-b19ef45e6434','','',NULL), +(12591,'Vanguard True Valor Livery','Paints','UNDEFINED','91f45c5e-0509-4e82-821c-f522a5a475e7','','','The striking True Valor livery gives the Vanguard a white cockpit, blue body, and yellow tails and fins.'), +(12592,'Internal Tank','QuantumFuelTank','QuantumFuel','0ac266b3-49d6-4a7b-bdf4-b311479dbb50','','',NULL), +(12593,'DuraWork Pants Ochre','Char_Clothing_Legs','UNDEFINED','c156f433-da5c-44cb-bcf7-c2c0eaa3df15','','','Carrying Capacity: 2000 µSCU\n\nMade of a durable synthetic material, Stegman\'s designed the DuraWork to provide a comfortable and reliable clothing option to workers around the \'verse.'), +(12594,'Carrion Arms','Armor','Arms','87f789bf-f902-4a2a-b2ce-97652f06939d','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nForged from scavenged metals and ragged clothes, the Carrion armor is a crude concoction of repurposed materials that demonstrates you\'ll do anything it takes to survive.'), +(12595,'Waste','Cargo','Cargo','393ef7c3-d6e9-4a8e-aaa8-6045806d30e8','','',NULL), +(12596,'Seat','Usable','UNDEFINED','1f9986d2-6389-4374-bec0-0ed2211a0577','','',NULL), +(12597,'Carrion Arms Ashen','Armor','Arms','1261da0b-758e-42ee-898f-91e03fb390eb','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nForged from scavenged metals and ragged clothes, the Carrion armor is a crude concoction of repurposed materials that demonstrates you\'ll do anything it takes to survive.\n\nThe Ashen version is sprayed with white paint and anointed with bone fragments.'), +(12598,'Carrion Arms Payback','Armor','Arms','cc20b9d1-ee85-4996-94ec-923fbe535ae1','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nForged from scavenged metals and ragged clothes, the Carrion armor is a crude concoction of repurposed materials that demonstrates you\'ll do anything it takes to survive.\n\nThe Payback version is sprayed with red paint and anointed with bone fragments.'), +(12599,'Saldynium (Ore)','Cargo','Cargo','4edd1ed2-463e-480c-a1b3-39f8c4527289','','','A rare metal that has traditionally been extremely difficult to find in large quantities owing to the particular environmental requirements for its formation. It is sought after for its use in the production of high-powered lasers. It also shows some antimicrobial properties though its scarcity has seen it used less for medical purposes.'), +(12600,'Gladius Valiant Livery','Paints','UNDEFINED','047d54d4-e288-4649-a369-412775d9a641','','','Part of the ?Masters of Flight? series, this special edition livery honors the look of the Gladius used by famed defense pilot Condi Hillard who became the first Human on record to defeat a Vanduul in combat.'), +(12601,'Bed','Usable','UNDEFINED','59bd9fad-8eae-4f27-9957-8516e2ee4cc6','','',NULL), +(12602,'MSD-543 Missile Rack','MissileLauncher','MissileRack','e6ca8226-bbe0-4c9a-92c4-986d522e3154','','','Item Type: Missile Rack\nManufacturer: Mirai\nSize: 2\nMissiles: 1xS2\n\nTo make the Fury a threat despite its small size, Mirai developed this bespoke missile rack, which can carry and deploy one S2 missile without undermining the ship\'s compact profile.'), +(12603,'m_human_mannequin_odyssey_suit_18','ShopDisplay','UNDEFINED','0fd8f245-93cd-4b04-811a-f148f71cc41a','','',NULL), +(12604,'Railing_Hologlobe_Idris_AEGS','Usable','UNDEFINED','e04a010a-d450-443a-ba4e-589b228acd06','','',NULL), +(12605,'Seat','Usable','UNDEFINED','0e318d3b-4e6c-49a9-bc11-b27f4616b382','','',NULL), +(12606,'RSI_Polaris_SCItem_SeatAccess_Turret_Top_Rear','SeatAccess','UNDEFINED','2de4939c-91ae-4ded-8ea3-947f53ce8529','','',NULL), +(12607,'HRST_LaserRepeater_Barrel_S2','WeaponAttachment','Barrel','fd055ecf-d21d-4486-aab3-76a915942f7a','','',NULL), +(12608,'PU_Head_Teeth','Char_Accessory_Head','UNDEFINED','4a0de194-4b4f-49b8-adb7-1087e9f38941','','',NULL), +(12609,'AEGS_Idris_SCItem_Seat_Bridge_Rear_Right_Back','Seat','UNDEFINED','4fc8c539-7c73-467f-9b80-e41e929a31ce','','',NULL), +(12610,'Seat','Usable','UNDEFINED','fc618db7-4499-4643-a3a3-ee88a36c8cac','','',NULL), +(12611,'Luminalia Gift','Cargo','Cargo','ede927d8-e590-4e61-a4d5-0c0cbee1a03d','','',NULL), +(12612,'SoftLock_Terminal_Standard_Starfarer_Fuel_Pods_Ship','Display','UNDEFINED','710cc740-d31b-453a-8121-15b5329c0490','','',NULL), +(12613,'Red Wind Cargo Plushie','Misc','Flair_Wall_Picture','0f9f484f-ebe6-401a-a280-3a4dbe2b7279','','','Here\'s a haul you can hug. This plushie shaped like a cargo container features Red Wind Linehaul branding with the company\'s logo and grey and red color scheme.'), +(12614,'Morozov-CH Backpack Brushdrift','Armor','Backpack','06f1ddc0-91fb-4740-823f-975244f2b452','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nComfortably carry vital gear with the Morozov-CH backpack. This softshell bag is made with an advanced duraweave that\'s lightweight yet ready for battlefield action. It also features several easy to access pockets and a plethora of straps to keep supplies secure and tight to your back.'), +(12615,'Bulwark','Shield','UNDEFINED','624e6c75-afd8-4606-a10e-45d12cb3c882','','','Item Type: Shield Generator\nManufacturer: Basilisk \nSize: 1\nGrade: C\nClass: Industrial\n\nThe Bulwark shield generator provides industrial-grade durability and increased performance, but at the expense of a higher emission level.'), +(12616,'mobyGlass Personal Computers','Cargo','Cargo','6f8b3910-6e84-465e-8396-8c1d2d038353','','',NULL), +(12617,'Seat','Usable','UNDEFINED','a8ec581a-135a-46ed-9486-1691c82b2c42','','',NULL), +(12618,'Wayfare','QuantumDrive','UNDEFINED','f942fa3b-d450-4c4d-a797-49f1a4685d16','','','Item Type: Quantum Drive\nManufacturer: Tarsus \nSize: 1\nGrade: D \nClass: Civilian\n\nSpeed through space without breaking the bank. The Warfare is a small quantum drive from Tarsus that was specifically designed to help make space travel affordable for the masses.'), +(12619,'Gilick Boots White / Teal','Char_Clothing_Feet','UNDEFINED','4ec61079-1f93-4b99-bb85-6841ef59af9e','','','Gain the Octagon advantage with the Gilick boots. Whether on a work site or exploring the wilds, these boots will provide the comfort and support you crave. They feature an all-terrain tread, a supportive inner sole, and adjustable gaiters to cover your ankles and lower legs from the elements.'), +(12620,'ESPR_LaserCannon_Ventilation_S4','WeaponAttachment','Ventilation','b715c859-aaec-47d6-b6e1-0db1147ef958','','',NULL), +(12621,'Hydrocel','Cooler','UNDEFINED','a5107834-61e1-481d-b836-7ed6c08b14d5','','','Item Type: Cooler\nManufacturer: Juno Starwerk \nSize: 1\nGrade: D\nClass: Industrial\n\nKeep your ship working harder for longer with the durable Hydrocel, an entry-level industrial cooler from respected manufacturer Juno Starwerk.'), +(12622,'Seat','Usable','UNDEFINED','c615676d-110f-4f2b-b670-9a69879b608b','','',NULL), +(12623,'m_human_mannequin_marine_medium','ShopDisplay','UNDEFINED','f3ae812a-1337-42b3-b095-227bcfd7512d','','',NULL), +(12624,'Radar_Display_RSI_Perseus','Display','UNDEFINED','3774f745-7182-4760-b4fe-0806f5433e57','','',NULL), +(12625,'Tau Plus (4x Telescopic)','WeaponAttachment','IronSight','845dc675-ab4c-4bd5-8b14-11e9c29f3399','','','Manufacturer: NV-TAC \nType: Telescopic\nAttachment Point: Optic  \nMagnification: 4x\nAim Time: +25%\nSize: 2\n\nThe Tau Plus 4x telescopic sight from NV-TAC uses a proprietary optics coating to ensure a crystal clear image regardless of light levels and conditions, allowing you to precisely engage targets at medium range.'), +(12626,'CargoBox_050x050x050_Tank_Water','Cargo','Cargo','083b1cf9-453c-40a9-b7b9-ca9e09223858','','',NULL), +(12627,'Internal Tank','FuelTank','Fuel','5a16ce1f-f8f7-4eee-82cb-d6190493c5d4','','',NULL), +(12628,'Seat','Usable','UNDEFINED','481ef6d2-7dbf-4176-9161-a48c854f9178','','',NULL), +(12629,'LeMarque Pants','Char_Clothing_Legs','UNDEFINED','9d17991a-4f2b-4521-87a2-3b7d4e90bf94','','','Carrying Capacity: 0.5K µSCU\n\nClassic cuts never go out of style. A staple of any wardrobe, Derion\'s LeMarque are built for work or play and feature microseam pleats and wrinkle-free material that will guarantee that you\'ll get years out of this classic.\n\nWomen\'s sizes currently out of stock.'), +(12630,'Manned Turret','TurretBase','MannedTurret','f78fca4a-1d2c-4532-87cf-6af1638005d5','','',NULL), +(12631,'NONE_LaserRepeater_Ventilation_S3','WeaponAttachment','Ventilation','06bf9021-aae5-4ecc-b066-c83538bc20dd','','',NULL), +(12632,'AEGS_Sabre_Peregrine_Thruster_Mav_Joint_03','ManneuverThruster','JointThruster','2c3eeb5a-a588-462e-8caa-1fdcf91c5f58','','',NULL), +(12633,'food_ration_pack_a','Misc','UNDEFINED','67b7d492-eb3f-467f-8065-3e7a7b4919a9','','',NULL), +(12634,'Door Control','Door','UNDEFINED','0a666de1-9bde-4dc6-b993-181054d005f4','','',NULL), +(12635,'Seat','SeatAccess','UNDEFINED','907278e1-c4c8-415c-965b-a8e54ca65be7','','',NULL), +(12636,'Stirling Exploration Backpack Transistor Edition','Armor','Backpack','819a69f2-412d-48f1-8232-3192fd765d80','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nThis heavy duty backpack is compatible with the Stirling suit and provides a convenient storage solution. The Transistor Edition is primarily copper with a white accent that cuts down the middle, finished with a tinted yellow visor.'), +(12637,'Manned Turret','TurretBase','MannedTurret','ba0bc75f-01ca-4da5-8a12-46eb54ac221a','','',NULL), +(12638,'Flight Blade','FlightController','UNDEFINED','9c1395b5-a1c8-4365-ba1a-0d9246382384','','',NULL), +(12639,'Door_NoRoomConnector_Breachable','Door','UNDEFINED','a954cf6c-e976-43ab-bcb0-f56497269d26','','',NULL), +(12640,'Gadget_Cabinet_kegr_fire_extinguisher_display_01','Usable','UNDEFINED','03679be2-7af7-41d3-a807-4acb74e11f57','','',NULL), +(12641,'Frontier Pants (Modified)','Char_Clothing_Legs','UNDEFINED','f1ab7f13-671a-47d2-8e74-28adf80cb0fa','','','Carrying Capacity: 0.5K µSCU\n\nThis version of DMC\'s Frontier pants has been modified from its original form. DMC\'s Frontier collection has been a staple of frontier living for centuries. These heavy denim workpants have double-stitched reinforcement and stainguard technology, making them dependable pants for any environment day in and day out.'), +(12642,'Drink_cup_coffee_1_a_stacked','Food','Consumable','e3f7b48a-398c-4e8a-acf7-87e095c1fe3c','','',NULL), +(12643,'Arden-SL Arms Rime','Armor','Arms','72ea2303-ceb2-492a-bdcf-dede62bb626a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics.'), +(12644,'Bed','Usable','UNDEFINED','ce4b8184-0948-4554-a275-42d1b7e42b67','','',NULL), +(12645,'Weapon_Rack_3_Slot_RSI_Com_Armory','Usable','UNDEFINED','25248a20-6a74-4ea5-89fe-fa0ccb801eb1','','',NULL), +(12646,'Hawk Hosanna Livery','Paints','UNDEFINED','c544ea5e-38c3-45e6-a049-859a3edce6a9','','','Inspired by the gorgeous clouds that enshroud Orison, the Hosanna livery blends red, ivory, and pink to give the Hawk a distinct appearance. It also features a silhouette of the landing zone\'s famous Hosanna tree complete with its pink flowers.'), +(12647,'ORIG_300i_Cargo_Cover_Rear','Door','UNDEFINED','b6244421-5a29-4c19-986c-474541300446','','',NULL), +(12648,'Synergy+','Drink','Bottle','e07fa2c7-e2f2-4041-a898-d73f1f51eb06','','','HEI: 48\nNDR: 06\nEffects: Energizing, Hydrating\n\nSynergy+ is formulated to deliver balanced active rehydration for an extended duration, allowing for continued harmony in motion.'), +(12649,'Seat','Usable','UNDEFINED','ea64ce86-08c3-47fa-8493-1560d36a8250','','',NULL), +(12650,'Pulse \"Shubin\" Laser Pistol','Weapon','Small','101a4ebc-8611-4895-9731-0bb492d15a12','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Pistol\nClass: Energy (Laser)\n\nBattery Size: 60\nRate of Fire: 500 rpm (1000 rpm rapid)\nEffective Range: 15m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nThe Pulse Laser Pistol is a fully automatic pistol intended for close quarter combat. VOLT designed the weapon with a unique capacitor that condenses the pistol\'s laser energy, increasing its rate of fire at the cost of greater inaccuracy and a higher risk of overheating. This special edition features Shubin branding.'), +(12651,'Avenger De Biasio Livery','Paints','UNDEFINED','1257fef4-cbcf-408e-93bf-47f5634ddd18','','','To honor the brave explorers that brought us to space and support those currently seeking new frontiers, the Interstellar Cartography Center (ICC) commissioned this special livery for the Avenger. Named in honor of former ICC Director Loretta De Biasio, this livery mixes orange and grey with black highlights. All proceeds from the sale of the De Biasio livery goes directly to the ICC to support their efforts in \"Charting the Way Ahead.\"'), +(12652,'Ketchum Beanie Red','Char_Clothing_Hat','UNDEFINED','bef9a1d6-a8d9-4975-89af-899d833f52ed','','','Complete your cool-weather wardrobe with the classic Ketchum beanie from Alejo Brothers.'), +(12653,'INTK_MRAI_Guardian','FuelIntake','Fuel','c26cfadd-a817-4571-b413-6da72ffb9755','','',NULL), +(12654,'Seat','SeatAccess','UNDEFINED','ffeed16c-2217-4a62-8172-ab8c2dd0d10e','','',NULL), +(12655,'Door Control','Door','UNDEFINED','8dd2d3b4-dc1d-4060-beac-c685d462a779','','',NULL), +(12656,'Scorpius Tiburon Livery','Paints','UNDEFINED','01684bc9-391d-431e-9c48-b5c0270778ff','','','As if the Scorpius and its rail-mounted turret isn\'t menacing enough, the exclusive Tiburon livery features two rows of sharpened teeth flanking the cockpit. The rest of the paint scheme features shades of grey intermixed with red and white highlights.'), +(12657,'ORIG_350r_Intake','FuelIntake','UNDEFINED','752ffc90-b625-4fbc-87a1-d1e36843e0e8','','',NULL), +(12658,'Reclaimer 2949 Best In Show Livery','Paints','UNDEFINED','e256e698-54ad-455e-af5c-d2bda150ce6a','','','Customize your Reclaimer with this special 2949 Best in Show livery.'), +(12659,'Frontier 11 Classic Pine','Char_Clothing_Legs','UNDEFINED','b2b6d33d-38fd-4aad-b445-f91d9cf4a6d6','','','Carrying Capacity: 2k µSCU\n\nConstructed with large pockets and made from durable synth-cloth, the Frontier 11 Classic pants from DMC are a rugged garment designed to handle whatever life might throw your way.'), +(12660,'Carryable_1H_CY_weight_dumbbell_1_14kg_b','Misc','UNDEFINED','e07022e6-7e67-41eb-8cb1-a8d306b4ff43','','',NULL), +(12661,'Dashboard','SeatDashboard','UNDEFINED','9aaf6f5d-9808-4d25-a4f1-16003dc63b88','','',NULL), +(12662,'Seat','Usable','UNDEFINED','5932bb7f-636a-4bc4-af21-6777f21d6f25','','',NULL), +(12663,'Carinite','Cargo','Cargo','867be618-ce21-4984-8203-3d69beda535d','','','A rare mineral because the extreme pressure needed for its formation is very uncommon, it is in high demand thanks to its use in advanced computer processors and other cutting-edge electronics.'), +(12664,'MISC_Starfarer_Gemini_Thruster_Retro','ManneuverThruster','FixedThruster','97e71c75-8784-4916-9998-a5873716d9f8','','',NULL), +(12665,'Agricium','Cargo','Cargo','6a86de83-c86b-43d7-841f-64e741aa1a54','','',NULL), +(12666,'Door Control','ControlPanel','DoorPart','08a16539-122d-49a2-97f2-b365f644668f','','',NULL), +(12667,'Carryable_TBO_FL_32SCU_Commodity_ProcessedGoods_HolidayLetter','Cargo','Cargo','8f09bc48-3840-45b2-bc7a-22779f0bd1e3','','',NULL), +(12668,'Seat','SeatAccess','UNDEFINED','4b2ff594-90be-44ca-bec6-cb7dd63ce39b','','',NULL), +(12669,'MISC_Starfarer_Gemini_Thruster_Mav_Fixed_03','ManneuverThruster','FixedThruster','f0b23d27-4958-4a51-8b22-a74824a31242','','',NULL), +(12670,'Hardline Hard Hat White','Char_Clothing_Hat','UNDEFINED','8848b766-20d7-4637-926d-c1baaf40e56a','','','Stegman\'s Hardline 7800 is the latest in a proud line of safety wear. The Hardline is constructed from the same high-density plastics used in some body armor.'), +(12671,'Golem','SeatAccess','UNDEFINED','bd5990d0-d1c7-4382-82c3-14da3f5412e3','','',NULL), +(12672,'Salvaged Skull 2 SCU Container','InventoryContainer','Cargo','5e8c3960-4f0f-496a-8a7a-8a308311d33b','','','It may be used to transport “goods”, but this battered and scarred 2 SCU container is anything but thanks to its vivid skull markings.'), +(12673,'ADP Core Blue','Armor','Torso','49dd9b84-23cd-45de-abcf-63170b082b11','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(12674,'ADP Arms Sienna','Armor','Arms','46cfe7f3-410c-4923-9461-3d0cd8b5a19b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(12675,'Internal Tank','FuelTank','Fuel','eb74f8f5-a8ad-4bd6-8927-12d63185b9c0','','',NULL), +(12676,'Pyro RYT \"Mirage\" Multi-Tool','Weapon','Gadget','81881090-96fb-4962-9528-e75e59451f28','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier.'), +(12677,'Lycara','Cargo','Cargo','7725a372-7510-4673-9fc3-6ea247103aa9','','',NULL), +(12678,'Strata Backpack Hurston Black','Armor','Backpack','ccf4a001-4581-48f1-b084-ca4a922ccdf4','','','Item Type: Medium Backpack\nCarrying Capacity: 127.5K µSCU\nCore Compatibility: Medium & Heavy\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Hurston Black variant was made specifically for the company.'), +(12679,'Railing_Straight_2m_Lowtech_Open_B','Usable','UNDEFINED','ed1346ea-8fe4-4d45-88fe-fb596f4c9fa5','','',NULL), +(12680,'Ivers Boots Blue','Char_Clothing_Feet','UNDEFINED','2348dc0a-1512-4aa0-a9aa-ff999c292ddd','','','OpalSky imbued these ankle boots with their iconic panache. The Ivers are thoroughly fashionable but not flashy, and fitted with special KindSole insoles that provide exceptional comfort.'), +(12681,'screen_4x3_kareah_datapad','Display','UNDEFINED','331768eb-043b-45ad-bda6-d843facdf691','','',NULL), +(12682,'Zenith Laser Sniper Rifle Battery (22 Cap)','WeaponAttachment','Magazine','fa12a7a5-6fdd-4e7b-9237-1f2e131a43c4','','','Item Type: Battery\nCapacity: 22\n\nThis battery for the Zenith Laser Sniper Rifle holds enough energy for 22 shots.'), +(12683,'Defiance Legs Desert','Armor','Legs','c3aa9f68-1cbb-45d3-b78f-b0b0087c4c7d','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nIncorporating the same manufacturing know-how and expertise that the UEE Marines have come to rely on, Clark Defense Systems has designed their civilian-line of Defiance heavy armors to stand firm in the face of even the most adverse combat scenarios with its three-star rated protective plating and fully integrated mobility framework.'), +(12684,'Stone Bug Shell','Misc','UNDEFINED','8b765ff3-4cea-403c-8dda-fab783eaf73b','','','Known to curl into a tight ball when threatened, the stone bug is sought after for its tough shell, which can be removed and used as a durable material that has even been utilized in certain armor composites.'), +(12685,'Door Control','Door','UNDEFINED','24c99ba1-5560-4af9-bd75-5ddd88cea382','','',NULL), +(12686,'Internal Tank','QuantumFuelTank','QuantumFuel','cbd19bea-2b7a-40be-9896-14a65d2dcdea','','',NULL), +(12687,'AEGS_Reclaimer_Thruster_Aux','MainThruster','FixedThruster','43522561-07b5-4aff-acda-37a61979dd3b','','',NULL), +(12688,'RSI_Aurora_GS_MR_Thruster_Mav_Joint','ManneuverThruster','JointThruster','e5d93040-dcb1-4df6-867f-40a0e49e0d37','','',NULL), +(12689,'ORC-mkV Arms Green','Armor','Arms','e1ea64d1-abf5-4088-aab1-b3e5eb1c8bbf','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(12690,'Dashboard','SeatDashboard','UNDEFINED','9de2bb8b-118d-432f-a2b0-2f3ad16f71db','','',NULL), +(12691,'MOLE Dolivine Livery','Paints','UNDEFINED','ac889ced-e5fc-4c51-8b77-55c39992c45b','','','Sharing the name with a gemstone prized for its beauty and industrial applications, the Dolivine livery blends shades of light green to give your MOLE a unique look.'), +(12692,'Seat','SeatAccess','UNDEFINED','35e64ab5-818a-4ec5-928e-c55b77b426b5','','',NULL), +(12693,'E\'tam','Misc','Utility','905f6075-6c50-4353-9042-eba5a09bef3e','','','Created from the leaves of indigenous plants, E\'tam is an organic hallucinogenic drug used by the Xi\'an to slow body function and focus in order to achieve a deeper meditative state. For Humans, the effects are much more severe. E\'tam causes hyper awareness, cognitive enhancement and improved focus. Users can be so engrossed in tasks that they neglect to eat, sleep or take care of other body functions.'), +(12694,'TRGT. STATUS','Seat','UNDEFINED','7caed731-eaba-42cd-8011-933c2137c5e2','','',NULL), +(12695,'Overlord Core Flashback','Armor','Torso','85fda174-cc17-431e-b731-27dc1502d326','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12.0 µSCU\nBackpacks: All\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.\n\nThe Flashback edition is predominately white with orange accents and black joints.'), +(12696,'Table_Booth_1_4_Seat','Usable','UNDEFINED','480b3594-ff9b-41fc-9b29-c6c02086cfff','','',NULL), +(12697,'INTK_DRAK_Cutlass_Steel','FuelIntake','Fuel','059b4279-a4b7-4941-a01a-40cff979e12a','','',NULL), +(12698,'Bottle','Misc','UNDEFINED','27454e4e-350b-4756-a221-9a5e93f12d64','','',NULL), +(12699,'Carinite (Pure)','Cargo','Cargo','a4260be4-d1f6-4be9-9dea-8b38e50f7a9f','','','Typical carinite sources feature various impurities. However, under certain extremely rare conditions, carinite veins that are more than 90% pure can form. Computing hardware that demands exacting precision will usually seek out pure carinite.'), +(12700,'ATLS Keystone Livery','Paints','UNDEFINED','e3225b64-e4fb-4306-8b57-726528e8ef28','','','Crisp white with blue accents, the Keystone livery celebrates the workers whose mining, refining, hauling, salvaging, and more have made the empire what it is today.'), +(12701,'RSI_Constellation_Taurus_CargoGrid_Main','CargoGrid','UNDEFINED','f2701031-8df7-49cb-8f74-ea88bdc536e8','','',NULL), +(12702,'Lynx Core Red','Armor','Torso','f345cdb7-287a-44aa-a588-0331848ac656','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(12703,'Door_Ship_Sensor_Proximity_1_25x3x4','Sensor','DoorPart','04a1cee4-1d32-4c37-9ad0-c0af5114a6d0','','',NULL), +(12704,'RSI_Bengal_SCItem_Seat_Science','Seat','UNDEFINED','8b106967-7356-4bfc-b2ea-9a87d89bfcc7','','',NULL), +(12705,'Hephaestanite (Raw)','Cargo','Cargo','e96bfcc9-4fa3-472e-8a69-bd4636e6efb0','','',NULL), +(12706,'Personal Storage','Cargo','UNDEFINED','79e873dc-2573-4aeb-8167-133c803f1f1b','','',NULL), +(12707,'RSI_Aurora_Mk2_Thruster_Main_Right','MainThruster','UNDEFINED','4815b0ec-c63f-4f37-8c86-16001776ece7','','',NULL), +(12708,'MSD-212 Missile Rack','MissileLauncher','MissileRack','85abd56d-7442-4ef1-bbe3-4d64d8540737','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 2\nMissiles: 1xS2\n\nBehring’s MSD-212 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 2 hardpoint for the reliable and effective launch of one S2 missile.'), +(12709,'Hurricane Waylay Camo Livery','Paints','UNDEFINED','4cc1bca7-ce20-4408-86c3-0de3b79469ea','','','Equip your Hurricane in classic camo colors and stylings with the Waylay Camo livery.'), +(12710,'FBL-8a Arms Justified','Armor','Arms','bea49ef6-2415-4627-b1f1-dd48e167daa3','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBased on CDS\' FBL-8a combat armor, this set has been modified from its original form. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible.'), +(12711,'Radar_Display_Screen_GREY','Display','UNDEFINED','3b4d3808-e19b-46ce-b180-2768a6194fc5','','',NULL), +(12712,'Weapon_Rack_1_NONE_Special_Ballistic_AmmoOnly_001','Usable','UNDEFINED','117f4c1a-1017-4d0c-b0b4-9abc16f8c533','','',NULL), +(12713,'H_Dashboard_Projector_HUD_MISC_Hull_C','Display','UNDEFINED','4b91f67d-130e-404a-aeb3-2f1e294d93ab','','',NULL), +(12714,'Pulse GCD-Army Livery','Paints','UNDEFINED','4856e1ee-9205-407f-8156-9ad61c055663','','','In honor of the soldiers who protect the Empire, Mirai crafted this limited-edition GCD-Army livery. The glints of gold against grey camo makes it a memorable choice for the Pulse.'), +(12715,'Beacon Undersuit Green/Black','Armor','Undersuit','76ac8538-b925-47b7-8e2c-c3fd8df0c9fa','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRSI\'s Beacon undersuit is a general use utility designed to provide total protection against environments and vacuum. Built out of a durable but flexible polymers, the Beacon provides a wide freedom of motion for a variety of body types.'), +(12716,'Concept Shirt Green','Char_Clothing_Torso_0','UNDEFINED','ddb37221-84a0-4768-aa69-88ac1c40115d','','','This crisp, versatile button-front shirt from Fiore is made with cutting edge stain resistant and wrinkle-free technology, guaranteeing that you stay professional at all times.'), +(12717,'LeMarque Pants Dark Green','Char_Clothing_Legs','UNDEFINED','7f7b14af-fd4d-488a-bce5-2767771c2087','','','Carrying Capacity: 0.5K µSCU\n\nClassic cuts never go out of style. A staple of any wardrobe, Derion\'s LeMarque are built for work or play and feature microseam pleats and wrinkle-free material that will guarantee that you\'ll get years out of this classic.\n\nWomen\'s sizes currently out of stock.'), +(12718,'Door Control','Door','UNDEFINED','cfb0cded-dfc6-4095-ab38-8b8902341307','','',NULL), +(12719,'Internal Tank','QuantumFuelTank','QuantumFuel','d094ca35-0432-454e-b632-ae3dc0f93d77','','',NULL), +(12720,'AImodule_Silent_ATC','AIModule','UNDEFINED','e651e34e-4be1-4d52-94c7-cf03e692d867','','',NULL), +(12721,'Hull C Trailblazer Livery','Paints','UNDEFINED','72e521ea-238c-4b89-93b8-6946f3b5e8f6','','','The Trailblazer livery creates a cool, understated style for your Hull C with grey on top and dark red on the bottom.'), +(12722,'Venture Legs Dark Red','Armor','Legs','79a22a44-b37a-4e6a-baa9-8561a41a50c4','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(12723,'AEGS_Idris_K_Turret_Backing','Misc','UNDEFINED','3f36c1ad-7c0d-468d-ad0e-bc4fbcebbdea','','',NULL), +(12724,'Artimex Core Red Alert','Armor','Torso','e64ea21f-bb7d-465c-bd8e-ca16825c3fda','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.'), +(12725,'Corbel Core Smolder','Armor','Torso','49b52040-a1f0-407f-a64b-0896274cfe82','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nOriginally designed as a strength enhancement suit to give factory workers better lifting power, CDS found wider application in utilizing its defensive capabilities. It\'s triple-enforced armor plating provides extreme physical protection, with deliberate placing of materials to protect the most vulnerable parts of the body. A series of pneumatic levers offer increased flexibility in the joints, alleviating pressure and weight in key areas to create an accessible and highly protective armor despite its heavy weight.\n\nThe Smolder edition is primarily gray and black with sharp red segments.'), +(12726,'Door Control','Door','UNDEFINED','7624d1ee-d062-40f2-8932-b2836cc04a52','','',NULL), +(12727,'AEGS_Javelin_Thruster_Mav_Joint_01_Invulnerable','ManneuverThruster','JointThruster','9ffd5bf7-1f03-4305-ba8b-334da45e129e','','',NULL), +(12728,'Cordimon Jacket Twilight','Char_Clothing_Torso_1','UNDEFINED','065e022a-3223-4fb1-9496-1404d78008d5','','','Carrying Capacity: 3K µSCU\n\nStegman\'s classic worker\'s jacket has been a staple of job sites for over seventy years. This duotone pattern is cut from the toughest material meaning you can wear it anywhere, anytime. It may not be armor, but it damn sure feels like it.'), +(12729,'Door Control','Door','UNDEFINED','a010adb8-0df6-40c8-8ac5-cafd5de45070','','',NULL), +(12730,'Weapon_Rack_1_KSAR_Shotgun_Ballistic_01_Common_001','Usable','UNDEFINED','290c6357-3173-4a7f-b0e9-d3d00fbd91c8','','',NULL), +(12731,'DRAK_Caterpillar_CargoGrid_Module_Walkway','CargoGrid','UNDEFINED','28c084c3-442d-4b33-8a35-a213a56e9d76','','',NULL), +(12732,'Ling Family Cargo Plushie','Misc','Flair_Wall_Picture','fafba6b0-cd78-4a6d-ba89-6fd9af6b70a4','','','Here\'s a haul you can hug. This plushie shaped like a cargo container features Ling Family Hauling branding with the company\'s logo and red, blue, and white color scheme.'), +(12733,'Door Control','ControlPanel','DoorPart','7a7c17c9-ea84-46bf-a10e-2470a0f74d26','','',NULL), +(12734,'Aurora Mk I Hurston Livery','Paints','UNDEFINED','70f47a1a-49b0-4311-a883-e604d27e0230','','','The Hurston livery for the Aurora features the company\'s logo atop a grey base paint with yellow highlights.'), +(12735,'Carbon','Cargo','Cargo','28760563-352f-4248-ab8e-1b11b6b75c4f','','',NULL), +(12736,'Stud','Char_Head_Piercings','UNDEFINED','896f9e3b-24ee-432d-8a94-16598e509dba','','',NULL), +(12737,'Aztalan Arms','Armor','Arms','41aac635-0df3-41a0-8169-0db696b3659c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFear no frontier while wearing the Aztalan armor. This mixture of armor plating and reinforced fabrics will keep you safe yet swift on your feet. Tehachapi\'s masterful design gives the armor a subtle yet unmistakable frontier style that also providing ample storage. Suitable for everything from sand dunes to bustling backstreets, the Aztalan is the ideal choice for your next adventure.'), +(12738,'Gamma Plus \"Lumen\" (3x Holographic)','WeaponAttachment','IronSight','b6f797fe-9c44-4eb1-b719-9271d7c69de8','','','Manufacturer: NV-TAC \nType: Projection\nAttachment Point: Optic \nMagnification: 3x\nAim Time: +15%\nSize: 1\n\nNV-TAC\'s Gamma Plus is a 3x magnifier sight that utilizes ReadyBrite projection for quick target acquisition. Its durable design makes it perfect for any tactical situation.\n\nThe \"Lumen\" edition is matte white.'), +(12739,'Raw Silicon','Cargo','Cargo','d3482cdd-526a-4faf-ae36-20ff618b5bc7','','',NULL), +(12740,'Torpedo Burrito T-Shirt','Char_Clothing_Torso_0','UNDEFINED','7976b488-7caf-4bb3-8b97-73601177ef51','','','Show your affinity for the meal guaranteed to destroy your hunger. This ultra-soft natural fiber shirt features the Torpedo Burrito logo on the front and their very appropriate catch phrase \"Unleash A Payload of Flavor\" on the back.'), +(12741,'Chamar Pants','Char_Clothing_Legs','UNDEFINED','9149b166-8777-4d0e-90ae-9f9d9d883994','','','Carrying Capacity: 1K µSCU\n\nDecades of design experience helped DMC make the Chamar pants ready for any adventure. The pants utilize a unique seam design to deliver durability while maintaining flexibility. A built-in belt ensures an ideal fit, while leather front pockets and a padded back-panel provide rugged reinforcement where needed most.'), +(12742,'Carryable_1H_CY_garnish_cherry_1_a','Misc','UNDEFINED','092e3d4a-f546-4c64-9721-57ff00301d8c','','',NULL), +(12743,'Titanium (Ore)','Cargo','Cargo','7353a0af-be77-499c-9241-824f4a74a9ce','','',NULL), +(12744,'Radar_Display_VNCL_Stinger','Display','UNDEFINED','3563206d-81b0-42cf-b0c5-f179474d8cb3','','',NULL), +(12745,'Vehicle_Screen_MFD_Holographic_MISC_Hull_C_M','Display','UNDEFINED','e16ffabe-3ea2-4cb3-a9b3-d63e457d391c','','',NULL), +(12746,'ANVL_Pisces_Thruster_Main_Right_C8R','MainThruster','FixedThruster','e8176233-0641-42b0-8945-25ccdee4ffd2','','',NULL), +(12747,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','35e2b8cc-442d-4b71-b436-4240e716018d','','','Joker Defcon - Noise Launcher'), +(12748,'Tempest II-G Missile','Missile','GroundVehicleMissile','609ef22a-dfa4-4695-93ec-80019ce2242a','','','Manufacturer: Firestorm Kinetics \nTracking Signal: Cross Section \nSize: 2 \n\nThe Tempest was designed with nothing but annihilation in mind. Utilizing FireStorm Kinetics\' targeting technology, this proximity missile locks onto a target\'s cross section to draw conflicts to a swift conclusion. Note: This missile may only be launched by ground vehicles.'), +(12749,'Ship Ammunition','Cargo','Cargo','0ace073a-7aeb-4e13-977f-df5f40a84e31','','',NULL), +(12750,'AAT-34 Turret','Turret','MannedTurret','d7345b0b-2640-48e5-b7d3-874ac3f0f961','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(12751,'Spirit Crusader Livery','Paints','UNDEFINED','c99adf21-5198-4a90-b950-1221fe04975a','','','The Crusader livery for the Spirit features the company\'s logo atop a light blue base paint with black and white highlights.'), +(12752,'GCD-Army Backpack','Armor','Backpack','d3814df9-6fca-4ecc-aad7-6cbe2e4d8066','','','Item Type: Medium Backpack\nCarrying Capacity: 105K µSCU\nCore Compatibility: Medium & Heavy \n\nHeaded to the front lines? Bring everything you need and more with the GCD-Army Backpack. With an impressive carrying capacity and an outer shell made from an impact-resistant composite, it\'s the perfect way to ensure your valuables stay safe during the heat of combat.'), +(12753,'RSI_Constellation_Aquila_Thruster_Mav_Joint','ManneuverThruster','JointThruster','5ba6ffd4-2263-408b-966f-05c0a9ece08e','','',NULL), +(12754,'SLAM','Cargo','Cargo','d15c550b-4608-4a0b-a0b2-6fc8ded7520b','','',NULL), +(12755,'Redfin Energy Modulators','Cargo','Cargo','31230d21-e69d-4823-8cc0-ed7b6e708581','','',NULL), +(12756,'Detara Jacket Silvertusk','Char_Clothing_Torso_1','UNDEFINED','d3142e65-41d8-4318-906b-b55fcf6d170e','','','Carrying Capacity:1000 µSCU\n\nThe Detara Jacket by Habidash weaves several long panels of durable fabric together to create a unique silhouette well suited to harsh environments.'), +(12757,'INTK_AEGS_Sabre_Peregrine','FuelIntake','Fuel','8c41985f-dd50-45df-b462-36a934ef2d44','','',NULL), +(12758,'MASTER_screen_16x9_MiningKiosk','Display','UNDEFINED','8069e577-737b-4f18-9bef-2799ab78d67a','','',NULL), +(12759,'Waldron Jacket Black','Char_Clothing_Torso_1','UNDEFINED','153c23bc-b453-4183-9139-f5dbd282dc22','','','Carrying Capacity: 1K µSCU\n\nThe Waldron suit exudes sophistication by fusing classic style with contemporary flourishes. OpalSky redefines success with this geometric patterned jacket, featuring a pinstriped false-shirt and tie layered underneath, plus a unique split-seam back.'), +(12760,'Manaslu Jacket','Char_Clothing_Torso_1','UNDEFINED','1219dabc-5ff1-4025-851e-752ad5f3478c','','','Carrying Capacity: 5K µSCU\n\nThe Manaslu from EvaLight\'s asymmetrical design is only one of its unique attributes. Made from a patented blend of fabrics, this jacket\'s surprisingly lightweight insulation will keep you warm in the coldest corners of the universe. \n\nWomen\'s sizes currently out of stock.'), +(12761,'Door Control','Door','UNDEFINED','c82dde7d-3702-479a-8ccf-f63c3ab7aaac','','',NULL), +(12762,'TrueDef-Pro Arms Black/Silver/Green','Armor','Arms','eeb40c6b-f741-41e3-9ff9-7b21228f981f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(12763,'SCItemDisplayScreen_NewsScreen','Display','Default','fec969db-0b8a-4764-ac9a-07eba57903f3','','',NULL), +(12764,'Door Control','Door','UNDEFINED','79d5557d-f124-481a-867c-f46c8016032a','','',NULL), +(12765,'Anvil F7C-M Mk II Missile Rack','MissileLauncher','MissileRack','490389e3-4372-4d22-8a92-33fde65fac50','','','Item Type: Missile Rack\nManufacturer: Anvil Aerospace\nSize: 4\nMissiles: 8xS1\n \nBespoke missile rack for the Anvil F7C-M Super Hornet Mk II that fires eight S1 missiles.'), +(12766,'BEHR_BallisticRepeater_PowerArray_S2','WeaponAttachment','PowerArray','742ec6a4-226e-4d3a-a9ab-ea92e6908e03','','',NULL), +(12767,'stand_shop_medium_QTDrive','ShopDisplay','UNDEFINED','80b798f8-249f-4c45-b6a8-3f0e1d96d5f3','','',NULL), +(12768,'CSP-68M Backpack','Armor','Backpack','f5fbd0ef-8f54-47a5-94ff-f7f9b4c323d3','','','Item Type: Medium Backpack\nCarrying Capacity: 70K µSCU\nCore Compatibility: Medium & Heavy\n\nBe ready for any situation with the CSP-68M Backpack. Originally designed for the rigors combat support, this medium backpack has become popular thanks to its durability and a patented core connector that helps the CSP-68M sit comfortably and balanced on the back.'), +(12769,'Strata Arms Pyrotechnic Edition','Armor','Arms','fb5abac9-35bc-4ee3-800e-f5ff709720dc','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. This edition features the colors and logo of the now defunct Pyrotechnic Amalgamated.'), +(12770,'Locker_Spacesuit_Lootable','Usable','UNDEFINED','e5f8b051-bf52-4ea9-adbe-03e562b92444','','',NULL), +(12771,'DRAK_Corsair_Thruster_Retro_A','ManneuverThruster','UNDEFINED','4531f2eb-8e0e-4ffd-8fed-07d321e225bf','','',NULL), +(12772,'bottle_drink_1_substitute_shop_4x5_a','ShopDisplay','Default','bae86268-1cef-4916-8097-89632a73bed5','','',NULL), +(12773,'Pampero Boots Purple','Char_Clothing_Feet','UNDEFINED','061dd6f4-adf6-4ec0-b667-0278807063ec','','','The Pampero are sleek ankle high boots feature lightweight yet durable soles to make it feel like you\'re walking on clouds even when trekking across the most unforgiving terrain.'), +(12774,'WeaponMount_Gun_S1_DRAK_Cutlass_Steel_Rear','WeaponMount','WeaponControl','e95f9256-e32c-4e7c-ae1c-4db28ca47ad9','','',NULL), +(12775,'Stirling Exploration Helmet','Armor','Helmet','90a3923f-ba5d-403b-a0e5-c85290a22e1e','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nDesigned to withstand inhospitable environments, the Stirling Exploration Suit provides a base level of protection from environmental hazards including radiation. Combining Caldera\'s advanced insulation fabrics with sophisticated polymers, the Stirling is able to safeguard the wearer whilst minimizing disruption to movement. Additionally, a self-cleaning system automatically activates after radiation exposure to expunge dangerous excess down to nominal levels. This helmet is only compatible with the Stirling Exploration Suit.'), +(12776,'Manned Turret','TurretBase','MannedTurret','2df72c31-934f-44c0-b80d-66dd6d48d9dc','','',NULL), +(12777,'Utensil_Bowl','Misc','UNDEFINED','393307a6-0eae-43e9-a9f9-6e2b34c3544a','','',NULL), +(12778,'Weapon_Rack_1_NONE_SMG_Common_001','Usable','UNDEFINED','b75e4aef-3ce0-4f01-bec7-d0837f00b80b','','',NULL), +(12779,'Glas_Beer','Misc','UNDEFINED','c8a195bc-fad2-4992-b4df-94121a78a6b3','','',NULL), +(12780,'PAB-1 Arms Yellow','Armor','Arms','19986a8a-ecfa-4f0c-ac68-47839a6e80a6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(12781,'RSI_Constellation_SCItem_Seat_Archimedes','Seat','UNDEFINED','ab1515e2-eb8f-4c92-b090-f0d84f240eed','','',NULL), +(12782,'Enkel Shirt Sirocco','Char_Clothing_Torso_0','UNDEFINED','7df3a63a-a8cf-4a21-a725-c84f968ae64e','','','Habidash\'s Enkel is a simple, no-frills shirt designed to be comfortable, first and foremost.'), +(12783,'Venture Legs Ascension','Armor','Legs','3e7ea8a4-9e62-454a-a528-fcae943d38ae','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRobert Space Industries’ Venture Explorer Suit provides exceptional protection against the dangers of space. Designed for those who don\'t know where their next adventure might go, the suit combines comfort and safety without sacrificing mobility. This special Envy edition inspired by the Coramor festival features a vibrant pink and purple color scheme for the most enthusiastic of lovers.'), +(12784,'RSI_Apollo_EmergencyLights_Left','AttachedPart','UNDEFINED','3054ed67-35b4-4979-9473-9e52b6f6a5a1','','',NULL), +(12785,'MOLE Pyrotechnic Livery','Paints','UNDEFINED','9304dc22-42aa-4b80-b48c-4d343e7093fd','','','Commemorating the ambitious but ultimately ruinous mining company, the Pyrotechnic livery displays the lively yellows and cooling blues that represented the business while it was still operational.'), +(12786,'Manned Turret','TurretBase','MannedTurret','3f3e91f6-cc1e-4616-9728-56459a122a6b','','',NULL), +(12787,'Door','Door','UNDEFINED','201aff6c-168b-40a4-890e-0f4c1f75d2f5','','',NULL), +(12788,'Fractus Gloves Yellow','Char_Clothing_Hands','UNDEFINED','15b3b18c-6370-4fa1-9a05-458b76f00f46','','','Developed for work sites, but refined enough for everyday use, the Fractus gloves layer StretchStrong fabric for a tight yet breathable fit. Reinforced knuckle plating and scaled fingertips provide extra durability and a stylish flourish.'), +(12789,'Audio-Visual Equipment','Cargo','Cargo','601ef496-22d0-403f-9de3-d9a1869ac4dc','','',NULL), +(12790,'Fortifier Helmet Maroon','Armor','Helmet','4d3306d3-f749-4422-80a4-06705556e963','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nProtect your most valuable asset with the Fortifier. Intended for extremely hostile environments, this heavy helmet makes up for its limited visibility with extra plating that protects the neck and back of the head.'), +(12791,'Retaliator Ship Armor','Armor','Medium','53fa65f0-1288-4ba7-81da-086230e37a28','','','Retaliator Ship Armor'), +(12792,'Door Control','Door','UNDEFINED','83c8350c-d54d-48cf-b392-d02a1cf380d4','','',NULL), +(12793,'Razor Aspire Livery','Paints','UNDEFINED','f4e0ed80-2182-43ff-adaa-018a68eb86b6','','','With the Aspire livery, blue and white combine to evoke both the colors and frigid temperatures of New Babbage. In honor of the landing zone that inspired it, the livery also features a depiction of the Aspire Grand building that dominates the city\'s skyline.'), +(12794,'Seat','SeatAccess','UNDEFINED','dcfe2bf3-fa73-44f5-a9ad-2f1798bbef8f','','',NULL), +(12795,'CRUS_Starlifter_Thruster_Mav_Front_M2','ManneuverThruster','JointThruster','587ba401-a257-45db-aff3-8dd5db683f29','','',NULL), +(12796,'TRGT. STATUS','Seat','UNDEFINED','9764bc4d-d1bb-406e-ab6d-d589a0a1fbb6','','',NULL), +(12797,'lt_tank_water_3_0125x0125x0125_a','Cargo','UNDEFINED','4b59eef2-44e6-4a5f-910a-08232b4c3f87','','',NULL), +(12798,'display_components_pallet_250x125x025_a_cooler','ShopDisplay','UNDEFINED','96f77f59-397c-4d16-971f-a6f7c72d4e88','','',NULL), +(12799,'Door','Door','UNDEFINED','1e7dc40c-986b-4213-8d40-b1a60a95f14e','','',NULL), +(12800,'Carryable_1H_CY_utensil_shaker_1_bottom_a','Misc','UNDEFINED','6289ffe5-3d16-4a37-9965-abb813397e99','','',NULL), +(12801,'KLWE_MassDriver_Barrel_S3','WeaponAttachment','Barrel','9771e843-52f7-45df-8911-152d0513a8ed','','',NULL), +(12802,'Morozov-SH Legs Crusader Edition','Armor','Legs','f5213686-ee6e-4633-926a-b5fc4179f3b2','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5K µSCU\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart. The Crusader Edition was made specifically for the company\'s security services.'), +(12803,'Medical Bed','Usable','UNDEFINED','c0cf975e-0306-469d-ac64-11d27ebfee81','','',NULL), +(12804,'Hurricane Stormbringer Livery','Paints','UNDEFINED','2dafe300-14ec-4a19-8379-f2a8c8033122','','','This custom Hurricane livery was created to celebrate the 2950 IAE on microTech. It blends black and electric blue to give the ship a cool new look.'), +(12805,'Caterpillar Crusader Livery','Paints','UNDEFINED','5e8f217f-449e-46b1-8ede-b78bd3257b45','','','The Crusader livery for the Caterpillar features the company\'s logo atop a light blue base paint with black and white highlights.'), +(12806,'ORC-mkV Legs Executive','Armor','Legs','5093dd01-c276-4fe0-a966-347443bab6c7','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(12807,'PAB-1 Arms Purple','Armor','Arms','46f303ef-6d23-42ae-bcd2-f42867677216','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(12808,'Nivala Shoes','Char_Clothing_Feet','UNDEFINED','6e812753-7ef7-4241-aea3-adbfae4390bf','','','The Alejo Brothers expertly engineered the Nivala shoes to provide high ankle support while remaining lightweight. The shoes mix the company\'s patented FullFlex rubber with synthetic nubuck leather for flexible yet strategic support, and feature cushioning on the heels and balls of the feet for supreme comfort.'), +(12809,'Avenger Olive Green Livery','Paints','UNDEFINED','b7956187-f53e-4710-bc65-ada2a2760e18','','','Customize your Avenger with this woodland green livery featuring silver accents.'), +(12810,'Ponos Boots Tan','Char_Clothing_Feet','UNDEFINED','71a869a5-74ec-4fd8-85a6-e1a5813615fc','','','Quite simply, R6 Pro\'s Ponos boots were built for backbreaking work. Constructed out of Thermosulate technology, these waterproof and insulated workboots are rated for sub-arctic environments while the composite outsole ignores hazards to maintain traction when you need it most.'), +(12811,'Station_DockingTube_Default','DockingCollar','UNDEFINED','67d2c85d-3aac-49da-b07e-5d4bab6054f0','','',NULL), +(12812,'Seat','Usable','UNDEFINED','62c2d461-cdd2-43a0-a25d-bc1a8ec87af9','','',NULL), +(12813,'Gadget_Cabinet_kegr_fire_extinguisher_NG','Usable','UNDEFINED','c2a8a6dc-45be-42e1-bacf-45c035a4aedc','','',NULL), +(12814,'Door Control','Door','UNDEFINED','36007c31-6c33-43aa-8a28-788386fb6403','','',NULL), +(12815,'Lunes (Spiral Fruit)','Cargo','Cargo','5f2bd3e3-cd61-4411-9095-84da963b9b3d','','',NULL), +(12816,'Nova','QuantumDrive','UNDEFINED','50a21fb7-c45d-408a-8aa3-4d12e1728811','','','Item Type: Quantum Drive\nManufacturer: RAMP Corporation\nSize: 2\nGrade: C \nClass: Stealth\n\nDon\'t draw attention to yourself with the Nova, which is RAMP Corporation’s base, medium-sized stealth quantum drive.'), +(12817,'bottle_water_1_tray_b_1Port','ShopDisplay','Default','e9a228e6-2048-43a0-a6a4-4a3299971c70','','',NULL), +(12818,'Strata Legs Hurston Black','Armor','Legs','8e6d5ab6-7135-4129-b302-30e355fa3589','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 10k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Hurston Black variant was made specifically for the company.'), +(12819,'Seat','Usable','UNDEFINED','3dd2aecc-acc4-47e1-8aef-601d5ead007a','','',NULL), +(12820,'Threshold Toxic Fog Pants','Char_Clothing_Legs','UNDEFINED','e1e1e991-ef23-4f2f-9034-bb0050be223a','','','Carrying Capacity: 0.5K µSCU\n\nThe company\'s classic pant, the Threshold line features a glossy faux-organic exterior, an attached belt, and reinforced knee and shin pads. Additionally, the pants are decorated with non-constructive stitching and include two hip pockets. The Toxic Fog edition features Vaporwear in green across the front left leg.'), +(12821,'AEGS_Vanguard_Thruster_Main_01','MainThruster','FixedThruster','2f705928-ed1b-4090-b987-06956afec140','','',NULL), +(12822,'Seat','SeatAccess','UNDEFINED','f455b66a-cdcd-48e2-abbb-2c7fa7e3bd5d','','',NULL), +(12823,'Seat','Usable','UNDEFINED','c73f59a0-7b88-4bba-b8d0-73df591d4402','','',NULL), +(12824,'Vehicle_Screen_MFD_Holographic_MISC_Fortune_ML','Display','UNDEFINED','3e329e32-6bb4-4e85-a1fb-a3638a1f5973','','',NULL), +(12825,'AEGS_Vanguard_Hoplite_Thruster_Main_01','MainThruster','FixedThruster','ce6d387b-b3eb-41bc-a754-4a9a92e89ddb','','',NULL), +(12826,'Door Control','ControlPanel','DoorPart','9d286ef5-2fd5-4f37-839e-ef678093308b','','',NULL), +(12827,'Strode Pants Grime Blue','Char_Clothing_Legs','UNDEFINED','6e952499-cd15-4bcc-bf81-85f960a1055c','','','Strode Pants Grime Blue'), +(12828,'KLWE_MassDriver_PowerArray_S2','WeaponAttachment','PowerArray','4cef2875-72fe-4f35-83f4-5fa023effb39','','',NULL), +(12829,'Asgard 2955 Ship Showdown Poster','Misc','Utility','9ac8aa42-e352-4722-a3f8-23d235edc167','','','Featuring a massive ramp designed to accommodate large ground vehicles and the rapid deployment of troops and supplies, it\'s no surprise the Anvil Asgard found itself in the final four of the 2955 Ship Showdown. This poster honors the accomplishment with an image of the ship streaking across colorful, cloud-filled sky.'), +(12830,'ORIG_315p_Thruster_Main','MainThruster','FixedThruster','74987a1a-7c8f-4c02-aae8-655f1aec9458','','',NULL), +(12831,'C1 Spirit 2954 Ship Showdown Poster','Misc','Utility','00d16520-df84-4d78-9549-9f2056a2d5b2','','','With enough versatility to tackle multiple roles and unpredictable jobs, it\'s easy to understand why Crusader\'s C1 Spirit was part of the 2954 Ship Showdown\'s Final Four. A multi-purpose starship tuned for mid-range cargo delivery and courier work, this poster celebrates the C1 Spirit and Crusader Industries\' commitment to excellence.'), +(12832,'Corsair 2953 Ship Showdown Poster','Misc','Utility','53cf3e26-8699-4d4d-b989-84d5590c5b30','','','Congratulations to the Corsair for winning the 2953 Ship Showdown. This poster celebrates the victory of this iconic, asymmetrical Drake Interplanetary ship by capturing it mid-conflict with guns blazing.'), +(12833,'Intrepid Epoque Livery','Paints','UNDEFINED','ef030ea5-66b1-4cf0-a14d-bfcdcc966a6c','','','The Epoque livery features a navy and black coloring and is finished with gold detailing.'), +(12834,'Door','Door','UNDEFINED','3c2c9370-4ed7-4f54-9f60-a55fe378a3d3','','',NULL), +(12835,'Constellation Nightbreak Livery','Paints','UNDEFINED','64876cf8-2ff4-4582-877e-01820f8fea17','','','Discreetly soar through the night sky in the Constellation with the Nightbreak livery, which is primarily black with red highlights.'), +(12836,'Morozov-SH Arms Thule','Armor','Arms','b8123f69-69af-48cf-acb5-e015f28467d4','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(12837,'AEGS_Sabre_Firebird_Winglet_Left_Collector','Misc','UNDEFINED','47ac894f-6591-463b-870a-0a9fc9b1afbb','','',NULL), +(12838,'Quantainium','Cargo','Cargo','a86bb1be-08dc-4ee2-995a-0d83f7e75c4a','','',NULL), +(12839,'Internal Tank','QuantumFuelTank','QuantumFuel','41babbef-7581-49c4-a98f-3982e9887251','','',NULL), +(12840,'Vehicle_Screen_Physical_Holo_Right','Display','UNDEFINED','7116e04a-c5ff-489a-8126-e7d0575c6d15','','',NULL), +(12841,'heavyArmor_core_skelExt_test','Armor','Torso','2327979a-29ed-486e-a6e7-e971a2bd114a','','',NULL), +(12842,'Ardent Boots Olive','Char_Clothing_Feet','UNDEFINED','cdb7c21d-bdda-40f5-942c-b1fb1234e8cb','','','Who says NorthStar can\'t keep it pro? The Ardent boot features a molded rubber sole and all-weather construction to withstand a constant battery from the elements.\n\nWomen\'s sizes currently out of stock.'), +(12843,'MASTER_ht_crate_1SCU','Cargo','UNDEFINED','4024026d-3919-4007-ae5d-edca53e54a03','','',NULL), +(12844,'PAB-1 Legs Purple','Armor','Legs','b29cf453-505d-4b48-8944-d6deb6205037','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(12845,'Fortune Sunspot Livery','Paints','UNDEFINED','9f767019-5ac2-4b26-9c03-9b4b73770f0f','','','The deep contrast of the warm orange against the cold black of the Sunspot livery highlights the distinctive profile of the Fortune.'), +(12846,'ARGO_MPUV_1T_Thruster_Aux_Fixed_03','ManneuverThruster','FixedThruster','09e60ecc-2b4e-4650-9e48-c61f59a7ed56','','',NULL), +(12847,'Argus Helmet Black/Silver/Green','Armor','Helmet','d9423d1d-de54-4712-a8ec-418d95792184','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s Argus helmet utilizes advanced multi-layered composite construction to provide incredible protection from weapon fire as well as environmental hazards. The tinted visor offers a wide field-of-view to improve situational awareness and unrestricted movement.'), +(12848,'Potassium','Cargo','Cargo','1b905675-2e46-4f16-9d1e-871248a02eb4','','',NULL), +(12849,'Remote Turret','Turret','GunTurret','15e36eee-4ea4-4e13-99e0-57fa58dd9765','','','Remote Turret'), +(12850,'CNOU_Nomad_Thruster_Mav_Joint','ManneuverThruster','JointThruster','507ede92-d76f-43d5-86ba-173b2689f3e1','','',NULL), +(12851,'TrueDef-Pro Core Black/Pink/Purple','Armor','Torso','7ba7671d-977d-4909-9a26-2448308291b6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(12852,'Seat','Usable','UNDEFINED','ab80f3bf-199b-41fb-9d64-143fc9786ab4','','',NULL), +(12853,'Medical Bed','Usable','UNDEFINED','368b49db-90aa-42b7-bd7d-701cf61c0d10','','',NULL), +(12854,'Torrent Module','MiningModifier','Gun','d1b1792f-21bc-456f-ae53-20f301920a55','','','Manufacturer: Thermyte Concern\nItem Type: Mining Module (Passive)\n\nOptimal Charge Rate: +30%\n\nOptimal Charge Window Size: -10%\n\nSave time while mining with the Torrent Module. It requires steady hands to hit the sweet spot but accelerates the charge rate once there.'), +(12855,'Decari Pod','Cargo','Cargo','4a53297d-6e42-43aa-a6a3-7c333d0fa17d','','',NULL), +(12856,'Seat','Usable','UNDEFINED','37e21a8f-b3a1-4b0f-8c0c-9a684a0d5a9c','','',NULL), +(12857,'Stratus Pants Purple','Char_Clothing_Legs','UNDEFINED','9901cce1-5d50-4a4f-8b14-d47816ac4fae','','','Carrying Capacity: 0.5K µSCU\n\nCasual comfort that you can wear anywhere. The Stratus pants feature a soft comfort waistband that perfectly embraces your hips, and distinct reinforced paneling to ensure long wear and supreme style.'), +(12858,'Reliant Toshima Turret','Turret','GunTurret','0dee00c9-4547-4a98-ab0a-57911c631a3e','','','Item Type: Turret (Reliant Exclusive)\nManufacturer: MISC\nSize: 4\n\nSpecifically built to be used exclusively on the MISC Reliant, the Toshima turret system comes with a camera that can be remoted into while providing a wide range of motion for two Size-2 weapons.'), +(12859,'Corundum','Cargo','Cargo','5b87dfc3-f5cc-4eab-90d2-5f13eb5e444b','','',NULL), +(12860,'Cruiser Dog','Food','Junk','bbe3f611-07ba-4029-88b3-1b8bd300562b','','','NDR: 34\nEffects: Dehydrating, Hyper-Metabolic\n\nA griddled hot dog topped with diced tomatoes, diced onions, sliced chilies, and a drizzle of mayonnaise.'), +(12861,'Book','Misc','UNDEFINED','4b8701fa-bcad-46b8-99f8-a84acb070681','','',NULL), +(12862,'AEGS_Vanguard_Hoplite_Thruster_Main_02','MainThruster','FixedThruster','af63298e-f24b-424c-8163-9faa23830e63','','',NULL), +(12863,'INTK_VNCL_Glaive','FuelIntake','Fuel','04a5f8df-8eee-4390-a9d2-16e7de1918f0','','',NULL), +(12864,'ANVL_Hornet_F7CM_Mk2_Thruster_Retro_Left','ManneuverThruster','Retro','5ef0bfbd-9d71-4465-aad7-29262c382011','','',NULL), +(12865,'Door Control','ControlPanel','DoorPart','77943466-ab96-4308-9c38-6992155b8771','','',NULL), +(12866,'f_human_mannequin_legacy_outlaw_light','ShopDisplay','UNDEFINED','a01767ed-a364-4d59-81d4-643fc502e76b','','',NULL), +(12867,'Mivaldi Pants Purple','Char_Clothing_Legs','UNDEFINED','765597cb-b501-42e9-b42b-a3598dce5433','','','Carrying Capacity: 0.5K µSCU\n\nCut to a narrow fit, OpalSky\'s Mivaldi pants feature bold asymmetrical design with smart yet casual dual material styling, making it the perfect addition to any wardrobe.\n\nWomen\'s sizes currently out of stock.'), +(12868,'Hercules Starlifter Timberline Livery','Paints','UNDEFINED','80cf5c5f-067f-4608-96d2-fd9e5f66d2ad','','','Customize your Hercules Starlifter with the Timberline livery that\'s olive green with orange accents.'), +(12869,'MISC_Starlancer_Thruster_Front_VTOL','ManneuverThruster','FixedThruster','673c8af2-21d2-4db6-893e-0ff58f2e7c02','','',NULL), +(12870,'Seat','Usable','UNDEFINED','32327282-3e7a-4b56-93eb-e7f59acf6009','','',NULL), +(12871,'Carryable_1H_CY_antagonist_1_a_PlayerCannotUse','Misc','UNDEFINED','2f38784a-9b82-4e78-a853-c1c78c9314ed','','',NULL), +(12872,'Yormandi_Weapon','Weapon','Medium','71909a88-9e16-43cf-b3e2-995e9f4dabee','','',NULL), +(12873,'DRAK_Herald_Thruster_Mav_Fixed_Top','ManneuverThruster','FixedThruster','cbd0ad81-9356-48e9-a097-27868d64fd2a','','',NULL), +(12874,'Door Control','ControlPanel','DoorPart','9072623c-ccae-4a63-9b63-cbf73d7f4f0a','','',NULL), +(12875,'Star Kitten Racing Helmet','Armor','Helmet','14cf6134-2f3d-4902-9894-1c0dfd530b37','','','Item Type: Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThe famous Star Kitten racing helmet worn by Team Takahashi racers can now be yours. It\'s vibrant pink with Star Kitten iconography on the front and back, plus playful teal whiskers across the faceplate.'), +(12876,'Snaggle Stick (Tikoro Bite)','Food','Bar','92ef1f8b-0fb4-49cc-9f7b-b9bd023c1e6b','','','NDR: 14\nEffects: Hypertrophic, Dehydrating\n\nSnag one of these premium protein sticks and experience the ultimate in \"real meat\" snacking. Tikoro Bite Snaggle sticks up the heat with a signature spice blend that\'ll have you sweating through your helmet.'), +(12877,'Morozov-SH-C Helmet Iceflow','Armor','Helmet','de174fff-a660-4290-ba49-63ee75d217c9','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(12878,'Morozov-SH-C Helmet Brushdrift','Armor','Helmet','5661d6f0-43a3-43ad-8983-7c558b157fb4','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(12879,'BANU_Defender_Thruster_Mav_Bottom','ManneuverThruster','JointThruster','f0aeb886-1cd0-487b-857c-5d28d0c0c698','','',NULL), +(12880,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','a3b2f085-073d-49b0-8c21-3c80a3bd4e49','','','Joker Defcon - Noise Launcher'), +(12881,'Livia Shirt','Char_Clothing_Torso_0','UNDEFINED','85e8ebae-1293-4e8e-b65a-63bb7a4840d1','','','MuyMuy\'s loose hooded shirt is an ultra-modern take on a classic look. The Livia features a soft knit blend, designed for comfort and elegance.'), +(12882,'MacFlex Core','Armor','Torso','f4769b2b-0997-4c68-8b47-38cc93041a22','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(12883,'Beacon','QuantumDrive','UNDEFINED','b5cbef86-f37f-4e05-8aff-e0f61afe166e','','','Item Type: Quantum Drive\nManufacturer: Wei-Tek \nSize: 1\nGrade: C\nClass: Military\n\nWei-Tek has made other mil-spec component manufacturers sit up and take notice with the introduction of the highly praised Beacon quantum drive.'), +(12884,'Revenant Pod','Cargo','Cargo','aa59b457-ec0a-44f3-a9e6-9ab728d6dc26','','',NULL), +(12885,'Seat','Usable','UNDEFINED','0d895565-713a-4350-9070-ea012f43647d','','',NULL), +(12886,'DRAK_Cutlass_Thruster_Maneuver_Front_Bot','ManneuverThruster','JointThruster','5fa0d263-62ce-4d08-b19a-2c81b15a7c37','','',NULL), +(12887,'GATS_BallisticCannon_Barrel_S1','WeaponAttachment','Barrel','5d42fb2a-f1dd-4e84-ad56-cb5259f35420','','',NULL), +(12888,'Projector_HUD_Pilot_X1','Display','UNDEFINED','79f5633b-f524-4f06-ae9b-d6d142126d15','','',NULL), +(12889,'DRAK_Cutlass_Thruster_Maneuver','ManneuverThruster','JointThruster','13eee13d-a9a1-4aad-9a33-ffc87f4912c6','','',NULL), +(12890,'SureGrip S2 Tractor Beam','TractorBeam','UNDEFINED','8c16ee3d-78fb-4fef-a369-b3d42952ec33','','','Manufacturer: Greycat Industrial\nItem Type: Tractor Beam\nMax Angle: 60°\nMax Range: 150 m\nFull Strength Distance: 75 m\n\nBacked by their certified Soft-Touch® guarantee, Greycat’s SureGrip tractor beam is a mainstay of its product catalogue thanks to its dependable range and control.'), +(12891,'Elevator','Elevator','UNDEFINED','d09a4ab5-5070-4c55-9b77-6790007f0d06','','',NULL), +(12892,'Yormandi Tongue','Misc','Harvestable','2845e7ee-2f52-471b-a0a7-05ca11908fe6','','','The yormandi uses its sensitive tongue to taste its surroundings and detect prey from great distances. Renowned for its complex, subtle flavor, the tip of this organ is sought after by culinary enthusiasts throughout the Empire.'), +(12893,'HRST_LaserScatterGun_FiringMechanism_S2','WeaponAttachment','FiringMechanism','5ee2438a-3d18-4e23-a847-b8d848ce918a','','',NULL), +(12894,'Seat','Usable','UNDEFINED','ed72c733-17fa-4440-a6ad-72c69ebac7d3','','',NULL), +(12895,'pacheco_outfit_02','Char_Clothing_Torso_1','Female','13539d87-bb9a-480d-96bf-5a0617a25a75','','','@LOC_PLACEHOLDER'), +(12896,'Bed','Usable','UNDEFINED','528e90fb-6d2a-463b-889d-81f5708448d2','','',NULL), +(12897,'Utensil_Plate_MacAndCheese','Misc','UNDEFINED','f176ac56-8d93-4e48-a535-599ec94773e9','','',NULL), +(12898,'Door_ChipReader_Vault_001','Door','UNDEFINED','610e1adf-a802-465d-9bb3-d789cb1993a3','','',NULL), +(12899,'Remote Turret','Turret','PDCTurret','d1880dee-f961-4a03-9d7b-b25fb76fa2ae','','',NULL), +(12900,'Flight Blade','FlightController','UNDEFINED','a1a74fb1-856b-4c6c-913a-816d17333b7d','','',NULL), +(12901,'Col_A_Airlock_Single_Small_Ext','Door','AirlockPart','2abdd81a-04bd-41c5-9d0a-75c2f777d1c4','','',NULL), +(12902,'Railing_Straight_2m_Lowtech_Open_A','Usable','UNDEFINED','1181baa8-7855-4838-a1aa-e5001f78acfa','','',NULL), +(12903,'StarBurn','PowerPlant','Power','1fc13db3-38bd-40b4-aada-3d4d665d1679','','','Item Type: Power Plant\nManufacturer: ACOM\nSize: 2\nGrade: B\nClass: Competition \n\nThe StarBurn power plant is another excellent addition to the ACOM line of components. This medium-sized component delivers solid performance without overheating, so you won\'t risk burning your hands while making important repairs on the fly.'), +(12904,'Cheese and Tomato Pizza (Slice)','Food','Consumable','50bf8193-f515-4364-a142-07d2adf9db3e','','','NDR: 22\nEffects: Dehydrating, Hyper-Metabolic\n\nA crisp crust topped with a fresh tomato sauce and melted cheese.'), +(12905,'stand_shop_small_Cooler','ShopDisplay','UNDEFINED','dfd8e51f-7985-49d9-bf66-6b23eb189f95','','',NULL), +(12906,'bar_box_snagglestick_tikoro','ShopDisplay','Default','7dc13c3c-2e60-436f-a060-490faf911be5','','',NULL), +(12907,'ORIG_350r_Thruster_Mav_Fixed_01_Top','ManneuverThruster','FixedThruster','cb968bf8-ad28-4ae5-93bc-979f847897ec','','',NULL), +(12908,'AIModule_Unmanned_PU_PDC','AIModule','UNDEFINED','15881eca-d6f4-47fc-a5bb-633ca4bba06b','','',NULL), +(12909,'MISC_Fury_Thruster_FixedMav_Bottom','ManneuverThruster','FixedThruster','347b5c12-71a3-4ee8-ab10-67e1cd617097','','',NULL), +(12910,'AEGS_Vanguard_SCItem_Seat_Bed_Upper_Sentinel','Seat','UNDEFINED','9785a15a-9391-4fbb-a614-2ccf161e153e','','',NULL), +(12911,'TRGT. STATUS','Seat','UNDEFINED','3920e7bc-d0d4-4520-92e6-7be113b0399b','','',NULL), +(12912,'Fortifier Helmet Base','Armor','Helmet','726203eb-24e1-4430-bd80-20e7b86f8e41','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nProtect your most valuable asset with the Fortifier. Intended for extremely hostile environments, this heavy helmet makes up for its limited visibility with extra plating that protects the neck and back of the head.'), +(12913,'X1 2954 Auspicious Red Dragon Livery','Paints','UNDEFINED','59a459cf-9cbd-4c6f-8cb5-4b5013cf205f','','','Seek peace and prosperity in the new year with the Auspicious Red Dragon livery. Outfit your ship with this bold red base paint complemented by gold accents and a stylized graphic of a dragon.'), +(12914,'CargoBox_050x050x050_Plastic_Stacked_3','Cargo','Cargo','18e98963-bbad-4f73-8e54-14d732e0300f','','',NULL), +(12915,'Flight Blade','FlightController','UNDEFINED','f48d2da6-6484-4f25-a29b-754464e83fb8','','',NULL), +(12916,'BEHR_LaserCannon_Barrel_S9','WeaponAttachment','Barrel','4d33fb97-a26b-4332-b4a2-d7805d13b865','','',NULL), +(12917,'ClipVest Work Harness Orange','Char_Clothing_Torso_1','UNDEFINED','4ffc6923-1ac6-4ee9-8a18-445ec049948f','','','Carrying Capacity: 2K µSCU\n\nStegman\'s ClipVest is a multi-purpose work harness that keeps your tools handy when and where you need them. Built from industrial strength materials, this harness offers a back piece to help alleviate strain and provide counterbalance.'), +(12918,'Door Control','Door','UNDEFINED','6fef2792-da2b-4023-8d09-ffe1dd4daebc','','',NULL), +(12919,'Door_NoRoomConnector_CSV_ComponentBay_Lifesupport','Door','UNDEFINED','2138df39-e8a9-4df5-a1e6-3c31895817cf','','',NULL), +(12920,'Vehicle_Screen_Physical_L21_R','Display','UNDEFINED','61d86cd1-0735-4d08-be22-5326e6ece4ae','','',NULL), +(12921,'Manned Turret','TurretBase','MannedTurret','8694d2bf-a5d9-476f-9b1e-478a4d299daf','','',NULL), +(12922,'GVSR Repeater','Weapon','Gun','537c6570-d7ec-45e7-9f71-5ac63a3893c6','','','Manufacturer: Behring\nItem Type: Laser Repeater\nSize: 2\n\nAegis commissioned Behring to design a laser repeater specifically for their Vanguard line-up. The result was the GVSR, which met Aegis exacting standards by delivering a steady rate of fire without overtaxing the ship\'s power plant.'), +(12923,'Seat','SeatAccess','UNDEFINED','7c334921-1347-44cd-a983-65fed6b86e48','','',NULL), +(12924,'Deo Shirt Yellow','Char_Clothing_Torso_0','UNDEFINED','09475a75-d375-477c-bfc4-ad6423f0ad6f','','','Fiore\'s Deo is a slim cut work shirt that\'s as practical as it is timeless. Featuring a high collar and metal neck clasp, the Deo has been a mainstay in business attire.\n\nWomen\'s sizes currently out of stock.'), +(12925,'INTK_MISC_Starfarer_Gemini','FuelIntake','Fuel','9863ca50-0aa3-4fce-bae9-31ac32c908d9','','',NULL), +(12926,'Campo Shoes Brick','Char_Clothing_Feet','UNDEFINED','baecfe80-30a7-4e69-8c60-84ce0dd20e20','','','Slip into comfort with the Campo shoes, which have a supportive midsole, cushioned footbed, and a molded, slip-resistant outsole. These ankle high slip-ons deliver an ideal fit thanks to two adjustable straps with metal clasps.'), +(12927,'Exo-8 Helmet (Used)','Armor','Helmet','f8debb4d-3803-48b8-b225-74350be60751','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -60 / 90 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing a large face shield and torches on each side, the Exo-8 helmet lets you keep your eyes on the prize. Gyson designers smartly integrated space-safe fabrics into the helmet, so it can provide the protection you deserve at a price that won\'t break the bank. \n\nThis used helmet has been certified space-safe but may contain cosmetic defects not seen on the standard model.'), +(12928,'Irradiated Kopion Horn','Misc','Harvestable','43b02152-357d-4ec6-ac98-5191bcd2d238','','','The horn of the kopion is made of a unique combination of bone and naturally-occurring carbon nanomaterials. When properly processed, it can be used to aid in bone regeneration with a far greater rate of success than lab-grown materials. This application has made it a valuable commodity.'), +(12929,'Door','Door','UNDEFINED','1c3f3404-32ab-4a06-9761-be6a75a30367','','',NULL), +(12930,'Reign-3 Repeater','Weapon','Gun','aa7c924e-3f3b-4cea-a948-77753e2b387e','','','Manufacturer: Hurston Dynamics\nItem Type: Laser Repeater\nSize: 3\n\nHurston Dynamics has partnered with Tumbril Land Systems to craft the powerful Reign-3 laser repeater specifically for the Storm assault vehicle\'s turret. Utilizing Hurston Dynamics\' proprietary cascade technology, the Reign-3 delivers increased performance and greater energy output as the frenetic pace of combat starts to heat up.'), +(12931,'WillsOp Long Look Radar','Module','UNDEFINED','02934e18-0210-4789-887c-1efcc8fc5008','','','Manufacturer: WillsOp\nItem Type: Radar\nSize: 5\n\nWhen the UEEN came to Anvil needing a ship to handle mobile C&C, Anvil turned to WillsOp, one of the most trusted names in scanning and deep-space radar. Together they developed the Long Look Radar (LLR) system as a way to upgrade the modern Hornets rather than developing an entirely new ship. Fully loaded with WillsOp’s suite of scan systems, the LLR now brings its raw analytical power to the civilian market, turning an already dependable vessel into a perfect scanning fighter.'), +(12932,'Carryable_1H_SQ_Datapad_Fluff_Orb_GenericGang_005','Misc','UNDEFINED','8c703def-f131-4797-a669-489d47b1b89b','','',NULL), +(12933,'Attrition-5 Repeater','Weapon','Gun','2c9b3880-a108-4746-a6cd-7e2b04feee36','','','Manufacturer: Hurston Dynamics\nItem Type: Laser Repeater\nSize: 5\n\nMore than a simple size five laser repeater, the Attrition-5 from Hurston Dynamics features advanced cascade technology to allow the weapon significant performance improvements the longer it sustains its energy output.'), +(12934,'Internal Tank','QuantumFuelTank','QuantumFuel','dc7d2f9d-19ec-4c74-a554-3c97b4432844','','',NULL), +(12935,'Seat','Usable','UNDEFINED','1e6fb137-0e53-4ef8-b054-49a76d78f3f0','','',NULL), +(12936,'Inert Materials','Cargo','Cargo','104ceb6e-4d78-428e-8a02-2620ce1e1ecd','','',NULL), +(12937,'RSI_Zeus_ES_Thruster_Main_Bottom_Right','MainThruster','UNDEFINED','878210ac-4b9a-4fef-9495-38117d3afc49','','',NULL), +(12938,'Tin','Food','Tin','ca6bdb21-f83d-4b8e-8c10-0c76e828cb7c','','',NULL), +(12939,'PTV Cherry Livery','Paints','UNDEFINED','fec9a725-e161-4167-839c-a77beb0cadd4','','','Speed isn?t just about mechanics, it?s about perception. Your Greycat will look and feel faster without changing a thing. The Cherry livery topcoat system uses cutting-edge raw materials and composition coating technology to maintain its glossy finish.'), +(12940,'Defiant','PowerPlant','Power','ad59f651-83d0-42f3-839a-8f055243ba6b','','','Item Type: Power Plant\nManufacturer: Juno Starwerk\nSize: 0\nGrade: B\nClass: Industrial\n\nIn this cutthroat universe, the competition doesn’t stop when you do. That’s why you need the Defiant industrial power plant equipped in your vehicle. It’s optimized by the experts at Juno Starwerk to provide unmatched performance compared to other components in its class.'), +(12941,'RSI_Aurora_ES_Thruster_Retro','MainThruster','FixedThruster','29100bb6-46e1-4146-84e1-d6036299a4b9','','',NULL), +(12942,'Carryable_1H_CY_drug_painkillers_2_d','Misc','UNDEFINED','6f3d8751-830e-4741-902b-699659406044','','',NULL), +(12943,'fusepanel_col_b','Cargo','UNDEFINED','238d0cf6-d8f0-4dce-a44c-ecbe8346f643','','',NULL), +(12944,'ARMR_DRAK_Cutlass_Steel','Armor','Medium','87d98d4c-6422-4ebf-956f-fc451ef16001','','',NULL), +(12945,'Ventra Gloves Grey','Char_Clothing_Hands','UNDEFINED','0a78e20c-f62d-424a-9f49-2445d5c1bb8f','','','Keep your hands warm and dry with Fiore\'s Ventra gloves. Microstitching creates a snug, tailored fit to keep you looking stylish and warm.'), +(12946,'Agricium','Cargo','Cargo','e18c83d7-a53b-400e-909d-4696495454f5','','',NULL), +(12947,'Dominance-1 Scattergun','Weapon','Gun','beabe016-3fb4-4e3f-b464-374076d91f04','','','Manufacturer: Hurston Dynamics\nItem Type: Laser Scattergun\nSize: 1\n\nThanks to its integration of Hurston Dynamics\' laser cascade technology, the Dominance-1 scattergun is able to deliver more damage the closer the size one weapon operates to its maximum safe thermal capacity.'), +(12948,'Seat','Usable','UNDEFINED','a7c3a50e-3e4d-45e9-8625-ca0afecb6cee','','',NULL), +(12949,'P8-AR \"Blackguard\" Rifle','Weapon','Medium','3e59decb-1be4-4477-b3f5-36114f798cab','','','Manufacturer: Behring \nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 15\nRate Of Fire: 475 rpm\nEffective Range: 100 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nThe direct descendant of the UEE Marines standard issue weapon, Behring has crafted the semi-automatic P8-AR to provide civilians across the empire a straight-forward and dependable weapon to defend themselves against aggressive hostiles. Outfitted with a matte black paint, the \"Blackguard\" special edition rifle is perfect for night operations.'), +(12950,'Seat','Usable','UNDEFINED','37bd5537-ba6b-4de6-8f0c-e382c74c380f','','',NULL), +(12951,'Door Control','Door','UNDEFINED','883e8f41-51f9-4453-9d4f-7b69b1371020','','',NULL), +(12952,'ARMR_CRUS_Starlifter_M2','Armor','Medium','9742081b-4a7e-42e1-952e-0915241961ca','','',NULL), +(12953,'Dashboard','SeatDashboard','UNDEFINED','cfae056c-8bcb-47ea-a176-b564ea42466b','','',NULL), +(12954,'mobiGlas Sand Casing','MobiGlas','Personal','b486e559-275d-45f9-ad66-499bbe55ada7','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(12955,'Seat','Usable','UNDEFINED','610dd205-a71a-408e-9e10-1a824df69c06','','',NULL), +(12956,'TE_weapon_box__klwe_rifle_energy_01','Misc','UNDEFINED','0e58d5cc-5245-4383-a0c4-4683c865952d','','',NULL), +(12957,'Door Control','Door','UNDEFINED','f8a3ec3e-6fcf-48c7-9734-7366a346192d','','',NULL), +(12958,'Vulture 2953 Best in Show Livery','Paints','UNDEFINED','ddcb5aa0-f3f7-4a18-80a1-840e13ba5b1c','','','Celebrate the Drake Vulture being voted a Best in Show finalist for 2953 with this pearlescent purple and cyan livery.'), +(12959,'DustUp Core Scorched','Armor','Torso','b8701dff-1f61-4cf3-954b-524bb66b4089','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -60 / 90 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light \n\nThe DustUp has your back if you’re looking to get into some trouble. The body plating is built off of the same CDS undersuit used by the UEE Marines, it adds reconstructed Omni-Role mkII pieces to give you solid protection against incoming fire, but the real gem is the modified helmet. That thing was built to withstand explosions, so it should totally protect you against some shots. The whole thing’s been reasonably tested against vacuum too, so you can feel free to EVA all you want without worrying about dying.'), +(12960,'GVSR Repeater','Weapon','Gun','2f68375a-3c66-4e02-9d1f-5d7f37c12725','','','Manufacturer: Behring\nItem Type: Laser Repeater\nSize: 2\n\nAegis commissioned Behring to design a laser repeater specifically for their Vanguard line-up. The result was the GVSR, which met Aegis exacting standards by delivering a steady rate of fire without overtaxing the ship\'s power plant.'), +(12961,'Pint Glass','Drink','UNDEFINED','9edc6ea5-fa76-4617-9a33-33b8ee756ba1','','','A large drinking vessel able to hold a pint (568 ml) of liquid and made from tempered glassware.'), +(12962,'Enkel Shirt','Char_Clothing_Torso_0','UNDEFINED','a98c29e0-4cc2-4023-91d0-4133f5583332','','','Habidash\'s Enkel is a simple, no-frills shirt designed to be comfortable, first and foremost.'), +(12963,'Ponos Boots Seagreen','Char_Clothing_Feet','UNDEFINED','b5f12620-8f8f-44ad-9880-943be43b1a1a','','','Quite simply, R6 Pro\'s Ponos boots were built for backbreaking work. Constructed out of Thermosulate technology, these waterproof and insulated workboots are rated for sub-arctic environments while the composite outsole ignores hazards to maintain traction when you need it most.'), +(12964,'Shizhen Surgical Head Cover','Char_Clothing_Hat','UNDEFINED','02d7d9cb-80f2-45af-aa4d-e9bfdd00c560','','','The Shizhen surgical head cover provides complete coverage during medical procedures. Lightweight, breathable and anti-bacterial, the head cover even includes a tinted lens to reduce heat and eye strain that may occur during procedures involving lasers.'), +(12965,'DockingTube_Fuel_Ports_ANVL_Pisces','DockingCollar','UNDEFINED','a60fba3b-1afb-485e-b9e5-80c7ef96b9ef','','',NULL), +(12966,'Internal Tank','FuelTank','Fuel','29ce40e8-2088-478a-a492-23fe44ec6c6f','','',NULL), +(12967,'Paint_Perseus_Green_Green_Black','Paints','UNDEFINED','d40f3949-cd6f-4f50-8add-6e1cea833294','','',NULL), +(12968,'can_drink_3_energy_a','Drink','Can','c687f8af-79b2-4eee-ae05-2eea5aa99c82','','',NULL), +(12969,'Standing_Harness_ESPR_Prowler_A','Usable','UNDEFINED','bd2b2e67-abc7-4763-9916-53215ee689b8','','',NULL), +(12970,'Table_Booth_2_Seat_ARGO_RAFT','Usable','UNDEFINED','8bf8392e-8ace-43c1-a9e7-eeadad54aa56','','',NULL), +(12971,'AEGS_Javelin_SCItem_Seat_CoPilot','Seat','UNDEFINED','001ed5c3-d606-4063-b75e-5285ad41de6d','','',NULL), +(12972,'Carryable_1H_CY_fruit_alien_4_a','Food','Plant','24dad260-3901-4c18-b25d-116d2993bac3','','',NULL), +(12973,'RSI_Hermes_LightCap_Center','AttachedPart','UNDEFINED','36879b18-d594-4b9c-9b47-2f5924fed8ca','','',NULL), +(12974,'Davlos Shirt Mustard','Char_Clothing_Torso_0','UNDEFINED','836a167c-2da3-4742-b528-186e22f8132e','','','Live in comfort with MuyMuy\'s Davlos line of cotton-synthetic shirts. The durable, yet soft, fabric contains a patented SweatGuard technology that not only whisks away perspiration but helps prevent stains.'), +(12975,'J-5 Helmet Teal','Armor','Helmet','d780ced3-4826-40d5-b271-0eabff2dbd87','','','Item Type: Light Helmet\nDamage Reduction: 20%\nTemp. Rating: -25 / 65 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nGyson delivers another unique softshell helmet with the J-5. Large optic sensors and an oversized breathing apparatus deliver a striking visage. The distinct design is space-rated and provides a modicum of protection, while keeping the helmet lightweight and affordable.'), +(12976,'AEGS_Retaliator_OC_Rear','Room','UNDEFINED','09e97923-f5be-4c80-b209-7a87dd359959','','',NULL), +(12977,'Keldur Hat and Walnut Goggles','Char_Clothing_Hat','UNDEFINED','bee5c55c-143f-4dd6-be6f-6b56b3816b1a','','','Blowing winds and blazing sun won\'t be an issue when wearing the Keldur hat and goggles. Insulated flaps keep the sun and elements off your neck, while a lightweight metal brim and scratch resistant, industrial-grade goggles protect your eyes.'), +(12978,'Manned Turret','TurretBase','MannedTurret','8c77456e-9704-4390-82b5-2b0f805e53d1','','',NULL), +(12979,'Artisan Apron Whammer\'s','Char_Clothing_Torso_1','UNDEFINED','596c9311-b3b9-47ab-a3ca-fe13391eeeef','','','Carrying Capacity: 1K µSCU\n\nWith a reinforced front pocket and colorful accent piping, Stegman\'s Artisan apron is a reliable choice for your next shift.'), +(12980,'Caterpillar Polar Livery','Paints','UNDEFINED','6217cead-b368-466e-9060-026d60409288','','','Modify your Caterpillar with this white and grey livery specifically designed for the 2950 IAE event on microTech.'), +(12981,'Medical Supplies','Cargo','Cargo','32ff3328-7863-4a31-aa24-60b4f73646d9','','',NULL), +(12982,'behr_ltp_01','FPS_Deployable','Small','bd0eb618-4df9-4af3-9b2e-77fd6f174297','','',NULL), +(12983,'Dust Devil Armor Arms','Armor','Arms','dd9f47b0-64bf-4ad7-bbb9-358270296e74','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -85 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nSalvaged pieces of disused protective gear were welded together to make this intimidating armor set.'), +(12984,'Weapon_Rack_1_BEHR_GLauncher_Common_001','Usable','UNDEFINED','7222597e-294b-4ac4-8714-4c65b8ef8969','','',NULL), +(12985,'300 Series Golden Dawn Paint','Paints','UNDEFINED','368dc2a2-7b27-485a-8266-fa16efb392e7','','','Golden Dawn?paint job for the Origin 300i.'), +(12986,'fruit_plant_1_b_5003','Misc','UNDEFINED','37710d39-17dc-4ae5-a78a-311c271b1cfc','','',NULL), +(12987,'Seat','Usable','UNDEFINED','de5e6a1e-343e-4689-8abb-1411083ad485','','',NULL), +(12988,'fruit_plant_1_b_4003','Misc','UNDEFINED','8ba9cf08-ddf7-446d-8c04-92f887bc45d2','','',NULL), +(12989,'Nox Harmony Livery','Paints','UNDEFINED','a6368847-8335-46e2-bde8-428e6ea6dad5','','','The Harmony livery is meant to showcase Humanity\'s peaceful relationship with alien species with a semi-pearlescent blue main coat marked with organic reflective red to suggest the coming together of disparate species and cultures. The Harmony livery has been designed and produced by the UEE\'s Diplomatic Corps and freely licensed to all spacecraft manufacturers. Now Aopoa Nox owners can celebrate the UEE\'s intentions of working toward a peaceful galaxy.'), +(12990,'Tuvois Jacket Seagreen','Char_Clothing_Torso_1','UNDEFINED','79e349ea-5dcb-427d-81f6-7fd567d807a6','','','Carrying Capacity: 1K µSCU\n\nCreated in collaboration with legendary designer Avon, OpalSky is proud to unveil the Tuvois, an open vest featuring stark, bold styling that\'s destined to make an impression. \n\nWomen\'s sizes currently out of stock.'), +(12991,'fruit_plant_1_b_6003','Misc','UNDEFINED','2c6ea39d-5f1e-472f-b73c-92168a243a03','','',NULL), +(12992,'Seat','SeatAccess','UNDEFINED','f963131e-e661-4bac-8c39-c1b780f6659e','','',NULL), +(12993,'Starlancer ArcCorp Livery','Paints','UNDEFINED','d99e8f06-e91d-44e2-aed9-0005e1f19926','','','The ArcCorp livery for the Starlancer features the company\'s logo atop a maroon base paint with black and yellow highlights.'), +(12994,'Black Mountain Sujin Tea (Mild)','Drink','Can','d9e25f7b-baaa-4bf1-8622-e7223457e32f','','','HEI: 21\nEffects: Immune Boosting, Cognitive Boosting\n\nSujin root tea, native to Elysium IV, is a traditional Tevarin beverage and has been produced for thousands of years. Black Mountain steeps only premium roots to make their delicious brew.'), +(12995,'LH86 \"Takahashi Racing\" Pistol','Weapon','Small','c5b90a4e-d944-408d-afaa-48ec0cf571fb','','','Manufacturer: Gemini \nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 25\nRate Of Fire: 1200 rpm\nEffective Range: 30 m\n\nThe LH86 from Gemini is a compact kinetic handgun designed for personal defense and close-quarter combat. A keen eye on ergonomics and balance coupled with hardy construction makes this pistol a natural fit for any shooter in any number of hostile conditions. The LH86 also comes with Tritium low-light sight and a twenty-five round magazine. Inspired by Team Takahashi racers and their Star Kitten mascot, this special edition pistol is primarily pink with teal highlights.'), +(12996,'battaglia_pants_01','Char_Clothing_Legs','Female','88cc8eb7-903f-4a3d-a391-8eeb23261fab','','',NULL), +(12997,'Door Control','ControlPanel','DoorPart','bb3d32cd-bd96-4735-826a-3eeb0821e28a','','',NULL), +(12998,'IAE 2952 T-shirt Black','Char_Clothing_Torso_0','UNDEFINED','934b6be5-af09-41bc-a804-c0857200548e','','','Commemorate the 2952 Intergalactic Aerospace Expo with this black t-shirt featuring the event\'s logo across the front.'), +(12999,'fruit_tray_1_e','Misc','UNDEFINED','b7279046-1aea-4a7b-8c18-8f17cfd379bd','','',NULL), +(13000,'BEHR_BallisticGatling_Ventilation_S4','WeaponAttachment','Ventilation','2a6c769f-c625-458c-b4ab-f24cf03d32cf','','',NULL), +(13001,'INTK_RSI_Zeus','FuelIntake','Fuel','fda2e93a-c040-45f4-b3e3-6b16de9e6f2f','','',NULL), +(13002,'Molina Mold Treatment','Cargo','Cargo','e1307ad1-2dc6-4585-8b16-950bd15f7ea3','','','A lifesaving treatment for those suffering from exposure to Molina Mold.'), +(13003,'TRGT. STATUS','Seat','UNDEFINED','ba138bcb-932b-4f56-a6e4-e6faea760387','','',NULL), +(13004,'Armor_Crate_CZ_Firerat','Usable','UNDEFINED','6cb98946-01b8-477c-a017-989804b98d4b','','',NULL), +(13005,'MISC_Hull_C_Walkway_Int','Room','UNDEFINED','27c491b8-d4b8-464a-a5b9-ab3451fb5747','','',NULL), +(13006,'Cutter Ghoulish Green Livery','Paints','UNDEFINED','09c33654-2d48-4823-8540-d2e16ee0021f','','','Embrace Day of the Vara mischievousness and mayhem any time of the year with this custom Cutter livery. It combines metallic green and black for a striking look that highlights the holiday\'s classic colors.'), +(13007,'Aurora Mk I Electric Blue Livery','Paints','UNDEFINED','14528f27-4f48-4007-aa58-eebfad0890a0','','','Switch the appearance of your Aurora with this bold livery in electic blue with gray accents.'), +(13008,'Morozov-SH-I Helmet Pyrotechnic Iceflow','Armor','Helmet','24c8ca71-b282-4147-9347-a984ad61ae16','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing the same fortified armor plating, special anti-rip protective padding and ample storage, as the Morozov SH, the SH-I industrial variant was designed by RRS to protect workers employed in hostile zones while ensuring they had the full range of motion required to perform their duties. The Pyrotechnic Amalgamated Edition was made specifically for the company\'s mining efforts in Pyro during the 26th century. Visor is AR crosshair compatible.'), +(13009,'Oracle Helmet Rager','Armor','Helmet','d82a35f5-26ca-4a44-bb67-b845be8b7d46','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(13010,'Door Control','ControlPanel','DoorPart','226ba7b4-3316-471f-952c-039ced1f921e','','',NULL), +(13011,'Large Container','Container','UNDEFINED','da7795c6-6aa6-498d-a1a5-531b2a15e852','','','A large container used to hold various items.'), +(13012,'Luminalia Gift','Cargo','Cargo','8fe756f1-5191-4e56-8bb6-0bced055efa7','','',NULL), +(13013,'CNOU_Nomad_Dashboard_Pilot','SeatDashboard','UNDEFINED','250475b7-0d7e-4576-94b4-d3c7a0f46b85','','',NULL), +(13014,'AEGS_Sabre_Firebird_Thruster_Mav_Joint_03','ManneuverThruster','JointThruster','76e60b6b-b82d-4388-b545-194c01702e5c','','',NULL), +(13015,'AEGS_Hammerhead_Thruster_Main','MainThruster','FixedThruster','ae103cf6-d501-4b6a-bdaf-2b3d8bb27da8','','',NULL), +(13016,'Citadel Legs Roughshod','Armor','Legs','921e82ea-0ae8-461d-9822-b26c64958c10','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(13017,'RSI_Aurora_GS_LX_Thruster_Mav_Joint','ManneuverThruster','JointThruster','322d861f-e104-4127-8ecf-138c77dc56b0','','',NULL), +(13018,'wall_display_cabinet_large_left_14x03x03_a','ShopDisplay','Default','6ee6ff4d-5285-4c33-8972-96734e3eb04a','','',NULL), +(13019,'Battle of Vega II Vanduul Skull','Misc','Personal','524a8cec-e520-4798-9079-69e186ec0f99','','','Featuring a preserved skull from a defeated Vanduul footsoldier, this special commemorative display honors the brave members of the UEE military and public who fought so valiantly at the Battle of Vega II on October 5th, 2945.'), +(13020,'Golden Medmon','Misc','Harvestable','57d8986e-d354-4a22-bcf8-f38f80630974','','','NDR: 39\nHEI: 19\nEffects: Energizing, Hydrating\n\nGrown in temperate climates on the Maru Ebony Tree, Golden Medmons are left to fall off the tree when ripe and collected. The fruit at that stage is extremely firm and astringent. They only become edible after being \'bletted\' or softened through ethylene ripening.'), +(13021,'Shiv Nightmare Livery','Paints','UNDEFINED','059a058c-942f-4372-92e1-7ff69f3fa096','','','Featuring a sinister skull atop a brown base paint, the Nightmare livery gives the Shiv a look that sends shivers down the spine.'), +(13022,'Remote Turret','Turret','GunTurret','2822287e-651d-4c5c-897c-aab88e062252','','','Remote Turret'), +(13023,'PT3 (3x Holographic)','WeaponAttachment','IronSight','cafb725f-9ccf-4ec3-959d-1a94ac0512b6','','','Manufacturer: Behring\nType: Projection \nAttachment Point: Optic\nMagnification: 3x\nZoom: 3x-3.5x\nAim Time: +15%\nSize: 1\n\n\n\nGet up close and personal with this 3x magnifying optic from Behring. The PT3 projects a highly visible target marker allowing you to confidently cover your field of view across various lighting and environmental conditions.'), +(13024,'Flight Blade','FlightController','UNDEFINED','bd3866cb-c7ec-41b0-aeec-20cd402a3673','','',NULL), +(13025,'300 Series Obsidian Paint','Paints','UNDEFINED','1c767138-fa28-43c2-b28e-b789de849f38','','','Obsidian?paint job for the Origin 300 Series.'), +(13026,'Morozov-SH Legs Aftershock','Armor','Legs','974e7ba4-3434-493f-9dff-43ca935fdaea','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5K µSCU\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(13027,'Morozov-SH-C Helmet Spitfire','Armor','Helmet','0687b7c1-d343-4666-bc6a-bfdf36d36854','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(13028,'TMBL_Nova_Component_Power','Player','UNDEFINED','027eb61b-4ff7-478e-a516-9c1d2e294463','','',NULL), +(13029,'ATC_PanelScreen_Levski_2','Misc','UNDEFINED','515bcb8b-8b4f-4971-a7e1-009df4246295','','',NULL), +(13030,'m_human_mannequin_slaver_light','ShopDisplay','UNDEFINED','5535a336-5895-4c37-94fd-ee8bbc766f21','','',NULL), +(13031,'Ht_D_Airlock_Small_GreenZone','Usable','UNDEFINED','685ff44d-4ac3-4800-a4b8-74d6e0a63057','','',NULL), +(13032,'Argus Helmet Aqua/Black','Armor','Helmet','6e252804-db64-4ea6-a0c9-9b82034100d5','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s Argus helmet utilizes advanced multi-layered composite construction to provide incredible protection from weapon fire as well as environmental hazards. The tinted visor offers a wide field-of-view to improve situational awareness and unrestricted movement.'), +(13033,'Door Control','ControlPanel','DoorPart','9a02851c-4eb6-491d-8fdb-cf4350bbcfd5','','',NULL), +(13034,'VNCL_Scythe_Thruster_Retro_Fixed_Right','ManneuverThruster','FixedThruster','8ab734c3-a0d1-4897-9c8e-d91a60507abd','','',NULL), +(13035,'Internal Tank','QuantumFuelTank','QuantumFuel','ae77a54e-4763-435c-a49f-4cdb8c807ed3','','',NULL), +(13036,'ADP Core Yellow','Armor','Torso','f3213ddb-0cf8-41ea-bd56-30de1ff8fd6e','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(13037,'Tripledown Pistol Magazine (12 Cap)','WeaponAttachment','Magazine','02f5904f-62ef-48e7-b63c-4ea3d4a7385f','','','Item Type: Magazine\nCapacity: 12\n\nThis magazine for the Tripledown pistol comes with twelve buckshot rounds.'), +(13038,'AEGS_Retaliator_SCItem_Seat_Bed_Lower_Right','Seat','UNDEFINED','fa843720-1548-4779-a00e-c28217172b30','','',NULL), +(13039,'Storm Frost Line Livery','Paints','UNDEFINED','3241f47d-7df6-4141-8b71-3574bbb33b0b','','','White with grey accents, the Frost Line livery for the Storm is ideal for blending in with cold weather regions.'), +(13040,'Paint_MPUV_Transport','Paints','UNDEFINED','d2adec5c-215d-4e71-9d77-7efa1c08c28a','','',NULL), +(13041,'Tuvois Jacket White','Char_Clothing_Torso_1','UNDEFINED','54e26c28-c3d8-40df-9681-f69fd755875c','','','Carrying Capacity: 1K µSCU\n\nCreated in collaboration with legendary designer Avon, OpalSky is proud to unveil the Tuvois, an open vest featuring stark, bold styling that\'s destined to make an impression. \n\nWomen\'s sizes currently out of stock.'), +(13042,'Stims','Cargo','Cargo','6cee50cf-d841-40d2-808d-1901aeabcb83','','',NULL), +(13043,'Door Control','Door','UNDEFINED','b121ed6c-7128-4161-994d-27f9ea2f4acf','','',NULL), +(13044,'FBL-8a Helmet (Modified)','Armor','Helmet','842e4d6b-a00d-436e-b130-9356c92b1fe2','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBased on CDS\' FBL-8a combat armor, this set has been modified from its original form. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible. Visor is AR crosshair compatible.'), +(13045,'Sadaryx','Cargo','Cargo','60b2ec83-8cd7-4b1e-adb6-ce2a417249ea','','',NULL), +(13046,'RSI_Apollo_DockingTube','DockingCollar','UNDEFINED','4563405f-fd04-8088-f2d5-3adf01c9af91','','',NULL), +(13047,'315p Ship Armor','Armor','Medium','3a0a0de4-43ef-408c-8f7a-d837c0817962','','','Origin Jumpworks 315p Ship Armor'), +(13048,'Table_1_Seat_DRAK_Cutter_Rambler','Usable','UNDEFINED','fa833d48-9d5a-434b-8ddb-2e039c3e2841','','',NULL), +(13049,'INTK_ANVL_Hornet_F7C','FuelIntake','Fuel','35d390ad-d905-4bce-9414-ddaffa9f580a','','',NULL), +(13050,'Bannock Jumpsuit Cool Ash','Char_Clothing_Torso_1','UNDEFINED','c64b0fd2-94a7-4084-99d1-a5e1e192b109','','','Carrying Capacity: 1K µSCU\n\nThe Bannock jumpsuit combines comfort and durability. It features reinforced padding in critical areas, plenty of storage, and an adjustable belt to ensure a snug fit. Its unique design also includes a built-in secondary layer, allowing the wearer to unzip and cool down without fear of damaging their everyday clothes.'), +(13051,'Odyssey II Helmet Blue','Armor','Helmet','9b8f5c96-4ad3-4469-b2e2-ec6a1d5a98b9','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(13052,'Anvil Decoy Launcher','WeaponDefensive','CountermeasureLauncher','0df50086-8261-431b-822e-5549ff825e40','','','Anvil Decoy Launcher'), +(13053,'Inquisitor Arms Ignitor','Armor','Arms','eaa35b8d-b3a4-4ebe-a416-bb650c7a8fe8','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(13054,'CNOU_HoverQuad_Thruster_Main','MainThruster','FixedThruster','f0175cd8-e827-4863-a45d-4a88421cbf56','','',NULL), +(13055,'Personal Care Product','Misc','UNDEFINED','998d7404-6a1c-45ff-8ecb-1eedbc89cd6b','','',NULL), +(13056,'Door_Hangar_Sensor_Proximity_3x5x3','Sensor','DoorPart','15bfe122-9740-4981-a824-1fc84facd620','','',NULL), +(13057,'Skellig Pants Blueband','Char_Clothing_Legs','UNDEFINED','4e87f809-96b3-4b9f-8e42-dc000b63b296','','','Carrying Capacity: 2K µSCU\n\nGet down and dirty with CBD\'s Skellig-wear. These utility pants feature durable vinyl-composite material with reinforced ridged kneepads.'), +(13058,'Door Control','ControlPanel','DoorPart','d2ac9210-7f9e-46a4-b132-6eb495b3c481','','',NULL), +(13059,'Amaris Shirt','Char_Clothing_Torso_0','UNDEFINED','226926dd-924e-4098-a127-325f26cd8710','','','The rugged Amaris Shirt is a breathable long-sleeve shirt reinforced by raised fabric on the shoulders to create an elegant but industrial look.'), +(13060,'Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','fd229fec-7305-44ef-84dc-cef313acfc2f','','','Live in comfort with MuyMuy\'s Davlos line of cotton-synthetic shirts. The durable, yet soft, fabric contains a patented SweatGuard technology that not only whisks away perspiration but helps prevent stains.'), +(13061,'Strata Legs Pyrotechnic Edition','Armor','Legs','6a755192-2295-4e1f-a77a-c039f8be5e5a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 10k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. This edition features the colors and logo of the now defunct Pyrotechnic Amalgamated.'), +(13062,'AEGS_Sabre_Thruster_Mav_BottomFL','ManneuverThruster','JointThruster','f64a1d8b-c6ff-4d02-a75a-266ce2974932','','',NULL), +(13063,'f_human_mannequin_sandNomad_undersuit','ShopDisplay','UNDEFINED','af85622b-7c1d-4387-a1e7-7ee89fd41642','','',NULL), +(13064,'Kareah_Hostility_ConsoleScreen_01','Display','UNDEFINED','3381ae83-16b8-4489-b7fc-e17681370d34','','',NULL), +(13065,'Wolf Sylvan Camo Livery','Paints','UNDEFINED','84451f94-fc31-41c4-ba0f-77f671a6e99c','','','Brandish a green and brown camo pattern with red and yellow highlights on the Kruger Wolf with the Sylvan Camo livery.'), +(13066,'Door Control','ControlPanel','DoorPart','0a3f8073-f248-484e-8820-8be91f99b2ee','','',NULL), +(13067,'CNOU_Mustang_Thruster_Retro','ManneuverThruster','FixedThruster','0cca00a9-487c-4343-a07c-7f8d8128d45f','','',NULL), +(13068,'Trenta','Shield','UNDEFINED','33c31f29-03e7-4a23-a26c-5d625d48c1bc','','','Item Type: Shield Generator\nManufacturer: Yorm\nSize: 2\nGrade: C\nClass: Competition\n\nAn ideal choice for racers looking for a shield generator that provides above average shield performance and durability. As a bonus, the Trenta’s casing is constructed out of a magnesium infused alloy which makes the component both sturdy yet lightweight.'), +(13069,'Fawad','Radar','MidRangeRadar','dc56860d-0727-4c69-883c-0606f5307822','','','Item Type: Radar\nManufacturer: WillsOp\nSize: 2\nGrade: D\nClass: Civilian\n\nThe Fawad entry-level radar from WillsOp is the perfect choice for someone who is looking for a no-frills signature detection system perfect for everyday use.'), +(13070,'Palatino Helmet Shadow Gild','Armor','Helmet','581c94cc-1502-4ccb-82cd-f36ec2a60f2c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. The fully-enclosed helmet comes equipped with a suite of sensors that connects the wearer to the wider world while providing supreme protection. Visor is AR crosshair compatible. The Shadow Gild variant is dark gray and features stylish gold highlights.'), +(13071,'MSD-582 Missile Rack','MissileLauncher','MissileRack','3b57d123-4a6f-4549-88ca-641de8cc3537','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 5\nMissiles: 8xS2\n\nBehring’s MSD-582 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 5 hardpoint for the reliable and effective launch of eight S2 missiles.'), +(13072,'ForceFlex Undersuit Blue/Black/Tan','Armor','Undersuit','2f8eae42-b0f2-4a4a-8849-34c40a8db529','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nVirgil\'s ForceFlex is the next generation in undersuit technology. Rated for combat as well as industrial work, you can rest assured that the comboweave will keep you protected in whatever situation you put it through.'), +(13073,'C54 \"Justified\" SMG','Weapon','Medium','7ba300fa-c867-453e-bd54-53203b98c60a','','','Manufacturer: Gemini\nItem Type: SMG\nClass: Ballistic\n\nMagazine Size: 50\nRate Of Fire: 1,100 rpm\nEffective Range: 35m\n\nAttachments: Barrel (S1), Optics (S1), Underbarrel (S1)\n\nEasy to handle and a beauty to behold with its purple accented styling, the C54 is a sleek and precisely balanced SMG from Gemini. Its lightweight polymer frame and ergonomic design makes it ideal for close quarter engagements. The C54 is capable of firing 10mm rounds on full auto to provide maximum support and target saturation to ensure that any engagement ends quick. The \"Justified\" edition features a cool grey and bright red highlights.'), +(13074,'Tekaw Pants Ash','Char_Clothing_Legs','UNDEFINED','30c3740a-7d45-409d-a860-10936fd171ce','','','Carrying Capacity: 1K µSCU\n\nComfortable enough to wear all day yet designed to thrive under harsh conditions, the Tekaw pants are perfect whether you\'re on or off duty. Their stylish yet durable design includes a water-wicking coating and padded shins guards with wrappings that ensure a snug fit.'), +(13075,'LightGroupItem','Light','UNDEFINED','e612485a-8902-4615-89a5-3b826e4f7faf','','',NULL), +(13076,'sc_marine_bdu_shirt_02_01_11','Char_Clothing_Torso_1','UNDEFINED','cb42c852-f5ee-4072-b71d-2c7f77c04dc6','','',NULL), +(13077,'Carryable_1H_SQ_DataPad_Fluff_StormBreaker_DataFacility_Exec','Misc','UNDEFINED','4b96ca5f-c432-5ea3-2f57-e267798f79bd','','',NULL), +(13078,'ORC-mkX Core Autumn','Armor','Torso','d45f021f-a65e-4b67-9ed7-eaa998fe7a1b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(13079,'Cargo_Slot_DRAK_Mule_1Slot','Usable','UNDEFINED','5cc5f216-a296-4131-911a-684f2704267f','','',NULL), +(13080,'Edgewear Pants Dark Red','Char_Clothing_Legs','UNDEFINED','64c50a1a-0ded-471a-9cb1-e7f55dfad39a','','','Carrying Capacity: 4K µSCU\n\nStegman\'s Edgewear utility clothes are made from reinforced nylon weaves and lined with temperature-rated quilted technology to provide you with a little extra protection while on the jobsite. Double knees, reinforced joint pads and extra pockets add comfort and durability to this field-tested and worker-approved clothing line.'), +(13081,'ANVL_Hornet_F7A_Mk2_Thruster_Mav_1','ManneuverThruster','JointThruster','74fd7d87-5f75-4f36-9852-a0b1bf83cdb7','','',NULL), +(13082,'PAB-1 Legs Crusader Edition','Armor','Legs','c4c73b17-28b2-4f81-be63-0ee903f67926','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile. The Crusader Edition was made specifically for the company\'s security services.'), +(13083,'Storm Summit Livery','Paints','UNDEFINED','8de73e6a-c0ad-4cc9-931b-3f65c0d25da7','','','The Summit is a two-tone livery for the Storm with a white front half and grey back half.'), +(13084,'Beryl (Raw)','Cargo','Cargo','06d0956e-2af1-4eec-a391-5b93101543de','','',NULL), +(13085,'Pulse \"microTech\" Laser Pistol','Weapon','Small','185b2797-25e9-48be-9d43-0182162461b3','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Pistol\nClass: Energy (Laser)\n\nBattery Size: 60\nRate of Fire: 500 rpm (1000 rpm rapid)\nEffective Range: 15m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nThe Pulse Laser Pistol is a fully automatic pistol intended for close quarter combat. VOLT designed the weapon with a unique capacitor that condenses the pistol\'s laser energy, increasing its rate of fire at the cost of greater inaccuracy and a higher risk of overheating. This special edition features microTech branding.'), +(13086,'GAMA_Syulen_RADR_Display','Display','UNDEFINED','73f0a36a-e3c3-4148-8152-057562e227a1','','',NULL), +(13087,'Seat','SeatAccess','UNDEFINED','1986bdc5-7245-4f69-a6c4-a1198dd7ba23','','',NULL), +(13088,'Counter_Orison_Pharmacy','Usable','UNDEFINED','dbd034fa-a4d9-4662-80dc-90ea4634aa5c','','',NULL), +(13089,'Personal Storage','Cargo','UNDEFINED','96260777-3109-44bb-977c-0378fa1fa576','','',NULL), +(13090,'darneely_outfit_01','Char_Clothing_Torso_1','Male','054f4501-c3e8-4de4-b145-7cc6abdd51c5','','','@LOC_PLACEHOLDER'), +(13091,'ARMR_TMBL_Cyclone_AA','Armor','Light','4ddf57ba-8031-48e1-a52c-0463dfe56296','','',NULL), +(13092,'DRAK_Dragonfly_CML_Chaff','WeaponDefensive','CountermeasureLauncher','c20b552a-8cac-4aaf-bf3a-549cfcd57620','','','@LOC_PLACEHOLDER'), +(13093,'Access','SeatAccess','UNDEFINED','7bca490f-431f-4fae-9cc6-d8ad224df096','','',NULL), +(13094,'ThermoWeave Gloves','Char_Clothing_Hands','UNDEFINED','a1fcf0eb-4770-4026-8daa-227891624656','','','The ThermoWeave gloves were designed with a special multilayer weave and extra insulated padding on the palm and fingers for additional protection when touching hot objects.'), +(13095,'Fieldsbury Dark Bear Helmet','Armor','Helmet','97254d3c-2acd-4e8b-930f-feb02e06ad0a','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -40 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nCelebrate Day of the Vara in sinister style with this officially licensed Fieldsbury Dark Bear helmet. This twisted version of the Fieldsbury Bear mascot launched a seasonal soda flavor before being co-opted into a series of high-profile pranks. Ever since, the bear\'s big, toothy grin and off-set flickering eyes have become a standard sight at Day of the Vara celebrations. Now CC\'s Conversions has designed and delivered an official, high quality reproduction of this iconic mascot, available in six striking colors.'), +(13096,'ANVL_Door_Decal_Carrack_Docking','Decal','DoorPart','8a5353e4-bd02-4724-bcc4-417acbb37a26','','',NULL), +(13097,'Pyro RYT \"Quicksilver\" Multi-Tool','Weapon','Gadget','38fd0efd-1c7c-4f6f-80d3-acc0cf1841a3','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier. The \"Quicksilver\" is grey with black accents.'), +(13098,'ADP-mk4 Helmet Woodland','Armor','Helmet','f99a1f5e-7bed-444f-82cc-570b85e0fbb7','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhen there\'s a difficult job at hand, you want to ensure that you can see it through to the end. Clark Defense Systems\' ADP-mk4 heavy armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers.'), +(13099,'SW16BR1 “Buzzsaw” Repeater','Weapon','Gun','631884a6-7e06-4612-986c-1b3e556aecac','','','Manufacturer: Behring\nItem Type: Ballistic Repeater\nSize: 1\n\nFiring from two barrels, the SW16BR1 \"Buzzsaw\" can overwhelm aggressors at medium to close range. Behring\'s expert craftsmanship allows the weapon to engage in sustained firefights before needing a cooldown, making it an excellent entry level ballistic repeater.'), +(13100,'Talisman R5 Ship Armor','Armor','Medium','dc42bf67-fd6d-4a11-8d69-99bd2ec3e231','','','Talisman R5 Ship Armor'), +(13101,'Weapon_Rack_1_NONE_Rifle_AmmoOnly_001','Usable','UNDEFINED','5f31b0f2-9471-4886-98fb-d40ce0194d6b','','',NULL), +(13102,'Archibald Hurston Figurine','Misc','Flair_Wall_Picture','f32047cd-91ad-4a4d-a551-cfe9254990a7','','','A brushed bronze scale replica of the statue commemorating the late Archibald Hurston, former CEO of Hurston Dynamics, that can be seen prominently displayed in the Lorville Central Business District.'), +(13103,'ARGO_MPUV_1T_Thruster_Main_Joint','MainThruster','JointThruster','bc9824ef-ac10-457a-a058-200284f80a9a','','',NULL), +(13104,'NewDawn','PowerPlant','Power','397bd43e-fdbf-45b3-ba56-79647656f23e','','','Item Type: Power Plant\nManufacturer: Sakura Sun\nSize: 3\nGrade: C\nClass: Civilian\n\nThe NewDawn was appropriately named, as it was the first large power plant built by Sakura Sun. Following its commercial success, the company decided to expand and improve upon their line of large power plants.'), +(13105,'Seat','SeatAccess','UNDEFINED','b53d604b-023b-4787-9630-aa78356ca8c5','','',NULL), +(13106,'MISC_Starlancer_Support_Seat','Seat','UNDEFINED','4d72f73d-0efe-4a08-a45a-b59cefe58e26','','',NULL), +(13107,'Odyssey II Undersuit Sky/Black','Armor','Undersuit','f4456068-c5da-4732-aed0-299cdc8f7821','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe latest generation of RSI\'s classic Odyssey undersuit features a new rugged design capable of withstanding the harshest of conditions in space or planetside. Built using the latest microweave technology, the Odyssey II undersuit provides hours of comfort in locations that are anything but comfortable.'), +(13108,'Flight Blade','FlightController','UNDEFINED','e9186bee-0812-4576-8878-4766bb3a31c9','','',NULL), +(13109,'DeconPen (Canoiodide)','FPS_Consumable','Medical','e2b95094-e441-4865-a2ec-e4db0b64064f','','','Manufacturer: CureLife\nItem Type: Medical Consumable\n\nThe DeconPen from CureLife delivers a rapid injection of Canoiodide, a proprietary medicinal compound that treats radiation exposure.'), +(13110,'sw_light_helmet','Armor','Helmet','12a6d7a2-c45b-4f30-b2fa-436d39e089b5','','',NULL), +(13111,'Freelancer Big Benny\'s Livery','Paints','UNDEFINED','9096351d-6e60-41ed-ae0c-215913eeeffb','','','Let Big Benny spice up the look of your Freelancer with this orange and brown livery featuring the famous smiling bowl of kacho and Benny\'s motto \"Grab Eat!\"'), +(13112,'300i Ship Armor','Armor','Medium','8fa4aa51-ff08-4728-ae08-64861ab3daf9','','','300i Ship Armor'), +(13113,'Seat','Usable','UNDEFINED','d46850c7-2107-430a-ad0d-3898f9143474','','',NULL), +(13114,'f_human_mannequin_slaver_undersuit_02','ShopDisplay','UNDEFINED','d10c6ed9-4f87-47ed-87dd-795822ba5e8f','','',NULL), +(13115,'Seat','SeatAccess','UNDEFINED','5bbcb6b1-e44d-4234-ad58-cbbbf2ff5da1','','',NULL), +(13116,'Gilick Boots White / Blue','Char_Clothing_Feet','UNDEFINED','5cf3de9e-7c7c-4dea-8b57-4152b85ece2b','','','Gain the Octagon advantage with the Gilick boots. Whether on a work site or exploring the wilds, these boots will provide the comfort and support you crave. They feature an all-terrain tread, a supportive inner sole, and adjustable gaiters to cover your ankles and lower legs from the elements.'), +(13117,'Deo Shirt White','Char_Clothing_Torso_0','UNDEFINED','5b1a2e56-77e0-45e1-8a96-22e7935f75d8','','','Fiore\'s Deo is a slim cut work shirt that\'s as practical as it is timeless. Featuring a high collar and metal neck clasp, the Deo has been a mainstay in business attire.\n\nWomen\'s sizes currently out of stock.'), +(13118,'Silnex','Cargo','Cargo','77cddc06-3396-4a62-9295-3a13332dad1f','','',NULL), +(13119,'Remote Turret','Turret','TopTurret','6b47720a-31ab-4af2-a400-3f84ad112c4b','','','Remote Turret'), +(13120,'Missile Rack','MissileLauncher','MissileRack','32b96015-6d28-433e-9457-62f95082b3ca','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 1\nMissiles: 1xS1\n\nBehring’s MSD-111 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 1 hardpoint for the reliable and effective launch of one S1 missile.'), +(13121,'C54 \"Starchaser\" SMG','Weapon','Medium','ae9a9156-49d1-419b-b346-f7d438f7a1b8','','','Manufacturer: Gemini\nItem Type: SMG\nClass: Ballistic\n\nMagazine Size: 50\nRate Of Fire: 1,100 rpm\nEffective Range: 35m\n\nAttachments: Barrel (S1), Optics (S1), Underbarrel (S1)\n\nEasy to handle and a beauty to behold, the C54 is a sleek and precisely balanced SMG from Gemini. Its lightweight polymer frame and ergonomic design makes it ideal for close quarter engagements. The C54 is capable of firing 10mm rounds on full auto to provide maximum support and target saturation to ensure that any engagement ends quick. Created to celebrate the 2954 IAE, the Starchaser edition is a vivid purple with white and black highlights.'), +(13122,'Counter_Bar_1m_console_DEPRECATED','Usable','UNDEFINED','e872affa-6eb1-4d34-9ccc-7ba918f0adcb','','',NULL), +(13123,'ESPR_BallisticCannon_PowerArray_S6','WeaponAttachment','PowerArray','1b332148-8030-480b-9a9b-a1f1dc74b47d','','',NULL), +(13124,'TRGT. STATUS','Seat','UNDEFINED','d073394d-a7ae-4a70-9fd5-7eae9568eda8','','',NULL), +(13125,'Odyssey II Helmet Alpha','Armor','Helmet','9cc202c0-245d-4a17-a954-f0fadd15a336','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(13126,'Door Control','Door','UNDEFINED','f7507baf-2904-433c-8027-f7ce95df87ed','','',NULL), +(13127,'Carryable_TBO_FL_16SCU_Commodity_Organic_Armillaria','Cargo','Cargo','45a3c87c-5075-46f2-8c84-67352f903e8d','','',NULL), +(13128,'Bed','Usable','UNDEFINED','fc7bcf02-1e55-4cba-bd66-dd21ebeafc74','','',NULL), +(13129,'lt_lamp_desk_3_a','Light','UNDEFINED','9afca3f3-98bc-4503-9dd7-25645b4fc994','','',NULL), +(13130,'Citadel','Shield','UNDEFINED','a7dd60d3-10bf-473d-9de5-747071885573','','','Item Type: Shield Generator\nManufacturer: Basilisk\nSize: 2\nGrade: B\nClass: Industrial\n\nFortify your ship with Basilisk’s Citadel shield generator. Tailored toward industrial vessels, the component emits a robust and reliable shield.'), +(13131,'Grav Lev 1','ManneuverThruster','JointThruster','186f47d6-a44a-4e65-a94b-22864e60d134','','',NULL), +(13132,'ATVS Repeater','Weapon','Gun','d60d2103-fdc4-446e-8a3b-0af114f2e23e','','','Manufacturer: Behring\nItem Type: Distortion Repeater\nSize: 2\n\nMess with an aggressor\'s electrical system with the ATVS from Behring. This disruptive, non-lethal distortion repeater is only compatible with the nose-mount on the Aegis Vanguard.'), +(13133,'ARGO_RAFT_CargoGrid_Main','CargoGrid','UNDEFINED','58601296-7ea8-401f-b973-0180f4b99ec7','','',NULL), +(13134,'NN-14 Cannon','Weapon','Gun','596ced46-195e-4f60-826a-7cc5bb2e2f02','','','Manufacturer: MaxOx\nItem Type: Neutron Cannon\nSize: 2\n\nBuilding on the technology of the NN-13, MaxOx’s NN-14 offers a significant increase in power for the neutron autocannon to give each shot a devastating punch. With that increased damage however, comes a heavier draw on your power plant.'), +(13135,'Door Control','Door','UNDEFINED','3e1b4282-8b19-4103-9bb1-97e2fdf89c2c','','',NULL), +(13136,'Janalite','Cargo','Cargo','b3ec731d-30f9-4a6b-9277-ece19bd3c1cb','','',NULL), +(13137,'Carrack Expedition Livery','Paints','UNDEFINED','69cf58e0-4a96-431f-bd7a-f42837509a3e','','','The base livery for Anvil\'s Carrack Expedition model is a civilian-modified version of the original military paint scheme.'), +(13138,'Yubarev \"Venom\" Pistol','Weapon','Small','19e3192c-60a3-44ba-816c-625dd6729379','','','Manufacturer: Lightning Bolt Co. \nItem Type: Pistol\nClass: Electron\n\nBattery Size: 10\nRate Of Fire: 350 rpm\nEffective Range: 35m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nEngineering excellence only scratches the surface of the distinct Yubarev pistol. Former merc turned weapon manufacturing mogul Irina Arkadova oversaw every aspect of the weapon, imbuing it with power, practicality, and panache. Featuring a classic woodgrain grip and cutting edge barrel design, the Yubarev fires a charged electron shot that impacts not only your target, amplifying the charge with each hit, but can spread to additional conductive targets in range. The Venom edition integrates a vibrant green coating into the weapon.'), +(13139,'Door','Door','UNDEFINED','511c59c5-5853-4c97-9568-a24e5e97a3a7','','',NULL), +(13140,'DockingTube_Fuel_Ports_CRUS_Starfighter','DockingCollar','UNDEFINED','7b68b8fe-5906-4b64-8043-9dd9b3a96e4f','','',NULL), +(13141,'Idris-P T-Shirt','Char_Clothing_Torso_0','UNDEFINED','a77cc64a-216b-49d1-b894-be226647c051','','','When a civilian version of the long-admired Idris-M frigate debuted in 2875, it caught the imagination of countless pilots and quickly became one of Aegis\' most popular capital ships. Celebrate 80 years of the Idris-P with this limited-edition T-Shirt, featuring a schematic-style image of the capital ship on the front and the logo of Aegis Dynamics on the back.'), +(13142,'Bed','Usable','UNDEFINED','aa675527-ce5a-4bac-b945-cf3e5921ddb0','','',NULL), +(13143,'facial_hair_039','Char_Head_Beard','UNDEFINED','ac8a4a26-8d4a-4f76-aec9-3a5fe8e8f6b2','','',NULL), +(13144,'Concept Shirt','Char_Clothing_Torso_0','UNDEFINED','357e2610-d4ed-4eaa-88a7-57e40d4b9eec','','','This crisp, versatile button-front shirt from Fiore is made with cutting edge stain resistant and wrinkle-free technology, guaranteeing that you stay professional at all times.'), +(13145,'Bed','Usable','UNDEFINED','33b3d6d2-582f-4751-afc9-90a2b0ee0472','','',NULL), +(13146,'BEHR_LaserCannon_PowerArray_S8','WeaponAttachment','PowerArray','0df46d87-1877-448d-b58f-67690aa31097','','',NULL), +(13147,'Door','Door','UNDEFINED','6e4f199f-5a8a-4e3f-bb50-2a3244f7aae2','','',NULL), +(13148,'Molina Ventilation Filters','Cargo','Cargo','bb9bcd36-e351-4206-9a59-fad9f1fc21ce','','','Special filters developed by Gyson to replace faulty units and purify the air of Molina Mold spores.'), +(13149,'Pips Q66','Drink','Can','7d9be085-8c43-4b42-b71d-1dc94ce408ff','','','HEI: 39\nEffects: Energizing, Cognitive Boosting\n\nHeavily scientifically researched to provide optimal energy restoration and targeted thirst quenching, Pips is trusted the \'verse over. Pips Q66 is specially formulated for full body reinforcement during extended zero-G activity.'), +(13150,'ORIG_300i_Fridge_Door','Player','UNDEFINED','6cef9a27-8af1-44cd-a325-417ee4e54691','','',NULL), +(13151,'AEGS_Sabre_Peregrine_Winglet_Right','Misc','UNDEFINED','a0ec7804-1620-4db7-8521-f1f108e57c02','','',NULL), +(13152,'un_bowl_empty_1_a_stacked','Food','Consumable','7e272e0e-ea87-4a29-b6f1-0e7abe9882ca','','',NULL), +(13153,'display_box_plastic_4_weapon_opened_005x010x005_a_3Ports','ShopDisplay','UNDEFINED','63fad0ff-8346-4886-be30-83e2ec201324','','',NULL), +(13154,'Diluthermex','Cargo','Small','3fa6a4f9-7e1d-43ef-855f-efa7f2090624','','','An extremely heat resistant epoxy often used in the mounting and repair of ship thrusters. It is considered very difficult to transport in its uncured state as it becomes explosively unstable when exposed to Chan-Eisen fields during quantum travel. Specialized containers must be used to safely transport the epoxy long distances. Once set and cured, the Diluthermex is no longer reactive.'), +(13155,'IAE 2951 Hat Blue','Char_Clothing_Hat','UNDEFINED','f83214d0-3abf-4f1f-98ef-0e53ec30fcb3','','','The official hat of the 2951 IAE carries the logo for the event on the front and a smaller version of it on the back right panel.'), +(13156,'A03 \"Wildwood\" Sniper Rifle','Weapon','Medium','f4f425d2-34d8-4737-ad37-4c5fde1e52cf','','','Manufacturer: Gemini\nItem Type: Sniper Rifle\nClass: Ballistic\n\nMagazine Size: 15\nRate Of Fire: 120 rpm\nEffective Range: 80 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nDevastate at distance with the A03 sniper rifle. Masterfully designed by Gemini\'s Tevarin co-founder Clem, the weapon balances a stylish and ergonomic design with a powerful ballistic punch. The A03 delivers an impressive rate of fire for a sniper rifle that sacrifices accuracy for urgency when successive shots are required. Considering its renowned design and unique features, it\'s easy to see why the A03 has become a favorite of security professionals across the empire.'), +(13157,'Weapon_Rack_1_NONE_Shotgun_AmmoOnly_001','Usable','UNDEFINED','f90966ab-cd20-464c-bb7f-9a408673816a','','',NULL), +(13158,'Landlite Boots Dark Red','Char_Clothing_Feet','UNDEFINED','3e5e7ac1-f6bc-48c6-a7d8-20c739518e12','','','Who says work boots can\'t be comfortable? Grindstone\'s Landlite boots are built with a breathable synth-leather material to keep your feet dry, a contoured, memory footbed, and a slip-resistant outsole, making it perfect for whatever worksite you throw at it.'), +(13159,'Morningstar Helmet Dark Red','Armor','Helmet','5b987cf9-4c8a-4c54-9f12-6807ac054b97','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(13160,'Access','SeatAccess','UNDEFINED','fd1bed66-4249-4b4c-bb45-d605c8e5f398','','',NULL), +(13161,'TRGT. STATUS','Seat','UNDEFINED','e394eb09-ae29-4a3f-8ce9-cced828440a6','','',NULL), +(13162,'Carrack Red Alert Livery','Paints','UNDEFINED','45e3b994-082e-4f2c-a515-0b4b60fdf376','','','Explore new frontiers in style with the Red Alert livery, which gives the Carrack an audacious metallic red and black look.'), +(13163,'Meteor Skylark Livery','Paints','UNDEFINED','e2381617-cc1b-47af-8dda-248fa335abba','','','The Skylark livery for the Meteor is primarily black and teal.'), +(13164,'Dolivine','Cargo','Cargo','88fea7bd-29e2-46ad-9226-516854f3f503','','',NULL), +(13165,'Camion Jacket','Char_Clothing_Torso_1','UNDEFINED','3ba526a8-e8ea-4e04-bd4a-a4d7240be8a6','','','Carrying Capacity: 1K µSCU\n\nCome prepared with the Camion. This button up blue jacket delivers on style with complimentary dark brown synthetic leather around the neck, shoulders, and arms. A cross-shoulder sling bag and integrated utility belt allows you to carry plenty of gear and keep it organized.'), +(13166,'Stoneskin Agra Undersuit','Armor','Undersuit','c1d164a3-1bf6-40d1-816e-86674c58407c','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nKastak Arms\' Stoneskin is a combat undersuit that are built upon CDS\' famous TCS-4 system based on extensive feedback from the operators who rely on this technology in the field. Offering a myriad of options for armor and EVA capabilities, the Stoneskin is set to rival CDS as a rugged and reliable undersuit.'), +(13167,'Party Favors','Cargo','Cargo','29c5ad44-8e22-4408-ad50-87d0a61a399e','','',NULL), +(13168,'Spirit Citizens for Prosperity Liberation Livery','Paints','UNDEFINED','feb0349b-4ce3-4ee1-8aa2-fc2649c5f7c1','','','Be a beacon of hope by equipping the Citizens for Prosperity Liberation livery, which features the group\'s name and symbol atop a green, black, and grey paint job.'), +(13169,'Manned Turret','TurretBase','MannedTurret','355df4a1-3461-4c83-87da-39102d6609b4','','',NULL), +(13170,'Hornet Mk II Quicksand Livery','Paints','UNDEFINED','37036957-cca9-4984-8c48-d0a59e88441e','','','Bring to bear the incredible firepower of the Hornet Mk II in distinct style with the tan and black Quicksand livery.'), +(13171,'Avenger IceBreak Livery','Paints','UNDEFINED','f6e13fd2-677f-4489-b9d6-cb54cc932f26','','','Equip your Avenger with a paint scheme cooler than a snow storm. The IceBreak livery mixes crisp, cool white with a frostbitten blue for an exciting look suitable for any season.'), +(13172,'CRUS_Starlifter_Ext_Door_Right_Lg_HACK','Container','UNDEFINED','0ed9e21b-799c-445e-85aa-ef5e7991a350','','',NULL), +(13173,'Door Control','Door','UNDEFINED','1591d4fa-b970-4b7c-97a5-09af76b30663','','',NULL), +(13174,'Fresnel \"Elysium\" Energy LMG','Weapon','Medium','60f46f40-e933-4a8e-a0c3-1c33b816903e','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: LMG\nClass: Energy (Electron)\n\nBattery Size: 165\nRate of Fire: 550 rpm - 220 rpm\nEffective Range: 50m\n\nAttachments: Optics (S3), Underbarrel (S3)\n\nThe engineers at VOLT crafted the Fresnel LMG to bring a powerful energy weapon to the frontlines, one that can initiate a fight with a rapid spray of deadly blasts. As the weapon heats up, the shots become slower and more powerful, but be careful of overheating. A weapon of this magnitude demands a strong foundation; operators are encouraged to fire from a crouching position to allow for better recoil management.\n\nThe Elysium edition combines bright gold detailings of winged skulls with a navy blue.'), +(13175,'Sootho Gloves','Char_Clothing_Hands','UNDEFINED','36a3827f-37cf-4938-8281-b25ba0197753','','','Pros at keeping your hands safe without sacrificing dexterity, the slip-resistant Sootho gloves deliver solid protection and lasting warmth during chilly or hostile conditions. The tough synthetic leather breaks in well and will stand up to years of frequent use.'), +(13176,'Strata Arms Shubin Edition','Armor','Arms','a651994a-d819-44bb-91a5-fd5bb6278c35','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Shubin Edition was made specifically for the company.'), +(13177,'Bed','Usable','UNDEFINED','fdfb66b4-cfb0-4d95-9cb6-6c076031f00d','','',NULL), +(13178,'Internal Tank','FuelTank','Fuel','fe76bbc8-b7bf-4ea0-88da-6b0d1f94bf0f','','',NULL), +(13179,'Seat','SeatAccess','UNDEFINED','cfb07314-706b-4dd2-97fa-cc6efdba305b','','',NULL), +(13180,'COOL_AEGS_S04_Javelin_SCItem','Cooler','UNDEFINED','1f5be5de-b5ea-42c7-879f-289c4bf64f19','','',NULL), +(13181,'ARGO_ATLS_IKTI_ARGOS_Blanking_Plate_Large','Misc','UNDEFINED','7cb43dc5-2993-4796-ad9f-dbbfd068a301','','',NULL), +(13182,'Ixonia Helmet Desert Camo','Armor','Helmet','6e01d995-1e0e-445d-b24d-bd0d4defb9f7','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nMade to withstand the heaviest hits, the Ixonia helmet was crafted with the needs of on-the-ground combat in mind. It features a hybrid composite shell and foam inner core that work in tandem to ensure stability and high impact-reisistance. An optional hood and camo cape provide protection from the wind when worn with the matching jacket. Please note that this mask is not space-rated and should only be worn in naturally breathable environs.'), +(13183,'Apollo Lifeline Livery','Paints','UNDEFINED','cb86f3e4-5d3e-40b3-85c2-4feb918c95d7','','','Swoop in to save the day in style with the Lifeline livery for the Apollo. It features a base white paint with teal and red highlights.'), +(13184,'Internal Tank','QuantumFuelTank','QuantumFuel','b28eb817-b791-4171-90a3-b2eecdb8ca3e','','',NULL), +(13185,'CF-227 Badger Repeater','Weapon','Gun','dfe5aeb2-3b56-422b-ba88-f165e827facd','','','Manufacturer: Klaus & Werner\nItem Type: Laser Repeater\nSize: 2\n\nThe CF-227 Badger is Klaus & Werner’s dependable size two repeating laser. Its increased output and high rate of fire make it a solid contender in any fight.'), +(13186,'Tempest II Missile','Missile','Missile','4317f2fc-4044-454e-8400-25c2e3c65136','','','Manufacturer: Firestorm Kinetics\nTracking Signal: Cross Section\nSize: 2\n\nThe Tempest was designed with nothing but annihilation in mind. Utilizing FireStorm Kinetics\' targeting technology, this proximity missile locks onto a target\'s cross section to draw conflicts to a swift conclusion.'), +(13187,'Glow','Misc','Harvestable','eefcd9ea-0506-49c8-9c61-0a707376fd0f','','','A variant of the street drug known as \"Neon,\" Glow is formulated to create more euphoric feelings and less hallucinations than are normally associated with other members of its chemical family. The telltale sign of a user is that swallowing the capsule often leaves glowing residue on the tongue. Some people microdose Glow to help them maintain a more positive attitude (being careful to drip the dose directly onto the back of their throat). The main risk is that once the effect wears off people can become suicidally depressed for a short while before their brain chemistry normalizes.'), +(13188,'ORC-mkX Helmet Woodland','Armor','Helmet','9976120c-f6cc-41b3-91b4-d9f14690ec4b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(13189,'Chiron Arms Samaritan','Armor','Arms','7e4cdd55-8d1d-4832-893f-18f2f29af70c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBe the first on the scene with the Chiron armor. Designed to provide the essential protection that combat medics need, the armor features ultra-lightweight paneling to keep the wearer quick on their feet without compromising on safety. Crucial, high-impact sections have been reinforced with raised carbon plating on top of a highly durable polyfiber for maximum flexibility.\n\nThe Samaritan edition was styled for first responders to be highly visible. The red, white, and grey color scheme features a white medical cross symbol across the chest and helmet.'), +(13190,'Dopple','Cargo','Cargo','47df6faa-e0d4-4408-8cd7-ad31ea1a6c68','','',NULL), +(13191,'Holographic Vanduul Skull','Misc','Personal','97865c53-9c9a-4251-a093-61db72a79b87','','','Based on a real Vanduul killed during the Battle of Vega II, this hologram serves as a reminder of the horrors Humanity faced on that harrowing day.'), +(13192,'AEGS_Idris_Upper_Camera_Mount','Turret','GunTurret','d6f2d4eb-cdff-4b85-9ad8-de0dd579aa99','','',NULL), +(13193,'Ball','Char_Head_Piercings','UNDEFINED','3b17f569-9546-405e-9176-befd832b1233','','',NULL), +(13194,'Food_fruit_jumpinglime_1_a','Food','Plant','af0e7ad7-794b-4f97-a4fa-cdbe5b379e3d','','',NULL), +(13195,'PAB-1 Core Twilight','Armor','Torso','85b964bb-8c5f-4641-8fb1-526cf59dfb1c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(13196,'ORC-mkV Arms Sakura Sun Edition','Armor','Arms','4b47b36c-eff7-48c2-ab02-fc7536f3d2b7','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement. The Sakura Sun Edition was made specifically for the company.'), +(13197,'Door Control','Door','UNDEFINED','ef3d9d07-1150-431f-8065-f4cfe59c08e1','','',NULL), +(13198,'Umbra','Shield','UNDEFINED','6bec0a0a-9214-448c-96ea-272fc9302a27','','','Item Type: Shield Generator\nManufacturer: Ascension Astro\nSize: 2\nGrade: A\nClass: Stealth\n\nSlip through the darkness of space like a phantom with the Umbra stealth shield generator. Best when used in conjunction with other low signature components from Ascension Astro.'), +(13199,'Venture Legs Voyager','Armor','Legs','3f19b893-7330-44d1-b38b-9bb52889e5c4','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRobert Space Industries’ Venture Explorer Suit provides exceptional protection against the dangers of space. Designed for those who don\'t know where their next adventure might go, the suit combines comfort and safety without sacrificing mobility. The special Voyager edition features a red and black color scheme with white highlights. The result is a stylish suit that looks as good as it performs.'), +(13200,'MXC Icefront Camo Livery','Paints','UNDEFINED','4fbe203a-4a66-487c-b6f2-76f30eb22a74','','','Disguise the silhouette of the MXC with the white and grey digital camo of the Icefront Camo livery, which is also compatible with other Greycat M-series vehicles.'), +(13201,'ANVL_Paladin_Thruster_Vtol_Front_Right','ManneuverThruster','UNDEFINED','df1d8e15-45fa-4d0b-8258-808bd400f4c3','','',NULL), +(13202,'Souvenirs','Cargo','Cargo','e29d60dc-b035-4e13-89c4-4b32b5c1dadc','','',NULL), +(13203,'un_jar_glass_1_berries_d','Misc','UNDEFINED','54f4f037-bd6c-4303-9440-0f6ca1b462a0','','',NULL), +(13204,'Screen','SeatDashboard','UNDEFINED','ee608f80-85d2-4da8-b917-5bdee290c768','','',NULL), +(13205,'shelf_feet_02x01x04_02Ports','ShopDisplay','Default','86c59428-f7ed-4ce3-9cd1-1fb27f0ae828','','',NULL), +(13206,'Aegis Gemini Missile Launcher','MissileLauncher','MissileRack','efb0a583-46d5-4227-b09b-2389686de9ed','','','Aegis Gemini Missile Launcher'), +(13207,'un_jar_glass_1_empty_a','Misc','UNDEFINED','b4c77272-fac5-4830-a83e-ff84399c846c','','',NULL), +(13208,'Nomad IceBreak Livery','Paints','UNDEFINED','fce33fd2-aefe-426d-a963-a835f54e8faa','','','Equip your Nomad with a paint scheme cooler than a snow storm. The IceBreak livery mixes crisp, cool white with a frostbitten blue for an exciting look suitable for any season.'), +(13209,'PAB-1 Arms Grey','Armor','Arms','aa1cecfa-f9ce-459f-beb1-4459e381bb83','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(13210,'H_Dashboard_Projector_HUD_XIAN_Scout','Display','UNDEFINED','948cf6cf-399c-4b65-8343-9c59ad61b51c','','',NULL), +(13211,'Cup','Drink','UNDEFINED','b85485a3-6eb8-44e6-807b-047502d26ed8','','','A drinking vessel.'), +(13212,'m_scale_vlk_adult_ice','Char_Accessory_Head','Vanduul','38345bcd-85d3-4587-a4b3-07941faef547','','',NULL), +(13213,'Carryable_2H_CY_container_ore_1_tall_a','Misc','UNDEFINED','3774ad38-417b-47e0-9ede-037983021f02','','',NULL), +(13214,'Flight Blade','FlightController','UNDEFINED','d38e6d10-c7ee-4189-87cc-315dd7ed9ccd','','',NULL), +(13215,'TRGT. STATUS','Seat','UNDEFINED','97b77473-bb59-402a-b0bd-6cd6055433ef','','',NULL), +(13216,'ANVL_Carrack_CargoGrid','CargoGrid','UNDEFINED','0a094419-df5f-48f8-a1ed-da513ba8c160','','',NULL), +(13217,'Lanxi Jacket Gray','Char_Clothing_Torso_1','UNDEFINED','57bfcbd8-2855-4f1b-b46b-66bfdc0c73b7','','','Carrying Capacity: 1K µSCU\n\nThis simple knit jacket from City Lights features a classic cut and chic microseam technology to create a thoroughly modern addition to any wardrobe. It also features a stand collar to help keep you warm.\n\nWomen\'s sizes currently out of stock.'), +(13218,'Carryable_1H_CY_glass_champagne_1_a','Misc','UNDEFINED','50323de3-58f5-4d78-ae8f-ad10c404511e','','',NULL), +(13219,'RSI_Aurora_GS_Thruster_Mav_Joint','ManneuverThruster','JointThruster','8146f089-01aa-4f27-8782-63abb11779f3','','',NULL), +(13220,'Lastaprene','Cargo','Cargo','f06d372b-5bfb-4575-90d8-9c55f0741bb8','','',NULL), +(13221,'7CA \'Nargun\'','Shield','UNDEFINED','9bf5b169-b3cb-4c34-bbad-6faf1bfc2e29','','','Item Type: Shield Generator\nManufacturer: Behring\nSize: 3\nGrade: A\nClass: Civilian\n\nCommercial-grade shield generators don’t get any better than the 7CA ‘Nargun’. The component utilizes Behring’s patented ‘Freeze Flow’ tech to keep its heat signature in check while increasing both its overall performance and durability.'), +(13222,'RSI_Zeus_Wing_Left','AttachedPart','UNDEFINED','5154625d-c960-47c2-b199-7bffd64621e2','','',NULL), +(13223,'Finley the Stormwal Plushie','Misc','UNDEFINED','fdbe381a-957c-4e7f-b255-439f61821ae1','','','Finley the Stormwal loves sailing through the clouds in Crusader\'s atmosphere. Much like Crusader\'s ships, Finley is big, graceful, and quite the sight to behold. Now this majestic creature can accompany you on a journey through the stars with this soft and squeezable plushie.'), +(13224,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','12552886-9cd0-4ca2-8923-ca3a810c6d03','','','Joker Defcon - Noise Launcher'), +(13225,'AEGS_Retaliator_CargoGrid_Front_left','CargoGrid','UNDEFINED','1c72ac07-0f44-4f11-a755-a7284d9a934f','','',NULL), +(13226,'Vanguard Timberline Livery','Paints','UNDEFINED','726f9f92-e050-4879-b3b8-15de487a256b','','','Customize your Vanguard with the Timberline livery that\'s olive green with orange accents.'), +(13227,'Polaris Black Magic Livery','Paints','UNDEFINED','eccaab4a-2803-47bb-a85f-f66b4a4ada01','','','The Black Magic livery for the Polaris mixes a macabre black with glowing orange highlights for a look inspired by the sinister spirit of Day of the Vara.'), +(13228,'Tuvois Jacket Olive','Char_Clothing_Torso_1','UNDEFINED','2836e624-23ad-4f76-a6fd-d3f25c5fd1ea','','','Carrying Capacity: 1K µSCU\n\nCreated in collaboration with legendary designer Avon, OpalSky is proud to unveil the Tuvois, an open vest featuring stark, bold styling that\'s destined to make an impression. \n\nWomen\'s sizes currently out of stock.'), +(13229,'Lunes (Spiral Fruit)','Misc','Harvestable','fc54178c-3a21-4d26-a70a-9baf54ededb1','','','NDR: 23\nHEI: 10\nEffects: Hydrating\n\nThe Lunes is a deciduous tree native to the warmer areas of Osha in Kilian system. It bears an edible fruit known as a Lunes fruit or a Spiral Fruit based on the circular ridges that can form once the fruit begins to ripen. The fruit’s skin is covered with a short fuzz that is generally removed before consumption. When ripe, the Lunes is a very sweet and juicy flavor and have become a very popular summer delicacy, commonly found in ice cream and other desserts.'), +(13230,'RSI_Aurora_GS_LX_Thruster_Main','MainThruster','FixedThruster','f7ac3fd0-2907-4f06-baed-39c287834d4a','','',NULL), +(13231,'DRAK_Vulture_Thruster_VTOL','ManneuverThruster','FixedThruster','e4d8faaa-0949-433e-8faf-efaf56d39a61','','',NULL), +(13232,'SHIELDS','ShieldController','UNDEFINED','9ea72333-157c-4d9c-b4f7-cc044c611608','','',NULL), +(13233,'Manaslu Jacket Rust Society','Char_Clothing_Torso_1','UNDEFINED','bf6026f8-9795-4219-b38d-55299d02866e','','','Carrying Capacity: 5K µSCU\n\nThe Rust Society edition adds eye-catching colors to this jacket\'s unique asymmetrical design. Made from a patented blend of fabrics, the Manaslu\'s surprisingly lightweight insulation will keep you warm in the coldest corners of the universe.\n\nWomen\'s sizes currently out of stock.'), +(13234,'CRUS_Star_Runner_Scanner_Dish','Misc','UNDEFINED','53ce0d4c-fded-47f5-8fcd-bebe90a5e1d6','','',NULL), +(13235,'Door_Ship_Sensor_Proximity_1x6x3','Sensor','DoorPart','c2954fe4-04bf-4b03-9797-5017dcf0da91','','',NULL), +(13236,'G-2 Helmet Green','Armor','Helmet','3b2ad422-e01d-4f09-b69b-25e93bf987ad','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. Visor is AR crosshair compatible.'), +(13237,'AEGS_Javelin_DockingTube','DockingCollar','UNDEFINED','cbca7a7a-5c01-4a39-bcfd-9f4712225f49','','',NULL), +(13238,'MISC_Freelancer_Base_SCItem_Dashboard_Esc_Pod_Lower_Right','SeatDashboard','UNDEFINED','3215c011-78be-492e-8652-1326ae227918','','',NULL), +(13239,'sc_nvy_deckcrew_uniform_01_01_01','Char_Clothing_Torso_2','UNDEFINED','cfa5330f-c0da-4986-b8f7-22258595f5e2','','',NULL), +(13240,'Oracle Helmet Ferrum','Armor','Helmet','76e780fb-7029-48f3-8a4d-a241a1efb7c5','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(13241,'Perseus Repute Livery','Paints','UNDEFINED','8bf8f763-3fd3-467f-a40b-378c26193014','','','The unique Repute livery divides the Perseus into distinct sections with a tan front half and a red and blue back half.'), +(13242,'AEGS_Reclaimer_Thruster_Mav_Fixed_Top_Front','ManneuverThruster','FixedThruster','15a9478b-d2e3-485c-b1a0-e679b85ff3c1','','',NULL), +(13243,'Libio Jacket Olive','Char_Clothing_Torso_1','UNDEFINED','b5fc6485-a787-476c-aa05-e784e75b32b4','','','Carrying Capacity: 1K µSCU\n\nOne of OpalSky\'s classic pullovers, the Libio features a two-tone asymmetrical pattern and polyweave blend to keep it elegant and striking every time you wear it.\n\nWomen\'s sizes currently out of stock.'), +(13244,'ANVL_Door_Decal_Carrack_Crew','Decal','DoorPart','372a7f98-ee11-4b51-a2bc-5c7a25dceba7','','',NULL), +(13245,'Yakisoba Dog','Food','Junk','4fe49ee9-b1e9-4403-86c6-ada48b076142','','','NDR: 34\nEffects: Dehydrating, Hyper-Metabolic\n\nSweet-sauced noodles and veggies are grilled crisp and then served a top of a classic hot dog.'), +(13246,'MacFlex Core Tan','Armor','Torso','0d8d0494-4de0-43f7-9603-c1f1cd0d647f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(13247,'Internal Tank','FuelTank','Fuel','c25ba2f9-f1a0-4332-9e7d-b9f74f66bee1','','',NULL); +INSERT INTO `tbl_scobjs` VALUES +(13248,'Cassidy Shirt Stonewall','Char_Clothing_Torso_0','UNDEFINED','4934d321-650b-43e7-85b0-8472b24b93fe','','','Habidash\'s Cassidy short-sleeved henley t-shirt features a lightweight, breathable fabric blend paired with a neck covering and separated arm sleeves for a stylish look that remains practical in dustier climates.'), +(13249,'Wolf Frost Camo Livery','Paints','UNDEFINED','b9fab048-54ca-4a3a-8658-b2320dd1de30','','','The Frost Camo livery is crisp white with a subtle camo pattern and grey and red highlights.'), +(13250,'LumaCore','PowerPlant','Power','c7c3faeb-1d23-410d-9f75-8b36fd0d58ba','','','Item Type: Power Plant\nManufacturer: ACOM\nSize: 1\nGrade: A\nClass: Competition\n\nAmong small power plants, ACOM’s LumaCore consistently ranks among the best for its power rate, cool rate, and high overheat temperature. That’s why if you value your ship’s performance over anything else, this competition-grade component is perfect for you.'), +(13251,'Day One Shirt Aqua','Char_Clothing_Torso_0','UNDEFINED','e0fa9597-2384-446a-85a0-3f85f6171bf0','','','This Henley shirt from Stegman\'s is made with AirFlow technology, a stain-resistant, air-cooled fabric that keeps you comfortable and dry.'), +(13252,'Odyssey II Helmet Grey','Armor','Helmet','b1dad547-8423-4794-9071-f187929c5cee','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(13253,'Freelancer Stock Missile Rack','MissileLauncher','MissileRack','20afa9f7-2e46-4ceb-a866-a4bdd1d0a64c','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 4\nMissiles: 8xS1\n\nBehring’s MSD-481 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 4 hardpoint for the reliable and effective launch of eight S1 missiles.'), +(13254,'Microid Battle Suit Arms','Armor','Arms','c9f0ef56-f2fc-4275-839f-ebe6c5911513','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(13255,'Nyman Jacket Olive','Char_Clothing_Torso_1','UNDEFINED','fc085f89-a0ad-403e-a06f-8484a0af99bf','','','Carrying Capacity: 1K µSCU\n\nOpalSky\'s Nyman light pullover is perfect to have on hand when lounging poolside or on those chilly nights.'), +(13256,'Door','Door','UNDEFINED','6072f417-62b1-4263-b3fb-1653bf27410e','','',NULL), +(13257,'Deadhead Helmet Brassy','Armor','Helmet','ed0836f0-3341-4d1e-bdbb-47b9c4ab540e','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\n\nRemind your enemies that death is coming with the Deadhead helmet. In place of a visor, the ghastly visage of a Human skull, lit from within by an infernal glow, is sure to send any opponent running.\n\nThe Brassy version features white coloring with bronze accents.'), +(13258,'ORC-mkX Legs Woodland','Armor','Legs','b42ecd28-d8e0-402e-aaf9-86c4a9d97169','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(13259,'Remote Turret','Turret','Utility','484f25e0-be6f-4597-958d-9a61b436e1f9','','','Remote Turret'), +(13260,'Seat','SeatAccess','UNDEFINED','752ed0c4-a970-47ac-a4aa-d36305ba95ef','','',NULL), +(13261,'Methane','Cargo','Cargo','d06b29ac-fe5c-4a69-9af7-772ebd680a90','','',NULL), +(13262,'SHIELDS','ShieldController','UNDEFINED','c8d5bab3-b479-464b-ad81-fd92020332c5','','',NULL), +(13263,'Pitambu','Cargo','Cargo','e318e567-ccf6-488a-bce2-8550e8ef83c5','','',NULL), +(13264,'Table_6_Seat_MISC_Hull_C','Usable','UNDEFINED','8bdec8df-073c-42f6-afb7-104928af65ce','','',NULL), +(13265,'Gladiator Ship Armor','Armor','Medium','67de5f34-f9db-4615-aea0-b60921909c74','','','Gladiator Ship Armor'), +(13266,'OT8-RF \"Scorched\" (8x Telescopic)','WeaponAttachment','IronSight','70a1857b-69b1-4456-b29e-36c505f09eca','','','Manufacturer: Gemini\nType: Telescopic\nAttachment Point: Optic\nMagnification: 4x - 8x\nParallax: Medium\nSize: 3\n\nCombining a premium 8x telescopic sight with Gemini\'s innovative echoburst rangefinder, the OT8-RF model allows you to accurately gauge the distance to your target; vital for effective precision shooting. The standard scope for Gemini\'s A03 Sniper Rifle, the OT8-RF is engineered to impress in a variety of situations and engagements. The Scorched edition features a unique flame patina.'), +(13267,'Carrion Core Payback','Armor','Torso','fe8753f3-a051-4606-86e8-359cfb4600a1','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Medium, Light\n\nForged from scavenged metals and ragged clothes, the Carrion armor is a crude concoction of repurposed materials that demonstrates you\'ll do anything it takes to survive.\n\nThe Payback version is sprayed with red paint and anointed with bone fragments.'), +(13268,'Carrion Core Ashen','Armor','Torso','073e45c6-c896-456d-9ae4-7c53d1501bbc','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Medium, Light\n\nForged from scavenged metals and ragged clothes, the Carrion armor is a crude concoction of repurposed materials that demonstrates you\'ll do anything it takes to survive.\n\nThe Ashen version is sprayed with white paint and anointed with bone fragments.'), +(13269,'Door Control','Door','UNDEFINED','13fa9486-e86f-4a8b-98da-fa2e3a557fe7','','',NULL), +(13270,'Carrion Core','Armor','Torso','734262e2-f20a-4ca6-a34d-6e0f41962379','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Medium, Light\n\nForged from scavenged metals and ragged clothes, the Carrion armor is a crude concoction of repurposed materials that demonstrates you\'ll do anything it takes to survive.'), +(13271,'TrueDef-Pro Core Black/Grey/Red','Armor','Torso','d16a5ad4-b30c-4abf-bd6d-be888658830a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(13272,'Spectre','QuantumDrive','UNDEFINED','1f6908a2-80b0-48c1-ad76-d93a6afcbfd7','','','Item Type: Quantum Drive\nManufacturer: RAMP Corporation\nSize: 1\nGrade: A \nClass: Stealth\n\nThe Spectre can\'t make your ship invisible, but it comes close. Expertly crafted by RAMP, this quantum drive disperses heat and hides IR and EM signatures to make it a great small component for those that want to go unnoticed.'), +(13273,'DockingTube_Fuel_Ports_RSI_Perseus','DockingCollar','UNDEFINED','c1c7c5c6-b9ef-490d-8bee-850084f4acd5','','',NULL), +(13274,'Venture Legs Starcrossed','Armor','Legs','e0bcd754-53cb-4dae-a3a8-34fd5ce516f7','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRobert Space Industries’ Venture Explorer Suit provides exceptional protection against the dangers of space. Designed for those who don\'t know where their next adventure might go, the suit combines comfort and safety without sacrificing mobility. This special Starcrossed edition is modeled after the armor worn by Yuri Ilyin in the famous 25th century vid, Coramor, which inspired the eponymous lovers\' festival.'), +(13275,'Weapon_Rack_DRAK_Cutter_4_Slot','Usable','UNDEFINED','402b9c39-ade2-4f55-a2cb-d26cb16b0e63','','',NULL), +(13276,'MRAI_Guardian_Dashboard_Btn','Misc','UNDEFINED','a2bab6cc-8b67-4723-b71c-23f41bc520c7','','',NULL), +(13277,'Seat','Usable','UNDEFINED','ef912a29-8e89-4439-b7f7-39efdce13e52','','',NULL), +(13278,'Human Food Bars','Cargo','Cargo','17c1cb45-9a33-449e-8790-bab68cc78ff8','','',NULL), +(13279,'PAB-1 Legs (Modified)','Armor','Legs','61ab724d-269e-4056-8ccf-17f3f4bd567e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nThis version of CDS\' PAB-1 legs has been modified from its original form. Clark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(13280,'Lynx Legs Imperial','Armor','Legs','38c739ba-9d2c-4dd2-a3c1-3bf47be0ffef','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(13281,'Palatino Legs Deadlock','Armor','Legs','1195a275-41de-4b75-b141-929e17267af1','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower. The Deadlock variant features a grey camo pattern with yellow highlights.'), +(13282,'Cargo_Comm_125x3_Vice_WiDoW','Cargo','Cargo','2f3bdecf-a173-4b03-8c61-9798a6a3eefd','','',NULL), +(13283,'Midas Fish','Misc','UNDEFINED','b7f3f646-6f4b-4660-a3d9-1238a11869e6','','','Found in the rivers on Cassel in the Goss System, the Midas fish\'s golden color and nocturnal schedule make it a highly sought after addition to aquariums around the universe.'), +(13284,'Syulen Chui?a Livery','Paints','UNDEFINED','c6708253-bef5-480b-ad18-90a25c8f5f08','','','Make your Syulen stand out from the crowd with the Chui?a livery that?s blue marbled with gold accents and evokes passing waves.'), +(13285,'Seat','Usable','UNDEFINED','bcde6b98-c150-40e7-af98-f51adf7e2090','','',NULL), +(13286,'Beryl','Cargo','Cargo','48e01b35-f5e2-4247-a1e8-13739a7095ea','','',NULL), +(13287,'Carryable_cleaning_sponge_8_a','Misc','UNDEFINED','05d33216-7cfe-4891-975c-5aaf9c91184a','','',NULL), +(13288,'Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','8897b1cd-87f9-4938-921b-8df8b28c4356','','','Live in comfort with MuyMuy\'s Davlos line of cotton-synthetic shirts. The durable, yet soft, fabric contains a patented SweatGuard technology that not only whisks away perspiration but helps prevent stains.'), +(13289,'MISC_Fortune_CargoGrid_Main','CargoGrid','UNDEFINED','2fa57a1f-f534-4358-b89d-a1df0620e556','','',NULL), +(13290,'YellowJacket GT-210 Gatling','Weapon','Gun','55a38a5c-4b18-4905-81b4-698f4907122f','','','Manufacturer: Gallenson Tactical Systems\nItem Type: Ballistic Gatling\nSize: 1\n\nWhile the GT-210 YellowJacket may be small, it packs a mighty sting. This high-speed ballistic weapon is perfect for targeting smaller, more mobile targets and its DTX-8 ammo supply system almost completely eliminates weapon jams due to bad rounds.'), +(13291,'Seat','Usable','UNDEFINED','96a8ad59-2ee8-46d5-a55c-59c15a4a7238','','',NULL), +(13292,'Cargo_Comm_125x3_Gas_Astatine_a','Cargo','Cargo','49fe64f0-1945-4236-85ca-f513f0092cc3','','',NULL), +(13293,'Origin White Bishop','Gadget','UNDEFINED','6a669db1-0329-46fc-a0b9-a9444efe8cd1','','','Made exclusively for Origin Jumpworks and included with the 890 Jump, this white chess piece is a modern version of a classic set.'), +(13294,'Weapon_Rack_1_Volt_Shotgun_Uncommon_002','Usable','UNDEFINED','262538c1-b09a-4384-bd4a-7d3a4660140e','','',NULL), +(13295,'G-2 Helmet Grey','Armor','Helmet','850d09ee-c2c0-4a78-b14c-db5db1f54d66','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. Visor is AR crosshair compatible.'), +(13296,'Reliant Utility Mount Cap','Turret','GunTurret','74051a0e-e812-47ac-88eb-bf85c8f47038','','','Item Type: Utility Mount Cap (Reliant Exclusive)\nManufacturer: MISC\nSize: 4\n\nA utility mount cap designed specifically for use on the wings of the MISC Reliant.'), +(13297,'Adiva Jacket Sienna','Char_Clothing_Torso_1','UNDEFINED','ce4f5f12-448b-4b1c-a79a-077fccbd82b0','','','Carrying Capacity: 1K µSCU\n\nDefine your ultimate you. The Adiva is an asymmetrical pullover with bold mixed-materials and solid reinforced trim.'), +(13298,'Paint_300_Dash_GlossBlue','Misc','UNDEFINED','ed47d860-2537-4248-858b-78e02d9285a6','','',NULL), +(13299,'Door Control','Door','UNDEFINED','9833fbc4-69c4-4e35-a724-1eadb06cc1f8','','',NULL), +(13300,'DockingTube_Fuel_Ports_ORIG_300i','DockingCollar','UNDEFINED','683e3006-ee36-4c0b-9544-3ee075417ff1','','',NULL), +(13301,'CBH-3 Helmet Twilight','Armor','Helmet','85941c34-18b3-4142-92a5-e574180ffa28','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. Visor is AR crosshair compatible.'), +(13302,'DockingTube_Fuel_Ports_ORIG_100i','DockingCollar','UNDEFINED','8056d9d6-aa69-47b4-9357-c0188923f9da','','',NULL), +(13303,'Oracle Helmet Tan','Armor','Helmet','01159d0d-5212-4587-964e-595be7a73469','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(13304,'DockingTube_Fuel_Ports_ORIG_600i','DockingCollar','UNDEFINED','003f6c50-5208-4cfc-81ff-40ebb6dfe795','','',NULL), +(13305,'Prospector Stormbringer Livery','Paints','UNDEFINED','70b6cd53-f564-4c86-a4d4-5103e89be7ab','','','This custom Prospector livery was created to celebrate the 2950 IAE on microTech. It blends black and electric blue to give the ship a cool new look.'), +(13306,'Libio Jacket Sienna','Char_Clothing_Torso_1','UNDEFINED','75b3b850-02ff-4646-9704-33f6b6b50c5c','','','Carrying Capacity: 1K µSCU\n\nOne of OpalSky\'s classic pullovers, the Libio features a two-tone asymmetrical pattern and polyweave blend to keep it elegant and striking every time you wear it.\n\nWomen\'s sizes currently out of stock.'), +(13307,'DockingTube_Fuel_Ports_ORIG_400i','DockingCollar','UNDEFINED','acd8b0e9-ef0f-4874-a3eb-f46818da04af','','',NULL), +(13308,'Weapon_Rack_DRAK_Cutter_Rambler_9_Slot','Usable','UNDEFINED','e21857d7-f23b-44c5-9f2a-5d95934dae58','','',NULL), +(13309,'Controller_Salvage_RSI_Salvation','SalvageController','UNDEFINED','774ee326-7264-49da-9ddc-b324360f739d','','',NULL), +(13310,'Arden-SL Helmet (Modified)','Armor','Helmet','33e4f101-a485-4c39-b07c-b9fad15edfdc','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThis version of Roussimoff Rehabilitation Systems\' Arden-SL helmet has been modified from its original form. With its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics. It also features a fully enclosed helmet with an integrated cowl. Visor is AR crosshair compatible.'), +(13311,'Door Control','Door','UNDEFINED','79022bde-0e30-46a0-adf3-3c6151850b3f','','',NULL), +(13312,'TRGT. STATUS','Seat','UNDEFINED','38288bdc-2d0a-4148-8998-14af3e2a9dc5','','',NULL), +(13313,'Orbgn_None_Consumable_Keycard','FPS_Consumable','Hacking','8fefb274-5168-4c09-be55-0afa3126fbe9','','',NULL), +(13314,'Covalex Cargo Plushie','Misc','Flair_Wall_Picture','ffb4425f-0966-45dd-9828-5395cc757889','','','Here\'s a haul you can hug. This plushie shaped like a cargo container features Covalex Shipping branding with the company\'s logo and brown and grey color scheme.'), +(13315,'ANVL_Terrapin_Locker_Right','Player','UNDEFINED','b1d38033-4fe5-41e3-9f7b-f67188296e0b','','',NULL), +(13316,'AEGS_Idris_Thruster_Main_02','MainThruster','JointThruster','5d7eee0d-a832-49b3-b65a-772dfe0af9b3','','',NULL), +(13317,'Nyman Jacket Sienna','Char_Clothing_Torso_1','UNDEFINED','89c498b0-7154-4f28-885c-28b3300892a5','','','Carrying Capacity: 1K µSCU\n\nOpalSky\'s Nyman light pullover is perfect to have on hand when lounging poolside or on those chilly nights.'), +(13318,'Arden-SL Legs Balefire','Armor','Legs','bfb2fd12-6dec-4555-889e-5a46cd4e08f0','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics.'), +(13319,'display_components_s2_modular_shield_2ports','ShopDisplay','UNDEFINED','08d97a3c-72a3-4ac5-88b8-52024b25fb6f','','',NULL), +(13320,'Seat','Usable','UNDEFINED','9447512c-af6c-4dbe-a146-94c4b4cafc1c','','',NULL), +(13321,'AEGS_Reclaimer_Dashboard_Pilot','SeatDashboard','UNDEFINED','aa6da457-35ee-4f2d-afd7-4b5dcb02f63b','','',NULL), +(13322,'TRGT. STATUS','Seat','UNDEFINED','798959a6-c9c2-4f52-ac34-b1c139006d14','','',NULL), +(13323,'CNOU_Mustang_Beta_Thruster_Mav_Fixed_01_Up','ManneuverThruster','FixedThruster','1e480af7-7c2b-45e7-8501-40b2ee51bd86','','',NULL), +(13324,'MacFlex Arms','Armor','Arms','ba8131c0-5cff-489d-9930-51d3bdb13c23','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(13325,'CitizenCon 2955 Trophy','Misc','Magazine','88f0530e-44de-4df5-a722-a615d1c3de9f','','','Constructed from a core sample of rock extracted from the asteroid Delamar in Nyx, this commemorative CitizenCon 2955 trophy features a carved center inspired by Levski\'s signature borehole.'), +(13326,'CitizenCon 2954 Trophy','Misc','Magazine','f4adefef-7616-453e-a7a3-74eda64f80b1','','','The trophy for CitizenCon 2954 embraces the spirit of building a better empire with bold chevrons and construction-themed styling that reveals a holographic event logo.'), +(13327,'CitizenCon 2953 Trophy','Misc','Magazine','33a52ab8-c96f-4eac-9609-5cfa3b8d6f81','','','Commemorate CitizenCon 2953 with a trip to the dark side with this unique trophy fashioned from debris extracted from the dangerous Pyro system.'), +(13328,'VNCL_Scythe_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','bee7bd8c-0f1d-4a51-b638-2487498dcc57','','',NULL), +(13329,'Weapon_Rack_1_Volt_Rifle_Legendary_001','Usable','UNDEFINED','12b48c64-cc0c-4e3e-bd6b-e3279ca66099','','',NULL), +(13330,'Aztalan Tamarack Arms','Armor','Arms','a9a51183-d755-4c18-aa60-5b8bec5387b4','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFear no frontier while wearing the Aztalan armor. This mixture of armor plating and reinforced fabrics will keep you safe yet swift on your feet. Tehachapi\'s masterful design gives the armor a subtle yet unmistakable frontier style that also providing ample storage. Suitable for everything from sand dunes to bustling backstreets, the Aztalan is the ideal choice for your next adventure.'), +(13331,'CitizenCon 2951 Trophy','Misc','Magazine','ee7cb1c6-cc2b-4b31-ad8a-8e8c959ad3a9','','','Commemorate CitizenCon 2951 with this unique trophy. A gold and silver metallic casing holds a piece of green marble with the year and CitizenCon logo intricately etched into it.'), +(13332,'Door Control','Door','UNDEFINED','aba25aa7-abfe-45d2-af8d-4df2fb8173bc','','',NULL), +(13333,'Caret Pants Army Green','Char_Clothing_Legs','UNDEFINED','058b7b1d-0c7f-4f9b-a890-008844e8ca81','','','Carrying Capacity: 2K µSCU\n\nWith the fortitude of workwear and the comfort of khakis, the Caret pants are sure to become your standard go-to for tough jobs. Built with strong fabric and quality stitching so you can focus on what needs to be done.'), +(13334,'Soap','Misc','UNDEFINED','80557def-7b6a-42fd-b200-8d19f2b5092f','','',NULL), +(13335,'Crusader Black Queen','Misc','UNDEFINED','1c460458-c9dc-4663-848e-7ef9525e6681','','','Included with the Mercury Star Runner from Crusader Industries, this minimalist black chess piece has a marble base.'), +(13336,'GRIN_ROC_DS_Dashboard_Driver','SeatDashboard','UNDEFINED','fe15cbee-9f88-4c0b-a215-2c05b7f5f460','','',NULL), +(13337,'Backlund','Radar','MidRangeRadar','5fd25232-339f-4a6b-beba-5e0ee1d83cc8','','','Item Type: Radar\nManufacturer: WillsOp\nSize: 1\nGrade: B\nClass: Civilian\n\nWherever you fly, the WillsOp Backlund radar is perfect for gathering information on what’s nearby and detecting a variety of emission signatures.'), +(13338,'XIAN_Nox_Thruster_Aux_Left','ManneuverThruster','JointThruster','82e86c9f-dc9b-48b7-8fa0-20fcf47fccf2','','',NULL), +(13339,'backpack_nodraw','Armor','Backpack','f3fe3607-97d4-4453-86ff-f1f387935c80','','','@LOC_PLACEHOLDER'), +(13340,'TRGT. STATUS','Seat','UNDEFINED','5819deff-d36e-4818-91fa-59e4284a4da6','','',NULL), +(13341,'Carryable_1H_CY_weight_dumbbell_1_36kg_a','Misc','UNDEFINED','4c5ee9ec-2f08-4c49-bb7d-32ae2f93c62f','','',NULL), +(13342,'Manned Turret','TurretBase','MannedTurret','3a9fd190-fb3f-42c6-aa87-0c7e7e42ec10','','',NULL), +(13343,'Day One Shirt Olive','Char_Clothing_Torso_0','UNDEFINED','902b4e77-f0b6-4914-b3c6-8f5682d62218','','','This Henley shirt from Stegman\'s is made with AirFlow technology, a stain-resistant, air-cooled fabric that keeps you comfortable and dry.'), +(13344,'Door','Door','UNDEFINED','d2523e0b-bbe7-43ed-85ef-3d9bc84192c2','','',NULL), +(13345,'orig_bedding_duvet_4_l','Seat','UNDEFINED','ec7016d9-adc8-4eb9-a23f-f770c10a0b55','','',NULL), +(13346,'RSI_Constellation_Taurus_Thruster_Main','MainThruster','FixedThruster','b6e1a8ab-ef48-4984-8696-5051c3e7ab5b','','',NULL), +(13347,'Titanium (Ore)','Cargo','Cargo','175de87c-dc05-4a9f-bb59-7ef89aae6b00','','',NULL), +(13348,'Access','SeatAccess','UNDEFINED','594510ec-bf60-4097-bbc1-84d6fd6fcfb9','','',NULL), +(13349,'CRUS_Starlifter_Door_Decal_Sealed_A','Decal','DoorPart','8b322866-4bbb-4542-aaba-25ad24a9a026','','',NULL), +(13350,'Debnam Gloves Imperial','Char_Clothing_Hands','UNDEFINED','d218b2b0-a4ba-47c1-9ebc-9ff87032cb55','','','Named after the influential Terran tailor, Debnam gloves incorporate that famous tailor\'s classic design to keep your hands comfortable in colder temperatures.'), +(13351,'TRGT. STATUS','Seat','UNDEFINED','e9c28aca-0f30-4f99-ab00-9cfa53c04dba','','',NULL), +(13352,'VNCL_Gen2_PlasmaCannon_FiringMechanism_S4','WeaponAttachment','FiringMechanism','934ee15e-58e4-4c50-bffa-e185f4ac7e67','','',NULL), +(13353,'Calico Helmet Arid','Armor','Helmet','f2797162-e73d-4441-ac1c-f9d9328cef4f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -39 / 69 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDesigned to be an EVA-compliant, the Calico helmet can help you weather some incoming fire without slowing you down. It is the ideal light armor for infiltrators, snipers, thieves - basically anyone who likes to avoid kicking in doors.'), +(13354,'hightech_delta_door_double_a_lghtgrp','Lightgroup','AirlockPart','ce7bf4c4-a986-420e-9d62-66f183ee3bc8','','',NULL), +(13355,'Door Control','Door','UNDEFINED','b299f38d-0e05-49ca-ba2b-fde00c854dc0','','',NULL), +(13356,'RSI_Perseus_SeatAccess_Turret_Bottom','SeatAccess','UNDEFINED','f9e00b42-3918-44c3-8b0d-de98f3d03e47','','',NULL), +(13357,'DRAK_Corsair_Thruster_Retro_C','ManneuverThruster','UNDEFINED','77e82eb0-83c5-4d6a-bd84-1ab4de11120f','','',NULL), +(13358,'Scorpius Deck the Hull Livery','Paints','UNDEFINED','d39e7b38-6c64-4c19-a58f-09c09c915058','','','Express your holiday spirit with the Deck the Hull livery, which uses the traditional Luminalia colors of green and red to celebrate the popular Banu festival that\'s become beloved by Humans.'), +(13359,'Terrapin Felicity Livery','Paints','UNDEFINED','4ada1c1b-ed19-106c-013a-5b487905caaf','','','Make the Terrapin highly visible with the Felicity livery, featuring a primarily yellow base with grey and red accents.'), +(13360,'TrueDef-Pro Legs Black/White/Violet','Armor','Legs','510ece79-69ee-4fe2-905e-4b1a7fab4b21','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.\"'), +(13361,'Mining Arm','ToolArm','UNDEFINED','d5c7bdc2-c1a2-4576-ae4e-42bd76d7f981','','',NULL), +(13362,'m_human_mannequin_rsi_suit_08','ShopDisplay','UNDEFINED','9a6737ff-da61-4477-9ef1-abdf045417e9','','',NULL), +(13363,'Internal Tank','FuelTank','Fuel','0f71ac68-f37e-40ef-b08b-113ed889845f','','',NULL), +(13364,'Cutter Nightfall Livery','Paints','UNDEFINED','85d00148-67ab-4392-a702-a918fd0d6ab5','','','The Nightfall livery gives the Cutter a sleek black paint job with pops of cyan.'), +(13365,'Atavi Shirt Gainsboro','Char_Clothing_Torso_0','UNDEFINED','1e9e42a3-722f-4972-a8f0-62e064c7f0fe','','','MuyMuy\'s Atavi line of casual shirts are comfortable enough to wear at home, but stylish enough for a night out. They are made with EasyCare technology to maintain the colors during repeated washes.'), +(13366,'PAB-1 Arms Violet','Armor','Arms','2762c5fb-4246-4d07-9cf7-7339c89bc470','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(13367,'Iodine','Cargo','Cargo','9011dd81-e4db-417c-9ead-8c220aeca45f','','',NULL), +(13368,'Door Control','ControlPanel','DoorPart','5c604ac6-eadd-4223-83e3-7796ba3fd5d1','','',NULL), +(13369,'Ponos Boots Sienna','Char_Clothing_Feet','UNDEFINED','fc28e016-acc5-4b50-b732-0e843fb132a6','','','Quite simply, R6 Pro\'s Ponos boots were built for backbreaking work. Constructed out of Thermosulate technology, these waterproof and insulated workboots are rated for sub-arctic environments while the composite outsole ignores hazards to maintain traction when you need it most.'), +(13370,'Artimex Helmet Wildwood','Armor','Helmet','72717f0f-ff1c-4194-bca5-9899f0d4502d','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape. Visor is AR crosshair compatible.'), +(13371,'Ixonia Gloves Green','Char_Clothing_Hands','UNDEFINED','2dc9b3be-a908-4c84-8301-854f97f70d0b','','','When you\'re preparing for the tough day ahead, don\'t leave your hands ungarded. These gloves feature built-in knuckle plates, secured to the durable synthetic leather and cotton fabric with a strong polymer-reinforced thread.'), +(13372,'Strata Core Hurston Edition','Armor','Torso','4e48da7b-31c9-46e4-a924-fb5391acc485','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 15k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpack Compatibility: Light & Medium \n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Hurston Edition was made specifically for the company.'), +(13373,'Seat','Usable','UNDEFINED','ee0ddd6e-53fd-4b49-9d6b-d66cbb32b8cb','','',NULL), +(13374,'CBH-3 Helmet Aqua','Armor','Helmet','70be6209-58ab-4e7f-927d-5d6f2755f168','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. Visor is AR crosshair compatible.'), +(13375,'Molina Ventilation Filters','Cargo','Cargo','02784a2a-8a4b-49ad-94b3-7bff0dcc064e','','','Special filters developed by Gyson to replace faulty units and purify the air of Molina Mold spores.'), +(13376,'Beacon Undersuit Purple','Armor','Undersuit','e19d2456-7331-45bf-a669-fe0c5a9deb30','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRSI\'s Beacon undersuit is a general use utility designed to provide total protection against environments and vacuum. Built out of a durable but flexible polymers, the Beacon provides a wide freedom of motion for a variety of body types.'), +(13377,'Stirling Exploration Backpack ASD Edition','Armor','Backpack','1105ec5d-77b7-4ef5-911e-138d80f80994','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nThis heavy duty backpack is compatible with the Stirling suit and provides a convenient storage solution. The ASD Edition was contracted specifically by Associated Science & Development to provide protection for their scientists working in laboratories with radioactive materials.'), +(13378,'Geist Armor Arms','Armor','Arms','ff40b10e-b358-4e20-8036-780d9c11984e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(13379,'Seat','Usable','UNDEFINED','ab4233ab-1787-4703-9c49-e3855ccf036e','','',NULL), +(13380,'bnu_shirt_01_01_01','Char_Clothing_Torso_0','UNDEFINED','8f5a3b7d-8bbb-461d-a9c6-5a4d23c1bb0b','','',NULL), +(13381,'Door Control','ControlPanel','DoorPart','08293ce4-ca69-4b52-87df-6fe96ab6bab1','','',NULL), +(13382,'Saldynium (Ore)','Cargo','Cargo','786f1e01-5169-4b27-a043-1fb1e53dfdd4','','','A rare metal that has traditionally been extremely difficult to find in large quantities owing to the particular environmental requirements for its formation. It is sought after for its use in the production of high-powered lasers. It also shows some antimicrobial properties though its scarcity has seen it used less for medical purposes.'), +(13383,'Flight Blade','FlightController','UNDEFINED','4b14d8de-e925-4564-ac58-50c4266dcab6','','',NULL), +(13384,'Diamond (Raw)','Cargo','Cargo','440ed36f-685e-47a6-9723-add996c40b18','','',NULL), +(13385,'Flight Blade','FlightController','UNDEFINED','16678db6-0fcb-4ecd-a9a7-1fc63d54a61c','','',NULL), +(13386,'Seat','SeatAccess','UNDEFINED','ea8c416c-dd79-403a-9bf7-77ae40bca749','','',NULL), +(13387,'C8R Pisces PHB Flight Blade','FlightController','UNDEFINED','c61a88dc-bf68-4d01-961b-d6f923c5ff6d','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Anvil C8R Pisces Rescue with the PHB Flight Blade from Broad & Rabiee. By re-allocating forward thrust resources, you can expect your ship deliver increased precision handling during tight maneuvers.'), +(13388,'Morozov-SH-I Arms Gideon','Armor','Arms','c5942037-fd22-4886-bf38-1b411477c0e8','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -97 / 121 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart. The Gideon edition features a heavily worn teal finish with yellow accents and a signature red snake insignia.'), +(13389,'Taftan Boots Spruce','Char_Clothing_Feet','UNDEFINED','8991458b-f4d4-45be-85c9-4a673fb4bcb2','','','Strong, practical, and stylish, these high-cut boots with reinforced straps will be just the thing you need for those long outdoor treks. The slip- and abrasion-resistant soles were constructed from a proprietary composite of recycled plastic and rubber to improve traction without sacrificing flexibility.'), +(13390,'PLACEHOLDER','Char_Clothing_Legs','UNDEFINED','32975c11-4247-4c9c-8817-8c05a3aaf466','','','PLACEHOLDER'), +(13391,'Toughlife Boots','Char_Clothing_Feet','UNDEFINED','a30f85f8-cac5-489e-83a3-4c80ab5cb11b','','','Grindstone\'s done it again. The Toughlife is an all-purpose workboot designed to provide comfort, durability and quality. Featuring a reinforced composite toe and lasercut sole to maximize traction on all surfaces, Toughlife is sure to be your dependable boot, day in and day out.'), +(13392,'Hurricane Flashfire Livery','Paints','UNDEFINED','33784f73-4edb-4995-98f5-3fa780c2e441','','','Metallic red and crisp white stylings combine for the bright and bold Flashfire livery for the Hurricane.'), +(13393,'Testudo Helmet Combustion','Armor','Helmet','f2075bc7-d9b4-45e7-9765-dbfb9d5cbda3','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nKeep your eyes on the prize and your head protected with the Testudo helmet. It features a wide faceplate and a durable outer shell that protrudes above the forehead in a way specifically designed to absorb and efficiently disperse the energy of impacts.'), +(13394,'Seat','SeatAccess','UNDEFINED','63f143f2-ab7f-4654-8739-cd9dd7f1e942','','',NULL), +(13395,'Seat','Usable','UNDEFINED','ff4a174e-524a-44ba-8c6f-5ec78e5b5cf7','','',NULL), +(13396,'Carryable_1H_CY_glass_tumbler_gin_1_a','Misc','UNDEFINED','282d716f-6792-43fa-b64c-f842c264446d','','',NULL), +(13397,'Seat','Usable','UNDEFINED','32033d1b-9dba-4a80-bcbc-a039f6505561','','',NULL), +(13398,'AEGS_Hammerhead_Thruster_Main_LowPoly','MainThruster','FixedThruster','96d65724-ca76-47a9-87ef-b88112376f77','','',NULL), +(13399,'Mixed Mining','Cargo','Cargo','843413b1-17e4-4d78-b9dc-a7773aa10319','','',NULL), +(13400,'CK13-GID Seed Blend','Cargo','Cargo','d67b1288-fc47-47eb-a2f4-4cb01854f720','','',NULL), +(13401,'ESPR_Prowler_Thruster_Retro_Utility','ManneuverThruster','UNDEFINED','92bedd20-a06e-4169-8fd7-0350bdbbf9cf','','',NULL), +(13402,'Venture Undersuit Purple/Violet','Armor','Undersuit','0cbc87d5-b2d3-4928-9459-d9e01120c164','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(13403,'Prim Shoes Twilight','Char_Clothing_Feet','UNDEFINED','6a6f3e8f-8c0d-49c0-8813-d44072cd573a','','','Professional yet casual, the Prim utilizes cutting-edge synthetic construction to provide maximum comfort and a shine that won\'t fade.'), +(13404,'Torrent Compensator3','WeaponAttachment','Barrel','ef61d89b-7471-4a26-a4f9-7b5f476b850c','','','Manufacturer: ArmaMod\nType: Compensator\nAttachment Point: Barrel\nSize: 3\n\nPellets: -3\nSpread: -33%\n\nThe Torrent Compensator3 uses its unique shape to combine the total number of pellets into a tighter spread, increasing accuracy at the cost of lower damage output.'), +(13405,'Lux Pants','Char_Clothing_Legs','UNDEFINED','d65a432e-7016-4eb2-8436-3f0b400b5cfe','','','Carrying Capacity: 1K µSCU\n\nThe Lux are elegant pinstripe pants infused with a modern edge. Fiore elevates these classic slacks with a stylish blue and grey geometric pattern along the outer seam to create a look that would work in any era.'), +(13406,'TRGT. STATUS','Seat','UNDEFINED','6080cb2b-ba2e-49dd-a4b5-39921bff7c7a','','',NULL), +(13407,'Warden Backpack Epoque','Armor','Backpack','fb1b6f01-28cd-4185-b2cb-d8dd86c998d2','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nThis hard backpack from Virgil, Ltd. makes travel easy. Whether you need a place to carry your weapons or you\'ve decided to bring some extra rations along for a long journey, this backpack was designed to handle any occasion. The interior features a generous, closeable pocket to keep your small items from falling out of place.\n\nThe Epoque edition features a navy and black coloring, finished with baroque gold detailing.'), +(13408,'Counter_Console_Shop_1_a','Usable','UNDEFINED','9231c5d4-45ae-4409-a186-27fba814df2a','','',NULL), +(13409,'TRGT. STATUS','Seat','UNDEFINED','0723ed43-6395-440d-9aac-16cd58be1cb3','','',NULL), +(13410,'Odyssey II Helmet Alpha','Armor','Helmet','d2f90c82-b7e6-4b17-9bee-be835148392d','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(13411,'Harlowe Shirt Orange','Char_Clothing_Torso_0','UNDEFINED','9994d652-cdb1-4450-9d65-b9d273e6eee7','','','Capable as being worn on its own or as a base for layers, this long-sleeve henley style shirt from Alejo Brothers keeps you stylish and comfortable.'), +(13412,'Geist Armor Core ASD Edition','Armor','Torso','d42f4198-292d-44cf-8a9e-c8dfa8cb6954','','','Item Type: Light Armor\nDamage Reduction: 20%\nCarrying Capacity: 8k µSCU\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpacks: Light\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.\n\nThe ASD Edition features a hooded cloak printed with a dark urban camo pattern alongside ASD\'s signature logo.'), +(13413,'Falston Jumpsuit Orange','Char_Clothing_Torso_1','UNDEFINED','ddc11ef9-51ed-4835-982c-a74b4893c684','','','Carrying Capacity: 1K µSCU\n\nThe Falston jumpsuit has a high collar to guard against the elements, triple-reinforced stitching, and an extra soft interior lining because everyone deserves a bit of comfort.'), +(13414,'Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','ea9b49a0-24b8-49be-a770-49b0d9993d8a','','','Joker Defcon Flares Ammo'), +(13415,'Bottle','Misc','UNDEFINED','95836865-7169-455f-b58a-0b1d602a9ac4','','',NULL), +(13416,'Taranite (Raw)','Cargo','Cargo','9154e4c8-2892-448b-8b54-474411ae8049','','',NULL), +(13417,'Door Control','ControlPanel','DoorPart','9a252315-f6d2-4943-8c73-500b23e9d751','','',NULL), +(13418,'Internal Tank','FuelTank','Fuel','2faba726-d486-4604-9f58-331a7c84a116','','',NULL), +(13419,'Ace Interceptor Helmet','Armor','Helmet','c92273b0-2d7f-41b3-9fdd-af07e190a0f3','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe unique open-faced design makes the Ace Interceptor helmet a lightweight and liberating option for operating in atmosphere. It features precisely layered plating to protect the head from a variety of combat and environmental hazards and an impact resistant, anti-glare visor over the eyes. Visor is AR crosshair compatible.'), +(13420,'Door Control','Door','UNDEFINED','a967b09d-51ea-4db8-bed4-290cbb5ab551','','',NULL), +(13421,'Lynx Legs Black','Armor','Legs','51cc7a86-a0fc-4f4f-8c75-6e48c520ee0c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(13422,'Remote Turret','Turret','GunTurret','4819cdf3-9b11-49ea-aab3-b8c44c796157','','','Remote Turret'), +(13423,'INTK_AEGS_Sabre','FuelIntake','Fuel','05d0837c-61bb-4a29-a103-d024eceafb87','','',NULL), +(13424,'MacFlex Legs Violet','Armor','Legs','b55128e3-2096-4c70-8ce6-b702145acb13','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(13425,'facial_hair_033','Char_Head_Beard','UNDEFINED','48d7037d-2aba-43bb-af1a-1192678ba08b','','',NULL), +(13426,'box_plastic_4_weapon_0075x005x0025','Misc','UNDEFINED','e6cb49ba-0fdc-4608-88a5-a27d0436ea8a','','',NULL), +(13427,'AEGS_Avenger_Thruster_Main','MainThruster','FixedThruster','40b9d976-2aa0-4140-a178-71443215b655','','',NULL), +(13428,'DRAK_Herald_SCItem_Dashboard_Station','SeatDashboard','UNDEFINED','64a44448-e31e-4999-a1f2-1b19c64e62f2','','',NULL), +(13429,'A03 \"Red Alert\" Sniper Rifle','Weapon','Medium','89a070b3-4abc-466e-915c-55a6bd2fd441','','','Manufacturer: Gemini\nItem Type: Sniper Rifle\nClass: Ballistic\n\nMagazine Size: 15\nRate Of Fire: 120 rpm\nEffective Range: 80 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nDevastate at distance with the A03 sniper rifle. Masterfully designed by Gemini\'s Tevarin co-founder Clem, the weapon balances a stylish and ergonomic design with a powerful ballistic punch. The A03 delivers an impressive rate of fire for a sniper rifle that sacrifices accuracy for urgency when successive shots are required. Considering its renowned design and unique features, it\'s easy to see why the A03 has become a favorite of security professionals across the empire. The \"Red Alert\" edition mixes grey and a vibrant red for a bold and dynamic design.'), +(13430,'Astatine','Cargo','Cargo','0ac89842-959f-4b16-9245-ddf80fa015c3','','',NULL), +(13431,'Kopion Horn','Cargo','Cargo','749fc811-edd4-4528-84c4-941792645186','','',NULL), +(13432,'Li-Tok Boots Blue','Char_Clothing_Feet','UNDEFINED','3ae6f0bd-eafd-4873-ad7a-66ec0bb6262f','','','Stylish yet rugged, NorthStar\'s Li-Tok boots are made from a composite nylon fabric, vulcanized rubber grips that hold fast to a variety of surfaces, and reinforced ankle support making these perfect for hanging out or on the job.\n\nWomen\'s sizes currently out of stock.'), +(13433,'Door Control','Door','UNDEFINED','5e4ec5a9-6a5e-4e67-98f4-43b397345f99','','',NULL), +(13434,'Novikov Backpack Halcyon','Armor','Backpack','26f34f18-206a-485e-bf5e-ddda6852a8c5','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nConfidently explore cold environments while wearing the Novikov. Caldera designed a spacious backpack to compliment this advanced exploration suit, so those venturing across unknown terrain can bring enough supplies to survive the journey.\n\nThe Halcyon edition displays a sharp contrast of bold yellow and muted black.'), +(13435,'Radar_Display_Scorpius','Display','UNDEFINED','b42caa92-64ec-4f66-859e-eeb76a3e347a','','',NULL), +(13436,'NONE_LaserRepeater_FiringMechanism_S2','WeaponAttachment','FiringMechanism','68682fd8-dbf2-463d-883e-95575dd88331','','',NULL), +(13437,'ORC-mkX Arms Righteous','Armor','Arms','3052d7b7-53b4-4843-bc47-37763751f2aa','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThis version of CDS\' ORC-mkX combat armor has been modified from its original form. The mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(13438,'MISC_Starlancer_Seat_Access_Support_Left','SeatAccess','UNDEFINED','d382f03c-ad1f-4062-91a0-cfabb83c5b9e','','',NULL), +(13439,'Personal Storage','Cargo','UNDEFINED','22e19b3d-2252-4b81-be6d-ffe21abe65d0','','',NULL), +(13440,'Flight Blade','FlightController','UNDEFINED','01755e4b-1371-468b-9e02-773f29ebcc5e','','',NULL), +(13441,'AEGS_Door_Decal_XO','Decal','DoorPart','d44379bf-c407-4ed1-9828-fdcf704d99a3','','',NULL), +(13442,'Bottle','Misc','UNDEFINED','7f13d774-ddc5-463c-84c3-90dd775078c5','','',NULL), +(13443,'Bottle','Misc','UNDEFINED','f99015af-289a-4999-b255-ce7216a767c6','','',NULL), +(13444,'Antium Core','Armor','Torso','3c09b16a-0c8b-41df-84c9-e0a4a271c0fa','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(13445,'Janalite','Cargo','Cargo','8d39bfb6-6dcb-436f-8d1a-b9afcbae7408','','',NULL), +(13446,'MISC_Reliant_Sen_Seat_Station_Rear','Seat','UNDEFINED','f3d26fcd-8b75-4971-b612-da659bc46ad1','','',NULL), +(13447,'RSI_Zeus_ES_Thruster_Retro_Left','ManneuverThruster','Retro','895f32e6-f8bc-4018-a8c3-81b591a2d663','','',NULL), +(13448,'ARGO_RAFT_Thruster_VTOL','MainThruster','FixedThruster','55da1905-92d7-4d28-a78c-5f2a9a6694fe','','',NULL), +(13449,'Ball','Char_Head_Piercings','UNDEFINED','4983673e-62ca-49ce-a6a1-a8c7b148c351','','',NULL), +(13450,'ASAD_DistortionRepeater_PowerArray_S2','WeaponAttachment','PowerArray','1ca2ffb7-915a-43e4-ab8e-0d84a15a92ac','','',NULL), +(13451,'Carryable_2H_FL_MissionItem_covalex_empty_a','Misc','UNDEFINED','15cb4fa4-befa-4be1-a959-63e5f8423745','','',NULL), +(13452,'Bed','Usable','UNDEFINED','16b491d3-bc89-4cfb-bcfb-1c2cfbe0905f','','',NULL), +(13453,'Radar_Display_ORIG_400','Display','UNDEFINED','b0f28cbb-54d7-4a58-b6f2-9dd8051cd5ae','','',NULL), +(13454,'RSI_Constellation_Andromeda_Thruster_Retro','MainThruster','FixedThruster','8a2d7dd9-45d4-4c86-9626-5308abeb6da1','','',NULL), +(13455,'Fortifier Helmet Dark Red','Armor','Helmet','d53bfc07-aabf-4e6f-b7fa-74d41b343db8','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nProtect your most valuable asset with the Fortifier. Intended for extremely hostile environments, this heavy helmet makes up for its limited visibility with extra plating that protects the neck and back of the head.'), +(13456,'Door_Bathroom_RSI_Constellation','Player','UNDEFINED','3665f95f-0e3d-433a-a1c7-b6e0a878ef7a','','',NULL), +(13457,'Bengal_BallisticCannon_Barrel_S7','WeaponAttachment','Barrel','3989a72a-0104-4c8e-ba00-209740b078f4','','',NULL), +(13458,'Defiance Core Sunchaser','Armor','Torso','8f0ae299-4a81-4f28-8d0c-fd03badec3f4','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nIncorporating the same manufacturing know-how and expertise that the UEE Marines have come to rely on, Clark Defense Systems has designed their civilian-line of Defiance heavy armors to stand firm in the face of even the most adverse combat scenarios with its three-star rated protective plating and fully integrated mobility framework.'), +(13459,'Door Control','Door','UNDEFINED','2c5b697d-7a5d-4f6e-8cd6-f998288400fd','','',NULL), +(13460,'Beradom','Cargo','Cargo','f73664ce-e225-4b39-bfd8-bf64ebda221e','','','Formed when sap from the Beraber Fir is crystalized during forest fires, this transparent deep blue \"gemstone\" is often polished smooth and used in jewelry. While it can be manufactured by growing trees and then doing a controlled burn, the time investment for the trees to reach the proper maturity still make this a rare commodity.'), +(13461,'Anvil Hornet Ghost Center Cap','Module','UNDEFINED','83b6c014-63a2-4516-b2bd-36b762d208f4','','','This special center cap designed for the Hornet Ghost features additional faceted surfaces to potentially help radiate incoming radar energy.'), +(13462,'AEGS_Door_Decal_Avenger_Pod_5','Decal','DoorPart','4173e1c4-5632-4cdb-9f1d-1dffaa8cca86','','',NULL), +(13463,'Personal Storage','Cargo','UNDEFINED','433a66bc-10d9-4c5a-9410-b88ab1ab4087','','',NULL), +(13464,'DockingTube_Fuel_Ports_RSI_Constellation_Taurus','DockingCollar','UNDEFINED','2de23313-23f2-4be9-8197-dc11b61acb1c','','',NULL), +(13465,'Overlord Legs Supernova','Armor','Legs','4fd216ed-b7b4-4c42-b6bf-ba12040a996a','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.'), +(13466,'ComfortAir Plus','LifeSupportGenerator','UNDEFINED','c50917d3-f453-4ca6-b753-1c506a6710e0','','','Item Type: Life Support\nManufacturer: Tyler Design & Tech \nSize: 2\nGrade: C\nClass: Civilian\n\nDesigned to be able to process atmosphere to above UEE standards, the ComfortAir life support system from Tyler Design & Tech provides you and your crew with a clean and comfortable environment.'), +(13467,'ORIG_890J_Hologlobe_RADR_Display','Display','UNDEFINED','7e1c9fa2-708c-4459-8c6f-c8ad303c1173','','',NULL), +(13468,'Janalite','Misc','Harvestable','e954d75e-fb1e-487e-90a8-170f0284b502','','','This rare mineral is valued as an industrial anti-matter precursor. While more stable than other precursors like Feynmaline, it\'s tougher structure and energy resistance makes it much more difficult to utilize as well as collect.'), +(13469,'Lynx Arms Lichen','Armor','Arms','503a2df0-f032-431d-8d4a-3895d65c32af','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(13470,'m_human_mannequin_odyssey_suit_12','ShopDisplay','UNDEFINED','461febdd-a6f8-44ba-8a96-70c6c18d6ced','','',NULL), +(13471,'ANVL_Paladin_Thruster_Mav','ManneuverThruster','UNDEFINED','1f399686-d020-4ff6-b3d2-25c150bb8cab','','',NULL), +(13472,'Seat','Usable','UNDEFINED','ccf1ebc0-3049-4220-a776-89ac849e9833','','',NULL), +(13473,'MISC_Hull_C_Thruster_Main','MainThruster','FixedThruster','0ae22f89-ade5-4816-9ac9-9ca66dd3a978','','',NULL), +(13474,'Palatino Backpack Moonfall','Armor','Backpack','b48bd712-6f2e-4e53-bc33-8dfcc34a86d1','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. The associated backpack seamlessly integrates into the armor, matching its silhouette while also providing ample storage.'), +(13475,'Large Container','Container','UNDEFINED','0fd8112f-3e81-432e-9c30-b47fe4fb860e','','','A large container used to hold various items.'), +(13476,'DRAK_Clipper_Thruster_Mav_Top','ManneuverThruster','UNDEFINED','cf6cce3d-aa7c-4335-b2db-36a7bbab6548','','',NULL), +(13477,'display_ship_components_03x01x01','ShopDisplay','UNDEFINED','0c5831ce-204d-4ad5-a9fd-9a49e25e41ff','','',NULL), +(13478,'box_plastic_4_weapon_opened_005x010x00375_a_behr_smg','Misc','UNDEFINED','a42e626a-384f-4b3b-a3dc-3f1ce4cdd2a7','','',NULL), +(13479,'Stirling Hazard Helmet','Armor','Helmet','4e897f93-9733-402c-ac76-a17a42547d00','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nDesigned to withstand inhospitable environments, the Stirling Exploration Suit provides a base level of protection from environmental hazards including radiation. Combining Caldera\'s advanced insulation fabrics with sophisticated polymers, the Stirling is able to safeguard the wearer whilst minimizing disruption to movement. Additionally, a self-cleaning system automatically activates after radiation exposure to expunge dangerous excess down to nominal levels. The Hazard Edition is safety yellow with diagonal black stripes and has a tinted visor for enhanced eyesight protection.'), +(13480,'Geist Armor Arms Golden Blossom','Armor','Arms','4dc6c72f-5649-47d7-b686-8519d9207ac8','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.\n\nThis matte black stealth armor is embellished with intricate golden flowers, giving your enemies one final glimpse of life before death.'), +(13481,'AEGS_Sabre_Firebird_Winglet_Left','Misc','UNDEFINED','35b4375f-0a93-49ae-88b9-2542a8736b2e','','',NULL), +(13482,'Bexalite','Cargo','Cargo','63ee7719-b158-463e-a646-caa172f99161','','',NULL), +(13483,'Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','1bb506a2-ee97-458d-af6a-a074c50c2e7d','','','Live in comfort with MuyMuy\'s Davlos line of cotton-synthetic shirts. The durable, yet soft, fabric contains a patented SweatGuard technology that not only whisks away perspiration but helps prevent stains.'), +(13484,'Quantity','Misc','UNDEFINED','2a90938f-c73e-4bd5-bb4f-ae58e51a2ba2','','',NULL), +(13485,'Elevator Control','Elevator','UNDEFINED','8f88eed1-67c1-4c82-a06a-6d66378cc4eb','','',NULL), +(13486,'Berserker Helmet','Armor','Helmet','30a103e5-c48b-43d1-8b01-31a3cb153393','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nModern and ancient armor converge with the Berserker helmet. This wildly original armor from CC\'s Conversions features golden horns and wings, plus a face covering inspired by lamellar armor. Beneath these unique aesthetic flourishes, this heavy helmet provides supreme protection with plating that extends low enough to protect your neck. Visor is AR crosshair compatible.'), +(13487,'SoftLock_Terminal_Standard_Starfarer_Fuel_Pods_Ship_R1','Display','UNDEFINED','67b6f26b-3a71-4092-92ce-a0d2057e9e0e','','',NULL), +(13488,'Atzkav \"Igniter\" Sniper Rifle','Weapon','Medium','0563ba71-7903-46f7-ae55-87f108c56c46','','','Manufacturer: Lightning Bolt Co. \nItem Type: Sniper Rifle\nClass: Electron\n\nBattery Size: 5\nRate Of Fire: 30 rpm\nEffective Range: 150m+\n\nAttachments: Optics (S3), Underbarrel (S2)\n\nThe Atzkav is a unique precision sniper rifle from Lightning Bolt Co. Once the charging handle is engaged, it accurately fires a charged electron to deal significant energy damage that spreads to nearby conductive targets. This special pulse effect also leaves a residual charge in the strike area that increases damage delivered by subsequent electron shots. Alongside the rifle\'s special firing capabilities, the Atzkav is best known for its distinct barrel that crackles with energy when powering its next shot. A lustrous orange coating makes the Igniter edition a colorful addition to any loadout.'), +(13489,'Samya Tank Rosewood','Char_Clothing_Torso_0','UNDEFINED','f2cb6838-00f4-49e3-83b1-ebf78429a54e','','','This Samya Tank is your perfect staple for hot weather. Made with soft and breathable fabric, it features moisture-wicking technology and reinforced binding at the openings to protect it from wear and tear. A detachable sleeve is included with each shirt.'), +(13490,'Aluminum (Ore)','Cargo','Cargo','31f1a194-9a0f-4f01-808b-051c07857381','','',NULL), +(13491,'Internal Tank','QuantumFuelTank','QuantumFuel','8043b341-f2dd-46bf-974b-409fe29f4530','','',NULL), +(13492,'Heartseeker Poster','Misc','Utility','2e155e0b-5dbc-44b8-aa2c-cd61db721c64','','','A poster featuring the iconic image of a spacesuit clad pilot sitting amidst a heart that can be found on the F7C-M Hornet Heartseeker. Evoking the imagery and language of the historic holiday Valentine\'s Day, the image is intentionally faded to replicate the wear and tear it experiences on ships.'), +(13493,'M4A Cannon','Weapon','Gun','2756f5f1-ef1e-454a-a171-9a5bd40e3a9d','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 2\n\nThe M4A is Behring\'s second tier laser autocannon. Its bigger size means more power consumption in exchange for packing a bigger punch. Fire rate and power efficiency are comparable to the M3A model.'), +(13494,'AEGS_Door_Decal_Hangar_03','Decal','DoorPart','3e072cd0-9bf8-4308-aeca-e3cab40b2a76','','',NULL), +(13495,'AEGS_Vanguard_Harbinger_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','13452a35-5eec-46b9-a1f9-98eac7234a24','','',NULL), +(13496,'stand_shop_small_b_Cooler','ShopDisplay','UNDEFINED','aeb36b00-0daf-4f0f-a36c-38cae803aa22','','',NULL), +(13497,'Citadel Arms Base','Armor','Arms','94576f65-72e5-418a-ac46-56aea3e0d81d','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure.'), +(13498,'Projector_HUD_Aim','Display','UNDEFINED','e3523f55-320a-49ba-8e27-1bc48207e359','','',NULL), +(13499,'Weapon_Rack_1_GMNI_LMG_Common_001','Usable','UNDEFINED','ab77f4d5-170f-445d-a2aa-d361c6f38202','','',NULL), +(13500,'Drink_Bottle_schnapps_01_a','Drink','Bottle','99a969c2-33ec-478b-89b0-d5c795de37b3','','',NULL), +(13501,'AEGS_Javelin_Thruster_Main_01','MainThruster','FixedThruster','c0ca41fe-c58e-4827-bb3e-b87b98c488b6','','',NULL), +(13502,'Cargo_Comm_125x3_Vice_Altruciatoxin','Cargo','Cargo','ffaf8b0a-58e7-4897-8764-a589e1e3b1f6','','',NULL), +(13503,'TRGT. STATUS','Seat','UNDEFINED','e5cfd162-8a8f-4032-9509-4613573b0699','','',NULL), +(13504,'Radar_Display_ESPR_Talon','Display','UNDEFINED','0403e324-96f4-4c4e-ab6f-445dafe3f148','','',NULL), +(13505,'Atzkav Sniper Rifle Battery (8 cap)','WeaponAttachment','Magazine','8177489f-ed83-44ac-afd4-2b32a80fa0a6','','','Item Type: Battery \nCapacity: 8 \n\nThis battery for the Atzkav Sniper Rifle holds enough electron energy for 8 rounds.'), +(13506,'Door Control','ControlPanel','DoorPart','ea7fe3cc-7a9f-4685-a9e5-b6f4a7f904a4','','',NULL), +(13507,'Havoc Scattergun Sharkmouth Edition','Weapon','Gun','15596dea-2429-41fe-ac84-593bae703686','','','Manufacturer: Apocalypse Arms\nItem Type: Ballistic Scattergun\nSize: 1\n\nSow dread across the battlefield with the Havoc from Apocalypse Arms. This size one scattergun deals massive damage at close range, making it the perfect weapon for finishing a fight.'), +(13508,'Carryable_1H_SQ_Datapad_Fluff_Orb_NineTails','Misc','UNDEFINED','e99d4623-3d59-47b5-adde-856586fdde11','','',NULL), +(13509,'BEHR_BallisticGatling_Barrel_S4','WeaponAttachment','Barrel','b7c26fcc-a70c-4a95-ae4c-578fb2614f20','','',NULL), +(13510,'Carryable_1H_CY_garnish_citrus_peel_1_a','Misc','UNDEFINED','68c8fd43-f248-4f2e-9e9e-3fa9b5e8511b','','',NULL), +(13511,'Leyland\'s Tortoise','Misc','UNDEFINED','bb3ab19f-d769-4388-b363-bbfdd0a0c631','','','Leyland’s tortoise is a species of tortoise indigenous to Earth (Sol III). Extremely docile, they are kept as pets by Humans, especially long-haul spacers. Over-collection and habitat destruction have made them nearly extinct in the wild.'), +(13512,'MASTER_Carryable_2H','Cargo','Cargo','a8954535-79f2-4152-8f7f-1dbb7c0e579f','','',NULL), +(13513,'INTK_MRAI_Guardian_MX','FuelIntake','Fuel','4267fc53-26c8-fbdf-87d8-275557c1c29f','','',NULL), +(13514,'ORC-mkX Helmet (XenoThreat)','Armor','Helmet','e14cec8b-8599-4b3a-90d7-3ccb0a15befc','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThis version of CDS\' ORC-mkX combat armor has been modified from its original form. The mark X is part of CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility. Visor is AR crosshair compatible.'), +(13515,'Crossfield','QuantumDrive','UNDEFINED','9e3a3bcb-d90a-46c5-912b-079fd15157cc','','','Item Type: Quantum Drive\nManufacturer: Wei-Tek \nSize: 2\nGrade: C\nClass: Military\n\nWei-Tek has marketed the Crossfield specifically to target military personnel and veteran pilots who will appreciate the stats that the mil-spec quantum drive offers.'), +(13516,'Aphorite','Cargo','Cargo','f9fffca1-5e12-4073-9a2e-f2b623e9f6a9','','',NULL), +(13517,'Door Control','ControlPanel','DoorPart','14cb79ef-6137-40c5-9146-9e4b988385d5','','',NULL), +(13518,'Ship Showdown \'52 Mercury Coin','Misc','Utility','25d92d2a-4e0a-4a13-8e50-8f5f4b2c8f78','','','The Mercury Star Runner delivered a strong showing in the 2952 Ship Showdown with its second place finish. Ringed in blue, this coin commemorates the iconic courier ship with its image on one side and the Crusader Industries logo on the other.'), +(13519,'300 Series Black & Royal Paint','Paints','UNDEFINED','d8cf6a6e-fbd8-4b12-beea-87be80825b05','','','Black & Royal paint job for the Origin 350r.'), +(13520,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','684fe0f4-713f-4eab-8a14-474412c20304','','','Joker Defcon - Noise Launcher'), +(13521,'Seat','SeatAccess','UNDEFINED','cc722767-a0c0-4cd8-aabd-5d30190bfdb1','','',NULL), +(13522,'Overlord Legs Switchback','Armor','Legs','575062c4-e14c-4353-bd3b-e3721a65faca','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.'), +(13523,'Pressurized Ice','Cargo','Cargo','e3b726e0-904d-4e1d-a099-b27086b5a4af','','',NULL), +(13524,'Personal Care Product','Misc','UNDEFINED','37f6dae0-2e96-40fd-aff7-d0c477f8226e','','',NULL), +(13525,'Bed','Seat','UNDEFINED','5041a360-beed-4ca4-862e-4ccf208c499f','','',NULL), +(13526,'Sadaryx','Cargo','Cargo','21ff77df-951a-42a8-a9d9-d80c4f845f68','','',NULL), +(13527,'ANVL_Hornet_F7CS_Mk2_Thruster_Retro_Right','ManneuverThruster','Retro','44412d03-2c1f-48f6-917e-f9a4329d21b8','','',NULL), +(13528,'Elsen','Cooler','UNDEFINED','c0f30e06-78e9-4df9-846a-8ff0716111f5','','','Item Type: Cooler\nManufacturer: Wen/Cassel Propulsion\nSize: 3\nGrade: B\nClass: Civilian\n\nWen/Cassel engineers used many of the same parts found in the Draug, only fine tuned to deliver improved performance and durability without greatly enhancing its signature. That makes the Elsen large cooler a worthy upgrade for those that can handle the extra heat.'), +(13529,'Zeus Plushie','Misc','UNDEFINED','55988155-c2b0-4306-a7bb-71be09a0f5f2','','','This soft plushie is a huggable bit of history celebrating the original 2140 RSI Zeus, the first civilian spaceship equipped with a quantum drive.'), +(13530,'Aril Arms Harvester','Armor','Arms','191b33b3-8c34-420c-8a84-518e5e3a9920','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(13531,'Pike Liberty Ale (Bottle)','Drink','Bottle','0549a56d-7ce4-4e76-8bb0-4f2988fb5c34','','','HEI: 23\nEffects: Cognitive Impairment, Dehydrating\n\nLiberty Lake beer has been brewed by families on Terra for generations to provide a crisp, clean ale perfect to partake when you arrive at those little moments made to be spent enjoying life. Pike Liberty features sorghum for a sweet and spicy brew.'), +(13532,'Booth_Table_6Spots_02','Usable','UNDEFINED','fad2b199-8874-4e71-9ce6-8480b977deeb','','',NULL), +(13533,'Mercury Star Runner Meridian Livery','Paints','UNDEFINED','26932086-0a8f-4a38-b357-a254ca2e09c8','','','The Meridian livery gives the Mercury Star Runner a simple yet stylish metallic silver finish.'), +(13534,'Human Food Bars','Cargo','Cargo','549af229-76ae-4c1e-b6ca-639b9e8a925e','','',NULL), +(13535,'Overlord Helmet Predator','Armor','Helmet','9b51517f-80f1-49f2-b5bc-6e35fd3f5ab7','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord helmet delivers heavy armor protection while using a special lightweight composite plating that makes it feel like nothing\'s there. Repurposed ocular sensors normally found on ships keep you attuned to your surroundings and, when worn with the full Overlord suit, the high neck collar provides the helmet extra support and protection. Visor is AR crosshair compatible.'), +(13536,'Medical Bed','Usable','UNDEFINED','7b892f32-472f-4d9b-87a9-d7ef16f7c3e5','','',NULL), +(13537,'SCItemDisplayScreen_ATLS_ScreenCoverLeft','Display','Default','6154fcf8-4ee8-49a2-bfd5-605daff98535','','',NULL), +(13538,'AEGS_Retaliator_Thruster_Mav_Joint_02','ManneuverThruster','JointThruster','10602ade-884e-485d-9a7d-60002dd6b4fc','','',NULL), +(13539,'Door Control','Door','UNDEFINED','36511e70-fcf7-4d3b-8d21-6bc8f1cfe260','','',NULL), +(13540,'ESPR_LaserCannon_PowerArray_S6','WeaponAttachment','PowerArray','ec2c660c-74d1-41f5-b169-c2b9bdd478e2','','',NULL), +(13541,'Deadbolt III Cannon','Weapon','Gun','370e4728-924a-4791-9297-a71b25ff08e9','','','Manufacturer: Esperia\nItem Type: Ballistic Cannon \nSize: 3\n\nSpread dread with the Deadbolt III ballistic cannon. Feared for its firepower at short range, this notorious Tevarin weapon earned its intimidating reputation during the First Tevarin War as part of the Tevarin fleet\'s devastating arsenal. Esperia has painstakingly recreated the Deadbolt III out of respect to the original weapon and warriors who used it so effectively.'), +(13542,'Bed','SeatAccess','UNDEFINED','7ad433bb-3d07-4d24-a0f0-e3de36d3db15','','',NULL), +(13543,'Prim Shoes','Char_Clothing_Feet','UNDEFINED','da86d47f-c381-49c4-bf14-677bab939c66','','','Professional yet casual, the Prim utilizes cutting-edge synthetic construction to provide maximum comfort and a shine that won\'t fade.'), +(13544,'Pink QuikFlare','Weapon','Gadget','ae38dde9-256e-4431-8dc7-a6f2ca1e26b5','','','Manufacturer: Shubin Interstellar\n\nIlluminate the way forward or signal for help with the Pink QuikFlare from Shubin Interstellar. For centuries, miners have counted on this flare as part of their core toolkit, thanks to its tried and true design and durability that ensures it stays ablaze in the various harsh weather and difficult atmospheric conditions encountered across the \'verse.'), +(13545,'Odyssey Helmet Tan','Armor','Helmet','db8b2c09-e18d-4389-b585-22aec5177113','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nRSI\'s Odyssey helmet is so light and unobtrusive, you\'ll almost forget you\'re wearing it. The durable impact-resistant carbon fiber construction with shock-absorbing foam inserts and a single piece molded laminate visor that provides maximum field of view horizontally and vertically.'), +(13546,'Katla Mask','Char_Clothing_Hat','UNDEFINED','2f5fb647-7770-44f2-904b-c5bf101ea524','','','The Katla mask provides full face coverage from the elements or prying eyes. Oversized eyes provide a wide field of vision and a built-in air filter helps you breathe easy. Please note that this mask is not space-rated and should only be worn in naturally breathable environs.'), +(13547,'sc_nvy_bdu_jumpsuit_02_01_17','Char_Clothing_Torso_1','UNDEFINED','b29b9a9e-578f-4bf5-b78b-c5382b1b6eff','','',NULL), +(13548,'Fotia Seedpod','Cargo','Cargo','e2086ba8-bb43-411f-ad45-ac6ae05d026d','','',NULL), +(13549,'Door Control','ControlPanel','DoorPart','acd539e5-6c07-4e90-9aa3-b7b7a8f53722','','',NULL), +(13550,'ARGO_MPUV_Thruster_Aux_Fixed_02','ManneuverThruster','FixedThruster','09674457-822d-4912-92c6-63548a43b5d0','','',NULL), +(13551,'UNE Gold Ingot (Pristine)','Misc','UNDEFINED','96e85b07-5573-4ed8-8832-0ba69737831c','','','A gold ingot cast by the United Nations of Earth (UNE) that has remained in pristine condition. These ingots were used in areas of the UNE where technological issues often hampered secure and instant money transfers. This rare item features the three ring, six star logo used by the UNE within a circular recess and an elaborate, textured pattern across the rest of it.'), +(13552,'Gamma \"Black Op\" (1x Holographic)','WeaponAttachment','IronSight','a81a2546-385a-409b-92bf-38749702b50f','','','Manufacturer: NV-TAC\nType: Projection \nAttachment Point: Optic\nMagnification: 1x\nAim Time: +15%\nSize: 1\n\nWhether under the blazing sun or on the dark side of a moon, the NV-TAC Gamma projects an easy to see reticle to help ensure your shot finds its mark.\n\nThe \"Black Op\" scope variant is black.'), +(13553,'Door Control','Door','UNDEFINED','bca2a9e2-075b-4d2a-a767-b853b33d5a52','','',NULL), +(13554,'CRUS_Intrepid_Thruster_Mav','ManneuverThruster','UNDEFINED','f88b8871-e54d-431c-95bc-dd1829b0832b','','',NULL), +(13555,'Herald Ghoulish Green Livery','Paints','UNDEFINED','f25b0d64-9ea2-4a32-bb62-b9eacc24d6a7','','','Embrace Day of the Vara mischievousness and mayhem any time of the year with this custom Herald livery. It combines metallic green and black for a striking look that highlights the holiday\'s classic colors.'), +(13556,'Glacis','Shield','UNDEFINED','d9870a05-1a66-4a9a-bec6-30eb67e3a3ce','','','Item Type: Shield Generator\nManufacturer: Basilisk\nSize: 4\nGrade: Bespoke\nClass: Industrial\n\nOrigin turned to the experts at Basilisk to build a bespoke shield generator for the 890 Jump. The Glacis blends centuries of cutting edge innovation to produce a strong and stable shield capable of defending the valuable ship and passengers aboard.'), +(13557,'Razorback Pants Grey','Char_Clothing_Legs','UNDEFINED','53a6ae6f-5113-4325-920f-b3681bcd0ebc','','','Carrying Capacity: 2K µSCU\n\nDMC\'s Razorback pants are made to be worn. Built from industrial quality material, they feature reinforced kneepads to prevent tears on the job and stay rugged yet comfortable.\n\nWomen\'s sizes currently out of stock.'), +(13558,'SHIELDS','ShieldController','UNDEFINED','b3127564-7d78-4443-b826-a69cdae6a085','','',NULL), +(13559,'Freelancer IceBreak Livery','Paints','UNDEFINED','4257bfce-3cfc-4905-9ddb-e52ad4e17e13','','','Equip your Freelancer with a paint scheme cooler than a snow storm. The IceBreak livery mixes crisp, cool white with a frostbitten blue for an exciting look suitable for any season.'), +(13560,'DRAK_Cutter_Thruster_Main','MainThruster','FixedThruster','7c5043a8-bb6f-4619-9b5e-fde41b662709','','',NULL), +(13561,'Paint_300_SeatTrim_CarbonFiberYellow','Misc','UNDEFINED','49f44472-3ad7-4941-9d4e-34b5bd48ec3a','','',NULL), +(13562,'Seat','SeatAccess','UNDEFINED','dcb55245-248e-469f-881e-d397c1a6f2d8','','',NULL), +(13563,'Defiance Helmet Tactical','Armor','Helmet','ca3c32d9-9575-482a-914d-17f5200de89b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Defiance features a fully enclosed battle helmet constructed with two layers of composite weaves underneath armor plating, providing you maximum protection against penetrating and concussive attacks. Visor is AR crosshair compatible.'), +(13564,'MacFlex Legs Aqua','Armor','Legs','3a9fc5f6-69f2-4e92-a67e-5b52d1933df9','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(13565,'display_box_plastic_4_weapon_opened_005x010x0025_rundown_a_3Ports','ShopDisplay','UNDEFINED','60fca5a2-697e-43a0-8764-0bd23b1f69b3','','',NULL), +(13566,'Overlord Arms Stinger','Armor','Arms','ca318c30-5d91-468f-9956-1d14e741165d','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.'), +(13567,'Impact II Mining Laser','Mining','Gun','ac0185ec-c252-4958-b4cb-b295e91fc809','','','Manufacturer: Thermyte Concern\nItem Type: Mining Laser \nSize: 2\n\nOptimal Range: 60m\nMaximum Range: 180m\n\nMining Laser Power: 840 - 3360\nExtraction Laser Power: 3145\n\nModule Slots: 3\n\nLaser Instability: -10%\nOptimal Charge Window Size: +20%\nInert Material Level: -40%\n\nResistance: +10%\nOptimal Charge Window Rate: -40%\n\nThe Impact II excels in a variety of mining situations. Special focus lenses make it easier to work a deposit by stabilizing the laser and increasing the optimal charge window. There are drawbacks, including increased deposit resistance and a slower filling optimal charge window, but Thermyte Concern also provided three module slots to allow miners to better customize the laser to the task at hand.'), +(13568,'Aves Talon Arms','Armor','Arms','9d4b3c3b-0463-4bc6-99d6-da3adc84aa3d','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nHonor and embody the Tevarin aesthetic with the Aves Talon armor; manufactured with white, blue, magenta, grey, and black plating to perfectly evoke the shape language imbued into their iconic ships. This medium armor from CC\'s Conversions is both sensational and practical, providing solid protection while keeping you light on your feet. When paired with the Aves Talon helmet, the suit combines for a striking and unforgettable look.'), +(13569,'Corbel Arms Patina','Armor','Arms','cbae9bb8-472f-41f6-bdce-06fb5f01837e','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nOriginally designed as a strength enhancement suit to give factory workers better lifting power, CDS found wider application in utilizing its defensive capabilities. It\'s triple-enforced armor plating provides extreme physical protection, with deliberate placing of materials to protect the most vulnerable parts of the body. A series of pneumatic levers offer increased flexibility in the joints, alleviating pressure and weight in key areas to create an accessible and highly protective armor despite its heavy weight.\n\nThe Patina edition offers a grounded look combining soft teal with bronze.'), +(13570,'Seat','Usable','UNDEFINED','d69b6990-b3eb-4b7a-979d-668ce3a8fafc','','',NULL), +(13571,'RSI_Hermes_Thruster_Mav_Bottom','ManneuverThruster','FixedThruster','383f3bec-2bfe-49ae-9865-50f2404f374a','','',NULL), +(13572,'AEGS_Door_Decal_Deck_A','Decal','DoorPart','2cfe78ff-7c5f-419f-bdfb-fb43fe0537d3','','',NULL), +(13573,'Self Destruct Unit','SelfDestruct','UNDEFINED','54046cfc-2891-4ba5-b7b3-a8e39da0dd95','','','Self Destruct Unit'), +(13574,'Avenger Stalker TSB Flight Blade','FlightController','UNDEFINED','885e8b70-2d19-4645-a11a-a1fb368be693','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Aegis Avenger Stalker with the TSB Flight Blade from Broad & Rabiee. By re-allocating lateral thrust resources, you can expect your ship deliver increased top speeds in the straightaway.'), +(13575,'CRUS_Starlifter_Thruster_VTOL_Side','MainThruster','FixedThruster','48c4f0d3-205b-480f-a2de-ebe0457392c1','','',NULL), +(13576,'PT1 (1x Holographic)','WeaponAttachment','IronSight','4505b54f-0e2b-4dfa-8c15-3c9073561f93','','','Manufacturer: Behring\nType: Projection \nAttachment Point: Optic\nMagnification: 1x\nZoom: 1x-1.5x\nAim Time: +15%\nSize: 1\n\n\nExperience Behring precision with this non-magnifying projection sight. Featuring a highly visible target marker, the PT1 provides ultimate target acquisition to find and lock onto hostiles with ease.'), +(13577,'behr_ltp_01_primed_5m','FPS_Deployable','Small','f0cde98f-6564-4fcb-b4ce-bffba05cbb74','','',NULL), +(13578,'Tempus Tank Sable','Char_Clothing_Torso_0','UNDEFINED','820d0921-5a7c-47f4-a618-9df459b383d3','','','This classic tank by 987 is made with moisture-wicking fabric to keep you cool when you\'re at your most active. Each shirt comes with a bracer and a bandolier to create a bold and aggressive style.'), +(13579,'Bellito Shirt','Char_Clothing_Torso_0','UNDEFINED','8904bbde-09dc-4b12-8353-6e452983cf8c','','','Enhance your basic t-shirt game with this stylish short sleeve t-shirt from City Lights, which features a dynamic, asymmetrical line across the front.\n\nWomen\'s sizes currently out of stock.'), +(13580,'Booth_Table_3Spots_02','Usable','UNDEFINED','caaa51b7-e171-474f-86bc-9df4856e06a7','','',NULL), +(13581,'Pembroke Helmet RSI Ivory Edition','Armor','Helmet','71657a75-3fb0-49ac-8cea-6ab010366dfb','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nDesigned to extend the limits of Human endurance, the Pembroke RSI Edition was built to withstand the extreme heat of inhospitable high temperature environments. Based off of Caldera\'s best-in-class exploration armor platform, an advanced sensor suite intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. Also featuring a bespoke helmet that integrates with the cutting edge life support system, the special RSI Edition of the Pembroke ensures those seeking to cross bold new horizons do so in style.'), +(13582,'facial_hair_045','Char_Head_Beard','UNDEFINED','bf085ecf-e882-41ea-9944-4a1633dbbe0e','','',NULL), +(13583,'Morozov-SH Core Snowdrift','Armor','Torso','2b8d69d2-1aa9-4198-96af-5065ef3bda88','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12K µSCU\nBackpacks: All\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(13584,'Door Control','ControlPanel','DoorPart','05588095-a920-4cf6-8037-a6fa2cdd4978','','',NULL), +(13585,'Access','SeatAccess','UNDEFINED','85291389-34d3-450e-a571-52384ed6bfc2','','',NULL), +(13586,'Bed','Usable','UNDEFINED','f54175fe-7925-45ac-b276-67d9cb1d1079','','',NULL), +(13587,'Pyro RYT Multi-Tool','Weapon','Gadget','ac7cfbb6-0617-462f-bcc3-9fa2d5bfe082','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier.'), +(13588,'Ammonia','Cargo','Cargo','6fd049cb-0ba0-4e89-a92a-545a684702d9','','',NULL), +(13589,'PU_MISSION_Outpost_PowerPlant_Initial','Cargo','Small','60e83be7-7c4b-4e3f-a98d-f20e4b8bb5f5','','',NULL), +(13590,'Koal Pants','Char_Clothing_Legs','UNDEFINED','8656b5d0-0202-4bc6-846b-a0a55b2e5ea0','','','Carrying Capacity: 3K µSCU\n\nDyna Lei updates an old classic with the Koal black leather pants that feature metallic trim along each leg for a thoroughly modern, dynamic look.\n\nMen\'s sizes currently not available.'), +(13591,'Mountaintop Jacket Multitone','Char_Clothing_Torso_1','UNDEFINED','20fab9fa-f49d-4e6f-ad4b-57f7a0ca09db','','',NULL), +(13592,'Food_box_noodle_02_closed_a','Food','Box','8cccbd40-6749-444c-a384-44bc89b0e994','','',NULL), +(13593,'Molina Mold Treatment','Cargo','Cargo','e3b39bb9-6bc7-4a24-8198-839402f34236','','','A lifesaving treatment for those suffering from exposure to Molina Mold.'), +(13594,'MSD-515 Missile Rack','MissileLauncher','MissileRack','42f9b948-8448-4247-a617-2a133ef50f6c','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 5\nMissiles: 1xS5\n\nBehring’s MSD-515 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 5 hardpoint for the reliable and effective launch of one S5 missile.'), +(13595,'Venture Arms \"Rust Society\"','Armor','Arms','8c87d9a4-97ef-4176-9f0e-0d241904ee35','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates. The Rust Society edition adds a red and tan color scheme so you look good while working hard.'), +(13596,'INTK_AEGS_Retaliator','FuelIntake','Fuel','92be310d-2863-43e8-8841-bbcd6be02740','','',NULL), +(13597,'CK13-GID Seed Blend','Cargo','Cargo','6f3557ee-2049-4c7b-926c-aefbda1bb1be','','',NULL), +(13598,'Argus Helmet Black/Grey/Red','Armor','Helmet','53df0d95-c8f1-416d-8647-33fabbf24a1a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s Argus helmet utilizes advanced multi-layered composite construction to provide incredible protection from weapon fire as well as environmental hazards. The tinted visor offers a wide field-of-view to improve situational awareness and unrestricted movement.'), +(13599,'Seat','Usable','UNDEFINED','aa631353-788e-47c3-9f20-d6a26a5168d6','','',NULL), +(13600,'Asgard Alliance Aid Green Livery','Paints','UNDEFINED','5b8d4cb7-b36e-41a9-845f-705aa75d814d','','','Showcase your dedication to helping Alliance Aid assist the people of Levski during their time of need with this green livery with yellow accents.'), +(13601,'AImodule_Collector','AIModule','UNDEFINED','ce757a73-3ffa-447c-a5d7-90a27b1e1722','','',NULL), +(13602,'Tona Shoes Imperial','Char_Clothing_Feet','UNDEFINED','e0fdf553-9196-475a-882d-293f2fb3fea7','','','Perfect for hiking or fieldwork, the Tona from R6 Pro is a low-top sneaker built out of breathable Cheofreme materials which not only provide extra protection against impacts, but keep your feet dry.'), +(13603,'Palatino Arms Deadlock','Armor','Arms','8a3ac00f-58ab-4638-9022-0e026d350361','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower. The Deadlock variant features a grey camo pattern with yellow highlights.'), +(13604,'Ball','Char_Head_Piercings','UNDEFINED','3cc4ab88-9b09-4766-8fa7-cbbd2de2f782','','',NULL), +(13605,'ATLS Tectonic Livery','Paints','UNDEFINED','a34c7c85-0315-4734-9c19-5b6d45ccf640','','','Outfit your ATLS power suit in earth tones with the Tectonic livery.'), +(13606,'DRAK_Dragonfly_Thruster_Retro','ManneuverThruster','FixedThruster','37ac3c65-df6e-4b46-9846-aa93d533ee79','','',NULL), +(13607,'Misfit Jacket Veritas','Char_Clothing_Torso_1','UNDEFINED','b6c91d7a-28b5-4148-8384-2eca4f1d7d0e','','','Carrying Capacity: 1K µSCU\n\nEmbody the hardcore attitude with the Misfit jacket. Durable synthetic leather combines with anarchic stylings for a jacket meant to send a message. Its distinct look includes spikes across the shoulder and right arm, two buckled straps on the left arm, and a badass image on the back highlighted by three lights powered via electronic boxes affixed to the front.\n\nThe Veritas edition is a bloody red, with a kopion\'s spine and ribcage printed along the back.'), +(13608,'MRAI_Guardian_MX_Dashboard_Btn','Misc','UNDEFINED','c3eb7e97-39d5-466c-9060-e60498d9f970','','',NULL), +(13609,'Door Control','Door','UNDEFINED','97082dff-456c-46f8-92a5-5cb4f4d4ccc7','','',NULL), +(13610,'Radar_Display_Redeemer','Display','UNDEFINED','186271f8-985e-4715-bce6-f244ffe465c8','','',NULL), +(13611,'VariPuck S4 Gimbal Mount','Turret','GunTurret','ea49d194-0c0b-43e1-82fb-d72f35c1af05','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 4\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(13612,'CorticoPen Xtra','FPS_Consumable','Medical','8761daff-4729-424a-a783-ccbb8196dfe3','','','Manufacturer: CureLife\nItem Type: Medical Consumable\n\nFrom the Empire’s most trusted medical company, the CureLife CorticoPen Xtra dispenses the corticosteroid Sterogen with an extra boost of anticholinergic antiemetic to help relieve muscle weakness and blurred vision.'), +(13613,'fruit_basket_1_harvestables','ShopDisplay','Default','64be7891-9363-4f70-a19f-786eff7cfa4c','','',NULL), +(13614,'Testudo Backpack Disrupt Camo','Armor','Backpack','4db99faa-eb48-4f97-a757-99cd29add137','','','Item Type: Medium Backpack\nCarrying Capacity: 105K µSCU\nCore Compatibility: Medium & Heavy\n\nThe Testudo backpack may feel as light as a feather in your hands, but it can hold an impressive amount of weight thanks to its use of the same tough yet lightweight plating as the armor set.\n\nThe Disrupt Camo edition utilizes carbon fiber grays and blacks printed in a disruptive pattern to keep your enemies guessing.'), +(13615,'Seat','Usable','UNDEFINED','074794fd-aa33-42fe-8190-662ec0e51b3b','','',NULL), +(13616,'Compboard','Cargo','Cargo','2f99ff1c-bfcb-4dcd-a611-0b576a59bfc8','','',NULL), +(13617,'Krig_l21_wolf_Pilot_Dashboard','SeatDashboard','UNDEFINED','65e6dd5c-603a-448a-8f79-35fc261944b9','','',NULL), +(13618,'H_Dashboard_Projector_HUD_BANU_Defender','Display','UNDEFINED','4235e818-d96a-4adf-ad1c-790bd0e27330','','',NULL), +(13619,'Aegis Gladius - Noise Launcher','WeaponDefensive','CountermeasureLauncher','1bf04a1a-57cc-4e75-a294-864515c35bcd','','','Aegis Gladius - Noise Launcher'), +(13620,'Centurion Sandstorm Camo Livery','Paints','UNDEFINED','d883e83e-ead4-49ac-a934-4e63db7d7cc7','','','Outfit the Centurion in dark tan and green camo with the Sandstorm Camo livery. The looks allows this battlefield beast to blend into a wide variety of terrains.'), +(13621,'mobiGlas Azure Casing','MobiGlas','Personal','72430ad6-abf3-437f-b1f1-9249915eb6c2','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(13622,'Skyhigh City T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','c2cf6c51-0fe1-4c00-ac6d-ca240739118e','','','There\'s no need for ground when each of Orison\'s platforms is outfitted with special thrusters to maintain a constant elevation. This shirt features a stylized shot of Orison\'s famous floating platforms sitting comfortably among the clouds.'), +(13623,'Seat','SeatAccess','UNDEFINED','171132a6-8ac9-429d-999c-fcae3597cdcf','','',NULL), +(13624,'PlayerDeco_lt_couch_leather_3_straight_mmhc_a','Usable','UNDEFINED','889517d6-9895-4706-af5e-c58402fd80e6','','',NULL), +(13625,'Datapad','Misc','UNDEFINED','6c00e2ca-24ba-473e-8e6b-8df2c434e147','','','A portable tablet computing device featuring a touchscreen display.'), +(13626,'Seat','Usable','UNDEFINED','467eddbd-745f-4ef8-a5e0-b0874bff37c1','','',NULL), +(13627,'ARMR_DRAK_Clipper','Armor','Medium','054fdde0-75fa-4053-ac95-e606819263ac','','',NULL), +(13628,'MacFlex Arms Purple','Armor','Arms','8f8b52c5-a504-4ef5-a4fe-2c8f58ff37b5','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(13629,'Arrowhead \"Voyager\" Sniper Rifle','Weapon','Medium','8b266e43-6a55-4fe5-b2d4-21e67d5d9795','','','Manufacturer: Klaus & Werner\nItem Type: Sniper Rifle\nClass: Energy (Laser)\n\nBattery Size: 20\nRate Of Fire: 50 rpm\nEffective Range: 100 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nKlaus & Werner’s Arrowhead Model VI long-range energy rifle features a fiberglass composite body capable of withstanding any number of rigorous environments both in atmosphere and out. Built with a precision stock, compound scope and built-in bipod, the Arrowhead offers a stable and devastating weapon for operators who want to keep their distance, but stay in the fight.'), +(13630,'Door','Door','UNDEFINED','bf1e704f-9be5-4e7a-9c8d-13830e587318','','',NULL), +(13631,'ClipVest Work Harness Violet','Char_Clothing_Torso_1','UNDEFINED','31ff398a-c97f-48ee-aed2-1db03327f805','','','Carrying Capacity: 2K µSCU\n\nStegman\'s ClipVest is a multi-purpose work harness that keeps your tools handy when and where you need them. Built from industrial strength materials, this harness offers a back piece to help alleviate strain and provide counterbalance.'), +(13632,'Flight Blade','FlightController','UNDEFINED','a87033a4-cd47-4958-bbf9-994d27f2a529','','',NULL), +(13633,'Seat','SeatAccess','UNDEFINED','61ffdb88-bcd7-4a50-aebb-b95705a2f435','','',NULL), +(13634,'RSI_Zeus_Wing_Bottom_Right','AttachedPart','UNDEFINED','43b6e209-9f2d-4d57-8c22-463c60febf0c','','',NULL), +(13635,'RSI Polaris Torpedo Rack','MissileLauncher','MissileRack','6c32193d-15e0-486f-a833-1db0b1f93d05','','','Item Type: Torpedo Rack\nManufacturer: RSI\nSize: 10\nTorpedo: 7xS10 \n\nBring the impressive firepower of the Polaris to bear with this bespoke torpedo rack holding seven massive S10 torpedoes.'), +(13636,'Constellation Andromeda Ship Armor','Armor','Medium','d2f24bb0-9825-455d-852a-302a3ee290a4','','','Constellation Andromeda Ship Armor'), +(13637,'Bottle','Misc','UNDEFINED','07f36567-ac56-4062-b7af-eb1153b0f5f3','','',NULL), +(13638,'AIModule_Unmanned_PU_Advocacy','AIModule','UNDEFINED','c849fb55-92aa-4826-ae22-70d7aa9593e3','','',NULL), +(13639,'Altruciatoxin','Misc','Utility','b9487ed1-c8ac-4db1-90ef-b0e7ff6f214a','','','Created by chemically processing the pollen of Revenant Tree (altrucia lacus), common effects of ingesting or smoking altruciatoxin include relaxing of the muscles, sensory enhancement, and lethargy. Heavy usage can cause staining of the tongue.'), +(13640,'Davin Work Gloves \"Pathfinder\"','Char_Clothing_Hands','UNDEFINED','24578cff-1bec-4d44-9b15-42638ab6a552','','','Toss out your old boring work gloves and replace them with the Davin Pathfinder edition. These special work gloves combine Stegman\'s classic, sturdy construction with a supremely comfortable lining and a striking silver color.'), +(13641,'Exo-8 Helmet (Used)','Armor','Helmet','5f335fd3-4a74-42c8-ab3c-a38471bae134','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -60 / 90 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing a large face shield and torches on each side, the Exo-8 helmet lets you keep your eyes on the prize. Gyson designers smartly integrated space-safe fabrics into the helmet, so it can provide the protection you deserve at a price that won\'t break the bank. \n\nThis used helmet has been certified space-safe but may contain cosmetic defects not seen on the standard model.'), +(13642,'Freeze','Cargo','Cargo','7056553f-a996-47ab-92d6-6b58a9871386','','',NULL), +(13643,'ORIG_M50_Thruster_Retro_AT','ManneuverThruster','JointThruster','4487ea22-21a8-4bf3-9fe6-c29f326da823','','',NULL), +(13644,'AEGS_Javelin_SeatAccess_Rear_Left_Blocked','SeatAccess','UNDEFINED','0cbc24ce-ef07-44e6-8cd6-bd14872965d8','','',NULL), +(13645,'AEGS_Reclaimer_Dashboard_CoPilot','SeatDashboard','UNDEFINED','a7b274d8-5ab8-4c51-b5d9-d2f9696b4170','','',NULL), +(13646,'Tipper Hat Kel-To','Char_Clothing_Hat','UNDEFINED','450f8e9c-4d81-441f-8c54-807bb1086b94','','','The Tipper hat from Stegman\'s features a pre-curved bill for comfortable wear from day one.'), +(13647,'Stitcher Arms','Armor','Arms','a7d9d23d-be2f-4e84-af5a-6d1d34c295d0','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -52 / 82 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDress to impress in scrapheap chic! The Stitcher armor might look like it\'s held together with tape and good intentions but we swear it\'s space safe. The intentional ramshackle design features a funky double collar, plenty of storage, and a ribbed industrial hose attached to a metal cylinder on the back just for the hell of it.'), +(13648,'Watermelon (Slice)','Food','Plant','4382c1cb-16f9-4649-8b2d-f902e2590a15','','','NDR: 14\nHEI: 10\nEffects: Hydrating, Hyper-Metabolic\n\nDeliciously refreshing and juicy melon that makes a perfect treat on warmer days.'), +(13649,'ORC-mkX Legs Arctic','Armor','Legs','1c3a0ff1-a58b-4903-b242-ff3a84d0eabc','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(13650,'Samya Tank White','Char_Clothing_Torso_0','UNDEFINED','f20ec199-4b09-4d9a-8eec-7204fe8d952f','','','This Samya Tank is your perfect staple for hot weather. Made with soft and breathable fabric, it features moisture-wicking technology and reinforced binding at the openings to protect it from wear and tear. A detachable sleeve is included with each shirt.'), +(13651,'R97 Shotgun','Weapon','Medium','4577e319-8762-4247-8050-882fabe0ea10','','','Manufacturer: Gemini\nItem Type: Shotgun\nClass: Ballistic\n\nMagazine Size: 18\nRate Of Fire: 120 rpm / 60 rpm\nEffective Range: 15 m / 35 m\n\nAttachments: Optics (S1), Barrel (N/A), Underbarrel (S2)\n\nThe R97 combines sleek design and stopping power for an elegant and effective close quarters weapon. This ballistic shotgun from Gemini features two distinct fire modes — a semi-auto wide spread mode ideal for dealing quick damage and a focused mode that offers increased range at the expense of some power. This combat flexibility has made the R97 a popular personal defense weapon across the Empire.'), +(13652,'Toothbrush','Misc','UNDEFINED','51f9d39a-10d1-49bf-a6d2-ab08617fdf7f','','',NULL), +(13653,'PAB-1 Arms Cry-Astro Edition','Armor','Arms','ddfe7c2d-b6d7-4f30-a1aa-e10704a6470d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile. The Cry-Astro Edition was made specifically for the company.'), +(13654,'Remote Turret','Turret','PDCTurret','e38a7612-ccba-4656-ba90-c0152bc036b7','','',NULL), +(13655,'ARGO_MOTH_Dashboard_Addon_TurretBTN','AttachedPart','UNDEFINED','cdf40f6c-889a-4e26-a4a4-77f21afbece3','','',NULL), +(13656,'VariPuck S3 Gimbal Mount','Turret','GunTurret','2616dd99-282a-493a-9f79-750a1ba6f329','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 3\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(13657,'Venture Undersuit Green/Black','Armor','Undersuit','4b5d4290-437e-4646-9e36-4f0c548a7618','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(13658,'WiDoW','Cargo','Small','576ece7e-0c17-4d1a-ac6b-374caaeaf3dc','','','Thick, ink-black synthetic opioid commonly used as a recreational drug. WiDoW has spread like wildfire throughout the Empire thanks to the fact that it\'s relatively easy to produce. This also creates a wide variety of quality between batches of the drug. Designed to be injected as a liquid directly into the bloodstream, the name derived from one of the main side effects from extensive use, the drug stains the veins black, creating web-like subcutaneous patterns through the body. Illegal inside the UEE.'), +(13659,'Atavi Shirt Multi-blue','Char_Clothing_Torso_0','UNDEFINED','b5265828-f7dd-4b43-86af-bd77d41c03cd','','','MuyMuy\'s Atavi line of casual shirts are comfortable enough to wear at home, but stylish enough for a night out. They are made with EasyCare technology to maintain the colors during repeated washes.'), +(13660,'Venture Core Ascension','Armor','Torso','5fcdda13-b65b-4d0f-bfac-a0418747608d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRobert Space Industries’ Venture Explorer Suit provides exceptional protection against the dangers of space. Designed for those who don\'t know where their next adventure might go, the suit combines comfort and safety without sacrificing mobility. This special Envy edition inspired by the Coramor festival features a vibrant pink and purple color scheme for the most enthusiastic of lovers.'), +(13661,'ARMR_GRIN_MDC','Armor','Medium','fe391f6b-2f84-4fd4-8ddc-7be3ce581e74','','',NULL), +(13662,'ADP-mk4 Legs Woodland','Armor','Legs','b400fde5-495b-47b1-a9d8-210b1d5cb4fd','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhen there\'s a difficult job at hand, you want to ensure that you can see it through to the end. Clark Defense Systems\' ADP-mk4 heavy armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers.'), +(13663,'AcryliPlex Composite','Cargo','Cargo','3891ac68-1cdb-4181-8114-aa54ddce3649','','',NULL), +(13664,'Door_ChipReader_DCD','Door','UNDEFINED','ba29a518-06f1-41da-8077-9dd49ab4267a','','',NULL), +(13665,'300 Series White Lightning Paint','Paints','UNDEFINED','c44afd04-584f-43ae-b9c2-b3e2affe7fb5','','','White Lightning paint job for the Origin 315p.'), +(13666,'Raw Silicon','Cargo','Cargo','1fd362f2-85c1-4e67-8032-4a4024aa3886','','','A strong and brittle element with good thermal conductivity. Crystalizes in a diamond form.'), +(13667,'Internal Tank','FuelTank','Fuel','722eef25-4de6-4f2e-8ee1-84018e5023aa','','',NULL), +(13668,'Khartu-al Ocellus Livery','Paints','UNDEFINED','83ec6f41-17a1-4a41-949d-f1530f0c9a66','','','The Ocellus livery adapts and updates the iconic colors and design used on some Tevarin ships to bring a striking new look to the Khartu-al. The livery gives the fuselage a prominent red ridge while shimmering green covers the rest of the ship. Thick grey lines swoop through both colors to provide a unique geometric element.'), +(13669,'Carryable_2H_CU_CookingPot','Misc','UNDEFINED','8d4df48c-ceea-44e2-b753-99b5190be24b','','',NULL), +(13670,'MOTH Rockwell Livery','Paints','UNDEFINED','816559a4-5b92-47e0-8d33-6d408c1c50e8','','','Maintain a low profile with the Rockwell livery, which covers the MOTH in subtle shades of grey.'), +(13671,'bottle_water_1_tray_c_2Ports','ShopDisplay','Default','3dccf5ff-8709-4fab-8dda-71fb02e5d332','','',NULL), +(13672,'Safe_Keypad','Cargo','UNDEFINED','e8c34dbd-b10f-4d7e-b9a7-e00d02ad1c2f','','',NULL), +(13673,'Carryable_1H_kitchenware_spatula_a','Misc','UNDEFINED','3cdbb54d-d084-4829-82c3-60451590d780','','',NULL), +(13674,'United Planets of Earth Mini-Flag','Flair_Cockpit','Flair_Static','9edbb4cd-ae1f-42e2-9884-072997d51378','','','This small metal stand flies a holographic flag of the United Planets of Earth (UPE). Designed in 2523 when Humanity replaced the United Nations of Earth (UNE) with a new political system better suited for its expanding governance over multiple systems. To symbolize this progression, the UPE flag kept the interlocking rings from the UNE flag while adding a circle with breaks to represent the continued desire to expand and laurel branches symbolizing the success of Humanity\'s space exploration.'), +(13675,'C8R Pisces Standard Flight Blade','FlightController','UNDEFINED','c8a18f9f-bdea-4bcf-b011-68e0959ee297','','','Manufacturer: Anvil Aerospace\nType: Flight Blade\n\nThis is the standard issue flight blade for the Anvil C8R Pisces Rescue.'), +(13676,'ClipVest Work Harness Purple','Char_Clothing_Torso_1','UNDEFINED','0ab36ed3-9af8-4025-8344-c869e24f709a','','','Carrying Capacity: 2K µSCU\n\nStegman\'s ClipVest is a multi-purpose work harness that keeps your tools handy when and where you need them. Built from industrial strength materials, this harness offers a back piece to help alleviate strain and provide counterbalance.'), +(13677,'Seat','Usable','UNDEFINED','d33384e1-3d65-4c63-85ae-86880c0b38be','','',NULL), +(13678,'drug_packet_1_a','Cargo','UNDEFINED','6e87b591-64e0-401a-80bf-a3f4570fccee','','',NULL), +(13679,'MXOX_NeutronRepeater_FiringMechanism_S1','WeaponAttachment','FiringMechanism','69455dfa-4b6d-4130-b413-65bda418a93c','','',NULL), +(13680,'Flight Blade','FlightController','UNDEFINED','6889e91f-2a6c-4576-8208-13f18441ed82','','',NULL), +(13681,'Ventra Gloves Purple','Char_Clothing_Hands','UNDEFINED','7057fde4-8b64-4899-b762-e146ccfeae26','','','Keep your hands warm and dry with Fiore\'s Ventra gloves. Microstitching creates a snug, tailored fit to keep you looking stylish and warm.'), +(13682,'MC-Green Hat','Char_Clothing_Hat','UNDEFINED','03be34c2-c181-417c-9b06-798ea768d157','','','This military cadet hat from CBD blends lightweight fabric and leather for a striking design.\n\nWomen\'s sizes currently out of stock.'), +(13683,'Door Control','DockingAnimator','UNDEFINED','63cd0c8c-de5c-4722-b0bc-407543aefa83','','',NULL), +(13684,'RAFT Hurston Livery','Paints','UNDEFINED','7190c568-8bae-4419-9f47-91cb01413d55','','','The Hurston livery for the RAFT features the company\'s logo atop a grey base paint with yellow highlights.'), +(13685,'CNOU_Mustang_RADR_Display','Display','UNDEFINED','6d4eaa9a-6ce2-40b2-83b4-4af492163f6f','','',NULL), +(13686,'Body','Char_Clothing_Legs','Medical','665fa1e6-39c8-4d65-91d9-42f16bda1868','','',NULL), +(13687,'Testudo Backpack Turfwar','Armor','Backpack','5f7161bc-36a1-443e-aace-59ff91ab8a06','','','Item Type: Medium Backpack\nCarrying Capacity: 105K µSCU\nCore Compatibility: Medium & Heavy\n\nThe Testudo backpack may feel as light as a feather in your hands, but it can hold an impressive amount of weight thanks to its use of the same tough yet lightweight plating as the armor set.'), +(13688,'ADP-mk4 Helmet (Modified)','Armor','Helmet','4ee19374-ae87-407a-996b-da376546f8c8','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nBased on CDS\' ADP-mk4 heavy combat armor, this set has been modified from its original form. When there\'s a difficult job at hand, you want to ensure that you can see it through to the end. This armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers. Visor is AR crosshair compatible.'), +(13689,'Reliant Toshima Turret','Turret','GunTurret','1139b69c-c5b3-4f58-8ecb-64f1585e2bdb','','','Item Type: Turret (Reliant Exclusive)\nManufacturer: MISC\nSize: 4\n\nSpecifically built to be used exclusively on the MISC Reliant, the Toshima turret system comes with a camera that can be remoted into while providing a wide range of motion for two Size-2 weapons.'), +(13690,'Starfarer Foundation Fest Livery','Paints','UNDEFINED','df3bc325-50e3-4d17-9257-81505cf47717','','','Foundation Festival is an opportunity for Citizens and Civilians to come together and strengthen the foundation of our community. Show your commitment to a better universe with this custom livery.'), +(13691,'CRUS_Starlifter_Ext_Door_Left_Lg_HACK','Container','UNDEFINED','1b777ea7-90b9-49ed-a83d-7516fcdc1729','','',NULL), +(13692,'Salvaged Skull 8 SCU Container','InventoryContainer','Cargo','1c0e750c-6c3a-4215-ad5b-3712e8d2dd97','','','It may be used to transport “goods”, but this battered and scarred 8 SCU container is anything but thanks to its vivid skull markings.'), +(13693,'Day One Shirt Imperial','Char_Clothing_Torso_0','UNDEFINED','486493c1-5519-4d05-a232-d450c08cd3e8','','','This Henley shirt from Stegman\'s is made with AirFlow technology, a stain-resistant, air-cooled fabric that keeps you comfortable and dry.'), +(13694,'P8-ARM Rifle Magazine (30 cap)','WeaponAttachment','Magazine','62c58bdb-c65c-4883-82c6-83e50c37d40d','','','Item Type: Magazine\nCapacity: 30\n\nThis magazine for the Behring P8-ARM rifle comes pre-loaded with thirty 7.62mm rounds.'), +(13695,'display_guns_04x01x01_s04_s05_2Ports','ShopDisplay','UNDEFINED','5e1fbc2d-c1f4-4666-8984-0044062923e7','','',NULL), +(13696,'Beryl','Cargo','Cargo','26f67601-0949-4d5e-8991-805565a9b82a','','',NULL), +(13697,'INTK_ANVL_Paladin','FuelIntake','Fuel','759ca8a4-b397-4cd6-81c0-dfd4a1ca1815','','',NULL), +(13698,'Foundation Festival Beanie Black','Char_Clothing_Hat','UNDEFINED','06589c88-7a42-4241-90ed-7f659be507cd','','','Show your solidarity and commitment to forging a brighter future for the UEE with this Foundation Festival beanie. Made from high-quality cashmere spun on Angeli, this double layer beanie is ultrasoft, warm, and features the Foundation Festival logo on the front.'), +(13699,'FirmWear SoundGuard Hard Hat','Char_Clothing_Hat','UNDEFINED','25550813-57a6-4c8a-bc7d-c04cec17312b','','','The FirmWear SoundGuard helmet is ready to go to work with you. Stegman\'s use of armor-rated plastic alloys keeps it light on your head while still delivering top-of-the-line protection. The SoundGuard edition includes earcups that you can comfortably wear all day when noise reduction is essential.'), +(13700,'SoftLock_Terminal_Standard_Starfarer_Fuel_Pods_Ship_R3','Display','UNDEFINED','4c97de4e-b77b-457b-9a92-32aa53f1fd8b','','',NULL), +(13701,'AIModule_Unmanned_PU_UEE_GreenZone','AIModule','UNDEFINED','071075aa-09c5-46a0-a145-a6e6b7b8109f','','',NULL), +(13702,'FirmWear SoundGuard Hard Hat','Char_Clothing_Hat','UNDEFINED','132b612b-9de9-4bc2-ba0c-1ab7e612f631','','','The FirmWear SoundGuard helmet is ready to go to work with you. Stegman\'s use of armor-rated plastic alloys keeps it light on your head while still delivering top-of-the-line protection. The SoundGuard edition includes earcups that you can comfortably wear all day when noise reduction is essential.'), +(13703,'Manned Turret','TurretBase','MannedTurret','ecef74fe-d964-40e2-b959-8a5e32530cda','','',NULL), +(13704,'Vehicle_Screen_MFD_Holographic_MISC_Prospector_RR','Display','UNDEFINED','ec694bb2-caac-4e6a-9fe9-d53954803358','','',NULL), +(13705,'ORC-mkX Legs Iceborn','Armor','Legs','f8a4bdca-fbec-4b71-b593-dc4472eda053','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(13706,'CNOU_Mustang_Beta_Cover_Back','Container','Cargo','584ab2f9-7ae4-48ff-90e3-f5a95f8b63e9','','',NULL), +(13707,'Iron (Ore)','Cargo','Cargo','f0a0814c-eb2a-409d-af8f-87adf9a6f40f','','',NULL), +(13708,'display_ship_components_03x0075x0275_b_power','ShopDisplay','UNDEFINED','7fc2dcab-755c-46ec-9793-bd9c6b7f03ba','','',NULL), +(13709,'ARGO_SRV_CargoGrid_Main','CargoGrid','UNDEFINED','53f60f2b-4d66-4926-811c-ab9068f1a562','','',NULL), +(13710,'Remote Turret','Turret','PDCTurret','d6becd3d-c806-488c-b85b-81c8b13ae3c8','','',NULL), +(13711,'FPS_DefaultRadar_Lens','FPS_Radar','UNDEFINED','a64be577-9f99-403d-bd9b-e4de74d55de6','','',NULL), +(13712,'Venture Undersuit Black/Aqua','Armor','Undersuit','1fef4e23-fa91-4db2-ba9e-cb83ef6c9900','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(13713,'Screen','SeatDashboard','UNDEFINED','878ae63f-4076-42ab-bab2-861ff7988045','','',NULL), +(13714,'BEHR_JavelinBallisticCannon_FiringMechanism_S7','WeaponAttachment','FiringMechanism','34d3a44e-5e02-4b36-b9d2-0d8f6c0d1acc','','',NULL), +(13715,'ANVL_Pisces_Thruster_Mav_Joint_Top_C8R','ManneuverThruster','JointThruster','5ad7928f-0e9f-4fa7-b7b1-5a4fd70794e5','','',NULL), +(13716,'RSI_Salvation_CargoGrid','CargoGrid','UNDEFINED','2e677d53-4b0d-4cdd-8c28-57b269064c7c','','',NULL), +(13717,'RAFT Polar Livery','Paints','UNDEFINED','79fbf83a-af86-4ace-a29d-1eb8cd91b81b','','','Modify your RAFT with this white and grey livery specifically designed for the 2951 IAE.'), +(13718,'Guardian Burnout Livery','Paints','UNDEFINED','d10aeef3-25f2-4242-860f-254f6ae56896','','','Predominately a piercing red, the Burnout livery is adorned with deep black highlights and Mirai\'s signature branding.'), +(13719,'Alban Shirt','Char_Clothing_Torso_0','UNDEFINED','8d327a65-fd5c-45b4-a55e-f6cd845ea013','','','The Alban is a long sleeve shirt made from comfortable, natural fabrics. Featuring a deep V-neck, its asymmetrical patchwork design provides it with a bit of texture and a two-toned look.'), +(13720,'Stud','Char_Head_Piercings','UNDEFINED','b63c7cc3-ef25-4ba2-850a-339d183e96c6','','',NULL), +(13721,'AEGS_Avenger_PrisonPod','Usable','UNDEFINED','5e918b65-7049-4a11-beaf-d903bd420194','','',NULL), +(13722,'Antium Arms Midnight Sun','Armor','Arms','46400a70-d299-4fd9-8d7a-285538740bb4','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(13723,'Weapon_Rack_ANVL_Ballista_2_Slots','Usable','UNDEFINED','8be5ded3-4e6b-4635-8c63-43a85088df93','','',NULL), +(13724,'Station','SeatAccess','UNDEFINED','d29ab303-76fa-4ffc-b5bf-56f956fe35d6','','',NULL), +(13725,'Theaters of War: Hathor Group Hat','Char_Clothing_Hat','UNDEFINED','14c0dbb6-b0a2-4d30-8124-6c66d8ad2774','','','This Hathor Group hat resurrects the original design worn by workers in Nexus when the company controlled the system. It has been intentionally distressed to reflect the harsh conditions in the system, and released as a special Theaters of War (Working Title) tie-in to promote their Nexus sim map.'), +(13726,'Wanderer Boots Redline','Char_Clothing_Feet','UNDEFINED','e6866305-a37e-4e63-b49f-56a29547e17b','','','Grindstone\'s Wanderer line is an all-purpose boot designed to take any punishment you throw at it.'), +(13727,'Venture Arms Imperial','Armor','Arms','1e5907b2-86f5-44c7-a3ac-0d728351ad4a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(13728,'Blizzard','Cooler','UNDEFINED','2c93a027-3b9a-4c8b-b5b0-b03676b35e2d','','','Item Type: Cooler\nManufacturer: Aegis Dynamics\nSize: 3\nGrade: A \nClass: Military\n\nNavy mechanics worked with Aegis engineers to ensure the Blizzard met their specific needs. When it reached the commercial market, this top of the line, military-grade cooler became one of Aegis’ top selling components.'), +(13729,'ESPR_Prowler_Thruster_Retro','ManneuverThruster','UNDEFINED','5b80abbe-8f5e-4a6c-8f26-4b09c3f6d7d7','','',NULL), +(13730,'TCS-4 Undersuit Autumn','Armor','Undersuit','5ec336b7-9a12-4ad1-91fd-4302c0b55128','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThis comprehensive Tactical Combat Suit provides a complete sealed suit against vacuum, free range of motion, and interfaces seamlessly with compatible armor systems.'), +(13731,'StorageCage_Time_ZeroG','Cargo','UNDEFINED','89d532ea-1e8f-479e-b5e6-7a34859cff77','','',NULL), +(13732,'ESPR_BallisticCannon_Ventilation_S2','WeaponAttachment','Ventilation','9783dad7-ff59-4a41-8d7f-9ed580b514eb','','',NULL), +(13733,'Internal Tank','QuantumFuelTank','QuantumFuel','892fcbee-525f-41df-8227-45ec354aa73e','','',NULL), +(13734,'AEGS_Redeemer_SCItem_Support_Seat_Front','Seat','UNDEFINED','bcf434e4-2c6b-425a-8b0c-2725cb4902ab','','',NULL), +(13735,'Size 3 Fixed Mount','Turret','GunTurret','306c70c8-b414-4cd1-a0d1-2668fcba78ad','','','Size 3 Fixed Mount'), +(13736,'AEGS_Reclaimer_Scanning_Console_2','Seat','UNDEFINED','847e2f2a-9971-43cb-82b3-ddbc0526b287','','',NULL), +(13737,'CRUS_Star_Runner_Thruster_Mav','ManneuverThruster','UNDEFINED','ca177b0e-fec6-49df-a3e8-24309fd95413','','',NULL), +(13738,'AEGS_Door_Decal_Elevator','Decal','DoorPart','7c3aa7d0-524f-49e9-8146-7b320d988594','','',NULL), +(13739,'ARMR_AEGS_Reclaimer','Armor','Medium','1578b810-9e39-4e6a-92ca-00d7f16d0afa','','',NULL), +(13740,'Door Control','ControlPanel','DoorPart','40c0becf-95eb-4068-89e0-1b22e16da853','','',NULL), +(13741,'Seat','SeatAccess','UNDEFINED','c6908874-210d-40be-b29b-62073686b2dc','','',NULL), +(13742,'TrueDef-Pro Arms Black/Gold/Silver','Armor','Arms','85dacc31-d58e-4632-bc25-44d4e6ded89d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(13743,'Nox Thli Livery','Paints','UNDEFINED','e15fb93c-caae-4315-9b9b-981219daf856','','','Speed and style combine with the Nox Thli livery that artfully blends silver and black across this open-canopy racer.'), +(13744,'Genmod Seeds','Cargo','Cargo','daf17593-66b4-47c8-9199-91c2c6dbde6b','','',NULL), +(13745,'Remote Turret','Turret','MissileTurret','267b331f-b2b6-4e66-b157-ba8649005ef3','','','Remote Turret'), +(13746,'Custodian \"Midnight\" SMG','Weapon','Medium','00d29b14-baf9-496b-8f46-d9a139446e3d','','','Manufacturer: Kastak Arms\nItem Type: SMG\nClass: Energy (Laser)\n\nBattery Size: 60\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe Custodian SMG from Kastak Arms focuses on a high rate of fire over damage and accuracy making it an ideal choice for sweeping through tight environments and close quarters combat.'), +(13747,'Foundation Pants Khaki','Char_Clothing_Legs','UNDEFINED','4d397ebd-29ac-4c32-84bc-d41ec06404f4','','','Carrying Capacity: 1K µSCU\n\nDMC\'s Foundation line is just that; the foundation for your work wear. Featuring a simple, elegant cut with easy-access pockets, the Foundation is both professional and functional.\n\nWomen\'s sizes currently out of stock.'), +(13748,'SF7E Cannon','Weapon','Gun','96b0e0ca-afb7-4ae2-b5f5-164ebcb29406','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 7\n\nEngineers from Behring and Crusader collaborated to make the SF7E laser cannon the ideal weapon for the Ares Ion Star Fighter. A custom shell allows the massive weapon to seamlessly integrate into the body of the ship. Ideal for long-range engagements involving large and capital-class spacecraft, the SF7E\'s impressive accuracy and high damage-per-round make it a devastating weapon in the hands of a skilled shooter.'), +(13749,'HLX99 Hyperprocessors','Cargo','Cargo','09a9e4d4-871f-41e1-8898-62e8ddd6e35a','','',NULL), +(13750,'RSI Polaris Torpedo Rack','MissileLauncher','MissileRack','4455fed7-094e-4844-a97e-f2f890e2369f','','','Item Type: Torpedo Rack\nManufacturer: RSI\nSize: 10\nTorpedo: 7xS10 \n\nBring the impressive firepower of the Polaris to bear with this bespoke torpedo rack holding seven massive S10 torpedoes.'), +(13751,'Titanium (Ore)','Cargo','Cargo','8340a329-173f-41ef-82d4-46ac9c92b6aa','','',NULL), +(13752,'MPUV-1C Standard Flight Blade','FlightController','UNDEFINED','607ee9a7-71d0-4e2c-9efb-6f5fcf6dcb13','','','Manufacturer: Argo Astronautics\nType: Flight Blade\n\nThis is the standard issue flight blade for the Argo MPUV-1C.'), +(13753,'Nova Pyrotechnica Venom Rocket','Missile','Rocket','d0562627-1838-4fe7-bea7-788d6b8c4055','','','Nova Pyrotechnica Venom Rocket'), +(13754,'Copper (Ore)','Cargo','Cargo','0ce23783-8cbe-489f-984f-3a67ccbc9b74','','',NULL), +(13755,'Zeus Citizens for Prosperity Garnet Livery','Paints','UNDEFINED','ac3cc8f1-c96f-4f1a-aedc-500f97a8c29a','','','Join the Citizens for Prosperity in their mission to bring peace to the frontier with this dark grey and burgandy livery featuring the group\'s signature logo.'), +(13756,'box_plastic_4_weapon_opened_015x01x0025_a_klwe_rifle_energy_01','Misc','UNDEFINED','410249e4-2ec2-47a7-8549-8c6645ba2536','','',NULL), +(13757,'MedPen (Hemozal)','FPS_Consumable','MedPack','7d50411f-088c-4c99-b85a-a6eaf95504c3','','','Manufacturer: CureLife\nItem Type: Medical Consumable\n\nFrom the Empire’s most trusted medical company, the CureLife MedPen can rapidly dispense doses of the coagulant Hemozal during emergency situations to help relieve bleeding and improve a patient’s overall vitals. Use only as recommended.'), +(13758,'Snapback Boots','Char_Clothing_Feet','UNDEFINED','05e227f4-5937-4f1b-a099-fc5aea7c55cc','','','Vibrant light green leather and bold metallic accents bring an eye catching look to the Snapback boots. Grindstone Boots\' classic thick, cushioned sole and an odor absorbing insole are complemented by a steel toe, magnetic clasps protecting the laces, and a metallic counter for additional support.'), +(13759,'Morozov-SH Core Brushdrift','Armor','Torso','314fbec7-eb9c-4ea3-942c-ffaeac60fbf0','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12K µSCU\nBackpacks: All\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(13760,'Door Control','ControlPanel','DoorPart','6bfbfbe2-881b-4bf0-bf3a-b3b0c9440d47','','',NULL), +(13761,'DRAK_Corsair_Thruster_Mav_Bottom','ManneuverThruster','UNDEFINED','4a8b2945-f5bc-4749-9e59-ea93cc6f8a6a','','',NULL), +(13762,'m_human_mannequin_rsi_suit_04','ShopDisplay','UNDEFINED','bd986d3c-48fa-4878-b3e2-9046023631e4','','',NULL), +(13763,'Pulse \"ArcCorp\" Laser Pistol','Weapon','Small','0fb5aa5a-21e0-44fb-a41b-d01287b41dc5','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Pistol\nClass: Energy (Laser)\n\nBattery Size: 60\nRate of Fire: 500 rpm (1000 rpm rapid)\nEffective Range: 15m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nThe Pulse Laser Pistol is a fully automatic pistol intended for close quarter combat. VOLT designed the weapon with a unique capacitor that condenses the pistol\'s laser energy, increasing its rate of fire at the cost of greater inaccuracy and a higher risk of overheating. This special edition features ArcCorp branding.'), +(13764,'un_box_wrapped_2_a','Misc','UNDEFINED','e8b70eab-18c6-4bb7-93be-4b6e284b9473','','',NULL), +(13765,'Vestal Water','Drink','Bottle','3d4210ba-aaa9-4154-b3a9-2b917d832257','','','HEI: 44\nEffect: Hydrating\n\nSourced from carefully selected water-rich asteroids, this crystalline pure water contains naturally occurring minerals for a smooth, refreshing taste that makes it a perfect choice for all your hydration needs.'), +(13766,'stand_shop_large_QTDrive','ShopDisplay','UNDEFINED','cb84b666-a372-4557-afdc-ee474489034d','','',NULL), +(13767,'Seat','SeatAccess','UNDEFINED','171e8758-c97c-44db-9b66-a9b0d301900f','','',NULL), +(13768,'Door Control','Door','UNDEFINED','4c83dbe8-4a89-44c5-8ab5-03ca86fc7331','','',NULL), +(13769,'Li-Tok Boots Yellow','Char_Clothing_Feet','UNDEFINED','96599ebc-03e6-4cc0-b28d-cd74eea5f138','','','Stylish yet rugged, NorthStar\'s Li-Tok boots are made from a composite nylon fabric, vulcanized rubber grips that hold fast to a variety of surfaces, and reinforced ankle support making these perfect for hanging out or on the job.\n\nWomen\'s sizes currently out of stock.'), +(13770,'LH86 \"Pathfinder\" Pistol','Weapon','Small','837d0d8b-9bc4-4abc-8f98-12dcb4d6f91f','','','Manufacturer: Gemini \nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 25\nRate Of Fire: 1200 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe LH86 from Gemini is a compact kinetic handgun designed for personal defense and close-quarter combat. A keen eye on ergonomics and balance coupled with hardy construction makes this pistol a natural fit for any shooter in any number of hostile conditions. The LH86 also comes with Tritium low-light sight and a twenty-five round magazine.'), +(13771,'Railing_Straight_2m_Lowtech_Open','Usable','UNDEFINED','b230305c-d4d5-4809-916c-e187d66c2822','','',NULL), +(13772,'Internal Tank','QuantumFuelTank','QuantumFuel','419273c6-0bb6-4645-a31b-77b7801f57c4','','',NULL), +(13773,'Access','SeatAccess','UNDEFINED','4f778321-26a7-4c6a-a8d3-a7eab494e479','','',NULL), +(13774,'Seat','Usable','UNDEFINED','46b1e387-72cb-376b-7370-3e73db245984','','',NULL), +(13775,'Morozov-SH Core Crusader Edition','Armor','Torso','39d1263d-fa05-4260-831e-ae6b5333d0bc','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12K µSCU\nBackpacks: All\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart. The Crusader Edition was made specifically for the company\'s security services.'), +(13776,'Door Control','Door','UNDEFINED','b81cf9d4-230d-4a56-9766-de151df14cca','','',NULL), +(13777,'Tacit Suppressor2','WeaponAttachment','Barrel','dffa4527-2748-4f52-a7da-e57aae1c293c','','','Manufacturer: ArmaMod\nType: Suppressor\nAttachment Point: Barrel\nSize: 2\n\nDamage: -8%\nAudible Range: -60%\n\nStrike silently with the Tacit Supressor2. ArmaMod uses a proprietary ceramic coating inside the suppressor to ensure the sound of gunfire remains minimal.'), +(13778,'TruBarrier Hazard Suit Slate','Char_Clothing_Torso_1','UNDEFINED','718f8ba9-792c-40cd-a905-c689537c5203','','','Carrying Capacity: 1K µSCU\nTemp. Rating: -5 / 32 °C\n\nGuard yourself from toxic environmental hazards with the TruBarrier Hazard Suit, constructed from industrial-grade fabric and coated with a multi-layered, laminated polymer that offers a broad range of chemical protection without sacrificing mobility. The encapsulated design provides full-body protection from direct contact with dangerous materials when worn with its accompanying mask.'), +(13779,'FBL-8a Legs Righteous','Armor','Legs','aaa16f7f-1a5a-435a-bc10-cfe19774f2c3','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nBased on CDS\' FBL-8a combat armor, this set has been modified from its original form. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible.'), +(13780,'First Contact Day ’54 Coin','Misc','Utility','ac05017b-7a70-414f-b40c-3c36e1ab45a4','','','Celebrate the diversity of our universe with this special coin commissioned for the 2954 anniversary of First Contact Day. One side of the coin features “First Contact” written in Xi’an while the opposing side displays the same escribed in Banu.'), +(13781,'DRAK_Cutlass_Blue_Thruster_Maneuver_Bottom','ManneuverThruster','JointThruster','908231c9-ba6c-42a9-bcae-680a3fa08027','','',NULL), +(13782,'Door Control','Door','UNDEFINED','b9f167fb-be0c-4840-90b8-2e3767d817e0','','',NULL), +(13783,'DRAK_Cutlass_Red_CargoGrid_Right','CargoGrid','UNDEFINED','96b66dfc-7a66-4a65-ae06-48593b9ef454','','',NULL), +(13784,'IFR-A77 Turret','TurretBase','MannedTurret','fc45854f-20f6-4da1-8105-dd269856f25e','','','Item Type: Manned Turret\nManufacturer: Aegis Dynamics\nSize: 7\n\nThis manned turret, designed by Aegis to be equipped with two size 7 weapons, is bespoke to the Idris frigate.'), +(13785,'AAT-34 Turret','Turret','MannedTurret','02b31f62-421a-41ca-b756-c3c360ae368b','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(13786,'Seat','Usable','UNDEFINED','73907167-44de-4abb-8694-5e257506681e','','',NULL), +(13787,'Inquisitor Arms Orange','Armor','Arms','e3260eef-12a3-4214-9299-90e7c3c7bfeb','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(13788,'Xa\'Pyen','Cargo','Cargo','5f4d6c95-fdcd-4ee7-adf6-ca799e020486','','',NULL), +(13789,'Pyro RYT \"Harvester\" Multi-Tool','Weapon','Gadget','7b8a3cc5-7083-4293-97e7-c1b8a26daba5','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier. The \"Harvester\" edition blends orange and black.'), +(13790,'Airlock','DockingAnimator','UNDEFINED','7fe5ebcd-ba18-4f7d-a862-444f2dbe8262','','',NULL), +(13791,'Avalos Scout Goggles','Char_Accessory_Eyes','UNDEFINED','a07f1766-b043-40a7-a6f1-232544bfdfd1','','','Tech meets tough with the Avalos Scout goggles. Their unique and sturdy frame ensures that the lenses remain intact even after unexpected impacts or sudden atmospheric changes. Built for harsh environments but bold enough to be worn anywhere.'), +(13792,'CRUS_Starlifter_SCItem_Dashboard_Bomber','SeatDashboard','UNDEFINED','7aca195c-9002-44aa-85ae-d1a2c2358f7e','','',NULL), +(13793,'SHIELDS','ShieldController','UNDEFINED','7734e765-3b78-46a7-b303-c9375ce8419d','','',NULL), +(13794,'ANVL_Asgard_Thruster_Mav_Joint_Side','ManneuverThruster','FlexThruster','ddfac3b2-39b0-479f-aade-8decc3b7df52','','',NULL), +(13795,'stand_shop_medium_b','ShopDisplay','UNDEFINED','d063a0e1-0ce0-4706-8d2b-0702797a65fb','','',NULL), +(13796,'Weapon Rack','Usable','UNDEFINED','b09aa266-c5e2-401a-a903-fd2194402b30','','',NULL), +(13797,'Inquisitor Legs Tan','Armor','Legs','01dda009-9587-4184-b682-f2a8cc199164','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(13798,'RADR_StarMap','Display','UNDEFINED','be4a7d9f-288e-4f74-bc9f-e98fceaddc8c','','',NULL), +(13799,'RSI_Aurora_GS_Cargo_Rack_3SCU','AttachedPart','UNDEFINED','9a0029ae-9ec8-45df-8541-496588ce1343','','',NULL), +(13800,'Flash','QuantumDrive','UNDEFINED','64fb8d1b-50c0-4919-8048-fa813356bbc5','','','Item Type: Quantum Drive\nManufacturer: ArcCorp\nSize: 2\nGrade: B\nClass: Civilian\n\nWith improved spooling and calibration, the new ArcCorp Flash drive can get you in and out of quantum easier and faster.'), +(13801,'Morningstar Helmet Olive','Armor','Helmet','4e2be512-e054-4453-a878-c139ddf0b8af','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(13802,'Quartz \"Clawed Steel\" Energy SMG','Weapon','Medium','5319c0a9-ec91-44e5-9e44-1f1c3a1770b0','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: SMG\nClass: Energy (Electron)\n\nBattery Size: 45\nRate of Fire: Beam\nEffective Range: 15-20 m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nManufacturer VOLT\'s Quartz SMG utilizes exciting new weapon technology that fires a short range beam that fractures into multiple beams the longer it fires, making it an extremely effective close quarter weapon.\n\nSwirls of blue and white give the \"Clawed Steel\" edition its unique look.'), +(13803,'Flight Blade','FlightController','UNDEFINED','071efc2b-ee65-49a2-aea2-ea9d699c0a6f','','',NULL), +(13804,'Corbel Core Mire','Armor','Torso','b14463e1-adf4-4c1b-84c2-360216c97402','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nOriginally designed as a strength enhancement suit to give factory workers better lifting power, CDS found wider application in utilizing its defensive capabilities. It\'s triple-enforced armor plating provides extreme physical protection, with deliberate placing of materials to protect the most vulnerable parts of the body. A series of pneumatic levers offer increased flexibility in the joints, alleviating pressure and weight in key areas to create an accessible and highly protective armor despite its heavy weight.\n\nThe Mire edition features natural greens and industrial grays.'), +(13805,'Door Control','Door','UNDEFINED','d62c36da-96e9-49a2-ba0c-3872dd0a1d8c','','',NULL), +(13806,'ASAD_DistortionRepeater_FiringMechanism_S2','WeaponAttachment','FiringMechanism','8e0a1b4f-5bca-4a81-8b2f-c6ae7dd2ef0b','','',NULL), +(13807,'Vehicle_Screen_MFD_Holographic_ORIG_M50_R','Display','UNDEFINED','97420c0d-41b3-42a1-83d6-931ed8bb8009','','',NULL), +(13808,'Door Control','ControlPanel','DoorPart','fe958a80-6ebd-44e6-80a8-9318e2a66e41','','',NULL), +(13809,'vlk_spewgun_ballistic_01_juvi','Weapon','Medium','b063543f-5662-4d6b-ae64-6df4f2ce8a20','','',NULL), +(13810,'TOAG_LaserRepeater_FiringMechanism_S3','WeaponAttachment','FiringMechanism','7b603122-7c41-4053-921f-5fbcfb263877','','',NULL), +(13811,'Tyger (Project Purple) Shirt','Char_Clothing_Torso_0','UNDEFINED','66cfeb29-c1d6-410f-bbc2-a93e54ebef7a','','','Vaporwear\'s Tyger messaging shirt features the brand\'s distinct camo pattern with a programmable monocolor digital cloth statement strip. The all-purple and black design isn\'t likely to keep anyone truly camouflage in all but the most alien jungle, but it\'s sure to make a statement in any crowded metropolis.'), +(13812,'Hellion VII Missile','Missile','Missile','05f82726-6339-46e0-b8d4-c6b81a1db51c','','','Manufacturer: Talon\nTracking Signal: Infrared\nSize: 7\n\nCarrying a sizable payload and an advanced heat-seeking sensor suite, the Hellion missile from Talon can be effective against aggressors of all sizes.'), +(13813,'Carryable_1H_SQ_Datapad_Fluff_Orb_NineTails_001','Misc','UNDEFINED','407ba527-e8f3-4c38-b69a-d61888df320d','','',NULL), +(13814,'StorageCage_Time_DeliveryMission','Cargo','UNDEFINED','414ee5a2-a966-4865-a37e-81463a0e6fd1','','',NULL), +(13815,'Riccite (Ore)','Cargo','Cargo','4d561937-b515-4ec6-b2a8-61bcbe778621','','',NULL), +(13816,'Colonialism_Outpost_RN_Life_Support','LifeSupportGenerator','UNDEFINED','0cd242b5-d2b4-4ad8-b386-2d13fc6c7669','','',NULL), +(13817,'Ares Star Fighter Inferno Ember Livery','Paints','UNDEFINED','3a9ae057-0fb3-46b1-849b-9944a299157d','','','With the Ember livery, the blazing barrel of the massive gatling gun isn\'t the only red thing on the Ares Star Fighter Inferno. This special livery uses vibrant red streaks to break up the grey and black paint that dominates the ship.'), +(13818,'ADP-mk4 Helmet Exec','Armor','Helmet','f7027963-d703-4fa6-8642-6abbba27605f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhen there\'s a difficult job at hand, you want to ensure that you can see it through to the end. Clark Defense Systems\' ADP-mk4 heavy armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers. This executive edition features a brushed chrome finish with an inlaid hexagonal pattern.'), +(13819,'Carryable_1H_CY_bottle_rum_pourable_1_a','Misc','UNDEFINED','2a0b28df-ab8d-40bd-9de6-3a6d68923382','','',NULL), +(13820,'CDF F8C Certification Pass (Platinum)','Misc','Personal','713bc5fa-4092-47f6-b07d-88f34c9e57f9','','','The Civilian Defense Force is working in conjunction with Anvil Aerospace to test the next generation of volunteers.\n\nThis platinum certification entitles you to a free F8C from Anvil Aerospace, if you can make it to an eligible ship sale kiosk to turn it in.\n\nCheck your mobi for details. \n\nGood luck and let the hunt begin.'), +(13821,'Door Control','Door','UNDEFINED','14253218-5929-418f-9130-29b4c76b715f','','',NULL), +(13822,'ORIG_85X_Thruster_Retro','ManneuverThruster','FixedThruster','ad7fd4a1-35df-4b86-811f-5fb3c503ab01','','',NULL), +(13823,'ASAD_DistortionRepeater_Ventilation_S3','WeaponAttachment','Ventilation','82a84a29-8815-4b4a-b201-02df84b24f8e','','',NULL), +(13824,'facial_hair_047','Char_Head_Beard','UNDEFINED','0cbe2034-133e-43df-a057-22782b80f4e0','','',NULL), +(13825,'The Hill Horror Reborn Helmet','Armor','Helmet','3c53bb3c-0777-443e-95b1-c5af4750e601','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nHaunt your friends with this custom, high-quality reproduction of the terrifying helmet from the popular slasher vid \'The Hill Horror Reborn.\' Inspired by the terrifying appearance of notorious serial killer Neville Lott, this collector\'s edition space-safe helmet replicates the killer\'s look in the second vid of the series with a black gunny sack and neon green lights. Now you can celebrate Day of the Vara in sinister style, while standing apart from other menaces.'), +(13826,'Molina Ventilation Filters','Cargo','Cargo','8d297211-f4f8-43ed-a7a1-19c8ee8d1d19','','','Special filters developed by Gyson to replace faulty units and purify the air of Molina Mold spores.'), +(13827,'GATS_BallisticGatling_Barrel_S2','WeaponAttachment','Barrel','8eb90cbc-056b-47df-8150-3f2fadc06d00','','',NULL), +(13828,'MSD-683 Missile Rack','MissileLauncher','MissileRack','f30b001c-5c77-4db4-a707-37df25e63aca','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 6\nMissiles: 8xS3\n\nBehring’s MSD-683 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 6 hardpoint for the reliable and effective launch of eight S3 missiles.'), +(13829,'Landlite Boots Olive','Char_Clothing_Feet','UNDEFINED','3ca8f756-39ef-40aa-abff-8857be851f86','','','Who says work boots can\'t be comfortable? Grindstone\'s Landlite boots are built with a breathable synth-leather material to keep your feet dry, a contoured, memory footbed, and a slip-resistant outsole, making it perfect for whatever worksite you throw at it.'), +(13830,'Seat','Usable','UNDEFINED','9bf63f84-1815-4afd-bd1b-5538812486e6','','',NULL), +(13831,'Door','Door','UNDEFINED','0ad693c8-8923-4a58-83bc-d8ffe22242c7','','',NULL), +(13832,'\'Arrow\' I Missile','Missile','Missile','082c2ffb-1c54-45e5-90bf-f411d9a06425','','','Manufacturer: Vanduul\nTracking Signal: Infrared\nSize: 1\n\nCommonly known by its military designation, the Arrow is a small infrared strike missile that has become a mainstay of the Vanduul armory.'), +(13833,'Clean and Clear Work Apron','Char_Clothing_Torso_1','UNDEFINED','d68df611-c3c7-4aea-8e45-96f4f699dc2a','','','Carrying Capacity: 1K µSCU\n\nDon\'t let your clothes suffer when you\'re just doing your job. Designed to be waterproof, stain resistant and easy to clean, the Clean and Clear work apron is ideal protection for your clothes when your job requires getting down and dirty.'), +(13834,'Crusader Industries T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','78dd3b58-5a77-46d6-8921-24daff3bb718','','','This shirt features the iconic Crusader Industries logo across the chest.'), +(13835,'Cargo_Slot_Boat_1Slot','Usable','UNDEFINED','a5dd9364-6694-4b65-afe8-f087fe0f1575','','',NULL), +(13836,'Torite','Cargo','Cargo','5cc9aa55-7c52-49ef-8f13-b58906184b7f','','',NULL), +(13837,'ST-205 Missile Rack','MissileLauncher','MissileRack','13c22c4c-d46c-408b-b1af-589a11bd6033','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 2\nMissiles: 8xS2\n\nTo further improve the defenses of the Origin 400i, Behring built the SNT-205 \"Santoro\", which can carry and deploy eight S2 missiles.'), +(13838,'Khartu-al Stormbringer Livery','Paints','UNDEFINED','2fe73a45-3893-49ec-8488-9a165f157593','','','Celebrate the 2951 IAE with this custom Khartu-al livery. Blending blue and black with white accents, the paint scheme gives the ship an electric new look.'), +(13839,'Outback Core Sleet','Armor','Torso','46425925-affc-448c-b481-f08c75d5ab9c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -65 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2k µSCU\nBackpacks: Light\n\nThose on the frontier know that survival is paramount. The tough and lived-in Outback Armor is hewn from reinforced leather, with a thick hooded cowl neck and layered skirting. With the necessary gear, there\'s no guarantee that you\'ll live to see another day, but now you\'ve got a fighting chance. The Sleet version is dyed a well-worn grey to keep you subtle, but not unsightly.'), +(13840,'Golden Medmon','Cargo','Cargo','11e97874-fb5a-4197-afb1-2eafe9673c4d','','',NULL), +(13841,'Remote Turret','Turret','GunTurret','cdc71682-8b66-4baa-b6da-b880b33d0f67','','','Remote Turret'), +(13842,'Stinger Insularis Livery','Paints','UNDEFINED','34ca03ed-aaf7-405d-98b8-6cf03cd9165e','','','Silvery gray highlights frame metallic blue wings in the Insularis livery for the Esperia Stinger.'), +(13843,'bottle_alcohol_01_beer_smoltz_shop_4x4','ShopDisplay','Default','a4f97b3b-2f59-4dbd-a850-de5643ea5832','','',NULL), +(13844,'Inquisitor Arms Tan','Armor','Arms','ca7c4320-be86-41e8-9c3c-fa6aec0e5129','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(13845,'Tigerstrike T-19P','Weapon','NoseMounted','d018aa87-d395-4935-8660-af9bda648b03','','','Manufacturer: Kruger Intergalactic\nItem Type: Ballistic Gatling\nSize: 2\n\nA custom variant on Kruger Intergalactic’s Tigerstrike line of rotary cannons, this powerful gun was designed in conjunction with the team working on the P-52 Merlin to ensure that it fit seamlessly with the graceful lines of light fighter’s hull while still rapidly delivering round after round with the dependability that one expects from a Kruger weapon.'), +(13846,'Venture Legs Tan','Armor','Legs','db98eb3f-c53d-48e2-a922-6f067e119754','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(13847,'Beryl (Raw)','Cargo','Cargo','889b75f2-1fd8-4da0-905a-f7b421b5b601','','',NULL), +(13848,'ESPR_LaserCannon_Barrel_S2','WeaponAttachment','Barrel','93b822ea-20a1-43a2-bd81-b09c080a006f','','',NULL), +(13849,'Monde Arms HighSec','Armor','Arms','b3dc6024-5a0a-4e4b-9827-4a4ef84acb6c','','','tem Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints. \n\nThe HighSec edition features a carbon fiber finish with red accents.'), +(13850,'Spar-Tee Shirt','Char_Clothing_Torso_0','UNDEFINED','049ae28e-7548-4627-b3a2-527de5e5e654','','','Spar Van Miles\' simple V-neck tank is made from a synthetic blend, making it comfortable but elegant.'), +(13851,'DockingTube_Fuel_Ports_MISC_Prospector','DockingCollar','UNDEFINED','8639066d-c61c-4445-9348-3fd4cb00950f','','',NULL), +(13852,'Parallax Energy Assault Rifle','Weapon','Medium','b144a16c-bba4-427e-9f78-bd379f9509f8','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Assault Rifle\nClass: Energy (Electron)\n\nBattery Size: 80\nRate of Fire: 200 rpm - Beam\nEffective Range: 30 m\n\nAttachments: Optics (S2), Underbarrel (S2)\n\nWith the Parallax, VOLT offers consumers a rugged assault rifle design with features like a larger-than-average battery and a unique actuator that enables the weapon to scale up into a persistent beam as it fires.'), +(13853,'Scalpel \"Permafrost\" Sniper Rifle','Weapon','Medium','f7fd2dd3-67a2-4c24-b1e7-8c8a2c634cf3','','','Manufacturer: Kastak Arms\nItem Type: Sniper Rifle\nClass: Ballistic\n\nMagazine Size: 8\nRate Of Fire: 30 rpm\nEffective Range: 120 m\n\nAttachments: Optics (S3), Barrel (N/A), Underbarrel (S2)\n\nThe Scalpel is a unique and versatile sniper rifle from Kastak Arms. Designed with a vertical two barrel configuration, it has two fire modes so you can adapt your shot to the situation to deliver a single, powerful shot from a long distance, or fire both barrels in quick succession to create a double-shot burst. This special Permafrost edition features blue and grey coloring reminiscent of a glacier under a blinding winter sky.'), +(13854,'P8-SC \"Warhawk\" SMG','Weapon','Medium','0aedfb61-ae31-4eca-98ea-0fb0216513f0','','','Manufacturer: Behring\nItem Type: SMG\nClass: Ballistic\n\nMagazine Size: 45\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nWhen the top fighting force in the universe chooses a weapon as their standard, it pays to stand up and take notice. The Behring-crafted P8-SC has been the ballistic submachine gun of choice for the UEE Marines since it first came off the production line, but since then, many have come to rely on this weapon for their own personal safety and protection.'), +(13855,'Marhsal Sleeveless Vest Copper','Char_Clothing_Torso_1','UNDEFINED','8e16bb42-430d-4d1c-bdc8-3295ceae8afe','','','The durable Marshal sleeveless vest by Alejo Brothers is made to endure life on the frontier while distinct stylings like shoulder straps, bold cross-chest placket, and a high-collar make sure the wearer stands out on any far flung world.'), +(13856,'AEGS_Door_Screen_Single_02','Decal','DoorPart','d49dcd09-60c5-4e95-869c-9cc4892e9e0a','','',NULL), +(13857,'Seat','SeatAccess','UNDEFINED','70826e7f-47ca-4dd1-a39e-00d5d1b121aa','','',NULL), +(13858,'Fortune 2955 Auspicious Red Snake Livery','Paints','UNDEFINED','c1824f59-0810-4bc9-96b1-8b05ad5699b0','','','Seek peace and prosperity in the new year with the Auspicious Red Snake livery. Outfit your ship with this bold red base paint complemented by gold accents and a stylized graphic of a snake.'), +(13859,'TRGT. STATUS','Seat','UNDEFINED','139cbec1-97c1-48df-976b-7ae57bdb455e','','',NULL), +(13860,'Railing_Straight_1m_LowTech_Util_Stairs_01x01_b','Usable','UNDEFINED','c5f232dc-21c1-4fe0-b893-f81f3a05fcc1','','',NULL), +(13861,'part_pedestal_01x01x0125_01Port','ShopDisplay','Default','dc4d87ff-ac4b-4161-beed-f03debc897b1','','',NULL), +(13862,'ARGO_MOLE_Thruster_Main','MainThruster','FixedThruster','4be1a511-cfa8-4deb-b802-84ee3a08460c','','',NULL), +(13863,'Landlite Boots Yellow','Char_Clothing_Feet','UNDEFINED','f5aa7301-99a2-4f3a-b9e5-0920a741737a','','','Who says work boots can\'t be comfortable? Grindstone\'s Landlite boots are built with a breathable synth-leather material to keep your feet dry, a contoured, memory footbed, and a slip-resistant outsole, making it perfect for whatever worksite you throw at it.'), +(13864,'AAT-34 Turret','Turret','MannedTurret','39127a6d-7050-4664-99c7-9f47a2ea6982','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(13865,'CNOU_Mustang_Thruster_Main','MainThruster','FixedThruster','2fa95b33-a972-45b3-b567-4f567b3cde66','','',NULL), +(13866,'Controller_Salvage','SalvageController','UNDEFINED','b7cc5644-338f-4373-b6cb-320395344629','','',NULL), +(13867,'Internal Tank','FuelTank','Fuel','9117e492-0fd5-490c-b07b-090a77de0565','','',NULL), +(13868,'Terrapin Deck the Hull Livery','Paints','UNDEFINED','57579003-0269-4112-9a96-0b37a2514066','','','Express your holiday spirit with the Deck the Hull livery, which uses the traditional Luminalia colors of green and red to celebrate the popular Banu festival that\'s become beloved by Humans.'), +(13869,'RSI_Constellation_Taurus_Thruster_Turbine_Front','ManneuverThruster','JointThruster','be8e4983-0345-4f3c-9ec9-15fd9b86d8c0','','',NULL), +(13870,'Morningstar Helmet Green','Armor','Helmet','06c21092-cc23-4e05-9193-a058908e2e3d','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(13871,'Controller_Salvage_MISC_Fortune','SalvageController','UNDEFINED','eb314b77-43f2-4075-8947-a444be046726','','',NULL), +(13872,'Oracle Helmet Draas','Armor','Helmet','ece98a67-cc49-4a28-882c-24959e1ffd50','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(13873,'Tuvois Jacket Imperial','Char_Clothing_Torso_1','UNDEFINED','158b8ac2-551a-4dae-b13a-e5107c8c5425','','','Carrying Capacity: 1K µSCU\n\nCreated in collaboration with legendary designer Avon, OpalSky is proud to unveil the Tuvois, an open vest featuring stark, bold styling that\'s destined to make an impression. \n\nWomen\'s sizes currently out of stock.'), +(13874,'RSI_Zeus_Wing_Top_Right','AttachedPart','UNDEFINED','9a4360ad-2442-44ac-8ac5-18e458a4eda3','','',NULL), +(13875,'Sootho Gloves Silvertusk','Char_Clothing_Hands','UNDEFINED','27b1ba89-4098-443e-b96b-4fa435489bfc','','','Pros at keeping your hands safe without sacrificing dexterity, the slip-resistant Sootho gloves deliver solid protection and lasting warmth during chilly or hostile conditions. The tough synthetic leather breaks in well and will stand up to years of frequent use.'), +(13876,'Nivala Shoes Arctic','Char_Clothing_Feet','UNDEFINED','722e7191-5e99-4499-bae5-2ab817c8de17','','','The Alejo Brothers expertly engineered the Nivala shoes to provide high ankle support while remaining lightweight. The shoes mix the company\'s patented FullFlex rubber with synthetic nubuck leather for flexible yet strategic support, and feature cushioning on the heels and balls of the feet for supreme comfort.'), +(13877,'Chada Collar and Panniers Sandalwood','Char_Clothing_Torso_1','UNDEFINED','55865d5b-53cc-4335-9b49-aaac69519a28','','','Carrying Capacity: 400 µSCU\n\nNeed extra inventory? We\'ve got you covered. Designed for hands-free carrying, the Chada Panniers by Habidash come with an adjustable strap that lets you securely attach them around your hips. Each set of panniers comes with a fashionable steel and leather gorget.'), +(13878,'Quantainium','Cargo','Cargo','d20d7c4d-1156-4d75-8b06-7e49ec341400','','',NULL), +(13879,'Uncut SLAM','Cargo','Cargo','fdbef4a2-40eb-412f-bc7c-ebb4ade7f6ad','','',NULL), +(13880,'Allpa Pants Olive','Char_Clothing_Legs','UNDEFINED','3093b322-1de0-4125-ade3-71cb55c5b9ca','','','Carrying Capacity: 400 µSCU\n\nIf you\'re in the adventure business, you\'ll need clothing that can take the heat. The Allpa Pants were made with heavyweight cotton that features AlejoFlex technology, providing the wearer with a wide range of movement during tough jobs while maintaining its durability.'), +(13881,'Carryable_2H_SQ__tablet_8x11','Misc','Gadget','765422bb-cbd8-4e45-8b10-342715e8ded8','','',NULL), +(13882,'display_components_s2_modular_cooler','ShopDisplay','UNDEFINED','e8d4f3d7-be96-46d2-bb77-c31d3d1b148b','','',NULL), +(13883,'stand_shop_small_c_Cooler','ShopDisplay','UNDEFINED','ec75fe5a-5f21-4362-b131-b07f892976cf','','',NULL), +(13884,'Horizon Helmet Yellow','Armor','Helmet','fa13c56c-3664-46e8-8ed9-af6e4bac3b67','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Horizon helmet is a durable and robust environmental enclosed work helmet. The single sheet laminate dome gives you an extremely wide field of view. A pair of side-mounted LED light modules provide additional illumination to make sure you can see what you\'re doing.'), +(13885,'ESPR_LaserCannon_FiringMechanism_S5','WeaponAttachment','FiringMechanism','92343f59-c339-4ec1-adec-bbb0e8ec8fbc','','',NULL), +(13886,'Hello Sunshine Luminalia Planter','Misc','Flair_Wall_Picture','22aa0825-a7ae-4b13-ae4a-12ad22d481da','','','Bring a little life to your Luminalia decor with the Hello Sunshine Planter from Sakura Sun. Featuring a red and green pot with a Banu season greeting and a charming facial expression, this festive tree is decorated with ornaments and spinning stars.'), +(13887,'MISC_Razor_Dashboard_Pilot','SeatDashboard','UNDEFINED','bfda00bd-976c-48da-8b25-475dc54f0ef7','','',NULL), +(13888,'Flight Blade','FlightController','UNDEFINED','c7de22ec-eeea-4d67-8732-8b852c252a19','','',NULL), +(13889,'Bucket_Ice_1_rsi_b','Misc','UNDEFINED','26a5d900-1d91-4435-b9fb-4629fedc4316','','',NULL), +(13890,'DockingTube_Fuel_Ports_MISC_Hull_A','DockingCollar','UNDEFINED','637c0b48-eadc-4cf4-a9d4-39410a5d0826','','',NULL), +(13891,'Aril Helmet Black Cherry','Armor','Helmet','7799b79b-2753-4b6a-9965-c99cedff4924','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(13892,'Overlord Helmet Tempered','Armor','Helmet','efc66ea6-787e-4f65-a496-8ad8c1f594b7','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord helmet delivers heavy armor protection while using a special lightweight composite plating that makes it feel like nothing\'s there. Repurposed ocular sensors normally found on ships keep you attuned to your surroundings and, when worn with the full Overlord suit, the high neck collar provides the helmet extra support and protection. Visor is AR crosshair compatible.\n\nThe Tempered edition is mostly steel gray with prominent black sections.'), +(13893,'Morozov-SH Arms Spite','Armor','Arms','cd5150eb-beff-45ec-a608-a4c881e37d93','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(13894,'Manned Turret','TurretBase','MannedTurret','caf52861-3d27-4778-97d2-c5e5bf16b935','','',NULL), +(13895,'MISC_Freelancer_Base_SCItem_Dashboard_Esc_Pod_Upper_Left','SeatDashboard','UNDEFINED','ff72aa00-5655-4238-9e0f-28d8a6b3a689','','',NULL), +(13896,'ADP-mk4 Core Righteous','Armor','Torso','21c17eec-d684-4dbd-a6d5-694a136ff1f3','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nBased on CDS\' ADP-mk4 heavy combat armor, this set has been modified from its original form. When there\'s a difficult job at hand, you want to ensure that you can see it through to the end. This armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers.'), +(13897,'AIModule_Unmanned_PU_HOS','AIModule','UNDEFINED','389b4e91-4d8d-4648-af77-9511a0061307','','',NULL), +(13898,'Citadel-SE Arms Dark Green','Armor','Arms','8db3dd5f-0e44-41b7-b438-fd1268290699','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(13899,'Seat','Usable','UNDEFINED','20725791-0f70-46a1-b506-260d2cf660d8','','',NULL), +(13900,'Stor*All Big Box Model H2','Module','UNDEFINED','d2f911b6-d68c-439e-b862-3ccd736366ab','','','Manufacturer: Stor*All\nItem Type: Storage\n\nDesigned for the Hornet F7C Mk II, the Stor*All Big Box model H2 replaces the turret system of the military-spec craft with a respectable cargo hold.'), +(13901,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','fe84909b-c3e4-43b2-b526-6c7d702127c6','','','Aegis Gladius - Decoy Launcher'), +(13902,'RSI Noise Launcher','WeaponDefensive','CountermeasureLauncher','c77cbf67-ddc6-4818-a977-5d7609037db8','','','RSI Noise Launcher'), +(13903,'Citadel Core Base','Armor','Torso','f37b03a9-c689-47a6-bc25-49358e0043d8','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure.'), +(13904,'TRGT. STATUS','Seat','UNDEFINED','2f41d0be-8a41-417d-b214-9d8d62c7773e','','',NULL), +(13905,'FLTR Module','MiningModifier','Gun','fb3be543-707b-4582-a25b-c118325fc024','','','Manufacturer: Greycat Industrial\nItem Type: Mining Module (Passive)\n\nInert Material Level: -20%\n\nExtraction Laser Power: 85%\n\nReduce the amount of inert material collected from deposits with the FLTR Module. Though it reduces the laser\'s extraction power, the FLTR\'s patented filtration system screens out inert material to leave more storage space for valuable ore.'), +(13906,'Geoffrey Jacket','Char_Clothing_Torso_1','UNDEFINED','da7b43f4-12b2-4bcb-b734-b85dd8cebcf1','','','Carrying Capacity: 1K µSCU\n\nStay stylishly protected from the elements with the Geoffrey. Escar Limited\'s casual jacket features a durable water-repellent finish with a slick brushed look, alongside sleeves featuring an articulated elbow.'), +(13907,'Mole Keystone Livery','Paints','UNDEFINED','8fe49ebc-317f-4f69-9437-6c6dcbfb0739','','','Crisp white with blue accents, the Keystone livery celebrates the workers whose mining, refining, hauling, salvaging, and more have made the empire what it is today.'), +(13908,'m_human_mannequin_odyssey_suit_07','ShopDisplay','UNDEFINED','c0ff38f0-7bc8-40a7-b9cd-704726c2dd92','','',NULL), +(13909,'Access','SeatAccess','UNDEFINED','1c9e0e39-459c-449c-92b5-55cafd5239b4','','',NULL), +(13910,'Carryable_1H_CY_drug_painkillers_2_a','Misc','UNDEFINED','f8ab1923-2855-492a-985b-d9952ff4adb3','','',NULL), +(13911,'Radar_Display_Pulse','Display','UNDEFINED','de3b40eb-1a17-4b0a-bf9b-858f3c505d73','','',NULL), +(13912,'TRGT. STATUS','Seat','UNDEFINED','b332509e-cd55-4c83-a9b5-37885274c84c','','',NULL), +(13913,'ESPR_Prowler_Thruster_Main','MainThruster','UNDEFINED','63930ad7-8f67-415c-914f-33879d62ba13','','',NULL), +(13914,'f_human_mannequin_ship_jacker','ShopDisplay','UNDEFINED','bb0920e7-5b13-458b-a668-098fcd8e3d2d','','',NULL), +(13915,'Varhey Boots Bayoux','Char_Clothing_Feet','UNDEFINED','437181f9-5838-4d9a-a27d-4d8cf9b6dbdb','','','The Varhey by R6Pro is a widely popular lightweight workboot made of a durable, but flexible, polyweave that ensures a safe, snug fit.'), +(13916,'Morozov-SH Core Vesper','Armor','Torso','cf262564-a803-47bd-9114-939ddb9b77ce','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12K µSCU\nBackpacks: All\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(13917,'HMF-T12 \"Hammerfall\" Torpedo Launcher','MissileLauncher','MissileRack','bfba7023-a477-45e1-9595-60fbc6c17e83','','','Item Type: Torpedo Launcher\nManufacturer: Behring\nSize: 10\nTorpedoes: 20xS12\n\nOffering an alternative to the stock Aegis Idris nose gun, this set of four torpedo launchers are able to store twenty S12 torpedoes, four in each launcher and four in reserve.'), +(13918,'WEAPONS','WeaponController','UNDEFINED','445a0c90-8ecc-34a8-d51c-a7ca851ea4a1','','',NULL), +(13919,'Kutty Jacket','Char_Clothing_Torso_1','UNDEFINED','b82224be-fb8c-40f2-afd4-02ddda33f1ee','','','Carrying Capacity: 1K µSCU\n\nRambler\'s Kutty two-tone jacket features a racer-strap collar and an asymmetrical button design to bring a vintage look into the modern era. \n\nWomen\'s sizes currently out of stock.'), +(13920,'ORIG_125a_Thruster_Mav_Left','ManneuverThruster','FixedThruster','a7e7357c-826a-4641-94b1-d0ea8c2edd9d','','',NULL), +(13921,'ORC-mkX Core Woodland','Armor','Torso','8b93bc9b-8881-410c-9ac2-9df2ee7aebb3','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(13922,'AEGS_Vanguard_Hoplite_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','cf2dda71-2e14-439d-86b8-8eac8030a1f3','','',NULL), +(13923,'DRAK_Caterpillar_SCItem_Seat_SupportRight','Seat','UNDEFINED','8d0f7703-20c5-4a34-84fa-fdda030e0514','','',NULL), +(13924,'Medical Bed','Usable','UNDEFINED','878d2f1e-e094-4094-9eb4-51496566affa','','',NULL), +(13925,'UMNT_ANVL_S5_Rotodome_Mk2','Module','UNDEFINED','afe85dfc-155c-40f0-87f5-8c26cc41fc37','','',NULL), +(13926,'SHIELDS','ShieldController','UNDEFINED','20f3fed1-76fe-483a-a96b-44fa709836f6','','',NULL), +(13927,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','3e27d74f-c222-48e1-9109-625f45b86871','','','Joker Defcon - Noise Launcher'), +(13928,'300 Series Sterling Paint','Paints','UNDEFINED','65232a80-f570-4587-92dc-edd2e13b9794','','','Sterling?paint job for the Origin 300 Series.'), +(13929,'Door Control','Door','UNDEFINED','2bca7daa-5f45-4e60-b242-ab533cedbdd5','','',NULL), +(13930,'Scrap Cable Bundle','Misc','Junk','22c9cf09-c8f7-498f-951f-531f3e8a5954','','','A small bundle of electronic cables, damaged beyond use.'), +(13931,'Silco Shirt Vineland','Char_Clothing_Torso_0','UNDEFINED','b078541c-9f44-4b41-aa6a-488095df22f3','','','With a sleek design and durable material, the Silco Shirt by Habidash is a comfortable shirt that can be conveniently worn either as an undershirt or on its own.'), +(13932,'REP-VS EMP Generator','EMP','UNDEFINED','19210f79-9618-42e0-9b88-6f59cad9fe2c','','','Manufacturer: Behring\nItem Type: Burst Generator\nSize: 4\nDamage Type: EMP\n\nDeliver distortion damage with the REP-VS burst generator built specifically for the Aegis Vanguard Sentinel. Behring modified the technology used in their reputable REP-8 to design an effective non-lethal weapon that integrates seamlessly with the Sentinel.'), +(13933,'AEGS_Redeemer_Storage_Decal_02','Decal','DoorPart','235615dc-d3b2-42f8-b0fa-6d22501011a2','','',NULL), +(13934,'INTK_AEGS_Vanguard_Hoplite','FuelIntake','Fuel','b8f2ae5d-f538-43f5-931a-e49e5b843c34','','',NULL), +(13935,'Door_Simple_Col_002','Door','UNDEFINED','5ba5c62e-181a-40bb-a1dd-8e482a68351b','','',NULL), +(13936,'Boumbo Stew Omni Pack','Food','Tin','be311419-6274-480a-8f65-c608ff39a3f1','','','NDR: 56\nEffects: Hypertrophic, Hypo-Metabolic\n\nOmni Packs use premium certified organic ingredients to create a complete balanced ready-to-eat meal with a premium taste.'), +(13937,'ORIG_m50_Dashboard_Pilot','SeatDashboard','UNDEFINED','db4c8fd6-dec3-41db-9879-9307d7906710','','',NULL), +(13938,'un_bowl_emptyl_1_a_Triggerfish','Food','Consumable','93272b4b-b71f-4f7e-96d2-2601044a3470','','',NULL), +(13939,'ORIG_85X_Thruster_Mav_Fixed_02','ManneuverThruster','FixedThruster','c2d6daa0-7a41-460a-8a6f-127f3e09615d','','',NULL), +(13940,'Navoi Boots and Pants Dust Storm','Char_Clothing_Legs','UNDEFINED','2da3cdae-eae8-4aa4-b378-440b745ca1e3','','','Carrying Capacity: 0.4K µSCU\n\nBe ready to take on whatever the day brings when wearing the Navoi. This unique piece integrates the pants perfectly into knee high boots. Made from a combination of synthetic materials to be tough yet comfortable, the Navoi also comes with shin pads and pouches strapped onto each leg.'), +(13941,'KRON_LaserCannon_PowerArray_S3','WeaponAttachment','PowerArray','5a6a892f-14c8-4359-88a0-55d1070595f3','','',NULL), +(13942,'Greenwater Shirt Iron','Char_Clothing_Torso_0','UNDEFINED','4b81eda7-ceba-45a5-ae78-361bddf2e05e','','','The Greenwater is a long-sleeved shirt tailor-made to be worn underneath most standard sets of armor. Crafted with a durable mix of natural and synthetic fibers, it stands up to daily wear and tear without sacrificing comfort.'), +(13943,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','11f59e7f-8b9f-4923-a600-1962c35e32b0','','','Aegis Gladius - Decoy Launcher'), +(13944,'Internal Tank','QuantumFuelTank','QuantumFuel','51ea4f6c-a3b2-4038-8938-0f1f1fe4e6e0','','',NULL), +(13945,'Lt_A_AIrlock_Door_Double_3m_Ext','Door','AirlockPart','8941e3cc-44d8-4d37-93f7-b1638c6189d4','','',NULL), +(13946,'Door Control','Door','UNDEFINED','35f830d1-eee0-41f4-a201-a63e5b43a8f9','','',NULL), +(13947,'INTK_ANVL_Hornet_F7CS','FuelIntake','Fuel','d41ad984-11cd-4a93-aaa6-f0f7e896f3fa','','',NULL), +(13948,'Carrion Legs Maniac','Armor','Legs','37a40d16-814f-4c49-8f7a-6389155e7d61','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4K µSCU\n\nForged from scavenged metals and ragged clothes, the Carrion armor is a crude concoction of repurposed materials that demonstrates you\'ll do anything it takes to survive.\n\nThe Maniac variant comes with a mid-length cape and integrates bones prominently into several pieces.'), +(13949,'RSI_Zeus_Wing_Left_Cargo','AttachedPart','UNDEFINED','38140c4a-ccf8-47d0-9368-e132c69a4443','','',NULL), +(13950,'Bed','Seat','UNDEFINED','632155a9-90fc-41ca-ad1c-ae2f62004c70','','',NULL), +(13951,'Taftan Boots Mahogany','Char_Clothing_Feet','UNDEFINED','539ec189-4a78-461a-a7c5-f947164c79e3','','','Strong, practical, and stylish, these high-cut boots with reinforced straps will be just the thing you need for those long outdoor treks. The slip- and abrasion-resistant soles were constructed from a proprietary composite of recycled plastic and rubber to improve traction without sacrificing flexibility.'), +(13952,'Hermes Disco Livery','Paints','UNDEFINED','2d1a623d-4655-4695-9974-5e62b8d5a783','','','Equip the ship livery used by ace pilot Disco in the classic children\'s cartoon Rory Nova. While it turns the Hermes metallic dark blue, black, and red, whether you turn into the \'dynamic, instinctive spacecraft operator\' that inspired the livery\'s name is up to you.'), +(13953,'INTK_DRAK_Vulture','FuelIntake','Fuel','eaa3e1f9-8c9d-40d9-9da0-3bac9b9dcbd9','','',NULL), +(13954,'SHIELDS','ShieldController','UNDEFINED','b8b5bf4a-a281-416c-b3f2-5fb615452d6e','','',NULL), +(13955,'Kino Shoes Violet','Char_Clothing_Feet','UNDEFINED','5a402f2d-aedf-4708-b927-f8841a85167e','','','These two-tone slip-on shoes are comfortable enough for casual wear, but stylish enough for the workplace.'), +(13956,'Hydrogen Fuel Tank','FuelTank','Fuel','be927651-d261-45b3-a5c1-3095209d837c','','','@item_Desc_HTNK_Default'), +(13957,'Carryable_1H_CY_glass_tumbler_rum_1_a','Misc','UNDEFINED','92953753-ec1a-4edc-9939-83334729f288','','',NULL), +(13958,'stand_shop_medium_b_Shield','ShopDisplay','UNDEFINED','ef12fb1a-f5af-4061-9b7b-ddbfead25376','','',NULL), +(13959,'Invictus Patch Collection','Misc','Flair_Wall_Picture','b84ce874-f4e9-4921-9c75-2e4a5855b186','','','Mounted inside a beautiful display case, this collection features three patches honoring the naval bases used over the centuries to train recruits into the brave starmen who dedicate their lives to defending Humanity.'), +(13960,'Door Control','ControlPanel','DoorPart','7bb27446-399d-422f-bc21-584b15715095','','',NULL), +(13961,'MISC_Hull_A_CargoGrid','CargoGrid','UNDEFINED','14978620-d1df-4aa4-92c6-9110a06a4823','','',NULL), +(13962,'ADP Legs White','Armor','Legs','38354858-f9cb-45ed-8d60-fc930ef43060','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(13963,'MOLE Talus Livery','Paints','UNDEFINED','a3400118-ee24-4761-b552-140816b969e2','','','The MOLE Talus livery delivers a discreet gray look for the ship.'), +(13964,'Morozov-SH Legs (Modified)','Armor','Legs','9963a40c-cc78-4121-b0f5-d7fd204be497','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5K µSCU\n\nThis version of Roussimoff Rehabilitation Systems\' Morozov-SH legs has been modified from its original form. Featuring fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(13965,'DRAK_Caterpillar_Thruster_Main','MainThruster','FixedThruster','33c2c4b0-9859-4fca-8f9c-aeef8c356f05','','',NULL), +(13966,'table_hat_display_3Ports','ShopDisplay','Default','c28111c4-4f8c-409d-9d87-48f20b37f718','','',NULL), +(13967,'ForceFlex Undersuit Greys','Armor','Undersuit','06dea1be-0ae4-4133-8183-55f716b60dd7','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nVirgil\'s ForceFlex is the next generation in undersuit technology. Rated for combat as well as industrial work, you can rest assured that the comboweave will keep you protected in whatever situation you put it through.'), +(13968,'ANVL_Door_Decal_Carrack_Toilet','Decal','DoorPart','721d59ec-9d18-4312-9d36-87611ab58938','','',NULL), +(13969,'DockingTube_Fuel_Ports_AEGS_Idris','DockingCollar','UNDEFINED','56583713-c7b6-4682-8918-c9c304c8e725','','',NULL), +(13970,'Seat','SeatAccess','UNDEFINED','8999885d-881e-4465-ac2f-2f958ae9a24b','','',NULL), +(13971,'Weapon Rack','Door','UNDEFINED','0fa32f29-e03c-478f-a1d1-ed64a601fabf','','',NULL), +(13972,'Corsti Boots CFP','Char_Clothing_Feet','UNDEFINED','a9f31f63-c5d2-422e-b8d6-cc4ad5dec708','','','Made with hardy and adaptable materials, the Corsti boots are suitable for any conditions, whether you\'re taking a day-long hike on a well-worn road or exploring a strange landscape on an untamed world.\n\nThe CFP edition is a deep fjord blue with black vamp detailing.'), +(13973,'Levin Undersuit Ochre (Refurbished)','Armor','Undersuit','85339dd1-0333-4d28-b7c5-0864995c26a8','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nFeaturing flexible gaskets for greater comfort and more natural movement, along with a convenient range of chest connector port options, the Levin from Caldera has been a practical choice for explorers everywhere. This particular undersuit has been repaired for extended use.'), +(13974,'TRGT. STATUS','Seat','UNDEFINED','8a5b2b59-f34a-4f39-9acf-85b70fd1b85a','','',NULL), +(13975,'Omarof (16x Telescopic)','WeaponAttachment','IronSight','aa2f5010-7252-47d8-84aa-b3be259149fa','','','Manufacturer: Lightning Bolt Company \nType: Telescopic\nAttachment Point: Optic \nMagnification: 16x\nAim Time: +0%\nSize: 3\n\nGet a crystal clear view of distant targets with this powerful telescopic scope from Lightning Bolt Company. Designed specifically for the Atzkav Sniper Rifle, the Omarof uses ultra-precise laser etched lenses that are then multi-coated to allow for high light transmission, wide sight picture and crisp colors, providing strikingly sharp images across significant distances.'), +(13976,'Pite','Char_Head_Piercings','UNDEFINED','11a4ad30-38eb-4cfe-966d-df2862d7e20a','','',NULL), +(13977,'Radar_Display_STV','Display','UNDEFINED','5ed4b160-4965-4f55-b483-75842da83a53','','',NULL), +(13978,'DRAK_Golem_Thruster_Front_VTOL','ManneuverThruster','Retro','b8b45be7-6329-4b56-93fd-6c5171d908e3','','',NULL), +(13979,'Horizon Helmet Purple','Armor','Helmet','dc9bb6e8-ab89-4478-b67e-8ff7a4c0214c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Horizon helmet is a durable and robust environmental enclosed work helmet. The single sheet laminate dome gives you an extremely wide field of view. A pair of side-mounted LED light modules provide additional illumination to make sure you can see what you\'re doing.'), +(13980,'Attrition-3 Repeater','Weapon','Gun','c526f686-a3da-48fa-b9c3-d58fb8e31dc5','','','Manufacturer: Hurston Dynamics\nItem Type: Laser Repeater\nSize: 3\n\nRather than limiting their weapon\'s performance to increase stability, Hurston Dynamics\' cascade technology allows the operator to decide. While overheating is a risk, longer periods of sustained fire with the Attrition-3 laser repeater will increase performance as excess heat is translated into greater energy output.'), +(13981,'TRGT. STATUS','Seat','UNDEFINED','d64bd8cf-ff0f-4af8-b40c-2efb347772df','','',NULL), +(13982,'Kamar Jacket White and Turquoise','Char_Clothing_Torso_1','UNDEFINED','da7ee8bc-5cd0-4701-b628-ae4feb79af6c','','','Carrying Capacity: 1K µSCU\n\nThe Kamar is a modern update on a classic style featuring a truly unique design and silhouette. Centered around an ultra-soft velvet front panel, it features a fitted collar, wide pleated waistband, and bishop sleeves cinched by extra long cuffs. The result is a formal top that\'s bold yet timeless.'), +(13983,'Door','Door','UNDEFINED','53cf62ad-f096-4bd1-8dc8-7314cc975c8c','','',NULL), +(13984,'ColdSurge','Cooler','UNDEFINED','771caf70-effc-49c2-aaf4-c240065db14d','','','Item Type: Cooler\nManufacturer: Lighting Power Ltd.\nSize: 3\nGrade: D \nClass: Civilian \n\nMake no mistake, the ColdSurge may not win any awards, but this large cooler from Lighting Power Ltd provides a good entry-level option for most civilian ships without breaking the bank.'), +(13985,'Cargo_Comm_125x3_Waste_a','Cargo','Cargo','b7bfea5c-e56b-4c2c-9281-95df3f737bcb','','',NULL), +(13986,'VNCL_Stinger_Thruster_Retro_Fixed_Right','ManneuverThruster','FixedThruster','ea7e2224-1a42-4c8e-9117-ed8c9d439c89','','',NULL), +(13987,'Edgewear Pants Seagreen','Char_Clothing_Legs','UNDEFINED','9307703b-1b9d-4f4e-a830-9d02cab47019','','','Carrying Capacity: 4K µSCU\n\nStegman\'s Edgewear utility clothes are made from reinforced nylon weaves and lined with temperature-rated quilted technology to provide you with a little extra protection while on the jobsite. Double knees, reinforced joint pads and extra pockets add comfort and durability to this field-tested and worker-approved clothing line.'), +(13988,'Stor*All 2 SCU Self-Storage Container','InventoryContainer','Cargo','d6f1b600-353d-42d7-a592-450172889f00','','','Designed by one of the most trusted names in cargo pods, the Stor*All Self-Storage Container provides a convenient place to keep anything too cumbersome to carry on your person. Its durable impact-resistant construction is sealed to survive the vacuum of space.'), +(13989,'Util_ASD_DoorPanelScreen_A','Misc','UNDEFINED','16331b48-e872-486a-b622-474b78744de1','','',NULL), +(13990,'MSD-414 Missile Rack','MissileLauncher','MissileRack','e4bb4aae-8d61-451a-8407-ff48cf8593aa','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 4\nMissiles: 1xS4\n\nBehring’s MSD-414 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 4 hardpoint for the reliable and effective launch of one S4 missile.'), +(13991,'MRAI_Pulse_Thruster_Retro','ManneuverThruster','FixedThruster','62cb8262-005f-4a50-8391-af73726a023d','','',NULL), +(13992,'ADP Core Grey','Armor','Torso','01785efd-b9d8-49fb-a634-3aab7b7cb115','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(13993,'ARGO_RAFT_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','b51c9f4d-c619-45e9-acc2-b0ba7257ffe1','','',NULL), +(13994,'Fortune Iceberg Livery','Paints','UNDEFINED','9f2ed793-1795-4a85-aa3d-a0c359b80aae','','','Black and white paints juxtapose each other across the Iceberg livery, with a sleek blue finish around the Fortune\'s more shapely areas.'), +(13995,'Sakura Fun Green ORC-mkX Armor Bobblehead','Flair_Cockpit','Flair_Static','ee4b7f25-9353-4c5f-9df2-36a109ca9e92','','','Like the armor set it features, the Green ORC-mkX Bobblehead is exquisitely detailed and made with high quality materials. Place Sakura Sun\'s latest edition to the Sakura Fun line of bobbleheads on a ship\'s dashboard for an ideal cockpit companion ready to ride along on daring space adventures.'), +(13996,'Hydrogen','Cargo','Small','4c9ab95b-cb2a-4145-aa22-12da28605aaf','','','The most abundant element in the universe. The building block of stars. Highly flammable in its pure form.'), +(13997,'AEGS_Retaliator_Thruster_Retro_Right','ManneuverThruster','FixedThruster','e370cb8c-7afb-4f4f-acf6-33984fea61fc','','',NULL), +(13998,'Argo Ore Pod','Container','Cargo','f4aebc6d-ab66-4b7a-93ce-69bdd928ca99','','','Capacity: 12 SCU\n\nFeaturing a simple yet sturdy construction that ensures the easy flow of materials into and out of the container, the Argo Ore Pod is an industry standard designed to work with any compatible mining ship.'), +(13999,'Carryable_1H_SQ_maintenance_bolts_1_a','Misc','UNDEFINED','e42da50d-f0d8-4672-b366-c62ea1342308','','',NULL), +(14000,'Col Head Cover Red','Char_Clothing_Hat','UNDEFINED','8a03b67e-99c7-46a9-9ccc-f4082c1c2cbb','','','Temp. Rating: -30 / 15 °C\n\nThe Col is an insulated yet lightweight head cover that keeps heat from escaping. The large, chip-resistant faceplate features a cutting-edge GX coating to ensure the purest light quality for viewing the surrounding environs.'), +(14001,'Door Control','ControlPanel','DoorPart','711be264-f51d-4075-85ac-94cdb40d2a10','','',NULL), +(14002,'SHIELDS','ShieldController','UNDEFINED','33b61593-b4d7-4c13-ac74-474afcfdc7c1','','',NULL), +(14003,'Carryable_1H_CY_garnish_citrus_wedge_1_a','Misc','UNDEFINED','5f0ea555-f981-444a-9df6-02c26421775a','','',NULL), +(14004,'Ranta Dung','Cargo','Cargo','f3cae54c-f4ea-404a-93bc-03f56f9a494c','','',NULL), +(14005,'Second Tevarin War White Dress Trousers','Char_Clothing_Legs','UNDEFINED','d7f7abba-918a-40a5-a308-2f49613ea071','','','Carrying Capacity: 0.5K µSCU\n\nHonor the heroes that served in the Second Tevarin War by wearing a replica Navy uniform. Historically accurate down to every last stitch, period appropriate materials were used to make these uniforms match military specifications of the era. The white Dress Trousers were worn with the matching jacket for formal occasions and ceremonies.'), +(14006,'PAB-1 Legs White','Armor','Legs','3c33ac15-c543-4462-86ce-75a2e965bfd0','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(14007,'ControlPanel_LightSwitch_DRAK_Golem','ControlPanel','DoorPart','5a584c01-6cba-4d6c-b96f-4eea4b87cd94','','',NULL), +(14008,'Vehicle_Screen_Physical_L22','Display','UNDEFINED','cde1a1b4-a7f0-40ff-9358-2d2578e516a3','','',NULL), +(14009,'Prowler Luminary Livery','Paints','UNDEFINED','e5215a48-7a6d-4dd2-9f38-38b20708ba40','','','The Luminary livery gives the Prowler a glossy green base paint with brown highlights for a dazzlingly beautiful and complex design.'), +(14010,'TRGT. STATUS','Seat','UNDEFINED','a1265322-5f27-42a3-b01a-d7be3bfd03d2','','',NULL), +(14011,'CRUS_Starlifter_CargoGrid_Large','CargoGrid','UNDEFINED','8768879f-d52a-442e-9c2a-36cf1fc90ee2','','',NULL), +(14012,'Carryable_1H_CY_drug_stomachmedicine_1_c','Misc','UNDEFINED','5393fc38-d05b-41e8-ad16-5f7a0987338d','','',NULL), +(14013,'DRAK_Cutlass_Seat_CoPilot','Seat','UNDEFINED','7d9b1780-6a74-44c9-b14e-781b9a6b98a3','','',NULL), +(14014,'Cal-O-Meal \"Lunes\" Protein Bar','Food','Bar','9c1053d6-08f0-4fc5-aa2e-115f03885188','','','NDR: 20\nEffects: Hypertrophic\n\nCal-O-Meal bars are loaded with high quality protein and packed with a concentrated dose of vitamins, minerals, and rich Lunes fruit-flavor, making it a convenient way to maintain nutrition and lean muscle mass on the go.'), +(14015,'Railing_Straight_2m_Lowtech_Catwalk_A','Usable','UNDEFINED','76a582fd-71e3-4813-accf-7e700b0a2495','','',NULL), +(14016,'JOKR_DistortionCannon_Ventilation_S3','WeaponAttachment','Ventilation','b04f098f-4c92-48f8-8091-c2ebec18ecc3','','',NULL), +(14017,'Seat','Usable','UNDEFINED','953e633e-25bc-4e2a-a468-f35640ff707f','','',NULL), +(14018,'ANVL_Carrack_Cart_Hologlobe_RADR_Display','Display','UNDEFINED','d351d1b2-952c-4be4-bd51-b5cf2622f45d','','',NULL), +(14019,'S71 \"Bullseye\" Rifle','Weapon','Medium','113bff56-11fa-4951-8b32-8a5590f3c830','','','Manufacturer: Gemini\nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 30\nRate Of Fire: 300 rpm / 900 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nWith the S71, Gemini designed an ergonomic assault rifle ideal for mid-range engagements. Chambered with a smaller caliber round than other weapons in its class, the S71 has become popular among private military professionals for its sleek aesthetics and precise accuracy. Famed Pyro-based bounty hunter Nala \"Bullseye\" Govea\'s contribution to the Legendary Bounty Hunters line was to give her favorite weapon a red and black tint fitting for the flare star at the heart of the system she stalks.'), +(14020,'Quartz (Raw)','Cargo','Cargo','ca89daa9-c5e5-453a-a6cd-17136105d8f7','','',NULL), +(14021,'Weapon Rack','Door','UNDEFINED','f19367d6-fcf5-4f0d-8c3c-864ca436548f','','',NULL), +(14022,'hanger_clamp_torso0_01Port','ShopDisplay','Default','b3965e0c-75db-4eda-b17e-2e9fa27dea78','','',NULL), +(14023,'MISC_Freelancer_Base_SCItem_Seat_Esc_Pod_Upper_Right','Seat','UNDEFINED','771a6c7a-fc5e-4e05-b61b-9b1c536e2544','','',NULL), +(14024,'Overlord Core Tempered','Armor','Torso','6ce89d22-3c83-49b6-b822-f5a4f24883b7','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12.0 µSCU\nBackpacks: All\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.\n\nThe Tempered edition is mostly steel gray with prominent black sections.'), +(14025,'Gilick Boots','Char_Clothing_Feet','UNDEFINED','83d81a3f-f19e-4e8c-b6ff-a823e6d60074','','','Gain the Octagon advantage with the Gilick boots. Whether on a work site or exploring the wilds, these boots will provide the comfort and support you crave. They feature an all-terrain tread, a supportive inner sole, and adjustable gaiters to cover your ankles and lower legs from the elements.'), +(14026,'Aloprat Skewer','Food','Consumable','94c2ca2d-8725-4261-bf45-2e700ce98074','','','NDR: 25\nEffects: Immune Suppressing\n\nAloprat is a hearty species of rodent found across Human occupied space, and even can survive aboard space stations and ships eating a variety of food and scraps. This aloprat has been skewered and roasted rotisserie style for crisp skin and gamey, fatty meat.'), +(14027,'Door','Door','UNDEFINED','52f5b66c-86aa-4b27-914d-3168867331d8','','',NULL), +(14028,'hydroponic_machine_1_incubator_rotary_025x01x0225_a','Misc','UNDEFINED','ab13b576-75e0-4669-996f-5727a1a45922','','',NULL), +(14029,'Internal Tank','QuantumFuelTank','QuantumFuel','dee7a236-c770-4f35-a717-e2c285f9f4e8','','',NULL), +(14030,'Mercury','Cargo','Cargo','ac846075-ea22-4d3b-800f-94b888ef0048','','',NULL), +(14031,'Gold','Cargo','Cargo','d596a611-aaac-4338-a1c2-8717f27ac412','','',NULL), +(14032,'Amioshi Plague','Misc','Harvestable','96e0eec0-d989-4093-9405-2a1577d689b4','','','Not nearly as ominous as its name, the Amioshi Plague is an invasive lichen that grows in the cracks of rocks. While the core of the lichen burrows out of sight to try and absorb as much moisture as it can find, the part near the surface sprouts hooded scales that eject spores to spread to other rocks. It\'s relatively short maturation period is the origin of its name.'), +(14033,'Door Control','Door','UNDEFINED','01defb5c-7a79-4ec2-98c4-f05eed7ca04a','','',NULL), +(14034,'Face Melter T-Shirt','Char_Clothing_Torso_0','UNDEFINED','5621e3f1-e55f-48f6-bc5f-2641a4e88b24','','','This shirt from CBD features an athletic cut and an eye-catching dripping skull graphic.\n\nWomen\'s sizes currently out of stock.'), +(14035,'BEHR_LaserCannon_FiringMechanism_S4','WeaponAttachment','FiringMechanism','588c7aa5-068d-4205-8007-b183cf78da62','','',NULL), +(14036,'Bed_DRAK_Cutlass_Black_Upper','Usable','UNDEFINED','6c437596-f2a6-4e34-8fa6-eacda5b9bedb','','',NULL), +(14037,'box_plastic_4_weapon_opened_015x01x0025_a_behr_rifle_ballistic_01','Misc','UNDEFINED','5d008ef5-4e02-404c-b9ff-84c17221ccf9','','',NULL), +(14038,'Seat','SeatAccess','UNDEFINED','9003cc75-e8a8-454b-a5ca-93e38fd1c01f','','',NULL), +(14039,'Door Control','ControlPanel','DoorPart','e87cde1b-a0c5-4330-b770-79f5cec63a0c','','',NULL), +(14040,'Seat_Jump_Vanguard_Hoplite','Usable','UNDEFINED','f307b09c-4680-4029-84a4-302afd74874a','','',NULL), +(14041,'SNSR5','Radar','MidRangeRadar','7a1e134a-6322-4035-ae65-10af4b0bb545','','','Item Type: Radar\nManufacturer: Nav-E7 Gadgets\nSize: 1\nGrade: D\nClass: Competition\n\nThe SNSR5 radar small size and dependable performance makes it the perfect device for entry-level users.'), +(14042,'10-Series Greatsword Cannon','Weapon','Gun','02a7f68a-5bdd-4887-a256-20c985a65bda','','','Manufacturer: KnightBridge Arms\nItem Type: Ballistic Cannon\nSize: 2\n\nKnightBridge Arms knows that when it comes to battle, having the right weapon can make all the difference. With its powerful ballistic rounds, the versatile, size two 10-Series Greatsword will see you through to the conflict\'s end thanks to it long range and high damage potential.'), +(14043,'Alban Shirt Greenwood','Char_Clothing_Torso_0','UNDEFINED','3b1e0c85-d343-4d5e-ae5d-b0e18d77b353','','','The Alban is a long sleeve shirt made from comfortable, natural fabrics. Featuring a deep V-neck, its asymmetrical patchwork design provides it with a bit of texture and a two-toned look.'), +(14044,'Retaliator Cargo Rear Module','Module','UNDEFINED','429ea43c-5157-4617-bc13-23ca093cc678','','','Retaliator owners can equip their ship with this rear module to allow for storage of an additional 36 SCU of cargo.'), +(14045,'TRGT. STATUS','Seat','UNDEFINED','ae932717-da73-49b9-91d3-7714247f4acd','','',NULL), +(14046,'Faction Jacket Green','Char_Clothing_Torso_1','UNDEFINED','aa3b2e59-f126-4ffe-a6a2-c08ed10eb8fa','','','Carrying Capacity: 1K µSCU\n\nWhether you\'re coasting through outdoor adventures or cruising to exclusive afterparties, the Faction coat is sure to turn heads. Fusing sections of ultra-insulated brick quilting with 987\'s DuraBull ripstop reinforced fabric, you\'ll stay warm while still looking cool.'), +(14047,'un_jar_glass_1_berries_c','Misc','UNDEFINED','4cf94c8a-0359-4729-900c-28782f1b7081','','',NULL), +(14048,'ROC Hazard Livery','Paints','UNDEFINED','e81508c5-6c3e-4914-9192-7835c3025a7e','','','Live bold with this high visibility ROC and ROC-DS Hazard livery.'), +(14049,'Door','Door','UNDEFINED','2af039dc-e8fc-4fa0-b1d2-398d99724414','','',NULL), +(14050,'ANVL_Terrapin_Thruster_Mav_Fixed_Medic','ManneuverThruster','JointThruster','309ef880-a084-45ef-9676-ca67d771ab50','','',NULL), +(14051,'facial_hair_048','Char_Head_Beard','UNDEFINED','725c1799-99fd-4560-b60e-747d058bf6f6','','',NULL), +(14052,'Starfarer Gemini Ship Armor','Armor','Medium','1eacb2c9-30fb-410d-b9d3-9e9d42221c0f','','','Starfarer Gemini Ship Armor'), +(14053,'Combat Supplies','Cargo','Cargo','43f61a7c-0b9a-4c9e-89be-dfc55e5e1c57','','','A variety of items assembled to support combat forces, such as ammunition, structural repair tools and clothing.'), +(14054,'Internal Tank','QuantumFuelTank','QuantumFuel','fda8d88d-5738-479b-b427-f709d8782c60','','',NULL), +(14055,'Door Control','ControlPanel','DoorPart','612510b8-ad0e-4264-9115-7829b91cf947','','',NULL), +(14056,'AEGS_Javelin_CargoGrid','CargoGrid','UNDEFINED','faf3e5e4-d6f0-4684-86bf-b3da149ee571','','',NULL), +(14057,'One Light Cap Teal','Char_Clothing_Hat','UNDEFINED','f009df9e-97c8-45cc-b0af-76ea257698f3','','','Are you looking for the perfect Luminalia gift? City Lights has you covered with this soft and snug woven cap that not only keeps your head warm but shows off your holiday spirit.'), +(14058,'Seat','Usable','UNDEFINED','154e7e97-c3ad-4489-9e7e-21b252b30137','','',NULL), +(14059,'un_glass_tall_1_a','Misc','UNDEFINED','d4863eba-2f8e-4096-9782-c8698262e101','','',NULL), +(14060,'AEGS_Reclaimer_Drone_Left_Dashboard','SeatDashboard','UNDEFINED','aba6bf0d-d60b-4b41-9b2c-7a4d1ecc299b','','',NULL), +(14061,'Seat','SeatAccess','UNDEFINED','1a0988fc-6c33-4e95-b6e3-735111ed98ac','','',NULL), +(14062,'ESPR_BallisticCannon_Barrel_S1','WeaponAttachment','Barrel','a7530548-4408-4a82-8a72-2ea85ffabf30','','',NULL), +(14063,'Vanguard Fortuna Livery','Paints','UNDEFINED','f8b6355d-cae4-4b8c-bfdb-1176cbcde43c','','','Make luck your co-pilot. Boldly set your sights on the stars and adventure forth in style with the Fortuna livery. This Stella Fortuna themed paint scheme is primarily green with grey accents.'), +(14064,'ESPR_LaserCannon_FiringMechanism_S3','WeaponAttachment','FiringMechanism','c02dc0cb-4952-412e-b478-b569bdc6f9fd','','',NULL), +(14065,'vlk_spewgun_ballistic_irradiated_Juvi','Weapon','Medium','465acd8d-ed11-49dc-8b3f-6723ff1c312f','','',NULL), +(14066,'Redeemer Nightbreak Livery','Paints','UNDEFINED','8e7968ec-5da5-4282-86cd-e16c8f26a73f','','','Discreetly soar through the night sky in the Redeemer with the Nightbreak livery, which is primarily black with red highlights.'), +(14067,'P6-LR \"Blacklist\" Sniper Rifle','Weapon','Medium','0c53417e-eb43-40da-b6c2-edc045bd2e23','','','Manufacturer: Behring\nItem Type: Sniper Rifle\nClass: Ballistic\n\nMagazine Size: 8\nRate Of Fire: 20 rpm\nEffective Range: 120 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nThe Behring P6-LR ballistic sniper rifle more than makes up for its slow rate of fire with a high powered round that\'s effective from long range. Featuring a scope with variable zoom modes and a barrel composed of a proprietary high-strength alloy, the P6-LR was designed to deliver when needed most. The Blacklist edition features a dark black finish.'), +(14068,'Spirit Hazard Livery','Paints','UNDEFINED','37da7a2c-f663-4842-992b-c6c6fe9f5cd6','','','Make the Spirit stand out with the Hazard livery featuring a bright yellow base paint and diagonal black stripes.'), +(14069,'RSI_Constellation_SCItem_Seat_CoPilot_Left','Seat','UNDEFINED','52d3e4e9-e970-4a21-b214-510e6b5b43ba','','',NULL), +(14070,'Seat','SeatAccess','UNDEFINED','224e1d22-9dbf-4cbd-abb0-fa6633dbe87d','','',NULL), +(14071,'Argus Helmet White/Silver/Grey','Armor','Helmet','1e05b29f-f430-4417-80c5-e053b595867a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s Argus helmet utilizes advanced multi-layered composite construction to provide incredible protection from weapon fire as well as environmental hazards. The tinted visor offers a wide field-of-view to improve situational awareness and unrestricted movement.'), +(14072,'Col_AirlockDoorPanelScreen','Misc','UNDEFINED','775908ff-b4cf-4aa5-8fe3-09abbc3ddda6','','',NULL), +(14073,'Vanguard Frostbite Camo Livery','Paints','UNDEFINED','422759f7-0db9-41bf-83ae-eb818565e26a','','','Soar like the winter winds with the Frostbite Camo livery for your Vanguard.'), +(14074,'CRUS_Spirit_Thruster_Mav','ManneuverThruster','UNDEFINED','567ee16c-c332-44c8-a804-8b36e5c2b61f','','',NULL), +(14075,'Castra','Shield','UNDEFINED','e11f94ed-6a41-4960-b895-4a604ec98e97','','','Item Type: Shield Generator\nManufacturer: Basilisk \nSize: 0\nGrade: C\nClass: Industrial\n\nWhen performance meets price for vehicle shield generators, the Castra is the clear winner. It has been a Whitley’s Guide “Best Buy” for five consecutive years.'), +(14076,'Dak Galbi Chicken Burrito','Food','Junk','b9867b9a-ad7c-4d02-b74c-88b9f0431d8b','','','NDR: 34\nEffects: Dehydrating\n\nThis satisfying burrito features a tortilla wrapper filled with sweet and spicy chicken.'), +(14077,'BEHR_LaserCannon_Ventilation_S9','WeaponAttachment','Ventilation','72369bb8-6400-4b59-ac54-bb01b96d69c7','','',NULL), +(14078,'Zenith \"Darkwave\" Laser Sniper Rifle','Weapon','Medium','7e37741d-8090-48b3-ab84-b60fd138761d','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Sniper Rifle\nClass: Energy (Laser)\n\nBattery Size: 22\nRate of Fire: 60-300 rpm\nEffective Range: 80 m\n\nAttachments: Optics (S3), Underbarrel (S2)\n\nThe Zenith Laser Sniper Rifle from VOLT offers operational flexibility on the battlefield as it can fire lower-energy shots rapidly, or be allowed time to automatically charge to fire a much more powerful energy blast that also generates significantly more noise and heat.\n\nThis Darkwave edition draws attention to the sharp contours and edges of the rifle\'s design.'), +(14079,'Cardona Jacket Carmine','Char_Clothing_Torso_1','UNDEFINED','5a8a85c8-aa4f-423d-bb89-4348ecfcf736','','','Carrying Capacity: 1K µSCU\n\nDMC’s Cardona is a utility jacket designed for performance in cold weather environments. Featuring a high collar for better wind protection and numerous pockets to store any survival essentials.'), +(14080,'Cutlass 2950 Best In Show Livery','Paints','UNDEFINED','9d513c06-4201-4d05-b2c0-d0bf1fa42bb5','','','Customize your Cutlass with this special 2950 Best in Show livery that is white with grey and gold accents.'), +(14081,'Door_ChipReader_CZ','Door','UNDEFINED','87751dcd-6e67-4a96-ab0e-1376ec3b0572','','',NULL), +(14082,'ht_bench_table_microtech_1_single_a','Usable','UNDEFINED','5a6e803e-0b29-4cde-930c-7c682744f695','','',NULL), +(14083,'un_box_plastic_5_berries_a','Misc','UNDEFINED','868d5315-9f72-4340-9cb5-517f7db42f3e','','',NULL), +(14084,'SHIELDS','ShieldController','UNDEFINED','bb90a1c0-aacf-4faf-863d-bc9170a1c42b','','',NULL), +(14085,'Door_NoRoomConnector_IP','Door','UNDEFINED','4a71b89d-4c5c-44d4-8372-0b66835abe82','','',NULL), +(14086,'AEGS_Gladius_Thruster_Mav_Joint_02','ManneuverThruster','JointThruster','ae7c31e7-756d-4884-99b3-edd23e925c46','','',NULL), +(14087,'VariPuck S1 Gimbal Mount','Turret','GunTurret','80ae6d83-7d8a-4357-b109-a0154418bae5','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 1\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. This special VariPuck will accept any weapon the same size as the hardpoint it is mounting to.'), +(14088,'Cadmium Allinide','Cargo','Cargo','5a2cb10e-9c0a-4b87-959c-556dea437480','','',NULL), +(14089,'Openable','Cargo','UNDEFINED','69e3715f-17ff-4c85-8ad5-98cdd3df23b7','','',NULL), +(14090,'vlk_spewgun_ballistic_irradiated_Apex','Weapon','Medium','07192449-3d76-47e2-b6c7-32126018ee48','','',NULL), +(14091,'Sunset Berries','Cargo','Cargo','49572fb8-c079-4c61-a119-eff392f7e015','','',NULL), +(14092,'TroMag Burst Generator','EMP','UNDEFINED','154a4629-e503-4bb6-bdaa-c1f8f13fc39c','','','Manufacturer: MaxOx\nItem Type: Burst Generator\nSize: 1\nDamage Type: EMP\n\nThe TroMag from MaxOx is a well-designed and reliable EMP-focused burst generator. Its popularity has risen over the years as pilots look for alternatives to Behring’s REP-8. The TroMag boasts a faster charge time than their main competitor but has a smaller effective radius, leaving pilots to decide whether they prefer speed or size.'), +(14093,'INTK_RSI_Polaris','FuelIntake','Fuel','b13b850c-f4f0-45bd-801d-a4d064a74cce','','',NULL), +(14094,'VariPuck S4 Gimbal Mount','Turret','GunTurret','548377fc-ca9a-47ab-ac1c-f30371001463','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 4\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(14095,'Weapon_Rack_1_KLWE_SMG_Common_001','Usable','UNDEFINED','58e9ea51-faa4-45c6-ab9f-876cf55aca5f','','',NULL), +(14096,'Shoyu Lapsha','Food','Box','cd3138d2-674b-4663-bb06-73b3b710de55','','','NDR: 40\nEffects: Dehydrating, Hyper-Metabolic\n\nA soy sauce based home-style chicken noodles. Perfect for warming up those cold berths.'), +(14097,'Internal Tank','FuelTank','Fuel','e2702a2f-433b-46a0-a149-8ba950d5e928','','',NULL), +(14098,'DRAK_Golem_Thruster_Main_VTOL_Right','MainThruster','FixedThruster','7c2c7b2e-218f-4dde-bad5-d265ef11ef36','','',NULL), +(14099,'Door Control','ControlPanel','DoorPart','1c4db9f8-7349-45ee-8582-30be2e6d2927','','',NULL), +(14100,'XTR-L Module','MiningModifier','Gun','79a47fc7-4950-41a8-b58d-aa3a6b7f686e','','','Manufacturer: Greycat Industrial\nItem Type: Mining Module (Passive)\n\nOptimal Charge Window Size: +22%\nInert Material Level: -5.7%\n\nExtraction Laser Power: 90%\n\nThe XTR-L Module creates a wider mining window for deposits. It also makes the extraction laser less powerful so it can filter out more inert materials.'), +(14101,'Flight Blade','FlightController','UNDEFINED','4738245a-d3c7-4143-bcf7-00c06a0a8fb0','','',NULL), +(14102,'Weapon_Rack_Cz_008','Usable','UNDEFINED','bbd0a550-77d2-426b-a4c7-bd9ff768483c','','',NULL), +(14103,'F1M-Fireshot','Suit','ThrusterPack','fd094fd8-eec0-4ca1-b40f-97497bc9baa7','','','Designed to attach to most medium combat armor sets, the Fireshot is an EVA upgrade system that provides a little more thrust and control than usual. The understated components are designed to maintain your profile, so you don\'t sacrifice mobility or combat effectiveness.'), +(14104,'Artimex Arms (Modified)','Armor','Arms','7f5ecbb4-330d-4f1f-acf1-4ab436153916','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThis version of Quirinus Tech\'s Artimex arms has been modified from its original form. Blending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.'), +(14105,'Stor*All 1/8 SCU Storage Box','Container','Box','c49c3aab-3499-4029-94d8-d305e542939a','','','Designed by one of the most trusted names in cargo pods, the Stor*All Storage Box provides a convenient place to keep any small items. Its durable impact-resistant construction is sealed to survive the vacuum of space.'), +(14106,'Novikov Exploration Suit (Modified)','Armor','Undersuit','1510e7e4-2384-4e6b-9f1f-55281361e769','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -225 / 75 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nThis version of Caldera\'s Novikov exploration suit has been modified from its original form. Confidently explore cold environments while wearing the Novikov. Caldera built the armor with an advanced sensor suite that intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. Also featuring a cutting edge life support system and spacious backpack, those venturing across unknown terrain can count on the Novikov to help them survive the journey.'), +(14107,'Idris_Pilot_Rm_Locker_R','Player','UNDEFINED','fa055d72-31ba-4438-827b-98580d92dd4b','','',NULL), +(14108,'Internal Tank','QuantumFuelTank','QuantumFuel','6b609a73-bbc0-488b-b7ec-d30e2c27bd48','','',NULL), +(14109,'Cloak','Shield','UNDEFINED','48e2b865-a936-4346-a621-582568ebd008','','','Item Type: Shield Generator\nManufacturer: Ascension Astro\nSize: 1\nGrade: D\nClass: Stealth\n\nDiscreet security is within your reach thanks to this small shield generator from Ascension Astro. With a lower signature then many other generators in its class, the Cloak provides protection without drawing unnecessary attention.'), +(14110,'Constellation Black Heron Livery','Paints','UNDEFINED','8952488a-a4bc-408f-9bed-d0d5eec8afe0','','','Embrace the darkness of space in style with the Constellation Black Heron livery that blends grey with green and orange highlights.'), +(14111,'Cordimon Jacket Olive','Char_Clothing_Torso_1','UNDEFINED','3ff0a0dd-b739-45e6-a9f6-28b1fa4ab1d8','','','Carrying Capacity: 3K µSCU\n\nStegman\'s classic worker\'s jacket has been a staple of job sites for over seventy years. This duotone pattern is cut from the toughest material meaning you can wear it anywhere, anytime. It may not be armor, but it damn sure feels like it.'), +(14112,'XNAA_SanTokYai_Thruster_Mav_02_Left','ManneuverThruster','FlexThruster','7857c357-17a6-4dac-ab5c-0122ff757701','','',NULL), +(14113,'UI_EnvironmentScreen_Phoenix_ElevatorPanel_Top','StatusScreen','AirlockPart','7eb567aa-8dd4-470f-85a5-4c36a8172ff2','','',NULL), +(14114,'DockingTube_Fuel_Ports_ANVL_Hawk','DockingCollar','UNDEFINED','01124d48-8cb8-4ba8-84ff-e05563db6ccf','','',NULL), +(14115,'ADP-mk4 Core Woodland','Armor','Torso','8eabeef4-5d8d-4db4-a4df-9fa151062b42','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nWhen there\'s a difficult job at hand, you want to ensure that you can see it through to the end. Clark Defense Systems\' ADP-mk4 heavy armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers.'), +(14116,'Hydrogen Fuel','Cargo','Cargo','0e0e2f20-ad71-47f6-a788-4f2e308c8caa','','',NULL), +(14117,'AirlockInteriorStatusSign','StatusScreen','AirlockPart','fca95b21-99d5-4d50-be96-c10d9ddf7647','','',NULL), +(14118,'Artimex Arms Canuto','Armor','Arms','df4210b0-584d-4fc1-ac59-64ca32d09dc3','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.'), +(14119,'Gladius Timberline Livery','Paints','UNDEFINED','d07c7122-a671-45f5-a02c-d30de9d80eba','','','Customize your Gladius with the Timberline livery that\'s olive green with orange accents.'), +(14120,'Antium Legs Sand','Armor','Legs','da5e04ed-dfc4-4877-98ef-8c5c1776de79','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(14121,'Burst','QuantumDrive','UNDEFINED','4a8d0265-7476-401a-a50f-5780cd212656','','','Item Type: Quantum Drive\nManufacturer: ArcCorp\nSize: 1\nGrade: B\nClass: Civilian\n\nWith the Burst quantum drive, ArcCorp has taken their popular Rush model and through streamlined re-engineering, managed to improve upon it.'), +(14122,'ORIG_M50_Thruster_Retro','ManneuverThruster','JointThruster','22b42ccb-2ee1-4704-832e-690b92da4502','','',NULL), +(14123,'Courser Jeans Rust','Char_Clothing_Legs','UNDEFINED','a610c3b8-3cf4-40cd-8237-8b9e34645ad8','','','Made with soft yet sturdy cotton, these jeans are ripped and then \"repaired\" with colorful thread alongside misshapen patches that give them a touch of history.'), +(14124,'SuperDrive','PowerPlant','Power','202db33c-6b87-4210-9392-6d5368bc3436','','','Item Type: Power Plant\nManufacturer: Amon & Reese Co.\nSize: 3\nGrade: C\nClass: Military\n\nA&R’s award winning customer service sets the SuperDrive apart from other military power plants in its class. Consumers love that they can depend on both the component and company when the going gets tough.'), +(14125,'Salvo Esteban Frag Pistol','Weapon','Small','31c196fd-420b-4417-8aed-46fa9a118d60','','','Manufacturer: Hedeby Gunworks\nItem Type: Frag Pistol\nClass: Ballistic\n\nMagazine Size: 8\nRate Of Fire: 140 rpm\nEffective Range: 80 m / 10 m (Charged)\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nWhile the Salvo can be used as a normal pistol, Hedeby didn\'t stop there. With a longer trigger pull, a freezing primer is injected into the chamber and when released, the heavy firing pin hits with enough force to pulverize the supercooled casing. Accidentally developed as an attempt to mitigate overheating, this charged fire option discharges a deadly spray of high-velocity fragments followed by an ear-shattering boom. This special edition pistol features beautifully detailed scrollwork personally design by Hedeby master gunsmith Rey Esteban.'), +(14126,'BANU_TachyonCannon_Barrel_S2','WeaponAttachment','Barrel','d10235c3-9889-4a1e-863d-bff6dad93354','','',NULL), +(14127,'Seat','SeatAccess','UNDEFINED','3473fffb-1be3-43e1-96ad-2108656e5a3e','','',NULL), +(14128,'Diluthermex','Cargo','Small','68d2a9a1-05e3-46cb-94da-3206874083ee','','','An extremely heat resistant epoxy often used in the mounting and repair of ship thrusters. It is considered very difficult to transport in its uncured state as it becomes explosively unstable when exposed to Chan-Eisen fields during quantum travel. Specialized containers must be used to safely transport the epoxy long distances. Once set and cured, the Diluthermex is no longer reactive.'), +(14129,'AEGS_Door_Decal_Cargo','Decal','DoorPart','756b6655-f4aa-4f20-b423-7be0cd099469','','',NULL), +(14130,'Boomtube Rocket','WeaponAttachment','Magazine','2f4ed822-21bb-4b47-8d9b-ef75114222f6','','','Item Type: Rocket\nCapacity: 1\n\nMade for the Boomtube launcher, this \"rocket\" is pretty much three grenades strapped together. Good luck!'), +(14131,'MXOX_NeutronRepeater_Barrel_S2','WeaponAttachment','Barrel','cc96be3a-eafc-4548-b158-6be512189b22','','',NULL), +(14132,'Projector_HUD_RefactorPrototype','Display','UNDEFINED','7a08039c-9883-4a7a-981d-36117dcb8ea4','','',NULL), +(14133,'Ixonia Armor Desert Camo','Char_Clothing_Torso_1','Heavy','1e5f3996-290e-435b-bb63-ee8e327d74b1','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nTehachapi knows that you can never have too much storage. This lightweight protective gear comes with a sturdy tool belt, reinforced pouches, and hidden pockets so you can be sure your cargo will stay in place even when you\'re at your most active. An optional hood and adorned cape provide protection from the wind when worn with the matching helmet.'), +(14134,'Flatcat Fail T-Shirt','Char_Clothing_Torso_0','UNDEFINED','45edd712-ed38-4998-9379-47a6983198b7','','','A Banu souli used special vid-capable fabric when designing this shirt so it loops the Flatcat Fail vid Humans find so funny at a super high resolution!'), +(14135,'Openable','Cargo','UNDEFINED','6fe59869-b4fc-453e-9723-bfb0481180b5','','',NULL), +(14136,'Construction Pieces','Cargo','Cargo','4659383b-c4e6-4074-9faf-441d15396a67','','','Can be processed at refineries into Construction Material.'), +(14137,'Anvil Ballista S05 Missile Rack','MissileLauncher','MissileRack','543dc2cf-e61b-4829-989a-e3c8ff0087eb','','','Item Type: Missile Rack\nManufacturer: Anvil Aerospace\nSize: 5\nMissiles: 4xS5 \n\nMissile rack for the Anvil Ballista that carries four, S5 missiles.'), +(14138,'Gadget_Cabinet_kegr_fire_extinguisher_01_med_low','Usable','UNDEFINED','354cc2e2-b234-43c1-ac05-b2951bf7ea99','','',NULL), +(14139,'Venture Core Green','Armor','Torso','82fd792c-5636-446b-b26e-cf6743c244f4','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(14140,'Defender Harmony Livery','Paints','UNDEFINED','a780540a-0371-4e5f-9924-54cfa13c349e','','','The Harmony livery is meant to showcase Humanity\'s peaceful relationship with aliens with a semi-pearlescent blue main coat marked with organic reflective red to suggest the coming together of disparate species and cultures. The Harmony livery has been designed and produced by the UEE\'s Diplomatic Corps and freely licensed to all spacecraft manufacturers. Now Banu Defender owners can celebrate the UEE\'s intentions of working toward a peaceful galaxy.'), +(14141,'ClipVest Work Harness Olive','Char_Clothing_Torso_1','UNDEFINED','6dc65fd5-1034-48ad-8bee-4c55ac4c9566','','','Carrying Capacity: 2K µSCU\n\nStegman\'s ClipVest is a multi-purpose work harness that keeps your tools handy when and where you need them. Built from industrial strength materials, this harness offers a back piece to help alleviate strain and provide counterbalance.'), +(14142,'Morozov-SH Arms (Modified)','Armor','Arms','406bf227-e61e-488e-a41e-f81e6b3279b5','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThis version of Roussimoff Rehabilitation Systems\' Morozov-SH arms has been modified from its original form. Featuring fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(14143,'Arden-SL Arms Balefire','Armor','Arms','7d2041ad-3015-4235-a376-e49f431b8df5','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics.'), +(14144,'Geist Armor Core Snow Camo','Armor','Torso','a15e9077-c94b-4123-9179-1eeb20c1b10a','','','Item Type: Light Armor\nDamage Reduction: 20%\nCarrying Capacity: 8k µSCU\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpacks: Light\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.\n\nFeaturing a hooded shawl and a white digital camo pattern, the Snow Camo edition is perfect for stalking prey in frozen environments.'), +(14145,'Personal Storage','Cargo','UNDEFINED','87a5a3bc-9391-4092-8d43-f1732e74cbb2','','',NULL), +(14146,'Calico Arms Tactical','Armor','Arms','307aa0ea-c51b-4f86-a223-f9f45c855f6f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -39 / 69 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDesigned to be an EVA-compliant light combat suit, the Calico set is the perfect armor suit for infiltrators, snipers, thieves, basically anyone who likes to avoid kicking in doors. Built out of a combination of PAB3 armor and a custom helmet, it can help you weather some incoming fire without slowing you down.'), +(14147,'Finley the Stormwal Plushie','Misc','Personal','d2408531-0bf6-423d-a60f-62f4d69670a0','','','Finley the Stormwal loves sailing through the clouds in Crusader\'s atmosphere. Much like Crusader\'s ships, Finley is big, graceful, and quite the sight to behold. Now this majestic creature can accompany you on a journey through the stars with this soft and squeezable plushie.'), +(14148,'RSI_Aurora_Mk2_Thruster_Fan_VTOL','ManneuverThruster','UNDEFINED','1c9b1216-af45-4e00-8747-51d6bfc0e4a7','','',NULL), +(14149,'ORIG_400i_Thruster_Main_Sub_R','MainThruster','FixedThruster','dacf1388-2bf3-4571-a82f-6de4f0f6d127','','',NULL), +(14150,'Aluminum (Ore)','Cargo','Cargo','91fb8526-2ab0-4258-8fe9-981bc5fdadad','','',NULL), +(14151,'CBH-3 Helmet Yellow','Armor','Helmet','5341b8bb-ad4e-4f4a-9a33-d5dc03b77cea','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. Visor is AR crosshair compatible.'), +(14152,'Table_Desk_1_Seat_CRUS_Starlifter','Usable','UNDEFINED','3afb2ba2-5450-435b-b26b-2272acdb46bc','','',NULL), +(14153,'Pips Energy T17','Drink','Can','63b1731c-c74c-45c2-aaa4-5a90b76150d0','','','HEI: 39\nEffects: Energizing, Cognitive Boosting\n\nHeavily scientifically researched to provide optimal energy restoration and targeted thirst quenching, Pips is trusted the \'verse over. Pips T17 is specially formulated with immuno-balanced ingredients to keep you going longer.'), +(14154,'Carryable_1H_CY_tool_manual_screwdriver_1_b','Misc','UNDEFINED','de332f91-f96e-4cf8-8ebc-ad9e2ce82bf7','','',NULL), +(14155,'Carrack Miniature','Misc','UNDEFINED','96b1c67f-eca5-499d-887b-57893b8fdf03','','','Takuetsu has finally set their expert eye on the Carrack. Using schematics supplied by Anvil Aerospace, this intricately detailed miniature captures the look and spirit of the beloved exploration ship that\'s spawned countless adventures across the empire.'), +(14156,'Tau Plus \"Scorched\" (4x Telescopic)','WeaponAttachment','IronSight','be792212-0662-4351-95cb-31b4d3fe9a0d','','','Manufacturer: NV-TAC \nType: Telescopic\nAttachment Point: Optic  \nMagnification: 2x - 4x\nAim Time: +5%\nVisual Recoil: -25%\nParallax: Medium\nSize: 2\n\nThe Tau Plus 4x telescopic sight from NV-TAC uses a proprietary optics coating to ensure a crystal clear image regardless of light levels and conditions, allowing you to precisely engage targets at medium range. The Scorched edition features a unique flame patina.'), +(14157,'LH86 \"Scorched\" Pistol','Weapon','Small','bff327cb-0cec-4fa9-bba2-88f237cf506e','','','Manufacturer: Gemini \nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 25\nRate Of Fire: 1200 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe LH86 from Gemini is a compact kinetic handgun designed for personal defense and close-quarter combat. A keen eye on ergonomics and balance coupled with hardy construction makes this pistol a natural fit for any shooter in any number of hostile conditions. The LH86 also comes with Tritium low-light sight and a twenty-five round magazine. The Scorched edition features a unique flame patina.'), +(14158,'Vanquisher X-CS Torpedo','Missile','Torpedo','3e1b8bfb-07d1-49b8-8f6a-834f0be6f320','','','Manufacturer: Talon\nTracking Signal: Cross Section\nSize: 10\n\nDesigned by Talon, the Vanquisher heat seeking strike torpedo delivers a heavy payload sure to serve as a deterrent from any further hostile actions.'), +(14159,'Gallant \"Warhawk\" Rifle','Weapon','Medium','37a17020-c433-4775-acac-725ec28a4a74','','','Manufacturer: Klaus & Werner\nItem Type: Assault Rifle\nClass: Energy (Laser)\n\nBattery Size: 45\nRate Of Fire: 450 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nDependable assault weapons never go out of style. Klaus & Werner maintains that tradition by unveiling the Gallant. This energy-based assault rifle is capable of providing accurate and sustained fire at targets up to medium range, while its high-capacity power system allows operators to fire considerably more shots per battery.'), +(14160,'lt_light_electric_1_suspended_b','Light','UNDEFINED','7302239b-3c75-49e1-b3c0-8955da0753f5','','',NULL), +(14161,'Heart of the Woods','Cargo','Cargo','5b8464f0-f480-4c4a-8d26-a43b217ac15c','','',NULL), +(14162,'H_Dashboard_Projector_HUD_ARGO_Raft','Display','UNDEFINED','22b06d56-8534-4701-8285-445ccc646a54','','',NULL), +(14163,'Morozov-SH Arms Redshift','Armor','Arms','0f4724c7-013d-434d-8f2e-b5e6602a2c28','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -97 / 121 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(14164,'Yubarev \"Igniter\" Pistol','Weapon','Small','1874f421-36cc-4993-969a-b7c374b6f07a','','','Manufacturer: Lightning Bolt Co. \nItem Type: Pistol\nClass: Electron\n\nBattery Size: 10\nRate Of Fire: 350 rpm\nEffective Range: 35m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nEngineering excellence only scratches the surface of the distinct Yubarev pistol. Former merc turned weapon manufacturing mogul Irina Arkadova oversaw every aspect of the weapon, imbuing it with power, practicality, and panache. Featuring a classic woodgrain grip and cutting edge barrel design, the Yubarev fires a charged electron shot that impacts not only your target, amplifying the charge with each hit, but can spread to additional conductive targets in range. A lustrous orange coating makes the Igniter edition a colorful addition to any loadout.'), +(14165,'WowBlast Desperado Toy Pistol Teal','Weapon','Small','44d3347d-4d42-4571-8ca8-0e24afd88ca7','','','Manufacturer: Sakura Sun\nItem Type: Toy Pistol\nClass: Foam Dart\n\nMagazine Size: 10\nRate Of Fire: 450 rpm\nEffective Range: 35m\n\nMake friendly fire fun with the Sakura Sun WowBlast Desperado. Playfully fire foam darts at friends or fictitious foes with these ultra-colorful plastic toy pistols. Whether killing time at a landing zone or during a long-haul through the stars, the WowBlast toy line provides lighthearted excitement and entertainment for the entire family. The Desperado toy pistol is available in several vibrant colors, each featuring a unique sound effect!'), +(14166,'Fresh Food','Cargo','Cargo','44c8700d-bd70-4473-b8ea-568a933e1581','','',NULL), +(14167,'Morozov-SH Legs Iceflow','Armor','Legs','b6a80aac-9270-4e8c-a4c2-9ba0db0ea6db','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5K µSCU\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(14168,'Zeus Mk II Frontier Livery','Paints','UNDEFINED','cb5bca92-7d32-40db-8f11-1fe9fdae9f6f','','','The Frontier livery highlights the dynamic angular design of the Zeus Mk II. The white in the front extends into the grey back half of the ship down the center of the fuselage and edge of each wing.'), +(14169,'Carnifex Armor Core','Armor','Torso','c324a5e5-eb85-478e-87a0-346566b2ef4a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -5 / 38 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpack Compatibility: Light\n\nThis homemade armor provides a marginal amount of protection but maximum attitude. It\'s aggressively styled with skulls and other intimidating accessories associated with those living on the edge. Wearing such a distinct look may either keep people away... or draw them to you.'), +(14170,'TRGT. STATUS','Seat','UNDEFINED','55de1a87-c6b9-4e0f-9358-e00f2c379074','','',NULL), +(14171,'Corbel Helmet Crush','Armor','Helmet','a94304be-1967-428a-94d9-48f9f16bb808','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nOriginally designed as a strength enhancement suit to give factory workers better lifting power, CDS found wider application in utilizing its defensive capabilities. It\'s triple-enforced armor plating provides extreme physical protection, with deliberate placing of materials to protect the most vulnerable parts of the body. A series of pneumatic levers offer increased flexibility in the joints, alleviating pressure and weight in key areas to create an accessible and highly protective armor despite its heavy weight.\n\nThe Crush edition consists of a polished black metal with brushed bronze detailing.'), +(14172,'Creese Copperhead Jacket','Char_Clothing_Torso_1','UNDEFINED','653afd3e-df71-47a9-b5c4-027ca1f1f4c9','','','Carrying Capacity: 1K µSCU\n\nThe Vaporwear Creese is an ocan jacket featuring an old-Earth collar and tags around the shoulders. Armored shoulder accents and ventilated sleeves provide protection without restricting movement, allowing the jacket to be worn casually or piloting an open canopy vehicle. The special Copperhead edition features a snake enwrapping the front, back, and left arm of the jacket.'), +(14173,'Aril Backpack Hazard','Armor','Backpack','0e790ea4-8034-4eae-b1d9-a742e46bb27f','','','Item Type: Medium Backpack\nCarrying Capacity: 85K µSCU\nCore Compatibility: Medium & Heavy\n \nOriginally designed for miners, the Aril armor comes with an attachable backpack that can accommodate a variety of tools and supplies to keep your hands free. The Aril backpack is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(14174,'Geist Armor Arms Rogue','Armor','Arms','3ef831f9-8efc-48f7-ac79-d4c304a345a6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(14175,'Dash Apron Whammer\'s','Char_Clothing_Torso_1','UNDEFINED','47e24901-dd6e-4a8b-a7b5-01888ac6e395','','','Carrying Capacity: 1K µSCU\n\nStegman\'s Dash apron is made from a thick, stain-resistant polyfiber that not only protects the wearer but looks as good at the end of the shift as it does at the beginning. The practical design is embellished with a bold waistline and pocket detailing alongside a fun accent color panel on the lower skirt.'), +(14176,'Lynx Legs Aqua','Armor','Legs','07244e7f-81af-428e-a49e-ae1b9a940997','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(14177,'HighTechAirlockInteriorStatusSign','StatusScreen','AirlockPart','094bdeda-9809-4202-be80-7e1b143e9eb2','','',NULL), +(14178,'Venture Core Orange','Armor','Torso','3b68bc52-fd9a-4feb-a0d3-72d889bbf370','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(14179,'Lynx Core Frostline','Armor','Torso','ee14c11f-ef77-40e6-87c8-15a4f4cb35ba','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(14180,'can_drink_3_energy_c','Drink','Can','5d12fdb9-bbcc-4aaf-b513-46ec0f99c662','','',NULL), +(14181,'INTK_MISC_Reliant_Tana','FuelIntake','Fuel','9b8c4a72-c812-47e5-97b9-56fa7b8283c6','','',NULL), +(14182,'RF1 (1x Reflex)','WeaponAttachment','IronSight','46e37a2b-36d3-48d9-9a77-f51ef4689943','','','Manufacturer: Behring\nType: Reflex\nAttachment Point: Optic\nMagnification: 1x\nAim Time: +15%\nSize: 1\n\nPerfect for close-quarter combat, the RF1 non-magnifying reflex optic was the first to use Behring\'s Hyper-Lumen substrate coating to ensure the aiming reticle could be seen in wide range of light conditions, day or night.'), +(14183,'Nomad Polar Camo Livery','Paints','UNDEFINED','e43bdee6-419e-4a23-8fe6-d0373829695f','','','Modify your Nomad with this white and grey camo livery specifically designed for the 2950 IAE event on microTech.'), +(14184,'Davin Work Gloves Grey','Char_Clothing_Hands','UNDEFINED','e414eb17-bc8c-45f4-ac36-daf2ac606383','','','Field-tested for over fifty years, you can find Davin work gloves at numerous sites and ships around the Empire. Stegman\'s rugged construction and comfort lining have made them a customer favorite.'), +(14185,'INTK_XIAN_Scout','FuelIntake','Fuel','f7cefbcd-f19b-4d0c-8d04-172357b6218a','','',NULL), +(14186,'Bed','Usable','UNDEFINED','1e58c467-9374-4e42-81e2-4e992edb185d','','',NULL), +(14187,'Stellate','PowerPlant','Power','796642bf-92fa-48ee-92aa-bf9ba38487a6','','','Item Type: Power Plant\nManufacturer: Sakura Sun\nSize: 4\nGrade: Bespoke\nClass: Civilian\n\nSakura Sun worked with Origin to fine tune the Stellate into the perfect power plant for the 890 Jump, providing the power and performance necessary for a ship of such grand design.'), +(14188,'CRUS_Intrepid_Thruster_Retro','ManneuverThruster','UNDEFINED','7abdd08e-05ae-4579-a6cb-e22dc701d2c6','','',NULL), +(14189,'Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','f1ac60a8-4fd5-45ea-9911-6e939f82ade0','','','Live in comfort with MuyMuy\'s Davlos line of cotton-synthetic shirts. The durable, yet soft, fabric contains a patented SweatGuard technology that not only whisks away perspiration but helps prevent stains.'), +(14190,'Large Artifact Fragment (Flawed)','Misc','UNDEFINED','197d85d6-f6e8-4e40-a7e3-e9668220af5f','','','A large artifact fragment of unknown origin and made of an unidentified material. Broken and considered in flawed condition, the fragment features intricate etchings that subtly glow green and is overlaid with gold-colored metallic banding.'), +(14191,'Toughlife Boots Yellow','Char_Clothing_Feet','UNDEFINED','629da527-2855-4870-a5b9-932006046fa7','','','Grindstone\'s done it again. The Toughlife is an all-purpose workboot designed to provide comfort, durability and quality. Featuring a reinforced composite toe and lasercut sole to maximize traction on all surfaces, Toughlife is sure to be your dependable boot, day in and day out.'), +(14192,'AAT-34 Turret','Turret','MannedTurret','df51685e-bc94-4da9-8e71-b7ffd99a4a54','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(14193,'Jacopo Tophat','Char_Clothing_Hat','UNDEFINED','dfe02e04-d809-4961-898b-b30c87c07c74','','','As part of their Dafne collection, Derion is proud to present the Jacopo tophat. Perfect for an elegant night on the town, this gossamer-lined top hat was commissioned in honor of the Port Renatus Metropolitan Opera House Quincentennial.'), +(14194,'rack_wood_1_highend_a_rod_3Ports','ShopDisplay','Default','8fd77aca-2921-4391-af16-f2d390d93dee','','',NULL), +(14195,'Vehicle_Screen_MFD_Holographic_Scout_L','Display','UNDEFINED','a6ab9e91-6fdf-43a3-b5cd-c103167181b0','','',NULL), +(14196,'Big Benny\'s T-Shirt','Char_Clothing_Torso_0','UNDEFINED','7fda157c-fe3a-4b81-8747-35dbb072aa8e','','','This Big Benny\'s shirt embodies the joy of dining on their delicious kacho with an animated image that rotates between two versions of the brand\'s iconic logo. Wearing it is bound to remind everyone to grab and eat this tasty treat.'), +(14197,'Carryable_2H_FL_MissionItem_covalex_RTT','Misc','UNDEFINED','ac61dcad-ce92-495b-893f-e53e0c1459df','','',NULL), +(14198,'HoverQuad Copperhead Livery','Paints','UNDEFINED','a421dc6f-7906-4999-ae8f-b410013f9f45','','','Speed across picturesque landscapes in this sublime HoverQuad Copperhead livery, which is white, bronze, and black.'), +(14199,'Internal Tank','QuantumFuelTank','QuantumFuel','ee591a77-fda0-4de7-9145-adf21f896900','','',NULL), +(14200,'Tempest','Cooler','UNDEFINED','3a5723b0-17f6-4741-b421-43ed7cb7dd29','','','Item Type: Cooler\nManufacturer: Aegis Dynamics\nSize: 3\nGrade: B\nClass: Military\n\nOn the frontlines, you want to know that your ship is going to perform as expected when you need it most. The mil-spec Tempest cooler sees to it that you can operate within safe thermal ratings for longer thanks to advanced manufacturing by Aegis.'), +(14201,'Seat','SeatAccess','UNDEFINED','61ba932a-1694-4eae-a3bd-9c7fc6074085','','',NULL), +(14202,'Origin Jumpworks 100i Ship Armor','Armor','Medium','a38043b8-4a63-462e-9f37-4b37c7d3ab21','','','Origin Jumpworks 100i Ship Armor'), +(14203,'HRST_LaserRepeater_Ventilation_S1','WeaponAttachment','Ventilation','6c83f7b9-d504-435a-8931-c689c7a2f59e','','',NULL), +(14204,'Vanduul Plushie','Misc','Flair_Wall_Picture','8378b1d3-a541-4d3e-8ed2-3ee4c7291e20','','','Not all Vanduul crave battle, some crave cuddles. Intricately crafted using a high-grade polyester, this plushie is ready to conquer your heart with its durable plastic armor, felt shoulder pads, and elegant gold detailing.'), +(14205,'Organics','Cargo','Cargo','ee7c755a-ebdc-4b91-b1be-592523bba783','','',NULL), +(14206,'Palatino Helmet Metropolis','Armor','Helmet','5ce49f2a-62f5-4a76-b948-6acff599b41c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. The fully-enclosed helmet comes equipped with a suite of sensors that connects the wearer to the wider world while providing supreme protection. Visor is AR crosshair compatible.'), +(14207,'Flight Blade','FlightController','UNDEFINED','cf17d2ab-cf32-45c6-80af-0affe6c2f0bc','','',NULL), +(14208,'Toughlife Boots Twilight','Char_Clothing_Feet','UNDEFINED','cc4874e4-0f51-4f88-ba2e-ff31360bb918','','','Grindstone\'s done it again. The Toughlife is an all-purpose workboot designed to provide comfort, durability and quality. Featuring a reinforced composite toe and lasercut sole to maximize traction on all surfaces, Toughlife is sure to be your dependable boot, day in and day out.'), +(14209,'RSI_Polaris_Fake_Door_Cargo_Right','Misc','UNDEFINED','81f7a2c1-9af6-465d-b524-21b43616e841','','',NULL), +(14210,'Weapon_Rack_Cz_010','Usable','UNDEFINED','9d61dee5-03aa-4cb7-a23c-0de5e88b5317','','',NULL), +(14211,'Ardent Boots Twilight','Char_Clothing_Feet','UNDEFINED','c889ba3d-3119-469c-9c5d-072f470e8045','','','Who says NorthStar can\'t keep it pro? The Ardent boot features a molded rubber sole and all-weather construction to withstand a constant battery from the elements.\n\nWomen\'s sizes currently out of stock.'), +(14212,'Bioplastic','Cargo','Cargo','39fab6e1-8a33-4846-9b5c-d454136ef69e','','',NULL), +(14213,'CryoPod','Misc','UNDEFINED','b1b0006e-d6e3-467c-af6a-0cdd78fcd902','','',NULL), +(14214,'Esteril Lab Coat','Char_Clothing_Torso_1','UNDEFINED','5a55ae78-960a-498b-b1cc-91e179a4d8f9','','','Carrying Capacity: 2K µSCU\n\nThe Esteril Lab Coat from luxury brand Fiore dares to answer the question, \"Should laboratory clothing be fashionable?\" with a resounding, \"Yes.\" Based on the bestselling Ati Jacket, this coat features slim tailoring, a high collar, and striking asymmetrical design.'), +(14215,'MISC_Razor_EX_Thruster_Vertical_Top','ManneuverThruster','FixedThruster','24095125-dce5-4df8-9262-4011fd8fa39a','','',NULL), +(14216,'MacFlex Core Imperial','Armor','Torso','6263ea1c-4136-415e-9b65-642c27e953f9','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(14217,'Sabre Raven Ship Armor','Armor','Medium','d72da45f-12c8-4ca1-98d3-03d46fdeae36','','','Sabre Raven Ship Armor'), +(14218,'GATS_BallisticGatling_FiringMechanism_S2','WeaponAttachment','FiringMechanism','85d5d735-373d-46eb-9ade-531221c20cef','','',NULL), +(14219,'TMBL_Nova_Component_Shield','Player','UNDEFINED','14e75b56-137d-4522-910a-10e2d5595e24','','',NULL), +(14220,'M2 Hercules Starlifter Plushie','Misc','Personal','5840dde8-7a06-488e-933d-a4c30f98eafa','','','Get your hands on Crusader\'s premier tactical military transporter with this plushie version of the M2 Hercules Starlifter.'), +(14221,'DustUp Arms Tactical','Armor','Arms','1bc2aa7b-d8c1-4158-8d3f-dcef1fed5305','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -60 / 90 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe DustUp has your back if you’re looking to get into some trouble. The body plating is built off of the same CDS undersuit used by the UEE Marines, it adds reconstructed Omni-Role mkII pieces to give you solid protection against incoming fire, but the real gem is the modified helmet. That thing was built to withstand explosions, so it should totally protect you against some shots. The whole thing’s been reasonably tested against vacuum too, so you can feel free to EVA all you want without worrying about dying.'), +(14222,'Reliant Invictus Blue and Gold Livery','Paints','UNDEFINED','105ad697-b26d-4084-80f8-0349bce79ea2','','','Featuring a vibrant blue base color and gold highlights, the Invictus Blue and Gold livery will give your Reliant a striking style.'), +(14223,'Creese Toxic Fog Jacket','Char_Clothing_Torso_1','UNDEFINED','9a8be734-4e84-493c-ad4b-daf8ba3af1f4','','','Carrying Capacity: 1K µSCU\n\nThe Vaporwear Creese is an ocan jacket featuring an old-Earth collar and tags around the shoulders. Armored shoulder accents and ventilated sleeves provide protection without restricting movement, allowing the jacket to be worn casually or piloting an open canopy vehicle. The special Toxic Fog edition is black with poison gas green accents and skull on the front and back.'), +(14224,'Comb','Misc','UNDEFINED','299d6201-664c-492e-b38e-8116122d9905','','',NULL), +(14225,'Door Control','ControlPanel','DoorPart','20553187-158d-4cdb-9d25-1a1882385964','','',NULL), +(14226,'DRAK_Golem_Thruster_Main_VTOL_Small','MainThruster','FixedThruster','905252d6-4930-49b3-aa9a-268287995a9a','','',NULL), +(14227,'TRGT. STATUS','Seat','UNDEFINED','74bcd4c8-ff59-455d-ab93-e04d70e69f21','','',NULL), +(14228,'Cobalt','Cargo','Cargo','d69cbc07-f342-4117-8025-0c9030372e86','','',NULL), +(14229,'Aurora Mk I Exploration Livery','Paints','UNDEFINED','5439cdb0-89ae-4179-88a3-5d6726a32972','','','This Aurora livery is perfect for those ready to go forth boldly with a black finish, white accents, and a large citizen emblem emblazoned on one side.'), +(14230,'Pembroke Backpack RSI Sunburst Edition','Armor','Backpack','c3cb1b86-2df0-42fa-b1d1-37d0b2f4a558','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nDesigned to extend the limits of Human endurance, the Pembroke RSI Edition was built to withstand the extreme heat of inhospitable high temperature environments. Based off of Caldera\'s best-in-class exploration armor platform, an advanced sensor suite intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. Featuring a spacious backpack, the special RSI Edition of the Pembroke ensures those seeking to cross bold new horizons do so in style.'), +(14231,'AEGS_Reclaimer_Dashboard_TractorBeam_Right','SeatDashboard','UNDEFINED','c3ce741f-aa91-44d4-b874-edaa8890cfe0','','',NULL), +(14232,'Radar_Display_MISC_Freelancer','Display','UNDEFINED','ad443ecf-0ec4-4615-b47c-2b4d1d3bdb63','','',NULL), +(14233,'ORIG_300i_Thruster_Mav_Fixed_01_Top','ManneuverThruster','FixedThruster','854a2fe9-70dd-4200-8e18-b84b1f130984','','',NULL), +(14234,'MRCK_S02_ORIG_100i_Dual_S02','MissileLauncher','MissileRack','74805174-0637-4ccf-b6a8-cd44290fd03c','','',NULL), +(14235,'Aegis Vanguard Torpedo Rack','MissileLauncher','MissileRack','3a442a45-e593-4556-9aa4-3988d6fd1075','','','Item Type: Torpedo Rack\nManufacturer: Behring\nSize: 5\nTorpedoes: 3xS5\n\nAegis Dynamics and Behring worked together to develop this torpedo rack, which can carry and deploy three S5 torpedoes.'), +(14236,'Diamond','Cargo','Cargo','06c3bb83-dda1-4455-bc13-b18d7830c926','','',NULL), +(14237,'Spirit microTech Livery','Paints','UNDEFINED','5234bbca-0e81-49ba-8db6-ef5dbb6f4561','','','The microTech livery for the Spirit features the company\'s logo atop a white base paint with light blue and grey highlights.'), +(14238,'Corundum','Cargo','Cargo','d994d7a4-8e5f-4583-b480-c5b1c4b18f84','','',NULL), +(14239,'Shipment','Misc','UNDEFINED','42d4e0a1-d37b-4046-a91b-4c10f6f55d28','','',NULL), +(14240,'DockingTube_Fuel_Ports_MISC_Razor','DockingCollar','UNDEFINED','2a20db14-2cab-438a-97eb-7ea383a16329','','',NULL), +(14241,'Constellation Crusader Livery','Paints','UNDEFINED','38b0f11a-186a-4051-966e-0293c4617acd','','','The Crusader livery for the Constellation features the company\'s logo atop a light blue base paint with black and white highlights.'), +(14242,'CR-60','ExternalFuelTank','UNDEFINED','7c1f45d5-1e8f-4324-ae21-e25ce3b8ba25','','','Manufacturer: MISC\nItem Type: Fuel Pod\nFlow Rate: 1.15 SCU/s\nCapacity: 60 SCU\n\nThe standard fuel pod of the Starfarer, the CR-60 was designed by MISC to be a well balanced fuel storage option ready to tackle a wide variety of jobs.'), +(14243,'Lynx Core Seagreen','Armor','Torso','8f2ef086-d443-4714-a186-cf38f04a5da2','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(14244,'Agni','QuantumDrive','UNDEFINED','069689b2-0abf-47e6-a584-e20819764711','','','Item Type: Quantum Drive\nManufacturer: Juno Starwerk\nSize: 3\nGrade: B\nClass: Industrial\n\nHaulers have relied on Juno Starwerk\'s stellar industrial craftsmanship for centuries. The company constantly updates and improves the design of the Agni quantum drive to ensure it remains a top-of-the-line industrial component.'), +(14245,'AEGS_Retaliator_CargoGrid_Front_Right','CargoGrid','UNDEFINED','f47fd2c2-b851-4987-b5e1-f093533b6446','','',NULL), +(14246,'Aril Helmet Quicksilver','Armor','Helmet','619fe08f-92f0-405c-9ac0-3b986dd07cdd','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(14247,'AEGS_Sabre_Firebird_Thruster_Main','MainThruster','FixedThruster','2b72ad40-673b-4f06-81d4-51ba48e7045e','','',NULL), +(14248,'Remote Turret','Turret','GunTurret','ca065f95-2a0e-4c44-8ff3-6a5b54238e68','','','Remote Turret'), +(14249,'Melty Dog','Food','Junk','859ee528-a8ea-4cd7-a8bb-ae69adbba264','','','NDR: 34\nEffects: Dehydrating, Hyper-Metabolic\n\nA hefty dousing in melted \'cheese\' takes this hot dog to the next level.'), +(14250,'ControlPanel_LightSwitch_DRAK_Cutter_Bed','ControlPanel','DoorPart','c45c668d-2373-4018-ae8d-1fe7edddbb84','','',NULL), +(14251,'Weapon_Rack_1_VOLT_Sniper_AmmoOnly_001','Usable','UNDEFINED','62626440-c812-4315-86be-a58a169890d4','','',NULL), +(14252,'Amaris Shirt','Char_Clothing_Torso_0','UNDEFINED','b8c8189b-b897-415d-a8b5-cd5d631803a5','','','The rugged Amaris Shirt is a breathable long-sleeve shirt reinforced by raised fabric on the shoulders to create an elegant but industrial look.'), +(14253,'CRUS_Starlifter_Thruster_Main','MainThruster','FixedThruster','3aa1fe46-9e16-4ea0-a9b9-31b1fa6c8841','','',NULL), +(14254,'AEGS_Hammerhead_Front_DockingTube','DockingCollar','UNDEFINED','5d5a856e-325d-462a-aa1f-9b10e32ba413','','',NULL), +(14255,'Venture Undersuit Black/Red','Armor','Undersuit','4e1f5081-91f2-4827-b883-be8de7b2cb36','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(14256,'PAB-1 Core Crusader Edition','Armor','Torso','d51598e2-3af3-42b9-ac3c-f56e4d92a159','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile. The Crusader Edition was made specifically for the company\'s security services.'), +(14257,'LifeCure Medsticks','Cargo','Cargo','b88f3e8c-e900-4b32-9be0-66a5d32da938','','',NULL), +(14258,'Locker_Suit_Left_AEGS','Usable','UNDEFINED','a5064899-2cf0-4524-ab94-e6f102418258','','',NULL), +(14259,'Beacon Undersuit Dark Grey','Armor','Undersuit','0d5e3de2-21dc-4779-b55c-93d8ccee30ea','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRSI\'s Beacon undersuit is a general use utility designed to provide total protection against environments and vacuum. Built out of a durable but flexible polymers, the Beacon provides a wide freedom of motion for a variety of body types.'), +(14260,'sc_nvy_training_pants_01_01_01','Char_Clothing_Legs','UNDEFINED','3636aabc-18aa-4d8b-9068-9f9e2dbd32f8','','',NULL), +(14261,'Carryable_1H_CY_tool_manual_socket_1_e','Misc','UNDEFINED','c9f3e078-b684-4f8b-96e8-a0b71013845b','','',NULL), +(14262,'Kino Shoes Purple','Char_Clothing_Feet','UNDEFINED','92fca370-8578-4bcd-b13d-c063d0bf4afd','','','These two-tone slip-on shoes are comfortable enough for casual wear, but stylish enough for the workplace.'), +(14263,'Door Control','ControlPanel','DoorPart','2a22a0ba-acd0-4cc7-8574-bece5ebe2a34','','',NULL), +(14264,'AImodule_ATC_GrimHex','AIModule','UNDEFINED','5b953a44-0ab7-44f4-b101-8ff2bb370c48','','',NULL), +(14265,'CRUS_Starfighter_Thruster_Main_Right','MainThruster','FixedThruster','2c511eda-3b08-480c-a94f-0dcde7fe7fb1','','',NULL), +(14266,'sc_nvy_deckcrew_helmet_01_01_01','Char_Clothing_Hat','UNDEFINED','866a7084-1b03-4470-acb1-7d19c4958fe2','','',NULL), +(14267,'Door','Door','UNDEFINED','c29847ec-1e4d-42d5-bedb-22548798d786','','',NULL), +(14268,'Door Control','DockingAnimator','UNDEFINED','f5c8d614-a29a-4bf0-9eb5-38ac1a456b4f','','',NULL), +(14269,'Door Control','Door','UNDEFINED','acabe209-ba51-4775-99ee-efe02d333d3f','','',NULL), +(14270,'Kino Shoes Olive','Char_Clothing_Feet','UNDEFINED','b4ec294c-94e3-47cb-a1a8-fa48a223b7a6','','','These two-tone slip-on shoes are comfortable enough for casual wear, but stylish enough for the workplace.'), +(14271,'Flight Blade','FlightController','UNDEFINED','4a4879ca-ddd2-4995-96c3-92cce1854c5d','','',NULL), +(14272,'Seat','Usable','UNDEFINED','872a837f-7573-42f7-85f9-04acd2d8aaf3','','',NULL), +(14273,'Vulture Ghoulish Green Livery','Paints','UNDEFINED','f541c6f3-3e97-4dd0-b919-6bb2c763f317','','','Embrace Day of the Vara mischievousness and mayhem any time of the year with this custom Vulture livery. It combines metallic green and black for a striking look that highlights the holiday\'s classic colors.'), +(14274,'Venture Core Tan','Armor','Torso','c1f94489-0e2e-40bf-9068-53041e6783a8','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(14275,'AEGS_Reclaimer_Drone_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','f71ed755-4f87-4be6-beec-73a45642a60c','','',NULL), +(14276,'Ponos Boots Dark Red','Char_Clothing_Feet','UNDEFINED','f50e99c9-0806-4fdc-b981-a640afe19bbe','','','Quite simply, R6 Pro\'s Ponos boots were built for backbreaking work. Constructed out of Thermosulate technology, these waterproof and insulated workboots are rated for sub-arctic environments while the composite outsole ignores hazards to maintain traction when you need it most.'), +(14277,'Ward','Shield','UNDEFINED','2a0bcc2c-769a-4689-a9bc-dde5516c6d1b','','','Item Type: Shield Generator\nManufacturer: Basilisk\nSize: 3\nGrade: D\nClass: Industrial\n\nThe Ward is Basilisk’s basic industrial-grade shield generator for large ships. It provides decent performance and durability while also keeping its signature respectable.'), +(14278,'Remote Turret','Turret','GunTurret','9cb8e69c-5250-4671-b683-748c40f869c7','','','Remote Turret'), +(14279,'Monde Legs HighSec','Armor','Legs','86bda22d-5e22-4048-98b0-2655b1008ef0','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints. \n\nThe HighSec edition features a carbon fiber finish with red accents.'), +(14280,'Venture Undersuit Voyager','Armor','Undersuit','f2576922-49e6-4561-a403-5ffe3b78c7ed','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(14281,'tool_manual_1_screwdriver_tinkerBench','Misc','UNDEFINED','01429b27-194c-4236-8286-6ff8a87557b0','','',NULL), +(14282,'Door Control','Door','UNDEFINED','364b9d97-2d1b-4df5-81ad-db4e07415595','','',NULL), +(14283,'Door Control','Door','UNDEFINED','32c05ac2-990f-4daa-b327-b2c4365f110a','','',NULL), +(14284,'CBH-3 Helmet Sienna','Armor','Helmet','fdd6e566-eb08-4669-9994-2c33ed3f3a70','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. Visor is AR crosshair compatible.'), +(14285,'Lynx Arms Firebrick','Armor','Arms','d7eed5fc-86c9-455b-a816-1db0a5e77c81','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(14286,'Seat','SeatAccess','UNDEFINED','721224cc-9ff2-4bee-bc9d-86e9c3961d18','','',NULL), +(14287,'Door Control','Door','UNDEFINED','a6b979b8-390b-498b-970a-dd01e7b014f6','','',NULL), +(14288,'Piconalia Sweater Tannenbaum','Char_Clothing_Torso_0','UNDEFINED','691ef8f1-9a82-4073-80c2-9d319fe7a9ed','','','Light up the night this Luminalia with a little help from Pico the Penguin. Designed by MuyMuy in collaboration with microTech, the Piconalia Sweater was made with a blend of wools optimized to create long-lasting softness while preventing wear and tear.'), +(14289,'Personal Storage','Cargo','UNDEFINED','4bbf621d-99ab-3736-1c68-36cb41d02caa','','',NULL), +(14290,'ARGO_ATLS_IKTI_ARGOS_Backpack','Usable','UNDEFINED','41ca0b46-321d-47e3-a93c-e00b8c19c282','','',NULL), +(14291,'Door','Door','UNDEFINED','6ece5482-0819-4d68-aece-fa7b9996e86f','','',NULL), +(14292,'Mivaldi Pants Violet','Char_Clothing_Legs','UNDEFINED','f94e1082-a45e-432c-9dbe-24b096a91874','','','Carrying Capacity: 0.5K µSCU\n\nCut to a narrow fit, OpalSky\'s Mivaldi pants feature bold asymmetrical design with smart yet casual dual material styling, making it the perfect addition to any wardrobe.\n\nWomen\'s sizes currently out of stock.'), +(14293,'Seat','Usable','UNDEFINED','de52b0dc-b4e1-484b-9292-75a4770a2eb9','','',NULL), +(14294,'expo_display_shirts_and_hats_misc','ShopDisplay','Default','b0485d30-ed62-4fb8-98ff-d5e0ed7ef118','','',NULL), +(14295,'AEGS_Javelin_Thruster_Retro','ManneuverThruster','FixedThruster','49a3affd-8a68-4cdb-990f-9a4ea1223a5c','','',NULL), +(14296,'Shiv Meridian Livery','Paints','UNDEFINED','aa161ff1-1666-4ff5-ad70-6c3818ef508e','','','The Meridian livery gives the Shiv a simple yet stylish metallic silver finish.'), +(14297,'Heart of the Woods','Misc','Harvestable','1ca5798b-0e46-426e-b50c-773422c30a81','','','NDR: 31\nEffects: Toxic\n\nThis fungus produces fleshy deep-red caps that grow in a pattern resembling a internal structure of a heart. Found in cold climates, it typically grows on trees and decaying logs. Not yet successfully cultivated commercially, this deep flavored mushroom is prized by epicureans across the \'verse and can fetch a high price in the right markets. It does contain a mild toxin that is destroyed when cooked, so consuming raw should be avoided.'), +(14298,'Seat','SeatAccess','UNDEFINED','5343b015-17df-4fd8-9812-1c5d13d77ee6','','',NULL), +(14299,'Door Control','ControlPanel','DoorPart','ac074842-d0f8-4ad8-b8aa-63809fdf9ba1','','',NULL), +(14300,'Combat Supplies','Cargo','Cargo','76dba151-f99e-4393-9340-c2ba1538ffb1','','','A variety of items assembled to support combat forces, such as ammunition, structural repair tools and clothing.'), +(14301,'Quantainium (Raw)','Cargo','Cargo','5914dfb3-4dff-42bc-84e1-ce74bd50cc5f','','',NULL), +(14302,'Interstellar Transport Guild Cargo Plushie','Misc','Flair_Wall_Picture','44ebfd0d-038b-41af-a292-ef18302186f6','','','Here\'s a haul you can hug. This plushie shaped like a cargo container features Interstellar Transport Guild branding with the guild\'s logo and blue and grey color scheme.'), +(14303,'ARGO_MPUV_1T_Thruster_Aux_Fixed_01','ManneuverThruster','FixedThruster','89228ed6-8ab0-49f6-b19c-879edc290f6a','','',NULL), +(14304,'Cambio SRT','Weapon','Gadget','b8262c6e-ea03-441e-befd-8b4283d8e847','','','Manufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nCanister Size: Large\nRate of Fire: N / A (Beam)\nEffective Range: 5 m\n\nStrip salvage and make repairs with the Cambio, a dual purpose salvage and repair tool (SRT) designed to collect and convert alloys and polymers found in scrap into recycled material composite that can either be sold or used to make quick repairs. The Cambio SRT features rapid stripping speeds and an impressive battery life, making it an essential gadget for mechanics and spacefarers.'), +(14305,'Door Control','Door','UNDEFINED','9f0b69ba-b983-44f9-a006-5d4f316b4a63','','',NULL), +(14306,'Scourge \"Quite Useful\" Railgun','Weapon','Large','26ae7732-1594-476a-a6e7-84f694deba34','','','Manufacturer: Apocalypse Arms\nItem Type: Railgun\nClass: Ballistic\n\nMagazine Size: 5\nRate Of Fire: 60 rpm\nEffective Range: 200 m\n\nAttachments: Optics (N/A), Barrel (N/A), Underbarrel (S4)\n\nEqually devastating to larger threats and hostile vehicles, this shoulder mounted railgun from Apocalypse Arms uses electromagnets to deliver its payload accurately over great distances, making it the Scourge of land, air and space. One of the many items Wikelo has acquired in his travels, the \'Quite Useful\' edition is a must have for any serious collector.'), +(14307,'ANVL_Hawk_Dashboard_Pilot','SeatDashboard','UNDEFINED','217c024f-c59c-446a-9225-c5ea3255116a','','',NULL), +(14308,'Nova Timberline Livery','Paints','UNDEFINED','2785322f-299a-432a-8bd7-93b8ca39a873','','','Customize your Nova with the Timberline livery that\'s olive green with orange accents.'), +(14309,'Manned Turret','TurretBase','MannedTurret','1b4aed53-1098-407e-b152-72236b374906','','',NULL), +(14310,'ARMR_ANVL_Centurion','Armor','Medium','a9ab7b2c-31cf-43cd-aac8-070990724592','','',NULL), +(14311,'ATC_PanelScreen_Levski_3','Misc','UNDEFINED','bdcf12b5-d745-4c78-b9cf-6e3b954f4126','','',NULL), +(14312,'Screen','Usable','UNDEFINED','4ecb3a33-9204-44ff-a691-6d2819539c26','','',NULL), +(14313,'AD4B Ballistic Gatling','Weapon','Gun','e4afc8b4-da61-4efb-af7e-f003d9900d96','','','Manufacturer: Behring\nItem Type: Ballistic Gatling\nSize: 4\n\nThe AD4B, Behring\'s take on the classic ballistic gatling, includes a crystal cycle firing mechanism in the the high speed rotary system to maximize efficiency for sustained engagements with minimal misfires. Next time an aggressor escalates a hostile situation, make them regret the decision by spinning up this overwhelming and effective weapon.'), +(14314,'AEGS_Door_Decal_Turret','Decal','DoorPart','28f25b38-d479-47da-9cba-8c448e6b9cc3','','',NULL), +(14315,'Seat','SeatAccess','UNDEFINED','e1ff9eae-299e-4653-8acd-652f0b7b1a3e','','',NULL), +(14316,'Bed','Usable','UNDEFINED','7ceeaaf0-b823-462c-b43f-50aa3b07eb78','','',NULL), +(14317,'Relay_Maintenance_Wallpanel_Bottom','Usable','UNDEFINED','e85be7c5-7e22-4adc-a700-468802bb9652','','',NULL), +(14318,'Singe Cannon (S1)','Weapon','Gun','e0c51f49-8910-4c99-92e5-ba7eca915bbb','','','Manufacturer: Banu\nItem Type: Tachyon Cannon\nSize: 1\n\nMade popular by a Banu souli, the Singe tachyon cannon consistently delivers devastating energy damage across vast distances. Though slow to fire, the lightning-fast tachyon projectile strikes targets almost instantaneously, making the Singe a favorite choice for Banu security ships. Although the Banu have long forgotten the origin of this high tech weapon, several unique design choices have led scholars to suspect that the Banu might have appropriated the tech into their culture, instead of inventing it themselves.'), +(14319,'Seat','SeatAccess','UNDEFINED','5c406398-d5d6-4010-aadc-f0db06dc81fc','','',NULL), +(14320,'VNCL_Gen2_PlasmaCannon_S4','Weapon','Gun','8ddb6868-1ae3-4cad-a736-12ad739ead2b','','','@LOC_PLACEHOLDER'), +(14321,'AEGS_Sabre_Thruster_Mav_SideRL','ManneuverThruster','JointThruster','663e9e01-42d7-488a-a90f-8ac9f722a35d','','',NULL), +(14322,'Adrift Shirt Green','Char_Clothing_Torso_0','UNDEFINED','b384d795-f260-4944-abb5-8d53052fd7b3','','','The Adrift mock neck sweater takes the idea of fashion as entertainment to the next level. This comfortable fiber blend material features a special vid-fabric depicting a dynamic space scene to ensure that people won\'t be able to keep their eyes off you.'), +(14323,'Flair_Hologram_Selfie_Heart_1_a','Usable','UNDEFINED','e0e3ece8-a037-4773-8b6d-f03b84caf987','','',NULL), +(14324,'Palatino Arms Metropolis','Armor','Arms','b12adbab-eba8-4c27-b44c-de4501b8394e','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower.'), +(14325,'VNCL_Blade_Thruster_Aux_Fixed_Side','ManneuverThruster','FixedThruster','7b8c79de-9ee9-4e33-a9ba-11f6525fd023','','',NULL), +(14326,'BEHR_LaserCannon_FiringMechanism_S9','WeaponAttachment','FiringMechanism','20f8c638-109d-4856-8854-7805d53c626b','','',NULL), +(14327,'\'WARLORD\' Cannon','Weapon','Gun','2b261d0c-d208-4ab4-9217-ded64b8cb7cf','','','\'WARLORD\' Cannon'), +(14328,'Vehicle_Screen_MFD_Holographic_STY_R','Display','UNDEFINED','5d076d73-2db7-4bec-953c-54f48e9e6dae','','',NULL), +(14329,'Anvil Noise Launcher','WeaponDefensive','CountermeasureLauncher','d6390806-48aa-459e-ba57-4db097b60d34','','','Anvil Noise Launcher'), +(14330,'Flight Blade','FlightController','UNDEFINED','7eafe909-715e-4f46-b8c0-648050e04aa6','','',NULL), +(14331,'FrostBite','Cooler','UNDEFINED','65c269cf-5094-4984-9dbf-d6675a4a785b','','','Item Type: Cooler\nManufacturer: Lightning Power Ltd.\nSize: 3\nGrade: B\nClass: Civilian\n\nKeep your ship running smoothly with the Lightning Power FrostBite handling your thermal management needs. This consumer-grade cooler can process extra-heat and help maintain optimal running temperatures for all your components.'), +(14332,'GATS_BallisticGatling_PowerArray_S3','WeaponAttachment','PowerArray','e4f958c0-f276-4afe-989d-4b9f1fcf19ef','','',NULL), +(14333,'DRAK_Cutlass_CargoGrid_Main','CargoGrid','UNDEFINED','90c5b4dd-b23c-4415-a2e6-c7275de67b05','','',NULL), +(14334,'f_human_mannequin_slaver_medium_02','ShopDisplay','UNDEFINED','2b296def-5e78-4174-8e54-8197baa1a1a1','','',NULL), +(14335,'Courser Jeans Smoke','Char_Clothing_Legs','UNDEFINED','8d67a382-7002-46a7-a2c6-fe31fd89c38b','','','Made with soft yet sturdy cotton, these jeans are ripped and then \"repaired\" with colorful thread alongside misshapen patches that give them a touch of history.'), +(14336,'Door_LoadoutScanner_StormBreaker_ResearchFacility1','Door','UNDEFINED','4a6b3773-de1c-4b11-ba02-ba3d8cfdc911','','',NULL), +(14337,'ORIG_890Jump_CargoGrid_Rear','CargoGrid','UNDEFINED','b13a027a-66e1-429c-a744-78278aeba9ae','','',NULL), +(14338,'K7 Pants Black','Char_Clothing_Legs','UNDEFINED','5e1f9272-492c-45dd-a57c-b2aaa22676a7','','','Carrying Capacity: 3K µSCU\n\nDMC\'s K7 are an all-purpose cargo pants. Four easy access pockets provide extra storage while the triple-stitched polymer weave fabric is designed to withstand all kinds of weather conditions.'), +(14339,'Internal Tank','FuelTank','Fuel','0265df93-6b95-4bce-ba46-1b2c6dab1f8c','','',NULL), +(14340,'TRGT. STATUS','Seat','UNDEFINED','977a2f1b-7656-4b43-9b29-f75a4613b27d','','',NULL), +(14341,'KRIG_P52_Merlin_Thruster_Main','MainThruster','FixedThruster','e2bde351-01bd-40d5-b0d4-7e6b2efcb168','','',NULL), +(14342,'Weapon_Rack_CNOU_Nomad','Usable','UNDEFINED','590fb0ec-d760-4aef-8b2b-1b16784a77d4','','',NULL), +(14343,'Strata Legs ArcCorp Edition','Armor','Legs','a2cd25f0-5377-4625-a06e-57774414c6b7','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 10k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The ArcCorp Edition was made specifically for the company.'), +(14344,'Torrent Compensator1','WeaponAttachment','Barrel','c1cf140f-dcdc-41ec-9199-f7c8a5227b39','','','Manufacturer: ArmaMod\nType: Compensator\nAttachment Point: Barrel\nSize: 1\n\nAim Time: +15%\nSpread: -20%\nAim Recoil: +15%\nVisual Recoil: -30%\nRecoil Time: -15%\nFire Rate: +7.5%\n\nThe Torrent Compensator1 rewards those with a steady hand and a sharp eye with faster, more controlled fire.'), +(14345,'Microid Battle Suit Legs Badland','Armor','Legs','caff87b5-1728-42bf-b9bb-5ae90297b8cd','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(14346,'Hercules Starlifter Hurston Livery','Paints','UNDEFINED','882db93b-3807-4310-82d5-ea7342c9debd','','','The Hurston livery for the Starlifter features the company\'s logo atop a grey base paint with yellow highlights.'), +(14347,'Stirling Exploration Suit Sediment Edition','Armor','Undersuit','dd0311d2-1eb4-4c7d-9cd1-be1d1377e04c','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nDesigned to withstand inhospitable environments, the Stirling Exploration Suit provides a base level of protection from environmental hazards including radiation. Combining Caldera\'s advanced insulation fabrics with sophisticated polymers, the Stirling is able to safeguard the wearer whilst minimizing disruption to movement. Additionally, a self-cleaning system automatically activates after radiation exposure to expunge dangerous excess down to nominal levels. The Sediment Edition blends reds, blacks, and grays reminiscent of clay and other planetary minerals.'), +(14348,'Kopion Horn','Cargo','Cargo','f8ba6e0c-24ea-494a-9a1c-6030cb1c4f29','','',NULL), +(14349,'Door_LoadoutScanner_StormBreaker','Door','UNDEFINED','caa37c19-f5fe-4864-8df8-ea8dfe810129','','',NULL), +(14350,'AEGS_Door_Decal_Bridge_Armoury','Decal','DoorPart','6f1213ff-36fd-4a0a-8830-1e8013c08856','','',NULL), +(14351,'CRUS_Spirit_C1_Exterior','Misc','UNDEFINED','f9ca5d18-0213-4225-b93f-a12c733646ba','','',NULL), +(14352,'Special Operation Formula Combat Ration','Food','Sachet','d1963c45-f9de-4a10-b034-128daedeb351','','','NDR: 80\nEffects: Hypertrophic, Hypo-Metabolic, Cognitive Boosting\n\nA full meal combat ration specially formulated to provide complete high-performance nutrition for UEE Army personnel engaged in special operations.'), +(14353,'Col_A_Airlock_Rooftop_Door_Single_Ext','Door','AirlockPart','bc8b182d-1b1e-41b4-bb56-279ffbfe8e57','','',NULL), +(14354,'Breakfast Dog','Food','Junk','1af97566-2ca7-4ac8-ad4f-f7ec6421f331','','','NDR: 34\nEffects: Dehydrating, Hyper-Metabolic\n\nScrambled eggs make this hot dog great to get you going any time of day.'), +(14355,'MISC_Reliant_SCItem_Seat_CoPilot','Seat','UNDEFINED','be907bef-e023-459c-b5bd-de724e8c4425','','',NULL), +(14356,'ADP Core Crusader Edition','Armor','Torso','720afa6e-075d-43a1-882c-1724d56c047e','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor. The Crusader Edition was made specifically for the company\'s security services.'), +(14357,'Seat','SeatAccess','UNDEFINED','6fac8116-5773-4cf9-a494-d420d666aeb2','','',NULL), +(14358,'ADP Legs Aqua','Armor','Legs','657d2013-11e3-4703-b7e9-0cf841d77e2d','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(14359,'Flight Blade','FlightController','UNDEFINED','305dac41-ee59-46b0-8d14-ad3684b56efe','','',NULL), +(14360,'Venture Undersuit Lovestruck','Armor','Undersuit','dcb558ae-4d30-4c49-9714-9281150f62ce','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement. This special Lovestruck edition features a stylish metallic pink and black color scheme inspired by the colors of the Coramor festival.'), +(14361,'Door','Door','UNDEFINED','b0828db2-8c92-406a-988a-b40c562047f4','','',NULL), +(14362,'Locker_Shallow_WallLeft_AEGS_NoWall','Misc','UNDEFINED','4a044d00-bd3a-4d7c-9206-a8f1f2e9d02a','','',NULL), +(14363,'TRGT. STATUS','Seat','UNDEFINED','ee972b18-d67a-4bb3-9ea2-71efe8119b45','','',NULL), +(14364,'Carryable_TBO_FL_4SCU_Commodity_ProcessedGoods_AceInterceptorHelmet','Cargo','Cargo','035ccf67-502f-4ff2-8916-95cb61a2eeac','','',NULL), +(14365,'DRAK_Corsair_Thruster_Aux_B','MainThruster','UNDEFINED','d5df0221-0378-4003-b000-c2f061301a04','','',NULL), +(14366,'Morningstar Helmet Rager','Armor','Helmet','359c3615-a454-46e5-8a7a-7029d03641c7','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(14367,'Horizon Helmet Orange','Armor','Helmet','161f76fd-32e2-4ca9-b458-bef34e242948','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Horizon helmet is a durable and robust environmental enclosed work helmet. The single sheet laminate dome gives you an extremely wide field of view. A pair of side-mounted LED light modules provide additional illumination to make sure you can see what you\'re doing.'), +(14368,'ORIG_400i_Thruster_Mav_VTOL','ManneuverThruster','FlexThruster','ee1f45e5-d24d-4b31-9b8f-eb80d4e19046','','',NULL), +(14369,'Nomad Sandstone Livery','Paints','UNDEFINED','029cc3d4-522a-4c08-8d51-b60e30d60eb5','','','Make your Nomad stick out among the stars with the Sandstone livery featuring a metallic orange finish with black and white highlights.'), +(14370,'MTC Moonstone Livery','Paints','UNDEFINED','047ae622-d622-4d72-9482-008ab7d9600d','','','Crisp, metallic blue with grey and black highlights provide the Moonstone livery a spirited look for the MTC, which can also be applied to other Greycat M-Series vehicles.'), +(14371,'AEGS_Firebird_CML_Flare','WeaponDefensive','CountermeasureLauncher','b0988093-17aa-4768-a3a8-f82f6ed758b8','','','@LOC_PLACEHOLDER'), +(14372,'Toughlife Boots Olive','Char_Clothing_Feet','UNDEFINED','1e53d473-30a7-417b-bbf6-f482be36395b','','','Grindstone\'s done it again. The Toughlife is an all-purpose workboot designed to provide comfort, durability and quality. Featuring a reinforced composite toe and lasercut sole to maximize traction on all surfaces, Toughlife is sure to be your dependable boot, day in and day out.'), +(14373,'Flight Blade','FlightController','UNDEFINED','d3b17f27-d877-4a72-9fb9-7ec7755c4de0','','',NULL), +(14374,'Avenger Warlock Ship Armor','Armor','Medium','ccd27ec0-a00e-40bb-b1aa-c9a48eba2ccb','','','Avenger Warlock Ship Armor'), +(14375,'TRGT. STATUS','Seat','UNDEFINED','5e246a30-db97-4ba0-91a8-702d4c35add0','','',NULL), +(14376,'ORC-mkV Core Scorched','Armor','Torso','d90c510b-3f4e-485c-9be9-3a704bba197d','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(14377,'DockingTube_Fuel_Ports_VNCL_Scythe','DockingCollar','UNDEFINED','aaa9e96e-d668-4a94-9b06-2db296114d5a','','',NULL), +(14378,'MacFlex Core Aqua','Armor','Torso','de952d7b-4eb9-4a7f-be78-28ee4a97a949','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(14379,'Omnisky XV Cannon','Weapon','Gun','c778d7c0-116a-4597-a32e-2bbf7f6b7c17','','','Manufacturer: Amon & Reese Co.\nItem Type: Laser Cannon\nSize: 5\n\nAmon & Reese\'s reputation for making powerful and reliable weapons is embodied by their Omnisky line of laser autocannons. The Omnisky XV is the size five version of the weapon that\'s helped defend the Empire for centuries.'), +(14380,'RSI_Lynx_RADR_Display','Display','UNDEFINED','9e71e6c6-cf30-4d86-b849-39ff8ba943a7','','',NULL), +(14381,'Ati Jacket White','Char_Clothing_Torso_1','UNDEFINED','ed98d39b-8a66-4b44-a202-f43c09722695','','','Carrying Capacity: 2K µSCU\n\nFiore\'s is a modern update of traditional Earth design. Slim tailoring, a high collar, and striking asymmetrical design make this overcoat a must-have item for any wardrobe.'), +(14382,'SHIELDS','ShieldController','UNDEFINED','ef39cb46-092c-4254-8ea8-a733578c5c32','','',NULL), +(14383,'Seat','Usable','UNDEFINED','76bb71a1-4538-4fa3-8a5f-d95be4c68773','','',NULL), +(14384,'Galen Surgical Scrub Top Honeycomb','Char_Clothing_Torso_1','UNDEFINED','98593a28-e7bc-4ddc-8d9f-0350e73809fc','','','Carrying Capacity: 0.4K µSCU\n\nYou can count on Code Blue Apparel to deliver professional and comfortable medical clothing. The Galen Surgical Scrub Top features a large pocket and a wide wrap across the mid-section for a secure fit. Made with a special anti-bacterial fabric that\'s 99% effective while also being lightweight and wrinkle free.'), +(14385,'chevron_arrow_1_a','Misc','UNDEFINED','487a6618-01cc-44c3-8403-1eb6ea19cc3c','','',NULL), +(14386,'Franz Pants','Char_Clothing_Legs','UNDEFINED','73882e93-2dbf-423a-b498-719f8e194876','','','Carrying Capacity: 4K µSCU\n\nThe Franz monochrome striped pants from CBD are elevated with the addition of bold black brush strokes applied freehand.\n\nMen\'s sizes currently not available.'), +(14387,'Retaliator Unladen Front Module','Module','UNDEFINED','1d9f2186-2465-4b62-a5cb-f1bc8e3dd390','','','This empty front module comes equipped by default on the Retaliator\'s base chassis.'), +(14388,'Internal Tank','QuantumFuelTank','QuantumFuel','af6936c7-c722-4437-ac3c-c614e0306b34','','',NULL), +(14389,'Stud','Char_Head_Piercings','UNDEFINED','3edcab7c-50e0-4da8-b7c3-23b2daa640a7','','',NULL), +(14390,'Personal Storage','Cargo','UNDEFINED','9eb4b473-a014-4203-ac52-af7127c05f07','','',NULL), +(14391,'RSI_Aurora_LX_Thruster_Mav_Joint_01','ManneuverThruster','JointThruster','56cd91cb-c4b8-418a-b508-d53dc49486a5','','',NULL), +(14392,'Messhall_Utensil_Rack','Misc','UNDEFINED','be14b0e2-d180-4a76-9db7-e4420e9e4313','','',NULL), +(14393,'AAT-34 Turret','Turret','MannedTurret','c5e8e0ff-32c2-4057-9251-3b984e73f131','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(14394,'Quartz \"Deadfall\" Energy SMG','Weapon','Medium','e1f0bdd3-c8e4-4e8a-b722-ec112f16f712','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: SMG\nClass: Energy (Electron)\n\nBattery Size: 545\nRate of Fire: Beam\nEffective Range: 15-20 m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nManufacturer VOLT\'s Quartz SMG utilizes exciting new weapon technology that fires a short range beam that fractures into multiple beams the longer it fires, making it an extremely effective close quarter weapon.\n\nThe \"Deadfall\" edition is primarily muted green with black highlights.'), +(14395,'Remote Turret','Turret','GunTurret','2b66c594-b102-4941-b93b-6c7501bf53ae','','','Remote Turret'), +(14396,'Impact II Mining Laser','Mining','Gun','5b3a2200-4b1d-4b08-9e67-88e3c62728ae','','','Manufacturer: Thermyte Concern\nItem Type: Mining Laser \nSize: 2\n\nOptimal Range: 60m\nMaximum Range: 180m\n\nMining Laser Power: 840 - 3360\nExtraction Laser Power: 3145\n\nModule Slots: 3\n\nLaser Instability: -10%\nOptimal Charge Window Size: +20%\nInert Material Level: -40%\n\nResistance: +10%\nOptimal Charge Window Rate: -40%\n\nThe Impact II excels in a variety of mining situations. Special focus lenses make it easier to work a deposit by stabilizing the laser and increasing the optimal charge window. There are drawbacks, including increased deposit resistance and a slower filling optimal charge window, but Thermyte Concern also provided three module slots to allow miners to better customize the laser to the task at hand.'), +(14397,'Flight Blade','FlightController','UNDEFINED','b064faeb-7158-4602-8db1-3d9ea0f7f2d5','','',NULL), +(14398,'ANVL_Carrack_Thruster_VTOL','ManneuverThruster','FixedThruster','c74fbf65-d72e-4e5f-bb8b-115c2296f650','','',NULL), +(14399,'ARMR_RSI_Ursa','Armor','Medium','6fb0f4a2-e747-4e5d-bef7-7e481a587254','','',NULL), +(14400,'mod_rack_food_2_Wide_2Ports','ShopDisplay','Default','72689e17-a0b1-4bc5-9951-ce1e2c8e6928','','',NULL), +(14401,'Constellation Andromeda Ship Armor','Armor','Medium','c0520f30-2b1e-4641-a80b-faf1c66684fa','','','Constellation Andromeda Ship Armor'), +(14402,'Pingala Seeds','Cargo','Cargo','cd2bc98f-b36c-4617-8a46-7145b2bcc4d6','','',NULL), +(14403,'DynaFlex','Cargo','Cargo','1ed5cb09-9137-46da-9b4e-89466ceccdc3','','',NULL), +(14404,'colonialism_airlock_rooftop_small_default_lghtgrp','Lightgroup','AirlockPart','73950bab-5ca8-4b57-af7c-090d8a18fa2b','','',NULL), +(14405,'sc_nvy_bdu_engineer_belt_03_01_01','Char_Clothing_Torso_2','UNDEFINED','dbb48f22-3053-4089-8efc-4544a182c1b2','','',NULL), +(14406,'Seat','Usable','UNDEFINED','cbede51c-f6f0-43ae-9eb0-5e590974cd82','','',NULL), +(14407,'Messhall_Drink_Machine','Misc','UNDEFINED','6052e8b0-e60d-4d0a-89e7-7553c9e33df2','','',NULL), +(14408,'Courser Jeans Pitch','Char_Clothing_Legs','UNDEFINED','edb7d4b6-5461-4eb6-8ec9-1467ce8f0a84','','','Made with soft yet sturdy cotton, these jeans are ripped and then \"repaired\" with colorful thread alongside misshapen patches that give them a touch of history.'), +(14409,'TRGT. STATUS','Seat','UNDEFINED','ed825bfe-9565-4267-8301-49d7e7d4e835','','',NULL), +(14410,'Pepper','Misc','UNDEFINED','5920b866-e54f-4ff0-aee8-d8474a03770a','','',NULL), +(14411,'Grav Lev 1','ManneuverThruster','JointThruster','f48abf2d-38c2-4fd4-bebf-14e8b51b993d','','','Grav Lev 1'), +(14412,'CRUS_Starlifter_SCItem_Bomb_Console','Seat','UNDEFINED','2dec1737-80ae-4c4c-89d2-8179ae98c8ad','','',NULL), +(14413,'Maintenance_Workzone_MiddleDown','Usable','UNDEFINED','b652c3b2-eed4-4c89-a19f-cc19b658cf7a','','',NULL), +(14414,'TRGT. STATUS','Seat','UNDEFINED','1bea9aeb-fdec-4973-89b9-f08f0eee9a32','','',NULL), +(14415,'Zip','Cargo','Cargo','88c06ce8-a3c8-4fc7-b2f4-be3a88bb21a0','','',NULL), +(14416,'MXOX_NeutronRepeater_Barrel_S1','WeaponAttachment','Barrel','7572f62b-9035-47af-a636-ef841ba1656b','','',NULL), +(14417,'Cordimon Jacket White','Char_Clothing_Torso_1','UNDEFINED','ce7e28fc-8a07-434f-8c9e-9a696c092417','','','Carrying Capacity: 3K µSCU\n\nStegman\'s classic worker\'s jacket has been a staple of job sites for over seventy years. This duotone pattern is cut from the toughest material meaning you can wear it anywhere, anytime. It may not be armor, but it damn sure feels like it.'), +(14418,'RSI_Perseus_Turret_Top_Lighting_OC','Room','UNDEFINED','3ae0efb5-7f2d-4f1b-86ee-8f149ccbabef','','',NULL), +(14419,'Shutters','AIModule','UNDEFINED','234b5415-8345-436b-bd37-03635a742afe','','',NULL), +(14420,'600i 2953 Best in Show Livery','Paints','UNDEFINED','16c0b543-198d-416b-af9f-cb084fe1408a','','','Celebrate the Origin 600i being voted a Best in Show finalist for 2953 with this pearlescent purple and cyan livery.'), +(14421,'Bed','Usable','UNDEFINED','dbd4db5f-fcf2-4380-a86b-2ba86e1322ad','','',NULL), +(14422,'Venture Core Seagreen','Armor','Torso','16620f9e-65cf-4a25-bd5f-539788c3e28e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(14423,'MOTH Juniper Livery','Paints','UNDEFINED','e161ff99-0426-424c-b36d-e8fba658839a','','','Make the MOTH green with grey and orange highlights by equipping the Juniper livery.'), +(14424,'IAE 2953 Shirt White','Char_Clothing_Torso_0','UNDEFINED','13f24921-b9c2-4d3d-9231-86e97bd95c01','','','Commemorate the UEE\'s foremost celebration of ships with the official shirt of the 2953 Intergalactic Aerospace Expo. This white shirt features the IAE logo on the front, with a smaller version on the back.'), +(14425,'AEGS_Retaliator_Thruster_Retro','ManneuverThruster','FixedThruster','684647ee-5cf9-465d-8bb8-658dd7786eff','','',NULL), +(14426,'Venture Undersuit Olive/Black','Armor','Undersuit','6acc731b-7f9d-438e-9f3b-678e8b25f5e3','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(14427,'Radar_Display_MISC_Hull_A','Display','UNDEFINED','19498451-e03e-4933-9328-3e21d153bdb5','','',NULL), +(14428,'CBH-3 Helmet Orange','Armor','Helmet','54e02a42-5165-423e-b19d-6f964555f4c4','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. Visor is AR crosshair compatible.'), +(14429,'TrueDef-Pro Core Black/White/Violet','Armor','Torso','999a3b12-ee02-49bc-9f78-d944fa9dbdc8','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(14430,'Door Control','Door','UNDEFINED','66134018-11dd-45a5-897b-6ece5ccf43ee','','',NULL), +(14431,'Seat','SeatAccess','UNDEFINED','8b0b7300-6fc6-40a3-9d56-c8a294f157f1','','',NULL), +(14432,'Seat','Usable','UNDEFINED','4c7bbd9a-be9c-4ccf-bc15-c0e6d6d5abd0','','',NULL), +(14433,'Vehicle_Screen_MFD_Holographic_MISC_Prospector_ML','Display','UNDEFINED','c075c0d9-6283-413c-abb0-7cc5d110a208','','',NULL), +(14434,'AEGS_Reclaimer_Scanning_Console','Seat','UNDEFINED','7adf6e3c-97ad-4669-97ea-5127e69c033d','','',NULL), +(14435,'INTK_MISC_Fury','FuelIntake','Fuel','51b09c51-df17-48e0-ba5e-8c36395ed4ad','','',NULL), +(14436,'Riccite (Ore)','Cargo','Cargo','ae00bd5d-7231-4cc0-ba8e-98bee650ed63','','',NULL), +(14437,'Lynx Legs Bloodstorm','Armor','Legs','b60c7b5c-bb32-4c39-854b-7c55de0d9657','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(14438,'Mivaldi Pants Twilight','Char_Clothing_Legs','UNDEFINED','28235dfd-a4bf-4cbb-bc15-4fa98cca132e','','','Carrying Capacity: 0.5K µSCU\n\nCut to a narrow fit, OpalSky\'s Mivaldi pants feature bold asymmetrical design with smart yet casual dual material styling, making it the perfect addition to any wardrobe.\n\nWomen\'s sizes currently out of stock.'), +(14439,'Hangar_FreightElevator_CargoGrid_Medium','CargoGrid','UNDEFINED','2469d28f-1775-4584-acda-3097ed11d0de','','',NULL), +(14440,'Chokehold Gloves Grime Blue','Char_Clothing_Hands','UNDEFINED','e3c8d1cf-bfbf-4cfe-97c9-ae6bef0fa592','','','When you can\'t afford to fumble. Flexible polyweave provide excellent grip plus ablative ceramic demi-gaunt reinforcement and close-fit cuffs. The Grime version is dyed a dusky blue to keep you subtle, but not unsightly.'), +(14441,'Weapon_Rack_1_KLWE_Sniper_Common_001','Usable','UNDEFINED','d9622ae4-fc9f-4995-bfa9-27f64bcd6027','','',NULL), +(14442,'Door Control','Door','UNDEFINED','5abee626-9c55-44c1-8523-a9e61209171c','','',NULL), +(14443,'Tussock Boots Basalt','Char_Clothing_Feet','UNDEFINED','fa7b246c-c0b0-43c2-8cba-5592b9ad677d','','','A proprietary blend of natural and artificial leather provides the Tussock Boot with unbeatable toughness, making it the perfect fit for both work and leisure.'), +(14444,'ClipVest Work Harness White','Char_Clothing_Torso_1','UNDEFINED','6afd91f0-8053-4bd7-9093-84dc16bdf9c4','','','Carrying Capacity: 2K µSCU\n\nStegman\'s ClipVest is a multi-purpose work harness that keeps your tools handy when and where you need them. Built from industrial strength materials, this harness offers a back piece to help alleviate strain and provide counterbalance.'), +(14445,'Argon','Cargo','Cargo','d89519e4-23f9-4e0d-9b4d-9a19688e2037','','',NULL), +(14446,'Ati Jacket Purple','Char_Clothing_Torso_1','UNDEFINED','6d7c10f4-2b48-4aa8-8a0e-eb9685b12fb2','','','Carrying Capacity: 2K µSCU\n\nFiore\'s is a modern update of traditional Earth design. Slim tailoring, a high collar, and striking asymmetrical design make this overcoat a must-have item for any wardrobe.'), +(14447,'DockingTube_Fuel_Ports_RSI_Zeus','DockingCollar','UNDEFINED','c258dbf0-7591-4330-a008-57e8370a5016','','',NULL), +(14448,'Door','Door','UNDEFINED','54ce768b-9f87-411a-86d8-28342624c29e','','',NULL), +(14449,'Coda \"Big Boss\" Pistol','Weapon','Small','32f77bdf-86e9-4eff-97cd-53f1c7c67da2','','','Manufacturer: Kastak Arms\nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 6\nRate Of Fire: 180 rpm \nEffective Range: 100 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nOften called the Kastak Arms \"hand cannon,\" the Coda can end an engagement with a single .50 caliber round, although the substantial power can make the Coda\'s recoil hard to handle. Considering its limited magazine size and substantial kick, sustained fire is discouraged in favor of more accurate single shots. A sleek black and shocking green color palette give the \"Big Boss\" edition its signature look.'), +(14450,'Cliffback T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','a5989f0f-1607-4402-84eb-5babd0a20c4e','','','Alejo Brothers\' classic loop tee with a spatter pattern.'), +(14451,'Ardent Boots Dark Red','Char_Clothing_Feet','UNDEFINED','db82ac99-1e30-4567-abb4-36a57c2a9417','','','Who says NorthStar can\'t keep it pro? The Ardent boot features a molded rubber sole and all-weather construction to withstand a constant battery from the elements.\n\nWomen\'s sizes currently out of stock.'), +(14452,'Door Control','ControlPanel','DoorPart','941dbf24-218e-4a4b-9957-6a6d7728196c','','',NULL), +(14453,'Bed','Seat','UNDEFINED','ca85a18f-f97a-4661-89f1-ae41186bdaac','','',NULL), +(14454,'Ana Legs Wao','Armor','Legs','1031be2c-2a20-497c-9076-0f7bee416822','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThis Antium Armor was modified from its original version. Carefully-selected fangs and bones were mounted to the set to give it a primal look.'), +(14455,'Vulture Pyrite Livery','Paints','UNDEFINED','82d9d4a8-d9b1-4502-88bc-17efeb1182c2','','','Vulture operators who choose the Pyrite livery never have to apologize for sporting a little style. A stealthy matte black and silver hull contrasts sharply with silver and yellow topped arms.'), +(14456,'Bottle','Bottle','Default','8e05a8bc-9fe0-4bdb-8c21-e979a5f6f9d0','','','Bottle'), +(14457,'Seat','Usable','UNDEFINED','ec3f5ab8-5921-4995-ad29-2d5c689bf603','','',NULL), +(14458,'Carryable_1H_CY_tool_manual_socket_2_c','Misc','UNDEFINED','9ac063ab-260b-48e5-9cf8-9d2399affea8','','',NULL), +(14459,'Seat','Usable','UNDEFINED','5e348a4d-7638-49cd-8d3c-26bab957b127','','',NULL), +(14460,'Seat','SeatAccess','UNDEFINED','542b1ec1-96cc-4d68-b57d-4127c1d70fca','','',NULL), +(14461,'ANVL_F7CR_Mk2_RightAntenna','Misc','UNDEFINED','36f5d982-066d-4b41-ae56-835863ba9b33','','',NULL), +(14462,'DRAK_Caterpillar_CargoGrid_Module','CargoGrid','UNDEFINED','fff7646f-9007-4cb8-9b18-a2302afd6bee','','',NULL), +(14463,'Constellation Stormbringer Livery','Paints','UNDEFINED','1caa8644-b4f1-43f0-a0f4-698008826361','','','Celebrate the 2951 IAE with this custom Constellation livery. Blending blue and black with white accents, the paint scheme gives the ship an electric new look.'), +(14464,'Invictus T-Shirt Beige','Char_Clothing_Torso_0','UNDEFINED','d8be4209-eb85-4d5d-8717-ee027051c8f4','','','Commemorate the biggest fleet flyby of the year with this comfortable t-shirt, featuring the seal of the UEE Navy on the front and the Invictus Launch Week logo on the back.'), +(14465,'SalvageDisintegrationArea','SalvageFieldEmitter','UNDEFINED','2556fa22-5cab-4a54-b289-b5c4d6259c45','','',NULL), +(14466,'RSI Constellation Top Missile Rack','MissileLauncher','MissileRack','3d6d90ab-b2d4-4bf5-b98a-c9890a8ca434','','','RSI Constellation Top Missile Rack'), +(14467,'GME 338-10 Medical Gown Primrose','Char_Clothing_Torso_1','UNDEFINED','07cdfeb5-cab1-49c1-9e86-754781bc437d','','','Carrying Capacity: 0.4K µSCU\n\nThe GME 338-10 Medical Gown is the de facto medical gown assigned to in-patients at hospitals and other care facilities across the Empire. This standard gown was designed so that patients could be dressed or undressed easily, and made with antibacterial fabric to help facilitate keeping wounds clean, lowering the risk of infection.'), +(14468,'Corbel Arms Smolder','Armor','Arms','f7bc48ae-f075-43d3-a4b9-ce6ab3dc7fac','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nOriginally designed as a strength enhancement suit to give factory workers better lifting power, CDS found wider application in utilizing its defensive capabilities. It\'s triple-enforced armor plating provides extreme physical protection, with deliberate placing of materials to protect the most vulnerable parts of the body. A series of pneumatic levers offer increased flexibility in the joints, alleviating pressure and weight in key areas to create an accessible and highly protective armor despite its heavy weight.\n\nThe Smolder edition is primarily gray and black with sharp red segments.'), +(14469,'MISC_Razor_Thruster_Vertical_Bottom','ManneuverThruster','FixedThruster','4d71a1bf-4d43-4fec-b659-d6da5ec4c558','','',NULL), +(14470,'spot_feet_noGeo_01Port','ShopDisplay','Default','b3d8792a-8d9e-4080-8973-44acd3f5d438','','',NULL), +(14471,'ARMR_CNOU_HoverQuad','Armor','Medium','8a2eb89f-0d24-4474-abef-210e80a5ec76','','',NULL), +(14472,'400i Deck the Hull Livery','Paints','UNDEFINED','077087a0-4316-4219-8345-495a306f407a','','','Express your holiday spirit with the Deck the Hull livery, which uses the traditional Luminalia colors of green and red to celebrate the popular Banu festival that\'s become beloved by Humans.'), +(14473,'Radar_Display_ORIG_600','Display','UNDEFINED','63919c81-5f06-4b89-a899-0513e27caa82','','',NULL), +(14474,'Jaclium (Ore)','Misc','Harvestable','118652a7-cc27-44ea-b362-96fcfeef8774','','','A naturally occurring rare metal form of jahlium, it is used in the production of extremely strong alloys with incredible tensile strength. Originally confused with common jahlium when first discovered, the above average results when used lead to researchers to realize its value.'), +(14475,'Prim Shoes (Modified)','Char_Clothing_Feet','UNDEFINED','938fdde8-45e6-479a-acc7-8c8c4694a2bf','','','This version of Fiore\'s Prim shoes has been modified from its original form. Professional yet casual, the Prim utilizes cutting-edge synthetic construction to provide maximum comfort and a shine that won\'t fade.'), +(14476,'MISC_Hull_C_Thruster_Mav_Fixed_Quad','ManneuverThruster','JointThruster','1473b056-dc20-4c24-887a-01022510f9f8','','',NULL), +(14477,'AEGS_Reclaimer_CargoGrid_Salvage_Rear_TEMP','CargoGrid','UNDEFINED','c30c7656-84d3-41c1-964c-539187f123ea','','',NULL), +(14478,'Seat','SeatAccess','UNDEFINED','787650fe-7924-4416-839b-854d7e8a1617','','',NULL), +(14479,'Edgeriders Shoes Cherry Crush','Char_Clothing_Feet','UNDEFINED','19679355-64de-4b20-bd16-8675df3fdcfc','','','Nothing will take you back to the golden era club scene of Prime in the 2920s like Upsiders\' new Edgerider sneakers. These slip-on sneakers feature daz patterning and modern impact cushioning to keep you up and active for days on end.'), +(14480,'Ration pack','Misc','UNDEFINED','6d72fa33-c291-41d6-b7a5-3c69a4847f94','','',NULL), +(14481,'Ration pack','Misc','UNDEFINED','56325247-c496-4d21-8b5e-f6190cdbb223','','',NULL), +(14482,'Ration pack','Misc','UNDEFINED','5c247abb-acfd-4ebc-badf-b9c0446c36ea','','',NULL), +(14483,'Treadmill_FrontEnter','Usable','UNDEFINED','f623fc3c-6da8-4826-8ac4-69ce6480ac19','','',NULL), +(14484,'BANU_Defender_Thruster_Mav_Lateral','ManneuverThruster','JointThruster','eaaff022-721c-478b-a652-9e431ce78b7e','','',NULL), +(14485,'Ration pack','Misc','UNDEFINED','7d68e0da-659c-4992-b415-95d0e8fdea99','','',NULL), +(14486,'Riccite (Ore)','Cargo','Cargo','fad4e00a-1943-4038-bd76-10b49404d3e1','','',NULL), +(14487,'Flight Blade','FlightController','UNDEFINED','e3224b38-9be9-4d01-b630-848c8f46418a','','',NULL), +(14488,'orig_bedding_duvet_4_p','Seat','UNDEFINED','ac3a7f1f-3fed-4dc9-88a1-1647c0f865cf','','',NULL), +(14489,'Seat','Usable','UNDEFINED','3a8c2195-3d7a-4fee-b54e-52c5627e40a0','','',NULL), +(14490,'Overlord Arms Flashback','Armor','Arms','324bb490-b21c-415a-88cf-7106adf55a9d','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.\n\nThe Flashback edition is predominately white with orange accents and black joints.'), +(14491,'Door Control','Door','UNDEFINED','defd2ae0-7cde-491e-a3c1-b4d9507caea2','','',NULL), +(14492,'Door_Ship_Sensor_Proximity_AEGS_Hammerhead_Turret_Offset_2','Sensor','DoorPart','4af0e032-da9a-46a6-8bf4-2c1f4d13da4f','','',NULL), +(14493,'DRAK_Herald_Sata_Release_Button','Misc','UNDEFINED','3bcc54c3-9f72-42f1-a769-ffeeceaf8954','','',NULL), +(14494,'Artimex Core','Armor','Torso','c488aefd-c738-4cae-a558-fe12cfa0bcb1','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.'), +(14495,'RSI_Zeus_CL_Thruster_Main_Bottom_Right','MainThruster','UNDEFINED','58918703-296d-4c8d-b0c2-11a90d5c678a','','',NULL), +(14496,'PAB-1 Core','Armor','Torso','d134f428-2f9e-47c4-8e69-2edbcd68cce4','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(14497,'Agricium (Ore)','Cargo','Cargo','a5e8e1e0-e818-47cb-9ddc-c0952f6a0b4a','','',NULL), +(14498,'Vagabond Jacket Red Menace','Char_Clothing_Torso_1','UNDEFINED','dbff29cc-0c0d-4c71-8938-faa550bb9fa3','','','Carrying Capacity: 2K µSCU \n\nWhen you need to move like your life depends on it. This lightweight layered jacket-and-poncho combination won\'t tie you up when things get tight. Finished with a hooded cowl, cross straps, and kit-webbing, the Vagabond is ready for whatever your day may have in store. The Red Menace version is dyed gray and features bold red striping.'), +(14499,'DRAK_Cutter_Winglets','Misc','UNDEFINED','d8e9f1ad-772e-4d7e-bd31-7bef4595d21d','','',NULL), +(14500,'Ball','Char_Head_Piercings','UNDEFINED','f1c43e71-15ae-45d7-9dd3-80efda5f7265','','',NULL), +(14501,'BEHR_BallisticGatling_FiringMechanism_S4','WeaponAttachment','FiringMechanism','4f98ccec-5f24-4ef8-b76a-dbf7eba9b687','','',NULL), +(14502,'Oza','Cargo','Cargo','315ebd59-d763-4946-9dfd-22c85eb9d484','','',NULL), +(14503,'MRAI_Pulse_Thruster_Main','MainThruster','FixedThruster','4c67ab7e-f21d-4e4b-8269-e6d5673d0be5','','',NULL), +(14504,'SalvageFieldSupporter','SalvageFieldSupporter','UNDEFINED','224884e8-0a84-44fb-8144-222d8cf50b4c','','',NULL), +(14505,'Pembroke Helmet RSI Sunburst Edition','Armor','Helmet','125e6c46-0d4e-4b1c-a521-faad7dc01f74','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nDesigned to extend the limits of Human endurance, the Pembroke RSI Edition was built to withstand the extreme heat of inhospitable high temperature environments. Based off of Caldera\'s best-in-class exploration armor platform, an advanced sensor suite intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. Also featuring a bespoke helmet that integrates with the cutting edge life support system, the special RSI Edition of the Pembroke ensures those seeking to cross bold new horizons do so in style.'), +(14506,'ANVL_Terrapin_Locker_Left','Player','UNDEFINED','44d6d469-cd2a-4001-96ce-2238eb814c09','','',NULL), +(14507,'Quantainium','Cargo','Cargo','f01bcb58-15df-4211-a49e-2634caf5f559','','',NULL), +(14508,'Seat','Usable','UNDEFINED','12dd57fa-bb7c-4592-aa9d-5ab643275d85','','',NULL), +(14509,'Fortune Windfall Livery','Paints','UNDEFINED','4a0332d5-3e09-4784-a630-d4e158e63aaa','','','Make a lasting impression while sailing the stars in your Fortune with the Windfall livery\'s stunning copper finish.'), +(14510,'Weapon_Rack_1_Volt_Shotgun_AmmoOnly_001','Usable','UNDEFINED','ee8f2d49-4f26-42be-8fe2-b0c6829d002e','','',NULL), +(14511,'C54 \"Luckbringer\" SMG','Weapon','Medium','4fff9153-6a0e-4fac-9598-5b29786ed910','','','Manufacturer: Gemini\nItem Type: SMG\nClass: Ballistic\n\nMagazine Size: 50\nRate Of Fire: 1,100 rpm\nEffective Range: 35m\n\nAttachments: Barrel (S1), Optics (S1), Underbarrel (S1)\n\nEasy to handle and a beauty to behold with its purple accented styling, the C54 is a sleek and precisely balanced SMG from Gemini. Its lightweight polymer frame and ergonomic design makes it ideal for close quarter engagements. The C54 is capable of firing 10mm rounds on full auto to provide maximum support and target saturation to ensure that any engagement ends quick. This special green and grey Luckbringer edition released for Stella Fortuna 2954 is a great way to get luck on your side.'), +(14512,'Tuvois Jacket Black','Char_Clothing_Torso_1','UNDEFINED','97ddc9d3-efcd-40ee-94bd-c676085c099c','','','Carrying Capacity: 1K µSCU\n\nCreated in collaboration with legendary designer Avon, OpalSky is proud to unveil the Tuvois, an open vest featuring stark, bold styling that\'s destined to make an impression. \n\nWomen\'s sizes currently out of stock.'), +(14513,'Venture Arms','Armor','Arms','28cea84c-30bb-4381-8d0f-d009d6cb51f8','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(14514,'test_mug_carryable','Misc','UNDEFINED','14fc8c3d-4fdd-4e13-b2ed-c4758b075eb6','','',NULL), +(14515,'MISC_Starfarer_SCItem_Seat_Sup_Left','Seat','UNDEFINED','a016e86d-3741-467d-9311-a04e6cc16046','','',NULL), +(14516,'Citadel-SE Legs Dark Green','Armor','Legs','187b3606-649f-41e3-bab6-4903d7758a85','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(14517,'Flight Blade','FlightController','UNDEFINED','354b5288-0dd5-4e6a-937d-92b004922b4a','','',NULL), +(14518,'Door Control','ControlPanel','DoorPart','d600d1cf-f68b-4d63-9541-c3ee0d366176','','',NULL), +(14519,'Flight Blade','FlightController','UNDEFINED','f182240c-31d5-4d7a-ab13-4f97f6758121','','',NULL), +(14520,'Manned Turret','TurretBase','MannedTurret','63b53762-0561-4abc-9462-eeb0340a5c30','','',NULL), +(14521,'G-2 Helmet Aqua','Armor','Helmet','930b0e7e-3989-48ee-a0e5-12d346932137','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. Visor is AR crosshair compatible.'), +(14522,'Body','Char_Clothing_Hands','Medical','4dad9426-322f-46ab-bb7c-056a4f7bd1b5','','',NULL), +(14523,'Adiva Jacket Dark Green','Char_Clothing_Torso_1','UNDEFINED','8910021e-a2f6-46c9-971f-436e14cc380b','','','Carrying Capacity: 1K µSCU\n\nDefine your ultimate you. The Adiva is an asymmetrical pullover with bold mixed-materials and solid reinforced trim.'), +(14524,'AEGS_Hammerhead_Thruster_Mav_Fixed','ManneuverThruster','FlexThruster','77c569fd-6b5b-4426-86fb-6d363f4c696d','','',NULL), +(14525,'Waylite Shoes Chestnut','Char_Clothing_Feet','UNDEFINED','fd2d927c-1a9c-4181-b661-428382189203','','','Stay on your feet all day with Northstar\'s Waylite. These slip resistant shoes utilize comfortable memory foam and shock absorbent technology to make these casual sneakers perfect for the office or home.\n\nWomen\'s sizes currently out of stock.'), +(14526,'Libio Jacket Black','Char_Clothing_Torso_1','UNDEFINED','e7230532-d589-4c97-82d6-2b551262cf2d','','','Carrying Capacity: 1K µSCU\n\nOne of OpalSky\'s classic pullovers, the Libio features a two-tone asymmetrical pattern and polyweave blend to keep it elegant and striking every time you wear it.\n\nWomen\'s sizes currently out of stock.'), +(14527,'Irradiated Valakkar Egg','Misc','Harvestable','cb21d6fd-4599-4a65-bdba-da31d1470be6','','',NULL), +(14528,'Iron','Cargo','Cargo','332096b9-1cbf-436d-b8b0-5ed422c23da9','','',NULL), +(14529,'Strata Backpack Crusader Edition','Armor','Backpack','9c20742f-d7f6-4327-9179-f2f72a5cbf64','','','Item Type: Medium Backpack\nCarrying Capacity: 127.5K µSCU\nCore Compatibility: Medium & Heavy\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Crusader Edition was made specifically for the company.'), +(14530,'Quantainium','Cargo','Cargo','0f4c2ea8-46a0-4d01-9f8c-3002455fb316','','',NULL), +(14531,'KRON_LaserCannon_PowerArray_S1','WeaponAttachment','PowerArray','46481c5e-1b4c-46cc-9fc0-995092216993','','',NULL), +(14532,'Gadget_Cabinet_kegr_fire_extinguisher_01_NoRN_low','Usable','UNDEFINED','058555c9-6995-4071-8083-214f5c8f29a4','','',NULL), +(14533,'Seat','Usable','UNDEFINED','63c3fd14-6b8a-4a5e-98ee-b7a8cda9bd25','','',NULL), +(14534,'Davin Work Gloves Violet','Char_Clothing_Hands','UNDEFINED','ca371bf3-e9cd-4469-bf69-bc9b297c859a','','','Field-tested for over fifty years, you can find Davin work gloves at numerous sites and ships around the Empire. Stegman\'s rugged construction and comfort lining have made them a customer favorite.'), +(14535,'Raw Silicon','Cargo','Cargo','b00fd37b-d7c7-47b7-b106-24c2f2a05217','','','A strong and brittle element with good thermal conductivity. Crystalizes in a diamond form.'), +(14536,'E\'tam','Cargo','Cargo','057f0a45-8221-4efa-89cd-a31a05cd0aee','','',NULL), +(14537,'Savrilium (Ore)','Cargo','Cargo','e96ab334-82bc-4438-bf03-a21dd738719d','','',NULL), +(14538,'Nyman Jacket Black','Char_Clothing_Torso_1','UNDEFINED','c0fe4313-db92-49c4-96d9-ffd10937ce4c','','','Carrying Capacity: 1K µSCU\n\nOpalSky\'s Nyman light pullover is perfect to have on hand when lounging poolside or on those chilly nights.'), +(14539,'Devereaux Pants','Char_Clothing_Legs','UNDEFINED','f0a14e29-c9a5-4b47-b682-1e2dc204b2bf','','','Carrying Capacity: 1K µSCU\n\nFrom modern work environments to casual gatherings, OpalSky\'s Devereaux slacks have been a consistent member of everyday wardrobe.'), +(14540,'Lycara','Cargo','Cargo','ddd399c0-8c26-444c-b26c-3f0b87a0e87f','','',NULL), +(14541,'Paint_C8X_Pisces_Expedition','Paints','UNDEFINED','ddd27ee6-4477-49d0-89de-47fc6037e895','','',NULL), +(14542,'MISC_Prospector_Thruster_Retro_Right','ManneuverThruster','FixedThruster','f141f6ee-41f0-4252-8301-fc9f8178187c','','',NULL), +(14543,'Stileron','Cargo','Cargo','98418bcd-eb87-435a-91f8-0df8fedf8e05','','',NULL), +(14544,'Torreto Pants Blue','Char_Clothing_Legs','UNDEFINED','3ede508c-8658-43f0-b6c7-d30411d5262e','','','Carrying Capacity: 0.5K µSCU\n\n987 redefines classic slacks with the Torreto. These mid-rise, straight cut pants incorporate a section of fabric studding along the side seam to provide a pop of personality.'), +(14545,'Station','SeatAccess','UNDEFINED','4ebd85b0-f18d-43a5-ba0c-2ee2f94cab65','','',NULL), +(14546,'AAT-34 Turret','Turret','MannedTurret','ba736372-b933-4dbd-8e27-d383b257efde','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(14547,'ADP Legs Tan','Armor','Legs','79cc1609-86aa-428b-8763-64defc51302f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(14548,'CRUS_Spirit_Door_Decal_JumpDrive','Decal','DoorPart','31aa3082-a6d0-4a90-a13c-d983c06b4aae','','',NULL), +(14549,'DRAK_Dragonfly_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','b4a5add7-fe34-45cc-bcf1-68113a3563b1','','',NULL), +(14550,'ORIG_135c_Thruster_Mav_Fixed_Top','ManneuverThruster','FixedThruster','9b38c918-cb1c-49d2-97b6-81654c3d4d9d','','',NULL), +(14551,'Remote Turret','Turret','GunTurret','f3fe653e-6d2c-4c00-8dc5-85200d8e7895','','','Remote Turret'), +(14552,'CNOU_HoverQuad_CML_Flare','WeaponDefensive','CountermeasureLauncher','518b01bc-319a-4c0d-a68d-bbaf43bbd8ec','','','@LOC_PLACEHOLDER'), +(14553,'Manned Turret','TurretBase','MannedTurret','a6d6d6a3-18a6-4e07-94c5-f81990f4a935','','',NULL), +(14554,'Diamond Laminate','Cargo','Cargo','d0b22330-8b4b-4cf5-b241-b55b1687d03f','','',NULL), +(14555,'Access','SeatAccess','UNDEFINED','c288c3f5-e2b4-4696-8bd9-8965c81672a2','','',NULL), +(14556,'RSI_Zeus_Thruster_Main_Bottom_Right','MainThruster','UNDEFINED','8fa3fab6-c7c2-4960-a3e4-2e54410cd86e','','',NULL), +(14557,'Deri Gloves','Char_Clothing_Hands','UNDEFINED','e10688f1-e657-4583-a08d-4679f88a17c5','','','Maintain a tactile sense of the world while also keeping your hands safe and dry with the Deri fingerless gloves. Featuring a comfortable inner lining, lightweight plating on the back of the hand and slip resistant palm padding, the Deri gloves are an ideal choice for a wide variety of tasks.'), +(14558,'CRUS_Spirit_C1_Blanking_Plate','Misc','UNDEFINED','d006cc11-ca1a-4663-a40e-25f757cc2aaa','','',NULL), +(14559,'Strata Helmet Piston','Armor','Helmet','86323e60-13a2-40c9-a3bc-3c164ffc1e99','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design features high quality materials and a next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Piston edition is grey with black highlights.'), +(14560,'Door Control','Door','UNDEFINED','2f18bbc7-682a-47a5-bcd9-1d7d52fea0c8','','',NULL), +(14561,'Gadget_Cabinet_kegr_fire_extinguisher_01_Nozzle_med_high','Usable','UNDEFINED','9ac2de63-8466-4ef0-8035-b5798f2d50b7','','',NULL), +(14562,'Zelena Pants Ebony and Bisbee Boots','Char_Clothing_Legs','UNDEFINED','ec51baf4-d2c1-4f56-8780-573fdecefec6','','','Carrying Capacity: 1K µSCU\n\nStay warm and dry on rainy days in the Zelena pants and the Bisbee boots. Both made with water-repellant materials and built-in sweat-wicking technology, they\'ll be your go-to choice for adventures on even the most hostile worlds.'), +(14563,'AEGS_Reclaimer_Seat_TractorBeam_Right','Seat','UNDEFINED','0bf0bb0d-4744-4933-af07-f7cfaba6cdd9','','',NULL), +(14564,'Food_plant_mushroom_01_heart_a','Food','Plant','537322aa-0b04-402c-b1f1-f3d4d8f60cc0','','',NULL), +(14565,'hooks_torso1_02x01x04_01Port_tall','ShopDisplay','Default','52fa456a-987a-43c9-8c90-9330fd3f32e9','','',NULL), +(14566,'Escalate Stabilizer3','WeaponAttachment','Barrel','5da14fc0-f1df-4f42-a510-1b6d1a54d8ad','','','Manufacturer: ArmaMod\nType: Energy Stabilizer\nAttachment Point: Barrel\nSize: 3\n\nDamage: +10%\nCharge Time: -50%\nAmmo Consumption: +100%\n\nBy allowing for increased energy consumption, the Escalate Stabilizer3 can overclock your weapon to significantly reduce charge time and increase damage output.'), +(14567,'ROC Quicksilver Livery','Paints','UNDEFINED','7074f267-9451-410b-a309-ee2e92b8a4eb','','','Turn heads with this slick Quicksilver livery for your ROC and ROC-DS.'), +(14568,'AEGS_Idris_Thruster_Retro','ManneuverThruster','JointThruster','8033f95f-9a6a-4832-9ad2-0c9fb2351007','','',NULL), +(14569,'Copper','Cargo','Cargo','7bf3875f-38a1-42c2-934a-3820329c9659','','',NULL), +(14570,'Parway Gloves','Char_Clothing_Hands','UNDEFINED','31e87ff5-9256-41c7-91ff-d0471b93b2fa','','','Whether engaged in work or play, the Parway gloves provide protection and the perfect fit. Synthetic leather cuffs overlap with a lightweight metal plate to offer protection from impacts. The fingers and palm mix fleece and a special perforated polymer to keep your hands dry and cool while still being able to interact with touchscreens.'), +(14571,'Cliffback T-Shirt Green','Char_Clothing_Torso_0','UNDEFINED','b2b1c158-9c3b-4d29-82c0-61a0a27f5bd9','','','Alejo Brothers\' classic loop tee with a spatter pattern.'), +(14572,'Ardent Boots Seagreen','Char_Clothing_Feet','UNDEFINED','7d181def-1a79-4689-ad6e-e26ba97608ef','','','Who says NorthStar can\'t keep it pro? The Ardent boot features a molded rubber sole and all-weather construction to withstand a constant battery from the elements.\n\nWomen\'s sizes currently out of stock.'), +(14573,'ARGO_MPUV_Thruster_Aux_Top','ManneuverThruster','JointThruster','56186c73-8d0e-4e9b-b123-ba4c3a1e0767','','',NULL), +(14574,'Waste','Cargo','Cargo','30e8b84c-3390-4075-8f23-3ab743f6225c','','',NULL), +(14575,'Internal Tank','FuelTank','Fuel','f9f255b7-c3fa-42d1-a26f-9137435f5ef3','','',NULL), +(14576,'ARMR_GRIN_ROC_DS','Armor','Medium','fc1a54f3-6dce-4ddb-912d-cb513377c28c','','',NULL), +(14577,'100 Series Deck the Hull Livery','Paints','UNDEFINED','de1dd8f9-511e-4547-83f3-806a1336fa0d','','','Express your holiday spirit with the Deck the Hull livery, which uses the traditional Luminalia colors of green and red to celebrate the popular Banu festival that\'s become beloved by Humans.'), +(14578,'Bed','Usable','UNDEFINED','ba68cd67-dcbf-41cf-adea-72d0352e6c44','','',NULL), +(14579,'bottle_water_1_tray_c_1Port','ShopDisplay','Default','5bd4ddd7-8be6-4440-ac5c-c48c302448e0','','',NULL), +(14580,'Plastic Cup','Drink','UNDEFINED','c66209cc-9fca-455e-88fa-062c273d3714','','','A sturdy plastic cup with a wide lip and two ridges to make it easy to grip.'), +(14581,'Sion \"Tweaker\" Compensator1','WeaponAttachment','Barrel','ff8fbeaa-66d6-4ed0-8d9a-3a9394e6df79','','','Manufacturer: ArmaMod\nType: Ballistic Compensator\nAttachment Point: Barrel\nSize: 1\n\nAim Recoil: +35%\nVisual Recoil: -30%\nRecoil Time: -33%\nFire Rate: +12.5%\n\nMaintain accuracy by countering muzzle rise with the Sion Compensator1. ArmaMod\'s expertly designed S1 barrel attachment efficiently expels gasses to keep every shot on target. This \"Tweaker\" version has been unofficially modified for a faster fire rate.'), +(14582,'IAE 2951 Hat Blue','Char_Clothing_Hat','UNDEFINED','1e8c8486-7a7e-433a-9c44-81e10f611370','','','The official hat of the 2951 IAE carries the logo for the event on the front and a smaller version of it on the back right panel.'), +(14583,'Internal Tank','QuantumFuelTank','QuantumFuel','4e1bbf84-48c7-4222-a517-7539a9eeeafb','','',NULL), +(14584,'m_human_mannequin_clothing_TandS_Civ02','ShopDisplay','UNDEFINED','c0561b93-c9fd-46a8-b2cd-b0ea77544162','','',NULL), +(14585,'CRUZ Lux','Drink','Bottle','72b91153-5a3e-4d71-af5c-f6c57ea2891a','','','HEI: 38\nNDR: 30\nEffects: Hypertrophic, Hypo-Metabolic\n\nRestore, refuel, and recharge with CRUZ Optimal Nutrition Drink. CRUZ Lux lightens things up with a sweet and spicy taste sure to get you going.'), +(14586,'Door Control','ControlPanel','DoorPart','8bb40a31-e756-4f4c-a768-0fcefebc5ac3','','',NULL), +(14587,'Ventra Gloves Orange','Char_Clothing_Hands','UNDEFINED','bd1c4014-649f-49c9-846e-a4500e914d34','','','Keep your hands warm and dry with Fiore\'s Ventra gloves. Microstitching creates a snug, tailored fit to keep you looking stylish and warm.'), +(14588,'Door Control','ControlPanel','DoorPart','7f1466e1-ea72-45b7-90c7-14f0d9afabfd','','',NULL), +(14589,'H_Dashboard_Projector_HUD_CRUS_Starfighter','Display','UNDEFINED','4c8ddfe7-3bc8-42da-99d4-4f15bb120c79','','',NULL), +(14590,'Weapon_Rack_1_GMNI_Rifle_Legendary_001','Usable','UNDEFINED','37573717-5993-4c77-a8ae-777f0bcfebfb','','',NULL), +(14591,'Morningstar Helmet Icefall','Armor','Helmet','73754ce9-d505-4510-9a7e-e7be4c1943bc','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(14592,'mobiGlas Sapphire Casing','MobiGlas','Personal','867fd121-be33-4f1d-a95e-b51c9889d27f','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(14593,'Parvat Jacket Swirling Ash','Char_Clothing_Torso_1','UNDEFINED','44becf27-6e0a-48dd-b339-70764b668d9f','','','Carrying Capacity: 2K µSCU\n\nWeather the cold with this waterproof and insulated jacket from Escar Limited. Featuring a stylish design and unique dual-layer collar, the Parvat will keep you warm when you need it most.'), +(14594,'Flight Blade','FlightController','UNDEFINED','49f1f795-1482-40b8-bf0f-8d64b3aca1e9','','',NULL), +(14595,'MISC_Starfarer_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','d378e202-a0d3-4e09-b486-98504955784a','','',NULL), +(14596,'Liberator Ultra','Weapon','Rocket','de76d4a8-c71c-4368-8b57-1474b4a4a3a6','','','Item Type: Rocket Pod\nManufacturer: Thermyte Concern\nSize: 3\nRockets: 12xS2\n\nThermyte Concern\'s Liberator Ultra rocket pod carries twelve S2 rockets and can be attached to any size three hardpoint.'), +(14597,'Asgard Valhalla Livery','Paints','UNDEFINED','50caf105-9039-473d-9f7a-e23710405a98','','','The Valhalla livery melds a dazzling copper finish with green accents to give the Asgard a truly distinct appearance.'), +(14598,'Calamity XII-IR Torpedo','Missile','Torpedo','6f012007-659b-4746-917f-e6effa713804','','','Manufacturer: Talon\nTracking Signal: Infrared\nSize: 12\n\nDesigned by Talon, the Calamity heat seeking strike torpedo delivers a heavy payload sure to serve as a deterrent from any further hostile actions.'), +(14599,'Wallpanel_1H_Fuses','Misc','UNDEFINED','7ea1697a-609a-4d95-b3be-f17813ded111','','',NULL), +(14600,'Horizon Helmet','Armor','Helmet','4ccfcbd2-c0a8-408e-82f0-8e58a35817d9','','',NULL), +(14601,'Bed','Usable','UNDEFINED','3630df8d-561d-4a9b-9eb1-f1928afe639e','','',NULL), +(14602,'Torite (Ore)','Cargo','Cargo','d432e266-62f7-448b-91d0-4f3a523efd2d','','',NULL), +(14603,'Cerrado Boots Bronze','Char_Clothing_Feet','UNDEFINED','2a208940-f250-4b5f-b352-1ed9463a9ab5','','','These trail-rated Cerrado Boots from R6 Pro are comfortable, waterproof, and built to last. The tall cuff and lacing at the top provide a seamless combination of exceptional ankle support and the stability.'), +(14604,'Quantainium','Cargo','Cargo','62cb51fb-b94c-49c9-84a4-4c3673b29d1c','','',NULL), +(14605,'Overlord Helmet Riptide','Armor','Helmet','7b6e72c6-3207-4775-9e6e-a020f8aeb495','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord helmet delivers heavy armor protection while using a special lightweight composite plating that makes it feel like nothing\'s there. Repurposed ocular sensors normally found on ships keep you attuned to your surroundings and, when worn with the full Overlord suit, the high neck collar provides the helmet extra support and protection. Visor is AR crosshair compatible.'), +(14606,'SHIELDS','ShieldController','UNDEFINED','0f80e238-ed80-47ab-8af5-6f253d409658','','',NULL), +(14607,'DRAK_Cutter_Thruster_Addon_Rambler_Left','Misc','UNDEFINED','ef64224f-1af3-4d5e-89d6-e3f3247cd077','','',NULL), +(14608,'Seat','Usable','UNDEFINED','6dfe3a92-9b94-49fe-83ad-903064911a2f','','',NULL), +(14609,'TRGT. STATUS','Seat','UNDEFINED','22712725-9ffb-4fbe-84dd-282bdf23cbb4','','',NULL), +(14610,'Organics','Cargo','Cargo','d4b2cf40-0d58-4664-bdcb-30f74dd8805a','','',NULL), +(14611,'Beradom','Cargo','Cargo','b0c44547-ebb1-4f0f-8bb1-72c02697b07a','','','Formed when sap from the Beraber Fir is crystalized during forest fires, this transparent deep blue \"gemstone\" is often polished smooth and used in jewelry. While it can be manufactured by growing trees and then doing a controlled burn, the time investment for the trees to reach the proper maturity still make this a rare commodity.'), +(14612,'KRIG_P72_Archimedes_Dashboard_Pilot','SeatDashboard','UNDEFINED','4c8c452c-ed3e-474c-9324-fa7777f2a484','','',NULL), +(14613,'Radar_Display_CRUS_Starlifter','Display','UNDEFINED','d6f81e46-f873-46bc-8d69-1b34cc85370f','','',NULL), +(14614,'display_wall_end_centermass_3port_IP_dir_left','ShopDisplay','Default','ad75c920-8255-48cb-b196-db85f5f86862','','',NULL), +(14615,'INTK_ANVL_Hornet_F7CM_Mk2','FuelIntake','Fuel','9800a996-d783-493f-aa2f-dde9d227881e','','',NULL), +(14616,'Seat','SeatAccess','UNDEFINED','a1b54539-d1e3-45de-b68a-9224a653593d','','',NULL), +(14617,'Myuda Knife','Weapon','Knife','a7317ea4-108f-4d54-85b5-5ef9cc3659d8','','','Manufacturer: Banu\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nA brutally effective product of Banu engineering, the Myuda knife is a vicious weapon designed for leaving wounds that won\'t heal easily. The proprietary metal alloy used in the construction of the blade is rust-resistant and remains ultra-sharp even after extensive use. The intricately detailed handle gives it a distinctly Banu style and provides texture to ensure a tight grip.'), +(14618,'Sharud Wrap and Arm Bands Redwood','Char_Clothing_Torso_1','UNDEFINED','95fe20d7-6baa-429d-a1fd-538444be1f0a','','','Carrying Capacity: 1K µSCU\n\nThe Sharud is an ideal top for staying cool in hot weather. Advanced production techniques allow Habidash to make a light yet absorbent shawl that looks and feels like handspun natural cotton but at a fraction of the cost. The three arm band pieces provide stylish accents and come embedded with microchips that tracks body temperature and other vitals.'), +(14619,'LOOT_game_chess_1_a','Misc','UNDEFINED','ea7b1e8d-6703-43f3-913c-0bb504884487','','',NULL), +(14620,'XNAA_SanTokYai_CML_Chaff','WeaponDefensive','CountermeasureLauncher','232989e2-5767-479e-b0de-42e57e4dcc71','','','@LOC_PLACEHOLDER'), +(14621,'AEGS_Retaliator_Module','Module','UNDEFINED','39816995-4f2b-425b-bba8-cc8a04c2cf3e','','',NULL), +(14622,'Deadbolt IV Cannon','Weapon','Gun','45a6750e-f453-4444-8a4d-67023187ac3f','','','Manufacturer: Esperia\nItem Type: Ballistic Cannon \nSize: 4\n\nSpread dread with the Deadbolt IV ballistic cannon. Feared for its firepower at short range, this notorious Tevarin weapon earned its intimidating reputation during the First Tevarin War as part of the Tevarin fleet\'s devastating arsenal. Esperia has painstakingly recreated the Deadbolt IV out of respect to the original weapon and warriors who used it so effectively.'), +(14623,'TS-35 Basara (3.5x Telescopic)','WeaponAttachment','IronSight','a157dbe5-2ae5-4206-a975-55af6ecd39a6','','','Manufacturer: Klaus & Werner\nType: Telescopic\nAttachment Point: Optic\nMagnification: 3x - 5.5x\nAim Time: +5%\nParallax: Low\nSize: 2\n\nThe TS-35 Basara continues to expand on the high quality of the Basara series, by adding enhanced magnification to the sights, without compromising on quality.'), +(14624,'RSI Polaris Torpedo Rack','MissileLauncher','MissileRack','5d54b47d-6d47-4e09-b2b5-575c856ba7a1','','','Item Type: Torpedo Rack\nManufacturer: RSI\nSize: 10\nTorpedo: 7xS10 \n\nBring the impressive firepower of the Polaris to bear with this bespoke torpedo rack holding seven massive S10 torpedoes.'), +(14625,'facial_hair_026','Char_Head_Beard','UNDEFINED','4e1f14bc-3db8-483b-ab97-c948d8e984b8','','',NULL), +(14626,'Door Control','Door','UNDEFINED','cb9e56eb-1945-4b14-a730-33a7e8da3e71','','',NULL), +(14627,'Agricium (Ore)','Cargo','Cargo','41d7dbd7-c2b7-4b36-9787-f6b7a4c92be2','','',NULL), +(14628,'CK13-GID Seed Blend','Cargo','Cargo','2ad898f7-75eb-4a9c-b596-62453b3ba56a','','',NULL), +(14629,'Dashboard','SeatDashboard','UNDEFINED','38793c27-26c5-4463-91b6-3828fe19f2f1','','',NULL), +(14630,'Drivetrain','WheeledController','UNDEFINED','b99e2e5a-1402-48ce-921f-a88c142dd304','','',NULL), +(14631,'INTK_ANVL_Hornet_F7CR_Mk2','FuelIntake','Fuel','5e887c5d-4b2b-4b6c-a7c6-e0c695a80668','','',NULL), +(14632,'INTK_ANVL_Hornet_F7CS_Mk2','FuelIntake','Fuel','a657dc7b-44b7-4877-b719-37b8cf382456','','',NULL), +(14633,'RSI_Polaris_Seat_Access_CoPilot','SeatAccess','UNDEFINED','fb02a652-1249-4cb9-b407-24111246d065','','',NULL), +(14634,'MacFlex Legs Dark Green','Armor','Legs','02c66dca-b18d-4c2f-b6f2-125283a255c9','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(14635,'Brocius Waist Apron Stonewall','Char_Clothing_Torso_1','UNDEFINED','ecce4867-8598-46c6-9de9-5180a8127dcf','','','Habidash\'s Brocius Waist Apron features a quilted front panel paired with side skirting to protect the wearer from any overspills or other dirtying work while still providing freedom of movement.'), +(14636,'Razorback Pants','Char_Clothing_Legs','UNDEFINED','983bef68-e1cf-407c-af9e-f3913c870282','','','Carrying Capacity: 2K µSCU\n\nDMC\'s Razorback pants are made to be worn. Built from industrial quality material, they feature reinforced kneepads to prevent tears on the job and stay rugged yet comfortable.\n\nWomen\'s sizes currently out of stock.'), +(14637,'RSI_Aurora_Mk2_Module_CargoGrid_RightLeft','CargoGrid','UNDEFINED','7504e234-bb37-4800-b24c-6dc02b3fe8ec','','',NULL), +(14638,'box_plastic_4_weapon_opened_015x01x0025_a','Misc','UNDEFINED','92a8c47e-e8a8-485d-8a47-f93cb5a1fcbb','','',NULL), +(14639,'ANVL_Lightning_F8_Thruster_Mav_Joint_DarkBlue','ManneuverThruster','JointThruster','3b19b75a-70ba-4b6c-a1b4-65d6dd87d96c','','',NULL), +(14640,'ORC-mkV Core Tan','Armor','Torso','f9a7f34d-547f-47d9-9b68-cf56d6bcbfc1','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(14641,'RSI_Perseus_Thruster_Retro_Front_Bottom_Right','ManneuverThruster','Retro','71cfa6e0-1cbf-416e-b8ea-cdcd4b6e6733','','',NULL), +(14642,'Field Recon Suit Arms','Armor','Arms','7057209c-1430-44c1-a5c5-02b433701058','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nCDS’ Field Recon Suit is the perfect solution for the combat operator who wants a little extra protection without compromising any of their situational agility. EdgeCore composite plating is strategically sewn into the nano-weave suit to cover vital organs while keeping the suit flexible.'), +(14643,'Carryable_1H_CY_glass_tumbler_cognac_1_a','Misc','UNDEFINED','5179a404-2cba-497d-b4b8-b036ee78a3ae','','',NULL), +(14644,'MISC_Starlancer_Thruster_Main_Aux','MainThruster','FixedThruster','285830e4-e70d-4a22-8612-db41842d1e6a','','',NULL), +(14645,'mobyGlass Personal Computers','Cargo','Cargo','993d4afb-110c-40f4-a94d-5ce9fb92397f','','',NULL), +(14646,'Testudo Legs Deathblow','Armor','Legs','a3da9c06-e722-428e-bca6-b853979d18a4','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4K µSCU\n\nBased on Quirinus Tech\'s Testudo medium combat armor, the Deathblow variant has received unauthorized aftermarket modifications. This armor set weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort.'), +(14647,'RSI Apollo Medivac S02 Missile Rack','MissileLauncher','MissileRack','4b02aa83-07c1-4028-dfe8-e86d024ee09f','','','Item Type: Missile Rack\nManufacturer: Roberts Space Industries\nSize: 2\nMissiles: 8xS2\n \nBespoke missile rack for the RSI Apollo that fires eight S2 missiles.'), +(14648,'Seat','SeatAccess','UNDEFINED','5e2863dc-e750-451c-abf6-cf4eda398113','','',NULL), +(14649,'rack_lt_1_b','Misc','UNDEFINED','4c47549a-8e17-46e8-aae5-c7d78f897337','','',NULL), +(14650,'Aegis Sabre Firebird 12xS3 Missile Rack','MissileLauncher','MissileRack','7c1f3841-1c73-445f-bf4e-ba2c628ceac8','','','Item Type: Missile Rack\nManufacturer: Aegis \nSize: 3\nTorpedoes: 12xS3\n\nBespoke missile rack for the Aegis Sabre Firebird that fires twelve S3 missiles.'), +(14651,'Lillo Pants Seagreen','Char_Clothing_Legs','UNDEFINED','c8ba470c-0bc4-4cd8-a9bc-01409ea52e64','','','Carrying Capacity: 0.5K µSCU\n\nThese slim cut pants from Fiore give you a tailored feel at a fraction of the cost. Built from space-age weaves, the Lillo are a low maintenance, high impact addition to your office wardrobe.'), +(14652,'Dashboard','SeatDashboard','UNDEFINED','83c4340e-2c34-4b8c-a7a9-cbf2c52788bf','','',NULL), +(14653,'Body','Char_Clothing_Torso_0','Medical','b9ca9252-a868-4442-9674-2d8d5cf27d46','','',NULL), +(14654,'Inquisitor Legs Twilight','Armor','Legs','1ba906e1-5150-4bce-8f03-0fe08dd1afab','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(14655,'MISC_Freelancer_SCItem_Seat_Bed_Upper_Right','Seat','UNDEFINED','07869e59-8514-4e74-882d-c7fc1446b732','','',NULL), +(14656,'Fortifier Helmet Brimstone','Armor','Helmet','3657fc5f-0a96-4a39-bc56-0010ac4882b1','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nProtect your most valuable asset with the Fortifier. Intended for extremely hostile environments, this heavy helmet makes up for its limited visibility with extra plating that protects the neck and back of the head.'), +(14657,'Frontier 11 Classic Horizon','Char_Clothing_Legs','UNDEFINED','ac482ff8-7ade-4fd9-9f08-46decffef303','','','Carrying Capacity: 2k µSCU\n\nConstructed with large pockets and made from durable synth-cloth, the Frontier 11 Classic pants from DMC are a rugged garment designed to handle whatever life might throw your way.'), +(14658,'Spirit Deck the Hull Livery','Paints','UNDEFINED','59933d5e-bc5e-4ad1-ae7e-ee9c9f23f0a2','','','Express your holiday spirit with the Deck the Hull livery, which uses the traditional Luminalia colors of green and red to celebrate the popular Banu festival that\'s become beloved by Humans.'), +(14659,'SHIELDS','ShieldController','UNDEFINED','64d5207d-2f70-4686-94ec-6fcb979a96a6','','',NULL), +(14660,'Inert Materials','Cargo','Cargo','2c32b965-07a5-4062-9f0c-5600d72fc696','','',NULL), +(14661,'Datapad','Misc','Gadget','7f6bfdb1-692e-4784-92b5-c336c5d0a682','','','A portable tablet computing device featuring a touchscreen display.'), +(14662,'Seat','SeatAccess','UNDEFINED','c76831a2-7eb6-479b-9749-e5b38df7a09d','','',NULL), +(14663,'Bed','Usable','UNDEFINED','a66886fe-1560-497b-9cd4-b285786580b6','','',NULL), +(14664,'Blue Bilva','Cargo','Cargo','1d2e479e-65d9-465c-a5a6-94995343ba38','','',NULL), +(14665,'Artimex Arms Chairman\'s Club','Armor','Arms','b81baf63-09bd-445b-9f4f-6ba781ee818f','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape. The Chairman\'s Club edition is clad in black with rich gold highlights and features the insignia of the exclusive organization.'), +(14666,'Lynx Arms Tan','Armor','Arms','e8441c9a-20a4-4661-b566-f46190ad4d3e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(14667,'m_human_mannequin_base_armor_Collector_SBJung','ShopDisplay','UNDEFINED','b077b4e1-4d6f-4d4b-ab24-3926155fcc74','','',NULL), +(14668,'Carryable_1H_SQ_maintenance_nuts_1_a','Misc','UNDEFINED','299c7ed9-bea6-493a-b10c-ab1f81b43143','','',NULL), +(14669,'Glaive Ship Armor','Armor','Medium','4ebbcffb-604f-41c2-9384-e017badf72e6','','','Glaive Ship Armor'), +(14670,'ORIG_100i_RADR_Display','Display','UNDEFINED','8ceff1aa-edbd-42f0-a8c4-3142bd0abab8','','',NULL), +(14671,'Seat','Usable','UNDEFINED','4611f73f-6ade-4cab-b940-7151943e111d','','',NULL), +(14672,'Esperia Stinger Missile Rack','MissileLauncher','MissileRack','4bbb99be-faa8-460f-91d4-296aeb389f15','','','Item Type: Missile Rack\nManufacturer: Esperia\nSize: 5\nMissiles: 8xS2 \n\nThis S5 missile rack can be equipped with eight S2 missiles.'), +(14673,'Pisces TSB Flight Blade','FlightController','UNDEFINED','5811b9fa-abc3-4b4c-b32b-d11d14dae8e8','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Anvil Pisces with the TSB Flight Blade from Broad & Rabiee. By re-allocating lateral thrust resources, you can expect your ship deliver increased top speeds in the straightaway.'), +(14674,'Tumbler Glass','Drink','UNDEFINED','430571e7-7b36-4251-90c5-a124c93ac4cd','','','A short and wide drinking vessel made from tempered glassware.'), +(14675,'DRAK_Clipper_Thruster_Main_Aux_Right','MainThruster','UNDEFINED','b7c9ac35-2ae5-4ab3-a260-4fccd320826b','','',NULL), +(14676,'Tin','Cargo','Cargo','bbeada81-2aff-4f2a-8650-ae6cdcf9aa13','','',NULL), +(14677,'Elevator','Elevator','UNDEFINED','5258bf09-3c5f-40f7-ad34-58317a355db4','','',NULL), +(14678,'Venture Core Red','Armor','Torso','ef6034a1-3a34-4dce-8d35-dee93e2d5ba8','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(14679,'Arden-SL Core Archangel','Armor','Torso','c21c18bd-be60-4b8f-9772-98bbb5b1b657','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics. It also features a toolbelt for easy access to important gear.'), +(14680,'Tolo Jacket Teal Stripe','Char_Clothing_Torso_1','UNDEFINED','6ecd22f4-8d70-46ea-86a7-cb73b8bc7bb1','','','Carrying Capacity: 1K µSCU\n\nA creatively integrated dickey gives the Tolo its fashionable and unconventional look. This three quarter sleeve shirt also features small epaulettes perched atop each shoulder.'), +(14681,'Hoffdor (Bottle)','Drink','Bottle','d42581a0-1549-43da-9980-401df3da42e1','','','HEI: 18\nEffects: Cognitive Impairment, Dehydrating\n\nThe same original 2788 recipe for an unfiltered brown ale that is still brewed to perfection.'), +(14682,'Door','Door','UNDEFINED','4995638b-6308-00f0-9041-37a8f68a6487','','',NULL), +(14683,'Seat','Usable','UNDEFINED','db6b1cba-53e4-4b92-b8be-822c1bb3b04e','','',NULL), +(14684,'Storm Darkside Livery','Paints','UNDEFINED','3ffde285-d545-4e28-9fe9-b624e128be4f','','','The Darkside livery gives the Storm a black and grey camouflage pattern to make it hard to see in low light situations.'), +(14685,'Karna Rifle Battery (35 cap)','WeaponAttachment','Magazine','91cfb7dc-660b-4505-b86a-6028c9a3f54d','','','Item Type: Battery\nCapacity: 35\n\nThis is a replacement battery for Kastak Arms\' plasma assault rifle, the Karna.'), +(14686,'ESPR_Talon_Thruster_Retro_L','ManneuverThruster','FixedThruster','5e5fbe91-4327-4e88-bf0d-0cfcd2fd7ae4','','',NULL), +(14687,'Keldur Hat and Hickory Goggles','Char_Clothing_Hat','UNDEFINED','4de337c6-e252-4d46-a9ad-39f1562439db','','','Blowing winds and blazing sun won\'t be an issue when wearing the Keldur hat and goggles. Insulated flaps keep the sun and elements off your neck, while a lightweight metal brim and scratch resistant, industrial-grade goggles protect your eyes.'), +(14688,'Clash Arms','Armor','Arms','3e1fd871-e0c0-4edd-8821-6c29be20cc0b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -52 / 82 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nSometimes all you gotta do is put on the right piece of armor to make your message loud and clear. Clash armor first started popping up when the Dredge got strong-armed into mass-producing their armor and it\'s been scaring everyone stupid since. Now everybody\'s stealing it. Clash features a reinforced medium plating to get you a good balance of protection without giving up too much speed.'), +(14689,'Aurora Mk I ES Ship Armor','Armor','Medium','de5e41a9-7dcb-4aae-afed-3be538e7e04e','','','Aurora Mk I ES Ship Armor'), +(14690,'Col_A_Door_Cell_Lock_b','Door','UNDEFINED','ea5d6f94-3880-48dd-8933-b9ba62b826a4','','',NULL), +(14691,'Internal Tank','FuelTank','Fuel','f4294a2e-dc5b-4afb-afc3-2f94e9183fd6','','',NULL), +(14692,'RSI_Zeus_ES_Thruster_Main_Top_Right','MainThruster','UNDEFINED','3f6f4e5a-a7b6-4378-925f-81668df4787c','','',NULL), +(14693,'Anvil Arrow Turret','Turret','BallTurret','62022f65-a2a2-46c8-af79-e40760f0f254','','','Manufacturer: Anvil Aerospace\n\nThe Gestonne turret system for Anvil\'s Arrow allows precise independent tracking of targets and features mounts for two Size-1 weapons.'), +(14694,'Weapon_Rack_1_KSAR_Rifle_Energy_01_AmmoOnly_001','Usable','UNDEFINED','68082d5f-ddb1-4a35-bb3f-920a984ef391','','',NULL), +(14695,'RSI_Constellation_Phoenix_SCItem_Seat_CoPilot_Right','Seat','UNDEFINED','85874e43-db2b-4110-8cbc-449d40c5be2d','','',NULL), +(14696,'Radar_Display_Carrack','Display','UNDEFINED','3c417520-b18f-4221-a8c8-0e24ddb4e8d3','','',NULL), +(14697,'Weapon_Rack_RSI_Zeus_9_Slot_B','Usable','UNDEFINED','60cc83e7-6b34-4047-ad72-d9f6bfa8eb6a','','',NULL), +(14698,'Booth_Table_8_CircularBar','Usable','UNDEFINED','96da30ee-54fc-43d6-a09b-a25069df2885','','',NULL), +(14699,'Gadget_Cabinet_kegr_fire_extinguisher_01_high','Usable','UNDEFINED','177dc676-4b00-4163-9306-7e78b5fde4f1','','',NULL), +(14700,'Mercury','Cargo','Cargo','e59e5bf0-003f-4174-a57e-ee0c3d029c57','','',NULL), +(14701,'Door Control','ControlPanel','DoorPart','7e78dbe7-27ed-4ce8-88a7-acfcc1312c8d','','',NULL), +(14702,'Mixed Mining','Cargo','Cargo','8709c536-ae65-4ecb-a8ff-6a8adb7caa86','','',NULL), +(14703,'Wanderer Boots Base','Char_Clothing_Feet','UNDEFINED','568737c3-6dfc-4500-bac7-b7e7588a905d','','','Grindstone\'s Wanderer line is an all-purpose boot designed to take any punishment you throw at it.'), +(14704,'Comb','Misc','UNDEFINED','9841bc8c-85cc-4b2b-96e0-2b8caace14bb','','',NULL), +(14705,'MISC_Freelancer_Base_SCItem_Dashboard_Esc_Pod_Lower_Left','SeatDashboard','UNDEFINED','03dac031-f0c1-4878-b364-d6dbb36ea429','','',NULL), +(14706,'INTK_XIAN_Nox','FuelIntake','Fuel','21540683-7124-463b-9976-5a61803bb0e3','','',NULL), +(14707,'m_human_mannequin_clothing_base','ShopDisplay','UNDEFINED','8fa0ae63-afd3-4379-b508-834ee05f855b','','',NULL), +(14708,'Seat','Usable','UNDEFINED','9ef02f79-c533-4e75-b1c6-2fb794e74a7e','','',NULL), +(14709,'RSI_Apollo_OC_Left_Tier_2','Room','UNDEFINED','4cb7a44e-a6f6-754f-9af0-a3326b9abb92','','',NULL), +(14710,'Seat','Usable','UNDEFINED','9e0056c8-6f7a-43c1-a21d-de4d7ca9ca50','','',NULL), +(14711,'sc_nvy_gunner_helmet_01_01_01','Armor','Helmet','1b6d983c-7f3c-4ede-8cf1-75ffaa4744d2','','',NULL), +(14712,'Weapon_Rack_2_Slots_MRAI_Guardian','Usable','UNDEFINED','e36a1770-428c-4854-98e3-b2a0a626214c','','',NULL), +(14713,'Manned Turret','TurretBase','MannedTurret','d9daa864-cb25-47f7-a8e1-af32d5acc6b2','','',NULL), +(14714,'Ht_D_Airlock_Door_Int','Door','AirlockPart','f681c425-72d7-4a3f-8bb0-493c3805504c','','',NULL), +(14715,'display_ship_components_02x0075x0275_a_s1_qdrive','ShopDisplay','UNDEFINED','856a4bb7-0ad6-4613-b00d-4f122a37f58c','','',NULL), +(14716,'Ambit Coverall','Char_Clothing_Torso_1','UNDEFINED','cc931f5b-f087-45a4-8cb1-931a79e881cd','','','Carrying Capacity: 0.4K µSCU\n\nThe Ambit Coverall is ideal jobsite attire with its multiple pockets, special super-stain resistant fabric, and a generous cut to allow for unrestricted movement. Step in, zip up, and work all day in comfort thanks to Stegman\'s.'), +(14717,'QDRV_AEGS_S04_Javelin_SCItem','QuantumDrive','UNDEFINED','d8c217a9-531a-4b02-90bc-3cb48f169149','','',NULL), +(14718,'Door Control','ControlPanel','DoorPart','15b764f4-7eda-45f6-aff6-00f08494cd42','','',NULL), +(14719,'ANVL_Hornet_F7CR_Mk2_Thruster_Retro_Left','ManneuverThruster','Retro','165c5297-3642-43d5-b1c0-84eb6b3340b8','','',NULL), +(14720,'ADO-5 Laser Mine','Grenade','Small','94831bea-4116-4010-a699-e55d9a426aa8','','','Manufacturer: Behring\nItem Type: Laser Mine\n\nArea of Effect: 15 m\nDamage Type: Kinetic\n\nhe ADO-5, or commonly called ADOSS is a Laser Mine from Behring. It is a deadly tool you want to own to protect your precious goods, but you never want to accidentally step into. Where ADO stand for Area Denial Ordnance you can be sure that your property is well protected.\n\nThis deadly gadget is made of an light weight aluminum case that holds a strong explosive. It can be easily attached to any surface with our state of the art attachment technology.\n\nThe laser beam comes in predefined lengths for all your use cases, to provide a good variance for various room types, hallways or even giant hangars. \n\nHandle with care! Once activated the only way to turn it off is by destruction.'), +(14721,'Gladiator Ship Armor','Armor','Medium','bd7f1a94-4d30-49dc-9239-b398f9d840eb','','','Gladiator Ship Armor'), +(14722,'INTK_ORIG_400i','FuelIntake','Fuel','538fe3f4-7826-4d6b-9c95-3687edf3e06c','','',NULL), +(14723,'Ati Jacket Orange','Char_Clothing_Torso_1','UNDEFINED','226656e9-0732-4b9b-8f00-423e0ba2c9be','','','Carrying Capacity: 2K µSCU\n\nFiore\'s is a modern update of traditional Earth design. Slim tailoring, a high collar, and striking asymmetrical design make this overcoat a must-have item for any wardrobe.'), +(14724,'Raw Ouratite','Cargo','Cargo','c22ff291-0b40-48dc-9a25-9667b3177148','','',NULL), +(14725,'Door','Door','UNDEFINED','c4c4ab1a-88c4-4825-b1c4-65dc635f295c','','',NULL), +(14726,'Taberna Jacket Tactical','Char_Clothing_Torso_1','UNDEFINED','a2c1969c-c12f-4e62-8c8f-4ca3ec9c79dc','','','Carrying Capacity: 5K µSCU\n\nThe Taberna jacket delivers refined design for rugged conditions. It features a weather resistant outer shell with additional paneling on the torso and arms. An integrated hood and shawl provide extra protection from the elements while a spacious toolbelt ensures gear remains within reach.'), +(14727,'Door Control','ControlPanel','DoorPart','b3b5070b-8f6d-42c6-9475-104c03f0b292','','',NULL), +(14728,'Seat','Usable','UNDEFINED','c37e50e5-d2c3-4750-bf41-00b71786db04','','',NULL), +(14729,'RSI_Zeus_Ground_Refueling_Port','Door','UNDEFINED','eaa2472e-8fa5-489e-92a1-e17f3721c832','','',NULL), +(14730,'ADP Arms Crusader Edition','Armor','Arms','80ee3b95-5665-4548-9e2d-d2067895c0ac','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor. The Crusader Edition was made specifically for the company\'s security services.'), +(14731,'Gold (Ore)','Cargo','Cargo','3a940e57-1a7b-4240-aaf9-ea7be833f3a5','','',NULL), +(14732,'Seat','Usable','UNDEFINED','93ece5d1-4941-433f-a803-92616241604f','','',NULL), +(14733,'Aurora Mk II Shimmerscale Livery','Paints','UNDEFINED','f33ee44b-7309-4587-a4ce-31fa89156370','','','Combining deep purples and blue, the Shimmerscale livery is finished with a subtle green offering an ethereal shimmer.'), +(14734,'Soap','Misc','UNDEFINED','8035316b-8048-4644-9a52-1445c6199c5f','','',NULL), +(14735,'Odyssey II Helmet Seagreen','Armor','Helmet','d40342c9-3a45-4efb-87a7-52931287b1c2','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(14736,'Inquisitor Arms Icefall','Armor','Arms','b8a27e7e-6bbb-4dd9-9e5d-36958012fc0b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(14737,'Inquisitor Arms Rager','Armor','Arms','bdd9ac06-1c2b-43d6-8601-aff88d2d752e','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(14738,'PPB-116 \"Pepperbox\"','Turret','PDCTurret','128ad66c-09a2-43e3-9080-18a018490e96','','','Item Type: PDC\nManufacturer: Behring\n\nStoring sixteen S1 missiles, the PPB-116 \"Pepperbox\" is as disruptive as it is deadly, excelling at both inflicting damage and overwhelming evasive maneuvers.'), +(14739,'AEGS_Idris_CargoGrid_CargoRoom_Front','CargoGrid','UNDEFINED','dbe4efea-08ca-4ae7-acaa-cd8264e67d5b','','',NULL), +(14740,'sc_nvy_deckcrew_uniform_01_01_04','Char_Clothing_Torso_2','UNDEFINED','7a2a6e4c-4d16-4ab6-a88a-0f6a1246f07c','','',NULL), +(14741,'weapon_underbarrel_light_wide','WeaponAttachment','Light','02ab1342-8e78-46fc-b31f-3adfc3897578','','',NULL), +(14742,'Aril Arms Red Alert','Armor','Arms','1bdafd51-7e72-4122-a05b-a0d0de47f345','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(14743,'MISC_Freelancer_Base_SCItem_Seat_Esc_Pod_Upper_Left','Seat','UNDEFINED','1ada6241-785a-4142-b109-e00c829dc1b4','','',NULL), +(14744,'Glow','Cargo','Cargo','da63eebd-5d22-4aa4-861a-c6fcaa321eb0','','',NULL), +(14745,'Caret Pants Navy Blue','Char_Clothing_Legs','UNDEFINED','9e7dc8ce-7b74-42f3-b0ed-b279a3013a54','','','Carrying Capacity: 2K µSCU\n\nWith the fortitude of workwear and the comfort of khakis, the Caret pants are sure to become your standard go-to for tough jobs. Built with strong fabric and quality stitching so you can focus on what needs to be done.'), +(14746,'RSI_Zeus_CL_Thruster_Main_Top_Right','MainThruster','UNDEFINED','6e5488a2-5820-46fa-bfdc-ae1daa08ffa6','','',NULL), +(14747,'ARMR_DRAK_Corsair','Armor','Medium','424bb421-6ab6-404e-8049-22fd7dd94993','','',NULL), +(14748,'Salvaged Skull 4 SCU Container','InventoryContainer','Cargo','0d4d304f-caf1-40d5-9c2d-74ad8af14cd0','','','It may be used to transport “goods”, but this battered and scarred 4 SCU container is anything but thanks to its vivid skull markings.'), +(14749,'CryoPod','Misc','UNDEFINED','a6ee7365-ea4c-420e-b91a-51958a8dc013','','',NULL), +(14750,'Harlowe Shirt White','Char_Clothing_Torso_0','UNDEFINED','37a17a4f-6b04-4713-bd72-7b045960d298','','','Capable as being worn on its own or as a base for layers, this long-sleeve henley style shirt from Alejo Brothers keeps you stylish and comfortable.'), +(14751,'crate_016x008x008_open_c','Misc','UNDEFINED','78e93b23-e2da-4185-87ab-8fa939a45bc7','','',NULL), +(14752,'Stims','Cargo','Cargo','2698bf75-0974-44cb-b4da-ebdbe95233a8','','',NULL), +(14753,'Freeze','Cargo','Cargo','a0dd0808-9695-4d2c-85ac-fd41b531bac0','','',NULL), +(14754,'Quantum Fuel Tank','QuantumFuelTank','QuantumFuel','d6953919-e3c1-4b28-b1ce-9d9b77947ce4','','','Quantum Fuel Tank'), +(14755,'Test_OutpostMission_DataPad_KeyCode_4x3_Screen','Display','UNDEFINED','1f24ed1b-51c9-4f6b-9c02-15662e398f3c','','',NULL), +(14756,'DustUp Helmet Desert','Armor','Helmet','4fd61c96-a486-4c6d-99dd-96a0722b0f37','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -60 / 90 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe DustUp has your back if you’re looking to get into some trouble. The body plating is built off of the same CDS undersuit used by the UEE Marines, it adds reconstructed Omni-Role mkII pieces to give you solid protection against incoming fire, but the real gem is the modified helmet. That thing was built to withstand explosions, so it should totally protect you against some shots. The whole thing’s been reasonably tested against vacuum too, so you can feel free to EVA all you want without worrying about dying.'), +(14757,'Beacon Undersuit','Armor','Undersuit','dfbdc811-8ab1-45ea-83e3-2a71cd6df407','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRSI\'s Beacon undersuit is a general use utility designed to provide total protection against environments and vacuum. Built out of a durable but flexible polymers, the Beacon provides a wide freedom of motion for a variety of body types.'), +(14758,'Remote Turret','Turret','MissileTurret','14555c7c-c84b-4cb7-80d9-a228cea01d01','','','Remote Turret'), +(14759,'m_human_mannequin_rsi_suit_03','ShopDisplay','UNDEFINED','98e038ec-25ea-4deb-8f93-c1f84d6675a1','','',NULL), +(14760,'MacFlex Legs Twilight','Armor','Legs','1034cccc-0a01-41aa-b0b5-76725a48e04a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(14761,'Cascade','QuantumDrive','UNDEFINED','da31a82e-30ac-4924-90ad-dc88bc39e7a5','','','Item Type: Quantum Drive\nManufacturer: ArcCorp\nSize: 2\nGrade: D\nClass: Civilian\n\nThe latest medium-sized quantum drive from ArcCorp, the Cascade will confidently carry you to your destination time and time again.'), +(14762,'Karna \"Valor\" Rifle','Weapon','Medium','fe86ec24-82bd-44d8-b1cc-8a0a23021a26','','','Manufacturer: Kastak Arms\nItem Type: Assault Rifle\nClass: Energy (Plasma)\n\nBattery Size: 35\nRate Of Fire: 500 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nThe Karna is a classic Kastak Arms plasma assault rifle. This mid-range mauler features charged and full-auto fire modes to allow for quick and easy situational adjustments. Besides its renowned firepower, the Karna\'s rugged looks and reliability have made it one of Kastak Arms\' most popular weapons. The bold blue and gold color scheme gives the Valor edition a valiant and dignified appeal.'), +(14763,'F55 \"Valor\" LMG','Weapon','Medium','de320097-2e06-40ee-a2cb-7ac0287f9d23','','','Manufacturer: Gemini\nItem Type: LMG\nClass: Ballistic\n\nMagazine Size: 150\nRate Of Fire: 1000 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S2), Barrel (N/A), Underbarrel (S3)\n\nFeaturing an explosive rate of fire that tops at a 1000 rpm and Gemini\'s sleek and professional styling, the F55 is a light machine gun for discerning clientele who want the \'verse to know that they are not to be trifled with. The bold blue and gold color scheme gives the Valor edition a valiant and dignified appeal.'), +(14764,'Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','d9c47036-dce2-47b3-bbd6-15d9e5da897b','','','Live in comfort with MuyMuy\'s Davlos line of cotton-synthetic shirts. The durable, yet soft, fabric contains a patented SweatGuard technology that not only whisks away perspiration but helps prevent stains.'), +(14765,'APX Fire Extinguisher','Weapon','Gadget','1b6a6b76-f3fc-402c-a24a-204f2eeae6f7','','','Manufacturer: KE Group\nItem Type: Fire Extinguisher\nClass: Gadget\n\nMagazine Size: Gas Canister\nRate of Fire: Constant\nEffective Range: 3-4 m\n\nThe KE Group\'s APX Fire Extinguisher has been rated a best-in-class consumer grade safety equipment for well-over a decade making it the industry standard in fire prevention. Filled with a patented gaseous cooling compound, the extinguisher can rapidly smother any fire in sight. The digital screen on the device allows you to monitor the local temperature to help you contain and eliminate fire hazards.'), +(14766,'RSI_Bengal_SCItem_Seat_Security','Seat','UNDEFINED','c1b803bb-555f-4031-ac47-74be285d71b3','','',NULL), +(14767,'CargoBox_050x050x050_Plastic_StartTop','Cargo','Cargo','d9de9311-27f3-476b-8bb0-f14b6d805b21','','',NULL), +(14768,'Internal Tank','QuantumFuelTank','QuantumFuel','bdd3c4fc-1599-4a25-aaa0-0ee08c98d78a','','',NULL), +(14769,'Toughlife Boots Violet','Char_Clothing_Feet','UNDEFINED','759b9c5e-1f30-436e-b91a-d86a8feaf1db','','','Grindstone\'s done it again. The Toughlife is an all-purpose workboot designed to provide comfort, durability and quality. Featuring a reinforced composite toe and lasercut sole to maximize traction on all surfaces, Toughlife is sure to be your dependable boot, day in and day out.'), +(14770,'Door Control','Door','UNDEFINED','8c46cd8a-9598-41ef-bef6-33e2feafa4c6','','',NULL), +(14771,'Coda \"Nighthawk\" Pistol','Weapon','Small','62995c11-4743-40fd-976a-fd3acaf330db','','','Manufacturer: Kastak Arms\nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 6\nRate Of Fire: 180 rpm \nEffective Range: 100 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nOften called the Kastak Arms \"hand cannon,\" the Coda can end an engagement with a single .50 caliber round, although the substantial power can make the Coda\'s recoil hard to handle. Considering its limited magazine size and substantial kick, sustained fire is discouraged in favor of more accurate single shots. The always bold Isidro \"Nighthawk\" Renard imbued that energy into this purple and black tint design for the Legendary Bounty Hunter line.'), +(14772,'Torite','Cargo','Cargo','92cd33a2-4e91-4aaf-a8b3-d341471dce69','','',NULL), +(14773,'m_human_mannequin_explorer_undersuit','ShopDisplay','UNDEFINED','c668a373-6509-44a6-94c9-d6b4a0c38160','','',NULL), +(14774,'Aves Talon Core','Armor','Torso','dc21809a-2889-4aae-a53d-c54205b8791a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nHonor and embody the Tevarin aesthetic with the Aves Talon armor; manufactured with white, blue, magenta, grey, and black plating to perfectly evoke the shape language imbued into their iconic ships. This medium armor from CC\'s Conversions is both sensational and practical, providing solid protection without sacrificing your mobility. When paired with the Aves Talon helmet, the suit combines for a striking and unforgettable look.'), +(14775,'Reliant Missile Launcher Cap','MissileLauncher','MissileRack','bcfed3ab-5f55-4690-8638-07e3b883d5e4','','','Item Type: Missile Launcher Cap\nManufacturer: MISC\nSize: 5 \n\nBespoke missile launcher cap used by the MISC Reliant.'), +(14776,'Sabine Undersuit Daybreaker','Armor','Undersuit','119012bb-c04a-4a86-a89b-58d4a1a6bfd0','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThe Sabine embodies the advanced look and performance you expect from Quirinus Tech. This cutting edge undersuit integrates strong, yet flexible microweaves with strategically placed plating to provide protection while remaining lightweight. Featuring a sleek design, the Sabine undersuit will ensure you stay safe and stylish no matter the path ahead. The Daybreaker edition features subtle yet striking gold highlights.'), +(14777,'INTK_ESPR_Talon','FuelIntake','Fuel','6e774708-90d8-4b33-9e11-ec12baa8d25a','','',NULL), +(14778,'ARMOR','Shield','UNDEFINED','324e5ee4-12b4-4f41-bccc-b3b001398a74','','','Item Type: Shield Generator\nManufacturer: Seal Corporation\nSize: 3\nGrade: B\nClass: Civilian\n\nARMOR is Seal Corps’ top-of-the-line shield generator. It was used extensively by the military prior to its shield tech being declassified for civilian use.'), +(14779,'Turret','Turret','BallTurret','09453868-8ba8-44ca-afeb-ca526424a8e1','','','Multitask on the battlefield with this remote turret system. Featuring precise controls and a wide field of fire, the turret allows pilots to add combat support to their resume.'), +(14780,'Locker_Suit_ANVL_Terrapin','Usable','UNDEFINED','1bfa6830-f5e4-4b89-8217-dfa2f1c651f1','','',NULL), +(14781,'Clempt Pants Red','Char_Clothing_Legs','UNDEFINED','4eb20a49-c6d2-4845-8b53-49d023145afe','','','Carrying Capacity: 2K µSCU\n\nStegman\'s factory pants have been taken to the next level with the Clempt line. These rugged all-purpose pants come with double knees for extra comfort and protection and are made from tough composite weave fabric to last as long as the work needs.'), +(14782,'MISC_Starlancer_TAC_Thruster_Retro','ManneuverThruster','FixedThruster','95b0b1f6-97ad-44b1-b26b-b2d65b5446c4','','',NULL), +(14783,'Hammerhead 2949 Best In Show Livery','Paints','UNDEFINED','1392b5a5-23f3-4613-8686-97d8f56af4fa','','','Customize your Hammerhead with this special 2949 Best in Show livery.'), +(14784,'Harlowe Shirt Imperial','Char_Clothing_Torso_0','UNDEFINED','896c85e1-7754-43bb-ac69-219eb2b4489a','','','Capable as being worn on its own or as a base for layers, this long-sleeve henley style shirt from Alejo Brothers keeps you stylish and comfortable.'), +(14785,'BEHR_LaserCannon_PowerArray_S4','WeaponAttachment','PowerArray','e0cbd450-99de-4f5b-ae84-5215035dde1e','','',NULL), +(14786,'Inquisitor Arms Dark Red','Armor','Arms','41259023-b551-433b-bd83-8143c928a6eb','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(14787,'Centurion','PowerPlant','Power','5db93be6-1fa1-450f-b539-fedf8690cab2','','','Item Type: Power Plant\nManufacturer: Aegis Dynamics\nSize: 3\nGrade: C\nClass: Military\n\nThe Centurion stands ready to power your ship. This large power plant from Aegis Dynamics has been in service for centuries and has consistently proven to supply solid performance and durability.'), +(14788,'Rabat Hat Blue','Char_Clothing_Hat','UNDEFINED','cbe5fb56-a16e-4353-8fad-d607ebc740af','','','A classic structured baseball cap with an accent stripe to add a pop of color. City Lights\' proprietary COOL-WEV technology keeps your head cool and dry in any environment.\n\nWomen\'s sizes currently out of stock.'), +(14789,'can_drink_1_pips_100_1_a','Cargo','UNDEFINED','a9536a07-5b77-4bb6-bf2d-fb3aff182c3e','','',NULL), +(14790,'NN-15 Cannon','Weapon','Gun','231fd67b-49a6-40e9-8eef-20268cfc0b2c','','','Manufacturer: MaxOx \nItem Type: Neutron Cannon \nSize: 3 \n\nBuilding on the technology of the successful NN-series, MaxOx’s NN-15 offers a significant increase in power for the neutron autocannon to give each shot a devastating punch. With that increased damage however, comes a heavier draw on your power plant.'), +(14791,'PAB-1 Core Green','Armor','Torso','6f3a2cdc-4230-4fc4-b4a1-f26317cf63d4','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(14792,'Weapon Rack','Usable','UNDEFINED','f39883dd-b6c8-4219-9053-650f3dc81c51','','',NULL), +(14793,'Millrun Waders Silvertusk','Char_Clothing_Legs','UNDEFINED','91418164-8ee1-4af1-9d4b-c0e5dea2a689','','','Carrying Capacity: 400 µSCU\n\nA combination of waterproof and weather-resistant pants and boots, the Millrun Waders are a comfortable option for uncomfortable work.'), +(14794,'TrueDef-Pro Core Black/Gold/Silver','Armor','Torso','edf582be-07dc-4b2e-b1fa-5cae7f025854','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(14795,'ANVL_Lightning_F8_Thruster_Retro_LightBlue','ManneuverThruster','FixedThruster','acb0df68-9a03-4077-a368-dcc469867298','','',NULL), +(14796,'AEGS_Javelin_Docking_Bay_Airlock_Invulnerable','Misc','UNDEFINED','7bc3d180-af29-4753-b734-c5682fa9dd0f','','',NULL), +(14797,'CRUS_Star_Runner_Component_Quantum','Player','UNDEFINED','8d9cdfc4-5e05-4eab-a063-4f60a1017052','','',NULL), +(14798,'San\'tok.yai Xua\'cha Livery','Paints','UNDEFINED','6138951f-5e23-43ba-ab57-30b42d6f38ac','','','Outfit the San\'tok.yai in fiery red and black trim with the Xua\'cha livery.'), +(14799,'AEGS_Vanguard_SCItem_Engineer_Console','Seat','UNDEFINED','87e22160-f0b8-4be2-85b6-992263aa6e4b','','',NULL), +(14800,'Agricultural Supplies','Cargo','Cargo','9c0a567e-0c44-48c1-80a6-87fd28ece6c6','','',NULL), +(14801,'Arden-CL Backpack Archangel','Armor','Backpack','8bd4e563-afab-4c59-87f6-7f17ed723b27','','','Item Type: Light Backpack\nCarrying Capacity: 40K µSCU\nCore Compatibility: All\n\nWhether carrying supplies into a combat zone or simply hauling extra gear, the Arden-CL backpack is battle ready and tested. Roussimoff Rehabilitation Systems designed the backpack with a universal core connector allowing it to attach to a wide variety of armors.'), +(14802,'display_expo_hall_weapon_rack_1_curved_a_27Ports','ShopDisplay','UNDEFINED','7ebb9ec7-cd89-4204-8964-9444dc138bf5','','',NULL), +(14803,'Weapon Rack','Usable','UNDEFINED','0903ac1a-33b3-45f8-82b0-00b7072f8ad6','','',NULL), +(14804,'AEGS_Redeemer_Thruster_Retro','ManneuverThruster','FixedThruster','6b0ebf4b-53fe-460d-8805-620b2804c586','','',NULL), +(14805,'MRAI_Guardian_Mohawk','Misc','UNDEFINED','4afada5b-8efa-4e43-905c-c8f036a5484a','','',NULL), +(14806,'LeMarque Pants Twilight','Char_Clothing_Legs','UNDEFINED','df93b950-031f-4b7d-9710-ae0276b376d3','','','Carrying Capacity: 0.5K µSCU\n\nClassic cuts never go out of style. A staple of any wardrobe, Derion\'s LeMarque are built for work or play and feature microseam pleats and wrinkle-free material that will guarantee that you\'ll get years out of this classic.\n\nWomen\'s sizes currently out of stock.'), +(14807,'display_16x9_1_0064x0036_a','Display','UNDEFINED','939b1ce3-0cb9-462b-8898-d3cabbd2f2b2','','',NULL), +(14808,'VariPuck S3 Gimbal Mount','Turret','GunTurret','18654a6e-44a0-439b-b90a-2f1c1b01ae00','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 3\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(14809,'MISC_Starlancer_Seat_Access_Turret_Right','SeatAccess','UNDEFINED','ade7baa6-cfa9-45c7-a8c4-694d11aaf807','','',NULL), +(14810,'Internal Tank','FuelTank','Fuel','8411fd36-af4d-491c-9f7e-7902de3bbaca','','',NULL), +(14811,'Balor HCH Helmet Green','Armor','Helmet','78177158-4b2e-4d90-b1ff-b2173529697d','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. Visor is AR crosshair compatible.'), +(14812,'Picoball','Misc','UNDEFINED','2c6e2098-af0e-41a7-b166-34422ff6c60b','','','An athletic ball modified to resemble the famous microTech mascot Pico the Penguin.'), +(14813,'Gale Head Cover Green','Char_Clothing_Hat','UNDEFINED','c34e38fa-7339-4353-9ca9-ed6d21b75d84','','','Temp. Rating: -30 / 15 °C\n\nProtect your head from the wind and cold with the Gale. Code Blue Apparel paired a wide-view visor with a dynamic synthetic fabric to create an excellent thermal barrier to keep heat from escaping without sacrificing your visibility.'), +(14814,'PAB-1 Core Orange','Armor','Torso','60ad3ebc-07cb-4b1a-b8a0-fdbc7fcc4e47','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(14815,'Chada Collar and Panniers Olive','Char_Clothing_Torso_1','UNDEFINED','6464cb5f-7e3d-4d1c-a1cb-aba8fd957f8f','','','Carrying Capacity: 400 µSCU\n\nNeed extra inventory? We\'ve got you covered. Designed for hands-free carrying, the Chada Panniers by Habidash come with an adjustable strap that lets you securely attach them around your hips. Each set of panniers comes with a fashionable steel and leather gorget.'), +(14816,'Carryable_1H_SQ_drug_concealed_1_b','Misc','Utility','21ab9a46-0ff8-426b-8959-238abdbf54f7','','',NULL), +(14817,'Carrack T-Shirt','Char_Clothing_Torso_0','UNDEFINED','3d08d773-96c0-4d27-aae8-06f0b598d22c','','','Express your passion for the unknown with this Carrack t-shirt. Celebrate the popular and iconic exploration ship with this comfortable black t-shirt that creatively combines an overhead view of the Carrack with the Anvil logo on the front and the ship\'s name on the back.'), +(14818,'Door Control','ControlPanel','DoorPart','392de0bd-e3aa-4fd9-8432-d3b4475747fe','','',NULL), +(14819,'orig_bedding_duvet_4_a','Seat','UNDEFINED','fc38515d-b2b8-48c5-8e2c-531b7968bb7c','','',NULL), +(14820,'RSI_Apollo_Thruster_Retro','ManneuverThruster','FixedThruster','450925d8-680c-0d96-c5e2-ff1903bbec96','','',NULL), +(14821,'Adroit Gloves Indigo','Char_Clothing_Hands','UNDEFINED','e7bd263e-83c5-4440-a231-d070a47eb6d7','','','Lightweight, quick-drying, and durable, the Adroit fingerless gloves keep your hands warm while giving your fingers the freedom to perform delicate work. The material on the wrist extends to meet long-sleeved apparel, cutting down on places that might be exposed to the elements.'), +(14822,'Cirrus','PowerPlant','Power','aff1d3cf-2e01-48a1-8ce3-47fbdbeceb16','','','Item Type: Power Plant\nManufacturer: Tyler Design & Tech\nSize: 2\nGrade: C\nClass: Stealth\n\nThe Cirrus is for pilots that prioritize stealth above all else. This medium power plant from Tyler Design & Tech intelligently manages its energy distribution flow and performance output to achieve that end.'), +(14823,'GP-33 MOD Grenade Launcher Magazine (6 cap)','WeaponAttachment','Magazine','aff2521e-2e7a-40d5-98a1-9a6a379a2f01','','','Item Type: Magazine\nCapacity: 6\n\nThis magazine for the GP-33 MOD holds six 40mm grenades.'), +(14824,'DRAK_Cutter_Winglets_Addon_Scout_Left','Misc','UNDEFINED','d40c8401-648d-4957-8ea7-f37515e3bba2','','',NULL), +(14825,'Remote Turret','Turret','GunTurret','6d43d6f8-33b1-4a7b-b32d-02299e1ae714','','','Remote Turret'), +(14826,'AEGS_Vanguard_Thruster_Mav_Joint','ManneuverThruster','JointThruster','61c284b4-ed81-4bb7-abee-786ff41057be','','',NULL), +(14827,'Steel','Cargo','Cargo','2136e414-ab8e-4e1b-8dc5-fc5e0bb3bc69','','',NULL), +(14828,'VNCL_Glaive_Thruster_Main_Fixed','MainThruster','FixedThruster','a2fb60b8-1ce4-429c-a3ce-ae1f17c0a470','','',NULL), +(14829,'Nox Wanderer Livery','Paints','UNDEFINED','fb9a5aca-0989-4933-a740-a20362b2ff8d','','','The Wanderer livery features crisscrossing purple and grey lines over a platinum foundation. Inspired by the sacred Xi\'an gardens of R.aip?uang, famous for its trails that wander in surprising ways and encourage a focus on the journey instead of the destination.'), +(14830,'Utensil_Plate_Chips','Misc','UNDEFINED','d843fb52-fb1d-4f0a-abef-e87e21143c36','','',NULL), +(14831,'Revenant Pod','Cargo','Cargo','e897a917-c0e7-4447-94f9-87ee2816f993','','',NULL), +(14832,'Artisan Apron Ellroy\'s','Char_Clothing_Torso_1','UNDEFINED','f7ca4b6c-4cd0-4ba4-977d-b46ba6d752ae','','','Carrying Capacity: 1K µSCU\n\nWith a reinforced front pocket and colorful accent piping, Stegman\'s Artisan apron is a reliable choice for your next shift.'), +(14833,'ARGO_MPUV_1T_Thruster_Aux_Front_Top','ManneuverThruster','FixedThruster','7fd9f6f8-6090-4418-bc6c-e316ee4891ed','','',NULL), +(14834,'LeMarque Pants Yellow','Char_Clothing_Legs','UNDEFINED','97f26dc9-49a4-4b73-85b1-b8aaff88ffea','','','Carrying Capacity: 0.5K µSCU\n\nClassic cuts never go out of style. A staple of any wardrobe, Derion\'s LeMarque are built for work or play and feature microseam pleats and wrinkle-free material that will guarantee that you\'ll get years out of this classic.\n\nWomen\'s sizes currently out of stock.'), +(14835,'Turret','Turret','MissileTurret','8fafec28-467a-4672-a455-5b68997e9d86','','',NULL), +(14836,'Tungsten','Cargo','Cargo','eea18ec1-da42-42c5-9341-2501eb166e2a','','',NULL), +(14837,'display_components_pedestal_01Port_s01','ShopDisplay','UNDEFINED','c04fc939-2739-4b5e-9d31-215f2ec5f022','','',NULL), +(14838,'Venture Legs Green','Armor','Legs','7c72f1fb-e277-4d7c-9430-145937268ab2','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(14839,'DRAK_Cutlass_Blue_Thruster_Maneuver','ManneuverThruster','JointThruster','6f9f978d-258a-4213-bbd4-c0fad570ee36','','',NULL), +(14840,'H_Dashboard_Projector_HUD_AEGS_Gladius_PU','Display','UNDEFINED','780b960b-3a5e-48f0-a3b3-aa7e1ee09727','','',NULL), +(14841,'Door Control','ControlPanel','DoorPart','13e192b5-ff48-4fed-b584-ba68fb292eb5','','',NULL), +(14842,'Glow','Cargo','Cargo','2abe218c-2bf4-4123-90e7-e03c8c03860f','','',NULL), +(14843,'DRAK_Vulture_Thruster_Main','MainThruster','FixedThruster','0558ebab-3cec-403d-bcf4-b0a91c1346d2','','',NULL), +(14844,'BEHR_BallisticGatling_Ventilation_S7','WeaponAttachment','Ventilation','9c845c8e-b1c7-40a7-ba3b-d1a5f916fdd6','','',NULL), +(14845,'Ball','Char_Head_Piercings','UNDEFINED','c3155380-2169-4454-96da-5cbe78a30c7e','','',NULL), +(14846,'Snaggle Stick (New Austin Bold)','Food','Bar','c3b7ea0f-3ee0-4a07-a168-67377e09b62b','','','NDR: 14\nEffects: Hypertrophic, Dehydrating\n\nSnag one of these premium protein sticks and experience the ultimate in \"real meat\" snacking. New Austin Bold Snaggle sticks feature that sweet and spicy tang the city is famous for.'), +(14847,'Cargo_Comm_125x3_Consumer_Goods_RMC','Cargo','Cargo','b4cd4ef9-231e-40ec-91f1-4a5f4d5b2a97','','',NULL), +(14848,'Diluthermex','Cargo','Cargo','1611aa0d-91a7-48db-ad2e-91d8888f6052','','','An extremely heat resistant epoxy often used in the mounting and repair of ship thrusters. It is considered very difficult to transport in its uncured state as it becomes explosively unstable when exposed to Chan-Eisen fields during quantum travel. Specialized containers must be used to safely transport the epoxy long distances. Once set and cured, the Diluthermex is no longer reactive.'), +(14849,'FSK-8 Combat Knife','Weapon','Knife','9c86b8cf-28de-49fc-aded-5b1a5bff2d42','','','Manufacturer: UltiFlex\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nThe FSK-8 Combat Knife from UltiFlex is as sparse a weapon as you can get. While many become enamored with dazzling tech of modern weaponry, UltiFlex has focused on making a simple effective combat tool. Featuring a balanced 1055 carbon steel blade honed to a razor\'s edge, this knife is capable of handling all the abuse you can throw at it.'), +(14850,'Door Control','Door','UNDEFINED','6e6bedb3-01d6-41cd-a77a-514434ddbbad','','',NULL), +(14851,'Door Control','Door','UNDEFINED','4adc986e-098e-4328-bfd7-816fa76e8138','','',NULL), +(14852,'Luminalia Cookie Jar','Misc','UNDEFINED','4ef0c7da-3e70-4611-a571-b87cdf91cc9f','','','The perfect place to stash all your favorite holiday treats, this cookie jar features Luminalia greetings along with red and green trim.'), +(14853,'Railing_Straight_1m_LowTech_Util_Stairs_01x01_c','Usable','UNDEFINED','b2add79f-1e8d-4046-9103-883528da8119','','',NULL), +(14854,'MISC_Starfarer_Base_SCItem_Dashboard_Captain','SeatDashboard','UNDEFINED','f9004d7d-fb9c-4632-a7f7-45afa0ec9587','','',NULL), +(14855,'Defiance Arms Sunchaser','Armor','Arms','6c21c416-a769-4d01-b235-2889d29126e3','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nIncorporating the same manufacturing know-how and expertise that the UEE Marines have come to rely on, Clark Defense Systems has designed their civilian-line of Defiance heavy armors to stand firm in the face of even the most adverse combat scenarios with its three-star rated protective plating and fully integrated mobility framework.'), +(14856,'Aegis Retaliator Torpedo Rack','MissileLauncher','MissileRack','a1148caf-247d-4415-a402-0d4bee0bbc1e','','','Aegis Retaliator Torpedo Rack'), +(14857,'DRAK_Cutlass_Steel_Thruster_Maneuver_Vertical_Negative','ManneuverThruster','JointThruster','5331f132-2f79-493a-9843-695552d45d61','','',NULL), +(14858,'DRAK_Cutlass_Thruster_Maneuver_Rear_Bot','ManneuverThruster','JointThruster','2aee5bc2-9a21-41a4-82e1-13bb49f3d7bc','','',NULL), +(14859,'Taussig Surgical Pants','Char_Clothing_Legs','UNDEFINED','bd400419-0774-4be2-8a0e-5c8d1035bf35','','','Carrying Capacity: .05K µSCU\n\nComfortable, lightweight, and breathable are the top three traits surgeons look for in their work pants, so CBA started there. The Taussig are not only comfortable to wear but are made from an antibacterial and anti-rip fabric that provides excellent protection against fluids, pathogens, and other hazards of the job.'), +(14860,'hooks_torso1_02x01x04_02Ports','ShopDisplay','Default','73fc780a-fd56-4c45-8e60-c7311392023f','','',NULL), +(14861,'Torreto Pants Dark Purple','Char_Clothing_Legs','UNDEFINED','d96be049-c272-448c-bc81-72e19b84deb6','','','Carrying Capacity: 0.5K µSCU\n\n987 redefines classic slacks with the Torreto. These mid-rise, straight cut pants incorporate a section of fabric studding along the side seam to provide a pop of personality.'), +(14862,'Mustang Gamma Livery','Paints','UNDEFINED','598d7093-9bfe-44aa-b461-3d84e5ad3ba3','','','Standard livery for the C.O. Mustang Gamma.'), +(14863,'PSX Pistol Case','Misc','UNDEFINED','d123104f-fc07-4a54-9111-8c7e6fe65cb2','','','Remain discreet yet ready with this sleek case capable of holding a pistol and several attachments. It features a hard outer shell and an inside lined with a special, rigid polyurethane foam designed to securely hold a wide variety of attachments.'), +(14864,'100i 2954 Auspicious Red Dragon Livery','Paints','UNDEFINED','eac45929-9c11-496b-9f50-3401de9fba16','','','Seek peace and prosperity in the new year with the Auspicious Red Dragon livery. Outfit your ship with this bold red base paint complemented by gold accents and a stylized graphic of a dragon.'), +(14865,'Landlite Boots Imperial','Char_Clothing_Feet','UNDEFINED','ddc159b3-85b0-4a05-bc8f-6c7658666316','','','Who says work boots can\'t be comfortable? Grindstone\'s Landlite boots are built with a breathable synth-leather material to keep your feet dry, a contoured, memory footbed, and a slip-resistant outsole, making it perfect for whatever worksite you throw at it.'), +(14866,'Ketchum Beanie Green','Char_Clothing_Hat','UNDEFINED','53e54022-e45c-48bd-9161-55881219a4c7','','','Complete your cool-weather wardrobe with the classic Ketchum beanie from Alejo Brothers.'), +(14867,'Container','Container','Box','2cd87e93-a8bf-436a-8caf-9471ca74d690','','',NULL), +(14868,'Escalate Stabilizer2','WeaponAttachment','Barrel','9691ce72-fcb8-4e1c-a99f-09bde8bf3ca0','','','Manufacturer: ArmaMod\nType: Energy Stabilizer\nAttachment Point: Barrel\nSize: 2\n\nSpread per Shot: +30%\nAim Recoil: +30%\nVisual Recoil: +30%\nFire Rate: +10%\nDamage: -5%\nCharge Time: -30%\n\nUnleash the full destructive potential of your weapon with the Escalate Stabilizer2, increasing the fire rate and shot spread at the cost of accuracy.'), +(14869,'Morningstar Helmet Tan','Armor','Helmet','321bbb6e-7742-43e5-8b8d-7d467fe5cd6f','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(14870,'Hello Sunshine Happy Planter','Misc','UNDEFINED','017de65e-d996-44c1-92b7-738c3d05169b','','','Bring a little life to your decor with the Hello Sunshine Planter from Sakura Sun. Available in a number of colors and unique facial expressions, this charming ceramic container makes for a cheerful place for your plant to call home.'), +(14871,'MISC_Reliant_CargoGrid_Kore','CargoGrid','UNDEFINED','c789d9b8-5958-46b4-b8c4-2db9522033f9','','',NULL), +(14872,'Monde Core Crimson Camo','Armor','Torso','ae2616c4-766f-4cf0-ac88-fc392c7a85cc','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12.0 µSCU\nBackpacks: All\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints.\n\nThis edition features a bold red digital camo pattern.'), +(14873,'RSI_Com_Brig_3StateTray_Left','Misc','UNDEFINED','7f896209-e61b-43c3-80d6-a505d0a621dd','','',NULL), +(14874,'TrueDef-Pro Core Yellow/Grey','Armor','Torso','87e8b78b-91e0-40d3-9f42-b406df1e7fbb','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(14875,'Internal Tank','FuelTank','Fuel','5d80732c-64ab-4c02-97c2-7ea0d5235346','','',NULL), +(14876,'BroadSpec-Max','Radar','MidRangeRadar','441e0d9d-f432-4e7a-825f-6c4c5e10d9da','','','Item Type: Radar\nManufacturer: Chimera Communications\nSize: 4\nGrade: B\nClass: Industrial\n\nKeep your eyes on the prize with the BroadSpec-Max. Suitable for the largest of ships, this radar performs effectively without compromise.'), +(14877,'Fresnel \"Rockfall\" Energy LMG','Weapon','Medium','065dbfdb-63dc-4a30-9f50-80e540eb5696','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: LMG\nClass: Energy (Electron)\n\nBattery Size: 165\nRate of Fire: 550 rpm - 220 rpm\nEffective Range: 50m\n\nAttachments: Optics (S3), Underbarrel (S3)\n\nThe engineers at VOLT crafted the Fresnel LMG to bring a powerful energy weapon to the frontlines, one that can initiate a fight with a rapid spray of deadly blasts. As the weapon heats up, the shots become slower and more powerful, but be careful of overheating. A weapon of this magnitude demands a strong foundation; operators are encouraged to fire from a crouching position to allow for better recoil management.\n\nThe Rockfall edition showcases a rugged green with natural accents.'), +(14878,'Observer','Radar','MidRangeRadar','bf787055-6969-4215-a507-2a3b1dc00eac','','','Item Type: Radar\nManufacturer: Chimera Communications\nSize: 2\nGrade: D\nClass: Industrial\n\nUsing formerly classified military technology, this now publically available radar is designed to offer key information to the user.'), +(14879,'facial_hair_004','Char_Head_Beard','UNDEFINED','a55229ce-89bb-405c-a225-e507e7de07ef','','',NULL), +(14880,'Door Control','Door','UNDEFINED','5da78745-a6d9-4ccf-8984-739f8cfff30c','','',NULL), +(14881,'Seat','SeatAccess','UNDEFINED','14ca21a9-b06c-481d-b939-1c8a4b67d47b','','',NULL), +(14882,'Purifier Mask AA Support','Char_Clothing_Hat','UNDEFINED','43dbabdd-caa4-40db-9436-cddb97db9f80','','','Temp. Rating: -5 / 50 °C\n\nEnsure every breath you take is crisp and clean with the Purifier mask. It features a wide faceplate rimmed with a special synthetic rubber to provide an airtight fit, while two small lights on each side deliver a clear view ahead. \n\nThe AA Support edition is sharp red, blue, and black. An Alliance Aid decal on the front guarantees that the filter is certified to purify the air of Molina Mold.'), +(14883,'Quantainium (Raw)','Cargo','Cargo','c7be2489-8ba5-41ce-b676-794aebd01fe2','','',NULL), +(14884,'mobiGlas Original Casing','MobiGlas','Personal','c60a72a6-e313-41b6-92c3-c2fa25e70f5f','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(14885,'Fridan','Cooler','UNDEFINED','97bf2cfe-efb8-469b-9d43-6e4a88130417','','','Item Type: Cooler\nManufacturer: Wen/Cassel Propulsion\nSize: 0\nGrade: C\nClass: Civilian\n\nThe Fridan is Wen/Cassel Propulsion’s entry-level vehicle cooler. It has proven time and again that it can withstand even the worst environmental conditions, making it an ideal component for your vehicle. '), +(14886,'Venture Helmet Dark Green','Armor','Helmet','b83ce333-31f9-4b1d-a0de-563c66d7d19b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover.'), +(14887,'Stims','Cargo','Cargo','545af540-d0a5-45bc-9c11-6e6ac4155560','','',NULL), +(14888,'Aril Legs Harvester','Armor','Legs','368801d1-f112-4813-ab17-3855939cfded','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(14889,'MASTER_PowerPlant','PowerPlant','Power','aade86ef-5f9d-4325-b21a-f62bb56f3b3f','','',NULL), +(14890,'Internal Tank','FuelTank','Fuel','c8f350df-369b-41b4-b9ba-09946cea57a1','','',NULL), +(14891,'Riccite','Cargo','Cargo','85d63181-e5b9-4825-be2f-8f63b264cc03','','',NULL), +(14892,'CRUS_Starlifter_Door_Decal_AuxCrew','Decal','DoorPart','d340e102-46d1-4740-9fc1-a79ffd37c6eb','','',NULL), +(14893,'ESPR_Prowler_Thruster_Retro_02','ManneuverThruster','UNDEFINED','2fb8ee1b-8aa0-48c1-aad2-5c269df94a54','','',NULL), +(14894,'Screen','Display','UNDEFINED','5dbdb405-ef98-4c55-9401-a1f4c24657dd','','',NULL), +(14895,'Lumin V SMG','Weapon','Medium','75809555-848a-4f4d-81a0-db4457edba2d','','','Manufacturer: Klaus & Werner\nItem Type: SMG\nClass: Laser\n\nBattery Size: 45\nRate Of Fire: 562.5 rpm\nEffective Range: 25m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nKlaus & Werner\'s expert craftsmanship is once again on full display to make the Lumin V laser compact energy rifle even more deadly and dependable. A new \"interval autofire\" mode blasts five-round barrages when the trigger is held down, utilizing the target saturation that comes with autofire while providing breaks to recompensate aim. Even when constantly on the attack, the gun\'s excellent design provides low recoil and a tight spread.'), +(14896,'UrbEx Boots Dark Blue','Char_Clothing_Feet','UNDEFINED','b509215c-58f2-4754-b86e-9da5431f321e','','','From bustling backstreets to crowded clubs, the UrbEx boots will make your next step a bold one. The boots blend a stylish design with reinforced high ankle support and ultra durable outsoles.'), +(14897,'TRGT. STATUS','Seat','UNDEFINED','f509363b-7dfb-478b-bba1-26ce11053a92','','',NULL), +(14898,'m_human_mannequin_base_armor_STORMTEST1','ShopDisplay','UNDEFINED','4a27b118-e26e-4510-8e42-3c21b24f348e','','',NULL), +(14899,'ThermoWeave Hood ASD Edition','Char_Clothing_Hat','UNDEFINED','2a6597be-f456-4751-830b-2284e14c9f77','','','The ThermoWeave hood integrates a heat and impact resistant hard hat with a neck covering hood that includes a vapor barrier to keep moisture build-up to a minimum. A large faceplate provides a wide field of view and the built-in respirator features a state-of-the-art filter to help you breathe easy.\n\nWorn by employees who require an extra level of protection in their field, the ASD Edition showcases the reds and greens of the ASD branding.'), +(14900,'ST-205 Missile Rack','MissileLauncher','MissileRack','15529567-7df0-46f7-ae2a-5f8da5f0c377','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 2\nMissiles: 8xS2\n\nTo further improve the defenses of the Origin 400i, Behring built the SNT-205 \"Santoro\", which can carry and deploy eight S2 missiles.'), +(14901,'FBL-8u Undersuit Imperial Red','Armor','Undersuit','2650dcb6-59b9-4275-ba92-7524d4ddbd33','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThe FBL-8u is the first CDS undersuit to utilize the manufacturers new orb-weave technology that produces an impressively light yet strong material that can withstand the rigors of space travel. Originally developed to pair perfectly with CDS\'s FBL-8a light armor, it remains compatible with other armor sets.'), +(14902,'Anvil Gladiator - Noise Launcher','WeaponDefensive','CountermeasureLauncher','3acd0ac9-0248-4191-ab99-ad736e2d977c','','','Anvil Gladiator - Noise Launcher'), +(14903,'HexaPolyMesh Coating','Cargo','Cargo','6ec2b1fa-b085-471c-8126-e73d50a9b0a0','','',NULL), +(14904,'TRGT. STATUS','Seat','UNDEFINED','050b35f9-a41c-48f2-98c7-4ec18313138e','','',NULL), +(14905,'Hair Care Product','Misc','UNDEFINED','8aef84be-ef39-403d-8d4e-b189010e7fc0','','',NULL), +(14906,'vanduul_drone_teeth_01','Char_Accessory_Head','Vanduul','c6fa94c5-d8a0-44f3-ac59-2c419698df30','','',NULL), +(14907,'WiDoW','Cargo','Cargo','c6cbc500-da0e-46d3-822b-e1d1af45da75','','',NULL), +(14908,'ANVL_Door_Decal_Valkyrie_Pilot_Door','Decal','DoorPart','1821a619-5561-48e6-8867-8d8e8ed3f821','','',NULL), +(14909,'Seat','SeatAccess','UNDEFINED','1d1b8b51-6acc-4c22-9631-9ab9e964a11d','','',NULL), +(14910,'Defiance Legs Tactical','Armor','Legs','9010ca86-09f5-43de-9016-5aafc4cbb481','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nIncorporating the same manufacturing know-how and expertise that the UEE Marines have come to rely on, Clark Defense Systems has designed their civilian-line of Defiance heavy armors to stand firm in the face of even the most adverse combat scenarios with its three-star rated protective plating and fully integrated mobility framework.'), +(14911,'Bioplastic','Cargo','Cargo','65a1e21f-d7e2-4284-b45c-0a7c3f2bdb73','','',NULL), +(14912,'AEGS_Idris_SCItem_Seat_Bridge_Rear_Left_Back_Blocked','Seat','UNDEFINED','69dd993b-b0c5-4f3b-ac99-6ac5d79e97a5','','',NULL), +(14913,'Covalex_Datapad_Server_4x3_Screen','Display','UNDEFINED','a8f686c1-93ab-4872-ab94-e89d226b6972','','',NULL), +(14914,'DuraWork Pants Falstaff','Char_Clothing_Legs','UNDEFINED','ba2b5df0-a13d-453f-97c7-ad1a95c34c3f','','','Carrying Capacity: 2000 µSCU\n\nMade of a durable synthetic material, Stegman\'s designed the DuraWork to provide a comfortable and reliable clothing option to workers around the \'verse.'), +(14915,'Weapon_Rack_Cz_Firerat_007','Usable','UNDEFINED','58cff30c-f452-4e54-b149-cd06987d36ba','','',NULL), +(14916,'Citadel Core (Modified)','Armor','Torso','72333c0c-277e-4483-b6b7-a2bdcf7e8e6f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nThis version of Kastak Arms\' Citadel core has been modified from its original form. Kastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure.'), +(14917,'RCMBNT-PWL-3','InventoryContainer','Cargo','5eac0c3e-ff6c-46f3-8067-898ad9fd5929','','','An imprint recombinant sample created from CTLST-PWL and REAGENT-03 as part of Dr. Logan Jorrit\'s Project Hyperion experiment.'), +(14918,'test_aimodule_unmannedturret_vanduul','AIModule','UNDEFINED','d22a76e7-909c-4a40-8928-c6dfa36f63ed','','',NULL), +(14919,'Xanthule Helmet','Armor','Helmet','13a62c08-7324-47ac-be0d-885b6ef8a07d','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nAdapted by Syang Fabrication to meet the unique requirements of the Human physique, the Xanthule helmet faithfully recreates the bold silhouette preferred by Xi\'an. When paired with the Xanthule suit, it creates a distinct and eye-catching look.'), +(14920,'Whamburger','Food','Junk','cffa8202-6e3b-4354-86e7-8d73eefeb582','','','NDR: 38\nEffects: Dehydrating, Hyper-Metabolic\n\nThe original burger that put Whammer\'s on the starmap. All Whams come with crisp greens, tomatoes, piccamix, and Crave Sauce.'), +(14921,'Deo Shirt Imperial','Char_Clothing_Torso_0','UNDEFINED','9468dc21-fabf-49bc-ad74-7cd117005652','','','Fiore\'s Deo is a slim cut work shirt that\'s as practical as it is timeless. Featuring a high collar and metal neck clasp, the Deo has been a mainstay in business attire.\n\nWomen\'s sizes currently out of stock.'), +(14922,'TRGT. STATUS','Seat','UNDEFINED','d450c9f9-3fb6-4942-9fbc-fb682940f2ad','','',NULL), +(14923,'RSI_Apollo_OC_Right_Tier_3','Room','UNDEFINED','4aadae23-4390-e421-e741-0479629d1296','','',NULL), +(14924,'Arden-SL Arms Coramor Edition \"Kismet\"','Armor','Arms','6d779fff-3f1b-4744-9456-85ffdafd95bc','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics. The special Kismet edition of this armor features black and pink coloration in honor of the ship Yuri Ilyin flew in the classic vid \'Coramor\' while he searched for his lost lover Corazon Tan.'), +(14925,'KRIG_P72_Archimedes_Thruster_Retro_02','ManneuverThruster','FixedThruster','24e9bbcb-08a6-4d7c-971c-a9550460b75c','','',NULL), +(14926,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','5e0544cb-44c1-4686-8a84-c69104f4853b','','','Joker Defcon - Noise Launcher'), +(14927,'Morozov-SH Arms Iceflow','Armor','Arms','0c1a1d6a-23e0-4eed-95e9-5270c8fd9282','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(14928,'SalvageFillerStation_AEGS_Reclaimer','SalvageFillerStation','UNDEFINED','08df09b5-9d89-4be3-91cf-fcceb88783c3','','',NULL), +(14929,'Diamond (Raw)','Cargo','Cargo','8f599320-e019-49da-8b48-4ff768fbe16a','','',NULL), +(14930,'ATLS Foreman Livery','Paints','UNDEFINED','f7dd0357-5c98-4734-b924-88c27768cfd1','','','Blending elements of olive green and saffron orange, the Foreman livery is completed with bold black accents.'), +(14931,'Borase','Cargo','Cargo','95c0b5ed-d62b-49e6-ba9c-36d3a8cda435','','',NULL), +(14932,'Door','Door','UNDEFINED','78df3f84-08a3-44a3-a96a-151c472054d2','','',NULL), +(14933,'AEGS_Avenger_Warlock_Thruster_Retro','ManneuverThruster','JointThruster','68fb7238-5f64-4a2a-a942-437f9b00d068','','',NULL), +(14934,'Door Control','ControlPanel','DoorPart','6c0dfb2c-742c-41d6-9704-71e6e3f17046','','',NULL), +(14935,'Mercury','Cargo','Cargo','441a7b93-fb8e-4a17-b8ec-f52a21838e4d','','',NULL), +(14936,'Karna \"Valor\" Rifle','Weapon','Medium','5862ed63-e812-4a3e-963a-15b71124fed8','','','Manufacturer: Kastak Arms\nItem Type: Assault Rifle\nClass: Energy (Plasma)\n\nBattery Size: 35\nRate Of Fire: 500 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nThe Karna is a classic Kastak Arms plasma assault rifle. This mid-range mauler features charged and full-auto fire modes to allow for quick and easy situational adjustments. Besides its renowned firepower, the Karna\'s rugged looks and reliability have made it one of Kastak Arms\' most popular weapons. The bold blue and gold color scheme gives the Valor edition a valiant and dignified appeal.'), +(14937,'Scrap','Cargo','Cargo','ef3a5a2f-aefb-42ac-9feb-57cee23e9ac7','','',NULL), +(14938,'Breakneck S4 Gatling','Weapon','Gun','353a4aae-1fb1-470c-a38c-2ca32e61bb12','','','Manufacturer: Unknown\nItem Type: Ballistic Gatling\nSize: 4\n\nWhile the exact origins and designer are unknown, the Breakneck is built off an existing ballistic gatling then modified to cause more mayhem. When the Breakneck starts shooting, the fun begins.'), +(14939,'Seat_Bench_4_ORIG_890Jump_Mastersuite','Usable','UNDEFINED','e6a29e4f-ea88-4c1b-9543-9525788e2aa4','','',NULL), +(14940,'Constellation White Heron Livery','Paints','UNDEFINED','87f0516e-a734-4c6c-aad3-55cb8b902630','','','The White Heron Livery combines white with dark blue and orange highlights to provide your Constellation a stylish spacefaring look.'), +(14941,'SoftLock_Terminal_Standard_Starfarer_Fuel_Pods_Ship_L1','Display','UNDEFINED','d44b2d59-1104-455d-b836-fd85c6cfdf3c','','',NULL), +(14942,'Ready-Up Helmet Grey','Char_Clothing_Hat','UNDEFINED','a9ab5ae8-d363-4a6c-8895-36855a1e8681','','','The Ready-Up is a dependable, affordable softshell helmet alternative. Built from space-age plastic, the Ready-Up provides a vacuum-ready seal to keep you breathing for longer.'), +(14943,'PPC Burrito','Food','Junk','f3b88160-c5ac-495c-a2e6-2f20d32f0324','','','NDR: 49\nEffects: Hypertrophic, Hyper-Metabolic\n\nTorpedo Burrito crams a full payload of flavor into their hearty and healthy PPC burrito, featuring a blend of pollo (chicken), peas, carrots, and rice wrapped in their signature size-4 multi-grain tortilla.'), +(14944,'Glow','Cargo','Cargo','1d5f68e5-5f7d-4f7c-8223-220fbf83c0c2','','',NULL), +(14945,'Door Control','Door','UNDEFINED','5058dd6c-a13b-43a2-bba1-27bbb7b1eb06','','',NULL), +(14946,'Seat','Usable','UNDEFINED','872bece6-cb6c-4a41-820d-9f4b80cbc687','','',NULL), +(14947,'Clempt Pants','Char_Clothing_Legs','UNDEFINED','1f579567-cf2c-458a-9048-c4fefe61fe57','','','Carrying Capacity: 2K µSCU\n\nStegman\'s factory pants have been taken to the next level with the Clempt line. These rugged all-purpose pants come with double knees for extra comfort and protection and are made from tough composite weave fabric to last as long as the work needs.'), +(14948,'CRUS_Starlifter_Door_Decal_Turret','Decal','DoorPart','112574dd-4243-49a0-a5ae-57b21f1bac80','','',NULL), +(14949,'Pyro RYT \"QV\" Multi-Tool','Weapon','Gadget','953243bc-1a08-43d5-a074-e6d072e2e04c','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier. The \"QV\" edition consists of a carbon black and industrial yellow, with the defunct QV Planet Services\' logo branded on top.'), +(14950,'Ignite II Missile','Missile','Missile','d358cf84-9c78-4929-a2ad-b9caade81962','','','Manufacturer: Firestorm Kinetics\nTracking Signal: Infrared\nSize: 2\n\nThe Ignite is Firestorm\'s premier brand of heat-seeking strike missile that is the definition of Fire and Forget. Simply let it fly and enjoy the show.'), +(14951,'Bed','Usable','UNDEFINED','0649f838-c6bc-40e4-be38-247ec7de4def','','',NULL), +(14952,'Day One Shirt Grey','Char_Clothing_Torso_0','UNDEFINED','a2e23cd7-636d-4568-af9a-95fe072486c9','','','This Henley shirt from Stegman\'s is made with AirFlow technology, a stain-resistant, air-cooled fabric that keeps you comfortable and dry.'), +(14953,'CNOU_Mustang_Dashboard','SeatDashboard','UNDEFINED','fc15b6f0-d85a-4162-8c21-acb79977f6e7','','',NULL), +(14954,'Remote Turret','Turret','BottomTurret','29dc5b05-e164-429c-a162-71299198bab9','','','Multitask on the battlefield with this remote turret system. Featuring precise controls and a wide field of fire, the turret allows pilots to add combat support to their resume.'), +(14955,'Veil Flash Hider2','WeaponAttachment','Barrel','156f6405-7fdc-40e4-a783-703e807d9f88','','','Manufacturer: ArmaMod\nType: Flash Hider\nAttachment Point: Barrel\nSize: 2\n\nRecoil Stability: +15%\nRecoil Smoothness: +15%\n\nThe Veil Flash Hider2 is an S2 flash hider from ArmaMod. Designed to reduce muzzle flash, it will help keep your position hidden once the action begins.'), +(14956,'VariPuck S3 Gimbal Mount','Turret','GunTurret','acd1c5dc-ecc1-417d-9a4d-02c6e93998cd','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 3\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(14957,'Hull A Horizon Livery','Paints','UNDEFINED','34d445c9-be28-40af-9b62-70bc99dbafcb','','','Even a hard working spacecraft deserves to look its best. The Hull A Horizon Livery offers a stylish two-tone grey-and-white color scheme that\'s ideal for turning heads at the spaceport.'), +(14958,'Internal Tank','QuantumFuelTank','QuantumFuel','779ef01c-de46-490b-b4cf-2dddab0156ee','','',NULL), +(14959,'display_ship_components_03x01x01_shields_s1','ShopDisplay','UNDEFINED','02bf3f11-e314-4b5b-b8a5-304f4118d801','','',NULL), +(14960,'Door Control','Door','UNDEFINED','f1c6f6ec-49f9-4ae2-ac6a-b7267e59d5c0','','',NULL), +(14961,'Microid Battle Suit Core Badland','Armor','Torso','bee05359-c97d-475c-9806-6a739d6fb95a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(14962,'Prota','Misc','UNDEFINED','1065fbcc-b306-4ec4-8acc-9bcc451f839a','','',NULL), +(14963,'MISC_Starfarer_Gemini_Thruster_Mav_Joint_Bottom','ManneuverThruster','JointThruster','a84d4fcd-71de-44c7-87b1-c2a86b171ced','','',NULL), +(14964,'AEGS_Javelin_Thruster_Mav_Main_01_Aux_Top','ManneuverThruster','FixedThruster','844c66e5-5068-4030-a60d-560b03e590ec','','',NULL), +(14965,'display_components_s2_modular_qdrive','ShopDisplay','UNDEFINED','6d5525df-c2f4-461f-a015-e77406f23142','','',NULL), +(14966,'Geist Armor Arms ASD Edition','Armor','Arms','67e7b5a3-eea2-4a72-b362-e5b9dc70e722','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.\n\nThe ASD Edition features a hooded cloak printed with a dark urban camo pattern alongside ASD\'s signature logo.'), +(14967,'Inquisitor Legs (Modified)','Armor','Legs','5bfd0bd4-8aca-48dd-9b37-72817435cb29','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\n\nThis version of Kastak Arms\' Inquisitor legs has been modified from its original form. Strength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(14968,'Personal Care Product','Misc','UNDEFINED','0eec5c2c-a089-4909-b208-69d5d691c84f','','',NULL), +(14969,'ThermalFoam','Cargo','Cargo','44cf366a-406a-48cd-be4f-196109f4adab','','',NULL), +(14970,'Dashboard','SeatDashboard','UNDEFINED','f473b7d5-d78e-4bdd-bd86-5dea8e1655c4','','',NULL), +(14971,'Carryable_1H_CY_can_test_1_b','Drink','Can','b9625551-30b8-49e9-b7f4-4dc52dbac3e1','','',NULL), +(14972,'Snapback Boots','Char_Clothing_Feet','UNDEFINED','a47cf94c-a0dd-4799-85eb-4aabe11b2523','','','Vibrant light green leather and bold metallic accents bring an eye catching look to the Snapback boots. Grindstone Boots\' classic thick, cushioned sole and an odor absorbing insole are complemented by a steel toe, magnetic clasps protecting the laces, and a metallic counter for additional support.'), +(14973,'Loscha Work Vest Saddle','Char_Clothing_Torso_1','UNDEFINED','0e55f9a0-dfc6-4586-9d81-960056420ffd','','','Carrying Capacity: 400 µSCU\n\nThe heavy-duty Loscha Work Vest by Alejo Brothers is designed for people who want to be prepared for anything at any time.'), +(14974,'Vigilance','Radar','MidRangeRadar','d395fb78-542f-4cb2-afa4-8e787ec15635','','','Item Type: Radar\nManufacturer: GNP\nSize: 2\nGrade: B\nClass: Military\n\nVigilance means keeping a careful watch for any possible dangerous threats and the GNP radar that bears this name allows you to do just that with its proprietary emission accrual.'), +(14975,'ArcticStorm','Cooler','UNDEFINED','d98450a2-605a-47b6-a8cd-f43df14ddf0e','','','Item Type: Cooler\nManufacturer: Lightning Power Ltd. \nSize: 1\nGrade: C\nClass: Civilian\n\nIf you’re after a cooler that balances performance, durability and stealth, then look to the ArcticStorm. This mid-grade cooler from Lightning Power Ltd uses their centuries old technology to provide performance that can be relied upon.'), +(14976,'ANVL_F7CR_Mk2_NoseCap','Misc','UNDEFINED','cfaaf5e5-a35b-4ff1-826f-57841c70f834','','',NULL), +(14977,'Personal Storage','Cargo','UNDEFINED','512c60ba-6960-49f4-a9a1-98ac5219617e','','',NULL), +(14978,'Worthy Journey T-Shirt Black','Char_Clothing_Torso_0','UNDEFINED','c5df0679-9088-4265-a724-68fee184979f','','','Whether you\'re piloting or simply enjoying the ride, a Crusader ship makes it a journey worth taking. This shirt celebrates that spirit by featuring a fleet of Crusader ships plus their iconic logo and tagline.'), +(14979,'Geist Armor Legs ASD Edition','Armor','Legs','9f19f5f7-cae2-4700-ab1f-5ba645f93fe8','','','Item Type: Light Armor\nDamage Reduction: 20%\nCarrying Capacity: 2.5K µSCU\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.\n\nThe ASD Edition features a hooded cloak printed with a dark urban camo pattern alongside ASD\'s signature logo.'), +(14980,'BEHR_JavelinBallisticCannon_PowerArray_S7','WeaponAttachment','PowerArray','ccb31270-96cc-40df-9e6d-77893acb48cf','','',NULL), +(14981,'DRAK_Caterpillar_SCItem_Dashboard_Support','SeatDashboard','UNDEFINED','e6a1ca47-c42c-4d25-a2cc-498e6ca48d1c','','',NULL), +(14982,'ARGO_MOLE_Dashboard_Pilot','SeatDashboard','UNDEFINED','54ed812f-e738-4844-8359-2f709599db52','','',NULL), +(14983,'EE16 (16x Telescopic)','WeaponAttachment','IronSight','77521326-082c-44f9-a5b2-09dfb87f3f14','','','Manufacturer: Behring\nType: Telescopic \nAttachment Point: Optic\nMagnification: 16x\nAim Time: +0%\nSize: S3\n\nGet a clear view of your target from afar with the EE16. Behring craftsmanship produced a 16x scope that\'s lightweight, durable, and deadly accurate. A rigorous 22-step testing process ensures the EE16 can deliver precision targeting even after encountering extreme weather or surviving battlefield wear and tear.'), +(14984,'Ponos Boots Blue','Char_Clothing_Feet','UNDEFINED','494e01b3-f990-4c73-b0fa-b7cb98d7dea1','','','Quite simply, R6 Pro\'s Ponos boots were built for backbreaking work. Constructed out of Thermosulate technology, these waterproof and insulated workboots are rated for sub-arctic environments while the composite outsole ignores hazards to maintain traction when you need it most.'), +(14985,'Manned Turret','TurretBase','MannedTurret','4b087b44-64cf-4916-8f3a-94c0a37c72e9','','',NULL), +(14986,'AcryliPlex Composite','Cargo','Small','4e72901b-3932-4af8-ab04-7061f92dc1c0','','','This composite is a moldable material used in the construction of explosives. In addition to being commonly used in demolition applications for heavy industry and mining, it is also used to create small potent warheads. Care must be taken while transporting larger quantities of the composite as it is impact and heat sensitive.'), +(14987,'Molina Ventilation Filters','Cargo','Cargo','b0ada17a-16e9-438f-8eb7-71ff17647e9b','','','Special filters developed by Gyson to replace faulty units and purify the air of Molina Mold spores.'), +(14988,'Intrepid-OS','Suit','ThrusterPack','9dfcfc93-f4f0-48c6-9f74-a0d528b14500','','','RSI\'s Intrepid has been a reliable name in flight suit components for decades. The focused nozzle system provides consistent thrust for precise control in zero gravity.'), +(14989,'Guardian Shadow Gild Livery','Paints','UNDEFINED','7c00f248-7599-4b22-b341-2c8721ff7712','','','For those Guardian pilots who prefer to subtly show their ostentatious side, the Shadow Gild livery variant features a dark gray and black camo hull and stylish gold highlights.'), +(14990,'Citadel Core Roughshod','Armor','Torso','a31defa6-6c83-4605-a743-61b683df64cf','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(14991,'vanduul_pilot_legs_01_01_01','Armor','Legs','0f9a5657-da0a-43f1-ba8f-678cf44b957e','','',NULL), +(14992,'Zeus MK II Starscape Livery','Paints','UNDEFINED','2d8be48b-0cb7-4402-b7b6-20b46dc187f5','','','The subtle style of the Starscape livery features black and steel-colored panels with orange highlights.'), +(14993,'Medical Bed','Usable','UNDEFINED','b53e4969-f9d6-4e6e-b8ea-e1d9b3b72f83','','',NULL), +(14994,'Seat','SeatAccess','UNDEFINED','c2ba7431-0b3f-44a8-bd0b-bb7828d4eb76','','',NULL), +(14995,'Door Control','Door','UNDEFINED','6a362941-36c6-46f8-a3fc-8c69b7c37caa','','',NULL), +(14996,'Geist Armor Arms Whiteout','Armor','Arms','310d5039-73e1-4843-aeaf-60194d767e03','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(14997,'Scythe Ship Armor','Armor','Medium','90a27196-aa22-4151-bba1-e96865579726','','','Scythe Ship Armor'), +(14998,'AEGS_Retaliator_Turret_Lights','Room','UNDEFINED','91b54bcd-8da4-445f-8854-aa6b2a94ede7','','',NULL), +(14999,'GSX-RF','ExternalFuelTank','UNDEFINED','a9994d83-2685-4542-bf08-5b9b2005e85a','','','Manufacturer: Stor*All\nItem Type: Fuel Pod\nFlow Rate: 1.5 SCU/s\nCapacity: 50 SCU\n\nWhen it comes to balancing your bottom line, time is money. That’s why Stor*All designed the GSX-RF fuel pod to have one of the fastest flow rates on the market. While it does have a slightly reduced capacity, the time saved and modest improvements to the safe flow rate makes this an ideal solution for service ships.'), +(15000,'Theaters of War: Supreme Glasses','Char_Accessory_Eyes','UNDEFINED','6cedf8cd-51e3-4be2-9daf-8a30612329eb','','','Inspired by the infamous Nexus-based outlaw group featured in the Star Marine game mode Theaters of War (Working Title), this intimidating and ostentatious limited-run eyewear is made with impact resistant red lens set in an intricately designed metal frame with gold plating.'), +(15001,'Sabre_Firebird_WingCap_Right_Collector','Misc','UNDEFINED','9455eaee-b3a8-41f5-8a7b-c3723bce6c70','','',NULL), +(15002,'Standing_Harness_ESPR_Prowler_B','Usable','UNDEFINED','54c75a3a-13a0-4df6-ba3c-a65c12eecff9','','',NULL), +(15003,'INTK_AEGS_Sabre_Raven','FuelIntake','Fuel','5ea491dc-0b6d-4ca9-b7f9-03bbb2bade6b','','',NULL), +(15004,'Dolivine','Cargo','Small','33377146-d4a7-4e68-8deb-41728b3ceb46','','','A dull green gemstone that is used decoratively but also can be used for industrial purposes thanks to its resistance to weathering and high density.'), +(15005,'f_human_mannequin_slaver_medium','ShopDisplay','UNDEFINED','5189a299-ec0e-40c3-8cd7-68a4d4ea0c6b','','',NULL), +(15006,'Gallant \"Nightstalker\" Rifle','Weapon','Medium','8c46f63f-5434-4273-a2f3-7500d03d6948','','','Manufacturer: Klaus & Werner\nItem Type: Assault Rifle\nClass: Energy (Laser)\n\nBattery Size: 45\nRate Of Fire: 450 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nDependable assault weapons never go out of style. Klaus & Werner maintains that tradition by unveiling the Gallant. This energy-based assault rifle is capable of providing accurate and sustained fire at targets up to medium range, while its high-capacity power system allows operators to fire considerably more shots per battery.'), +(15007,'MISC_Freelancer_MAX_Thruster_Retro','ManneuverThruster','FixedThruster','28ae6d3d-a474-487e-94bc-cbda0b3feecb','','',NULL), +(15008,'ESPR_Prowler_Thruster_Aux','ManneuverThruster','UNDEFINED','034e5297-a440-4ad0-904e-298eaebfde57','','',NULL), +(15009,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','acfe4d61-1e8b-4de7-b836-c9fd9c6c7e78','','','Joker Defcon - Noise Launcher'), +(15010,'RAFT Lovestruck Livery','Paints','UNDEFINED','afb8a520-7bd4-42ee-9f5e-a20611825291','','','Inspired by the colors of Coramor, the Lovestruck livery is a stylish metallic pink and black look for your RAFT.'), +(15011,'TRGT. STATUS','Seat','UNDEFINED','450e7f4f-a466-3aba-f1ab-d8f416964589','','',NULL), +(15012,'Scaleweave Undersuit','Armor','Undersuit','33f8f933-b6d8-4434-bcca-04314012d5a6','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThis baseline undersuit from Kastak Arms offers complete protection seal from the elements and compatibility with multiple armor types.'), +(15013,'Mala','Misc','Harvestable','1bb9c577-1561-4904-aafa-4d106810383e','','','Digestion of the unique toxins found in the Mala fly causes confusion of the congnitive pathways of the brain and results in synesthesia where different sensory experiences cross and mix. Effects described by users range widely; from being able to see music to tasting colors. Since pain does not register the same way while under the influence of the toxin, many people of have been severely injured while \"sense swapping.\" For example, one user lost their arm after perceiving the heat from a thruster engine as pleasurable.'), +(15014,'Stims','Cargo','Cargo','f3a264be-05db-4b4e-a6b1-964530895e4c','','',NULL), +(15015,'Mercury','Cooler','UNDEFINED','335e94ef-d8e9-4ac3-8966-655881c1ea14','','','Item Type: Cooler\nManufacturer: Aegis Dynamics \nSize: 3\nGrade: C\nClass: Military\n\nIn combat situations, even the smallest advantage can lead to big gains. With Aegis’ Mercury cooling system onboard, you’ll be able to push your ship hotter for longer when you need it most.'), +(15016,'INTK_ARGO_RAFT','FuelIntake','Fuel','4b265289-9216-4b39-8c64-760fb20f2f11','','',NULL), +(15017,'DRAK_Cutlass_Steel_Thruster_Maneuver_Top','ManneuverThruster','JointThruster','5daf1571-8551-432e-b827-66dae75646c5','','',NULL), +(15018,'RSI_Bengal_Thruster_Retro_Top_Left','ManneuverThruster','JointThruster','24424ae0-0eb2-4ef2-99a1-c0c0d063a12e','','',NULL), +(15019,'JOKR_DistortionCannon_Barrel_S2','WeaponAttachment','Barrel','318457f6-8e03-4fd8-af22-2eff4a63f501','','',NULL), +(15020,'MSD-543 Missile Rack','MissileLauncher','MissileRack','fbebb6d6-0ef9-4661-9ce7-2e3746e83d19','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 5\nMissiles: 4xS3\n\nBehring’s MSD-543 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 5 hardpoint for the reliable and effective launch of four S3 missiles.'), +(15021,'Access','SeatAccess','UNDEFINED','9ebb1fc7-d694-47fd-962a-8511e9a255ed','','',NULL), +(15022,'Gasping Weevil Eggs','Cargo','Cargo','665e1748-57ee-4603-ba42-ea41aae459f9','','',NULL), +(15023,'Tuvic Outerwear Jacket Crimson','Char_Clothing_Torso_1','UNDEFINED','b6e9a9eb-25e8-4256-a1ad-7a07e9eb89db','','','Carrying Capacity: 2K µSCU\n\nAlejo Brothers have seamlessly blended functionality and style with the Tuvic line of outerwear. These rugged jackets feature reinforced leather padding to offer additional protection and support while still maintaining a modern aesthetic.\n\nWomen\'s sizes currently out of stock.'), +(15024,'Weapon_Rack_Cz_002','Usable','UNDEFINED','4e601ad8-a97f-4534-ba9b-31b4f03c4d21','','',NULL), +(15025,'Paint_Vanguard_Hoplite','Paints','UNDEFINED','c868378c-2c93-4fda-bb11-8374b23ccb8b','','',NULL), +(15026,'RSI_Zeus_Cargo_CargoGrid_Main','CargoGrid','UNDEFINED','63134ef8-6b8e-440d-b908-1867c1ff99d2','','',NULL), +(15027,'Ventra Gloves Seagreen','Char_Clothing_Hands','UNDEFINED','cc5026ba-dd1b-4538-a8de-0b1ce21ff09a','','','Keep your hands warm and dry with Fiore\'s Ventra gloves. Microstitching creates a snug, tailored fit to keep you looking stylish and warm.'), +(15028,'Flight Blade','FlightController','UNDEFINED','73a61bfd-79da-473a-a580-4a201e32fa1c','','',NULL), +(15029,'Ready-Up Helmet Orange','Char_Clothing_Hat','UNDEFINED','2223e9c7-3b6b-4865-80c6-3cf52d5c6027','','','The Ready-Up is a dependable, affordable softshell helmet alternative. Built from space-age plastic, the Ready-Up provides a vacuum-ready seal to keep you breathing for longer.'), +(15030,'Table_2_Seat_High_Lowtech_1_a_1Seat','Usable','UNDEFINED','aaa51e34-b568-434c-a674-f1a180612df9','','',NULL), +(15031,'Mala','Cargo','Cargo','b49e4412-cc20-4355-afd4-96f4d077e1af','','',NULL), +(15032,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','6bbad7aa-f9ac-415e-8ff3-9f206166c04a','','','Joker Defcon - Noise Launcher'), +(15033,'Weapon_Rack_RSI_Zeus_3_Slot','Usable','UNDEFINED','4a13ce18-6f7a-4fea-8799-b53e377aae0a','','',NULL), +(15034,'Walesko','FPS_Consumable','Hacking','5a2f8d9f-e1f8-4048-8eb5-8f479ca31fc2','','','Instructions for how to build this simple cryptokey were first published publicly in 2887 by political activist Aris Walesko who had hoped that it would lead to greater governmental transparency. Though not up to the standards of most modern security protocols, this slow and unreliable device it is still in use today owing to its ease of construction and wide availability from numerous small manufacturers.'), +(15035,'Access','SeatAccess','UNDEFINED','48b008b0-59d9-47e8-b94e-341016470744','','',NULL), +(15036,'mobiGlas Lemon Casing','MobiGlas','Personal','eef7d68b-f083-467b-b89b-25ede526fb5f','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(15037,'AEGS_Sabre_Raven_Thruster_Retro_Left','ManneuverThruster','FixedThruster','dfe6d395-69b9-4c1a-9b48-db2a5b208312','','',NULL), +(15038,'Railing_Straight_8m_LT_Delta_a','Usable','UNDEFINED','6406d31e-0aee-4320-8f14-78a05018ec6f','','',NULL), +(15039,'Door Control','ControlPanel','DoorPart','138936a5-9413-45b9-a2c2-114dece54d78','','',NULL), +(15040,'Vehicle_Screen_MFD_Holographic_MISC_Starfarer','Display','UNDEFINED','bfd98792-1115-4f15-864e-7a428aa0bc14','','',NULL), +(15041,'Bottle','Bottle','Default','a66631e0-28f0-4b86-9108-444c3bc8201e','','','Bottle'), +(15042,'Paint_Reclaimer_NineTails','Paints','UNDEFINED','c2449090-f4ce-493e-83de-db8c6ca71ca8','','',NULL), +(15043,'Havoc Scattergun','Weapon','Gun','2ef5eb91-95ec-442c-a856-79a39f84d365','','','Manufacturer: Apocalypse Arms\nItem Type: Ballistic Scattergun\nSize: 1\n\nSow dread across the battlefield with the Havoc from Apocalypse Arms. This size one scattergun deals massive damage at close range, making it the perfect weapon for finishing a fight.'), +(15044,'Constellation Andromeda Ship Armor','Armor','Medium','19f2a8ef-9817-4a52-888c-efbf77e155d9','','','Constellation Andromeda Ship Armor'), +(15045,'Door Control','ControlPanel','DoorPart','5d424c68-2742-41b4-b3a4-4e6cefe6b3a7','','',NULL), +(15046,'counter_display_mod_end_b_0038x01x01_01Port_HackingTools','ShopDisplay','UNDEFINED','411a3ce5-c7a2-4cd4-840c-d7a5890d01e9','','',NULL), +(15047,'Flight Blade','FlightController','UNDEFINED','14e4deb5-3ef7-485f-b8bb-00abb4eba9a0','','',NULL), +(15048,'INTK_CRUS_Star_Runner','FuelIntake','Fuel','530549bf-d7c6-486b-8cfe-f0a3157bb7ca','','',NULL), +(15049,'VariPuck S2 Gimbal Mount','Turret','GunTurret','c5cb44d6-deba-450a-81c6-828edb59b10d','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 2\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(15050,'Flight Blade','FlightController','UNDEFINED','70260d5d-b70d-42c1-bd79-b8ac969d790a','','',NULL), +(15051,'Suckerpunch Cannon','Weapon','Gun','d195eb47-24b8-45c0-a4d0-1771d60dc1a8','','','Manufacturer: Joker Engineering\nItem Type: Distortion Cannon\nSize: 1\n\nThe geniuses over at Joker have done it again. The Suckerpunch Distortion autocannon is a long-range weapon that drains your target\'s power supply rather than damaging the physical body of the ship, making it ideal for law-enforcement or other applications.'), +(15052,'Remote Turret','Turret','GunTurret','a3208e7f-9871-4aa7-a496-f088b743e76d','','','Remote Turret'), +(15053,'Pioneer I Missile','Missile','Missile','1fcc8a40-af4a-4446-8a7a-354d9244b5d1','','','Manufacturer: Behring\nTracking Signal: Electromagnetic\nSize: 1\n\nBehring prides itself on dependability and the Pioneer is no exception. The updated Oracle EM tracking system has proven itself time and again in numerous consumer-testing reports against similarly classed proximity missiles.'), +(15054,'Carafi Packet','Food','Sachet','2a5c0893-9cef-487c-ad6c-06608307d669','','','NDR: 10\nEffects: Hypermetabolic\n\nA package containing small pieces of carafi, a flavorless nutrient jelly.'), +(15055,'Atlasium','Cargo','Cargo','17a049e0-a826-4501-83c7-5585af5d0080','','',NULL), +(15056,'Rockridge Boots Daylight','Char_Clothing_Feet','UNDEFINED','07c26ced-8c59-4d45-9583-177572bc5a13','','','With the Rockridge, Grindstone has created a comfortable boot with a wide laced collar that allows wearers to adjust the fit to their level of comfort while still keeping the elements out.'), +(15057,'AEGS_Retaliator_Thruster_Mav_Fixed_Rear_Top','ManneuverThruster','FixedThruster','b2d939c3-965d-4181-8451-5fa9d83b06bf','','',NULL), +(15058,'RADR_RSI_S04_Polaris','Radar','MidRangeRadar','a39d0aa5-f1af-49fb-aad0-0c1cde0f133f','','',NULL), +(15059,'MISSILES','MissileController','UNDEFINED','97dc0b1a-e282-47d1-98c9-1f01e4332162','','',NULL), +(15060,'ORIG_100i_Winglet_Left','Misc','UNDEFINED','d5de464f-243c-4403-bc3c-47b16c7aaade','','',NULL), +(15061,'H_Dashboard_Projector_HUD_AEGS_Hammerhead','Display','UNDEFINED','b490a6e1-4c9e-4904-aac4-10e4838c86ec','','',NULL), +(15062,'Door Control','ControlPanel','DoorPart','e94e3e37-1e8c-4c49-beef-1f8c101754ff','','',NULL), +(15063,'Seat','Usable','UNDEFINED','b81ff5eb-2999-4a7e-8730-7a770d74c709','','',NULL), +(15064,'Custodian \"Scorched\" SMG','Weapon','Medium','dd24b515-3d1c-4adf-9b34-781c089169cc','','','Manufacturer: Kastak Arms\nItem Type: SMG\nClass: Energy (Laser)\n\nBattery Size: 60\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe Custodian SMG from Kastak Arms focuses on a high rate of fire over damage and accuracy making it an ideal choice for sweeping through tight environments and close quarters combat. The Scorched edition features a unique flame patina.'), +(15065,'SHIELDS','ShieldController','UNDEFINED','2c591044-ab1c-4e10-8cd8-e0a42117f123','','',NULL), +(15066,'Carryable_1H_CY_bar_chocolate_1_a','Misc','UNDEFINED','e5e398df-271a-493e-bd99-bb27468270a3','','',NULL), +(15067,'nvy_flightsuit_01_01_01','Armor','Undersuit','6f61ec92-3459-40f5-900a-ea758d92c3f8','','','@LOC_PLACEHOLDER'), +(15068,'Door Control','Door','UNDEFINED','a169a826-609d-4671-b9ff-d52519086f21','','',NULL), +(15069,'Ursa Skullcrusher Livery','Paints','UNDEFINED','87e6dac9-8efa-4f1f-8078-3dcf2754e0b8','','','Exude attitude with the Skullcrusher livery for the Ursa, which features a massive skull across the top.'), +(15070,'Mount_Gimbal_Mining_MPUV','UtilityTurret','GunTurret','6a9f2832-d96e-4929-bdd3-d83ba1d90003','','',NULL), +(15071,'Corundum','Cargo','Small','0cbe992e-013a-48ba-b219-0c10c0478ff9','','','The crystalline form of aluminum oxide. Used as a gem. Varieties include ruby, sapphire, and padparadscha.'), +(15072,'fruit_plant_1_b_1001','Misc','UNDEFINED','121ac2f6-a40d-4405-91d6-69db9200c03f','','',NULL), +(15073,'Cargo_Comm_125x3_Scrap_a','Cargo','Cargo','3d9b2ab7-3e41-4a2d-8427-c17f764ec9cc','','',NULL), +(15074,'fruit_plant_1_b_3001','Misc','UNDEFINED','8edd15c9-c255-4a27-8bc0-83cf4e74de29','','',NULL), +(15075,'fruit_plant_1_b_2001','Misc','UNDEFINED','03503bf9-d507-40a1-9e4d-3a711b470da3','','',NULL), +(15076,'Ma\'s Ready to Eat Beef Home Stew','Food','Tin','431c2732-1e3e-45c0-9d1b-9e59f7a8948e','','','NDR: 36\nEffects: Dehydrating, Hyper-Metabolic\n\nMa\'s Ready to Eat Beef Home Stew has the classic taste you love and the convenience your busy life demands.'), +(15077,'fruit_plant_1_b_5001','Misc','UNDEFINED','f6e9c66a-28c8-4bbb-8a63-eb8f6aaaab77','','',NULL), +(15078,'fruit_plant_1_b_4001','Misc','UNDEFINED','ec7eaf03-db06-41ea-96a9-a0c493b75bf1','','',NULL), +(15079,'Stud','Char_Head_Piercings','UNDEFINED','89106679-bb54-44af-8228-bf1a3b0bc24f','','',NULL), +(15080,'fruit_plant_1_b_6001','Misc','UNDEFINED','4efe6fc6-bdf3-4272-9b7b-8adcabcfeee2','','',NULL), +(15081,'Door Control','Door','UNDEFINED','d379ab1f-07ad-4af6-a544-e725a653bd11','','',NULL), +(15082,'Aurora Mk I UEE Distinguished Service Livery','Paints','UNDEFINED','5b57d31b-a123-4094-a2ef-935d7285b99d','','','Your love of the Empire will be clear to all when you emblazon your ship in this patriotic livery, inspiring honor and dedication in those you fly with.'), +(15083,'RSI_Polaris_Torpedo_Tube_Inner_Geo_R','AttachedPart','UNDEFINED','5cfae8cc-192a-4084-8706-01176ba5c671','','',NULL), +(15084,'PAB-1 Core Purple','Armor','Torso','c5dbb105-ac5c-42b1-b8d4-22b6099ac5cf','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(15085,'AEGS_Door_Decal_WC_F','Decal','DoorPart','0e3fb96f-408b-4c0f-9e80-0d5bf91740af','','',NULL), +(15086,'Aztalan Legs','Armor','Legs','fd0cdccb-eb52-4c8e-a872-ebdaea337d5a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nFear no frontier while wearing the Aztalan armor. This mixture of armor plating and reinforced fabrics will keep you safe yet swift on your feet. Tehachapi\'s masterful design gives the armor a subtle yet unmistakable frontier style that also providing ample storage. Suitable for everything from sand dunes to bustling backstreets, the Aztalan is the ideal choice for your next adventure.'), +(15087,'Seat','Usable','UNDEFINED','5fdb65c8-3d67-404a-9e88-e6708695a649','','',NULL), +(15088,'Saldynium (Ore)','Misc','Harvestable','ee704f52-8794-434d-bcd7-47fec365ffbd','','','A rare metal that has traditionally been extremely difficult to find in large quantities owing to the particular environmental requirements for its formation. It is sought after for its use in the production of high-powered lasers. It also shows some antimicrobial properties though its scarcity has seen it used less for medical purposes.'), +(15089,'XNAA_SanTokYai_CML_Flare','WeaponDefensive','CountermeasureLauncher','ab895108-dc71-4056-9eb2-660ddf30d32e','','','@LOC_PLACEHOLDER'), +(15090,'TRGT. STATUS','Seat','UNDEFINED','b7110da3-8fcb-4973-850c-d472ee3c6507','','',NULL), +(15091,'RSI_Perseus_Thruster_Mav','ManneuverThruster','UNDEFINED','01025f1e-84fc-4c60-834c-6144e78dd77f','','',NULL), +(15092,'tool_flashlight_1_handle_a','Misc','UNDEFINED','935f40ea-0f40-46b1-b078-00519a8a4500','','',NULL), +(15093,'Lynx Arms Twilight','Armor','Arms','f7edd487-2a8e-4a24-bb0e-cfd013827c7a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(15094,'Wanderer Boots Nomad','Char_Clothing_Feet','UNDEFINED','14e008ab-b58b-4149-9892-d7c909ae331f','','','Grindstone\'s Wanderer line is an all-purpose boot designed to take any punishment you throw at it.'), +(15095,'Door Control','ControlPanel','DoorPart','f59ede99-67e3-4009-a0b4-fce90e6f0152','','',NULL), +(15096,'PAB-1 Core Sienna','Armor','Torso','8081e519-0575-4510-81e3-ecf96ccb7f02','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(15097,'Frontier 05 Pants Harvest','Char_Clothing_Legs','UNDEFINED','bb1acaec-70a1-487c-905a-e6ac5de1a680','','','Carrying Capacity: 0.5K µSCU\n\nDMC\'s Frontier collection has been a staple of frontier living for centuries. These heavy denim workpants have double-stitched reinforcement and stainguard technology, making them dependable pants for any environment day in and day out.'), +(15098,'Anvil Noise Launcher','WeaponDefensive','CountermeasureLauncher','b98f31ac-b050-4e5e-9719-8b8d2a832dcd','','','Anvil Noise Launcher'), +(15099,'Vanduul S3 Quad Missile Rack','MissileLauncher','MissileRack','c5660ffe-d8db-4452-ba69-4b519599c445','','','Vanduul S3 Quad Missile Rack'), +(15100,'Antium Core Jet','Armor','Torso','7ffc92db-5f68-40a2-9709-227a7e00a9aa','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(15101,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','aaec78bb-8928-4191-8b3e-ba2d880e6829','','','Joker Defcon - Noise Launcher'), +(15102,'Devastator \"Desert Shadow\" Shotgun','Weapon','Medium','76a46ad5-0232-417a-94c2-5fdbba94385f','','','Manufacturer: Kastak Arms\nItem Type: Shotgun\nClass: Energy (Plasma)\n\nBattery Size: 12\nRate Of Fire: 60 rpm\nEffective Range: 20 m\n\nAttachments: Optics (S1), Barrel (S3), Underbarrel (S2)\n\nKastak Arms’ Devastator is a pump-action plasma shotgun capable of delivering sustained medium range, high-impact plasma blasts for close combat, room clearances and other combat operations. If the situation requires a high-power presence, look no further than the Devastator.'), +(15103,'Reliant Tana Missile Launcher','MissileLauncher','MissileRack','bbeee736-bb2c-4e23-abd5-ca0a6bc1938a','','','Item Type: Missile Launcher\nManufacturer: MISC\nSize: 5\nMissiles: 8xS2 \n\nBespoke missile launcher built into the wings of the Tana to make this Reliant variant a deceptively deadly dogfighter.'), +(15104,'Lanxi Jacket Gray','Char_Clothing_Torso_1','UNDEFINED','152fdaec-10af-4b47-b29e-a5014b3cc2eb','','','Carrying Capacity: 1K µSCU\n\nThis simple knit jacket from City Lights features a classic cut and chic microseam technology to create a thoroughly modern addition to any wardrobe. It also features a stand collar to help keep you warm.\n\nWomen\'s sizes currently out of stock.'), +(15105,'Iron','Cargo','Cargo','68ddc1b2-689d-47ea-bf31-82e70c7c6835','C','',NULL), +(15106,'Guardian','Shield','UNDEFINED','f8cd46b2-2db9-4252-adf0-c44ad36bdf7c','','','Item Type: Shield Generator\nManufacturer: Basilisk\nSize: 1\nGrade: B\nClass: Industrial\n\nUpgrade to the Guardian for increased absorption of ballistic, energy, and distortion damage. Making this industrial shield generator one of the most durable in its class.'), +(15107,'Decryption Key','FPS_Consumable','Hacking','730df6fb-1f22-4786-b71a-d9a7cadce8a7','','',NULL), +(15108,'FPS_Device_Test_MiningBase','Gadget','Gadget','ff681f56-4f99-422f-a494-7e414e0be83a','','',NULL), +(15109,'Blood_Decal_Splat1','Decal','DoorPart','bcbfb679-1f6f-4a5b-910f-fb11e58d3357','','',NULL), +(15110,'Skin_Space_Kitty','Paints','Personal','89c75092-6671-4a12-887f-a007ee4e8b9f','','',NULL), +(15111,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','c25dc2d2-b65b-4924-9100-806ee17c01af','','','Joker Defcon - Noise Launcher'), +(15112,'Tona Shoes Dark Red','Char_Clothing_Feet','UNDEFINED','7e6e6071-12c0-4846-a245-471029c57ee4','','','Perfect for hiking or fieldwork, the Tona from R6 Pro is a low-top sneaker built out of breathable Cheofreme materials which not only provide extra protection against impacts, but keep your feet dry.'), +(15113,'ADP-mk4 Arms Red Alert','Armor','Arms','672c4f4f-3155-4549-bd63-b7e9aec01414','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhen there\'s a difficult job at hand, you want to ensure that you can see it through to the end. Clark Defense Systems\' ADP-mk4 heavy armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers.'), +(15114,'MISC_Freelancer_SCItem_Seat_Bed_Lower_Left','Seat','UNDEFINED','849b4376-acc1-4730-84e8-c0f04ee0018a','','',NULL), +(15115,'Bed','Usable','UNDEFINED','796b7cb9-0926-4d3a-9301-9fff3e114f5a','','',NULL), +(15116,'Quartz','Cargo','Small','91b33006-bc9c-45eb-8cb6-b4de57940a5c','','','A chiral crystal composed of silicon and oxygen that can be found in a wide variety of forms and colors.'), +(15117,'Methane','Cargo','Cargo','a62d343f-f83e-46f4-9985-476e6b743a2c','','',NULL), +(15118,'Cargo_Comm_125x3_Vice_Maze','Cargo','Cargo','747943ef-3977-472d-acff-39b55cc1b922','','',NULL), +(15119,'WiDoW','Cargo','Small','5cc168c4-ff0b-4887-b308-122a0d780a3e','','','Thick, ink-black synthetic opioid commonly used as a recreational drug. WiDoW has spread like wildfire throughout the Empire thanks to the fact that it\'s relatively easy to produce. This also creates a wide variety of quality between batches of the drug. Designed to be injected as a liquid directly into the bloodstream, the name derived from one of the main side effects from extensive use, the drug stains the veins black, creating web-like subcutaneous patterns through the body. Illegal inside the UEE.'), +(15120,'Pink Heart Lamp','Misc','Flair_Wall_Picture','fc690cef-5292-4bb1-a918-4f6bfe12fef0','','','Emitting a soft, sensual pink glow, the curvaceous Pink Heart Lamp is sure to shine a light on any romantic evening.'), +(15121,'ORIG_315p_Dashboard_Pilot','SeatDashboard','UNDEFINED','a20405e4-2649-4ab9-a4c1-9d01a6b73595','','',NULL), +(15122,'Devastator \"Voyager\" Shotgun','Weapon','Medium','dad885fd-d3e7-442f-b511-a11bfde19a2f','','','Manufacturer: Kastak Arms\nItem Type: Shotgun\nClass: Energy (Plasma)\n\nBattery Size: 12\nRate Of Fire: 60 rpm\nEffective Range: 20 m\n\nAttachments: Optics (S1), Barrel (S3), Underbarrel (S2)\n\nKastak Arms’ Devastator is a pump-action plasma shotgun capable of delivering sustained medium range, high-impact plasma blasts for close combat, room clearances and other combat operations. If the situation requires a high-power presence, look no further than the Devastator.'), +(15123,'AEGS_Idris_CargoGrid_CargoRoom_Back','CargoGrid','UNDEFINED','9621a24b-aea7-4416-87ba-947711d0327f','','',NULL), +(15124,'MISC Prospector - Noise Launcher','WeaponDefensive','CountermeasureLauncher','1e59f1e7-13da-4e99-bf75-252389786c82','','','MISC Prospector - Noise Launcher'), +(15125,'Door Control','Door','UNDEFINED','2c715fa6-b701-47b9-a1c5-3b59d18275e0','','',NULL), +(15126,'Silnex','Cargo','Cargo','d9ba45d2-ed21-4372-bb1d-5f9a83023ede','','',NULL), +(15127,'AEGS_Retaliator_OC_Rear_Base','Room','UNDEFINED','fe618466-492e-4c68-bd9d-e517a02434ec','','',NULL), +(15128,'CRUS_Star_Runner_Component_Power_Plant','Player','UNDEFINED','9c09a66e-58eb-420c-b4e8-0b589c51417a','','',NULL), +(15129,'G-2 Helmet Yellow','Armor','Helmet','a0916eed-a3b0-4e6f-9c32-f1b95fb6bbfb','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. Visor is AR crosshair compatible.'), +(15130,'Luminalia Cookie Jar','Misc','UNDEFINED','d14abc21-4ce8-49b2-aecc-a5d0efa0d4cb','','','The perfect place to stash all your favorite holiday treats, this cookie jar features Luminalia greetings along with red and green trim.'), +(15131,'SHIELDS','ShieldController','UNDEFINED','44e208bd-86e8-4e1d-acde-8427d76f112f','','',NULL), +(15132,'MISC_Fortune_Thruster_Retro_Rear','ManneuverThruster','FixedThruster','83331f15-0887-414e-9897-8bc8ae00f87a','','',NULL), +(15133,'Ranta Dung','Cargo','Cargo','82024242-f2fa-4188-985c-14c95fbe2b35','','',NULL), +(15134,'ThermoWeave Pants','Char_Clothing_Legs','UNDEFINED','d5e0392e-7ba1-40a8-83a5-89ab191ed44d','','','Carrying Capacity: 2K µSCU\n\nThe ThermoWeave pants have a large, easy-access pocket on each leg and feature a special fire-resistant synthetic moisture-wicking lining that makes them comfortable to wear for an entire shift.'), +(15135,'Station','SeatAccess','UNDEFINED','4d234604-abc6-4aae-8746-4bebe6e539d0','','',NULL), +(15136,'tool_tester_1_a_MOVED','Misc','UNDEFINED','02cba254-9ea2-4a8b-ab36-0b5bfdbc3f95','','',NULL), +(15137,'Scorpius Antares TSB Flight Blade','FlightController','UNDEFINED','d8550cab-e57f-4cfa-990b-2fece7649724','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your RSI Scorpius Antares with the TSB Flight Blade from Broad & Rabiee. By re-allocating lateral thrust resources, you can expect your ship deliver increased top speeds in the straightaway.'), +(15138,'Shoyu Lapsha','Food','Box','8d89dfbc-f723-4713-bd26-d572d0e8d424','','','NDR: 40\nEffects: Dehydrating, Hyper-Metabolic\n\nA soy sauce based home-style chicken noodles. Perfect for warming up those cold berths.'), +(15139,'Construction Pieces','Cargo','Cargo','f9b6731b-cb83-4402-9c25-2294fde1fae5','','','Can be processed at refineries into Construction Material.'), +(15140,'ESPR_Prowler_Thruster_Mav_01','ManneuverThruster','UNDEFINED','093ac7ec-e3cf-41bf-a8ca-3bbab7725428','','',NULL), +(15141,'Carryable_1H_CY_chocolate_bar_1_a','Misc','UNDEFINED','7214ee4a-10c2-4aae-bf28-69f983ec70f3','','',NULL), +(15142,'Day One Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','943a4ab4-1388-4dda-ace9-04d20c4c2bc7','','','This Henley shirt from Stegman\'s is made with AirFlow technology, a stain-resistant, air-cooled fabric that keeps you comfortable and dry.'), +(15143,'Odyssey II Helmet Black','Armor','Helmet','5c33e677-8c1a-4f54-bff0-e8d154a7cf65','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(15144,'Seat','SeatAccess','UNDEFINED','4fbcc15d-3240-41e4-9a54-7d1cd98efc06','','',NULL), +(15145,'Grin_Rear_Module_MDC','AttachedPart','UNDEFINED','eed44897-540e-44b4-b555-2c33c37bd2be','','',NULL), +(15146,'A03 \"HighSec\" Sniper Rifle','Weapon','Medium','db7a707e-e6fb-4d8a-9766-ca0d125d2e4f','','','Manufacturer: Gemini\nItem Type: Sniper Rifle\nClass: Ballistic\n\nMagazine Size: 15\nRate Of Fire: 120 rpm\nEffective Range: 80 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nDevastate at distance with the A03 sniper rifle. Masterfully designed by Gemini\'s Tevarin co-founder Clem, the weapon balances a stylish and ergonomic design with a powerful ballistic punch. The A03 delivers an impressive rate of fire for a sniper rifle that sacrifices accuracy for urgency when successive shots are required. Considering its renowned design and unique features, it\'s easy to see why the A03 has become a favorite of security professionals across the empire.\n\nThe HighSec edition features a carbon fiber finish with red accents.'), +(15147,'Microid Battle Suit Arms Nomad','Armor','Arms','b866df57-4965-46ef-8265-7eab380068ad','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(15148,'Carryable_1H_CY_drug_painkillers_1_d','Misc','UNDEFINED','f4c44553-3d31-4975-8cbf-b415b22273a9','','',NULL), +(15149,'Weapon_Rack_1_BEHR_LMG_AmmoOnly_001','Usable','UNDEFINED','a1462345-374e-48e4-9577-78d9487156d0','','',NULL), +(15150,'Markanda Undersuit Deadwood (Refurbished)','Armor','Undersuit','5f2aedcb-486c-4e60-8dcb-976816c736f2','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nBuilt for adventure but comfortable enough for everyday, the Markanda undersuit has become beloved by explorers. A unique patchwork design creates a flexible yet resilient undersuit, while an odor resistant SureSoft inner lining will keep you from wanting to take it off. This particular undersuit has been repaired for extended use.'), +(15151,'Carryable_TBO_FL_24SCU_Commodity_ProcessedGoods_HolidayLetter','Cargo','Cargo','08f5e2f4-b7b5-4da5-bee3-8519085a6d91','','',NULL), +(15152,'Seat','SeatAccess','UNDEFINED','a0e71d93-c384-4476-9ec5-18c15287083d','','',NULL), +(15153,'Cumulus Jacket Purple','Char_Clothing_Torso_1','UNDEFINED','7fd39c72-66f2-47de-a959-d167d6ccebda','','','Temp. Rating: -35 / 10 °C\nCarrying Capacity: 5K µSCU\n\nBe bold and brave the cold in frigid conditions up to -35 °C with the Cumulus\'s special thermal lining. An oversized, insulated hood provides additional protection around the head, while the distinct quilted torso stops snow, ice, and wind from seeping in, ensuring the wearer remains warm and dry.'), +(15154,'Karna \"Alpine Sunset\" Rifle','Weapon','Medium','96337f4f-4743-4b41-808e-6b0b8a9bf486','','','Manufacturer: Kastak Arms\nItem Type: Assault Rifle\nClass: Energy (Plasma)\n\nBattery Size: 35\nRate Of Fire: 500 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nThe Karna is a classic Kastak Arms plasma assault rifle. This mid-range mauler features charged and full-auto fire modes to allow for quick and easy situational adjustments. Besides its renowned firepower, the Karna\'s rugged looks and reliability have made it one of Kastak Arms\' most popular weapons. This special green and red Alpine Sunset edition is sure to make a great Luminalia gift for your loved ones.'), +(15155,'Crusader White King','Misc','UNDEFINED','f7c88505-5865-4198-945e-6850e7cc1b16','','','Included with the Mercury Star Runner from Crusader Industries, this minimalist white chess piece has a marble base.'), +(15156,'Venture Helmet Voyager','Armor','Helmet','760e495b-cfa3-40fc-87a5-abdb088fcb44','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover. The special Voyager edition of the helmet is red with black and white highlights, making it the ideal cover for this stylish suit.'), +(15157,'H_Dashboard_Projector_HUD_KRIG_P52','Display','UNDEFINED','a7897dda-be75-4f44-87a1-aedd5079d03f','','',NULL), +(15158,'dmc_gloves_01_01_02','Char_Clothing_Hands','UNDEFINED','4c95ea2a-5590-4257-8f10-69196f049b16','','','DMC\'s Gauntlet gloves feel like a hard day\'s work. Built with resilient GranTec composite weaves, these Gauntlets live up to their name, providing maximum protection against environments and impacts so you can work another day.'), +(15159,'Lynx Moonrise Livery','Paints','UNDEFINED','c3493d36-4f1e-45cb-b7dd-2a19ce114d10','','','A metallic grey body with black highlights makes the Moonrise a subtle yet stylish livery for the Lynx.'), +(15160,'Freeze','Cargo','Cargo','e5dd7535-29d7-415e-a1f0-a8de1fd6ad0b','','',NULL), +(15161,'ControlPanel_Screen_NOACCESS','ControlPanel','DoorPart','0665f02e-80c1-4f48-9ee7-2db851274d85','','',NULL), +(15162,'600i 2954 Auspicious Red Dog Livery','Paints','UNDEFINED','fe66c2d6-3139-4f6e-94bd-05a25accec2e','','','Seek peace and prosperity in the new year with the Auspicious Red Dog livery. Outfit your ship with this bold red base paint complemented by gold accents and a stylized graphic of a dog.'), +(15163,'Pingala Seeds','Cargo','Cargo','7b8b1cac-5c2f-4acf-b137-ca0d2072a3f5','','',NULL), +(15164,'Odyssey II Helmet Alpha','Armor','Helmet','57e8714c-7357-4365-9110-e43a31233e69','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(15165,'Bengal_BallisticCannon_PowerArray_S8','WeaponAttachment','PowerArray','06732dbd-e347-4eb9-aca8-13db45debb14','','',NULL), +(15166,'Aegis Dynamics Hat','Char_Clothing_Hat','UNDEFINED','48a09919-29f8-4bbb-83c1-25662fc90686','','','This two-tone cap is mainly dark grey with a light grey accent stripe, featuring an Aegis Dynamics patch across the front panel.'), +(15167,'Stone Bug Shell','Misc','Harvestable','63cd8bfe-1b58-45aa-9e92-93271ecdbdee','','','Known to curl into a tight ball when threatened, the stone bug is sought after for its tough shell, which can be removed and used as a durable material that has even been utilized in certain armor composites.'), +(15168,'VNCL_Scythe_Thruster_side_right','ManneuverThruster','FixedThruster','cec6873e-4829-414a-87ba-c2c902583373','','',NULL), +(15169,'ORC-mkV Core Grey','Armor','Torso','bcd929fd-09e7-4c5d-bf4c-4d4469e9cd93','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(15170,'TrueDef-Pro Core White/Silver/Grey','Armor','Torso','1af13570-3256-4baf-bb4d-f8de7785054c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(15171,'Flight Blade','FlightController','UNDEFINED','df7be894-9e93-4743-a468-d253ae426423','','',NULL), +(15172,'Arrow PHB Flight Blade','FlightController','UNDEFINED','a4384f78-a3aa-4e5a-a4e8-83f238595e04','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Anvil Arrow with the PHB Flight Blade from Broad & Rabiee. By re-allocating forward thrust resources, you can expect your ship deliver increased precision handling during tight maneuvers.'), +(15173,'Gold (Ore)','Cargo','Cargo','ff358c7c-8161-41d4-a1a2-17aef6060ff6','','',NULL), +(15174,'VNCL_Scythe_Thruster_Retro','ManneuverThruster','FixedThruster','3aff8029-dd1d-4f91-81e6-bc97aacaa172','','',NULL), +(15175,'Seat','SeatAccess','UNDEFINED','27bc8914-f353-425f-b608-9da819315ccf','','',NULL), +(15176,'Seat','Usable','UNDEFINED','0235afdf-eb41-4da4-8ce8-5309edaf04e4','','',NULL), +(15177,'Detara Jacket Calypso','Char_Clothing_Torso_1','UNDEFINED','ff1a4779-423d-4438-955f-bb51c851d8c7','','','Carrying Capacity:1000 µSCU\n\nThe Detara Jacket by Habidash weaves several long panels of durable fabric together to create a unique silhouette well suited to harsh environments.'), +(15178,'Carryable_1H_CY_tool_manual_pliers_1_a','Misc','UNDEFINED','c8f4524d-be03-4160-b017-04ac7ff654f4','','',NULL), +(15179,'KRIG_l21_Wolf_Thruster_Mav_Pipe_Left','ManneuverThruster','UNDEFINED','03c55b07-8013-4c8d-8053-70ed821291d6','','',NULL), +(15180,'Odyssey II Helmet Imperial','Armor','Helmet','2ecd1ffb-3015-44b1-9b65-708ef829ddcc','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(15181,'Internal Tank','FuelTank','Fuel','7fbe6944-8ea2-4212-b5e3-f783fec9223c','','',NULL), +(15182,'ORC-mkX Arms Woodland','Armor','Arms','e38bac8b-2e1f-4b41-9b1b-ccc16ed9b17d','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(15183,'Thrust','Cargo','Cargo','3d3d7c6c-97eb-4c2b-8f3c-5b21e5d71450','','',NULL), +(15184,'Colonialism_Outpost_RN_Liquid_Tank_Unit','FuelTank','UNDEFINED','0805d974-22df-4e73-b087-b23e13c3a8ce','','',NULL), +(15185,'ESPR_BallisticCannon_PowerArray_S4','WeaponAttachment','PowerArray','55549ef4-eee3-4eda-bbe6-6add36cf77b2','','',NULL), +(15186,'Seat','SeatAccess','UNDEFINED','8b1198ee-8025-4c8c-b6f1-d9a9bf22768e','','',NULL), +(15187,'Colossus','QuantumDrive','UNDEFINED','e61d58d6-3ffd-4d7b-ad19-64ae9d27efb1','','','Item Type: Quantum Drive\nManufacturer: Juno Starwerk\nSize: 1\nGrade: B\nClass: Industrial\n\nJuno Starwerk makes quantum drives that can go the distance and the Colossus is no exception. Though, once you experience its dependable performance for yourself, you might just want to call it exceptional.'), +(15188,'CNOU_Mustang_Gamma_Thruster_Main','MainThruster','FixedThruster','19c8ca9f-9f24-442a-b556-85c9e91258d6','','',NULL), +(15189,'Collector_SCItem_Seat_ATC','Seat','UNDEFINED','7847cf55-ee59-4d75-aacf-0a5c3d9c005e','','',NULL), +(15190,'Yormandi Eye','Misc','Harvestable','124da32f-de8f-45f6-a2f1-81fd47752b2d','','','Able to thrive in a wide variety of environments, the yormandi has a robust immune system that responds to unknown pathogens at incredible speed. Its eyes contain antibodies that are much sought-after by medical researchers.'), +(15191,'Weapon_Rack_1_KLWE_Rifle_Common_001','Usable','UNDEFINED','1ba178c3-0a24-4625-92d6-301043aac082','','',NULL), +(15192,'DRAK_Cutlass_Blue_Thruster_Maneuver_Lateral','ManneuverThruster','JointThruster','f631ae50-1ecc-4df9-8f44-3e8e918fd2f1','','',NULL), +(15193,'AEGS_Retaliator_Esc_Pod_Decal_02','Decal','DoorPart','d240d77d-23f4-4a0c-a9d7-83b2d837a044','','',NULL), +(15194,'Medical Supplies','Cargo','Cargo','a6d9a776-78bb-41e9-905c-c8fd27b38f71','','',NULL), +(15195,'AirlockDoorDefaultTemplate_Ext','Door','AirlockPart','cde2e32c-ce54-4a68-adad-b15295229e73','','',NULL), +(15196,'Aztalan Tamarack Core','Armor','Torso','5b3d19d0-23ef-4678-943b-225a0eeb76f1','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nFear no frontier while wearing the Aztalan armor. This mixture of armor plating and reinforced fabrics will keep you safe yet swift on your feet. Tehachapi\'s masterful design gives the armor a subtle yet unmistakable frontier style that also providing ample storage. Suitable for everything from sand dunes to bustling backstreets, the Aztalan is the ideal choice for your next adventure.'), +(15197,'Covalex Hat','Char_Clothing_Hat','UNDEFINED','82ab3c96-dfcc-4d53-8589-8a489a96cced','','','A black cadet hat with Covalex\'s name and logo emblazoned across the front and back panels.'), +(15198,'Laranite (Raw)','Cargo','Cargo','5373e161-8c2b-4449-8ddb-96af7047e559','','',NULL), +(15199,'Aster Gloves Twilight','Char_Clothing_Hands','UNDEFINED','80ba253b-3064-4167-b156-c89feaba4ca9','','','Pros at keeping your hands safe without sacrificing dexterity, the slip-resistant Aster Gloves deliver solid protection and lasting warmth during chilly or hostile conditions. The tough synthetic leather breaks in well and will stand up to years of frequent use.'), +(15200,'Venture Legs Olive','Armor','Legs','08aea7b0-b442-457d-8cbc-7f876e7eb5cb','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(15201,'RSI_Polaris_Dashboard_TurretSeat_Right','SeatDashboard','UNDEFINED','295857d7-f95c-43ab-8baf-75718a0db19a','','',NULL), +(15202,'Idris Marauder Livery','Paints','UNDEFINED','2b812e19-1eeb-475a-b560-2d319ea20a52','','','Designed for the Idris-K aftermarket kit, the Marauder livery is primarily black with subtle red highlights.'), +(15203,'Seat','SeatAccess','UNDEFINED','986421d2-e097-4152-879a-06ed3e41a78d','','',NULL), +(15204,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','5b2b03f1-de32-4532-a7a7-8163f6681ab0','','','Joker Defcon - Noise Launcher'), +(15205,'Concept Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','6e2d0ddb-6969-41e3-83ef-07f49d4f044e','','','This crisp, versatile button-front shirt from Fiore is made with cutting edge stain resistant and wrinkle-free technology, guaranteeing that you stay professional at all times.'), +(15206,'Fury Racing Livery','Paints','UNDEFINED','9d53c591-a7f5-4b77-8380-a3bac9b52872','','','Pull away from the pack with this daring Racing livery for the Fury. Combining coral reds with an undercurrent of teal, you\'re guaranteed to grab the attention of those you overtake when racing in these bold colors.'), +(15207,'Inquisitor Arms Imperial','Armor','Arms','3a25bba9-f70f-429a-b1ba-e42c5c60836c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(15208,'Mercury Star Runner 2951 Best in Show Livery','Paints','UNDEFINED','e4b52fb2-c14c-4763-95d5-42ea8d1911d8','','','Celebrate the Star Runner being voted a Best in Show finalist for 2951 with this special blue and black livery.'), +(15209,'Body','Char_Clothing_Legs','Medical','dacb111c-352e-4e84-96c4-57ffd5c80f1a','','',NULL), +(15210,'P8-AR \"CitizenCon 2954\" Rifle','Weapon','Medium','6c9788d1-5ddb-4e41-99db-8fcc45996a93','','','Manufacturer: Behring \nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 15\nRate Of Fire: 475 rpm\nEffective Range: 100 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nThe direct descendant of the UEE Marines standard issue weapon, Behring has crafted the semi-automatic P8-AR to provide civilians across the empire a straight-forward and dependable weapon to defend themselves against aggressive hostiles. This special edition features a bold blue color in honor of CitizenCon 2954.'), +(15211,'Vanduul Decoy Launcher','WeaponDefensive','CountermeasureLauncher','37140cc3-29d1-4a50-ba89-49016f1ccd03','','','Vanduul Decoy Launcher'), +(15212,'CRUS_Starlifter_Door_Decal_PowerPlant_B','Decal','DoorPart','a74825f6-7088-4750-8b46-4cedc96b256d','','',NULL), +(15213,'MSD-212 Missile Rack','MissileLauncher','MissileRack','47ad6fae-f0fb-419c-a990-7cac2504d20b','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 2\nMissiles: 1xS2\n\nBehring’s MSD-212 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 2 hardpoint for the reliable and effective launch of one S2 missile.'), +(15214,'FieldLite Flashlight Blue','WeaponAttachment','BottomAttachment','30c2a2e9-fba9-40b5-830c-0f9ad43b18ad','','','Manufacturer: NV-TAC\nType: Flashlight\nAttachment Point: Underbarrel\nSize: 1\n\nThe FieldLite Blue is a tough and tactical underbarrel flashlight. Featuring a corrosion-proof body and impact resistant lens, NV-TAC tested the attachment across a variety of environments and conditions to ensure it works when needed most. This special Blue edition projects a focused blue light in the shape of a square. The molded lens keeps falloff to a minimum, making it perfect for illuminating targets at distance.'), +(15215,'ARGO_ATLS_GEO_Headlights','Light','UNDEFINED','a116f5c9-f391-4281-8fac-c4515ba3db5a','','',NULL), +(15216,'OMNI-AFS-Sapphire Helmet Alpine','Armor','Helmet','1e30cb91-ac22-49cf-89e2-15e5dab351a3','','','Item Type: Light Helmet\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nSimilar to the helmet worn by UEE Navy pilots, the OMNI-AFS-Sapphire helmet delivers excellent protection and visibility. Multilayered plating protects against impacts while its wide faceplate ensures clear, unobstructed views whether in the cockpit or on foot.'), +(15217,'Seat_Jump_MISC_Reliant_Toilet','Usable','UNDEFINED','4a0a6ab0-77b1-4f55-9751-f3b56f8d9667','','',NULL), +(15218,'Debnam Gloves Green','Char_Clothing_Hands','UNDEFINED','e1ed489d-ece8-4b2f-b44f-37654fbc2ca7','','','Named after the influential Terran tailor, Debnam gloves incorporate that famous tailor\'s classic design to keep your hands comfortable in colder temperatures.'), +(15219,'Aril Backpack Black Cherry','Armor','Backpack','eb317ed0-685b-451f-91df-50df5598f0cd','','','Item Type: Medium Backpack\nCarrying Capacity: 85K µSCU\nCore Compatibility: Medium & Heavy\n \nOriginally designed for miners, the Aril armor comes with an attachable backpack that can accommodate a variety of tools and supplies to keep your hands free. The Aril backpack is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(15220,'Landlite Boots Grey','Char_Clothing_Feet','UNDEFINED','246c0e79-d08d-4895-a7aa-5cb97fad80f4','','','Who says work boots can\'t be comfortable? Grindstone\'s Landlite boots are built with a breathable synth-leather material to keep your feet dry, a contoured, memory footbed, and a slip-resistant outsole, making it perfect for whatever worksite you throw at it.'), +(15221,'Argos IX Torpedo','Missile','Torpedo','c01675d6-ad02-4c2d-b4a8-53b4a0b145dd','','','Manufacturer: Talon\nTracking Signal: Cross Section\nSize: 9\n\nThe Talon Argos strike torpedo features a classic, straightforward design that relies on exacting manufacturing standards and a classic cross section targeting system.'), +(15222,'FieldLite Flashlight','WeaponAttachment','BottomAttachment','60fab7a8-617c-4962-8391-69221ed761d6','','','Manufacturer: NV-TAC\nType: Flashlight\nAttachment Point: Underbarrel\nSize: 1\n\nThe FieldLite is a tough and tactical underbarrel flashlight. Featuring a corrosion-proof body and impact resistant lens, NV-TAC tested the attachment across a variety of environments and conditions to ensure it works when needed most.'), +(15223,'Lynx Legs Grey','Armor','Legs','de9ad7fc-5171-416c-b3a3-8f3c1702e93c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(15224,'Utensil_Spoon','Misc','UNDEFINED','1a990472-3278-40da-be23-fb4ad15e591b','','',NULL), +(15225,'tool_manual_1_knife_a','Misc','UNDEFINED','dcf35c97-7ac4-446c-b91a-2f63d14c50fc','','',NULL), +(15226,'Taos Balaclava and Goggles Ash','Char_Clothing_Hat','UNDEFINED','53d7644e-809f-48d3-b1b4-c9da49e28c9b','','','Fearlessly face any weather with the Taos balaclava and goggles. An ultra-soft inner lining provides warmth and comfort while a special exterior coating repels precipitation. The adjustable headband ensures an ideal fit, and the padding of the anti-fog goggles is integrated directly into the fabric to seal out the elements.'), +(15227,'Fortitude','PowerPlant','Power','a1108d40-080d-4087-b5e2-5030336ee180','','','Item Type: Power Plant\nManufacturer: Juno Starwerk\nSize: 1\nGrade: C\nClass: Industrial\n\nBeloved by haulers for centuries, the Fortitude lives up to its name by reliably producing power when needed most.'), +(15228,'Bedrock Boots','Char_Clothing_Feet','UNDEFINED','9b0b4f88-dbdc-4559-90cb-8158535bb5fb','','','This steel-toe workboot from Grindstone features SureFire grip technology, giving you firm traction even on slip, oil and abrasion surfaces.'), +(15229,'Cordimon Jacket Seagreen','Char_Clothing_Torso_1','UNDEFINED','78ca8397-b4ab-41c2-85af-ddf40360b0c9','','','Carrying Capacity: 3K µSCU\n\nStegman\'s classic worker\'s jacket has been a staple of job sites for over seventy years. This duotone pattern is cut from the toughest material meaning you can wear it anywhere, anytime. It may not be armor, but it damn sure feels like it.'), +(15230,'MASTER_screen_16x9_5_0064x0036_a','Display','UNDEFINED','9151b191-58a1-41c7-b6ad-244f23cefb97','','',NULL), +(15231,'Door Control','ControlPanel','DoorPart','d402b9ad-9bd7-4604-974d-1f4203516cb9','','',NULL), +(15232,'Pico the Penguin Party Animal Green Plushie','Misc','Personal','62a52a44-d40f-4c77-ac98-fb62e9612e79','','','No one can shred the slopes or celebrate quite like Pico the Penguin. This version of the charming microTech mascot makes any occasion more fun and festive by sporting a vibrant green jacket and playful party hat.'), +(15233,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','4fcd837d-bc99-4eb2-95a0-9a622a0d87f7','','','Aegis Gladius - Decoy Launcher'), +(15234,'Pico the Penguin Party Animal Orange Plushie','Misc','Personal','4702f97f-6c1d-4ed3-97b2-d546878b2f9d','','','No one can shred the slopes or celebrate quite like Pico the Penguin. This version of the charming microTech mascot makes any occasion more fun and festive by sporting a vibrant orange jacket and playful party hat.'), +(15235,'Carryable_1H_SQ_Datapad_Fluff_Orb_GenericGang_001','Misc','UNDEFINED','6131c5f8-cb2c-48ce-985e-ad4ab3af06eb','','',NULL), +(15236,'Pico the Penguin Party Animal Purple Plushie','Misc','Personal','233876b6-c5b4-456d-a89b-740109770c35','','','No one can shred the slopes or celebrate quite like Pico the Penguin. This version of the charming microTech mascot makes any occasion more fun and festive by sporting a vibrant purple jacket and playful party hat.'), +(15237,'Weapon Rack','Usable','UNDEFINED','dfa8c647-e21c-44fc-9980-d50c5eae4f1e','','',NULL), +(15238,'Morozov-CH-I Backpack Gideon','Armor','Backpack','f41b841e-d49d-43af-b806-f0d9f5b7f731','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nComfortably carry vital gear with the RRS Morozov-CH backpack. This softshell bag is made with an advanced duraweave that\'s lightweight yet ready for all manner of industrial work. It also features several easy to access pockets and a plethora of straps to keep supplies secure and tight to your back. The Gideon edition features a heavily worn teal finish with yellow accents.'), +(15239,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','b0abcd30-66d9-46dc-9291-606a1f535384','','','Joker Defcon - Noise Launcher'), +(15240,'Table_1_Seat_CRUS_Intrepid','Usable','UNDEFINED','7aa0ef5f-40f5-4e31-9250-de888b544459','','',NULL), +(15241,'Weapon_Rack_AEGS_4slots','Usable','UNDEFINED','3a62f6cf-3cc6-4a4c-a8b1-d1def7662603','','',NULL), +(15242,'TRGT. STATUS','Seat','UNDEFINED','2224702e-8c6a-49aa-a7ee-14f7329be8e3','','',NULL), +(15243,'Atzkav Sniper Rifle','Weapon','Medium','7623e7fa-3be9-4e9d-891c-597482c448b5','','','Manufacturer: Lightning Bolt Co. \nItem Type: Sniper Rifle\nClass: Electron\n\nMagazine Size: 5\nRate Of Fire: 30 rpm\nEffective Range: 150m+\n\nAttachments: Optics (S3), Underbarrel (S2)\n\nThe Atzkav is a unique precision sniper rifle from Lightning Bolt Co. Once the charging handle is engaged, it accurately fires a charged electron to deal significant energy damage that spreads to nearby conductive targets. This special pulse effect also leaves a residual charge in the strike area that increases damage delivered by subsequent electron shots. Alongside the rifle\'s special firing capabilities, the Atzkav is best known for its distinct barrel that crackles with energy when powering its next shot.'), +(15244,'ADP Arms Purple','Armor','Arms','a7b17816-d8ba-4795-8c59-64413227ce29','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(15245,'Inquisitor Core Dark Red','Armor','Torso','677297d2-5f25-4e6c-afc0-f75f5f9244f7','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(15246,'INTK_MISC_Hull_A','FuelIntake','Fuel','4a67e798-e441-446e-9d7b-9e0bdb6c1bf0','','',NULL), +(15247,'Ventra Gloves Tan','Char_Clothing_Hands','UNDEFINED','a27edb06-852d-42d9-badd-0a903579b824','','','Keep your hands warm and dry with Fiore\'s Ventra gloves. Microstitching creates a snug, tailored fit to keep you looking stylish and warm.'), +(15248,'Seat','SeatAccess','UNDEFINED','045d17e2-ef80-4f6e-bbe5-0a448874066f','','',NULL), +(15249,'Gadget_Cabinet_kegr_fire_extinguisher_01_NoRN_med','Usable','UNDEFINED','6b896e2b-8ab3-4fcb-80b2-e3ee9025f660','','',NULL), +(15250,'facial_hair_016','Char_Head_Beard','UNDEFINED','34d313db-db6f-45b0-82d9-25ae51fa7df0','','',NULL), +(15251,'Seat','SeatAccess','UNDEFINED','e74c5113-2c7a-46d8-b2cf-d768c8cd2ecf','','',NULL), +(15252,'Lindinium (Ore)','Cargo','Cargo','88f8b244-907d-4d98-a101-05ad06f33619','','',NULL), +(15253,'parr_outfit_01','Char_Clothing_Torso_1','Male','52eacc5a-b800-40a3-917d-7e8fc9ca09df','','','@LOC_PLACEHOLDER'), +(15254,'ThermoWeave Pants ASD Edition','Char_Clothing_Legs','UNDEFINED','175ab9c1-b42e-466c-b1df-97655b37c49d','','','Carrying Capacity: 2K µSCU\n\nThe ThermoWeave pants have a large, easy-access pocket on each leg and feature a special fire-resistant synthetic moisture-wicking lining that makes them comfortable to wear for an entire shift.\n\nWorn by employees who require an extra level of protection in their field, the ASD Edition showcases the reds and greens of the ASD branding.'), +(15255,'Main Powerplant','PowerPlant','Power','87bcad59-966f-4280-b651-1f9a8d92bc32','','','Aegis Idris Powerplant'), +(15256,'Argos IX Torpedo','SpaceMine','UNDEFINED','6d1abfcd-cde1-4c67-b746-3ca4f7f3e774','','','Manufacturer: Talon\nTracking Signal: Cross Section\nSize: 9\n\nThe Talon Argos strike torpedo features a classic, straightforward design that relies on exacting manufacturing standards and a classic cross section targeting system.'), +(15257,'Good Gift Gloves','Char_Clothing_Hands','UNDEFINED','d0a4e9f2-b2f4-496d-8f81-3ac4b3e4d5d6','','','The Good Gift gloves are made to match the festive sweater of the same name. These comfortable holiday hand warmers not only look good but are fingerless to make interacting with items a breeze.'), +(15258,'mobiGlas Steel Casing','MobiGlas','Personal','58588b34-014a-4ec3-a1b9-3265e14c0b56','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(15259,'Weapon_Rack_RSI_Apollo_9_Slot','Usable','UNDEFINED','4e6f6085-488a-575e-7588-d0ed460a68a7','','',NULL), +(15260,'Lynx Legs Embark','Armor','Legs','b75d74b1-312f-4d47-aec6-f9f767cf64a5','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(15261,'Door Control','Door','UNDEFINED','a9fe519f-7380-4cc4-bcb4-44e8bfbf5c9c','','',NULL), +(15262,'Pitambu','Cargo','Cargo','cb99beb7-c38e-4ae3-a54d-6dbb785073fc','','',NULL), +(15263,'RS1 Odysey Spacesuits','Cargo','Cargo','dcb1eadd-c5dd-45d7-aa78-95a341913179','','',NULL), +(15264,'Seat','Usable','UNDEFINED','596f1a18-5310-44be-a941-2af756573e71','','',NULL), +(15265,'StorageCage_Quantum_ZeroG','Cargo','UNDEFINED','33c99a76-d785-46cf-b062-dce892173a91','','',NULL), +(15266,'ANVL_Hornet_F7A_Thruster_Mav_1','ManneuverThruster','JointThruster','a29f1ca0-5d53-4d2f-bccc-633903805115','','',NULL), +(15267,'ClipVest Work Harness Seagreen','Char_Clothing_Torso_1','UNDEFINED','40540ac4-3c6d-40c1-8ae2-c464f45b0c6f','','','Carrying Capacity: 2K µSCU\n\nStegman\'s ClipVest is a multi-purpose work harness that keeps your tools handy when and where you need them. Built from industrial strength materials, this harness offers a back piece to help alleviate strain and provide counterbalance.'), +(15268,'Ranta Dung','Cargo','Cargo','71a8e4a1-31ea-409a-b967-6a6b02c4f269','','',NULL), +(15269,'Hornet Mk II Tigerveil Livery','Paints','UNDEFINED','ee9d65a6-a05e-4af9-a679-180cf0315599','','','The dynamic Hornet Mk II deserves a livery to match. The Tigerveil livery consists of a steely blue with bold orange and subtle black highlights.'), +(15270,'CNOU_Nomad_Thruster_Main_Right','MainThruster','FixedThruster','ddb7bfc6-9ff2-45f4-bd4b-ba5ccb714d27','','',NULL), +(15271,'Col_A_Airlock_Single_Small','Usable','UNDEFINED','175988aa-02b6-4866-8710-0cd76bfc275c','','',NULL), +(15272,'INTK_CNOU_Nomad','FuelIntake','Fuel','d71ef07f-a94a-45ef-a63d-de307ad4b03e','','',NULL), +(15273,'display_box_plastic_4_weapon_opened_005x010x005_rundown_a_3Ports','ShopDisplay','UNDEFINED','ae13d592-cdc0-4422-9c22-e101c05b744e','','',NULL), +(15274,'INTK_ANVL_Gladiator','FuelIntake','Fuel','9dcba84b-cce0-4cfe-a782-70b9a1670e65','','',NULL), +(15275,'Retaliator Backlash Livery','Paints','UNDEFINED','95c59f5f-6d09-46ea-89d4-f6b52f3079ec','','','The bright and bold Backlash livery brings a dynamic design to the Retaliator, featuring a black central stripe ringed in yellow with red highlights.'), +(15276,'Prim Shoes Black','Char_Clothing_Feet','UNDEFINED','2236ff93-0390-48ac-9a4b-7e88f719c924','','','Professional yet casual, the Prim utilizes cutting-edge synthetic construction to provide maximum comfort and a shine that won\'t fade.'), +(15277,'Door','Door','UNDEFINED','834c4b02-9994-494b-afe4-d1e8712d1c46','','',NULL), +(15278,'Archibald Jacket Autumn','Char_Clothing_Torso_1','UNDEFINED','b79e1385-7ecc-4916-a748-d2fe5052c3fe','','','Carrying Capacity: 1K µSCU\n\nSimple, comfortable and understated. While most fashion designers avoid these terms, Escar Limited understands that sometimes you just want something that feels right. Based on the classic design from Centauri II, the Archibald is a simple, comfortable and understated light jacket made from a polyweave that doesn\'t restrict airflow.'), +(15279,'ORC-mkV Arms Orange','Armor','Arms','3f16bfca-14b1-48a4-bd39-1f50db97b599','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(15280,'Cutlass Black Ship Armor','Armor','Medium','7c750d0c-62bc-49ef-ac56-4db3d0cf00fb','','','Cutlass Black Ship Armor'), +(15281,'IVDrip','Misc','UNDEFINED','d79442c2-1cad-45dd-8e54-60589cac7dbe','','',NULL), +(15282,'RSI_Aurora_Mk2_Thruster_Mav','ManneuverThruster','UNDEFINED','7cfbc888-28b5-41dd-aee3-020a7d8da748','','',NULL), +(15283,'RSI Default JetPack','Suit','ThrusterPack','711b363f-5e67-46be-b90d-e4f742c7debf','','','<-=MISSING=->'), +(15284,'RSI_Aurora_GS_Thruster_VTOL','ManneuverThruster','UNDEFINED','e4a67796-4682-4f42-bac4-dbfdaba23d86','','',NULL), +(15285,'Vulture Outcast Livery (Modified)','Paints','UNDEFINED','2fbfdba3-54dc-4c7a-945e-f88eb254127f','','','This version of the livery has been modified from its original form with the addition of graffiti. Embrace chaos with the Outcast livery. It features rough splashes of neon green against black to give the Vulture an aggressively chaotic appearance.'), +(15286,'behr_timed_explosive_01','FPS_Deployable','Small','72a18256-f55c-4de7-b38b-5e69fde066c8','','',NULL), +(15287,'m_teeth_vlk_apex_irradiated','Char_Accessory_Head','Vanduul','b91b1271-6211-4d5d-8b43-6d090e946e63','','',NULL), +(15288,'Door Control','Door','UNDEFINED','dd0581ab-495c-4f25-ba0b-c28ec0b0ee14','','',NULL), +(15289,'Radar_Display_Storm','Display','UNDEFINED','c6e67a52-84e3-4eb3-818d-342f7f22b57f','','',NULL), +(15290,'Parallax \"Sanguine\" Energy Assault Rifle','Weapon','Medium','75ca08ba-6edc-46ed-a13c-56d788e258f9','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Assault Rifle\nClass: Energy (Electron)\n\nBattery Size: 80\nRate of Fire: 200 rpm - Beam\nEffective Range: 30 m\n\nAttachments: Optics (S2), Underbarrel (S2)\n\nWith the Parallax, VOLT offers consumers a rugged assault rifle design with features like a larger-than-average battery and a unique actuator that enables the weapon to scale up into a persistent beam as it fires.\n\nThe \"Sanguine\" edition contrasts deep reds against a crisp gray reminiscent of emergency medical services.'), +(15291,'Defiance Legs (Modified)','Armor','Legs','f52ae812-8273-4ebc-a571-093fcf70da8c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThis version of CDS\'s Defiance legs has been modified from its original form. Incorporating the same manufacturing know-how and expertise that the UEE Marines have come to rely on, Clark Defense Systems has designed their civilian-line of Defiance heavy armors to stand firm in the face of even the most adverse combat scenarios with its three-star rated protective plating and fully integrated mobility framework.'), +(15292,'Door Control','ControlPanel','DoorPart','636414f6-1fd1-494b-98fd-1c3c55efc6e8','','',NULL), +(15293,'Door Control','ControlPanel','DoorPart','4ca8a1ce-c102-42bb-89df-2b928d2f014c','','',NULL), +(15294,'OxyPen','FPS_Consumable','OxygenCap','54143614-a946-4964-9587-fb4d0ce7aed1','','','Manufacturer: CureLife\n\nThis easy-to-carry disposable first-aid system is designed to refill pressure suit oxygen reserves in emergency situations. Compatible with most standard suits, the Curelife OxyPen is an ideal solution for preventing hypoxia and providing immediate access to lifesaving oxygen.'), +(15295,'Seat','SeatAccess','UNDEFINED','d9298478-419c-4b55-ad72-23c1c21bed7f','','',NULL), +(15296,'Paint_MPUV_Default','Paints','UNDEFINED','4a30c4e2-1681-4a93-a404-0ef6e06bc38e','','',NULL), +(15297,'Bed_Bunk_Shutter_Top_AEGS','Door','UNDEFINED','0e2a1abb-3302-4f32-96f0-8f2018800f42','','',NULL), +(15298,'MSD-322 Missile Rack','MissileLauncher','MissileRack','d7816c09-3cd3-4669-ad42-d6562894cbc6','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 3\nMissiles: 2xS2\n\nBehring’s MSD-322 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 3 hardpoint for the reliable and effective launch of two S2 missiles.'), +(15299,'ANVL_Door_Decal_Carrack_Mess','Decal','DoorPart','160b32e6-5df2-49b0-bd00-c6e44a41fa00','','',NULL), +(15300,'Food_Grub_Seanut_2_Plain','Food','Consumable','b55d0915-f8a3-4ee6-9ed0-b8d0fe67d105','','','@LOC_PLACEHOLDER'), +(15301,'DockingTube_Fuel_Ports_CRUS_Spirit','DockingCollar','UNDEFINED','454e2773-3950-4779-963a-46a49169856d','','',NULL), +(15302,'DockingTube_Fuel_Ports_RSI_Mantis','DockingCollar','UNDEFINED','bf39b743-ec3d-436b-9f23-81bcb296ca46','','',NULL), +(15303,'PLACEHOLDER','Char_Clothing_Torso_1','UNDEFINED','f7e93671-9285-42e4-ae1d-79895b6ef306','','','PLACEHOLDER'), +(15304,'Cutter Light Beam Livery','Paints','UNDEFINED','474189e9-1970-4ee4-b74f-7588a0425e2a','','','Bright and bold yellow balanced by black highlights makes the Light Beam livery for the Cutter standout from the crowd.'), +(15305,'TRGT. STATUS','Seat','UNDEFINED','2ff6a0f0-5119-4e4f-8d92-2b65d9029bab','','',NULL), +(15306,'RSI_Zeus_Wing_Right','AttachedPart','UNDEFINED','df0e1de8-80a4-42fe-9ac3-06825ec33669','','',NULL), +(15307,'Debnam Gloves Violet','Char_Clothing_Hands','UNDEFINED','9c6305c4-cff5-4b65-b4ff-2c699c481e25','','','Named after the influential Terran tailor, Debnam gloves incorporate that famous tailor\'s classic design to keep your hands comfortable in colder temperatures.'), +(15308,'Starlancer Deadlock Camo Livery','Paints','UNDEFINED','696675a8-5642-4e6f-b05b-129bfac6dcce','','','Disguise the silhouette of the Starlancer with the Deadlock Camo livery, featuring a grey camo pattern with yellow highlights.'), +(15309,'Tau Plus LL (4x Telescopic)','WeaponAttachment','IronSight','98dc4abb-8518-479e-a56d-f15d98e037df','','','Manufacturer: NV-TAC \nType: Telescopic\nAttachment Point: Optic \nMagnification: 4x\nAim Time: +25%\nSize: 2\n\nThe Tau Plus 4x telescopic sight from NV-TAC uses a proprietary optics coating to ensure a crystal clear image regardless of light levels and conditions, allowing you to precisely engage targets at medium range. This version of the scope includes low-light functionality suitable for operations in dim environments.'), +(15310,'Fortifier Helmet White','Armor','Helmet','a490f534-4324-4fd9-8cc2-cab32a70fb71','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nProtect your most valuable asset with the Fortifier. Intended for extremely hostile environments, this heavy helmet makes up for its limited visibility with extra plating that protects the neck and back of the head.'), +(15311,'Carryable_1H_CY_mug_coffee_1_b','Drink','UNDEFINED','fa8519ce-ac3a-46f2-936c-3dd1385a5940','','',NULL), +(15312,'Rieger-C3 Module','MiningModifier','Gun','2ceb0de9-105b-434e-a152-8af1fd1660d0','','','Manufacturer: Shubin Interstellar\nItem Type: Mining Module (Passive)\n\nMining Laser Power: 125%\n\nOptimal Charge Window Size: -1%\n\nThe Rieger-C3 Module boosts laser power but requires more precision to find an effective mining area.'), +(15313,'ORIG_X1_ShieldFluff','Misc','UNDEFINED','afc8b7a6-60e7-4993-a9f1-8b053c08e540','','',NULL), +(15314,'350r Ship Armor','Armor','Medium','fb124b63-1280-4117-8639-a40012694996','','','350r Ship Armor'), +(15315,'ARGO_CSV_FM_Dashboard_Driver','SeatDashboard','UNDEFINED','90b5d576-c521-40dc-8ead-e29bdb39a0cf','','',NULL), +(15316,'CRUS_Spirit_Door_Decal_Battery','Decal','DoorPart','07d04beb-1983-497b-804b-bc2b613281a1','','',NULL), +(15317,'behr_prx_kinetic_01','Weapon','Weapon','15c3e0ee-ddc6-4b84-9aba-5e1eb3798942','','',NULL), +(15318,'Good Enough Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','22ee1aa7-4e3c-4f25-8c76-1b1c3e7ddae1','','','This shirt from an unknown manufacturer has been mended and refashioned to give it a second life. Half of the right sleeve was beyond repair, so the rest of it was turned into an elbow cuff.'), +(15319,'ForceFlex Undersuit Black/Red','Armor','Undersuit','46930f35-6727-4aab-b484-ceab59c923e2','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nVirgil\'s ForceFlex is the next generation in undersuit technology. Rated for combat as well as industrial work, you can rest assured that the comboweave will keep you protected in whatever situation you put it through.'), +(15320,'ORIG_300_RADR_Display','Display','UNDEFINED','823f9fa4-36e0-4f62-9977-47bbd7ad1f5d','','',NULL), +(15321,'Manned Turret','TurretBase','MannedTurret','3614ff8a-d24d-4d56-84db-8efac6b6c70f','','',NULL), +(15322,'CSP-68L Backpack Night Camo','Armor','Backpack','2ad12fcf-6fdb-4ead-9559-ee7d2d5cacaa','','','Item Type: Light Backpack\nCarrying Capacity: 54K µSCU\nCore Compatibility: All\n\nBe ready for any situation with the CSP-68L Backpack. Originally designed for the rigors of combat support, this light backpack has become popular thanks to its durability and patented core connector that helps the CSP-68L sit comfortably and balanced on the back. The Night Camo edition features a special textured finish and mixes black camo and silver for a subtle yet striking look.'), +(15323,'Cyclone Invictus Blue and Gold Livery','Paints','UNDEFINED','925dc1e1-7b94-4799-b0c0-a050a30d1376','','','Featuring a vibrant blue base color and gold highlights, the Invictus Blue and Gold livery will give your Cyclone a striking style.'), +(15324,'Seat','SeatAccess','UNDEFINED','887530ee-99f1-495e-ae5d-03aee1a47683','','',NULL), +(15325,'AEGS_Reclaimer_Drone_Right_Dashboard','SeatDashboard','UNDEFINED','838b72e5-3905-4471-92e7-15412a94ba37','','',NULL), +(15326,'Seat','Usable','UNDEFINED','21f6bb9e-00fd-49c2-87f0-ea85371705ef','','',NULL), +(15327,'AEGS_Idris_Thruster_Main_Fixed_01','MainThruster','JointThruster','a2cdb461-b5eb-4e04-a7ab-25bf24613f2f','','',NULL), +(15328,'Aurora Mk I Foundation Fest Livery','Paints','UNDEFINED','22c362b5-fb99-4754-a44b-dbf883328a7f','','','Foundation Festival is an opportunity for Citizens and Civilians to come together and strengthen the foundation of our community. Show your commitment to a better universe with this custom livery.'), +(15329,'Screen','Display','UNDEFINED','58c4613e-a772-4147-a5dc-5ece1556e0c9','','',NULL), +(15330,'Hornet F7A Ship Armor','Armor','Medium','6617db69-c01d-4db5-8f16-9e2a9262c43d','','','Hornet F7A Ship Armor'), +(15331,'Stratus Jacket Green','Char_Clothing_Torso_1','UNDEFINED','53b5ba64-da21-4edc-b73c-ed3095a45699','','','Temp. Rating: -20 / 20 °C\nCarrying Capacity: 3K µSCU\n\nEven though it\'s rated to withstand arctic conditions, you won\'t want any snow accumulating on this distinct and dazzling jacket. The Stratus will keep you warm from neck to knees thanks to its high collar and precisely layered pieces.'), +(15332,'Tekaw Pants Arctic','Char_Clothing_Legs','UNDEFINED','b9c61e6d-a393-4bf7-a290-a1b46ed9a998','','','Carrying Capacity: 1K µSCU\n\nComfortable enough to wear all day yet designed to thrive under harsh conditions, the Tekaw pants are perfect whether you\'re on or off duty. Their stylish yet durable design includes a water-wicking coating and padded shins guards with wrappings that ensure a snug fit.'), +(15333,'Hornet F7CR Ship Armor','Armor','Medium','307b79fa-383d-44c9-9f7a-78ed8a93115d','','','Hornet F7CR Ship Armor'), +(15334,'Anvil Void Ship Armor','Armor','Medium','9339fe50-9d27-4c62-a3cd-e4e9fb11e596','','','Anvil Void Ship Armor'), +(15335,'Door','Door','UNDEFINED','8db97f17-ef0a-427a-8bec-83e6e25441f1','','',NULL), +(15336,'Aril Core Harvester','Armor','Torso','9a55a9ae-f48c-4233-88ce-eb057acce8d9','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(15337,'Edgewear Pants Aqua','Char_Clothing_Legs','UNDEFINED','0b770ab5-ba03-4a1e-a77d-778703a9967f','','','Carrying Capacity: 4K µSCU\n\nStegman\'s Edgewear utility clothes are made from reinforced nylon weaves and lined with temperature-rated quilted technology to provide you with a little extra protection while on the jobsite. Double knees, reinforced joint pads and extra pockets add comfort and durability to this field-tested and worker-approved clothing line.'), +(15338,'INTK_VNCL_Scythe','FuelIntake','Fuel','90da94fb-e54a-4cfb-b60b-d24ff1d52fdc','','',NULL), +(15339,'Internal Tank','QuantumFuelTank','QuantumFuel','e29a09db-5528-4923-95be-81e7099daba4','','',NULL), +(15340,'CNOU_Nomad_Thruster_Main_Left','MainThruster','FixedThruster','3a11a9d4-3c83-4acb-85cd-da024def032a','','',NULL), +(15341,'Carryable_1H_CY_takeaway_package_1_closed_a','Misc','UNDEFINED','ba9c9e16-982e-4f3b-9536-5e8ec312452b','','',NULL), +(15342,'Keystone Jacket Red','Char_Clothing_Torso_1','UNDEFINED','d457e8da-3fbf-4bb3-8c6e-b9643bad279a','','','Carrying Capacity: 1K µSCU\n\nDMC’s Keystone is a two-layer jacket that puts utility first. The top-most vest layer ensures the Keystone jacket remains warm and durable, while the underlayer is designed to avoid restricting your range of motion. Various pockets adorn the jacket to provide convenient storage options.'), +(15343,'DockingTube_Fuel_Ports_ANVL_paladin','DockingCollar','UNDEFINED','92c27d1e-2a01-4dcd-9232-277c5566d991','','',NULL), +(15344,'Raw Silicon','Cargo','Cargo','5b0d3ab2-7f86-440b-afff-e369eaaea08d','','',NULL), +(15345,'Turret','Turret','BallTurret','3a94bd3d-20a1-44ff-9ec6-c93197109f19','','',NULL), +(15346,'ADP Arms Aqua','Armor','Arms','3b9444ff-3e2d-4e46-a351-a81574a01b5f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(15347,'Flight Blade','FlightController','UNDEFINED','da9a2d6c-8ffc-4f77-a00b-8e1c16e18d90','','',NULL), +(15348,'ARMR_RSI_Lynx','Armor','Medium','2fa21273-743b-48d2-ad67-7c064d97f05c','','',NULL), +(15349,'Idris Sharktooth Livery','Paints','UNDEFINED','145d7b4a-033e-4267-9fb9-129737d6d09d','','','Charge into battle in stylish and dramatic fashion with the Sharktooth livery. It gives the Idris a distinct look using beige and black for a disruptive coloration pattern that helps break up the silhouette of the ship.'), +(15350,'FBL-8a Legs Imperial Red','Armor','Legs','824428be-669c-43e0-a91d-3ac080afaff9','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nCDS\'s quest to create the ideal light armor continues with the FBL-8a. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible.'), +(15351,'utensil_tray_1_food_a_with_loadout_chowlinefood_Dirty','Misc','UNDEFINED','a7f0d547-6f89-4964-841d-ff1c73d4e0e1','','',NULL), +(15352,'Table_2_Seat_High_Hightech_1_a','Usable','UNDEFINED','c26e26b1-84d1-448c-9314-72dba7e71cd3','','',NULL), +(15353,'Seat','SeatAccess','UNDEFINED','d642cd30-2d62-4bdd-b5c0-1ace6dff14dd','','',NULL), +(15354,'Dashboard','SeatDashboard','UNDEFINED','4c67f096-b85c-4095-9837-c7d108d162af','','',NULL), +(15355,'m_teeth_vlk_apex','Char_Accessory_Head','Vanduul','7b8ac7c2-8924-4746-994a-a5a46d9acf34','','',NULL), +(15356,'Flight Blade','FlightController','UNDEFINED','0ba8bdec-156e-4f5d-96d3-2805d52f43fb','','',NULL), +(15357,'Talon Wanderer Livery','Paints','UNDEFINED','0a735517-a6ac-4a9a-98cb-2f5b71f12cc4','','','The Wanderer livery features crisscrossing purple and grey lines over a platinum foundation. Inspired by the sacred Xi\'an gardens of R.aip?uang, famous for its trails that wander in surprising ways and encourage a focus on the journey instead of the destination.'), +(15358,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','e33364ec-ebb5-41ea-85c1-35aa5b07e8ee','','','Aegis Gladius - Decoy Launcher'), +(15359,'Heart of the Woods','Cargo','Cargo','53d0a376-09f1-4b19-b8b0-fd0b271be21d','','',NULL), +(15360,'MISC_Hull_C_FoldingStrut_1A_Outer','Cargo','UNDEFINED','f5a97a63-7cc5-4159-9cda-40683df5d9d1','','',NULL), +(15361,'Marksman I-G Missile','Missile','GroundVehicleMissile','5af848a3-a8e4-487e-8e40-58dc012d97ad','','','Manufacturer: Behring \nTracking Signal: Infrared \nSize: 1 \n\nBehring\'s Marksman series of proximity missiles has earned as much of a reputation for its ability to track a wide range of heat signatures as it has for its area-effect proximity damage. Note: This missile may only be launched by ground vehicles.'), +(15362,'Threshold Pants','Char_Clothing_Legs','UNDEFINED','dd6b36aa-729d-4a5c-b89c-74e2d1b677ab','','','Carrying Capacity: 0.5K µSCU\n\nThe company\'s classic pant, the Threshold line features a glossy faux-organic exterior, an attached belt with real metal buckle, and reinforced knee pads. Additionally, the pants are decorated with non-constructive stitching and include two hip pockets.'), +(15363,'ARGO_MPUV_Body','Misc','UNDEFINED','995cb836-1f8c-434e-b8d2-9e272b7ceb01','','',NULL), +(15364,'Internal Tank','FuelTank','Fuel','36d35e28-4ed8-4d54-a602-81ad084249c4','','',NULL), +(15365,'RSI_Constellation_Base_BayWall_Left','Container','UNDEFINED','3159cc1e-b097-4d41-b9f3-20762bb50034','','',NULL), +(15366,'display_components_noGeo_01Port_s01','ShopDisplay','UNDEFINED','1029c3ee-cea6-4ffd-9a50-415aacf3cf6f','','',NULL), +(15367,'Pembroke Exploration Suit Starchaser Edition','Armor','Undersuit','dd23f409-5885-48e7-b8ac-4beb5de4064f','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nDesigned to extend the limits of Human endurance, the Pembroke Starchaser was built to withstand the extreme heat of inhospitable high temperature environments. Based off of Caldera\'s best-in-class exploration armor platform, an advanced sensor suite intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. Also featuring a bespoke helmet that integrates with the cutting edge life support system, the special Starchaser edition of the Pembroke ensures those seeking to cross bold new horizons do so in style.'), +(15368,'INTK_AEGS_Sabre_Firebird','FuelIntake','Fuel','7c85f891-8025-4f32-a3da-6b8e5c947653','','',NULL), +(15369,'AIModule_Unmanned_PU_UEE_GreenZone_Large_Turret','AIModule','UNDEFINED','404e42fe-f58f-485b-b3f3-e265e28a882d','','',NULL), +(15370,'Bar_station_3spots','Usable','UNDEFINED','48c35010-f4c7-45ee-8f35-1830f4f7eea9','','',NULL), +(15371,'Clempt Pants','Char_Clothing_Legs','UNDEFINED','1e0609a7-d2be-4d13-b772-3de50283adc9','','',NULL), +(15372,'ANVL_Pisces_Thruster_Main_Right_C8X','MainThruster','FixedThruster','74ed8831-202d-4aa4-b388-d62faf7858b9','','',NULL), +(15373,'Deo Shirt Purple','Char_Clothing_Torso_0','UNDEFINED','bba4b420-5e5e-48a4-a53d-450ebe0caca0','','','Fiore\'s Deo is a slim cut work shirt that\'s as practical as it is timeless. Featuring a high collar and metal neck clasp, the Deo has been a mainstay in business attire.\n\nWomen\'s sizes currently out of stock.'), +(15374,'Campo Shoes Viridian','Char_Clothing_Feet','UNDEFINED','29beec77-1546-4334-833b-8f828dde21ee','','','Slip into comfort with the Campo shoes, which have a supportive midsole, cushioned footbed, and a molded, slip-resistant outsole. These ankle high slip-ons deliver an ideal fit thanks to two adjustable straps with metal clasps.'), +(15375,'DustUp Core Tactical','Armor','Torso','d2a646ec-e3ad-4b97-9903-0f0510dbf840','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -60 / 90 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light \n\nThe DustUp has your back if you’re looking to get into some trouble. The body plating is built off of the same CDS undersuit used by the UEE Marines, it adds reconstructed Omni-Role mkII pieces to give you solid protection against incoming fire, but the real gem is the modified helmet. That thing was built to withstand explosions, so it should totally protect you against some shots. The whole thing’s been reasonably tested against vacuum too, so you can feel free to EVA all you want without worrying about dying.'), +(15376,'DRAK_Caterpillar_Thruster_Retro','ManneuverThruster','FixedThruster','b9bb6def-e4f8-4e3b-afbf-84d936a68e71','','',NULL), +(15377,'Seat','SeatAccess','UNDEFINED','5e6508c2-d130-42f1-9463-892b01d33e67','','',NULL), +(15378,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','e8669a6c-dada-45d3-98c9-d3d466f99849','','','Aegis Gladius - Decoy Launcher'), +(15379,'ANVL_Door_Decal_Carrack_PortTurret','Decal','DoorPart','388013bb-54ae-4322-8ac6-7680cb1dbcd4','','',NULL), +(15380,'Stool','Seat','UNDEFINED','c098cdde-2d2f-41fe-9d28-c22dbcfa696b','','',NULL), +(15381,'Flight Blade','FlightController','UNDEFINED','2b3b2ac7-07f6-4261-a4f5-4e7093f3bffe','','',NULL), +(15382,'Laranite','Cargo','Cargo','a88ae2b1-5ec4-4fe2-af5e-fc2ac4b1bc43','','',NULL), +(15383,'Weapon_Rack_1_BEHR_Sniper_AmmoOnly_001','Usable','UNDEFINED','52a39b2a-e2cf-48d9-903f-be78c90c7ab7','','',NULL), +(15384,'Weapon_Rack_DRAK_Mule_1Slot','Usable','UNDEFINED','a27d2cd9-f123-4e20-98f8-0cf9e6aa9fba','','',NULL), +(15385,'lt_crate_dry_2_0125x0125x0125_a','Cargo','UNDEFINED','0f13f875-b785-4cdc-9a0a-9f7a4d24812a','','',NULL), +(15386,'Debnam Gloves Grey','Char_Clothing_Hands','UNDEFINED','5513c5e9-b4e8-47d8-831f-97f35b7d7c2b','','','Named after the influential Terran tailor, Debnam gloves incorporate that famous tailor\'s classic design to keep your hands comfortable in colder temperatures.'), +(15387,'Workzone_Floor_Mechanic','Usable','UNDEFINED','406feb7f-e655-4fb2-9ba1-59ee3148849b','','',NULL), +(15388,'MISC_Starfarer_Gemini_SCItem_Seat_CoPilot','Seat','UNDEFINED','08f4e776-003e-4fc1-9dec-f89219e8f147','','',NULL), +(15389,'Xanthule Tahn Suit','Armor','Undersuit','8166a3fb-d7af-496b-bba3-08db32bbc6ef','','','Item Type: Flight Suit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 6.5 µSCU\nBackpacks: Light\n\nPerfected through centuries of innovation, Syang Fabrication\'s sleek and stylish Xanthule flight suit has been meticulously adapted to the Human physique. The Xanthule suit features breathable lightweight plating made with a carbon-silk weave that provides reliable protection while maintaining the famed House\'s signature aesthetic.'), +(15390,'LifeCure Medsticks','Cargo','Cargo','167443f4-7211-4e0d-8184-5d7b4b756da0','','',NULL), +(15391,'Lotus','PowerPlant','Power','313907ec-6ce1-473e-8505-3d3e3209075e','','','Item Type: Power Plant\nManufacturer: Sakura Sun\nSize: 2\nGrade: A\nClass: Civilian\n\nWhen it comes to medium sized, civilian power plants Whitley’s Guide continues to rate the Lotus highly. Few can touch this Sakura Sun component when it comes to both performance and durability.'), +(15392,'Pite','Char_Head_Piercings','UNDEFINED','1a9b59f4-80a2-4343-af62-0efa7cb26ec0','','',NULL), +(15393,'Door Control','ControlPanel','DoorPart','320bd8ac-f96d-4acc-84f9-572f242c7e59','','',NULL), +(15394,'Carryable_TBO_FL_24SCU_Commodity_ProcessedGoods_ProcyonCanister_Damage','Cargo','Cargo','50bf80df-2de3-46a2-a629-87874134cd4f','','',NULL), +(15395,'Lillo Pants Esteril','Char_Clothing_Legs','UNDEFINED','207b99e1-2ec1-4bb6-bb49-70a9480f1208','','','Carrying Capacity: 0.5K µSCU\n\nThese slim cut pants from Fiore give you a tailored feel at a fraction of the cost. Built from space-age weaves, the Lillo are a low maintenance, high impact addition to your office wardrobe.'), +(15396,'Door Control','Door','UNDEFINED','946517e3-21a8-46fa-85de-f63532c3d893','','',NULL), +(15397,'TrueDef-Pro Arms White/Silver/Grey','Armor','Arms','6dcb0e0f-1c37-4fe5-b38a-39dcc07ca6ed','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(15398,'Venture Legs Dark Green','Armor','Legs','d579625b-9d8f-4201-bf35-cb352087db88','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(15399,'ESPR_LaserCannon_Barrel_S3','WeaponAttachment','Barrel','54fc7663-64ca-4fd3-98ce-86bfb266b274','','',NULL), +(15400,'Ribbon Fish','Misc','UNDEFINED','7ffe1597-36dc-459d-8e9b-b9cf7cf1dea1','','','Ribbon fish (Vario Vitas) have become a very popular first pet among children due to the minimal amount of care needed to keep them alive and the variety of their vibrant coloration.'), +(15401,'Morozov-SH Helmet Red Alert','Armor','Helmet','585a0ef1-0be5-4852-b0f4-d49beb7a4f75','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(15402,'P8-SC \"Red Alert\" SMG','Weapon','Medium','7a81b598-ce83-44e0-88f9-482e528c3747','','','Manufacturer: Behring\nItem Type: SMG\nClass: Ballistic\n\nMagazine Size: 45\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nWhen the top fighting force in the universe chooses a weapon as their standard, it pays to stand up and take notice. The Behring-crafted P8-SC has been the ballistic submachine gun of choice for the UEE Marines since it first came off the production line, but since then, many have come to rely on this weapon for their own personal safety and protection. The \"Red Alert\" edition mixes grey and a vibrant red for a bold and dynamic design.'), +(15403,'Seat','Usable','UNDEFINED','39425a81-2231-4e85-a1f3-b7cc4552197c','','',NULL), +(15404,'Weapon_Rack_1_LBCO_Sniper_Common_001','Usable','UNDEFINED','afb29b51-7108-46e6-b3c9-0fc0d3421e69','','',NULL), +(15405,'rod_cargo_rail_2_a_02x01x02_06Ports','ShopDisplay','Default','9b9e3b77-abca-4c93-8bf2-91805b1b3fa4','','',NULL), +(15406,'G-2 Helmet Purple','Armor','Helmet','f86c916f-751d-4c69-9926-0066621acb1b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. Visor is AR crosshair compatible.'), +(15407,'Prospector Keystone Livery','Paints','UNDEFINED','1df42a5b-00ef-47e0-9c5a-12876483d8f2','','','Crisp white with blue accents, the Keystone livery celebrates the workers whose mining, refining, hauling, salvaging, and more have made the empire what it is today.'), +(15408,'Venture Core Envy','Armor','Torso','c2eda8c0-d84d-48eb-941d-3b36a7b6b995','','',NULL), +(15409,'AEGS_Idris_SCItem_Seat_Captain_Blocked','Seat','UNDEFINED','4e420a3b-3f04-4163-bea5-f6969d706110','','',NULL), +(15410,'AEGS_Idris_SCItem_Seat_Comms','Seat','UNDEFINED','9fa0f417-9cf2-489e-94ff-9688b0d7d5bd','','',NULL), +(15411,'Seat','SeatAccess','UNDEFINED','29f19b90-b8a2-4ddb-b45a-bf3c440452aa','','',NULL), +(15412,'JOKR_DistortionCannon_FiringMechanism_S2','WeaponAttachment','FiringMechanism','9b89f35a-b643-4f36-a182-27d058646f8b','','',NULL), +(15413,'ORIG_890J_Seat_BattleBridge_Middle','Seat','UNDEFINED','f03fff8a-d990-4ab0-a906-3f4bde5137a5','','',NULL), +(15414,'Fresh Garden Smoothie','Drink','Bottle','55b325fb-b42c-4ada-a986-cbd2d3697cf8','','','HEI: 39\nNDR: 15\nEffects: Immune Boosting\n\nGarcia\'s Greens Fresh Garden Smoothie is a tasty rainbow picked from nature’s finest and freshest ingredients.'), +(15415,'FBL-8a Legs (Modified)','Armor','Legs','ceaa6278-769c-407f-b678-b470d757dbde','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nBased on CDS\' FBL-8a combat armor, this set has been modified from its original form. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible.'), +(15416,'AEGS_Sabre_Raven_Thruster_Retro_Right','ManneuverThruster','FixedThruster','359c6886-aaca-4208-9396-e59b34f10c7a','','',NULL), +(15417,'Internal Tank','FuelTank','Fuel','2e86aa19-bc23-4918-9822-2fa8d3a43a26','','',NULL), +(15418,'Talon Luminary Livery','Paints','UNDEFINED','a4297f14-1746-4050-b93d-50fd87eb5819','','','The Luminary livery gives the Talon a glossy green base paint with brown highlights for a dazzlingly beautiful and complex design.'), +(15419,'Trace Pants','Char_Clothing_Legs','UNDEFINED','1bc4abfc-9c0d-4132-8c0a-90dfe2ab8c13','','','Carrying Capacity: 1K µSCU\n\nMake all the right connections with the Trace pants from City Lights. These denim blue pants are inlaid with a silver circuit pattern on the lower leg and double-breasted chap embellishment on the top.'), +(15420,'Turkey Sandwich','Food','Junk','4b02f40a-c9e0-4fa7-86d3-a512c9549d4a','','','NDR: 41\nEffects: None\n\nJuicy 62°C Turkey is sliced thin and married with muhammara sauce, arugula, 4-year-old blue gouda, and crisp vermillion apple all on spelt bread. At Twyn\'s, it\'s what\'s inside that counts.'), +(15421,'Foundation Festival Beanie Teal','Char_Clothing_Hat','UNDEFINED','83b60822-7428-4913-99b8-0d177c8d42fb','','','Show your solidarity and commitment to forging a brighter future for the UEE with this Foundation Festival beanie. Made from high-quality cashmere spun on Angeli, this double layer beanie is ultrasoft, warm, and features the Foundation Festival logo on the front.'), +(15422,'Tin','Cargo','Cargo','7cfe21b7-a691-42a0-ac3e-4c77e8b16c59','','',NULL), +(15423,'DRAK_Caterpillar_CargoGrid_Nose','CargoGrid','UNDEFINED','3dd24ff5-0b82-4312-9eff-acc259d2aa3a','','',NULL), +(15424,'UEE_GurneyStraps','Misc','UNDEFINED','3108b6cd-d579-443e-b760-698bf77addf5','','',NULL), +(15425,'DuraJet','PowerPlant','Power','63a0ae66-9852-456e-90a0-1c83e3653efd','','','Item Type: Power Plant\nManufacturer: Lightning Power Ltd.\nSize: 0\nGrade: D\nClass: Civilian \n\nThe DuraJet is Lightning Power Ltd.’s base vehicle power plant. Not only does its design catch the eye, but its reliable construction and affordable price point make it a prime option to keep power flowing through your vehicle.'), +(15426,'Door Control','ControlPanel','DoorPart','d32558e0-7049-4f07-8e41-c0e21381ec99','','',NULL), +(15427,'Hull C Empyrean Livery','Paints','UNDEFINED','27efa48a-bb53-4afb-a7e8-919213fcbeb7','','','Cargo hauling takes on a bold new look with the Hull C Empyrean Livery which features a dynamic tricolor layout. Yellow highlights divide a white front from a grey back section lending the appearance of speed to the freighter.'), +(15428,'Railing_Straight_1m_Colonial_Wall','Usable','UNDEFINED','a5f50c6e-ff14-43bd-836a-65cf901852e5','','',NULL), +(15429,'Door','Door','UNDEFINED','aa80ea4f-e312-41ad-931d-203aabb56304','','',NULL), +(15430,'Chiron Backpack Lifesaver','Armor','Backpack','ac1cddc4-b4c9-4240-acf9-c2bb7c1d831a','','','Item Type: Light Backpack\nCarrying Capacity: 75K µSCU\nCore Compatibility: All\n\nEngineered with first responders in mind, the Chiron backpack provides an ideal carryall for critical supplies with quick access to the medical essentials that are stored inside.\n\nThe Lifesaver edition was styled for first responders to be highly visible with a teal, white, and red color scheme.'), +(15431,'Titanium','Cargo','Cargo','164d0932-04b8-48a3-8d04-58bba59e35ce','','',NULL), +(15432,'Piecemeal Armor Core Olive','Armor','Torso','f1e557da-9df9-486e-9d4a-190fb5f3d91d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -32 / 62 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nThis armor was created using repurposed parts from a Caldera armor set to provide the wearer with an extra layer of protection against aggressors and harsh environments.'), +(15433,'ARGO_MPUV_Lights_Leg_Right','Room','UNDEFINED','e9451017-f070-4cd8-9ae4-d9edccdd51a4','','',NULL), +(15434,'ARMR_CRUS_Spirit','Armor','Medium','f31ff3fe-f1e8-414f-beab-b0a1f7f60f11','','',NULL), +(15435,'Coloma Coat Ice and Iron','Char_Clothing_Torso_1','UNDEFINED','150f637f-362d-4f3d-b69a-4e8d7d730ff9','','','Carrying Capacity: 1K µSCU\n\nStuffed with water-resistant gilly down, the Coloma coat blocks wind, traps body heat, and allows the wearer to move freely, making it the perfect choice for changeable weather conditions. Additionally, its roomy pockets provide plenty of storage.'), +(15436,'Carryable_1H_CY_tool_manual_ratchet_1_a','Misc','UNDEFINED','a7baa544-68eb-483b-b6a4-5c14caa32809','','',NULL), +(15437,'AEGS_Javelin_Thruster_Mav_Joint_02','ManneuverThruster','JointThruster','0d745130-9aa6-4cb7-bf13-ca4c32ed7ef2','','',NULL), +(15438,'Door Control','Door','UNDEFINED','04e8ae1d-7ba7-4b24-9a36-2127507b39a6','','',NULL), +(15439,'sc_nvy_deckcrew_gloves_01_01_01','Char_Clothing_Hands','UNDEFINED','d26e6216-d911-41b9-b798-2f8e8af3b4fb','','',NULL), +(15440,'Access','SeatAccess','UNDEFINED','55568d9a-4ae5-44b2-a4e1-515f52619498','','',NULL), +(15441,'SHIELDS','ShieldController','UNDEFINED','23904279-3b05-4f2e-9506-5694e317acf1','','',NULL), +(15442,'ht_light_flood_1_tripod_a','Light','UNDEFINED','e10a9e35-b63e-4031-9aee-20458648bade','','',NULL), +(15443,'PAB-1 Core Grey','Armor','Torso','86762ab1-359e-4afb-bc9e-e37cacc4ba6c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(15444,'Weapon_Rack_RSI_Constellation_2_Slots','Usable','UNDEFINED','4509c86a-0ab3-43e5-98bd-e77663140de2','','',NULL), +(15445,'Ball','Char_Head_Piercings','UNDEFINED','677967f7-e339-4cf7-b131-677eabb71764','','',NULL), +(15446,'Door Control','ControlPanel','DoorPart','0d1aa643-8562-463a-902e-ac955d921fce','','',NULL), +(15447,'Seat','Usable','UNDEFINED','cc04799a-9d6d-4055-818d-0edcb25016ba','','',NULL), +(15448,'Francis the Stormwal Plushie','Misc','Personal','71f7aea3-4386-4ce6-b20d-9dbe92dea47d','','','Francis the Stormwal loves sailing through the clouds in Crusader\'s atmosphere. Much like Crusader\'s ships, Francis is big, graceful, and quite the sight to behold. Now this majestic creature can accompany you on a journey through the stars with this soft and squeezable plushie.'), +(15449,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','5a5fad04-0ae6-418f-bbe5-0167319190bc','','','Joker Defcon - Noise Launcher'), +(15450,'Teddy Bear','Misc','UNDEFINED','dff98a43-2fe4-4ed1-b504-68a7d6dad996','','',NULL), +(15451,'Tuvois Jacket Dark Red','Char_Clothing_Torso_1','UNDEFINED','6e7e0bfc-78bc-49a6-9bb9-93c328efe74c','','','Carrying Capacity: 1K µSCU\n\nCreated in collaboration with legendary designer Avon, OpalSky is proud to unveil the Tuvois, an open vest featuring stark, bold styling that\'s destined to make an impression. \n\nWomen\'s sizes currently out of stock.'), +(15452,'Venture Arms Grey','Armor','Arms','6fafbcd2-f376-470b-b2ec-fea3a8aaf1e9','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(15453,'ORIG_M50_Thruster_Mav_Joint_Bottom','ManneuverThruster','FixedThruster','fd88eae1-968c-4b89-a941-72dff40cf869','','',NULL), +(15454,'Stor*All Big Box Model H','Module','UNDEFINED','8661bcd6-9247-4376-8509-11af3d24a44c','','','Manufacturer: Stor*All\nItem Type: Storage\n\nDesigned exclusively for the Hornet F7C, the Stor*All Big Box model H replaces the void left by the turret system of the military-spec craft with a respectable cargo hold. Transforming the flagship fighter of the UEEN into a durable hauling ship.'), +(15455,'Seat','SeatAccess','UNDEFINED','6344839b-e9e5-4bca-a758-897e2789ad34','','',NULL), +(15456,'PAB-1 Arms Dark Green','Armor','Arms','9cecfdb3-c7e8-4b19-a2b6-fdd3d0f8eba9','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(15457,'Weapon Rack','Usable','UNDEFINED','7854228c-cbf2-4d29-94f6-6cc78bcc8146','','',NULL), +(15458,'RSI_Hermes_Nacelles','AttachedPart','UNDEFINED','52444f74-ce33-4dbb-9417-8810af2d8f86','','',NULL), +(15459,'Utility Grav-Cart','Cargo','Cargo','e5d86fb3-7d97-48f7-b54c-ff46888adb34','','','Thanks to GravLev, this utility hand truck makes carting heavy loads much easier.'), +(15460,'Carbon','Cargo','Cargo','155e7734-7a5d-407e-b577-46ba2729421c','','',NULL), +(15461,'Government Cartography Agency Medal (Damaged)','Misc','Trophy','a1588375-d111-4c9f-8074-cbff70d5ab77','','','This medal was awarded by United Planets of Earth (UPE) to members of the Government Cartography Agency who flew or supported missions involving the discovery, exploration, or scanning of new systems. It features a star woven with one large and three smaller interlocking circles that was the central symbol on the UPE flag. The tattered ribbon and broken and corroded metal has left this one in poor condition.'), +(15462,'Door','Door','UNDEFINED','b3d4b487-2caa-484e-ac69-c8ad20a4e4d9','','',NULL), +(15463,'MISC_Hull_C_CargoGrid_Outer','CargoGrid','UNDEFINED','8ef22d40-2797-47b4-8e96-59e3f2bacf56','','',NULL), +(15464,'AEGS_Idris_SCItem_SeatAccess_ATC','SeatAccess','UNDEFINED','999f7ecc-72ef-4388-a839-abce190cad64','','',NULL), +(15465,'ClipVest Work Harness Dark Red','Char_Clothing_Torso_1','UNDEFINED','d5895ee4-e793-44ff-9866-93cf34863c95','','','Carrying Capacity: 2K µSCU\n\nStegman\'s ClipVest is a multi-purpose work harness that keeps your tools handy when and where you need them. Built from industrial strength materials, this harness offers a back piece to help alleviate strain and provide counterbalance.'), +(15466,'MISC_Starfarer_Gemini_Thruster_Mav_Joint','ManneuverThruster','JointThruster','974d2c36-2924-4cf0-8da0-cfc0451e7655','','',NULL), +(15467,'AEGS_Sabre_Thruster_Retro_R','ManneuverThruster','FixedThruster','c23f1f4b-1da5-41d1-9ab5-5e5217870434','','',NULL), +(15468,'fruit_basket_1_shop_1x6_a','ShopDisplay','Default','07e2db62-093d-4887-8a85-f6a37ecb9eb1','','',NULL), +(15469,'Seat','Usable','UNDEFINED','7b092faf-28be-426e-8529-0707663fdceb','','',NULL), +(15470,'Internal Tank','QuantumFuelTank','QuantumFuel','27970db8-35ca-4e40-8d5e-3be1c1bb9db7','','',NULL), +(15471,'Bed_Mattress_RSI_Polaris_Cell','Seat','UNDEFINED','43e94985-f059-4d26-9b9d-b5010091f720','','',NULL), +(15472,'Weapon_Rack_2_Slots_ARGO_Rifles','Usable','UNDEFINED','4ccbef66-0023-41f6-bd69-a9365440552c','','',NULL), +(15473,'ARMR_AEGS_Eclipse','Armor','Light','c31a291a-5194-4eb0-a2cb-61a73c9af5a4','','',NULL), +(15474,'M2C \"Swarm\"','Turret','PDCTurret','a113eb5a-2759-4a55-ac48-7170c7d17f50','','','Item Type: Laser Turret\nManufacturer: Behring\n\nThe latest generation of point-defense technology, the M2C \"Swarm\" utilizes advanced search, detection, and tracking software to unleash a swift barrage of laserfire, protecting ships from incoming missiles, torpedoes, and other high-speed threats.'), +(15475,'GME 338-10 Medical Gown','Char_Clothing_Torso_1','UNDEFINED','7a8b13af-7de4-4569-ab59-ddaf36e695a9','','','Carrying Capacity: 0.4K µSCU\n\nThe GME 338-10 Medical Gown is the de facto medical gown assigned to in-patients at hospitals and other care facilities across the Empire. This standard gown was designed so that patients could be dressed or undressed easily, and made with antibacterial fabric to help facilitate keeping wounds clean, lowering the risk of infection.'), +(15476,'Get Up Coffee (Milk)','Drink','Can','a2c7594f-41dc-4174-8add-8d4eba648a56','','','HEI: 15\nEffects: Dehydrating, Cognitive Boosting\n\nGet Up Coffee is roasted with care to ensure a smooth blend of rich coffee flavor brewed to perfection. A splash of milk rounds out the flavor and emphasizes its natural sweetness.'), +(15477,'Weapon_Rack_ANVL_Paladin_1_Slot_Special','Usable','UNDEFINED','37af384c-6db5-4673-8b5a-498c28d1e74e','','',NULL), +(15478,'VNCL_Gen2_PlasmaCannon_Ventilation_S4','WeaponAttachment','Ventilation','b255d03d-58e9-49e3-b3db-1d135d3fef69','','',NULL), +(15479,'MacFlex Core White','Armor','Torso','0f4fba9d-f217-47c0-9e01-fe40a0d8aecb','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(15480,'Origin Racing Flight Suit','Armor','Undersuit','5bb52c29-a872-4d12-8564-72482ca88f7c','','','Item Type: Flight Suit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nEmbody luxury, style, and speed by stepping into the flight suit worn by the Origin racing team. This crisp white flight suit features blue and grey highlight and the Origin logo in several prominent places.'), +(15481,'TRGT. STATUS','Seat','UNDEFINED','f48de064-1385-412a-aec0-af3ae3bf8f1a','','',NULL), +(15482,'Mirai Racing Flight Suit','Armor','Undersuit','a8493a6e-25b6-4b4a-aa72-c2a8d7195d3b','','','Item Type: Flight Suit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nMirai’s Racing Flight Suit uses synthetic fabrics sourced from the Xi’an to create a comfortable flight suit durable enough to endure the stresses of high-velocity racing. Taking inspiration from traditional Saisei culture and aesthetics, the stark red stripe across the body of the flight suit results in a striking but elegant design.'), +(15483,'Seat','Usable','UNDEFINED','b65aa411-790a-414e-8983-6ac61bd76bdb','','',NULL), +(15484,'Devastator \"Boneyard\" Shotgun','Weapon','Medium','5accfcef-7e4b-4ccf-a92e-782b40ea8a05','','','Manufacturer: Kastak Arms\nItem Type: Shotgun\nClass: Energy (Plasma)\n\nBattery Size: 12\nRate Of Fire: 60 rpm\nEffective Range: 20 m\n\nAttachments: Optics (S1), Barrel (S3), Underbarrel (S2)\n\nKastak Arms’ Devastator is a pump-action plasma shotgun capable of delivering sustained medium range, high-impact plasma blasts for close combat, room clearances and other combat operations. If the situation requires a high-power presence, look no further than the Devastator.'), +(15485,'Star Kitten Racing Flight Suit','Armor','Undersuit','95b17843-9a67-470d-b6c2-4bfab8c70ba2','','','Item Type: Flight Suit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe Star Kitten racing flight suit embraces the iconic look of the cartoon character. Worn by Team Takahashi racers, the flight suit is primarily pink with teal highlights and larges images of Star Kitten on the front and back.'), +(15486,'Radar_Display_Sabre','Display','UNDEFINED','f5ecb610-30b8-4674-b38c-c4506aeafad2','','',NULL), +(15487,'Murray Cup Racing Flight Suit','Armor','Undersuit','6ca53003-56c2-41a7-8531-a20ebf31b167','','','Item Type: Flight Suit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\n\nBold neon yellow and vivid blue combine to make the official Murray Cup racing flight suit stand out from the crowd. Designed to the same standards as the flight suits worn by professional racers, it also features logos from official sponsors of the Murray Cup race.'), +(15488,'Mantis Polar Camo Livery','Paints','UNDEFINED','4d4d7c54-33eb-4b12-892c-19ad66db61bb','','','Modify your Mantis with this white and grey camo livery specifically designed for the 2950 IAE event on microTech.'), +(15489,'game_checker_piece_single_b','Gadget','UNDEFINED','074a1085-a0fc-4b8b-a8e0-281ce7abdca8','','',NULL), +(15490,'Bexalite','Cargo','Cargo','a0b3219f-f788-41e0-b134-64f1e0015d94','','',NULL), +(15491,'Door Control','Door','UNDEFINED','b2a6409c-406c-4515-a587-5e851567a76b','','',NULL), +(15492,'Venture Core Pathfinder','Armor','Torso','626d5776-9583-4f0a-8fcd-81c3da685ff3','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRobert Space Industries combines elegance and effectiveness with the Venture Explorer Suit. The exclusive Pathfinder edition features all the safety features necessary for the vacuum of space plus a striking purple design with tasteful gold highlights. After wearing a suit that looks and perform this well, you may never want to take it off.'), +(15493,'Paint_Vanguard_Harbinger','Paints','UNDEFINED','17b74e05-00fa-4a59-8836-8b6e90d7669a','','',NULL), +(15494,'FUNT','FPS_Consumable','Hacking','dd788dd5-a2da-494d-a7de-b60a768f06e2','','','This powerful cryptokey is considered to be one of the highest caliber hacking tools available. Long rumored to have been originally designed for Advocacy use, these difficult to acquire devices have only recently been making its way into the hands of criminals. Most who have used them say they are worth the effort to acquire. With the cryptokey\'s official Advocacy designation unknown, the name FUNT is a shortening of the device\'s common descriptor - \'fast and untraceable.\''), +(15495,'\'WRATH\' Cannon','Weapon','Gun','2148a144-a9a2-457c-8bb5-e96f0492a0bc','','','Manufacturer: Vanduul / Esperia\nItem Type: Plasma Canon\nSize: 5\n\nThis laser repeater is typically found on Vanduul war ships and is commonly known by its UEE Navy designation of \'WRATH\'.'), +(15496,'Carryable_1H_CY_weight_dumbbell_1_12kg_c','Misc','UNDEFINED','ff4d3305-59ae-4537-adc4-7f254f80eab1','','',NULL), +(15497,'P8-AR \"Dominion Camo\" Rifle','Weapon','Medium','b90d31fd-cefd-4731-a03a-eba1994d57db','','','Manufacturer: Behring \nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 15\nRate Of Fire: 475 rpm\nEffective Range: 100 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nThe direct descendant of the UEE Marines standard issue weapon, Behring has crafted the semi-automatic P8-AR to provide civilians across the empire a straight-forward and dependable weapon to defend themselves against aggressive hostiles.\n\nThe Dominion Camo edition adds a dark green camo pattern to the rifle.'), +(15498,'Boomtube \"Ruby\" Rocket Launcher','Weapon','Large','f644aa8e-7025-4411-be18-154a40d59993','','','Manufacturer: Unknown\nItem Type: Launcher\nClass: Rocket\n \nMagazine Size: 1\nRate Of Fire: 20 rpm\nEffective Range: 100 m\n\nWho\'s got time to aim? Once you got enough room to clear the arming distance, just point the Boomtube launcher at whatever you don\'t like, squeeze the trigger, and watch the triple-grenade rocket thingy take care of the rest. Sometimes simple is best.\n\nThis Ruby variant features a red tint.'), +(15499,'ANVL_Door_Decal_Carrack_Cartography','Decal','DoorPart','679311da-8d35-41ee-8c87-8c7f326e2552','','',NULL), +(15500,'ANVL_Asgard_Thruster_Retro','ManneuverThruster','FixedThruster','63e70139-91ee-488e-a4e9-5a3f1bf760f6','','',NULL), +(15501,'Oracle Helmet Seagreen','Armor','Helmet','f56c6272-4ee5-4720-92fa-256183a2a5da','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(15502,'table_bar_2_seat_1_high_a','Usable','UNDEFINED','478910c7-84ed-46f4-8d1b-559c4819af6c','','',NULL), +(15503,'AAT-34 Turret','Turret','MannedTurret','5588cd6a-b122-49e1-9cfb-02b1bee571cc','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(15504,'INTK_ORIG_325a','FuelIntake','Fuel','6925e9cb-0c7e-4263-a459-b30e2ea74e37','','',NULL), +(15505,'ORC-mkV Arms Tan','Armor','Arms','2c41954e-6707-4cde-b894-42c4f3103bbd','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(15506,'K7 Pants Grey','Char_Clothing_Legs','UNDEFINED','d76fb7cd-cff4-4735-9667-d9dfa10e95db','','','Carrying Capacity: 3K µSCU\n\nDMC\'s K7 are an all-purpose cargo pants. Four easy access pockets provide extra storage while the triple-stitched polymer weave fabric is designed to withstand all kinds of weather conditions.'), +(15507,'IndVest Jacket Dark Red','Char_Clothing_Torso_1','UNDEFINED','990ac0fc-0da6-468d-9ede-2773179cc78e','','','Carrying Capacity: 5K µSCU\n\nKeep your tools within easy reach with Stegman\'s IndVest. Made from industrial strength materials, this is a rare jacket that\'s both stylish and sensible.'), +(15508,'SecureScreen','Shield','UNDEFINED','2fefe4af-48ca-4044-bb89-11cbdab74bbb','','','Item Type: Shield Generator\nManufacturer: Gorgon Defender Industries\nSize: 3\nGrade: D\nClass: Military\n\nGorgon Defender Industries brings military might to their entry-level, large shield generator. Featuring best-in-class durability, the SecureScreen was built to take a beating and survive.'), +(15509,'AEGS_Sabre_Peregrine_Thruster_Retro_Left','ManneuverThruster','FixedThruster','1d038239-9dfc-46be-b094-5c5cac8bebf7','','',NULL), +(15510,'RSI_Meteor_Thruster_Retro_Right','ManneuverThruster','JointThruster','b17448bd-0a86-44d1-9fe8-445dd3c88d8e','','',NULL), +(15511,'Kaswal Jacket Pine','Char_Clothing_Torso_1','UNDEFINED','a4dbc3a2-4294-4c90-b496-87ca955837f9','','','Carrying Capacity: 1K µSCU\n\nDMC’s Kaswal is a cold-weather jacket designed with additional lining throughout the chest and sleeves for added warmth and comfort.'), +(15512,'HRST_LaserScatterGun_Ventilation_S1','WeaponAttachment','Ventilation','1a2f0d27-21f1-4214-b37d-00a2f8344e52','','',NULL), +(15513,'Door Control','ControlPanel','DoorPart','862df3b0-d5d2-4cdc-84b9-22353eb0e5f2','','',NULL), +(15514,'Quartz','Cargo','Cargo','c00b5099-21bc-45b5-afdd-6710b37d2a91','','',NULL), +(15515,'Internal Tank','FuelTank','Fuel','cbef97f4-7e9a-44e6-9d92-19bd5b143a6f','','',NULL), +(15516,'Deo Shirt Black','Char_Clothing_Torso_0','UNDEFINED','e27da687-b025-4b82-97d5-58ce5c6e3181','','','Fiore\'s Deo is a slim cut work shirt that\'s as practical as it is timeless. Featuring a high collar and metal neck clasp, the Deo has been a mainstay in business attire.\n\nWomen\'s sizes currently out of stock.'), +(15517,'Morningstar Helmet Roughshod','Armor','Helmet','6ad56155-8312-4b3d-b564-f6b1bd2b8b68','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(15518,'Self Destruct Unit','SelfDestruct','UNDEFINED','e5512d65-5462-4270-8095-212efe3fcf99','','','Self Destruct Unit'), +(15519,'\"Quantainium\" Water Bottle','Drink','Bottle','771bca1a-c986-4111-af71-ef2b27376fce','','','Make others believe you have the ability to tap into the awesome power of quantainium with this novelty water bottle. Unscrewing the lid produces a eerie blue glow that will make others truly wonder what you\'ve got inside.'), +(15520,'Carbide Jacket Bramble','Char_Clothing_Torso_1','UNDEFINED','0c55ab6d-33c6-46bf-8539-cfa512f96be0','','','Carrying Capacity: 1K µSCU\n\nThe rugged, all-weather Carbide jacket from DMC features diamond-quilt detailing, stretch-comfort cuffs, and numerous attachment points for versatile storage options.'), +(15521,'Carryable_1H_CY_drug_stomachmedicine_2_d','Misc','UNDEFINED','8ba49c76-c0c9-4e62-8bed-4c48864921a5','','',NULL), +(15522,'ESPR_LaserCannon_Ventilation_S3','WeaponAttachment','Ventilation','9622a76d-b284-48f5-bf96-aad10b03039b','','',NULL), +(15523,'Lynx Arms Sienna','Armor','Arms','7d72580c-23a2-4258-9bd5-4275da1f08c8','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(15524,'Misfit Jacket Striker','Char_Clothing_Torso_1','UNDEFINED','42197fc4-d1d3-4edb-9974-d3a0dba0a653','','','Carrying Capacity: 1K µSCU\n\nEmbody the hardcore attitude with the Misfit jacket. Durable synthetic leather combines with anarchic stylings for a jacket meant to send a message. Its distinct look includes spikes across the shoulder and right arm, two buckled straps on the left arm, and a badass image on the back highlighted by three lights powered via electronic boxes affixed to the front.\n\nThe Striker edition is a green camo with a white bone pattern on the back.'), +(15525,'Arbor MHV Mining Laser','Mining','Gun','0982203d-579f-4c3c-8b7a-c5f1c4a7ddd6','','','Manufacturer: Greycat Industrial\nItem Type: Mining Laser \nSize: 0\n\nOptimal Range: 15m\nMaximum Range: 20m\nCollection Throughput: 0.01 SCU/s\nCollection Point Radius: 1m\n\nThe Arbor has became the universe\'s most heralded mining laser thanks to Greycat Industrial\'s exacting standards and business prowess. The MHV takes that same classic design and reimagines it for a more compact mining-rig while still delivering the solid and reliable performance that miners have come to rely on.'), +(15526,'Manned Turret','TurretBase','MannedTurret','29ebfe0f-5a24-49a4-ab9e-c25434ed3d8b','','',NULL), +(15527,'Holdstrong','Shield','UNDEFINED','84f07b24-342d-4956-8928-25832eb4e999','','','Item Type: Shield Generator\nManufacturer: Aegis Dynamics\nSize: 4\n\nThis capital-class shield generator was designed specifically for the Idris frigate.'), +(15528,'Galen Surgical Scrub Pants Honeycomb','Char_Clothing_Legs','UNDEFINED','836cdbe4-601b-42ad-ad38-dd841ca07a07','','','Carrying Capacity: 0.4K µSCU\n\nYou can count on Code Blue Apparel to deliver professional and comfortable medical clothing. The Galen Surgical Scrub Pants feature ribbing around the knees, and are made with a special anti-bacterial fabric that\'s 99% effective while also being lightweight and wrinkle free.'), +(15529,'Golem','SeatAccess','UNDEFINED','8c5f88da-465a-4e58-b44b-e001b527edef','','',NULL), +(15530,'Ship Ammunition','Cargo','Cargo','99ec48bd-98d7-45b7-ad03-cf9f82b675a6','','',NULL), +(15531,'Concept Shirt Orange','Char_Clothing_Torso_0','UNDEFINED','395d0b37-7379-409a-a8d9-16b40ad8518d','','','This crisp, versatile button-front shirt from Fiore is made with cutting edge stain resistant and wrinkle-free technology, guaranteeing that you stay professional at all times.'), +(15532,'DRAK_Cutlass_Red_Thruster_Main','MainThruster','FixedThruster','9e75b331-c4c4-451f-a814-468009b4258c','','',NULL), +(15533,'Strata Backpack Shire','Armor','Backpack','9aa83b58-32de-45f2-b273-7d5e21e7a174','','','Item Type: Medium Backpack\nCarrying Capacity: 127.5K µSCU\nCore Compatibility: Medium & Heavy\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres.'), +(15534,'Internal Tank','FuelTank','Fuel','153eb49d-7172-4b58-89c4-c9df40117d53','','',NULL), +(15535,'can_drink_3_guc_shop_1x5_a','ShopDisplay','Default','ae641797-9c44-4430-997c-6f5d6d2a777b','','',NULL), +(15536,'Redeemer Standard Flight Blade','FlightController','UNDEFINED','f272692c-304d-4f84-945f-3c9755a814ee','','','Manufacturer: Aegis Dynamics\nType: Flight Blade\n\nThis is the standard issue flight blade for the Aegis Redeemer.'), +(15537,'OT8-RF (8x Telescopic)','WeaponAttachment','IronSight','278fafef-c4e3-44d5-9b85-a225f6e97cb2','','','Manufacturer: Gemini \nType: Telescopic\nAttachment Point: Optic \nMagnification: 8x\nSize: 3\n\nCombining a premium 8x telescopic sight with Gemini\'s innovative echoburst rangefinder, the OT8-RF model allows you to accurately gauge the distance to your target; vital for effective precision shooting. The standard scope for Gemini\'s A03 Sniper Rifle, the OT8-RF is engineered to impress in a variety of situations and engagements.'), +(15538,'CNOU_Mustang_Delta_Thruster_Mav_Fixed_01_Down','ManneuverThruster','FixedThruster','fd621100-0b18-4a09-a1e9-7efffc5a6992','','',NULL), +(15539,'ANVL_Pisces_Thruster_Retro_Left','ManneuverThruster','JointThruster','bbf2b1a9-03a5-4ba7-a5db-fdd6d1ba2856','','',NULL), +(15540,'TrueDef-Pro Legs Yellow/Black','Armor','Legs','0055d718-49f0-4225-90cd-81ba57875c00','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.\"'), +(15541,'Wolf Iceflash Livery','Paints','UNDEFINED','a84e7c2d-ced5-4ea0-bbb4-0acf81b0d096','','','The Iceflash livery provides the Wolf a distinct look with grey spots breaking up its grey and white base paint.'), +(15542,'ADP-mk4 Core Red Alert','Armor','Torso','2dd42197-7d07-490d-be2a-36b10247c2bc','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nWhen there\'s a difficult job at hand, you want to ensure that you can see it through to the end. Clark Defense Systems\' ADP-mk4 heavy armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers.'), +(15543,'DockingTube_Fuel_Ports_ANVL_Gladiator','DockingCollar','UNDEFINED','35c68944-7429-4f09-b37a-407a914e0c3f','','',NULL), +(15544,'Gladius Ship Armor','Armor','Medium','a1bde463-b3ce-4959-9bc2-6ef0f6fb1494','','','Gladius Ship Armor'), +(15545,'Stileron','Cargo','Cargo','4db05191-a6cd-4477-a5a9-0c7df9e4fe9f','','',NULL), +(15546,'vlk_spewgun_ballistic_irradiated_Adult','Weapon','Medium','8c9216cd-f11f-4520-b47f-cabb1075dcda','','',NULL), +(15547,'WEAPONS','WeaponController','UNDEFINED','7f72f468-3e23-40b9-a5ee-d607d36437f2','','',NULL), +(15548,'TRGT. STATUS','Seat','UNDEFINED','7bbf53e2-b7fb-4252-b440-3d677afbbaff','','',NULL), +(15549,'XIAN_Nox_Thruster_Aux_Right','ManneuverThruster','JointThruster','8648258c-48df-45a0-8a9b-c2acb2194c53','','',NULL), +(15550,'MISC_Razor_LX_Thruster_Retro','ManneuverThruster','FixedThruster','c45dbf8f-087d-455b-bdaf-dac9bf7debcf','','',NULL), +(15551,'Morningstar Helmet Grey','Armor','Helmet','87a6a734-412c-4c9a-9cbd-b285247180d8','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(15552,'AAT-34 Turret','Turret','MannedTurret','5425e9af-1f73-4ec6-a777-c4500ca0a6a1','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(15553,'Glacosite','Cargo','Cargo','38a7c125-27ec-40c8-9bad-7e3621ebb63a','','','As glaciers form, heavier mineral contents sink over time and are then crushed by the weight above as the ice deforms and flows. When the glacier recedes, Glacosite deposits are left behind. White and blue in color, the crystals form in long shiny strands that almost are cotton-like in appearance. Glacosite has found specialized commercial use since it is an extremely light and durable insulator.'), +(15554,'game_chess_1_rook_a','Misc','UNDEFINED','6e373790-dcf6-4af0-9b80-a18ef3953d25','','',NULL), +(15555,'Scrap','Cargo','Cargo','57abc536-22e9-4613-a666-9ecbc5601d98','','',NULL), +(15556,'ARMR_DRAK_Vulture','Armor','Medium','1f62e80e-00f3-4bd9-bb6b-52255c44a11a','','',NULL), +(15557,'Pingala Seeds','Cargo','Cargo','83b9a312-59a5-43a0-b8bf-df5a7d774e08','','',NULL), +(15558,'TRGT. STATUS','Seat','UNDEFINED','4d10317a-83e6-4fa8-a3d9-259bc3db85db','','',NULL), +(15559,'Chiron Helmet AA Support','Armor','Helmet','8f9b7c96-7274-4e7e-b5a6-d19fa6521c84','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nUtilizing a crystal clear protective glass treated with a specialist hydrophobic glaze, the Chiron light helmet was purpose built to protect against fogging and glare, guaranteeing that first responders will retain complete vision in emergency situations.\n\nThe AA Support edition uses sharp red coloring and bright yellow detailing, ensuring that Alliance Aid Support Units remain visible while assisting the people of Levski through their crisis.'), +(15560,'Dopple','Cargo','Cargo','6d50716d-0d9b-4ce9-8260-e4bffac19d4d','','',NULL), +(15561,'Pork Katsu Sandwich','Food','Junk','68734d4c-9716-4aa7-9d68-81a7f0cfa27f','','','NDR: 41\nEffects: None\n\nDry brined for 72 SEH, breaded and deep fried to a golden brown, our signature pork cutlet sits atop a bed of shredded cabbage and tzatziki sauce. Served on semolina bread. At Twyn\'s, it\'s what\'s inside that counts.'), +(15562,'PAB-1 Arms Executive','Armor','Arms','c46728a2-3922-4e08-9e12-b3536b83c368','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(15563,'MaxLift AA Support Tractor Beam','Weapon','Gadget','548225a8-d4d4-4e4a-818f-781f34c67dab','','','Manufacturer: Greycat Industrial\nItem Type: Tractor Beam\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 10-20 m\n\nGreycat\'s heavy duty tractor beam boasts industrial performance at a consumer-friendly price. With its longer-lasting battery and wider beam emitter, the MaxLift can easily manipulate heavier and bulkier items making it the perfect tool for long days of hauling cargo.\n\nThe AA Support edition features a sharp red coloring and is intended for those who assisted Levski during their time of need.'), +(15564,'Door Control','Door','UNDEFINED','702c6e21-7aa3-457f-946c-3b7cfde6c9bd','','',NULL), +(15565,'MISC_Hull_C_FoldingStrut_1C_Outer','Cargo','UNDEFINED','8a130b67-2ea5-4ab9-b764-8a77c559d9fc','','',NULL), +(15566,'sw_heavy_radiation_helmet','Armor','Helmet','d891770c-81d7-4e3e-9fc5-8bba3d2b429b','','',NULL), +(15567,'Door Control','Usable','UNDEFINED','d19246d9-13cd-49d3-8f9e-f69846ae104d','','',NULL), +(15568,'f_human_mannequin_slaver_undersuit_01','ShopDisplay','UNDEFINED','33f62501-c628-4c81-b94f-50e4641a946d','','',NULL), +(15569,'Carryable_1H_CY_weight_dumbbell_1_28kg_a','Misc','UNDEFINED','fca67540-a23a-426a-b71e-a9193693f37d','','',NULL), +(15570,'Aluminum (Ore)','Cargo','Cargo','4e30af98-a6bd-4113-b405-3a2f865f4855','','',NULL), +(15571,'Locker_Suit_RSI_Apollo','Usable','UNDEFINED','4029d536-0659-6fcc-7451-8cdd29f7c990','','',NULL), +(15572,'Turret','TurretBase','MannedTurret','8bb0e200-c486-44df-b944-84bf2fc755d3','','',NULL), +(15573,'Sarilus','Cargo','Cargo','272fbab3-c6db-495d-9642-15667ca937f3','','',NULL), +(15574,'f_human_mannequin_truDef_pro_light','ShopDisplay','UNDEFINED','ee73b39d-1340-4e0e-80c3-e6d8725658ff','','',NULL), +(15575,'Manned Turret','TurretBase','MannedTurret','6b804c16-ed74-4096-8571-860de6c00be6','','',NULL), +(15576,'Testudo Legs','Armor','Legs','9b57d452-10ab-4473-9235-19da966ebadb','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4K µSCU\n\nThe Testudo armor for Quirinus Tech blends battlefield durability with everyday comfort. It weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort.'), +(15577,'Morningstar Helmet Earthwork','Armor','Helmet','52a0a4b4-61c4-43a2-a423-342312070ac0','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(15578,'Seat','Usable','UNDEFINED','286d64a0-8177-4723-92a4-3029ae380ba0','','',NULL), +(15579,'Carryable_1H_SQ_heatpack_1_a','Misc','UNDEFINED','80022c82-39cf-49df-9e00-548f44cec9c7','','',NULL), +(15580,'SLAM','Cargo','Cargo','4eb208b5-5284-4a71-bcb0-2a42193f3a21','','',NULL), +(15581,'Turret','Container','Cargo','9ec50960-3cea-4dd1-b2cb-bbeb33a65ca5','','',NULL), +(15582,'Internal Tank','QuantumFuelTank','QuantumFuel','a388d73a-8101-4410-bd16-46e5278ae771','','',NULL), +(15583,'Carryable_1H_CY_bottle_bar_13_champagne_a','Misc','UNDEFINED','5af00e9f-22dc-48f7-99e5-bd0ceb948b75','','',NULL), +(15584,'Cutter Dying Star Livery (Modified)','Paints','UNDEFINED','18810c78-7aa2-46bb-8309-d799fdb8ab8e','','','This version of the livery has been modified from its original form with the addition of graffiti. Sold in 2943 to celebrate the 450th anniversary of Pyro\'s discovery, the Dying Star livery is tan with brown and black highlights. It also features branding from Pyrotechnic Amalgamated, the now defunct mining company that found and named the system.'), +(15585,'Strata Core Crusader Edition','Armor','Torso','43911da1-4f8b-4ef4-a2e0-a1c1b8b2d1f5','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 15k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpack Compatibility: Light & Medium \n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Crusader Edition was made specifically for the company.'), +(15586,'Carryable_1H_SQ_Datapad_Fluff_Orb_HathorGroup_005','Misc','UNDEFINED','7866ff5f-0d61-4c92-9a98-621652cfcc09','','',NULL), +(15587,'Hammerhead Ship Armor','Armor','Medium','439741e2-2d5a-4d54-8a5c-92056a6cd281','','','Hammerhead Ship Armor'), +(15588,'VNCL_Stinger_Thruster_Main_Fixed','MainThruster','FixedThruster','a685d3dd-c270-4e90-aaff-8e3b87aef43f','','',NULL), +(15589,'Markanda Undersuit Pyrotechnic','Armor','Undersuit','2ebe092b-e1e6-40f0-8697-cb6b68cc4d28','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nBuilt for adventure but comfortable enough for everyday, the Markanda undersuit has become beloved by explorers. A unique patchwork design creates a flexible yet resilient undersuit, while an odor resistant SureSoft inner lining will keep you from wanting to take it off. This edition features the colors and logo of the now defunct Pyrotechnic Amalgamated.'), +(15590,'Omarof (16x Telescopic)','WeaponAttachment','IronSight','713a8022-1cf8-4c21-a216-d536df291e99','','','Manufacturer: Lightning Bolt Company \nType: Telescopic\nAttachment Point: Optic \nMagnification: 16x\nAim Time: +0%\nSize: 3\n\nGet a crystal clear view of distant targets with this powerful telescopic scope from Lightning Bolt Company. Designed specifically for the Atzkav Sniper Rifle, the Omarof uses ultra-precise laser etched lenses that are then multi-coated to allow for high light transmission, wide sight picture and crisp colors, providing strikingly sharp images across significant distances.'), +(15591,'Origin Jumpworks Hat','Char_Clothing_Hat','UNDEFINED','06cb7683-3ce9-4500-846a-4cfd1526ea72','','','This light grey hat featuring Origin\'s name and signature logo is a perennial best seller at their showroom in New Austin.'), +(15592,'Seat','Usable','UNDEFINED','966933fd-b444-4e1d-ba6d-dcf17ad39e9a','','',NULL), +(15593,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','57fea868-2d6e-4c92-90a8-21dc261e9103','','','Aegis Gladius - Decoy Launcher'), +(15594,'UEE_Gurney','Misc','UNDEFINED','b823860d-b456-4d18-932a-f00cb0b3b8cc','','',NULL), +(15595,'Seat','SeatAccess','UNDEFINED','1f43140f-2394-4df9-96a2-1b163d13fe16','','',NULL), +(15596,'Weapon Rack','Usable','UNDEFINED','4cb747de-0146-41fc-b736-81f62e048633','','',NULL), +(15597,'Concept Shirt Grey','Char_Clothing_Torso_0','UNDEFINED','11449a60-8066-4059-9932-50323bbcc897','','','This crisp, versatile button-front shirt from Fiore is made with cutting edge stain resistant and wrinkle-free technology, guaranteeing that you stay professional at all times.'), +(15598,'Spirit Hurston Livery','Paints','UNDEFINED','676c63b5-bbee-4fe0-8cbb-96b4f58ffda4','','','The Hurston livery for the Spirit features the company\'s logo atop a grey base paint with yellow highlights.'), +(15599,'Seat','SeatAccess','UNDEFINED','5b2a7757-fbfe-49e5-9d8a-c70d31c6c113','','',NULL), +(15600,'Flight Blade','FlightController','UNDEFINED','b8f6e23e-8a06-47e4-81c9-3f22c34b99e9','','',NULL), +(15601,'Weapon_Rack_ORIG_300i_2_Slots','Usable','UNDEFINED','a0d9d219-a054-44ca-be18-a167a7c1c56d','','',NULL), +(15602,'ORC-mkV Arms Crusader Edition','Armor','Arms','444728ec-27d8-449c-aa81-8aba0d2db4b4','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement. The Crusader Edition was made specifically for the company\'s security services.'), +(15603,'Glow','Cargo','Cargo','85a33fb2-0eb2-4dd9-8e9b-f2333d38dedf','','',NULL), +(15604,'Remote Turret','Turret','GunTurret','d3e70cd0-1052-4d46-b910-efd8f6f3795c','','','Remote Turret'), +(15605,'ADP Arms Executive','Armor','Arms','497606c0-7367-47df-8d12-d4a921bac524','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(15606,'Remote Turret','Turret','GunTurret','7297cbd1-1fc2-484c-89cb-756e1ea6b9d7','','','Remote Turret'), +(15607,'Door_Relay_DCD','Door','UNDEFINED','b39584a5-961f-45ea-86ab-08484c794429','','',NULL), +(15608,'INTK_MISC_Freelancer_MAX','FuelIntake','Fuel','9c4daa8d-e952-4c7f-8643-db763b48caa4','','',NULL), +(15609,'Ranta Dung','Misc','Harvestable','4ecdaee3-2886-4b77-90fa-372cbe88fb84','','','A dry cube-shaped dung that comes from a large isopod-like crustacean known as a Ranta. It has recently been discovered that the dung contains a unique bacterial biome that helps the Ranta process and digest minerals and some researches are hopeful will lead to industrial or medical innovations.'), +(15610,'Strode Pants','Char_Clothing_Legs','UNDEFINED','6b2b1b2f-1037-4d0d-9195-a058320b6794','','','Carrying Capacity: 3K µSCU \n\nWhen you need to move like your life depends on it. Made from loose-fit tear-resistant polyweave with rigid greaves, these pants won\'t tie you up when things get tight.'), +(15611,'WiDoW','Cargo','Cargo','4061667e-d30e-4415-b073-ffebd3e5fa16','','',NULL), +(15612,'Recycled Material Composite','Cargo','Cargo','2ffdc682-679f-4ea6-9880-4ed105c053b4','','',NULL), +(15613,'CNOU_Mustang_Cargo_Rack','Container','Cargo','3ddc7e07-ae82-4b32-85c2-f09868177522','','',NULL), +(15614,'tool_manual_1_hammer_a','Misc','UNDEFINED','496d856e-2bdc-4717-b91a-fa4c265ed113','','',NULL), +(15615,'Hercules Starlifter microTech Livery','Paints','UNDEFINED','4a4ee4c5-9999-4c87-b222-609075df6c0d','','','The microTech livery for the Starlifter features the company\'s logo atop a white base paint with light blue and grey highlights.'), +(15616,'XNAA_SanTokYai_RADR_Display','Display','UNDEFINED','2c55a210-03a3-4dc6-b570-3a34e91caef9','','',NULL), +(15617,'Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','5fbeae19-690b-45f6-b090-4cafe7ce80d7','','','Live in comfort with MuyMuy\'s Davlos line of cotton-synthetic shirts. The durable, yet soft, fabric contains a patented SweatGuard technology that not only whisks away perspiration but helps prevent stains.'), +(15618,'un_jar_glass_2_berries_a','Misc','UNDEFINED','85168ce9-2696-428e-a0b0-687220fc3912','','',NULL), +(15619,'OneMeal Nutrition Bar (Spicy Salmon)','Food','Bar','64bf56d9-4f9b-4510-820a-7807ce3c5ff8','','','NDR: 21\nEffects: Hypo-Metabolic\n\nOneMeal optimal nutrition bars are a scientifically balanced and complete meal replacement that\'s \"ready when you are.\"'), +(15620,'KRIG_P72_Archimedes_Thruster_Mav_Fixed_01_Bottom','ManneuverThruster','FixedThruster','ad28d881-86c1-459f-9c4b-92b48d70682d','','',NULL), +(15621,'Toughlife Boots Imperial','Char_Clothing_Feet','UNDEFINED','a60cc9db-66fa-4d40-86ca-f3fc2715e9d7','','','Grindstone\'s done it again. The Toughlife is an all-purpose workboot designed to provide comfort, durability and quality. Featuring a reinforced composite toe and lasercut sole to maximize traction on all surfaces, Toughlife is sure to be your dependable boot, day in and day out.'), +(15622,'PH - eld_shirt_03_01_9tails01','Char_Clothing_Torso_0','UNDEFINED','0f7eb996-9da0-46d0-a957-90b3ad67e7ca','','','A partial zip pullover shirt with mesh arm accents and a button collar. Escar Limited\'s Balboa line delivers cutting edge style suitable for any system or situation. \n\nWomen\'s sizes currently out of stock.   '), +(15623,'Mount_Gimbal_Mining','UtilityTurret','GunTurret','24122aa8-495b-4b2f-9d81-9b7a87e51c8d','','',NULL), +(15624,'Door Control','Door','UNDEFINED','9e45b4b6-54c4-4cf4-a55e-f25c919559e7','','',NULL), +(15625,'Scorpius Standard Flight Blade','FlightController','UNDEFINED','cdec504b-22e9-4193-9e90-764204cd23c9','','','Manufacturer: Roberts Space Industries\nType: Flight Blade\n\nThis is the standard issue flight blade for the RSI Scorpius.'), +(15626,'RSI_Apollo_Scanner','AttachedPart','UNDEFINED','46f2a702-3724-10cc-e49d-3732941dde9b','','',NULL), +(15627,'BEHR_BallisticRepeater_Ventilation_S3','WeaponAttachment','Ventilation','97e19cf8-a554-4a1c-b3e1-73d66a593f6a','','',NULL), +(15628,'MXOX_NeutronRepeater_Ventilation_S1','WeaponAttachment','Ventilation','16aa0c4c-cca0-4b62-a7c1-3cf2ff08e9af','','',NULL), +(15629,'Souvenirs','Cargo','Cargo','ee2506d7-b53a-41b1-9515-c1cc73a81900','','',NULL), +(15630,'Cambio SRT Canister','WeaponAttachment','Magazine','891a1422-3980-4756-84b2-04dd07ad7177','','','Item Type: RMC Canister (Large)\n\nCanister used by the Cambio SRT to store recycle material composite (RMC) reclaimed from scrap. Contents can be sold or used to make repairs.'), +(15631,'Aluminum','Cargo','Cargo','f57b7497-e9ed-4c10-b39a-13644a525b3d','','',NULL), +(15632,'Aril Helmet Red Alert','Armor','Helmet','afeb13e2-0ce9-420a-9885-efb4be455fad','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(15633,'Weapon_Rack_BANU_Defender_2_Slots','Usable','UNDEFINED','9f3ad9cc-95f2-4737-92f3-386830b8d0b2','','',NULL), +(15634,'RSI_Apollo_Medivac_Thruster_Mav_Top','ManneuverThruster','FixedThruster','877cca71-237d-4402-ad3f-09228dfa2f5e','','',NULL), +(15635,'Door_DRAK_Clipper_Fuelport_Ground','Door','UNDEFINED','fb5862c4-137b-4830-a01b-a69808d49012','','',NULL), +(15636,'PAB-1 Core Tan','Armor','Torso','f83e18d1-981a-47ac-b875-1feac8361a8c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(15637,'TRGT. STATUS','Seat','UNDEFINED','23402e26-90a4-4e7e-a59f-191ef906ad9a','','',NULL), +(15638,'Altruciatoxin','Cargo','Cargo','dd54bb5c-bee2-46c2-8028-c961675af228','','',NULL), +(15639,'Door','Door','UNDEFINED','cad70e95-321a-4388-aa81-372a032b46c9','','',NULL), +(15640,'TRGT. STATUS','Seat','UNDEFINED','64d6da4b-dece-4d19-87d5-28d6d3a76cb3','','',NULL), +(15641,'Antium Core Sand','Armor','Torso','565d53c3-7152-4562-b8eb-437ce7018cc2','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(15642,'Table_Bench_7_AEGS_Hammerhead','Usable','UNDEFINED','3ca8eb1f-159a-4ad2-ac97-593bb1895d91','','',NULL), +(15643,'Carryable_1H_CY_universal_utensil_b','Weapon','Knife','1f57c647-e25e-4c92-a60c-256147311766','','',NULL), +(15644,'PAB-1 Legs Covalex Edition','Armor','Legs','c45d28e4-17fa-47a0-8c4c-7cb948e32935','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile. The Covalex Edition was made specifically for the company.'), +(15645,'Diamond','Cargo','Cargo','1a3e83f0-5f13-4f11-a4ba-9836ac975553','','',NULL), +(15646,'MRCK_S01_TMBL_Storm_AA_Custom','MissileLauncher','MissileRack','d83798e4-f4d5-4191-843f-f85b1b5e1d80','','',NULL), +(15647,'VK-00','QuantumDrive','UNDEFINED','995c2de5-f7e6-4646-83e3-4627ba5a5865','','','Item Type: Quantum Drive\nManufacturer: Wei-Tek\nSize: 1\nGrade: A\nClass: Military\n\nWhen the stakes are high, Wei-Tek’s advanced VK-00 quantum drive is the only choice you should trust to get you where you need to be.'), +(15648,'Starlancer microTech Livery','Paints','UNDEFINED','4a7849e0-60c5-4be1-a8e1-573a8859075c','','','The microTech livery for the Starlancer features the company\'s logo atop a white base paint with light blue and grey highlights.'), +(15649,'Venture Arms Tan','Armor','Arms','86a53f79-8bd7-4d12-8c79-ee08ec1e1e74','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(15650,'Door Control','ControlPanel','DoorPart','4662a693-3318-4e3b-8419-ac8d847a5189','','',NULL), +(15651,'Colonialism_Outpost_RN_Cooler','Sensor','UNDEFINED','f49582fb-7451-4720-bf3d-23bad4483e9e','','',NULL), +(15652,'SHIELDS','ShieldController','UNDEFINED','15151ac8-5a66-4f35-9087-a83f360d9b2e','','',NULL), +(15653,'Arden-SL Core (Modified)','Armor','Torso','47cdfc70-4b6d-472a-9808-d0dbe34e0280','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nThis version of Roussimoff Rehabilitation Systems\' Arden-SL core has been modified from its original form. With its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics. It also features a toolbelt for easy access to important gear.'), +(15654,'Tona Shoes Sienna','Char_Clothing_Feet','UNDEFINED','9bcb9887-69f5-4c03-bdf9-db9b043a7d15','','','Perfect for hiking or fieldwork, the Tona from R6 Pro is a low-top sneaker built out of breathable Cheofreme materials which not only provide extra protection against impacts, but keep your feet dry.'), +(15655,'DRAK_Cutter_Thruster_Addon_Rambler_Right','Misc','UNDEFINED','8ca401a6-fddf-4b0a-b238-674d4a00860f','','',NULL), +(15656,'ht_d_int_door_double_a_lghtgrp','Lightgroup','DoorPart','235e0097-4cb0-414e-97f6-717f00abc73f','','',NULL), +(15657,'Green Vitality Smoothie','Drink','Bottle','d597d3f2-9343-4b80-a0b3-07530f65d852','','','HEI: 39\nNDR: 15\nEffects: Immune Boosting\n\nGarcia\'s Greens Green Vitality Smoothie is a blend of vital nutrients densely packed into this bright combination of leafy greens.'), +(15658,'GLSN_Shiv_Thruster_Maneuver_Rear_Bot','ManneuverThruster','JointThruster','b6e509ca-a62f-4a00-b700-098927770e11','','',NULL), +(15659,'CBH-3 Helmet Green','Armor','Helmet','f94242b2-ff4d-4330-ad9f-4fbb95b6efb6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. Visor is AR crosshair compatible.'), +(15660,'Weapon_Rack_DRAK_Cutlass_Steel_1Slot','Usable','UNDEFINED','1ab980d9-87db-4a70-917e-454127a90740','','',NULL), +(15661,'Door Control','Door','UNDEFINED','4411b1e3-e4cd-4a74-90a9-b6f49874b66a','','',NULL), +(15662,'Weapon Rack','Usable','UNDEFINED','1a2ebef1-c060-4b9c-9381-c487bf585e6b','','',NULL), +(15663,'Seat','Usable','UNDEFINED','d56d28c4-b570-462c-9735-b5aeaccf64b7','','',NULL), +(15664,'Vehicle_Screen_MFD_Holographic_MRAI_Guardian_R','Display','UNDEFINED','9e5160b9-3419-4fb5-a9f4-b899f603eadf','','',NULL), +(15665,'Oracle Helmet Dark Green','Armor','Helmet','519f7ed4-ecc4-44ec-a365-9aed460f6d6f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(15666,'Prim Shoes Orange','Char_Clothing_Feet','UNDEFINED','af9c7aec-c85c-45db-b86b-44a694a8e92a','','','Professional yet casual, the Prim utilizes cutting-edge synthetic construction to provide maximum comfort and a shine that won\'t fade.'), +(15667,'counter_display_mod_center_a_01x01x01_multiTool','ShopDisplay','UNDEFINED','b7d68c84-dc66-47c3-a94f-4bbf812a6a10','','',NULL), +(15668,'Redfin Energy Modulators','Cargo','Cargo','f24eea43-3cb6-4396-8049-74200dd4ae95','','',NULL), +(15669,'Bottle','Bottle','Default','a8975d1b-a823-4096-991d-b8f2ee394943','','','Bottle'), +(15670,'Internal Tank','QuantumFuelTank','QuantumFuel','f30b0a78-1ff2-4868-85ac-596902ac70ee','','',NULL), +(15671,'Spirit Headhunters Reaper Livery','Paints','UNDEFINED','659ff3a1-c637-45d7-b045-6b3de88444a3','','','The Headhunters Reaper livery lets you proudly proclaim your allegiance to the gang. It features the gang\'s name and highlights in red on a beige and grey paint scheme.'), +(15672,'IFR-A77 Turret','TurretBase','MannedTurret','0d58d803-4df1-4bb7-afd6-e5f9429778d6','','','Item Type: Manned Turret\nManufacturer: Aegis Dynamics\nSize: 7\n\nThis manned turret, designed by Aegis to be equipped with two size 7 weapons, is bespoke to the Idris frigate.'), +(15673,'Cadmium Allinide','Cargo','Cargo','9db01abb-ff85-43a1-9fc3-f1d7e64ef6a8','','',NULL), +(15674,'ORIG_890_Jump_Thruster_Main_TR','MainThruster','FixedThruster','edda580d-bce8-40cd-a462-fdff0eb85a32','','',NULL), +(15675,'MISC_Hull_C_FoldingStrut_2D','Cargo','UNDEFINED','43df2790-e6e3-4c3a-9d80-c0183e21ea71','','',NULL), +(15676,'RSI_Aurora_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','f054396b-df5d-4518-876a-c1812f77dc63','','',NULL), +(15677,'Seat','Usable','UNDEFINED','c34adfd9-2ae9-4f39-b548-b04bf6e83ebe','','',NULL), +(15678,'890 Jump Meridian Livery','Paints','UNDEFINED','511ff0e3-8983-4862-b971-38283d0e1909','','','The Meridian livery gives the 890 Jump a simple yet stylish metallic silver finish.'), +(15679,'ANVL_Lightning_F8_Thruster_Main_DarkBlue','MainThruster','FixedThruster','66351438-a2cc-403c-828f-9c69ecbbdf56','','',NULL), +(15680,'Testudo Helmet Clanguard','Armor','Helmet','e5e93d7e-28e6-487b-8920-38734a27d071','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nKeep your eyes on the prize and your head protected with the Testudo helmet. It features a wide faceplate and a durable outer shell that protrudes above the forehead in a way specifically designed to absorb and efficiently disperse the energy of impacts. The Clanguard version has been modified with Vanduul materials and alien artifacts.'), +(15681,'Internal Tank','FuelTank','Fuel','6915cfdf-6cbc-44e5-acb4-7c5384203fdd','','',NULL), +(15682,'Perseus Hieron Livery','Paints','UNDEFINED','69cf3cf0-b37c-407a-aa55-1fd991248418','','','The Hieron livery bring classical beauty to the modern war machine with its marble-inspired base paint and gold highlights.'), +(15683,'MISC_Fortune_Thruster_Main_Rear_Left','MainThruster','FixedThruster','b2d3d514-a4a5-4d0a-8f7b-cad603dcc9fb','','',NULL), +(15684,'Sootho Gloves Calypso','Char_Clothing_Hands','UNDEFINED','6431cb6e-d3aa-4d8f-a4ac-570441d9b2c8','','','Pros at keeping your hands safe without sacrificing dexterity, the slip-resistant Sootho gloves deliver solid protection and lasting warmth during chilly or hostile conditions. The tough synthetic leather breaks in well and will stand up to years of frequent use.'), +(15685,'AEGS_Door_Decal_Avenger_Pod_1','Decal','DoorPart','3686bf2d-5c6c-420d-91a6-296257998537','','',NULL), +(15686,'Door Control','Usable','UNDEFINED','bc35c162-32b1-43cb-bfe9-b60c2eb07645','','',NULL), +(15687,'un_jar_glass_2_berries_b','Misc','UNDEFINED','3f1d44e3-5d61-48cf-a8b5-bdc94df172dc','','',NULL), +(15688,'Hammerhead TSB Flight Blade','FlightController','UNDEFINED','356013cd-1a32-4947-8ee4-4d123549ad6d','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Aegis Hammerhead with the TSB Flight Blade from Broad & Rabiee. By re-allocating lateral thrust resources, you can expect your ship deliver increased top speeds in the straightaway.'), +(15689,'Pressurized Ice','Cargo','Cargo','cfef1221-4c45-476a-b2f4-2e388279df58','','','Ice that has been purified and compressed to transparent by restricting natural expansion. This allows for more efficient transport in bulk.'), +(15690,'Seat','Usable','UNDEFINED','998db4da-3524-4506-a8a6-8d5c09996b65','','',NULL), +(15691,'Castillo Jacket Ocean','Char_Clothing_Torso_1','UNDEFINED','27d687db-101b-489d-839d-7d5199fb4753','','','Carrying Capacity: 1K µSCU\n\nRefined enough for day, but ready for night, this jacket is essential for any young professional\'s collection. Notched lapels and a center back seam provide a tailored look at the Spar Van Miles price.\n\nWomen\'s sizes currently out of stock.'), +(15692,'DRAK_Cutter_CargoGrid_4Stack','CargoGrid','UNDEFINED','17e09668-67f5-4eb9-8346-101497f6a3ab','','',NULL), +(15693,'IndVest Jacket Red','Char_Clothing_Torso_1','UNDEFINED','380a4850-9487-4c88-bf55-1d8bf7f69c05','','','Carrying Capacity: 5K µSCU\n\nKeep your tools within easy reach with Stegman\'s IndVest. Made from industrial strength materials, this is a rare jacket that\'s both stylish and sensible.'), +(15694,'Basketball','Misc','UNDEFINED','bd6ae263-9641-4359-8cc3-56d65a232786','','','This inflatable ball features an orange synthetic composite with black ribbing that provides excellent bounce and control ideal for jamming while traveling in space.'), +(15695,'Ammo Box','Cargo','UNDEFINED','f9412e41-67cb-4e94-aa01-5e0fd7f85088','','',NULL), +(15696,'Stud','Char_Head_Piercings','UNDEFINED','d3da7fc8-edaf-4f61-bf92-41c61f3585e6','','',NULL), +(15697,'TOAG_LaserGatling_Ventilation_S2','WeaponAttachment','Ventilation','f304062f-21d5-454c-ad08-5d79c3c77b4b','','',NULL), +(15698,'Defiance Arms Charcoal','Armor','Arms','cec5aa12-cfe1-4ee9-b039-050f573b8786','R','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nIncorporating the same manufacturing know-how and expertise that the UEE Marines have come to rely on, Clark Defense Systems has designed their civilian-line of Defiance heavy armors to stand firm in the face of even the most adverse combat scenarios with its three-star rated protective plating and fully integrated mobility framework.'), +(15699,'Seat','SeatAccess','UNDEFINED','e3f6bf74-522b-4478-9c44-3c41b9a058c9','','',NULL), +(15700,'Inquisitor Legs Scorched','Armor','Legs','2f67ac96-ab81-461a-b54d-fcd159137477','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(15701,'Li-Tok Boots Sienna','Char_Clothing_Feet','UNDEFINED','16bcf93e-f1ec-4aaa-bc21-ef6d0ae1b61e','','','Stylish yet rugged, NorthStar\'s Li-Tok boots are made from a composite nylon fabric, vulcanized rubber grips that hold fast to a variety of surfaces, and reinforced ankle support making these perfect for hanging out or on the job.\n\nWomen\'s sizes currently out of stock.'), +(15702,'Argus Helmet Silver/Gold/Grey','Armor','Helmet','5d5ce445-0acb-45ca-adb5-4ec764fb33bc','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s Argus helmet utilizes advanced multi-layered composite construction to provide incredible protection from weapon fire as well as environmental hazards. The tinted visor offers a wide field-of-view to improve situational awareness and unrestricted movement.'), +(15703,'Novikov Backpack Patina','Armor','Backpack','278f244d-4dff-411e-bf23-c795135a6852','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nConfidently explore cold environments while wearing the Novikov. Caldera designed a spacious backpack to compliment this advanced exploration suit, so those venturing across unknown terrain can bring enough supplies to survive the journey.\n\nThe Patina edition offers a grounded look combining soft teal with bronze.'), +(15704,'Seat','Usable','UNDEFINED','1b8318e2-ebe5-4376-8f81-a19028e55457','','',NULL), +(15705,'Arclight \"Herrero\" Pistol','Weapon','Small','bb87b6e9-427b-4698-9a7e-fdb84c30a3fe','','','Manufacturer: Klaus & Werner\nItem Type: Pistol\nClass: Energy (Laser)\n\nBattery Size: 30\nRate Of Fire: 300 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nA handheld laser made famous as Kyle Fenris’ sidearm on the hit vid show The Frontier, the Klaus & Werner Model II Arclight has become extremely popular on the civilian market. Despite its media appeal, the Model II offers a higher rate of fire than any of its ballistic counterparts. While that may diminish the weapon\'s stopping power, its power cell offers more than enough shots to finish the job. The Herrero edition distinguishes itself by including geometric etchings on the frame and grip, plus a textured trigger guard.'), +(15706,'Hyper Vanguard Force T-Shirt','Char_Clothing_Torso_0','UNDEFINED','acb69739-1688-498b-a4fb-41e3ae669a7a','','','The battle against pirate captain Balthazar jumps from the arcade to this animated t-shirt. Special fabric scrolls graphics from \'Hyper Vanguard Force IV\' to celebrate this arcade classic from Original System.'), +(15707,'Door','Door','UNDEFINED','798662db-c00f-4164-b1ed-17542943e8ef','','',NULL), +(15708,'Covalex Container Model','Misc','Flair_Wall_Picture','6ff54e91-8117-42f2-b9ba-56055c3c2d40','','','There\'s no need for a tractor beam to move this cargo container. This finely detailed model features Covalex Shipping branding with the company\'s logo and brown and grey color scheme.'), +(15709,'Flight Blade','FlightController','UNDEFINED','dacfe83f-f930-472b-a652-15228e916d78','','',NULL), +(15710,'Titanium','Cargo','Cargo','c8a67f71-1dc4-43d8-ba94-087b0f1172e2','','',NULL), +(15711,'Tona Shoes Grey','Char_Clothing_Feet','UNDEFINED','0ee382b2-0b3f-4c99-974a-93a8a82eebf6','','','Perfect for hiking or fieldwork, the Tona from R6 Pro is a low-top sneaker built out of breathable Cheofreme materials which not only provide extra protection against impacts, but keep your feet dry.'), +(15712,'Nyman Jacket Seagreen','Char_Clothing_Torso_1','UNDEFINED','65cd71c1-30da-4eed-8509-aa9af53fa775','','','Carrying Capacity: 1K µSCU\n\nOpalSky\'s Nyman light pullover is perfect to have on hand when lounging poolside or on those chilly nights.'), +(15713,'[PH] Noodles v2','Food','Tin','cd57373f-489e-4d28-a48c-1be2a2010922','','','[PH] Needs Description from Narrative'), +(15714,'Defiance Core Hailstorm','Armor','Torso','609da45d-dff8-49e6-b740-11258df220ba','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nIncorporating the same manufacturing know-how and expertise that the UEE Marines have come to rely on, Clark Defense Systems has designed their civilian-line of Defiance heavy armors to stand firm in the face of even the most adverse combat scenarios with its three-star rated protective plating and fully integrated mobility framework.'), +(15715,'Venture Core Black','Armor','Torso','0d8f306f-dffd-401c-a85b-acec2efb313c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(15716,'Escalate Stabilizer1','WeaponAttachment','Barrel','4834c09b-1e6b-486f-a05e-68859be4e229','','','Manufacturer: ArmaMod\nType: Energy Stabilizer\nAttachment Point: Barrel\nSize: 1\n\nAim Recoil: +50%\nVisual Recoil: +50%\nFire Rate: +30%\nDamage: -10%\nAdditional Burst Shots: +1\n\nArmaMod\'s enhanced circuitry in the Escalate Stabilizer1 boosts the output of handheld weapons substantially, trading control for power.'), +(15717,'Door Control','Door','UNDEFINED','d31cacee-4b7b-4516-b0b4-980389a687e3','','',NULL), +(15718,'un_medical_box_1_bandage_a','Misc','UNDEFINED','72b673c9-bbde-46a4-8957-28f48318f99f','','',NULL), +(15719,'Vehicle_Screen_MFD_Holographic_Nox_L','Display','UNDEFINED','85cfb788-5ac7-44f4-b92b-5e08154c939c','','',NULL), +(15720,'Oracle Helmet Twilight','Armor','Helmet','2534602c-060c-4739-8ee9-1f8c14ba6a54','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(15721,'Exodus','JumpDrive','UNDEFINED','59346c37-671d-4aae-9eff-d38e13caa9c0','','','Item Type: Jump Module\nManufacturer: Tarsus\nSize: 3\nGrade: C\nClass: Civilian\n\nJourney across the ‘verse with Tarsus’ Exodus jump module, offering greater reliability to help take your wanderlust to new heights.'), +(15722,'Carryable_1H_SQ_DataPad_Fluff_StormBreaker_DataFacility_Safe02','Misc','UNDEFINED','3f856590-b4db-48dc-967f-7563ad1de5b0','','',NULL), +(15723,'STV Finish Line Livery','Paints','UNDEFINED','66033ed4-504c-4824-bf45-be6cfc5ac40e','','','Give the STV a classic racing design with the Finish Line livery. It features a yellow stripe across the front, a grey one on the back, and white highlights.'), +(15724,'MSD-313 Missile Rack','BombLauncher','BombRack','549964bb-a674-41ba-86d5-55a6d3c25931','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 3\nMissiles: 1xS3\n\nBehring’s MSD-313 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 3 hardpoint for the reliable and effective launch of one S3 missile.'), +(15725,'Ketchum Beanie Violet','Char_Clothing_Hat','UNDEFINED','3eb44d12-1489-4838-9a3f-a1b255b0d501','','','Complete your cool-weather wardrobe with the classic Ketchum beanie from Alejo Brothers.'), +(15726,'ClipVest Work Harness Aqua','Char_Clothing_Torso_1','UNDEFINED','d668309a-c4a1-4047-879d-768e86c1b2ad','','','Carrying Capacity: 2K µSCU\n\nStegman\'s ClipVest is a multi-purpose work harness that keeps your tools handy when and where you need them. Built from industrial strength materials, this harness offers a back piece to help alleviate strain and provide counterbalance.'), +(15727,'Lindinium','Cargo','Cargo','64548da1-f9ad-4ff9-a81d-1662662607e7','','',NULL), +(15728,'Seat','Usable','UNDEFINED','15cd22fa-c11c-49c9-aa9a-f514835426d1','','',NULL), +(15729,'P4-AR \"Boneyard\" Rifle','Weapon','Medium','251ad133-22e6-4ee1-9df0-4c503fb043f9','','','Manufacturer: Behring\nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 40\nRate Of Fire: 550 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nBehring\'s classic P4-AR rifle features a collapsible stock and shortened barrel, making it an ideal choice for close-quarter firefights. Its accuracy and general ease of use make it universally valued among security, military and civilian users.'), +(15730,'customizer_shirt','Char_Clothing_Torso_0','UNDEFINED','8ba1cd70-a18e-4f3a-b6d4-117239b9bc7d','','',NULL), +(15731,'F8C Lightning 2954 Best in Show Livery','Paints','UNDEFINED','820ba605-9ec8-4ba7-8586-d0a3d61ee2c7','','','This purple and white 2954 Best in Show Livery celebrates the F8C Lightning winning the 2954 Ship Showdown.'), +(15732,'Cobalt','Cargo','Cargo','9f8e9561-7f78-4cc6-9ac3-204528f06be2','','',NULL), +(15733,'PC2 Dual S4 Mount','Turret','GunTurret','7cb20c3d-497c-4762-996e-e581acee3d4e','','','PC2 Dual S4 Mount'), +(15734,'Gadget_Cabinet_kegr_fire_extinguisher_01_NoRN_Lowtech_med_high','Usable','UNDEFINED','858fe410-ac7a-47dc-866f-3a38357fb40b','','',NULL), +(15735,'Plastic Cup','Misc','UNDEFINED','e74c54a8-b925-4f71-916c-145d45eb2c59','','',NULL), +(15736,'Turret','WeaponMount','WeaponControl','6dcd3145-0fe4-4082-bf11-970d78d793b5','','',NULL), +(15737,'Oracle Helmet Green','Armor','Helmet','d3c1b1cf-47e9-4389-8bc2-382e5a88ce37','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(15738,'ORIG_890_Jump_Thruster_Mav_BML','ManneuverThruster','FixedThruster','8dddd6ce-0667-4de5-b8f3-00f88de501d1','','',NULL), +(15739,'DRAK_Cutlass_Steel_Thruster_Maneuver_Vertical_Positive','ManneuverThruster','JointThruster','69d22c8f-6913-447f-b339-a847800c4420','','',NULL), +(15740,'Irradiated Valakkar Fang (Adult)','Misc','Harvestable','04075f35-2e63-4e35-a09a-5521a21909b4','C','','The valakkar continually sheds its teeth throughout its lifetime. As the animal burrows through the sand and catches prey, its teeth are frequently damaged. Once a new tooth finishes forming, it severs the connective tissue that was holding the old tooth in place, causing it to break off and fall to the ground. The fangs of the valakkar can also be extracted from the animal\'s mouth after its death. This fang was exposed to radiation over a long period of time and has developed unusual coloration.'), +(15741,'Ace Interceptor Flight Suit','Armor','Undersuit','b190d5a9-90da-4ceb-a262-cb789dd17d4f','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nFeaturing a deceptively simple design, the Ace Interceptor flight suit is jet black with reinforced grey protective padding on the arms and legs. Basilisk\'s renowned craftsmanship make this flight suit durable and supremely comfortable, leaving no mystery as to why it\'s widely used by top pilots across the empire.'), +(15742,'Seat','SeatAccess','UNDEFINED','e1b2cb7c-8663-4652-b60d-668b65cde363','','',NULL), +(15743,'SalvageInternalStorage_DRAK_Vulture','SalvageInternalStorage','UNDEFINED','0d226a98-1a05-4e49-bde5-11fff0f8f88f','','',NULL), +(15744,'Slayer Cannon','Weapon','Gun','189b0ce2-d934-4208-9970-ac633dbd67d3','','','Manufacturer: Hurston Dynamics\nItem Type: Ballistic Cannon\nSize: 5\n\nDesigned specifically for the Nova tank, Hurston Dynamics\' Slayer ballistic cannon earned its illustrious reputation through countless battlefield engagements during the Second Tevarin War. This battlefield beast excels against armored targets and fortified emplacements by firing large caliber artillery rounds with astounding accuracy and velocity. Hurston worked closely with Tumbril when the tank manufacturer decided to bring back the Nova. Though they painstakingly honored the original Slayer design, Hurston also updated it for the 30th century by improving the pivot speed, heat resistance, and associated software to provide a state-of-the-art gunner UI.'), +(15745,'Overlord Arms Dust Storm','Armor','Arms','e8e5a4e7-f350-479d-8d06-03d3a8d0481f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.'), +(15746,'BEHR_BallisticRepeater_PowerArray_S3','WeaponAttachment','PowerArray','95d58b14-28f5-4069-a93b-c4c416386377','','',NULL), +(15747,'RSI_Perseus_Thruster_Main_Bottom_Right','MainThruster','UNDEFINED','09bbb9b4-d087-4204-a165-b02ffbec04c4','','',NULL), +(15748,'Bed','SeatAccess','UNDEFINED','7bea0afe-f852-4d4f-a934-98b5c6af23f9','','',NULL), +(15749,'HoverQuad Lightspeed Livery','Paints','UNDEFINED','7795a2b5-9fc8-4712-a23b-d6bb27a640a9','','','Speed across picturesque landscapes in this sublime HoverQuad Lightspeed livery, which is orange with yellow flourishes.'), +(15750,'Lycara','Cargo','Cargo','d6e14883-b09b-4014-91e6-09dc8afad1e2','','',NULL), +(15751,'ARMR_ANVL_Carrack','Armor','Medium','df022e28-9394-45f5-aa23-a38dd92391f5','','',NULL), +(15752,'Nitrogen','Cargo','Cargo','ab30e42d-ea50-4e6f-9bb8-f8246d22d52b','','',NULL), +(15753,'SolarFlare','PowerPlant','Power','bec88ea5-1dc1-4c87-836c-e9b9026369be','','','Item Type: Power Plant\nManufacturer: ACOM\nSize: 2\nGrade: C\nClass: Competition\n\nThe ACOM team took their years of experience in the racing world and applied it to their component designs. That focus has helped make the SolarFlare a popular power plant among pilots that want to prioritize performance.'), +(15754,'KLWE_MassDriver_Barrel_S1','WeaponAttachment','Barrel','f1af3301-9a3c-4f9b-9a12-a1046b5dc944','','',NULL), +(15755,'Seat','SeatAccess','UNDEFINED','9ecff7cf-1496-4904-87f6-34182f326d64','','',NULL), +(15756,'PAB-1 Arms Blue','Armor','Arms','61e84df8-0cfe-4be7-8eb1-2faa25996714','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(15757,'Paint_300_SeatTrim_GlossRed','Misc','UNDEFINED','e60baf7f-31b1-48fa-8d8a-50668298a623','','',NULL), +(15758,'Door Control','Door','UNDEFINED','e484b6e4-0ef5-443f-aa49-9605d5cca0c7','','',NULL), +(15759,'box_plastic_2_005x005x005_a','Cargo','UNDEFINED','957a6869-8a01-4d08-a266-1b3e4a731814','','',NULL), +(15760,'CRUS_Intrepid_Pilot_Dashboard','SeatDashboard','UNDEFINED','eabfbd62-6236-4de4-924c-81530e349b39','','',NULL), +(15761,'Door Control','Door','UNDEFINED','666f2bc3-5130-4b64-887c-9cf5659492c9','','',NULL), +(15762,'MISC_Prospector_RADR_StarMap','Display','UNDEFINED','d0ea0f6a-6764-4b61-ab3b-86ba3942d076','','',NULL), +(15763,'Recycled Material Composite','Cargo','Cargo','e9a18ff1-16a1-4545-a7aa-088c56c022b2','','',NULL), +(15764,'Animus Missile Launcher','Weapon','Large','3666c8ac-d552-4006-8c47-7e8f773b11a4','','','Manufacturer: Apocalypse Arms\nItem Type: Missile Launcher\nClass: Ballistic\n\nMagazine Size: 3\nRate Of Fire: 300 rpm (3 shot burst)\nEffective Range: 2 km\n\nAttachments: Optics (N/A), Barrel (N/A), Underbarrel (N/A)\n\nLift the Animus onto your shoulder and level the opposition on the battlefield. This missile launcher from Apocalypse Arms features a rotating barrel that quickly fires three missiles, making it the perfect weapon to obliterate ground forces or damage vehicles and small ships. When you need to sow destruction to save yourself, you can trust Apocalypse Arms to deliver.'), +(15765,'CBH-3 Helmet Imperial','Armor','Helmet','d960452f-a083-40ed-8e68-2150f13ede31','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. Visor is AR crosshair compatible.'), +(15766,'Remote Turret','Turret','TopTurret','43d95e9f-143c-c8c5-073e-2e4bb6a98cae','','','Remote Turret'), +(15767,'Manned Turret','TurretBase','MannedTurret','632fdd8d-cad8-4e92-bf9d-ee4fcf832bfd','','',NULL), +(15768,'RSI_Apollo_Docking_Floor','Door','UNDEFINED','42ff2349-76d0-b4f6-59be-d1aef3d24f9f','','',NULL), +(15769,'H_Dashboard_Projector_HUD_ANVL_Carrack_CommandStation','Display','UNDEFINED','3cc9ac7f-b9da-471f-87dc-b63a717a4f47','','',NULL), +(15770,'Montara Gloves','Char_Clothing_Hands','UNDEFINED','8a180042-12e3-47f3-9220-69ad5ec072cd','','','Simple style meets exquisite execution with the Montara gloves. A chic outer material and ultra-soft lining make the gloves ideal for both bad weather and elegant events.'), +(15771,'SHIELDS','ShieldController','UNDEFINED','e6fb1d36-dcee-4872-b5b8-6e3750e29d4d','','',NULL), +(15772,'Seat','Usable','UNDEFINED','07793e41-7559-4497-a57b-9b71422fa63e','','',NULL), +(15773,'Manned Turret','TurretBase','MannedTurret','9a243180-01a8-4467-88a7-158c34852137','','',NULL), +(15774,'AEGS_Gladius_Thruster_Mav_Joint_01','ManneuverThruster','JointThruster','0082c17c-4b9b-4458-bc13-bd64f0e87584','','',NULL), +(15775,'Potassium','Cargo','Cargo','4329908c-259c-4052-a860-ae68f685f305','','',NULL), +(15776,'ESPR_Talon_Thruster_Main_BR','MainThruster','FixedThruster','db461c3c-20c8-424b-99e7-b707cf60d931','','',NULL), +(15777,'Carryable_1H_CY_drug_medical_pills_1_a_AIOnly','Misc','UNDEFINED','be47e1c5-b67c-4ad3-8f62-7ba86963c4e8','','',NULL), +(15778,'Seat','SeatAccess','UNDEFINED','7080f4fe-cda5-43bb-9f83-8aa42d8e8d22','','',NULL), +(15779,'Pepperoni Pizza (Slice)','Food','Consumable','ce717667-3d35-4af6-8863-008bc23df42d','','','NDR: 22\nEffects: Dehydrating, Hyper-Metabolic\n\nA crisp crust topped with a fresh tomato sauce, spicy pepperoni slices, and melted cheese.'), +(15780,'Paint_300_SeatTrim_CarbonFiber','Misc','UNDEFINED','00756eb7-cc89-494d-8330-537bfcb87c84','','',NULL), +(15781,'Compboard','Cargo','Cargo','9bfd6c92-851e-4f3d-97fb-526b23d5b45e','','',NULL), +(15782,'Fotia Seedpod','Misc','Harvestable','18dd9c97-e5eb-42fd-9266-1bb4255c532c','','','The fotia scrub relies on solar flares for its reproduction. Rather than having traditional stamen and pollen, it allows radiation from flares to mutate its genetics before releasing its seedpod. Some enterprising individuals seek out and collect the seedpods because of their natural radiological properties that can be utilized in various ways.'), +(15783,'Door','Door','UNDEFINED','9e4c968f-c64c-43a0-96ce-7cc37b2cce34','','',NULL), +(15784,'ORIG_890_Jump_Thruster_Mav_MSL','ManneuverThruster','FixedThruster','230ebeea-596a-4009-9658-de3c847d1736','','',NULL), +(15785,'game_chess_1_pawn_b','Misc','UNDEFINED','51aa0404-51ac-4cf6-a8b5-04b61bc580d6','','',NULL), +(15786,'Apollo Alliance Aid Red Livery','Paints','UNDEFINED','35d1e4cc-b244-47bf-9b40-f73441cfaa63','','','Showcase your dedication to helping Alliance Aid assist the people of Levski during their time of need with this red livery.'), +(15787,'Table_Booth_4_Seat_rdwn_b','Usable','UNDEFINED','90a56883-189f-4f61-a219-86315fc5853b','','',NULL), +(15788,'Savrilium (Ore)','Cargo','Cargo','4ed0b502-4054-4d56-837b-ed0a38b450f1','','',NULL), +(15789,'TRGT. STATUS','Seat','UNDEFINED','a4de3e11-828d-4d12-a5ea-54ac56d97c7b','','',NULL), +(15790,'Door','Door','UNDEFINED','dcd83d01-af89-4067-8bca-9f740576c85e','','',NULL), +(15791,'Idris_Pilot_Rm_Locker_L','Player','UNDEFINED','e9171e8b-7cb3-4eec-b681-c70f24c4f8cd','','',NULL), +(15792,'AEGS_Sabre_Thruster_Mav_BottomFR','ManneuverThruster','JointThruster','c0c83f45-1476-4de4-963d-d6d636b6f224','','',NULL), +(15793,'Atlasium','Cargo','Cargo','6e105c27-28c4-415a-8e57-b8bc48581179','','',NULL), +(15794,'Calister Pants Tosca','Char_Clothing_Legs','UNDEFINED','a3b0ef25-c188-49f4-9a70-30efad2b0818','','','Carrying Capacity: 1000 µSCU\n\nThe Calister Pants by Habidash are made with thick synthetic fabric intended to ensure coverage of the wearer\'s legs even in adverse environmental conditions.'), +(15795,'Lynx Nebula Livery','Paints','UNDEFINED','574031b7-06d5-4ff3-97f5-2185e9df0f48','','','The Nebula livery brings a striking metallic purple finish to the Lynx.'), +(15796,'Bexalite (Raw)','Cargo','Cargo','a0ce715e-18c8-43d6-9ebf-eb618496e245','','',NULL), +(15797,'Carrack 2950 Best In Show Livery','Paints','UNDEFINED','1366f2ed-f5be-43ed-b5b2-11369508ca2a','','','Customize your Carrack with this special 2950 Best in Show livery that is white with grey and gold accents.'), +(15798,'Idris Sea Serpent Livery','Paints','UNDEFINED','ae1ee008-a458-477a-85a6-6500df1f293c','','','Cool blues and black combine for this subdued Idris Sea Serpent livery.'), +(15799,'Ornate Drinking Gourd','Drink','UNDEFINED','2258b64b-471e-480c-92d4-5420d532392c','','','Made from a calabash gourd, this spherical drinking vessel fits warmly in the hand and features intricate metal latticework detailing.'), +(15800,'INTK_ESPR_Prowler','FuelIntake','Fuel','26869d68-f8f1-4232-aaf8-0d0ae264d90b','','',NULL), +(15801,'Tumbril Storm Turret','Turret','TopTurret','e1e59a86-ec92-4c20-a33c-e5a2834af2c4','','','Multitask on the battlefield with this remote turret system. Featuring precise controls and a wide field of fire, the turret allows pilots to add combat support to their resume.'), +(15802,'Flight Blade','FlightController','UNDEFINED','ecf0648d-a917-4acb-824b-b43dab5ea18e','','',NULL), +(15803,'RSI_Zeus_Thruster_Main_Top_Right','MainThruster','UNDEFINED','cbdfbd9f-4320-4113-b44b-f61be518ae6e','','',NULL), +(15804,'TRGT. STATUS','Seat','UNDEFINED','f3e98f85-ae23-4931-880c-a11f35de20e8','','',NULL), +(15805,'Bed','Usable','UNDEFINED','73462172-0640-47d6-9412-bab99201b484','','',NULL), +(15806,'ESPR_BallisticCannon_Ventilation_S5','WeaponAttachment','Ventilation','6594c807-395c-4930-9aa5-9bbc912e7946','','',NULL), +(15807,'Custodian \"Big Boss\" SMG','Weapon','Medium','856c9b52-3336-498c-a2e0-70353ac565bc','','','Manufacturer: Kastak Arms\nItem Type: SMG\nClass: Energy (Laser)\n\nBattery Size: 60\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nThe Custodian SMG from Kastak Arms focuses on a high rate of fire over damage and accuracy making it an ideal choice for sweeping through tight environments and close quarters combat. This sleek black and shocking green color palette give the \"Big Boss\" edition its signature look.'), +(15808,'Vortex','PowerPlant','Power','75d69d04-429b-47e1-b439-4d8e9e4e6bce','','','Item Type: Power Plant\nManufacturer: Aegis Dynamics \nSize: 2\nGrade: D\nClass: Military\n\nTurn the tide of battle with the Aegis Vortex. Counted on by the UEE Navy, this power plant can be found on ships defending every corner of the universe.'), +(15809,'Gallant Rifle','Weapon','Medium','8bc41f99-ad80-4050-99ff-958c0b54c973','','','Manufacturer: Klaus & Werner\nItem Type: Assault Rifle\nClass: Energy (Laser)\n\nBattery Size: 45\nRate Of Fire: 450 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nDependable assault weapons never go out of style. Klaus & Werner maintains that tradition by unveiling the Gallant. This energy-based assault rifle is capable of providing accurate and sustained fire at targets up to medium range, while its high-capacity power system allows operators to fire considerably more shots per battery.'), +(15810,'Seat','Usable','UNDEFINED','689bc57d-b99a-4160-be49-bb242d70db7b','','',NULL), +(15811,'Antium Legs Storm','Armor','Legs','23dba495-9b54-4a33-be6a-365ff8eebb14','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(15812,'Venture Undersuit Ascension','Armor','Undersuit','90aead43-ba23-46f0-be7c-554407479f48','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement. This special IAE 2953 edition has a black and grey color palette with copper accents.'), +(15813,'Book','Misc','UNDEFINED','7e34d968-1261-444f-b71f-d875349c1805','','',NULL), +(15814,'Tarantula GT-870 Mark 2 Cannon','Weapon','Gun','972c562f-bc9b-441c-a2fb-785293e54eda','','','Manufacturer: Gallenson Tactical Systems\nItem Type: Ballistic Cannon\nSize: 2\n\nFed by Gallenson Tactical’s patented SpinGlide drum ammunition system, the Tarantula GT-870 Mk2 can smoothly and accurately deliver a consistent stream of ballistic shells. Though it only has a moderate rate of fire, its trustworthy durability makes it a dependable addition to any fight.'), +(15815,'fruit_plant_2_a_6003','Misc','UNDEFINED','425da55f-93ab-4c68-bca8-73fd3d4bc91e','','',NULL), +(15816,'Book','Misc','UNDEFINED','2173a44f-5a91-493e-bb15-9a319c6ff490','','',NULL), +(15817,'Book','Misc','UNDEFINED','437efd9c-0ff6-40ce-b710-29f5abb045b5','','',NULL), +(15818,'fruit_plant_2_a_4003','Misc','UNDEFINED','4da42dee-9fa1-4ee4-adfa-2b96875e8f78','','',NULL), +(15819,'Book','Misc','UNDEFINED','54cf1405-6c00-4a59-8342-4780e110a397','','',NULL), +(15820,'fruit_plant_2_a_5003','Misc','UNDEFINED','c2edd484-87ef-4207-a13e-584401959840','','',NULL), +(15821,'fruit_plant_2_a_2003','Misc','UNDEFINED','0e935a67-077b-4df8-91a9-52bb0bb356c1','','',NULL), +(15822,'HRST_LaserRepeater_PowerArray_S3','WeaponAttachment','PowerArray','84c58f49-9b32-4d58-a1fe-d25a23ffcb48','','',NULL), +(15823,'fruit_plant_2_a_3003','Misc','UNDEFINED','f1213ff0-4743-488b-97fb-7032a38b21de','','',NULL), +(15824,'m_human_mannequin_base_armor','ShopDisplay','UNDEFINED','2f62265d-f7ca-4319-ac99-b9d2c8a088ea','','',NULL), +(15825,'MISC_Starlancer_Copilot_Seat_TAC','Seat','UNDEFINED','957e8c8f-935b-4782-9c18-bc1ca5ee6630','','',NULL), +(15826,'RSI_Zeus_CL_Thruster_Mav','ManneuverThruster','UNDEFINED','c50ce2e9-ae27-46eb-9c55-df1a2063c3a1','','',NULL), +(15827,'MISC_Starlancer_Thruster_VTOL_Small','ManneuverThruster','FixedThruster','e1d5236a-ee21-4d12-be87-a49ef0e10066','','',NULL), +(15828,'Door Control','ControlPanel','DoorPart','22df0f68-3201-417b-b490-06524e44bb3b','','',NULL), +(15829,'CRUS_Spirit_Pilot_Dashboard','SeatDashboard','UNDEFINED','130982fe-80b6-4031-8d50-863f02643fa1','','',NULL), +(15830,'ADP-mk4 Core Exec','Armor','Torso','f686308f-c08d-49bb-a6db-ebf76ab9d610','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nWhen there\'s a difficult job at hand, you want to ensure that you can see it through to the end. Clark Defense Systems\' ADP-mk4 heavy armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers. This executive edition features a brushed chrome finish with an inlaid hexagonal pattern.'), +(15831,'ANVL_Ballista_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','714fad99-a784-4124-b06b-be2d4883356c','','',NULL), +(15832,'Weapon Rack','Door','UNDEFINED','dbdb51f7-a4f3-4562-8956-052fa6befe72','','',NULL), +(15833,'Microid Battle Suit Core Lowland','Armor','Torso','08617bd1-cf10-4716-9057-4f6fdd162396','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(15834,'Door Control','Door','UNDEFINED','5e075aa0-2087-4fff-a107-7e43e11aa6aa','','',NULL), +(15835,'m_human_mannequin_rsi_suit_09','ShopDisplay','UNDEFINED','add85708-78f6-4af5-bc92-a22a17429636','','',NULL), +(15836,'Door Control','Door','UNDEFINED','c91ea705-4eaa-4f57-b807-784efcfc6007','','',NULL), +(15837,'Artimex Arms Starchaser','Armor','Arms','6f0c55f8-fe90-4a32-b2c5-33c4fd722f91','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.'), +(15838,'Mantis GT-220 Gatling','Weapon','Gun','b837397c-47b6-45e7-b409-db290a068b47','','','Manufacturer: Gallenson Tactical Systems\nItem Type: Ballistic Gatling\nSize: 3\n\nThe Mantis GT-220 is a hydraulically-driven Gatling-type rotary cannon designed to deliver smaller rounds at a very high rate of fire. The Mantis is designed to shred armor on very fast targets, sacrificing power for absolute saturation of the target area.'), +(15839,'Dashboard','SeatDashboard','UNDEFINED','6a9e01da-d88d-4c1f-bd01-8ead26fafaa6','','',NULL), +(15840,'Door Control','Door','UNDEFINED','81bec30e-c4ac-47e9-a1b5-b2301b1a1dd8','','',NULL), +(15841,'Body','Char_Clothing_Torso_0','Medical','e8222b04-5f65-4dbe-85a5-f34cad72abb2','','',NULL), +(15842,'Door Control','ControlPanel','DoorPart','12a37fb4-21ce-41ca-92d0-15feb9fd7a0b','','',NULL), +(15843,'Morozov-SH Arms Red Alert','Armor','Arms','b170978e-5df2-42df-ac14-e3ae40b81159','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(15844,'Artimex Helmet Lodestone','Armor','Helmet','e05f523f-2879-46a1-9d8e-5f236d18d46d','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape. Visor is AR crosshair compatible.'), +(15845,'RSI_Apollo_Medivac_Thruster_VTOL','ManneuverThruster','FixedThruster','9ef2fca6-4e6b-4907-acaf-cec1f4271033','','',NULL), +(15846,'Tuvois Jacket Twilight','Char_Clothing_Torso_1','UNDEFINED','cb8c777f-1393-485c-8e41-a516cfcd6ed8','','','Carrying Capacity: 1K µSCU\n\nCreated in collaboration with legendary designer Avon, OpalSky is proud to unveil the Tuvois, an open vest featuring stark, bold styling that\'s destined to make an impression. \n\nWomen\'s sizes currently out of stock.'), +(15847,'CBH-3 Helmet Base','Armor','Helmet','3d06b920-80a4-4db2-b5be-51268afb09b5','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. Visor is AR crosshair compatible.'), +(15848,'Zip','Cargo','Cargo','04e75b1c-3524-4671-8b53-5768c8321152','','',NULL), +(15849,'Geist Armor Arms Forest','Armor','Arms','b14102dd-6b92-40b7-85e9-3aec7c6011fa','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(15850,'Keldur Hat and Indigo Goggles','Char_Clothing_Hat','UNDEFINED','e4ee9492-dbf7-432a-9de5-bd4dcbe0279b','','','Blowing winds and blazing sun won\'t be an issue when wearing the Keldur hat and goggles. Insulated flaps keep the sun and elements off your neck, while a lightweight metal brim and scratch resistant, industrial-grade goggles protect your eyes.'), +(15851,'Seat','SeatAccess','UNDEFINED','1008ca55-07ba-4e23-8917-c18e8a42b4f5','','',NULL), +(15852,'Internal Tank','QuantumFuelTank','QuantumFuel','452cc498-a39d-487c-d08e-2a277a7e4c97','','',NULL), +(15853,'Seat','Usable','UNDEFINED','28cc8173-b29e-4f0c-a95d-3d3168bf1b14','','',NULL), +(15854,'RSI_Perseus_Thruster_Retro','ManneuverThruster','Retro','5cc70ff5-46e8-4875-a6d6-eed4ce12fbcb','','',NULL), +(15855,'Medical Bed','Usable','UNDEFINED','76519970-e758-4d90-a05f-879ae61ee128','','',NULL), +(15856,'Mustang Beta Ship Armor','Armor','Medium','92bfd039-7c72-45eb-9d09-b1a2d500f481','','','Mustang Beta Ship Armor'), +(15857,'Anvil Decoy Launcher','WeaponDefensive','CountermeasureLauncher','05230f31-baae-48c6-ad02-5ca9c7b83071','','','Anvil Decoy Launcher'), +(15858,'Cutter Foundation Fest Livery','Paints','UNDEFINED','9ef064d1-40a9-4f88-b1a9-e6161c5ea4f8','','','Foundation Festival is an opportunity for Citizens and Civilians to come together and strengthen the foundation of our community. Show your commitment to a better universe with this custom livery.'), +(15859,'Adiva Jacket Twilight','Char_Clothing_Torso_1','UNDEFINED','0e9adeb1-78b2-42a2-b26e-a821f8b20b55','','','Carrying Capacity: 1K µSCU\n\nDefine your ultimate you. The Adiva is an asymmetrical pullover with bold mixed-materials and solid reinforced trim.'), +(15860,'P4-AR \"Blacklist\" Rifle','Weapon','Medium','9aded579-9c99-4c61-8f70-d0f5c1b177c8','','','Manufacturer: Behring\nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 40\nRate Of Fire: 550 rpm\nEffective Range: 50 m\n\nBehring\'s classic P4-AR rifle features a collapsible stock and shortened barrel, making it an ideal choice for close-quarter firefights. Its accuracy and general ease of use make it universally valued among security, military and civilian users.\n\nThe Blacklist edition features a black finish.'), +(15861,'Oracle Helmet Imperial','Armor','Helmet','144aac81-8453-4acb-89ea-3d9b5df06fba','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(15862,'Nox Ocellus Livery','Paints','UNDEFINED','bd2c0372-f696-402d-bda3-cea77a73005b','','','The Ocellus livery adapts and updates the iconic colors and design used on some Tevarin ships to bring a striking new look to the Nox. The livery gives the top of the fuselage a prominent red ridge while shimmering green covers the rest of the ship. Thick grey lines swoop through both colors to provide a unique geometric element.'), +(15863,'Libio Jacket Twilight','Char_Clothing_Torso_1','UNDEFINED','95ab2312-05c5-405e-9d13-0bf473015afd','','','Carrying Capacity: 1K µSCU\n\nOne of OpalSky\'s classic pullovers, the Libio features a two-tone asymmetrical pattern and polyweave blend to keep it elegant and striking every time you wear it.\n\nWomen\'s sizes currently out of stock.'), +(15864,'Flight Blade','FlightController','UNDEFINED','3ae35076-1ee3-4aa7-9147-73249a2f0e95','','',NULL), +(15865,'Ultra-Flow','Cooler','UNDEFINED','5ffb1abc-c4ed-4413-b882-ccd848ca09a2','','','Item Type: Cooler\nManufacturer: Juno Starwerk\nSize: 1\nGrade: A\nClass: Industrial\n\nJuno Starwerk has crafted the Ultra-Flow to not only withstand the demanding cooling needs of your ship’s systems as it works, but to do it longer and better than other coolers in its class.'), +(15866,'Carryable_2H_FL_box_openable_1_a','Misc','UNDEFINED','114187fd-e39a-4a07-897a-51da0fcfebbb','','',NULL), +(15867,'ORIG_890Jump_CargoGrid_Hangar','CargoGrid','UNDEFINED','63916830-0b18-478e-8975-af718db7a1ac','','',NULL), +(15868,'weapon_underbarrel_light_wide_blue_01','WeaponAttachment','Light','df978ce2-2718-4be5-b29c-38bf73ed9746','','',NULL), +(15869,'ARMR_ANVL_Ballista','Armor','Medium','4735a555-aab0-465b-88b9-73a639253b2d','','',NULL), +(15870,'INTK_RSI_Apollo','FuelIntake','Fuel','46e964ab-37b2-a7e1-39de-32019444718e','','',NULL), +(15871,'KRON_LaserCannon_FiringMechanism_S1','WeaponAttachment','FiringMechanism','18908398-4f9d-44c6-90f4-243a3e636fe9','','',NULL), +(15872,'ORC-mkV Core Desert','Armor','Torso','6b8a0f0e-a370-4aa7-a5ab-e8b70fc7e450','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(15873,'Seat','Usable','UNDEFINED','10a94343-92dc-47f4-9714-0a9eb0a22b31','','',NULL), +(15874,'BRRA_LaserCannon_AP_AutomatedTurret','Weapon','Gun','b820e149-7b41-45b4-ac7d-8dfb75383f25','','','@LOC_PLACEHOLDER'), +(15875,'Ati Jacket Black','Char_Clothing_Torso_1','UNDEFINED','0ac0979f-710f-4cd6-a11a-5eb2c867b204','','','Carrying Capacity: 2K µSCU\n\nFiore\'s is a modern update of traditional Earth design. Slim tailoring, a high collar, and striking asymmetrical design make this overcoat a must-have item for any wardrobe.'), +(15876,'INTK_VNCL_Blade','FuelIntake','Fuel','10bd15eb-6d8f-4dc6-a68b-6996d787fb2d','','',NULL), +(15877,'Nyman Jacket Twilight','Char_Clothing_Torso_1','UNDEFINED','15b94cf3-80f5-45e2-a34e-f3b9d75f9ec0','','','Carrying Capacity: 1K µSCU\n\nOpalSky\'s Nyman light pullover is perfect to have on hand when lounging poolside or on those chilly nights.'), +(15878,'Drivetrain','WheeledController','UNDEFINED','e61210d9-cc3a-47d6-8346-717d8af8383b','','',NULL), +(15879,'Processed Goods','Cargo','Cargo','d11d1cc4-e42b-4632-ab61-b72583b34e1f','','',NULL), +(15880,'ORIG_125a_Thruster_Main_Left','MainThruster','FixedThruster','e279c1ec-a9da-4e32-9530-085878996c34','','',NULL), +(15881,'Walesko','FPS_Consumable','Hacking','61940830-d583-4584-9e15-e2e01a746a5a','','','Instructions for how to build this simple cryptokey were first published publicly in 2887 by political activist Aris Walesko who had hoped that it would lead to greater governmental transparency. Though not up to the standards of most modern security protocols, this slow and unreliable device it is still in use today owing to its ease of construction and wide availability from numerous small manufacturers.'), +(15882,'Quartz','Cargo','Cargo','43a33d46-7c6e-4324-9a99-ccce709339ab','','',NULL), +(15883,'Winter-Star EX','Cooler','UNDEFINED','5800c752-938f-4b6a-b39b-7f770c6fa060','','','Item Type: Cooler\nManufacturer: J-Span \nSize: 2\nGrade: D\nClass: Civilian\n\nThe Winter-Star EX is a baseline cooler you can trust. Built by the experts at J-Span, it’s ready to handle whatever conditions you encounter.'), +(15884,'Stud','Char_Head_Piercings','UNDEFINED','a1f09fc9-546c-4e48-9178-20d4aaae8193','','',NULL), +(15885,'INTK_DRAK_Cutlass_Blue','FuelIntake','Fuel','2178d506-ee13-45bc-a86d-516d37675869','','',NULL), +(15886,'Bengal_BallisticCannon_Ventilation_S8','WeaponAttachment','Ventilation','6324de5d-9a51-43fe-a6c9-48075e02d676','','',NULL), +(15887,'Colonialism_Outpost_RN_Resource_Relay','Relay','UNDEFINED','094f6c05-394b-4299-a699-7b050981ba32','','',NULL), +(15888,'Synergy','Drink','Bottle','8ad674de-d858-4a6e-aba7-1399e39fc76c','','','HEI: 48\nNDR: 06\nEffects: Energizing, Hydrating\n\nSynergy is formulated to deliver balanced active rehydration to replenish your body\'s essential harmony.'), +(15889,'Prowler Elysian Livery','Paints','UNDEFINED','f171609e-962c-482f-93b4-1752b36c39fb','','','Beautiful blues swirl together with the Elysian livery to bring a truly special look to the Prowler.'), +(15890,'Adrift Shirt White','Char_Clothing_Torso_0','UNDEFINED','d7bf624e-6c62-4a31-ab14-aba9254bfc55','','','The Adrift mock neck sweater takes the idea of fashion as entertainment to the next level. This comfortable fiber blend material features a special vid-fabric depicting a dynamic space scene to ensure that people won\'t be able to keep their eyes off you.'), +(15891,'Nomad Deck the Hull Livery','Paints','UNDEFINED','592a7168-6b35-4cc5-b0bf-e2a75ff0f50a','','','Express your holiday spirit with the Deck the Hull livery, which uses the traditional Luminalia colors of green and red to celebrate the popular Banu festival that\'s become beloved by Humans.'), +(15892,'Origin Jumpworks Noise Launcher','WeaponDefensive','CountermeasureLauncher','399b7d33-52b6-485f-83af-ae53010ebeac','','','Origin Jumpworks Noise Launcher'), +(15893,'Spirit Stalwart Livery','Paints','UNDEFINED','8fe508e0-470a-4e92-b257-394ee7f125e4','','','The Stalwart livery gives the Spirit a look that is blue as the sky with subtle white and red highlights.'), +(15894,'Lynx Core Purple','Armor','Torso','32fe4759-e37e-4644-b5fe-79629cc7a65f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(15895,'Seat','SeatAccess','UNDEFINED','0d8c727b-a71c-4105-b02a-2da77c3ececc','','',NULL), +(15896,'weapon_underbarrel_light_wide_gold_01','WeaponAttachment','Light','44fe968c-9e0b-4612-a166-6a2aae013cc6','','',NULL), +(15897,'DCP Armor Legs Jungle Camo','Armor','Legs','551e9712-2692-403f-a4fe-0a441d8f7be1','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(15898,'Internal Tank','FuelTank','Fuel','8a492116-41e4-49d3-90da-450da8d3bd27','','',NULL), +(15899,'GPI_Relay_1slot','Relay','UNDEFINED','7f69f367-3287-4e63-923a-122c18b8e032','','',NULL), +(15900,'Carryable_TBO_FL_16SCU_Commodity_ProcessedGoods_EvidenceBox','Cargo','Cargo','3dc7fd9b-89dd-4e3a-b8c3-f39487b25dd1','','',NULL), +(15901,'Pulverizer \"Hemlock Camo\" LMG','Weapon','Medium','34ed9a54-3c88-429f-93a4-e5cdf7d99bc1','','','Manufacturer: Unknown\nItem Type: LMG\nClass: Ballistic\n\nMagazine Size: 120\nRate Of Fire: 355 rpm\nEffective Range: 100 m\n\nNothing like ripping through a huge mag of .50 cal bullets to scare away unwanted guests. Based on a modified FS9, the Pulverizer LMG wastes no time with pleasantries, instead lends itself to a more direct confrontational approach. \n\nThe Hemlock edition features a green camo pattern.'), +(15902,'SightRight Goggles Yellow','Char_Accessory_Eyes','UNDEFINED','8431c4ac-6d13-47bb-8e4d-24cf15ed72e5','','','Stegman\'s SightRight goggles strike a careful balance between ultralight comfort and professional-quality protection. The enhanced polycarbonate frame offers maximum eye safety with a durable scratch-resistant lens construction that also features an award-winning anti-fog coating to maintain visibility in the harshest of worksites.'), +(15903,'Door Control','ControlPanel','DoorPart','e63c82b1-c460-49b3-ab67-bf102f5d98ca','','',NULL), +(15904,'Debnam Gloves Tan','Char_Clothing_Hands','UNDEFINED','dd14f975-4b73-4551-80d5-f1aa32babcd0','','','Named after the influential Terran tailor, Debnam gloves incorporate that famous tailor\'s classic design to keep your hands comfortable in colder temperatures.'), +(15905,'Carryable_1H_CY_tool_manual_socket_1_f','Misc','UNDEFINED','dac35cc4-5227-4926-81ab-52db34c5009e','','',NULL), +(15906,'XIAN_Scout_Thruster_Aux_Joint','ManneuverThruster','FlexThruster','38a98af8-c27a-45fd-b93b-8674305406ee','','',NULL), +(15907,'ANVL_Hornet_F7C_Thruster_Retro','ManneuverThruster','JointThruster','72032cf5-a26f-49d5-a301-e5bf5d1e7dde','','',NULL), +(15908,'Door Control','Door','UNDEFINED','9500239d-7876-4b05-9158-e8b9868c75fd','','',NULL), +(15909,'Gold','Cargo','Cargo','ac6d063d-958c-4559-90bd-a3c5f70dfa02','','',NULL), +(15910,'Cordimon Jacket Dark Green','Char_Clothing_Torso_1','UNDEFINED','702a74b9-330f-414c-8ef0-f1dd42fcc114','','','Carrying Capacity: 3K µSCU\n\nStegman\'s classic worker\'s jacket has been a staple of job sites for over seventy years. This duotone pattern is cut from the toughest material meaning you can wear it anywhere, anytime. It may not be armor, but it damn sure feels like it.'), +(15911,'TRGT. STATUS','Seat','UNDEFINED','b67e4271-abb6-4fd7-836f-a7d43e0d242b','','',NULL), +(15912,'CRUS_Star_Runner_Locker_Hab','Player','UNDEFINED','81ef020d-a5cc-4440-8f11-70448f61c7fc','','',NULL), +(15913,'Falston Jumpsuit \"Hurston Edition\"','Char_Clothing_Torso_1','UNDEFINED','f887d87e-b904-4dc6-8f41-524ea2b9b8c6','','','Carrying Capacity: 1K µSCU\n\nThe Falston jumpsuit has a high collar to guard against the elements, triple-reinforced stitching, and an extra soft interior lining because everyone deserves a bit of comfort.'), +(15914,'CSV Jolt Livery','Paints','UNDEFINED','c3969c1b-7a69-4f7f-b3d9-969e95e9af45','','','When you\'re working on building your latest settlement, be sure you stand out on even the harshest landscapes with the bright yellow Jolt livery for the Argo CSV.'), +(15915,'Shutters','AIModule','UNDEFINED','dd8fac90-605e-4668-96c5-7e8172476b88','','',NULL), +(15916,'Shiv Gideon Livery','Paints','UNDEFINED','8da73345-f6bc-486a-96a4-8baf43042339','','','The Gideon livery for the Shiv features a heavily worn green and grey finish with yellow accents.'), +(15917,'Remote Turret','Turret','BottomTurret','708d66c1-fe86-4064-8e5d-808e46519ac2','','','Multitask on the battlefield with this remote turret system. Featuring precise controls and a wide field of fire, the turret allows pilots to add combat support to their resume.'), +(15918,'Door Control','ControlPanel','DoorPart','195935a6-5972-4a07-9a0e-4aa10ad18343','','',NULL), +(15919,'PTV Rifle Green Livery','Paints','UNDEFINED','c684aeb1-5f07-4221-b737-69e886754368','','','Rifle Green livery uses a premium two-component technology designed to endure harsher environments without fading or scratching.'), +(15920,'Morozov-SH-I Arms Lifeforce','Armor','Arms','0705fa6f-58ac-482a-818e-379557ac17e9','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing the same fortified armor plating, special anti-rip protective padding and ample storage, as the Morozov SH, the SH-I industrial variant was designed by RRS to protect workers employed in hostile zones while ensuring they had the full range of motion required to perform their duties. The Lifeforce edition was designed with first responders in mind with a highly visible white, red, and grey color scheme.'), +(15921,'Drink_bottle_rum_01_a','Drink','Bottle','8f91c673-4be3-414c-83da-e7a892ecffb0','','',NULL), +(15922,'Revenant Pod','Misc','Harvestable','c236e322-5c63-4d82-88ff-0317371c36c6','','','Contrary to its ominous name, the Revenant is actually a variety of the Altrucia Tree, an indigenous plant of Terra known for its thick and colorful leaves. Geoengineers introduced fields of Altrucias to Hyperion in an effort to break up the dust storms. Although the project failed, the Altrucia trees adapted to the perpetual wind patterns, shedding its leaves and thickening the wood in the trunk. Botanists initially believed that the Altrucias had died, but on closer inspection, discovered that they were quite alive and thus, the name was born.The pods are collected because the pollen is processed and turned into Altruciatoxin.'), +(15923,'RSI_Scorpius_Thruster_Retro_Right','ManneuverThruster','JointThruster','3bea9cf4-7acf-42e1-b495-2eee9a8132c1','','',NULL), +(15924,'Kino Shoes Dark Red','Char_Clothing_Feet','UNDEFINED','a84ad620-a9ed-431c-9029-b6292e911d90','','','These two-tone slip-on shoes are comfortable enough for casual wear, but stylish enough for the workplace.'), +(15925,'Door Control','Door','UNDEFINED','04074f82-9d55-42e2-9082-2c3b436069aa','','',NULL), +(15926,'SHIELDS','ShieldController','UNDEFINED','93deb753-f698-49ef-8299-d6f8698235e2','','',NULL), +(15927,'tool_power_1_case_a','Misc','UNDEFINED','f4ead43c-bb5c-4a33-817f-8f58fc4bed2a','','',NULL), +(15928,'Seat','Usable','UNDEFINED','58eacb5b-f2ca-43e5-b722-7a0e4f8d1814','','',NULL), +(15929,'Internal Tank','QuantumFuelTank','QuantumFuel','ed0f1942-801b-48a7-a25f-34b50b7d2cf4','','',NULL), +(15930,'Weapon_Rack_4_Slots_MRAI_Guardian_MX_Ext','Usable','UNDEFINED','487835cf-a178-1e36-bf73-86312da19dbe','','',NULL), +(15931,'Blood_Decal_Gore1','Decal','DoorPart','ad80bc69-cc07-4fae-9999-663c8c95da44','','',NULL), +(15932,'Dust Devil Arms Epoque','Armor','Arms','1aa44faa-2a58-4b64-a1ba-5d63c1495a92','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -85 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nReinforced alloys are carefully layered to recreate the appearance of warriors from Humanity\'s past to create an armor that\'s intimidating and functional.\n\nThe Epoque edition features a navy and black coloring, finished with baroque gold detailing.'), +(15933,'Pulse \"Crusader\" Laser Pistol','Weapon','Small','f7dde345-0bf3-4313-8105-d2d164f1eacf','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Pistol\nClass: Energy (Laser)\n\nBattery Size: 60\nRate of Fire: 500 rpm (1000 rpm rapid)\nEffective Range: 15m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nThe Pulse Laser Pistol is a fully automatic pistol intended for close quarter combat. VOLT designed the weapon with a unique capacitor that condenses the pistol\'s laser energy, increasing its rate of fire at the cost of greater inaccuracy and a higher risk of overheating. This special edition features Crusader branding.'), +(15934,'Table_Booth_2_Seat_RSI_Apollo','Usable','UNDEFINED','4cbaf075-d4df-9d18-29ad-19a96108a4a6','','',NULL), +(15935,'Radar_Display_MISC_Hull_C','Display','UNDEFINED','ad77717a-02d8-4a4d-afd4-29596cfdd17f','','',NULL), +(15936,'ORC-mkV Core Blue','Armor','Torso','7a84d329-ec99-420b-8a40-3d6521e5602e','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(15937,'Vehicle_Screen_MFD_Holographic_Glaive_TR','Display','UNDEFINED','771a2dae-c344-4c87-a128-e23f003e6df9','','',NULL), +(15938,'Fresnel \"Molten\" Energy LMG','Weapon','Medium','dc6043c9-6080-4e03-b95b-6ab79c736215','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: LMG\nClass: Energy (Electron)\n\nBattery Size: 165\nRate of Fire: 550 rpm - 220 rpm\nEffective Range: 50m\n\nAttachments: Optics (S3), Underbarrel (S3)\n\nThe engineers at VOLT crafted the Fresnel LMG to bring a powerful energy weapon to the frontlines, one that can initiate a fight with a rapid spray of deadly blasts. As the weapon heats up, the shots become slower and more powerful, but be careful of overheating. A weapon of this magnitude demands a strong foundation; operators are encouraged to fire from a crouching position to allow for better recoil management.\n\nThe Molten edition consists of an intense black with a streak of crimson running through it.'), +(15939,'facial_hair_006','Char_Head_Beard','UNDEFINED','ffb50f1a-cf01-4275-8216-71df949a2a9c','','',NULL), +(15940,'Internal Tank','FuelTank','Fuel','55e1a0d5-3a92-4c69-b992-ffa1b933bab7','','',NULL), +(15941,'Torreto Pants Emerald','Char_Clothing_Legs','UNDEFINED','8f01818c-80d8-4e2b-95dd-0916b48ace6c','','','Carrying Capacity: 0.5K µSCU\n\n987 redefines classic slacks with the Torreto. These mid-rise, straight cut pants incorporate a section of fabric studding along the side seam to provide a pop of personality.'), +(15942,'GSX-HP','ExternalFuelTank','UNDEFINED','a0db0a51-dc2f-4c33-be3a-5949aac4a384','','','Manufacturer: Stor*All\nItem Type: Fuel Pod\nFlow Rate: 0.9 SCU/s\nCapacity: 70 SCU\n\nBy using a triple reinforced outer plating rated far above industry standards, the GSX-HP fuel pod from Stor*All can handle higher pressures than your typical storage options. This allows you to transport more fuel and improves the safe flow rates of whichever nozzle you use.'), +(15943,'Falston Jumpsuit \"ASD Edition\"','Char_Clothing_Torso_1','UNDEFINED','baaf7f61-0c81-4328-acce-fc54143e2114','','','Carrying Capacity: 1K µSCU\n\nThe Falston jumpsuit has a high collar to guard against the elements, triple-reinforced stitching, and an extra soft interior lining because everyone deserves a bit of comfort.\n\nThe ASD Edition features the deep greens and reds associated with research company.'), +(15944,'Door_Default_Keypad_Prelude','Door','UNDEFINED','7e6076a8-84db-426c-8fa7-1414e9473d73','','',NULL), +(15945,'Edgewear Pants Yellow','Char_Clothing_Legs','UNDEFINED','11b2f120-6abc-416b-94ab-17a742cd7d9e','','','Carrying Capacity: 4K µSCU\n\nStegman\'s Edgewear utility clothes are made from reinforced nylon weaves and lined with temperature-rated quilted technology to provide you with a little extra protection while on the jobsite. Double knees, reinforced joint pads and extra pockets add comfort and durability to this field-tested and worker-approved clothing line.'), +(15946,'Mivaldi Pants Tan','Char_Clothing_Legs','UNDEFINED','18109941-ef7c-425e-ab7c-df32ab75486a','','','Carrying Capacity: 0.5K µSCU\n\nCut to a narrow fit, OpalSky\'s Mivaldi pants feature bold asymmetrical design with smart yet casual dual material styling, making it the perfect addition to any wardrobe.\n\nWomen\'s sizes currently out of stock.'), +(15947,'Horizon Helmet Dark Green','Armor','Helmet','7b23197c-5629-4b5d-b915-1aed33e4625c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Horizon helmet is a durable and robust environmental enclosed work helmet. The single sheet laminate dome gives you an extremely wide field of view. A pair of side-mounted LED light modules provide additional illumination to make sure you can see what you\'re doing.'), +(15948,'RSI_Constellation_Phoenix_Thruster_Retro','MainThruster','FixedThruster','72da4e67-36f8-4f52-af9f-760e0e930534','','',NULL), +(15949,'Pite','Char_Head_Piercings','UNDEFINED','5f8c8889-acd3-462d-97c6-d6996e528a10','','',NULL), +(15950,'Flight Blade','FlightController','UNDEFINED','051ac3c8-1504-46d9-be13-200f43f467cb','','',NULL), +(15951,'Mug','Drink','UNDEFINED','13f8566b-57c5-438e-882b-f5c24cf63ed8','','','A small, handled drinking vessel made from insulating ceramic to help keep bevarages warm.'), +(15952,'Dashboard','SeatDashboard','UNDEFINED','83e91699-4e11-4c64-bc42-966bcc8183aa','','',NULL), +(15953,'ThermoWeave Coat','Char_Clothing_Torso_1','UNDEFINED','8487a67a-d47c-42bb-aa53-2f85c7f1d7f1','','','Carrying Capacity: 1K µSCU\n\nThe ThermoWeave coat provides complete upper body fire and heat defense. It features a high collar and additional frontside protection thanks to a lengthy apron made of aluminized fabric that reflects radiant heat.'), +(15954,'MISC_Reliant_Thruster_Main','MainThruster','FixedThruster','b0139c2f-202f-4efa-89ae-7a45aaa7bff2','','',NULL), +(15955,'DockingTube_Fuel_Ports_RSI_Aurora_ES','DockingCollar','UNDEFINED','9ce14623-6aa3-4115-8bbe-2840641149bf','','',NULL), +(15956,'TCS-4 Undersuit Crusader Edition','Armor','Undersuit','883d13c8-cd3c-4ada-9851-a2ec83d39bcd','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThis comprehensive Tactical Combat Suit provides a complete sealed suit against vacuum, free range of motion, and interfaces seamlessly with compatible armor systems. The Crusader Edition was made specifically for the company\'s security services.'), +(15957,'Salvation Chimaera Livery','Paints','UNDEFINED','a5838d19-acc4-4aa6-8fd4-08fd056ae55c','','','The Chimaera livery for the Salvation is primarily blue and black with yellow highlights.'), +(15958,'Door Control','Door','UNDEFINED','8bce26e2-f80b-4c9b-ab95-b2e5a6900880','','',NULL), +(15959,'Lynx Arms Yellow','Armor','Arms','bc64ccce-a776-463e-bf6c-ebf17a9e17d9','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(15960,'WeaponMount_Gun_S1_MISC_Starlancer_TAC_Right','WeaponMount','WeaponControl','3dbad7f0-ee82-436d-81e7-9f17e6df8f03','','',NULL), +(15961,'Access','SeatAccess','UNDEFINED','7466a353-9464-4158-a91c-40d932b9ffa2','','',NULL), +(15962,'Chiron Backpack Samaritan','Armor','Backpack','c4153a6c-f7e2-436b-84fa-ebf29e5aa33f','','','Item Type: Light Backpack\nCarrying Capacity: 75K µSCU\nCore Compatibility: All\n\nEngineered with first responders in mind, the Chiron backpack provides an ideal carryall for critical supplies with quick access to the medical essentials that are stored inside.\n\nThe Samaritan edition was styled for first responders to be highly visible with a red, white, and grey color scheme.'), +(15963,'GAMA_Syulen_CargoGrid_Main','CargoGrid','UNDEFINED','94fc5f4a-241b-4100-a685-949848c60f1a','','',NULL), +(15964,'Gamma Plus LL (3x Holographic)','WeaponAttachment','IronSight','009b533f-e818-4dc8-a81c-fafd40bb21ba','','','Manufacturer: NV-TAC \nType: Projection\nAttachment Point: Optic \nMagnification: 3x\nAim Time: +15%\nSize: 1\n\nNV-TAC\'s Gamma Plus is a 3x magnifier sight that utilizes ReadyBrite projection for quick target acquisition. Its durable design makes it perfect for any tactical situation. This version of the scope includes low-light functionality suitable for operations in dim environments.'), +(15965,'Gadget_Cabinet_kegr_fire_extinguisher_01_nogeo_high','Usable','UNDEFINED','b367c9c7-9a55-4ef2-9468-3092c775c34d','','',NULL), +(15966,'Piecemeal Armor Core Grey','Armor','Torso','b0788341-72c3-4440-9e98-93373c0a6daa','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -32 / 62 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nThis armor was created using repurposed parts from a Caldera armor set to provide the wearer with an extra layer of protection against aggressors and harsh environments.'), +(15967,'Door Control','DockingAnimator','UNDEFINED','5f234061-3d8c-4232-98ab-216d4a24ec28','','',NULL), +(15968,'Carryable_1H_CY_bottle_whiskey_pourable_1_a','Misc','UNDEFINED','eaea3a80-87a9-4223-849a-0127bb71e8bb','','',NULL), +(15969,'ht_bench_table_microtech_1_double_a','Usable','UNDEFINED','67cd1fd1-b142-4697-910c-cbc603d8fd13','','',NULL), +(15970,'Seat','Usable','UNDEFINED','bf05f8c2-47ab-4324-a83b-314371c2332e','','',NULL), +(15971,'Seat','SeatAccess','UNDEFINED','caf3b41a-028c-4792-a49b-827eaa814e9c','','',NULL), +(15972,'Arrow Metallic Grey Livery','Paints','UNDEFINED','03a0e9cb-2d8d-4915-98a5-a15755c70f8b','','','Customize your Arrow with this sleek grey livery.'), +(15973,'AEGS_Javelin_SCItem_Seat_Bridge_Left','Seat','UNDEFINED','db429995-3b07-45f6-976b-a281220a2d5e','','',NULL), +(15974,'Greenwater Shirt Walnut','Char_Clothing_Torso_0','UNDEFINED','b1f48740-6129-4b33-b079-557d217d1d78','','','The Greenwater is a long-sleeved shirt tailor-made to be worn underneath most standard sets of armor. Crafted with a durable mix of natural and synthetic fibers, it stands up to daily wear and tear without sacrificing comfort.'), +(15975,'PC2 Dual S4 Mount','Turret','GunTurret','97158d79-3c49-4138-8c7f-4124bb2e734f','','','PC2 Dual S4 Mount'), +(15976,'ControlPanel_LightSwitch_Krig_Wolf','ControlPanel','DoorPart','1d4d73b2-6c3e-4a7b-83e4-ef19264c3160','','',NULL), +(15977,'Rockridge Boots Finch','Char_Clothing_Feet','UNDEFINED','fde433e4-d3b1-40fc-aa31-f294229ca5cc','','','With the Rockridge, Grindstone has created a comfortable boot with a wide laced collar that allows wearers to adjust the fit to their level of comfort while still keeping the elements out.'), +(15978,'Elevator Control','Door','UNDEFINED','6b4ed104-3902-4d80-b0e8-e95b6e8956ff','','',NULL), +(15979,'ARMR_CRUS_Starlifter_A2','Armor','Medium','399d52af-8841-45d8-bac6-aa53ac87c843','','',NULL), +(15980,'Stims','Cargo','Cargo','d53e7d62-eea3-4a4c-b713-06bf632e56fa','','',NULL), +(15981,'Lumin V SMG Battery (45 cap)','WeaponAttachment','Magazine','1d1e4e17-9258-4ee8-8461-fc866b6d332f','','','Item Type: Battery\nCapacity: 45\n\nReplacement battery for Klaus & Werner\'s Lumin V SMG.'), +(15982,'GCD-Army Helmet','Armor','Helmet','872dc920-9598-42e4-82fd-31e33f07b676','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nIn honor of the soldiers who protect the Empire, CDS has crafted this limited-edition armor that proudly displays the seal of the UEE Army. Its shell is composed of a durable composite on the outside and a soft core on the inside, designed to absorb the types of impacts associated with on-the-ground combat. The matching helmet features a UV-blocking faceplate that protects the wearer\'s eye sight as they fight on the front lines under strange suns.'), +(15983,'Geist Armor Core Golden Blossom','Armor','Torso','18d46736-fdf6-4337-a057-5dfe2800895d','','','Item Type: Light Armor\nDamage Reduction: 20%\nCarrying Capacity: 8k µSCU\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpacks: Light\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.\n\nThis matte black stealth armor is embellished with intricate golden flowers, giving your enemies one final glimpse of life before death.'), +(15984,'Astatine','Cargo','Small','e4fcf4ad-e52d-4370-9eb2-d4be3c338df2','','','A dangerously radioactive, highly unstable halogen. Some of its isotopes have half-lives of one second or less.'), +(15985,'Pulverizer \"Bloody\" LMG','Weapon','Medium','32b9b103-fed2-492d-ab8c-ad0c45296039','','','Manufacturer: Unknown\nItem Type: LMG\nClass: Ballistic\n\nMagazine Size: 120\nRate Of Fire: 355 rpm\nEffective Range: 100 m\n\nNothing like ripping through a huge mag of .50 cal bullets to scare away unwanted guests. Based on a modified FS9, the Pulverizer LMG wastes no time with pleasantries, instead lends itself to a more direct confrontational approach. \n\nThe Bloody version features a red paintjob.'), +(15986,'GATS_BallisticCannon_PowerArray_S2','WeaponAttachment','PowerArray','2c1502e1-138c-443c-85d2-2ad0a326ba28','','',NULL), +(15987,'Aegis Hammerhead - Noise Launcher','WeaponDefensive','CountermeasureLauncher','6f1c5848-c01f-43fa-9b2a-00252fbd4d73','','','Aegis Hammerhead - Noise Launcher'), +(15988,'Slickdry Waders Valencia','Char_Clothing_Legs','UNDEFINED','d2342185-bf81-4576-ae2b-626462471561','','','Carrying Capacity: 400 µSCU\n\nThe popular Slickdry Waders by Alejo Brothers are a combination of pants and boots made of a synthetic hydrophobic material and ensure the wearer will stay dry even if just stepping out of a river.'), +(15989,'FBL-8a Helmet (Modified)','Armor','Helmet','615b6668-69f5-4bb1-91e5-a142349ef390','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBased on CDS\' FBL-8a combat armor, this set has been modified from its original form. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible. Visor is AR crosshair compatible.'), +(15990,'Forel Module','MiningModifier','Gun','6c072263-8f32-4ca1-b64b-37d820b0786f','','','Manufacturer: Shubin Interstellar\nItem Type: Mining Module (Active)\n\nExtraction Laser Power: 150%\nCatastrophic Charge Rate: -60%\n\nResistance: +15%\n\nDuration: 60 seconds\nUses: 6\n\nShubin developed the Forel Module to provide a safer mining experience by significantly lowering the rate at which the catastrophic charge window fills. Though deposits will be more resistant, the module provides more power to the extraction laser to help it collect ore faster.'), +(15991,'Freelancer microTech Livery','Paints','UNDEFINED','7e77dee4-b0fc-4a88-b834-f17ebfd07b53','','','The microTech livery for the Freelancer features the company\'s logo atop a white base paint with light blue and grey highlights.'), +(15992,'Personal Storage','Cargo','UNDEFINED','277adfd0-9467-4801-b360-0eacb5c396ab','','',NULL), +(15993,'Carrack Kepler Livery','Paints','UNDEFINED','735b8e89-0887-458b-ac0d-84362b895927','','','To honor the brave explorers that brought us to space and support those currently seeking new frontiers, the Interstellar Cartography Center (ICC) commissioned this special livery for the Carrack. Named in honor of famed astronomer Johannes Kepler, the livery mixes dark blue and orange with black highlights. All proceeds from the sale of the Kepler livery goes directly to the ICC to support their efforts in \"Charting the Way Ahead.\"'), +(15994,'Abrade Scraper Module','SalvageModifier','UNDEFINED','98e0e5ac-3a76-4f3f-be2f-7fabf65a8826','','','Manufacturer: Greycat Industrial\nItem Type: Scraper Module\nExtraction Speed: 0.15/0.45\nRadius: 3.5m\nExtraction Efficiency: 70%\n\nIt\'s easy to see why the Abrade from Greycat Industrial is one of the most used scraper module in the \'verse. Its design delivers both a sizable area of effect and respectable extraction rate, creating a reliable beam that can scrape hulls quickly and efficiently.'), +(15995,'mobyGlass Personal Computers','Cargo','Cargo','7beea776-e8ec-4bef-89b0-6aefb934c357','','',NULL), +(15996,'Paint_Ballista_Base','Paints','UNDEFINED','29d590d8-cc80-4ed3-8ebb-728676c63ff8','','',NULL), +(15997,'Cutter XenoThreat Purge Livery','Paints','UNDEFINED','f08141e7-163f-400a-9958-4153b3f5d395','','','Let Humanity know you won\'t bow down to alien invaders with this XenoThreat livery featuring a muted teal with bright red accents.'), +(15998,'Stirling Exploration Suit Sandstorm Edition','Armor','Undersuit','6235c5cd-097b-420a-bc9e-0c8b924720f0','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nDesigned to withstand inhospitable environments, the Stirling Exploration Suit provides a base level of protection from environmental hazards including radiation. Combining Caldera\'s advanced insulation fabrics with sophisticated polymers, the Stirling is able to safeguard the wearer whilst minimizing disruption to movement. Additionally, a self-cleaning system automatically activates after radiation exposure to expunge dangerous excess down to nominal levels. The Sandstorm Edition merges tans, beiges, and grays providing a sandy appearance.'), +(15999,'RSI_Polaris_Thruster_Retro_Rear_Outer','ManneuverThruster','FixedThruster','a86da959-eadd-4841-a31b-798a9ab21381','','',NULL), +(16000,'INTK_ARGO_MPUV_Transport','FuelIntake','Fuel','1f451f7a-2169-40da-86a9-297fe1da0de2','','',NULL), +(16001,'Kino Shoes Aqua','Char_Clothing_Feet','UNDEFINED','d1c6f376-4e59-4568-8a29-b5c1f8e666e9','','','These two-tone slip-on shoes are comfortable enough for casual wear, but stylish enough for the workplace.'), +(16002,'AIModule_Probe_Comms','AIModule','UNDEFINED','793bbf42-6e14-4bbf-9c40-405a22090002','','',NULL), +(16003,'Titanium (Ore)','Cargo','Cargo','6c4c8180-7aff-4559-a000-c80e53c417f8','','',NULL), +(16004,'ADP Legs Woodland','Armor','Legs','67985f0c-9d48-44f6-ab8c-ea9ba38b211a','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(16005,'Hornet Mk II Blacksmith Livery','Paints','UNDEFINED','d5008b87-9740-427e-b82d-6d90de225181','','','While few would describe the Hornet Mk II as understated, the sleek two-tone black and grey finish of the Blacksmith livery comes close.'), +(16006,'Seat','SeatAccess','UNDEFINED','48fd2e74-cabb-46cd-a404-9b68ee23c41d','','',NULL), +(16007,'Manned Turret','TurretBase','MannedTurret','b5001feb-f0b9-4857-843f-92a0da73f525','','',NULL), +(16008,'VNCL_Stinger_Thruster_Aux_Fixed_01_Top','ManneuverThruster','FixedThruster','c1088c5b-5cba-4ff2-ab87-1a7ea957ca2c','','',NULL), +(16009,'Manned Turret','TurretBase','MannedTurret','7de3c63f-a8ef-4d7b-8022-97e189d33449','','',NULL), +(16010,'Mountaintop Jacket Vivid','Char_Clothing_Torso_1','UNDEFINED','c4805592-13bf-4bb0-aecb-d197708f3d49','','','Temp. Rating: -20 / 10 °C\nCarrying Capacity: 1K µSCU\n\nThese insulated, water-resistant jackets are perfect for any jobsite where temperature can be a factor. The Mountaintop from DMC features secure pockets and is made with a vinyl-weave exterior, guaranteeing that rough environments won\'t compromise your warmth.\n\nWomen\'s sizes currently out of stock.'), +(16011,'UI_Flash_Screen','StatusScreen','AirlockPart','9e43f8ff-a242-4bc0-9ff1-c0db24521184','','',NULL), +(16012,'Davin Work Gloves','Char_Clothing_Hands','UNDEFINED','e2f1546d-04e1-4c5b-ad36-f995cf9df2f1','','',NULL), +(16013,'MISC_Starlancer_Drone_Seat','Seat','UNDEFINED','2375f001-b3eb-44b0-8757-1014833645a6','','',NULL), +(16014,'Seat','SeatAccess','UNDEFINED','ccc75fab-1725-4050-8a96-4ba38bda1692','','',NULL), +(16015,'RSI_Salvation_Thruster_Main_Large_Top_Right','MainThruster','FixedThruster','cbdd129b-731d-41f7-b486-cb9dc8c370f5','','',NULL), +(16016,'Weapon_Rack_AEGS_3slots','Usable','UNDEFINED','1daecb88-af2d-4b33-8107-5104396962da','','',NULL), +(16017,'Strata Backpack Shubin Edition','Armor','Backpack','96337cf5-d1b3-4b86-a086-09342d91f917','','','Item Type: Medium Backpack\nCarrying Capacity: 127.5K µSCU\nCore Compatibility: Medium & Heavy\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Shubin Edition was made specifically for the company.'), +(16018,'SCItemDisplayScreen','Display','Default','89508444-db7a-4f25-9abe-af3cfaa0893f','','',NULL), +(16019,'Door','AttachedPart','UNDEFINED','ebaeeea5-87e3-4fca-b7f2-cce5a00c83fb','','',NULL), +(16020,'MSD-111 Missile Rack','MissileLauncher','MissileRack','142e6235-9f9d-4e5a-b0c9-0a2338f70901','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 1\nMissiles: 1xS1\n\nBehring’s MSD-111 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 1 hardpoint for the reliable and effective launch of one S1 missile.'), +(16021,'Mivaldi Pants Grey','Char_Clothing_Legs','UNDEFINED','fc5a3d45-543e-4ece-9b45-88ff1422ce08','','','Carrying Capacity: 0.5K µSCU\n\nCut to a narrow fit, OpalSky\'s Mivaldi pants feature bold asymmetrical design with smart yet casual dual material styling, making it the perfect addition to any wardrobe.\n\nWomen\'s sizes currently out of stock.'), +(16022,'Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','60f7674e-cb5d-4a31-a424-16cac3a6b5c1','','','Live in comfort with MuyMuy\'s Davlos line of cotton-synthetic shirts. The durable, yet soft, fabric contains a patented SweatGuard technology that not only whisks away perspiration but helps prevent stains.'), +(16023,'Door','Door','UNDEFINED','f6df19c9-3ea6-4a43-a935-c411741b7555','','',NULL), +(16024,'Toughlife Boots Dark Green','Char_Clothing_Feet','UNDEFINED','6ff5cf07-4976-4bb8-8125-d3f1b6d69efc','','','Grindstone\'s done it again. The Toughlife is an all-purpose workboot designed to provide comfort, durability and quality. Featuring a reinforced composite toe and lasercut sole to maximize traction on all surfaces, Toughlife is sure to be your dependable boot, day in and day out.'), +(16025,'Door Control','Door','UNDEFINED','6351795e-a255-4fa7-b438-cc9fe70c6cd9','','',NULL), +(16026,'MISC_Fortune_Thruster_Retro','ManneuverThruster','FixedThruster','4dfc0928-160b-4d45-9eb3-9b99c15fb859','','',NULL), +(16027,'Seat','Usable','UNDEFINED','d8717f65-9639-41bd-a1c5-ff4eb52b5f98','','',NULL), +(16028,'Carryable_TBO_FL_4SCU_Commodity_ProcessedGoods_OrganHarvesting','Cargo','Cargo','76f25f9b-9ff6-40c1-8712-7adb3b0a3f28','','',NULL), +(16029,'Exodus-10 Laser Beam','Weapon','Gun','9fd3b3be-5653-413f-ba8f-0959a0adda89','','','Manufacturer: Hurston Dynamics\nType: Laser Beam\nSize: 10\n \nBuilt in conjunction with the engineers at Aegis, this bespoke laser beam weapon from Hurston Dynamics is highly accurate, giving the Idris-K a devastating weapon in its arsenal.'), +(16030,'test_station_power_plant','PowerPlant','Power','86f3b48e-d6af-4da5-845d-73c3446a36ee','','',NULL), +(16031,'BEHR_BallisticRepeater_Ventilation_S1','WeaponAttachment','Ventilation','92d32493-a96f-4e95-a30b-d026fa37021f','','',NULL), +(16032,'FarSight \"Landslide\" (8x Telescopic)','WeaponAttachment','IronSight','32eba44b-1373-4843-b797-d19f4d28b539','','','Manufacturer: VOLT\nType: Telescopic\nAttachment Point: Optic\nMagnification: 8x\nAim Time: +0%\nSize: 3\n\nDesigned for long distance precision shooting, the FarSight is carefully crafted to provide unparalleled fidelity of targets. VOLT\'s TruePicture lens technology provides high levels of light transmission, ensuring easy target acquisition and daylight illumination so you always get your mark.\n\nThe Landslide edition features an olive brown that compliments the natural metallic finish of the weapon.'), +(16033,'MXOX_NeutronRepeater_Ventilation_S3','WeaponAttachment','Ventilation','f053a264-c6c8-4383-8140-d8dc980583ea','','',NULL), +(16034,'Guardian Blackout Livery','Paints','UNDEFINED','40eac58a-df5e-4af9-815e-9c4a6acf0d39','','','Fly under the cover of darkness with the Blackout livery, coating the Guardian in a deep, matte black.'), +(16035,'Prota','Cargo','Cargo','edc6aea7-285d-4526-a18d-d8bbabb45265','','',NULL), +(16036,'lt_tank_gas_1_0125x0125x0125_a','Cargo','UNDEFINED','adac07db-10e5-4037-8d68-809e79eef592','','',NULL), +(16037,'ANVL_Paladin_Thruster_Retro','ManneuverThruster','UNDEFINED','b8b984b5-4d0c-43c0-96b2-8ecf2daec230','','',NULL), +(16038,'Carryable_1H_CY_subi_dain_sasu_s01_pl01','Misc','UNDEFINED','6ba6ad9e-c01f-46f2-bb66-eaa26e4c2859','','',NULL), +(16039,'AEGS_Reclaimer_Remote_Turret_Console','Seat','UNDEFINED','bb776ecb-7a55-4951-a0d8-4f90ac38e0cb','','',NULL), +(16040,'G-2 Helmet Woodland','Armor','Helmet','81471107-53e9-4978-9490-b242d5474f36','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. Visor is AR crosshair compatible.'), +(16041,'Oza','Cargo','Cargo','047b4989-d570-43fa-ad08-fc8296834e95','','',NULL), +(16042,'6MA \'Kozane\'','Shield','UNDEFINED','39424912-de99-46d1-87a6-0f59696ca60b','','','Item Type: Shield Generator\nManufacturer: Behring\nSize: 2\nGrade: B\nClass: Civilian\n\nBehring’s ironclad reputation is almost as impenetrable as the shield produced by the 6MA ‘Kozane’. If it’s good enough for Behring, it’s good enough for you.'), +(16043,'RSI_Aurora_CL_Thruster_Main','MainThruster','FixedThruster','ba33c2bb-e9aa-487a-8816-3b0174879418','','',NULL), +(16044,'Testudo Legs Nightveil','Armor','Legs','11bfd42b-929a-4e45-88d7-11aab92e6176','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4K µSCU\n\nThe Testudo armor for Quirinus Tech blends battlefield durability with everyday comfort. It weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort.'), +(16045,'Controller_CapacitorAssignment','CapacitorAssignmentController','UNDEFINED','0219b443-6f28-4aa2-bcc3-cfbff843729d','','',NULL), +(16046,'ORIG_M50_Thruster_Main','MainThruster','FixedThruster','aa68a399-e75d-4e7e-a1dc-6b5d7a047d61','','',NULL), +(16047,'Arden-SL Arms Crusader Edition','Armor','Arms','c12f1528-3c4e-4552-a8a2-2e4c42ffe594','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics. The Crusader Edition was made specifically for the company\'s security services.'), +(16048,'Seat','Usable','UNDEFINED','fff19031-a8da-407e-9759-80b8cb93b17b','','',NULL), +(16049,'sc_nvy_deckcrew_nogoggles_helmet_01_01_11','Char_Clothing_Hat','UNDEFINED','ab7f1ce4-32d5-4426-b384-b8ec8328426b','','',NULL), +(16050,'MISC_Razor_CML_Flare','WeaponDefensive','CountermeasureLauncher','28c543ea-8a76-4453-a762-37b4b29ab2c9','','','@LOC_PLACEHOLDER'), +(16051,'counter_kitchen_1_straight_01x01x01_a','Misc','UNDEFINED','19795bb5-8327-4f06-8a81-f00f00be6ef3','','',NULL), +(16052,'Geist Armor Helmet Desert','Armor','Helmet','1d79c531-1c44-40c8-872d-aa686b3b943c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(16053,'MISC_Starfarer_Gemini_Thruster_Retro_Derelict','ManneuverThruster','FixedThruster','9682c1f1-3dba-40a0-bc7a-a9f0417af9b3','','',NULL), +(16054,'RSI Default JetPack','Suit','ThrusterPack','0950406a-1361-4814-a9af-d695e46f8cea','','','<-=MISSING=->'), +(16055,'Railing_Straight_6m_LT_Delta_b','Usable','UNDEFINED','0177fc05-4d1c-401e-8f9a-b2b48bf7e8a9','','',NULL), +(16056,'Perseus Incite Livery','Paints','UNDEFINED','44aacee2-1c5d-40bd-bf73-b11c95e047b9','','','Proclaim the presence of the Perseus with the Incite livery, featuring a bold red front and grey and black rear.'), +(16057,'Monde Core Delta Camo','Armor','Torso','4b24e755-9cdf-45d4-86af-dcf52b081347','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12.0 µSCU\nBackpacks: All\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints.\n\nThis edition features a brown, gray, and tan camo pattern with brass accents.'), +(16058,'ORIG_890_Jump_Thruster_Mav_Fixed_2','ManneuverThruster','FixedThruster','67b305a0-1422-46cf-a709-692594e3cbac','','',NULL), +(16059,'Door','Door','UNDEFINED','192228e6-2ead-4a85-b9e4-45ff20a90cfd','','',NULL), +(16060,'RSI_Bengal_SCItem_Seat_Generic','Seat','UNDEFINED','f72b9bfb-4e00-42e2-8cef-dae6945ddc76','','',NULL), +(16061,'Plasma Fuel Cell','Cargo','Cargo','db3f2a2e-f599-4bea-95e8-fb16b3de44d1','','','A large plasma fuel cell developed for use in ASD facilities.'), +(16062,'Osoian Hides','Cargo','Cargo','062ce0e9-b39a-4266-b7d7-4e9682d88525','','',NULL), +(16063,'Plasma Battery','Cargo','Cargo','6df61bd2-2485-4c3a-a4cc-23e095d6339e','','','A small plasma battery developed for use in ASD facilities.'), +(16064,'Quartz (Raw)','Cargo','Cargo','ed4d01fe-f49b-47d1-a3b5-96d3d020b455','','',NULL), +(16065,'TrueDef-Pro Legs Black/Silver/Yellow','Armor','Legs','0c8ccdef-4636-4519-b1c8-906766274fff','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.\"'), +(16066,'Seat','SeatAccess','UNDEFINED','7207f5af-dc6a-4b5c-ae43-9461d723b8f0','','',NULL), +(16067,'Red Renew Smoothie','Drink','Bottle','3bf4cc6c-0170-4246-b278-9ee0005acd72','','','HEI: 39\nNDR: 15\nEffects: Immune Boosting\n\nGarcia\'s Greens Red Renew Smoothie is the perfect way to reset and promote a healthier you with it\'s anti-calcifying formula.'), +(16068,'Francis the Stormwal Plushie','Misc','UNDEFINED','25bfc3b1-0a9f-432d-bf20-5509b476739b','','','Francis the Stormwal loves sailing through the clouds in Crusader\'s atmosphere. Much like Crusader\'s ships, Francis is big, graceful, and quite the sight to behold. Now this majestic creature can accompany you on a journey through the stars with this soft and squeezable plushie.'), +(16069,'m_human_mannequin_base_armor_Collector_AaM','ShopDisplay','UNDEFINED','bbf8c9dc-5fc4-498c-9907-4576251a5658','','',NULL), +(16070,'Seat','Usable','UNDEFINED','38242533-3051-4f83-bea6-61b03c59f409','','',NULL), +(16071,'RSI_Apollo_EmergencyLights_Center','AttachedPart','UNDEFINED','7bd31d46-ad2e-40f9-890f-161d8f638673','','',NULL), +(16072,'RipTops Shoes','Char_Clothing_Feet','UNDEFINED','52c9cd37-feb3-4ec8-a6d5-254399d07dcf','','','Fun and funky. That was the directive NorthStar designers were given when tasked with creating a new sneaker. The result? NorthStar\'s RipTop line of all-purpose footwear. Mission accomplished.'), +(16073,'Apollo Delphi Livery','Paints','UNDEFINED','69960efa-0a33-4066-b038-85fafa550d95','','','The Delphi livery turns the Apollo black with shimmering gold highlights.'), +(16074,'Softshell Jacket','Char_Clothing_Torso_1','UNDEFINED','1e10eeee-49a8-45de-89c9-384919239d7b','','','Carrying Capacity: 3K µSCU\n\nPerfect for weathering any storm, Alejo Brothers\' Softshell poncho is built from multi-layered waterproof weave technology and features an extra wide size to keep your personal gear clear and dry without restricting your arm movement.'), +(16075,'AEGS_Javelin_SeatAccess_Rear_Right','SeatAccess','UNDEFINED','166c0572-05f3-4c7d-b382-d4783ae3dc72','','',NULL), +(16076,'Inquisitor Core Earthwork','Armor','Torso','b29853e7-3aa1-4de8-9429-d690f79fb646','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(16077,'Door Control','Door','UNDEFINED','efa9374e-90ff-4f52-af4a-387529625ef3','','',NULL), +(16078,'MPUV-1T Firebrand Livery','Paints','UNDEFINED','a359ca16-a3c7-4722-932a-4aeda069a514','','','Vibrant red and black, the Firebrand livery brings a bold look to the MPUV-1T.'), +(16079,'Vehicle_Screen_MFD_Holographic_Glaive_BL','Display','UNDEFINED','35c4b720-5639-4d81-a112-f0ac166608ea','','',NULL), +(16080,'Arbor MH1 Mining Laser','Mining','Gun','7a5a7439-15c6-4fae-ba64-788bb905af22','','','Manufacturer: Greycat Industrial\nItem Type: Mining Laser \nSize: 1\n\nOptimal Range: 60m\nMaximum Range: 180m\n\nMining Laser Power: 189 - 1890\nExtraction Laser Power: 1850\n\nModule Slots: 1\n\nLaser Instability: -35%\nOptimal Charge Window Size: +40%\nInert Material Level: -30%\n\nResistance: +25%\n\nThe Arbor MH1 became the universe\'s most heralded mining laser thanks to Greycat Industrial\'s exacting standards and business prowess. The laser found favor among industrial and solo operations for balancing speed and safety while also featuring a special filtration system that reduces the amount of inert material collected. Greycat capitalized on this reputation by securing exclusive contracts that made the Arbor MH1 the standard laser head on most mining ships.'), +(16081,'SHIELDS','ShieldController','UNDEFINED','ecf272ee-c782-4e50-ae85-d6b978181b32','','',NULL), +(16082,'Pambada Knife','Weapon','Knife','1ead23f2-70df-4a7b-8c67-39d6d10ff7f5','','','Manufacturer: Banu\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nHoned to a razor-fine edge, the Pambada knife has a wide range of applications. The serrated edge is great for cutting through soft and flexible materials like ropes or fabrics while the gut hook can be used to overcome materials with a tougher resistance. The sharpened angular point of the blade ensures the Pambada can still pierce, rounding out the weapon\'s versatile toolset. It is made with the same rust-resistant, ultra-sharp metal alloy found in other Banu knives and features an intricately detailed handle of distinctively Banu origin.'), +(16083,'PH - hdh_boots_01_01_13','Char_Clothing_Feet','UNDEFINED','d806c681-70ef-49b7-b7b9-80d1c0802617','','','Built to last, the Paradan boots from Habidash are simple, sturdy, and reliable. The outer layer of the boots is made from a thick synthetic material that will protect the wearer from water, sand, or snow, while the inside features a pliable foam that ensures the boots will remain comfortable for years to come.'), +(16084,'Door Control','ControlPanel','DoorPart','7811bb5b-840b-4e25-a66a-8cc5cba8b2d7','','',NULL), +(16085,'ORIG_85X_SCItem_Seat_Copilot','Seat','UNDEFINED','78ddb053-e53e-4c3c-b911-5e2cbb36d8bb','','',NULL), +(16086,'Idris_Crew_Qtrs_Locker_r','Player','UNDEFINED','024cda95-837a-428d-8e6d-962e285c3142','','',NULL), +(16087,'VariPuck S5 Gimbal Mount','Turret','GunTurret','67f0248b-c133-47f9-9806-a255d96195c5','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 5\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(16088,'Ready-Up Helmet Violet','Char_Clothing_Hat','UNDEFINED','8412c6ca-5c1e-4c4d-b7e5-c416dc7a73c8','','','The Ready-Up is a dependable, affordable softshell helmet alternative. Built from space-age plastic, the Ready-Up provides a vacuum-ready seal to keep you breathing for longer.'), +(16089,'DockingTube_Fuel_Ports_AEGS_Sentinel','DockingCollar','UNDEFINED','d2ad99a0-b111-4d01-a9dc-37215e7853ce','','',NULL), +(16090,'IAE 2954 Hat Purple','Char_Clothing_Hat','UNDEFINED','ccb2ffc8-0229-4f7e-a5fb-3f515c8df8d0','','','The official hat of the 2954 Intergalactic Aerospace Expo is a vibrant purple with the logo across the front.'), +(16091,'Aril Legs Red Alert','Armor','Legs','1025ad17-19a1-4e8f-b571-50c785f6dbb1','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(16092,'Marshal Sleeveless Vest','Char_Clothing_Torso_1','UNDEFINED','968334d4-0dc5-44d0-89df-63b73579dfb1','','','The durable Marshal sleeveless vest by Alejo Brothers is made to endure life on the frontier while distinct stylings like shoulder straps, bold cross-chest placket, and a high-collar make sure the wearer stands out on any far flung world.'), +(16093,'Carryable_TBO_FL_24SCU_Commodity_ProcessedGoods_Thrust','Cargo','Cargo','f3903682-b394-4466-9953-687b75556f46','','',NULL), +(16094,'ANVL_Hornet_F7_Mk2_Thruster_Retro_Left','ManneuverThruster','Retro','92d5bcd1-f769-4090-bbc6-594b2b979754','','',NULL), +(16095,'Tundra','Cooler','UNDEFINED','30ffee03-ee0a-47c5-9b4c-b24203c148d7','','','Item Type: Cooler\nManufacturer: Aegis Dynamics\nSize: 1\nGrade: D\nClass: Military\n\nConstructed by Aegis with military performance in mind, the Tundra’s reliable performance has made it a standard cooler of the UEE Navy.'), +(16096,'JOKR_DistortionCannon_FiringMechanism_S1','WeaponAttachment','FiringMechanism','08ee6c17-ad99-43f4-ba80-4089f40601ca','','',NULL), +(16097,'Weapon_Rack_1_VOLT_LMG_Uncommon_002','Usable','UNDEFINED','75408c94-25a8-4fb1-959a-1b16ae42da8a','','',NULL), +(16098,'Barrel_Attachment','WeaponAttachment','Barrel','38dc4dac-d7c2-4c1e-b142-07f987d77fb0','','',NULL), +(16099,'AImodule_ATC_NewBabbage','AIModule','UNDEFINED','b233a0e8-1f50-44d0-983f-d95bb090c5fe','','',NULL), +(16100,'DoorProximitySensor_3x5x3','Sensor','DoorPart','66951cf0-e39c-4ef4-878b-c613fbee0aab','','',NULL), +(16101,'Molina Ventilation Filters','Cargo','Cargo','13e5bd40-c16d-4194-9b36-4cbb6b010ee6','','','Special filters developed by Gyson to replace faulty units and purify the air of Molina Mold spores.'), +(16102,'Odyssey II Helmet Sienna','Armor','Helmet','44db8931-8c55-4206-b9f5-8d02686a8215','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(16103,'TRGT. STATUS','Seat','UNDEFINED','36dad667-cd8c-42da-b59f-99ea3f874a62','','',NULL), +(16104,'Drivetrain','WheeledController','UNDEFINED','accb5e60-f834-4ea3-8a56-93746749bd62','','',NULL), +(16105,'Cargo_Slot_Generic_1Slot','Usable','UNDEFINED','574f69c7-a9ab-4a9c-abf7-ea144e78ad0d','','',NULL), +(16106,'San\'tok.yai Yilen Livery','Paints','UNDEFINED','172c6e96-db0d-43f1-83c2-8f0c795a56d4','','','The shimmering iridescence of the Yilen livery delivers a distinct look for the San\'tok.yai.'), +(16107,'H_Dashboard_Projector_HUD_AEGS_Reclaimer','Display','UNDEFINED','eaa2e7c8-74b7-400f-a4f0-d54f7917a28e','','',NULL), +(16108,'Loscha Work Vest','Char_Clothing_Torso_1','UNDEFINED','45ef5db5-b81e-4a46-94b9-bca1c005545a','','','Carrying Capacity: 400 µSCU\n\nThe heavy-duty Loscha Work Vest by Alejo Brothers is designed for people who want to be prepared for anything at any time.'), +(16109,'GEO Resource Pod','Container','Cargo','d867b41f-23ad-44dc-b0ea-686d287b1f9a','','','Capacity: 10 cSCU\n\nLightweight yet durable, the GEO Resource Pod was constructed to extend the function of your ATLS by providing additional storage for mined ores as well as a convenient way to transport resources to their final destination.'), +(16110,'Clash Legs','Armor','Legs','63d3e62b-d7ce-4309-ac5a-a3577247e9bd','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -52 / 82 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.5K µSCU\n\nSometimes all you gotta do is put on the right piece of armor to make your message loud and clear. Clash armor first started popping up when the Dredge got strong-armed into mass-producing their armor and it\'s been scaring everyone stupid since. Now everybody\'s stealing it. Clash features a reinforced medium plating to get you a good balance of protection without giving up too much speed.'), +(16111,'Morozov-SH Legs Thule','Armor','Legs','91639417-38c9-44fb-8571-9cb15f2676ff','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5K µSCU\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(16112,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','05855de8-4996-43f5-954c-5262821828b7','','','Aegis Gladius - Decoy Launcher'), +(16113,'facial_hair_024','Char_Head_Beard','UNDEFINED','92b25f3c-740d-47ec-aae6-f2f20b2ecf68','','',NULL), +(16114,'Origin Black Queen','Gadget','UNDEFINED','cd0139eb-beac-4cf8-835f-d58a58cdc8da','','','Made exclusively for Origin Jumpworks and included with the 890 Jump, this black chess piece is a modern version of a classic set.'), +(16115,'Mercury','Cargo','Cargo','5e8e8597-d10d-488d-b676-e9d38c0369bf','','',NULL), +(16116,'RSI_Aurora_Mk2_Thruster_Main_Left','MainThruster','UNDEFINED','31250b18-bb62-4756-b98c-9b4bc748fd8f','','',NULL), +(16117,'ORIG_135c_Winglet_Right','Misc','UNDEFINED','4406a9b7-9513-43f3-acc5-0d91d06ad386','','',NULL), +(16118,'Rabum Hat','Char_Clothing_Hat','UNDEFINED','090f37ac-fbfd-4ba4-a55d-83a204f7c0db','','','Habidash\'s simple and stylish head covering provides warmth, along with protection from the elements and prying eyes. The Rabum is made from a synthetic extra-long cotton to be light, absorbent, and easily laundered.'), +(16119,'Ares Star Fighter Aspire Livery','Paints','UNDEFINED','147a6e09-5939-4461-aa37-60f55a82fd92','','','With the Aspire livery, blue and white combine to evoke both the colors and frigid temperatures of New Babbage. In honor of the landing zone that inspired it, the livery also features a depiction of the Aspire Grand building that dominates the city\'s skyline.'), +(16120,'ORIG_400i_Thruster_Mav_Side_R','ManneuverThruster','FlexThruster','bb11fd9c-369c-4d50-96f0-8f368273d7a1','','',NULL), +(16121,'Seat','SeatAccess','UNDEFINED','99997916-bb1f-4068-87ad-4b20ea2bf2e2','','',NULL), +(16122,'MASTER_tank_carryable_2h','Cargo','UNDEFINED','48ba865b-4e83-45ca-b08c-32bb7a42350f','','',NULL), +(16123,'ARMR_MISC_Hull_A','Armor','Medium','c9a721a3-c8b1-4e35-902b-86ef7e9421c7','','',NULL), +(16124,'Sturgis Jacket Original','Char_Clothing_Torso_1','UNDEFINED','c7ac5259-82b4-4bb4-b376-1f5566a7c078','','','Carrying Capacity: 1K µSCU\n\nA modern take on the iconic crash jacket, the Sturgis from City Lights stands out thanks to its asymmetrical main zipper and plethora of pockets, but its timeless design will keep you in style for years. \n\nWomen\'s sizes currently out of stock.'), +(16125,'Tritium','Cargo','Cargo','16be9e82-d5c9-4a7b-a512-13334c627b2f','','',NULL), +(16126,'Pingala Seeds','Cargo','Cargo','de90a7b4-47b8-4f70-83c1-b51ba2e52a27','','',NULL), +(16127,'Gale Head Cover Purple','Char_Clothing_Hat','UNDEFINED','4fde13d8-5baa-4383-b981-896138238e54','','','Temp. Rating: -30 / 15 °C\n\nProtect your head from the wind and cold with the Gale. Code Blue Apparel paired a wide-view visor with a dynamic synthetic fabric to create an excellent thermal barrier to keep heat from escaping without sacrificing your visibility.'), +(16128,'Bengal_BallisticCannon_PowerArray_S7','WeaponAttachment','PowerArray','02ae318b-de85-4ac1-bf81-266ea7f251d4','','',NULL), +(16129,'TrueDef-Pro Core Black/Silver/Green','Armor','Torso','a7e0b9c6-dabe-4052-bc51-241c057a9427','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(16130,'Door Control','Door','UNDEFINED','119d1b48-fc08-4280-bf29-4c09260ea10b','','',NULL), +(16131,'fruit_plant_MASTER','Misc','UNDEFINED','69a16ba2-831c-448e-87c9-b2b0501240ff','','',NULL), +(16132,'Internal Tank','FuelTank','Fuel','984336f9-3528-4421-9773-e572bc7603f2','','',NULL), +(16133,'DoorProximitySensor_2x1x1_3_Directional_Proximity','Sensor','DoorPart','edb59bb4-bc9f-4f45-add1-d7f6e11457ea','','',NULL), +(16134,'TRGT. STATUS','Seat','UNDEFINED','bab04778-167f-4ecf-84e6-e61cc8fb6e3f','','',NULL), +(16135,'Seat','Usable','UNDEFINED','ed2079f3-fc24-4de3-97fa-e0da417a7c89','','',NULL), +(16136,'Venture Arms Purple','Armor','Arms','9ba6da17-8e06-4471-9ae0-b0155ba50f74','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(16137,'Idris_Hangar_Locker_r','Player','UNDEFINED','486107ba-7f11-4e35-8605-f67b4e45a6f2','','',NULL), +(16138,'DRAK_Cutlass_Red_Thruster_Maneuver_Rear_Top','ManneuverThruster','JointThruster','f35796b6-bb2f-4e37-b387-276b1758264c','','',NULL), +(16139,'Door Control','ControlPanel','DoorPart','44d8eb70-5562-ba59-92e3-fdb65e6e11b6','','',NULL), +(16140,'Debnam Gloves Red','Char_Clothing_Hands','UNDEFINED','b60125c7-ce19-4f38-92d3-e39300642510','','','Named after the influential Terran tailor, Debnam gloves incorporate that famous tailor\'s classic design to keep your hands comfortable in colder temperatures.'), +(16141,'Seat','Usable','UNDEFINED','786bd4a9-ce31-43c4-955e-3ccfafefa32e','','',NULL), +(16142,'PAB-1 Core Dark Green','Armor','Torso','81074500-7427-4f31-b109-2d78405b64da','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(16143,'Karna \"Ascension\" Rifle','Weapon','Medium','ddda1704-45d6-4db8-8e66-4cbb588dfdbe','','','Manufacturer: Kastak Arms\nItem Type: Assault Rifle\nClass: Energy (Plasma)\n\nBattery Size: 35\nRate Of Fire: 500 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nThe Karna is a classic Kastak Arms plasma assault rifle. This mid-range mauler features charged and full-auto fire modes to allow for quick and easy situational adjustments. Besides its renowned firepower, the Karna\'s rugged looks and reliability have made it one of Kastak Arms\' most popular weapons. Designed in honor of IAE 2953, the Ascension edition has steel and copper accents inspired by Gatac Manufacture\'s Syulen.'), +(16144,'Vanduul S4 Quad Missile Rack','MissileLauncher','MissileRack','f924f436-3c09-48ac-8fe0-7a3d6425ab3a','','','Vanduul S4 Quad Missile Rack'), +(16145,'Cyclone Timberline Livery','Paints','UNDEFINED','3620c8f4-13ce-41a6-9045-95b53c80e639','','','Customize your Cyclone with the Timberline livery that\'s olive green with orange accents.'), +(16146,'Tuvic Outerwear Jacket Mil-Green','Char_Clothing_Torso_1','UNDEFINED','ba384045-842a-4a6f-9029-26b73c712d9f','','','Carrying Capacity: 2K µSCU\n\nAlejo Brothers have seamlessly blended functionality and style with the Tuvic line of outerwear. These rugged jackets feature reinforced leather padding to offer additional protection and support while still maintaining a modern aesthetic.\n\nWomen\'s sizes currently out of stock.'), +(16147,'Defiance Core Scorched','Armor','Torso','cfeabbfd-7a4b-4bdf-a24d-7cb752be03d8','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nIncorporating the same manufacturing know-how and expertise that the UEE Marines have come to rely on, Clark Defense Systems has designed their civilian-line of Defiance heavy armors to stand firm in the face of even the most adverse combat scenarios with its three-star rated protective plating and fully integrated mobility framework.'), +(16148,'Ventra Gloves White','Char_Clothing_Hands','UNDEFINED','0df281eb-15d8-48b8-861f-1c5e6e9f2f23','','','Keep your hands warm and dry with Fiore\'s Ventra gloves. Microstitching creates a snug, tailored fit to keep you looking stylish and warm.'), +(16149,'sc_nvy_pilot_light_helmet_01_01_01','Armor','Helmet','b9a7f42c-f73b-4f9e-bef0-0edb8a4e1c61','','',NULL), +(16150,'Seat','SeatAccess','UNDEFINED','44b3c3e4-6e82-4fc7-a8d5-306500963820','','',NULL), +(16151,'CorticoPen (Sterogen)','FPS_Consumable','Medical','354ec8a6-32eb-4747-8e75-03d2703edfd6','','','Manufacturer: CureLife\nItem Type: Medical Consumable\n\nFrom the Empire’s most trusted medical company, the CureLife CorticoPen can rapidly dispense doses of the corticosteroid Sterogen during emergency situations to help relieve symptoms associated with muscle weakness and respiratory damage. Use only as recommended.'), +(16152,'Citadel Arms Base','Armor','Arms','0609e473-5cf1-4637-8cbd-ad4f2aab0860','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure.'), +(16153,'Cargo_Slot_Prowler_Utility_3Slot','Usable','UNDEFINED','c5766868-d15c-4a65-bf04-a961ee4dd4e7','','',NULL), +(16154,'Prowler Polar Camo Livery','Paints','UNDEFINED','bc001bf6-fecb-4b0b-8d93-96c594b3025d','','','Modify your Prowler with this white and grey camo livery specifically designed for the 2950 IAE event on microTech.'), +(16155,'Door Control','ControlPanel','DoorPart','fd602626-ab3e-4fef-8fdc-3632fb752492','','',NULL), +(16156,'Carryable_1H_CY_drug_painkillers_2_c','Misc','UNDEFINED','11b68a37-6bd9-445f-982b-0d7ad04cb1ce','','',NULL), +(16157,'mobiGlas Woodland Casing','MobiGlas','Personal','b24283c2-abe5-45f8-82fa-6b6ec281eb8c','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(16158,'Parvat Jacket Autumn Amber','Char_Clothing_Torso_1','UNDEFINED','aa80fd9b-8209-4eb7-a84e-f328db6dff54','','','Carrying Capacity: 2K µSCU\n\nWeather the cold with this waterproof and insulated jacket from Escar Limited. Featuring a stylish design and unique dual-layer collar, the Parvat will keep you warm when you need it most.'), +(16159,'Snowfall','Cooler','UNDEFINED','f0429b13-6f0d-4ffb-9160-6ae0df03b5cb','','','Item Type: Cooler\nManufacturer: Juno Starwerk\nSize: 2\nGrade: B\nClass: Industrial\n\nFew things can be as damaging to your ship over time as excess heat build up. The Juno Starwerk Snowfall cooler helps ensure that your ship stays the right temperature for longer, which means that you can keep flying for longer.'), +(16160,'counter_display_mod_center_a_01x01x01_05Ports','ShopDisplay','UNDEFINED','e9f8eca4-4de7-4ef8-afb0-af289f862325','','',NULL), +(16161,'BEHR_BallisticRepeater_FiringMechanism_S3','WeaponAttachment','FiringMechanism','97c3b5cd-4056-4ffe-97f7-05178b45c7fa','','',NULL), +(16162,'stand_shop_large_b','ShopDisplay','UNDEFINED','234e95f8-4aa7-4bdb-b7cf-6c16ebaf1156','','',NULL), +(16163,'ADP-mk4 Core Justified','Armor','Torso','35f74a89-b98b-4683-bd15-72c0d98be5d8','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nBased on CDS\' ADP-mk4 heavy combat armor, this set has been modified from its original form. When there\'s a difficult job at hand, you want to ensure that you can see it through to the end. This armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers.'), +(16164,'Weapon_Rack_ANVL_Paladin_2_Slot','Usable','UNDEFINED','5b87488e-55fd-4fd2-b703-982ab89e68e4','','',NULL), +(16165,'300 Series Twotone Paint','Paints','UNDEFINED','283a9ecd-a0b7-47a5-9c08-3c90065e8edf','','','Twotone paint job for the Origin 325a.'), +(16166,'WorkLife Pants Tan','Char_Clothing_Legs','UNDEFINED','33e97c30-96f4-4572-bfde-68958c24c3c7','','','Carrying Capacity: 2K µSCU\n\nWith Stegman\'s, you know you\'re getting clothes made for workers, by workers. Featuring multiple external pockets with easy access tabs, WorkLife pants are rugged, functional and professional. Just like you.'), +(16167,'MacFlex Arms Green','Armor','Arms','0df7af45-cf29-4cb7-8749-b9b2d1ec07bd','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(16168,'Arrow TSB Flight Blade','FlightController','UNDEFINED','8969b443-ec80-42a1-8b53-42961fd342e9','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Anvil Arrow with the TSB Flight Blade from Broad & Rabiee. By re-allocating lateral thrust resources, you can expect your ship deliver increased top speeds in the straightaway.'), +(16169,'Door Control','Door','UNDEFINED','a6473369-a6e3-4f11-a348-0b5808ff3cb4','','',NULL), +(16170,'Omnisky VI Cannon','Weapon','Gun','1893e596-acaf-49bc-b367-e43e99c2925f','','','Manufacturer: Amon & Reese Co.\nItem Type: Laser Cannon\nSize: 2\n\nThe Omnisky VI is the mid-sized laser autocannon from manufacturer A&R. It boasts increased damage and range and power consumption over its smaller brother, the Omnisky III, and utilizes many of the same components resulting in middle-of-the-road power efficiency.'), +(16171,'Ventris Jumpsuit Crusader Edition Light Blue / Grey','Char_Clothing_Torso_1','UNDEFINED','9a078c94-8132-4403-96d6-b6b3a03fc309','','','Carrying Capacity: 1K µSCU\n\nThe Ventris is a sleek jumpsuit that mixes several rip and stain resistant polymer fabrics for a dynamic design. It also features a half-zip front and adjustable belt to ensure an ideal fit while the soft inner lining makes it an ideal choice for all day wear. The special Crusader Edition was made to be worn by employees of the company and features the sword and C logo on the front.'), +(16172,'IFR-810 Missile Rack','MissileLauncher','MissileRack','d5a0f8c8-a60b-43ac-8d2a-e71ce1ad47fa','','','Item Type: Missile Rack\nManufacturer: Aegis Dynamics\nSize: 8\nMissiles: 5x10\n\nDesigned to bolster the offensive capabilities of the Idris, this missile rack was made by Aegis Dynamics specifically for the famed frigate.'), +(16173,'Caret Pants Charcoal','Char_Clothing_Legs','UNDEFINED','1ad936cf-cb78-4e94-acd0-80d1c098aa6c','','','Carrying Capacity: 2K µSCU\n\nWith the fortitude of workwear and the comfort of khakis, the Caret pants are sure to become your standard go-to for tough jobs. Built with strong fabric and quality stitching so you can focus on what needs to be done.'), +(16174,'Ati Jacket Aqua','Char_Clothing_Torso_1','UNDEFINED','3518081c-9a6d-4549-8aad-9455fa433f6f','','','Carrying Capacity: 2K µSCU\n\nFiore\'s is a modern update of traditional Earth design. Slim tailoring, a high collar, and striking asymmetrical design make this overcoat a must-have item for any wardrobe.'), +(16175,'FBL-8a Core Desert Digital','Armor','Torso','e33e7860-2683-4aca-8fc8-269526986fae','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -32 / 62 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nCDS\'s quest to create the ideal light armor continues with the FBL-8a. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible.'), +(16176,'ORC-mkX Legs (XenoThreat v2)','Armor','Legs','7fde8c0e-cf97-4f01-8926-bf4915d9ae48','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nThis version of CDS\' ORC-mkX combat armor has been modified from its original form. The mark X is part of CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(16177,'Hornet Frostbite Camo Livery','Paints','UNDEFINED','5113545b-0df3-4c3f-89f8-a151fb024764','','','Soar like the winter winds with the Frostbite Camo livery for your Hornet.'), +(16178,'Relay','Relay','UNDEFINED','47caf4c8-108e-4cee-8ed6-c0a29618b8c5','','',NULL), +(16179,'Inquisitor Arms Brimstone','Armor','Arms','e22eaa6a-cbf9-4af4-8763-6b1da8a31cf7','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(16180,'PAB-1 Legs Orange','Armor','Legs','acb79b6d-ad70-40c7-918b-5ec9da00284a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(16181,'Citadel Core Brimstone','Armor','Torso','ffb96ae3-59f3-420e-acbc-fb255e9c43b7','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(16182,'Codi the Coramor Bear','Flair_Cockpit','Flair_Static','9ea281be-4a92-47c0-acc3-c128e1f742aa','','','Never fly alone with Codi the Coramor Bear. With adorable pink fur, tender faux-leather paws, and a soft belly full of love, Codi will make a faithful flight companion for your cockpit.'), +(16183,'Echo','QuantumDrive','UNDEFINED','85e4dfef-4a24-48ae-8e3f-0998fa1745ab','','','Item Type: Quantum Drive\nManufacturer: ArcCorp\nSize: 3\nGrade: D\nClass: Civilian\n\nArcCorp carefully crafted and calibrated the Echo into an affordable yet effective quantum drive.'), +(16184,'Orbital_Sentry_SCItem_SeatAccess','SeatAccess','UNDEFINED','b32424d8-f91a-4d59-8954-546e38f44a13','','',NULL), +(16185,'stand_shop_small_c_PowerPlant','ShopDisplay','UNDEFINED','25a04bcf-d708-407f-8e9b-c0c2e657d86d','','',NULL), +(16186,'ORIG_m50_RADR_Display','Display','UNDEFINED','2de11283-bd46-46d3-b09d-cf5c2d67244d','','',NULL), +(16187,'Counter_Shop_DumpersDepot','Usable','UNDEFINED','097aa30a-9071-4229-be82-aaad9f836491','','',NULL), +(16188,'glass_tumbler_1_a','Misc','UNDEFINED','159c6358-f4bf-4bb7-af93-ae2059fdfc45','','',NULL), +(16189,'SHIELDS','ShieldController','UNDEFINED','0ce70826-9857-4a90-afa1-14cdedc99c71','','',NULL), +(16190,'Carrack Purple Haze Livery','Paints','UNDEFINED','4fb82e81-e03a-410a-9dd5-750b12fdc589','','','Celebrate Day of the Vara in style with the Purple Haze livery, featuring a glimmering metallic purple base paint splattered in green.'), +(16191,'Polar','Cooler','UNDEFINED','9afd1cd3-ce6b-4b0a-abdd-cd7d479ec360','','','Item Type: Cooler\nManufacturer: Aegis Dynamics \nSize: 1\nGrade: B\nClass: Military\n\nBuilt to the high demands of daily military service, Aegis’ Polar cooler features a reinforced frame for increased durability. You can rest assured that when you drop into the fires of combat, the Polar will keep your ship cool.'), +(16192,'CNOU_Nomad_Component_Power','Door','UNDEFINED','84747f3b-23ad-4701-b30b-bfbc457df786','','',NULL), +(16193,'ORC-mkV Legs Desert','Armor','Legs','2d1af572-a455-444f-83c6-3ea3b8e729f2','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(16194,'INTK_ORIG_600i','FuelIntake','Fuel','9fc9fd57-3f6c-4c16-8e1f-cc60daab659f','','',NULL), +(16195,'Gadget_Cabinet_kegr_fire_extinguisher_01_NoRN_ground','Usable','UNDEFINED','672e5dd8-ecae-448e-bb61-16666ad0a135','','',NULL), +(16196,'Brush','Misc','UNDEFINED','7ca2ee1b-8c92-48e3-85a9-b4a4221e981a','','',NULL), +(16197,'Door','Door','UNDEFINED','e4da2709-0295-489c-898f-8424091b4a2f','','',NULL), +(16198,'Paladin Helmet Black/Gold/Red','Armor','Helmet','406ad266-472e-4d66-9c88-f744a347b7aa','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Paladin came out of Virgil\'s industrial division as a prototype helmet for salvage and repair operations. Yet its striking design so impressed company executives that they integrated it into their personal armor line. While the helmet\'s look stayed the same, Virgil reworked the design to use a combat rated, durable alloy for its distinct frame and reinforced the plating protecting the back of the head.'), +(16199,'GPI_Door_1slot','Relay','UNDEFINED','e2e68560-3400-49e7-bbc4-fa64bed71797','','',NULL), +(16200,'Seat','Usable','UNDEFINED','222c003b-82d6-4652-9a91-b1caf3bbc2ea','','',NULL), +(16201,'Test_OutpostMission_DataPad_KeyCode_4x3_Screen_0','Display','UNDEFINED','99eccce2-d2c0-43f8-a95d-b3d8e247079e','','',NULL), +(16202,'Falston Jumpsuit \"ITG Edition\"','Char_Clothing_Torso_1','UNDEFINED','2ec8cf8a-3e20-4b4b-9168-be5e8cfdae05','','','Carrying Capacity: 1K µSCU\n\nThe Falston jumpsuit has a high collar to guard against the elements, triple-reinforced stitching, and an extra soft interior lining because everyone deserves a bit of comfort.'), +(16203,'m_human_mannequin_base_armor_Collector_GG_Xanthule','ShopDisplay','UNDEFINED','863554c3-76a3-43be-900b-6f19d60a5c12','','',NULL), +(16204,'HRST_LaserScatterGun_FiringMechanism_S3','WeaponAttachment','FiringMechanism','d3edf817-cfe5-45bb-8c9c-4c7c02389970','','',NULL), +(16205,'Hangar_FreightElevator_CargoGrid_Large','CargoGrid','UNDEFINED','4ec7d758-58e1-499b-ae1d-2515127a63d6','','',NULL), +(16206,'RSI_Salvation_Thruster_Main_Small_Bottom_Right','MainThruster','FixedThruster','5c735096-ed8b-4ff4-9241-a06c34ea7577','','',NULL), +(16207,'box_plastic_1_005x005x005_a','Cargo','UNDEFINED','9ca93fc9-d983-4b89-86f1-19133283e3f4','','',NULL), +(16208,'CK13-GID Seed Blend','Cargo','Cargo','da0359df-66a8-4dba-a811-b13ff616cab5','','',NULL), +(16209,'JDRV_RSI_S04_Bengal_SCItem','JumpDrive','UNDEFINED','22127258-3fee-46f7-9ce6-97adb41a504f','','',NULL), +(16210,'Bed','Usable','UNDEFINED','f598580f-17c8-4cc6-92c2-da28293df3cb','','',NULL), +(16211,'Audio-Visual Equipment','Cargo','Cargo','531183c0-0859-4c47-832f-82796185ee3b','','',NULL), +(16212,'Manned Turret','TurretBase','MannedTurret','7cb7dafc-d9c8-40de-8dc6-8b85bc0c48a5','','',NULL), +(16213,'Seat','Usable','UNDEFINED','03aab3ec-03ac-4677-8f39-a70869229a97','','',NULL), +(16214,'AEGS_Avenger_PrisonPod_2','Usable','UNDEFINED','cf90eb69-fedf-4c08-a358-bc3008a88f91','','',NULL), +(16215,'MISC_Starlancer_Thruster_Main_Side','MainThruster','FixedThruster','5da86b22-a188-4a94-8d4f-bd4e07e78bdf','','',NULL), +(16216,'Bed','Usable','UNDEFINED','f10552f3-eaaa-455a-b51a-0cae0c9f397e','','',NULL), +(16217,'Salvo Saeed Frag Pistol','Weapon','Small','7c15996f-cbe1-4328-91d3-d540e267df0c','','','Manufacturer: Hedeby Gunworks\nItem Type: Frag Pistol\nClass: Ballistic\n\nMagazine Size: 8\nRate Of Fire: 140 rpm\nEffective Range: 80 m / 10 m (Charged)\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nWhile the Salvo can be used as a normal pistol, Hedeby didn\'t stop there. With a longer trigger pull, a freezing primer is injected into the chamber and when released, the heavy firing pin hits with enough force to pulverize the supercooled casing. Accidentally developed as an attempt to mitigate overheating, this charged fire option discharges a deadly spray of high-velocity fragments followed by an ear-shattering boom. This special edition pistol features beautifully detailed scrollwork personally design by Hedeby master gunsmith Keisha Saeed.'), +(16218,'AEGS_Door_Decal_Bridge','Decal','DoorPart','9179e103-90dd-43af-a151-3023b97cb4f5','','',NULL), +(16219,'TRGT. STATUS','Seat','UNDEFINED','ec5ab4f8-3b78-42c1-8a3f-4dca9c9d732b','','',NULL), +(16220,'H_Dashboard_Projector_HUD_MRAI_Guardian','Display','UNDEFINED','a3244b1a-42ac-42e7-a935-3510b5818262','','',NULL), +(16221,'Seat','Usable','UNDEFINED','616d234c-02b2-46fe-8523-a60b38bf414d','','',NULL), +(16222,'Door','Door','UNDEFINED','e9733966-8d7a-4df1-bbc1-f4e3635398e2','','',NULL), +(16223,'MISC Reliant - Noise Launcher','WeaponDefensive','CountermeasureLauncher','bc3d4482-49d1-4767-af8e-948a8b50f881','','','MISC Reliant - Noise Launcher'), +(16224,'Tempo Jacket Frost','Char_Clothing_Torso_1','UNDEFINED','9b7fb756-93c9-4626-bebd-31f0005dd370','','','Carrying Capacity: 1K µSCU\n\nFashionable, fun and flashy, the Tempo is a quilt studded jacket featuring a unique metallic finish to make you stand out from the crowd. 987 balanced this bold design with sections of synthetic leather and complementary colors ringing the waistband and inner collar.'), +(16225,'RSI_Salvation_Thruster_Mav_Joint_Top','ManneuverThruster','JointThruster','8cf0cf70-7f15-4f6d-8dc5-349aaee3d4b9','','',NULL), +(16226,'DRAK_Cutlass_Blue_Thruster_Maneuver_Front_Bot','ManneuverThruster','JointThruster','0240384a-8c27-41c3-9b99-1968b990bf3c','','',NULL), +(16227,'DRAK_Dragonfly_CML_Flare','WeaponDefensive','CountermeasureLauncher','a20b7fe6-3692-4dff-bf99-4450ab46a651','','','@LOC_PLACEHOLDER'), +(16228,'H_Dashboard_Projector_HUD_RSI_Meteor','Display','UNDEFINED','bdf0ac0d-be31-4d01-a0e0-870cc0eec6b7','','',NULL), +(16229,'Manned Turret','TurretBase','MannedTurret','86f38013-a16c-4dc8-bfcc-e850b8b8b4c8','','',NULL), +(16230,'Thrust','Cargo','Cargo','05ba7bff-b67e-4bb1-9c64-0d3827388275','','',NULL), +(16231,'RSI_Salvation_Thruster_Mav_Joint_Bottom','ManneuverThruster','JointThruster','4f0b9407-5971-4715-9b9f-6691ba394f35','','',NULL), +(16232,'ADP Arms Platinum','Armor','Arms','18f7c6d8-c003-4ada-b272-4526017f08ac','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(16233,'Arrowhead \"Boneyard\" Sniper Rifle','Weapon','Medium','4d8016a5-fee2-4dc1-a63a-4bb0d2dcd619','','','Manufacturer: Klaus & Werner\nItem Type: Sniper Rifle\nClass: Energy (Laser)\n\nBattery Size: 20\nRate Of Fire: 50 rpm\nEffective Range: 100 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nKlaus & Werner’s Arrowhead Model VI long-range energy rifle features a fiberglass composite body capable of withstanding any number of rigorous environments both in atmosphere and out. Built with a precision stock, compound scope and built-in bipod, the Arrowhead offers a stable and devastating weapon for operators who want to keep their distance, but stay in the fight.'), +(16234,'Morozov-SH Legs Spitfire','Armor','Legs','7b83f247-9716-4932-9fcd-0365f05dc923','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5K µSCU\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(16235,'Door Control','Door','UNDEFINED','28e7a504-efe3-4d66-bc99-b3ab2d530a9a','','',NULL), +(16236,'Diamond (Raw)','Cargo','Cargo','4508dd30-4810-4ee0-933d-71f9b30e20a3','','',NULL), +(16237,'Ares Star Fighter Celestial Blue Livery','Paints','UNDEFINED','d8ceef63-559d-4011-9a31-0993e2095d64','','','A beautiful light blue base and grey highlights makes the Celestial Blue livery a stunning choice for the Ares Star Fighter.'), +(16238,'ORIG_400i_CargoGrid','CargoGrid','UNDEFINED','d41c05ce-923a-4179-b412-a048375751c1','','',NULL), +(16239,'ORC-mkX Core Desert','Armor','Torso','eeee907e-c697-49f3-9308-e916a7209975','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(16240,'Parasite Replica Helmet','Armor','Helmet','afae5b5c-2b3c-48e2-90eb-e9ad2447656a','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThe original Parasite vid established a new face of fear and terrified the Empire. This iconic look can now be yours with the Parasite Replica helmet from CC\'s Conversions. Digital scans of the original prop helped to reproduce every gruesome detail. Despite its distinct design, the Parasite Replica helmet is space-rated and fully functional. It can be safely worn both in and out of atmosphere, or wherever you\'re looking to scare someone.'), +(16241,'volume_jacket_01','Armor','Undersuit','e8f13431-7767-471a-860e-0b8828ec54f9','','','@LOC_PLACEHOLDER'), +(16242,'RSI_Constellation_Fake_Archimedes','Container','UNDEFINED','53ac323d-a972-4b3b-b9a2-c7d0eec4eeb3','','',NULL), +(16243,'Kino Shoes Blue','Char_Clothing_Feet','UNDEFINED','bd59d65a-35af-45fc-b4f5-70af925537ec','','','These two-tone slip-on shoes are comfortable enough for casual wear, but stylish enough for the workplace.'), +(16244,'Sarilus','Cargo','Cargo','a9414e01-4f3a-4b7e-bbc4-9fae96e27b39','','',NULL), +(16245,'Seat','SeatAccess','UNDEFINED','7ebdd86a-6882-40a9-8ee1-266eb4832a87','','',NULL), +(16246,'DRAK_Caterpillar_Thruster_Mav_Fixed_Bottom','ManneuverThruster','FixedThruster','91ed96f9-e307-4655-abe1-a3eb3d38165c','','',NULL), +(16247,'Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','7285495d-e1f3-44f0-9947-5d7f4d1203b4','','','Live in comfort with MuyMuy\'s Davlos line of cotton-synthetic shirts. The durable, yet soft, fabric contains a patented SweatGuard technology that not only whisks away perspiration but helps prevent stains.'), +(16248,'Eclipse T-Shirt','Char_Clothing_Torso_0','UNDEFINED','418ddc06-7081-4236-9c6f-dbe157db2fa3','','','An Eclipse silhouetted against a planet is a rare sight, considering that this high-tech, stealth bomber is notorious for striking targets before it\'s even spotted. After years of military service, Aegis Dynamics, whose logo appears the back of the t-shirt, brought the ship to the civilian market in 2947 to rave review and stellar sales.'), +(16249,'RSI_Polaris_SeatAccess_Torpedo_Console','SeatAccess','UNDEFINED','e9c3197d-df66-44e4-a2f9-a05a709dbf9a','','',NULL), +(16250,'FSK-8 Combat Knife','Weapon','Knife','04e84f78-fc3d-4d7e-a678-25e463bfde4f','','','Manufacturer: UltiFlex\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nThe FSK-8 Combat Knife from UltiFlex is as sparse a weapon as you can get. While many become enamored with dazzling tech of modern weaponry, UltiFlex has focused on making a simple effective combat tool. Featuring a balanced 1055 carbon steel blade honed to a razor\'s edge, this knife is capable of handling all the abuse you can throw at it.'), +(16251,'Door Control','Door','UNDEFINED','97376618-5d6a-4d50-b7c8-78459b8cc811','','',NULL), +(16252,'Remote Turret','Turret','GunTurret','92042a64-7ca7-4f1c-bcfd-653a66ecb3c6','','','Remote Turret'), +(16253,'Seat','SeatAccess','UNDEFINED','1dcd9133-4e7a-4d4d-856a-6fa6485fcedf','','',NULL), +(16254,'Arrow Lovestruck Livery','Paints','UNDEFINED','54acd11a-d968-4a09-a367-22cbfd91e5ba','','','Inspired by the colors of Coramor, the Lovestruck livery is a stylish metallic pink and black look for your Arrow.'), +(16255,'RSI Default JetPack','Suit','ThrusterPack','b5944453-9904-4cb9-8e38-9b6ba3a8aaad','','','<-=MISSING=->'), +(16256,'Mivaldi Pants','Char_Clothing_Legs','UNDEFINED','129dc3f2-f047-4eb9-a2bd-d556c70bed49','','','Carrying Capacity: 0.5K µSCU\n\nCut to a narrow fit, OpalSky\'s Mivaldi pants feature bold asymmetrical design with smart yet casual dual material styling, making it the perfect addition to any wardrobe.\n\nWomen\'s sizes currently out of stock.'), +(16257,'P-52 Merlin Deck the Hull Livery','Paints','UNDEFINED','272eb5f9-dc9d-42ee-ba47-f166d34fdf36','','','Express your holiday spirit with the Deck the Hull livery, which uses the traditional Luminalia colors of green and red to celebrate the popular Banu festival that\'s become beloved by Humans.'), +(16258,'Door Control','ControlPanel','DoorPart','bf23030e-f6f1-4c15-80d0-3cb6f19d31ac','','',NULL), +(16259,'Palatino Backpack Daystar','Armor','Backpack','e0ea0ccd-736b-47ef-a57e-6bca61e8e1e1','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. The associated backpack seamlessly integrates into the armor, matching its silhouette while also providing ample storage.'), +(16260,'BEHR_LaserCannon_Ventilation_S6','WeaponAttachment','Ventilation','a0a5f0c0-5821-48cb-aa7d-2da131bb036a','','',NULL), +(16261,'Venture Core Voyager','Armor','Torso','7b90e368-1c39-4d9e-b50e-047af9d338d6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRobert Space Industries’ Venture Explorer Suit provides exceptional protection against the dangers of space. Designed for those who don\'t know where their next adventure might go, the suit combines comfort and safety without sacrificing mobility. The special Voyager edition features a red and black color scheme with white highlights. The result is a stylish suit that looks as good as it performs.'), +(16262,'Cardona Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','8b8d7a88-96b4-49fd-b135-5532c72f8ee0','','','Carrying Capacity: 1K µSCU\n\nDMC’s Cardona is a utility jacket designed for performance in cold weather environments. Featuring a high collar for better wind protection and numerous pockets to store any survival essentials.'), +(16263,'Corsair Plushie','Misc','Personal','e326628e-c328-4d4f-aa18-e345a0733d5e','','','This soft plushie is modeled after the Drake Interplanetary Corsair, a versatile explorer able to go wherever the winds of adventure steer you.'), +(16264,'Weapon Rack','Usable','UNDEFINED','46ac5908-a49c-88df-cd03-ce11d16970b7','','',NULL), +(16265,'counter_components_center_a_01x01x01','ShopDisplay','UNDEFINED','5101d9f2-9ef5-492a-8189-6f026c1f9884','','',NULL), +(16266,'SHIELDS','ShieldController','UNDEFINED','5a906730-1e70-4c66-863a-9583eed743b7','','',NULL), +(16267,'BEHR_BallisticRepeater_Ventilation_S2','WeaponAttachment','Ventilation','ff2f2625-29ee-407c-aa28-1bb9550f6df2','','',NULL), +(16268,'FarSight \"Thunderstrike\" (8x Telescopic)','WeaponAttachment','IronSight','4df44fd1-acd3-4bb4-bc56-eee0cccc4834','','','Manufacturer: VOLT\nType: Telescopic\nAttachment Point: Optic\nMagnification: 8x\nAim Time: +0%\nSize: 3\n\nDesigned for long distance precision shooting, the FarSight is carefully crafted to provide unparalleled fidelity of targets. VOLT\'s TruePicture lens technology provides high levels of light transmission, ensuring easy target acquisition and daylight illumination so you always get your mark.\n\nThe deep gray of the Thunderstrike edition emphasizes the weighty feel of the rifle.'), +(16269,'Door Control','Door','UNDEFINED','c5b04d55-737c-44e9-8782-0a7a9ba46d4b','','',NULL), +(16270,'Seat','SeatAccess','UNDEFINED','494be5fa-8bd6-4bba-a921-a97114d5ccce','','',NULL), +(16271,'Caterpillar Hurston Livery','Paints','UNDEFINED','242d261c-f9c9-46b3-a202-01c33c9d16e6','','','The Hurston livery for the Caterpillar features the company\'s logo atop a grey base paint with yellow highlights.'), +(16272,'MacFlex Core Purple','Armor','Torso','f5315c17-f676-43ec-ad86-e46240d1a5c6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(16273,'Oracle Helmet Bloodstorm','Armor','Helmet','aaef023e-9f0a-48c3-a8b7-cc8c02e124a9','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(16274,'AEGS_Idris_SCItem_Seat_CoPilot_Crashed','Seat','UNDEFINED','6cccd03f-06f2-4c15-9941-31a314812480','','',NULL), +(16275,'MISC_Freelancer_Base_SCItem_Seat_Esc_Pod_Lower_Right','Seat','UNDEFINED','9d9d4d27-dcb5-4b30-8783-0c6816e432c4','','',NULL), +(16276,'DockingTube_Fuel_Ports_RSI_Meteor','DockingCollar','UNDEFINED','dc9ed453-6c69-44b1-a0a1-d9e8b63a7653','','',NULL), +(16277,'RSI_Aurora_GS_LX_Thruster_Retro','MainThruster','FixedThruster','601a8fce-c831-4c19-b4e9-6672341a6a7c','','',NULL), +(16278,'Weapon_Rack_1_NONE_Special_Ballistic_Uncommon_003','Usable','UNDEFINED','f362e560-fd5d-43c1-bc09-cb2badcec84c','','',NULL), +(16279,'Vehicle_Screen_MFD','Display','UNDEFINED','c08cedfa-fafc-4ea6-9737-59faeb4b1510','','',NULL), +(16280,'Expo_shelf_hat_02x01x01_03Ports','ShopDisplay','Default','a3e0d739-cb65-43bb-9d62-dd96ad22f2c1','','',NULL), +(16281,'ANVL_Paladin_Thruster_Flaps','AttachedPart','UNDEFINED','3e2994d0-cabb-4b68-9988-03dcbeebb59d','','',NULL), +(16282,'Human Food Bars','Cargo','Cargo','76651abc-35d8-420d-96bd-4ae246972cf4','','',NULL), +(16283,'ORIG_600i_TV','Door','UNDEFINED','6edc92e9-fe85-4f19-bb9f-d14d74eedb5f','','',NULL), +(16284,'Carrack Stormbringer Livery','Paints','UNDEFINED','6f6735fd-a1fb-41d1-a98d-8e26f51f53ab','','','Celebrate the 2951 IAE with this custom Carrack livery. Blending blue and black with white accents, the paint scheme gives the ship an electric new look.'), +(16285,'Radar_Display_ORIG_300','Display','UNDEFINED','ff638271-f0ac-46a8-a9cd-3389958978e6','','',NULL), +(16286,'Door Control','Door','UNDEFINED','f2a75012-e661-443d-be25-c9a667043c40','','',NULL), +(16287,'Table_Bench_6_MISC_Starfarer_Gemini','Usable','UNDEFINED','3cad4f2d-26de-4fc9-a4a9-71d672c44f88','','',NULL), +(16288,'Paint_Idris_Ninetails','Paints','UNDEFINED','a73b93c6-892c-424e-9832-77919acd5446','','',NULL), +(16289,'Jaclium (Ore)','Cargo','Cargo','51e840e4-6b02-42bd-be46-af9a23a1ed4e','','','A naturally occurring rare metal form of jahlium, it is used in the production of extremely strong alloys with incredible tensile strength. Originally confused with common jahlium when first discovered, the above average results when used lead to researchers to realize its value.'), +(16290,'Bed_Mattress_DRAK_Cutter','Seat','UNDEFINED','b949c2cd-61d5-4f49-9184-58f909cf5be1','','',NULL), +(16291,'Davlos Shirt Charcoal','Char_Clothing_Torso_0','UNDEFINED','2811ce36-139a-4d81-a38d-6867f159e8e7','','','Live in comfort with MuyMuy\'s Davlos line of cotton-synthetic shirts. The durable, yet soft, fabric contains a patented SweatGuard technology that not only whisks away perspiration but helps prevent stains.'), +(16292,'INTK_ORIG_100i','FuelIntake','Fuel','ebf3f2f8-f685-4af2-aeb6-bd09e2285ec6','','',NULL), +(16293,'MedGel','Cargo','Cargo','691a128d-a756-4944-ad87-57522e5aeb10','','',NULL), +(16294,'DRAK_Herald_Thruster_Mav_Fixed_Bottom','ManneuverThruster','FixedThruster','65ecdb8e-c0c0-469b-938d-0e5203ae2c1f','','',NULL), +(16295,'Gadget_Cabinet_kegr_fire_extinguisher_01_hightech_med_high','Usable','UNDEFINED','a5716e97-560d-4f8a-b776-e213985ac253','','',NULL), +(16296,'Toughlife Boots Black','Char_Clothing_Feet','UNDEFINED','72f0bcb6-ff7f-4f77-a6ba-b6a817d1729f','','','Grindstone\'s done it again. The Toughlife is an all-purpose workboot designed to provide comfort, durability and quality. Featuring a reinforced composite toe and lasercut sole to maximize traction on all surfaces, Toughlife is sure to be your dependable boot, day in and day out.'), +(16297,'AEGS_Vanguard_Thruster_Main_02','MainThruster','FixedThruster','6359df14-70d4-4dc8-af91-0207b0e0ba28','','',NULL), +(16298,'Wrecker Arms Payback','Armor','Arms','7af65cb5-ac70-496d-9995-3af1ebaddae1','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFavored by the most brutal of hunters, the Wrecker armor is a fusion of discarded metal and pilfered fabric cobbled together to offer protection while stalking prey.\n\nThe Payback version is sprayed with red paint and anointed with bone fragments and Vanduul armor pieces.'), +(16299,'Construction Salvage','Cargo','Cargo','36eb3010-23f9-4029-9cb9-52d55b57734d','','','Can be processed at refineries into Construction Material.'), +(16300,'Cliffback T-Shirt Tan','Char_Clothing_Torso_0','UNDEFINED','d4b19973-810d-4453-ae07-877d7c7ca672','','','Alejo Brothers\' classic loop tee with a spatter pattern.'), +(16301,'Ardent Boots Dark Green','Char_Clothing_Feet','UNDEFINED','d5a7ee44-dc9d-46ec-8744-95fc20adf9f1','','','Who says NorthStar can\'t keep it pro? The Ardent boot features a molded rubber sole and all-weather construction to withstand a constant battery from the elements.\n\nWomen\'s sizes currently out of stock.'), +(16302,'Siren','QuantumDrive','UNDEFINED','95a43815-970e-4a70-87df-0658c32495d8','','','Item Type: Quantum Drive\nManufacturer: Wei-Tek \nSize: 1\nGrade: B\nClass: Military\n\nRecent changes by Wei-Tek to the alloys used in the Siren have improved its performance without sacrificing durability, making it a respectable military-grade quantum drive.'), +(16303,'RCMBNT-XTL-3','InventoryContainer','Cargo','1b4efba7-c395-4c46-b2e5-ebeae4961f24','','','An imprint recombinant sample created from CTLST-XTL and REAGENT-03 as part of Dr. Logan Jorrit\'s Project Hyperion experiment.'), +(16304,'FSK-8 \"Bloodline\" Combat Knife ','Weapon','Knife','9b3ca883-cb09-4124-88af-8e767ca18249','','','Manufacturer: UltiFlex\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nThe FSK-8 Combat Knife from UltiFlex is as sparse a weapon as you can get. While many become enamored with dazzling tech of modern weaponry, UltiFlex has focused on making a simple effective combat tool. Featuring a balanced 1055 carbon steel blade honed to a razor\'s edge, this knife is capable of handling all the abuse you can throw at it.'), +(16305,'Audio-Visual Equipment','Cargo','Cargo','14cafc40-4ee4-41c6-bda8-c9e26edca389','','',NULL), +(16306,'TRGT. STATUS','Seat','UNDEFINED','dceb7d31-a847-4903-981a-645ad1ceebf2','','',NULL), +(16307,'Tuvic Outerwear Jacket Ash','Char_Clothing_Torso_1','UNDEFINED','7e8d18e6-9636-48f5-b492-796702a213d7','','','Carrying Capacity: 2K µSCU\n\nAlejo Brothers have seamlessly blended functionality and style with the Tuvic line of outerwear. These rugged jackets feature reinforced leather padding to offer additional protection and support while still maintaining a modern aesthetic.\n\nWomen\'s sizes currently out of stock.'), +(16308,'Haruspec Goggles (Modified)','Char_Accessory_Eyes','UNDEFINED','a5875f59-acb5-40ed-9d1d-2dcd26c1c55d','','','This version of Stegman\'s Haruspec goggles has been modified from its original form. Supremely comfortable yet light as a feather, the Haruspec goggles also provide excellent protection against the elements thanks to their sturdy side shields. Stegman\'s fitted the goggles with polycarbonate performance lenses and a special slip-resistant nose pad to ensure they stay in place.'), +(16309,'Sarilus','Cargo','Cargo','ba271a13-765b-4f9e-b646-db2678a79d13','','',NULL), +(16310,'Lawson Mining Laser','Mining','Gun','40bd6a85-5695-409c-9d6c-ae1babde416a','','','Manufacturer: Argo Astronautics\nItem Type: Mining Laser\nSize: S0\nGrade: C\n \nOptimal Range: 25 m\nMaximum Range: 25 m\nGather Radius: 1 m\nExtraction Throughput: 4 cSCU/s\n \nPower Transfer: 35\n \nInstability: +30 %\nResistance: -40 %\nOptimal Charge Window Size: +40 %\nOptimal Charge Window Rate: 0%\nThrottle min: 20%\n\nThe Lawson mining laser was developed by Argo Astronautics and specifically tuned for the ATLS GEO to make mining resources from the power suit as intuitive as possible.'), +(16311,'Cliffback T-Shirt Violet','Char_Clothing_Torso_0','UNDEFINED','50d7c496-4ef4-4e85-bef8-61d095288b1f','','','Alejo Brothers\' classic loop tee with a spatter pattern.'), +(16312,'Weapon_Rack_4_Slot_GLSN_Shiv','Usable','UNDEFINED','140fe1e1-3d4d-4506-8a2f-987518bdd0b9','','',NULL), +(16313,'Waste','Cargo','Small','4069cad8-66c2-47c2-94f5-5864e3f7b297','','','Rock'), +(16314,'SHIELDS','ShieldController','UNDEFINED','fdd6cc02-1265-4b82-b8aa-1734b4e468d2','','',NULL), +(16315,'Gadget_Cabinet_kegr_fire_extinguisher_01_NoRN_med_low','Usable','UNDEFINED','b52cc850-669c-4f74-8986-3180c673a10b','','',NULL), +(16316,'Ready-Up Helmet','Char_Clothing_Hat','UNDEFINED','e72aea96-9bdf-4275-b838-2d75bbba7f65','','','The Ready-Up is a dependable, affordable softshell helmet alternative. Built from space-age plastic, the Ready-Up provides a vacuum-ready seal to keep you breathing for longer.'), +(16317,'Reliant Cernan Camera Package','Turret','GunTurret','0de812e9-3003-4d7d-858c-51d16cfdb0de','','','Item Type: Camera Package\nManufacturer: MISC\nSize: 4\n\nCapture heart-pounding action and the splendor of the stars with the Cernan camera package. Standard to the Reliant Mako, this state-of-the-art image enhancement suite is popular among news crews across the universe.'), +(16318,'Weapon Rack','Usable','UNDEFINED','e2f6cd61-1dbb-4fab-ae3d-a1ce702c7961','','',NULL), +(16319,'fruit_plant_1_a_3002','Misc','UNDEFINED','f26530ae-b470-4543-88fb-1f9763abefc5','','',NULL), +(16320,'fruit_plant_1_a_2002','Misc','UNDEFINED','85d65ed7-f1c2-4e47-8876-fbf8cf2cdf0b','','',NULL), +(16321,'fruit_plant_1_a_5002','Misc','UNDEFINED','66d7b50b-0645-46c8-93ce-54c9500329cd','','',NULL), +(16322,'fruit_plant_1_a_4002','Misc','UNDEFINED','69974ab5-c529-43fe-8f9b-d228b57f66a2','','',NULL), +(16323,'mobiGlas Aqua Casing','MobiGlas','Personal','584deb26-84e0-4892-b65d-bce6b2cd4d63','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(16324,'AEGS_Sabre_Thruster_Mav_Joint_01','ManneuverThruster','JointThruster','4e53111a-5df5-486d-bb98-b1dd7e20fdde','','',NULL), +(16325,'fruit_plant_1_a_6002','Misc','UNDEFINED','a0dffc5f-0f6a-4745-8bc1-5d100aafc010','','',NULL), +(16326,'Dragonfly Yellowjacket Livery','Paints','UNDEFINED','fdc2ae04-54e4-49ab-b5a5-656bf4be1488','','','Base livery for the Dragonfly Yellowjacket.'), +(16327,'MOTH Lovestruck Livery','Paints','UNDEFINED','662b2d7e-7939-43b5-b3b4-6c2cf59daa24','','','Inspired by the colors of Coramor, the Lovestruck livery is a stylish iridescent pink and black look for your MOTH.'), +(16328,'Carrion Helmet Payback','Armor','Helmet','a721b478-2936-4af7-b1ed-f8204532b42c','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nForged from scavenged metals and ragged clothes, the Carrion armor is a crude concoction of repurposed materials that demonstrates you\'ll do anything it takes to survive. The helmet has a high comb of iron bars and an opaque faceplate that allows the wearer to see clearly while obscuring their visage.\n\nThe Payback version is sprayed with red paint and anointed with bone fragments.'), +(16329,'Predator Scattergun','Weapon','Gun','fac5a97f-64bf-450e-a2f2-90e4da5ccf73','','','Manufacturer: Apocalypse Arms\nItem Type: Ballistic Scattergun\nSize: 3\n\nThe Predator scattergun preys upon nearby opponents with an overwhelming barrage of ballistic ammo. The size three version of Apocalypse Arms\' feared scattergun trades effective range for a wide spread.'), +(16330,'Partillium','Cargo','Cargo','8cbc82ee-6bd0-44d0-9ec7-3669e56a3968','','',NULL), +(16331,'Personal Storage','Cargo','UNDEFINED','d7b428b7-a19c-41bd-8487-6411eaa37d36','','',NULL), +(16332,'Pembroke Backpack RSI Graphite Edition','Armor','Backpack','c1b15afb-991e-41d5-86ef-2f4772fa06ca','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nDesigned to extend the limits of Human endurance, the Pembroke RSI Edition was built to withstand the extreme heat of inhospitable high temperature environments. Based off of Caldera\'s best-in-class exploration armor platform, an advanced sensor suite intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. Featuring a spacious backpack, the special RSI Edition of the Pembroke ensures those seeking to cross bold new horizons do so in style.'), +(16333,'Hephaestanite','Cargo','Cargo','ead829dd-2f46-427d-b780-b49f8d193a0b','','',NULL), +(16334,'Seat','SeatAccess','UNDEFINED','1c57f2b2-8599-4b4d-8515-3d518ca6e188','','',NULL), +(16335,'Ventris Jumpsuit Crusader Edition Light Blue / Dark Teal','Char_Clothing_Torso_1','UNDEFINED','4db4d2e8-d958-49a2-92c3-b1a349417645','','','Carrying Capacity: 1K µSCU\n\nThe Ventris is a sleek jumpsuit that mixes several rip and stain resistant polymer fabrics for a dynamic design. It also features a half-zip front and adjustable belt to ensure an ideal fit while the soft inner lining makes it an ideal choice for all day wear. The special Crusader Edition was made to be worn by employees of the company and features the sword and C logo on the front.'), +(16336,'Saldynium (Ore)','Cargo','Cargo','9609b278-bf7b-4399-ac41-fd2a6148a592','','','A rare metal that has traditionally been extremely difficult to find in large quantities owing to the particular environmental requirements for its formation. It is sought after for its use in the production of high-powered lasers. It also shows some antimicrobial properties though its scarcity has seen it used less for medical purposes.'), +(16337,'m_human_mannequin_sandNomad','ShopDisplay','UNDEFINED','a86c5325-528f-49a8-a4cb-a59a1a320bad','','',NULL), +(16338,'MPUV 2951 Best in Show Livery','Paints','UNDEFINED','2f742cd0-bd05-44f4-a512-256cb9239260','','','Celebrate the MPUV being voted a Best in Show finalist for 2951 with this special blue and black livery.'), +(16339,'LeMarque Pants Dark Red','Char_Clothing_Legs','UNDEFINED','95dcff43-fbf6-4ea2-a55f-7f904273285f','','','Carrying Capacity: 0.5K µSCU\n\nClassic cuts never go out of style. A staple of any wardrobe, Derion\'s LeMarque are built for work or play and feature microseam pleats and wrinkle-free material that will guarantee that you\'ll get years out of this classic.\n\nWomen\'s sizes currently out of stock.'), +(16340,'YellowJacket GT-210 Gatling','Weapon','Gun','3993c8bb-f5d7-46c1-be5b-b5eb50e1bec6','','','Manufacturer: Gallenson Tactical Systems\nItem Type: Ballistic Gatling\nSize: 1\n\nWhile the GT-210 YellowJacket may be small, it packs a mighty sting. This high-speed ballistic weapon is perfect for targeting smaller, more mobile targets and its DTX-8 ammo supply system almost completely eliminates weapon jams due to bad rounds.'), +(16341,'Bed','Usable','UNDEFINED','943c9bd3-b22d-4032-9e68-d433bc61aa0c','','',NULL), +(16342,'tool_crowbar_2_a','Misc','UNDEFINED','e6336d7f-5810-4fac-a17c-b2992f7d3b49','','',NULL), +(16343,'DRAK_Corsair_Thruster_Mav_Up','ManneuverThruster','UNDEFINED','10737349-12d3-4fb0-ad6e-0c60238c6de0','','',NULL), +(16344,'IndVest Jacket Sienna','Char_Clothing_Torso_1','UNDEFINED','5319c853-3cbe-4447-986f-6b5133862f68','','','Carrying Capacity: 5K µSCU\n\nKeep your tools within easy reach with Stegman\'s IndVest. Made from industrial strength materials, this is a rare jacket that\'s both stylish and sensible.'), +(16345,'Nitrogen','Cargo','Cargo','e0514667-75fc-4f4d-95bd-dc0305671e03','','',NULL), +(16346,'Seat','SeatAccess','UNDEFINED','f4016c71-b71a-4be1-a83b-2d996decda02','','',NULL), +(16347,'ViseLock S1 Tractor Beam','TractorBeam','UNDEFINED','f70cbd61-2d36-4862-b259-7cc94917b2e7','','','Manufacturer: Greycat Industrial\nItem Type: Tractor Beam\nMax Angle: 80°\nMax Range: 135 m\nFull Strength Distance: 50 m\n\nThe ViseLock tractor beam is an evolution of Greycat’s industry-standard tech, with added improvements specifically intended to help security forces restrain their targets. In its design, Greycat sacrificed some hold strength at greater distances to achieve a more powerful tether that is harder to escape.'), +(16348,'De Leon Shoes Black','Char_Clothing_Feet','UNDEFINED','cfcbf96e-8634-40ab-b6b1-beea1b4bce90','','','Hawksworth\'s De Leon take the classic cap toed Oxford design but incorporate a laceless slip-on design to create an exciting new addition to the world of formal footwear.'), +(16349,'Table_Bench_6_MISC_Starfarer','Usable','UNDEFINED','a2a369a3-399c-4dd6-b920-1eb2b643defa','','',NULL), +(16350,'ESPR_LaserCannon_Barrel_S1','WeaponAttachment','Barrel','0730a450-e731-49de-9b17-ae44da130d55','','',NULL), +(16351,'Pembroke Backpack','Armor','Backpack','f48257c7-d224-4d32-8279-6368e3c2a09b','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nDesigned to extend the limits of Human endurance, the Pembroke was built to withstand the extreme heat of inhospitable high temperature environments. Based off of Caldera\'s best-in-class exploration armor platform, an advanced sensor suite intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. A spacious backpack compliments this advanced armor, so those seeking to cross bold new horizons can depend on the Pembroke to see them to the journey\'s end.'), +(16352,'MissileRack_Small_Ignite_FSKI','Usable','UNDEFINED','7c6fab6a-0678-4db2-957a-6775c471cadc','','',NULL), +(16353,'H_Dashboard_Projector_HUD_DRAK_Cutter','Display','UNDEFINED','6924ecab-9a6b-4829-8478-99d7735300e0','','',NULL), +(16354,'AEGS_Retaliator_OC_Rear_Cargo','Room','UNDEFINED','e4d7c029-8cf4-4f47-91a4-f6a571c1883b','','',NULL), +(16355,'ANVL_Pisces_Thruster_Retro_Right_C8X','ManneuverThruster','JointThruster','c0188c6b-6720-4cc3-8389-9ae1879c69ff','','',NULL), +(16356,'Concept Shirt','Char_Clothing_Torso_1','UNDEFINED','c862e168-a597-4485-8db0-3ec9dc384205','','','@LOC_PLACEHOLDER'), +(16357,'APX Fire Extinguisher','Weapon','Gadget','55a31baf-3a80-427c-8fdd-6e33de1e2b9a','','','Manufacturer: KE Group\nItem Type: Fire Extinguisher\nClass: Gadget\n\nMagazine Size: Gas Canister\nRate of Fire: Constant\nEffective Range: 3-4 m\n\nThe KE Group\'s APX Fire Extinguisher has been rated a best-in-class consumer grade safety equipment for well-over a decade making it the industry standard in fire prevention. Filled with a patented gaseous cooling compound, the extinguisher can rapidly smother any fire in sight. The digital screen on the device allows you to monitor the local temperature to help you contain and eliminate fire hazards.'), +(16358,'Black Mountain Sujin Tea (Rich)','Drink','Can','b294db83-221c-4165-ab88-71d29dde50f9','','','HEI: 21\nEffects: Immune Boosting, Cognitive Boosting\n\nSujin root tea, native to Elysium IV, is a traditional Tevarin beverage and has been produced for thousands of years. Black Mountain steeps only premium roots to make their delicious brew.'), +(16359,'AEGS_Retaliator_SCItem_Seat_Bed_Upper_Left','Seat','UNDEFINED','773f700e-c952-4615-bd6c-f085f9b66fc9','','',NULL), +(16360,'Cadmium Allinide','Cargo','Cargo','1f6d1039-9e37-408d-b630-2f0c80b5ac4b','','',NULL), +(16361,'Sunset Berries','Misc','UNDEFINED','d01d7265-1dc9-4faf-b0d8-34cbaa6a413a','','',NULL), +(16362,'Radar_Display_MISC_Starlancer','Display','UNDEFINED','5d303ee2-163e-4a74-bcee-a421deefbd9b','','',NULL), +(16363,'StorageCage_Quantum_ZeroG_Empty','Cargo','UNDEFINED','04adeed8-84db-4782-a9ee-30e99d34ffc7','','',NULL), +(16364,'DockingTube_Fuel_Ports_CRUS_Intrepid','DockingCollar','UNDEFINED','60dfbb92-7aff-4474-828d-ee44caa70548','','',NULL), +(16365,'Remote Turret','Turret','GunTurret','b7398c76-42e3-4701-80a9-4db3955ccc5a','','','Remote Turret'), +(16366,'Flight Blade','FlightController','UNDEFINED','e2b39a6f-479d-4ea2-9d58-36b3d6e8d89a','','',NULL), +(16367,'Cobalt','Cargo','Cargo','d6012426-e28e-4cd9-b88c-b30a3c9ad29d','','',NULL), +(16368,'RCMBNT-RGL-3','InventoryContainer','Cargo','4f192f87-ca4a-40e2-9985-1c5bc78da461','','','An imprint recombinant sample created from CTLST-RGL and REAGENT-03 as part of Dr. Logan Jorrit\'s Project Hyperion experiment.'), +(16369,'AEGS_Hammerhead_LandingGearSystem','LandingSystem','UNDEFINED','4f670593-aaf2-47fc-be26-7759fcaf09e9','','',NULL), +(16370,'Deadbolt V Cannon','Weapon','Gun','76775574-fcf2-493d-859e-337f1267a7ef','','','Manufacturer: Esperia\nItem Type: Ballistic Cannon \nSize: 5\n\nSpread dread with the Deadbolt V ballistic cannon. Feared for its firepower at short range, this notorious Tevarin weapon earned its intimidating reputation during the First Tevarin War as part of the Tevarin fleet\'s devastating arsenal. Esperia has painstakingly recreated the Deadbolt V out of respect to the original weapon and warriors who used it so effectively.'), +(16371,'ARGO_MPUV_1T_CargoGrid_Main','CargoGrid','UNDEFINED','dd9e8af0-3a0a-4e3f-8b02-9726a245ef23','','',NULL), +(16372,'Seat','Usable','UNDEFINED','ba4e73c8-407e-4fe1-8cc8-1506d1738e3d','','',NULL), +(16373,'Door Control','ControlPanel','DoorPart','9d96d42d-1f85-475f-8352-529236a12942','','',NULL), +(16374,'AEGS_Door_Decal_Airlock_04','Decal','DoorPart','0da70847-da1c-43d9-99fc-87bf2821160e','','',NULL), +(16375,'Shiv Spectre Livery','Paints','UNDEFINED','eb3fa2a0-c03d-43ed-95a3-24b9b77db490','','','Make the Shiv dark and discreet with the all black Spectre livery.'), +(16376,'Geist Backpack ASD Edition','Armor','Backpack','1f5ae92e-620d-4234-82cd-89aa90f0eacc','','','Item Type: Light Backpack\nCarrying Capacity: 54K µSCU\nCore Compatibility: All\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.\n\nThe ASD Edition features a dark urban camo pattern alongside ASD\'s signature logo.'), +(16377,'KRIG_l21_Wolf_Thruster_Retro','ManneuverThruster','UNDEFINED','fc2b0ef7-481e-4b77-b35f-1f2416b03154','','',NULL), +(16378,'Carryable_1H_SQ_heatpack_1_b','Misc','UNDEFINED','9a8bd49d-f8f4-45bc-8deb-0dfc0a387c17','','',NULL), +(16379,'ESPR_BallisticCannon_FiringMechanism_S2','WeaponAttachment','FiringMechanism','c8382ddd-c590-49df-b3b6-ce04090374d3','','',NULL), +(16380,'KRIG_L21_Wolf_Wingtip_Interior','AttachedPart','UNDEFINED','d32c880b-35b8-4089-9138-be690b2f2db4','','',NULL), +(16381,'HLX99 Hyperprocessors','Cargo','Cargo','5269ebb1-52b0-49b0-9e31-5ac0a5af68a5','','',NULL), +(16382,'Pips A20','Drink','Can','fbda7061-afd3-4c29-a311-b86ab4f89c2f','','','HEI: 39\nEffects: Energizing, Cognitive Boosting\n\nHeavily scientifically researched to provide optimal energy restoration and targeted thirst quenching, Pips is trusted the \'verse over. Pips A20 is specially formulated for long-haul pilots to provide sustained results.'), +(16383,'BR-2 \"Blacklist\" Shotgun','Weapon','Medium','e879aa01-f136-4724-b399-1877699f4584','','','Manufacturer: Behring\nItem Type: Shotgun\nClass: Ballistic\n\nMagazine Size: 12\nRate Of Fire: 75 rpm\nEffective Range: 15 m\n\nAttachments: Optics (S1), Barrel (S3), Underbarrel (S2)\n\nOriginally designed for the military, Behring decided to sell the BR-2 ballistic shotgun to the general public after the initial weapon testers kept requesting to take one home. Featuring a semi-auto fire mode that can rapidly deliver devastating stopping power, the BR-2 is the ideal choice for both offensive and defensive operations. \n\nThe Blacklist edition features a black finish.'), +(16384,'Door Control','Door','UNDEFINED','14bd7ef8-9088-40ad-a561-6f8db225e8be','','',NULL), +(16385,'Zogo Knife','Weapon','Knife','d7deee4a-2835-4d44-bfd5-132a0a46181f','','','Manufacturer: Banu\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nThe Zogo knife is prized among many soulis for its versatility and cutting edge. The strong tip and wide belly of the blade make the Zogo knife particularly durable, a crucial feature in survival situations in which this blade excels. The proprietary metal alloy used in the knife\'s design is also rust-resistant and remains ultra-sharp even after extensive use while the intricately detailed handle gives it a distinctly Banu style and provides texture to ensure a tight grip.'), +(16386,'AIModule_Unmanned_PU_SecurityNetwork','AIModule','UNDEFINED','78f4c819-cf87-4b2f-970c-431ca36b8772','','',NULL), +(16387,'BATT_AMRS_S00_FortCell','Battery','UNDEFINED','a5f451a5-08e0-4e07-b0a2-e3cebbbedf33','','',NULL), +(16388,'MISSILES','MissileController','UNDEFINED','bf974a5c-3c43-4b37-b511-3463db2e612f','','',NULL), +(16389,'Zeus Mk II Solstice Livery','Paints','UNDEFINED','adc38a8e-1972-4632-97ec-c9eb067490f1','','','Outfit the ship that launched Humanity into the stars with the gorgeous Solstice livery. Grey and black panels accented by ribbons of gold give the Zeus Mk II a distinguished and unforgettable appearance.'), +(16390,'ORC-mkV Core Dark Green','Armor','Torso','665e7556-3173-48b7-a3ff-48430cff16db','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(16391,'UNE Unification War Medal (Worn)','Misc','Trophy','d783b246-49e2-4101-a189-22677a3a933b','','','A campaign medal from the United Nations of Earth (UNE) military that commemorates meritorious service during the Unification Wars (2380-2384). Considered to be in worn condition due to the faded ribbons colors and corroded metal.'), +(16392,'UNE Gold Ingot (Flawed)','Misc','UNDEFINED','901efa69-b9c9-4136-90eb-f90f2f807687','','','A gold ingot cast by the United Nations of Earth (UNE) that is rated as being in flawed condition. These ingots were used in areas of the UNE where technological issues often hampered secure and instant money transfers. This rare item features the a worn three ring, six star logo used by the UNE within a circular recess and an elaborate, textured pattern across the rest of it.'), +(16393,'Seat','Usable','UNDEFINED','c1955d69-173e-4c8d-aee3-5f2aecf455aa','','',NULL), +(16394,'Radar_Display_ORIG_m50','Display','UNDEFINED','256eaa8a-8b4c-45ba-a07c-0a371b547029','','',NULL), +(16395,'Shizhen Surgical Gown','Char_Clothing_Torso_1','UNDEFINED','b5358d0d-3022-491f-8540-5e631363befc','','','Carrying Capacity: 1K µSCU\n\nEnsure complete upper body coverage and comfort with the Shizhen surgical gown. Its unique design features a light, breathable long sleeve shirt underneath a see through surgical gown, delivering dual layer protection against fluids and pathogens.'), +(16396,'universal_necksock_01_nonDeform','Char_Flair','UNDEFINED','d1378ab3-f25a-47c8-8cb7-c84af6971ef5','','',NULL), +(16397,'YellowJacket GT-210 Gatling','Weapon','Gun','b0d737a7-3cce-4507-92fd-42548260dc15','','','Manufacturer: Gallenson Tactical Systems\nItem Type: Ballistic Gatling\nSize: 1\n\nWhile the GT-210 YellowJacket may be small, it packs a mighty sting. This high-speed ballistic weapon is perfect for targeting smaller, more mobile targets and its DTX-8 ammo supply system almost completely eliminates weapon jams due to bad rounds.'), +(16398,'Flight Blade','FlightController','UNDEFINED','45a0d43f-8bcf-4f38-82c9-31d0e5222442','','',NULL), +(16399,'un_plate_empty_1_a','Food','Consumable','12aaf6ee-6c93-435e-bf66-f9f16276cabf','','',NULL), +(16400,'Scorpius Avalanche Livery','Paints','UNDEFINED','0c42f5a4-11f0-44f2-8381-0213dc9ae592','','','White with grey and orange accents, the Avalanche livery for the Scorpius gives the ship a pristine and refined style.'), +(16401,'Aurora Mk II Caspian Livery','Paints','UNDEFINED','bf3e3083-5179-4d57-b065-bd0546b044c1','','','The Caspian livery is primarily a pale, water-like blue with crisp yellow accents.'), +(16402,'Bello T-Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','1795ef21-9985-4543-8fa8-8be93eba261f','','','This stylish t-shirt from City Lights is made from a lighter fabric that\'s perfect for warmer climates.'), +(16403,'Custodian SMG','Weapon','Medium','00335844-8889-4c40-b4c5-e4d8496838cf','','','Manufacturer: Kastak Arms\nItem Type: SMG\nClass: Energy (Laser)\n\nBattery Size: 60\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe Custodian SMG from Kastak Arms focuses on a high rate of fire over damage and accuracy making it an ideal choice for sweeping through tight environments and close quarters combat.'), +(16404,'SHIELDS','ShieldController','UNDEFINED','5a68f46d-9f77-42ef-a3d2-730ada86e1c3','','',NULL), +(16405,'LowTechAirlockInteriorStatusSign','StatusScreen','AirlockPart','3bbf5954-9164-476c-8a58-344543029032','','',NULL), +(16406,'DRAK_Cutlass_Steel_Thruster_Retro','MainThruster','FixedThruster','b195b0a2-38df-496a-9b37-6014c8ec2cb8','','',NULL), +(16407,'Vehicle_Screen_MFD_Holo_600i_T','Display','UNDEFINED','f94a5cc6-c329-4eb0-858a-2f77d4ba60d5','','',NULL), +(16408,'TRGT. STATUS','Seat','UNDEFINED','8ca15a4b-c098-4c7a-b97c-e9b8ea33a87b','','',NULL), +(16409,'Overlord Core Supernova','Armor','Torso','28bfe788-0d3d-41f5-a749-d35bf7f7fa0d','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12.0 µSCU\nBackpacks: All\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.'), +(16410,'AEGS_Retaliator_Esc_Pod_Decal_06','Decal','DoorPart','94d574b0-59ff-43cc-ac6d-eb66709ab381','','',NULL), +(16411,'GP-33 MOD \"Thunderclap\" Grenade Launcher','Weapon','Medium','5d8e354f-5f52-467a-9546-9c5a981f4257','','','Manufacturer: Behring\nItem Type: Grenade Launcher\nClass: Ballistic\n\nMagazine Size: 6\nRate Of Fire: 40 rpm\nEffective Range: Variable (80m)\n\nAttachments: Optics (S1), Barrel (N/A), Underbarrel (S1)\n\nThe military-grade GP-33 MOD launcher fires 40mm grenades to clear rooms and flush out enemies behind cover thanks to Behring\'s precision design that primes each grenade to explode on impact. A black and grey color combination gives the Thunderclap edition a subtle look suitable for any security professional.'), +(16412,'AAT-34 Turret','Turret','MannedTurret','65ad9e48-a49b-4fe4-8a20-f1b4d810e8ee','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(16413,'m_teeth_vlk_juvenile','Char_Accessory_Head','Vanduul','60f3a0af-623a-4881-b4e6-4943fc46a22b','','',NULL), +(16414,'Seat','SeatAccess','UNDEFINED','0ea8a2ad-587c-44cc-8e19-c386760e661f','','',NULL), +(16415,'VCK-1 \"Carver\" Blade','Weapon','Knife','b368883e-722d-4f11-a139-681612067aeb','','','Manufacturer: UltiFlex\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nRenowned as Humanity\'s fiercest enemy, the weapons wielded by the Vanduul are some of the most feared in the universe. Taking inspiration from those brutal knives, the VCK-1 from UltiFlex features a split blade, ceremonial detailing, and has been finished with a unique patina that closely resembles the Vanduul\'s own bespoke alloys.\n\nThe Carver edition features polished metal blade with dark detailing.'), +(16416,'Morozov-SH-S Helmet Smokescreen','Armor','Helmet','8eeb97e8-7f36-4d69-83c2-e2ae7325c95b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -97 / 121 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(16417,'Souvenirs','Cargo','Cargo','3b030f6e-d75c-464a-ab8b-0231a75b86b4','','',NULL), +(16418,'Remote Turret','Turret','GunTurret','25aed8f9-b86f-4529-92a2-320f0abd9a1c','','','Remote Turret'), +(16419,'Door Control','Door','UNDEFINED','917d79d1-a2e5-4118-ba5e-51d412f3d62d','','',NULL), +(16420,'Khartu-al Polar Livery','Paints','UNDEFINED','4193d2d2-8f46-4c09-8c57-1a00f43d23c1','','','Modify your Khartu-al with this white and grey livery specifically designed for the 2951 IAE.'), +(16421,'Bed','Usable','UNDEFINED','64b107ae-b817-4783-818d-93031210f569','','',NULL), +(16422,'Strata Legs Amber','Armor','Legs','e7df3807-737a-4f09-984c-e68fb3e0a1b9','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 10k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres.'), +(16423,'Clempt Pants Yellow','Char_Clothing_Legs','UNDEFINED','215c53bf-c22b-41df-a0e1-dcd4444b0b99','','','Carrying Capacity: 2K µSCU\n\nStegman\'s factory pants have been taken to the next level with the Clempt line. These rugged all-purpose pants come with double knees for extra comfort and protection and are made from tough composite weave fabric to last as long as the work needs.'), +(16424,'P4-AR \"Nightstalker\" Rifle','Weapon','Medium','fecebcf2-8706-4f22-94fa-4abd24a70bc4','','','Manufacturer: Behring\nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 40\nRate Of Fire: 550 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nBehring\'s classic P4-AR rifle features a collapsible stock and shortened barrel, making it an ideal choice for close-quarter firefights. Its accuracy and general ease of use make it universally valued among security, military and civilian users.'), +(16425,'Foundation Pants Black','Char_Clothing_Legs','UNDEFINED','1413865b-d376-4724-8d54-16b8fce508b2','','','Carrying Capacity: 1K µSCU\n\nDMC\'s Foundation line is just that; the foundation for your work wear. Featuring a simple, elegant cut with easy-access pockets, the Foundation is both professional and functional.\n\nWomen\'s sizes currently out of stock.'), +(16426,'LeMarque Pants Sienna','Char_Clothing_Legs','UNDEFINED','2d57b196-4c74-4f04-a7a4-186e437d677a','','','Carrying Capacity: 0.5K µSCU\n\nClassic cuts never go out of style. A staple of any wardrobe, Derion\'s LeMarque are built for work or play and feature microseam pleats and wrinkle-free material that will guarantee that you\'ll get years out of this classic.\n\nWomen\'s sizes currently out of stock.'), +(16427,'Door Control','Door','UNDEFINED','1c899352-aefe-4a56-8e2f-ed591280c44e','','',NULL), +(16428,'Six-Sided Rotating Die White','Misc','Utility','f1ec1339-c95f-4423-bc02-eda5005fc272','','','This white six-sided die houses a green rotating core that features the numbers one through six. When rolled along a surface, a random number will display on the upper face of the die as the rotating core comes to rest.'), +(16429,'Irradiated Valakkar Fang (Apex)','Misc','Harvestable','f8cb1253-585f-40fe-8359-6b5de284c47e','E','','The valakkar continually sheds its teeth throughout its lifetime. As the animal burrows through the sand and catches prey, its teeth are frequently damaged. Once a new tooth finishes forming, it severs the connective tissue that was holding the old tooth in place, causing it to break off and fall to the ground. The fangs of the valakkar can also be extracted from the animal\'s mouth after its death. This fang was exposed to radiation over a long period of time and has developed unusual coloration.'), +(16430,'MPUV-1C Flight Jacket','Char_Clothing_Torso_1','UNDEFINED','b7ede6b4-7379-4fb5-9680-ba8c7441ca66','','','Carrying Capacity: 2K µSCU\n\nShow how far you\'ll go for the Argo Cargo. This flight jacket celebrates the ship that changed the cargo game and became ubiquitous at spaceports across the empire. Made from synthetic leather, it features two front pockets, a ribbed waistband, and cuffs that guarantees a good fit. There\'s also an Argo logo on the front and a stylish silhouette of the ship across the back.'), +(16431,'PAB-1 Core Imperial','Armor','Torso','9f14eb92-c6fb-4b79-92ab-306a0a309503','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(16432,'ORC-mkX Helmet Woodland','Armor','Helmet','ffba2a67-69ee-4a3b-9ca9-600b1983cc84','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(16433,'PAB-1 Arms','Armor','Arms','1208181e-d6ff-4407-a9e6-c2e91bfcfa2e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(16434,'RSI_Aurora_Mk2_Thruster_Retro','ManneuverThruster','Retro','39b448ea-62f2-4778-8b6c-b04d66314895','','',NULL), +(16435,'MASTER_screen_16x9_1_004x00255_aShipItems','Display','UNDEFINED','b2b102d5-81d8-4f81-be66-44e12b552f02','','',NULL), +(16436,'Elespo','Cargo','Cargo','cf7e47e4-20a2-41d1-a007-1e1a1cc262f1','','',NULL), +(16437,'Radar_Display_GAMA_Syulen','Display','UNDEFINED','a8703895-e0ad-45e3-9267-32f3d43a4a9f','','',NULL), +(16438,'AIModule_Automated_PU_CIV','AIModule','UNDEFINED','4d62f403-7b6e-4ff7-a69c-3edf6916e684','','',NULL), +(16439,'sc_marine_bdu_gloves_01_01_01','Char_Clothing_Hands','UNDEFINED','12c2f5f9-755d-4ae4-88a8-cb974dd9149a','','',NULL), +(16440,'IonSurge','PowerPlant','Power','4f9781e1-cd4d-4f39-b9ad-306ba1704439','','','Item Type: Power Plant\nManufacturer: Lighting Power Ltd.\nSize: 2\nGrade: B\nClass: Civilian\n\nLightning Power Ltd.’s line of medium power plants reach their pinnacle with the IonSurge. Design innovation and higher quality materials push this component\'s performance higher than others in its class.'), +(16441,'Seat','SeatAccess','UNDEFINED','b91d23b1-9f2f-4629-8b24-a722137a5ba8','','',NULL), +(16442,'Flight Blade','FlightController','UNDEFINED','03fcb05e-e223-412f-8118-c15556285622','','',NULL), +(16443,'ARMR_RSI_Mantis','Armor','Medium','f9badbb2-4152-46fb-91c6-942842b0f036','','',NULL), +(16444,'Armor_Crate_CZ_Firerat_003','Usable','UNDEFINED','f97b491c-229d-48e0-b519-11b3457e708a','','',NULL), +(16445,'Morozov-SH-I Legs Pyrotechnic Horizon','Armor','Legs','c4af385a-14af-477d-b6a4-4b2f34da3624','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5K µSCU\n\nFeaturing the same fortified armor plating, special anti-rip protective padding and ample storage, as the Morozov SH, the SH-I industrial variant was designed by RRS to protect workers employed in hostile zones while ensuring they had the full range of motion required to perform their duties. The Pyrotechnic Amalgamated Edition was made specifically for the company\'s mining efforts in Pyro during the 26th century.'), +(16446,'Paint_Perseus_Blue_Blue_Black','Paints','UNDEFINED','340807f0-99b0-466d-9783-8112a00b4a8e','','',NULL), +(16447,'Syulen Purple Haze Livery','Paints','UNDEFINED','ad311d60-9923-4d97-b336-1f325153f73b','','','Celebrate Day of the Vara in style with the Purple Haze livery, featuring a glimmering metallic purple base paint splattered in green.'), +(16448,'Venture Undersuit \"Rust Society\"','Armor','Undersuit','cd99e671-9d3f-41eb-90a7-f565bb1b7b51','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement. The Rust Society edition adds a red and tan color scheme so you look good while working hard.'), +(16449,'UrbEx Boots Grey','Char_Clothing_Feet','UNDEFINED','d69c8927-4518-4848-9727-21d3303429c8','','','From bustling backstreets to crowded clubs, the UrbEx boots will make your next step a bold one. The boots blend a stylish design with reinforced high ankle support and ultra durable outsoles.'), +(16450,'Seat','Usable','UNDEFINED','0d330577-6ef7-40ab-975d-4478f5cbd975','','',NULL), +(16451,'Door_NoRoomConnector_Retaliator_Ground_FuelPort','Door','UNDEFINED','aee0e1bf-615c-4188-b047-9cad98f290b1','','',NULL), +(16452,'Locker_Armor_NoMannequin','Usable','UNDEFINED','8c898dc8-4d30-4bb8-b8b2-e1cdaa15d11a','','',NULL), +(16453,'Scorpius Shock Force Livery','Paints','UNDEFINED','2d7b9652-e70e-4e58-b945-db996cd332a5','','','Featuring ferocious firepower and a bold bi-wing design, the Scorpius deserves a paint scheme to match. The eye-catching Shock Force livery pairs a blend of yellow and orange hues with a dark grey trim.'), +(16454,'SHIELDS','ShieldController','UNDEFINED','77fdef44-a441-4964-b25c-a4203658ae87','','',NULL), +(16455,'Venture Legs Executive','Armor','Legs','18c94ad0-9ab5-4b8b-889a-c45ab1720a41','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement. And now you no longer have to choose between exceptional styling and performance thanks to the tasteful gold detailing only available with the special limited Executive Edition.'), +(16456,'Beradom','Cargo','Cargo','8b71b394-94d4-46e7-9923-cf3f3a684898','','','Formed when sap from the Beraber Fir is crystalized during forest fires, this transparent deep blue \"gemstone\" is often polished smooth and used in jewelry. While it can be manufactured by growing trees and then doing a controlled burn, the time investment for the trees to reach the proper maturity still make this a rare commodity.'), +(16457,'MacFlex Arms Orange','Armor','Arms','6cb0bf05-3da6-4911-86df-1360da3e4999','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(16458,'Archibald Jacket Cinder','Char_Clothing_Torso_1','UNDEFINED','d95171d9-52c2-4969-b30e-a36581e8d27f','','','Carrying Capacity: 1K µSCU\n\nSimple, comfortable and understated. While most fashion designers avoid these terms, Escar Limited understands that sometimes you just want something that feels right. Based on the classic design from Centauri II, the Archibald is a simple, comfortable and understated light jacket made from a polyweave that doesn\'t restrict airflow.'), +(16459,'ORIG_890_Jump_Thruster_Mav_BRR','ManneuverThruster','FixedThruster','6da56afc-56f9-4b86-949a-1f8007335862','','',NULL), +(16460,'Manned Turret','UtilityTurret','MannedTurret','66de5163-42ce-44fa-83b0-2b97ef64d7a4','','',NULL), +(16461,'AEGS_Vanguard_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','1e83f415-7400-4cc3-a90a-619d766e1abd','','',NULL), +(16462,'Ixonia Pants Swamp Camo','Char_Clothing_Legs','Medium','97b8f1c0-9932-4a89-8bff-a017e5f8a9a5','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDesigned in partnership with Grindstone Boots, the Ixonia pants are designed to keep you safe from hard knocks. The shin guards fits seamlessly over the Trekker boots, and are made from Tehachapi\'s proprietary polymer weave to provide a high level of protection.'), +(16463,'Door','Door','UNDEFINED','0f497bcc-57e7-40c4-9e47-71980c6a9553','','',NULL), +(16464,'DockingTube_Fuel_Ports_MISC_Freelancer_DUR','DockingCollar','UNDEFINED','036f7775-e91a-459d-a469-6477869d06e0','','',NULL), +(16465,'Aegis Hammerhead - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','99064742-4961-4ff9-b3cc-a3bb36504359','','','Aegis Hammerhead - Decoy Launcher'), +(16466,'DockingTube_Fuel_Ports_ESPR_Prowler_Utility','DockingCollar','UNDEFINED','9aeedf9f-22c4-4754-8fb9-3591551194fc','','',NULL), +(16467,'Door_ChipReader_Vault_003','Door','UNDEFINED','653e606e-0790-4ab5-b96f-a410e3c43203','','',NULL), +(16468,'Venture Undersuit Crimson','Armor','Undersuit','dde27a5c-a4d4-4480-b995-208b1d9d0f19','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(16469,'RSI T-Shirt','Char_Clothing_Torso_0','UNDEFINED','2a43efee-2b7a-4b2a-b46a-98d8ce3616bb','','','Celebrate the company most responsible for bringing Humanity to the stars. This classic black t-shirt features the iconic RSI logo.'), +(16470,'Caterpillar IceBreak Livery','Paints','UNDEFINED','9fd565a3-c338-4645-a211-aece919d92e1','','','Equip your Caterpillar with a paint scheme cooler than a snow storm. The IceBreak livery mixes crisp, cool white with a frostbitten blue for an exciting look suitable for any season.'), +(16471,'Typhoon IX-G Torpedo','Missile','GroundVehicleMissile','61c18fe9-bd26-4a92-a764-823746fb98c1','','','Manufacturer: Talon \nTracking Signal: Infrared \nSize: 9 \n\nDesigned by Talon, the Typhoon heat seeking strike torpedo delivers a heavy payload sure to serve as a deterrent from any further hostile actions. Note: This missile may only be launched by ground vehicles.'), +(16472,'AEGS_Idris_SCItem_Seat_ATC','Seat','UNDEFINED','5bc04ccd-dd96-453a-927f-13f2e4294c15','','',NULL), +(16473,'Aegis Gladius - Noise Launcher','WeaponDefensive','CountermeasureLauncher','98b48f87-bd84-47fd-a1fd-582df790baa9','','','Aegis Gladius - Noise Launcher'), +(16474,'Hercules Starlifter Fortuna Livery','Paints','UNDEFINED','0153f16e-f8a9-48fe-b855-0d6e4692b026','','','Make luck your co-pilot. Boldly set your sights on the stars and adventure forth in style with the Fortuna livery. This Stella Fortuna themed paint scheme is primarily green with grey accents.'), +(16475,'Horizon Helmet Red','Armor','Helmet','87495ffc-edf1-4c59-a071-daae21e9c3df','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Horizon helmet is a durable and robust environmental enclosed work helmet. The single sheet laminate dome gives you an extremely wide field of view. A pair of side-mounted LED light modules provide additional illumination to make sure you can see what you\'re doing.'), +(16476,'Eco-Flow','Cooler','UNDEFINED','b2279e37-c5fb-49ab-b008-b32f3c528706','','','Item Type: Cooler\nManufacturer: Juno Starwerk\nSize: 1\nGrade: B\nClass: Industrial\n\nA standard for centuries, Juno Starwerk’s industrial Eco-Flow cooler is a favorite of haulers for being easy to maintain even when carrying the heaviest cargo loads.'), +(16477,'ANVL_Valkyrie_Thruster_Mav_Joint_Side','ManneuverThruster','FlexThruster','1e7f200c-5f41-4da1-b15c-4151f290e5cf','','',NULL), +(16478,'Apex Glasses','Char_Accessory_Eyes','UNDEFINED','ff0582a1-5a7d-40b4-b7bc-b1e9ead8f83f','','','Tough but stylish, these all-purpose performance glasses utilize scratch-resitant lens technology to keep your vision clear during training or competition.'), +(16479,'Davlos Shirt Chestnut','Char_Clothing_Torso_0','UNDEFINED','88a78346-b2b5-4ef4-a908-a710d6164ca8','','','Live in comfort with MuyMuy\'s Davlos line of cotton-synthetic shirts. The durable, yet soft, fabric contains a patented SweatGuard technology that not only whisks away perspiration but helps prevent stains.'), +(16480,'Argo MPUV Ship Armor','Armor','Medium','283968a4-8a1c-44e0-8783-4a2e3bc72d26','','','Argo MPUV Ship Armor'), +(16481,'RSI_Constellation_SCItem_Seat_Access_CoPilot_Left','SeatAccess','UNDEFINED','3fe130f2-40cc-4f18-9dba-553bf9f2e688','','',NULL), +(16482,'UNE Unification War Medal (Pristine)','Misc','Utility','747b7b5f-3fd2-42e3-acb3-7806149ce1d3','','','A campaign medal from the United Nations of Earth (UNE) military that commemorates meritorious service during the Unification Wars (2380-2384). Considered to be in pristine condition thanks to the bright colors still present in the ribbon and well-preserved etching on the medal itself.'), +(16483,'Internal Tank','QuantumFuelTank','QuantumFuel','7b2f6c4f-f1f3-4cea-aa21-39d04c86746a','','',NULL), +(16484,'Controller_Salvage_ARGO_MOTH_Right','SalvageController','UNDEFINED','8e922d42-1013-4cbf-841a-df057908df2b','','',NULL), +(16485,'Kopion Horn','Cargo','Cargo','0a890e4e-775a-45c3-93ee-184623c9caef','','',NULL), +(16486,'ARMR_MISC_Fury','Armor','Medium','0b08ffbf-7c5a-410b-911c-98715c92e978','','',NULL), +(16487,'Paint_Hurricane_Default','Paints','UNDEFINED','c852a060-f966-4599-9b42-043658233dd9','','',NULL), +(16488,'Seat_Jump_CNOU_Mustang_Beta_Toilet','Usable','UNDEFINED','e7bd8a11-e0b0-42ec-80d7-30b2f5b036ad','','',NULL), +(16489,'Stratus Jacket Maroon','Char_Clothing_Torso_1','UNDEFINED','324425a0-c8a9-44d3-adb6-9e15373f2279','','','Temp. Rating: -20 / 20 °C\nCarrying Capacity: 3K µSCU\n\nEven though it\'s rated to withstand arctic conditions, you won\'t want any snow accumulating on this distinct and dazzling jacket. The Stratus will keep you warm from neck to knees thanks to its high collar and precisely layered pieces.'), +(16490,'ANVL_Pisces_Thruster_Main_Left_C8X','MainThruster','FixedThruster','38db43e2-77c3-4808-b63d-cd57de408733','','',NULL), +(16491,'Adiva Jacket White','Char_Clothing_Torso_1','UNDEFINED','4a72f7c9-745d-4b22-b233-2b11bc22bb5d','','','Carrying Capacity: 1K µSCU\n\nDefine your ultimate you. The Adiva is an asymmetrical pullover with bold mixed-materials and solid reinforced trim.'), +(16492,'INTK_DRAK_Herald','FuelIntake','Fuel','6ccf04dc-fc1f-4d3f-81bc-98eff68a12c5','','',NULL), +(16493,'Aluminum (Ore)','Cargo','Cargo','aa09716b-4952-469f-ae41-1034099862cc','','',NULL), +(16494,'Counter_MedicineTray','Misc','UNDEFINED','d157cc2b-19c4-4106-9954-8399c5e824be','','',NULL), +(16495,'can_drink_3_flood_shop_1x5_a','ShopDisplay','Default','3c2699b1-f3a5-4540-886c-e7d01864fa1d','','',NULL), +(16496,'CleaningSpot','Usable','UNDEFINED','7fe21625-828a-4d28-8930-0d4891601e20','','',NULL), +(16497,'ESPR_Talon_Thruster_Main_BL','MainThruster','FixedThruster','715fb0ee-20cc-48e0-8434-2b0289bb6be4','','',NULL), +(16498,'INTK_AEGS_Eclipse','FuelIntake','Fuel','63e2a6de-90cc-45ba-8325-e621cbe5cd82','','',NULL), +(16499,'Artimex Core (Modified)','Armor','Torso','87cbf984-fd76-40cf-9921-1ee92945de3d','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nThis version of Quirinus Tech\'s Artimex core has been modified from its original form. Blending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.'), +(16500,'Gold','Cargo','Cargo','b34cab53-a1e0-48fb-81c0-d14d1bbb276b','','',NULL), +(16501,'Seat','SeatAccess','UNDEFINED','494068f0-0307-4d7c-a61d-9d8c4c83fa78','','',NULL), +(16502,'Antium Arms Maroon','Armor','Arms','572a21b6-4c39-4311-89af-93bbfefbef6a','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(16503,'Personal Care Product','Misc','UNDEFINED','5d22251f-9049-40b8-9a8b-05438daadf91','','',NULL), +(16504,'Door Control','Door','UNDEFINED','d2497c30-4729-4e8c-b334-ed74218af967','','',NULL), +(16505,'AEGS_Avenger_PrisonPod_6','Usable','UNDEFINED','73b85e9d-49a4-4ef7-9c2c-a8cab70f6511','','',NULL), +(16506,'Year of the Rat Coin','Misc','Utility','3b5696fd-4078-4d8f-a190-71c59976a16b','','','A gilded red coin celebrating the Year of the Rat. Said to bring good fortune and prosperity in the upcoming cycle, coins like these have become a popular gift during the annual Red Festival.'), +(16507,'Cumulus Pants Gray','Char_Clothing_Legs','UNDEFINED','900c3839-b99a-4c30-8c54-934d262b3464','','','Temp. Rating: -35 / 15 °C\nCarrying Capacity: 3K µSCU\n\nBe bold and brave the cold with Cumulus pants. Designed with a synthetic fabric that insulates the inside and wicks away moisture from the outside, these pants provide protection against temperature drops to -35 °C.'), +(16508,'Outback Helmet','Armor','Helmet','bb4499aa-23a9-4d2f-9d34-5236fe1e9b2a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -65 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2k µSCU\n\nThis full-coverage reinforced leather helmet incorporates darkened goggles and a heavy-duty rebreather suitable for low oxygen environments. Visor is AR Crosshair compatible.'), +(16509,'ClipVest Work Harness Yellow','Char_Clothing_Torso_1','UNDEFINED','65756f59-b8bc-4081-893e-7ad517fcd304','','','Carrying Capacity: 2K µSCU\n\nStegman\'s ClipVest is a multi-purpose work harness that keeps your tools handy when and where you need them. Built from industrial strength materials, this harness offers a back piece to help alleviate strain and provide counterbalance.'), +(16510,'Ati Jacket Sienna','Char_Clothing_Torso_1','UNDEFINED','5b1a6eed-7a7c-485c-93e2-20ced47560f6','','','Carrying Capacity: 2K µSCU\n\nFiore\'s is a modern update of traditional Earth design. Slim tailoring, a high collar, and striking asymmetrical design make this overcoat a must-have item for any wardrobe.'), +(16511,'Bed','Usable','UNDEFINED','4489675a-3f53-4fc9-8337-8819be325cb5','','',NULL), +(16512,'AEGS_Sabre_Firebird_Thruster_Mav_Joint_02','ManneuverThruster','JointThruster','1392da27-1611-41f1-9f48-a17faa8aaacb','','',NULL), +(16513,'Dymantium','Cargo','Cargo','939e0539-df2f-4247-b635-d6f14750a89e','','',NULL), +(16514,'Cargo_Comm_125x3_Gas_Chlorine_a','Cargo','Cargo','cdc2c2d6-20b8-40a8-880e-ad93aa794ebe','','',NULL), +(16515,'Carryable_1H_CY_utensil_spork_reusable','Misc','UNDEFINED','5ad8de14-a038-4e44-99e4-71ecd9e6c4f4','','',NULL), +(16516,'Screen','SeatDashboard','UNDEFINED','3c400f25-aa36-43fb-92ea-e53b67c4dc59','','',NULL), +(16517,'Skellig Pants Dark','Char_Clothing_Legs','UNDEFINED','d4a3cf7a-2f76-4283-afe7-200224eb9387','','',NULL), +(16518,'Internal Tank','FuelTank','Fuel','51de8d1a-b168-4d2d-8caf-bc00e06d736b','','',NULL), +(16519,'Quartz \"Jungle Camo\" Energy SMG','Weapon','Medium','698e8cec-2e45-406d-86b1-b9855440d48d','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: SMG\nClass: Energy (Electron)\n\nBattery Size: 45\nRate of Fire: Beam\nEffective Range: 15-20 m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nManufacturer VOLT\'s Quartz SMG utilizes exciting new weapon technology that fires a short range beam that fractures into multiple beams the longer it fires, making it an extremely effective close quarter weapon.\n\nThe \"Jungle Camo\" edition gives the weapon a classic dark green camo pattern.'), +(16520,'ORC-mkV Arms','Armor','Arms','f1183bfe-f860-465f-94bb-9c6d463e0de4','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(16521,'Door','Door','UNDEFINED','7834542a-9359-477d-906a-6853657cc06d','','',NULL), +(16522,'Dashboard','SeatDashboard','UNDEFINED','b0513ccc-dc0f-4d74-99a8-56dca679f530','','',NULL), +(16523,'Paint_Sabre_Procyon','Paints','UNDEFINED','69f2f2c7-87e5-4ecf-b8ce-28161e0e409b','','',NULL), +(16524,'Elevator Control','Elevator','UNDEFINED','a9e6cb1b-26a0-461a-b98c-ee3da5410a9d','','',NULL), +(16525,'DockingTube_Fuel_Ports_ORIG_125a','DockingCollar','UNDEFINED','ee166dff-3f95-4683-8c3f-d65db9b9b71e','','',NULL), +(16526,'Seat','SeatAccess','UNDEFINED','fe41af52-4616-4e56-97e1-72d30f8d0528','','',NULL), +(16527,'CNOU_Nomad_Component_Cooler','Player','UNDEFINED','45ca503e-1374-41c8-95d5-f1d070a4db8b','','',NULL), +(16528,'Door Control','Door','UNDEFINED','7b199594-e104-4921-896b-b6cfa911bdad','','',NULL), +(16529,'Sink','Cargo','UNDEFINED','8c0d292c-fdc7-4795-9492-5d0cef7df573','','',NULL), +(16530,'Gadget_Cabinet_kegr_fire_extinguisher_01','Usable','UNDEFINED','2e0e9eb4-d30c-4374-97c7-d9be34d366a2','','',NULL), +(16531,'Defiance Helmet Hailstorm','Armor','Helmet','fb61c814-8033-469a-899e-63bd585b1336','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Defiance features a fully enclosed battle helmet constructed with two layers of composite weaves underneath armor plating, providing you maximum protection against penetrating and concussive attacks. Visor is AR crosshair compatible.'), +(16532,'Carnifex Armor Core Shutdown','Armor','Torso','2ad2d953-a523-4143-bc73-7d1aabef235e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -5 / 38 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpack Compatibility: Light\n\nThis homemade armor provides a marginal amount of protection but maximum attitude. It\'s aggressively styled with skulls and other intimidating accessories associated with those living on the edge. Wearing such a distinct look may either keep people away... or draw them to you.\n\nThe Shutdown version features black and gray coloring with dark metal accents.'), +(16533,'SecureHyde','Shield','UNDEFINED','334e6cb2-5e77-4bc8-bd92-d756848f050b','','','Item Type: Shield Generator\nManufacturer: Gorgon Defender Industries\nSize: 1\nGrade: D\nClass: Military\n\nGet extra protection with the SecureHyde shield generator. This military-grade component provides superior durability over every other shield generator in its class.'), +(16534,'TRGT. STATUS','Seat','UNDEFINED','d9ff1aa4-d1d5-48a1-9926-fa7dbe3be72d','','',NULL), +(16535,'SHIELDS','ShieldController','UNDEFINED','10b7677a-139f-423d-91f0-87fedbe0d2ce','','',NULL), +(16536,'Seat','SeatAccess','UNDEFINED','e0dd2360-867d-4e73-aa59-e40872710309','','',NULL), +(16537,'DRAK_Cutter_Thruster_Main_Scout_Right','MainThruster','FixedThruster','99b6dff5-9c5d-4034-a3cb-99024a4de50f','','',NULL), +(16538,'Parasite Special Edition Poster','Misc','Utility','82327138-d315-4ef1-aebd-579acd1c3663','','','A poster for the special edition re-release of the body horror classic vid “Parasite” that tells the story of an alien life-form who takes over the bodies of Human hosts.'), +(16539,'orig_bedding_duvet_3_n','Seat','UNDEFINED','dc9f4f9a-7ba2-4ced-ad76-5a26f6f104f4','','',NULL), +(16540,'Seat','Usable','UNDEFINED','9ffb0594-606c-4f26-94aa-e0e6aa37ca91','','',NULL), +(16541,'ORIG_M50_Thruster_Mav_Fixed_Up','ManneuverThruster','FixedThruster','be496162-7c8a-461f-832e-b2a7f899ae83','','',NULL), +(16542,'Remote Turret','Turret','GunTurret','ad2195a0-52ca-4d18-b9d0-5295f9a9fb79','','','Remote Turret'), +(16543,'Ares Star Fighter Golden Blossom Livery','Paints','UNDEFINED','9b7f1456-9aed-411a-b6b3-77ec7f1b0a3b','','','The Golden Blossom livery weaves an intricate golden flower pattern across the matte black paint of the Ares Star Fighter.'), +(16544,'Kragen','Cooler','UNDEFINED','3c5a56d9-ff6e-426c-a0dd-6fe0d64037f7','','','Item Type: Cooler\nManufacturer: Wen/Cassel Propulsion\nSize: 3\nGrade: A\nClass: Civilian\n\nWhen you go big, get nothing but the best. The Kragen from Wen/Cassel Propulsion has consistently been rated among the best large, commercial coolers available on the market.'), +(16545,'Palatino Arms Sunstone','Armor','Arms','024e0420-6902-40f7-8f1a-0c13e92064a3','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower.'), +(16546,'AEGS_Redeemer_Wardrobe_Decal_02','Decal','DoorPart','a30843b0-c276-413b-8bdd-b4e91ef0b1ff','','',NULL), +(16547,'Stileron','Cargo','Cargo','0bd22ea3-dbc6-4b85-a5a5-2bff771ea5b6','','',NULL), +(16548,'display_ship_components_02x0075x0275_a_s0_shields','ShopDisplay','UNDEFINED','59e75020-4f7a-47b4-bd5c-99036dd36069','','',NULL), +(16549,'Bolt','QuantumDrive','UNDEFINED','d6dac840-51e4-4872-b731-2072f3bcfda9','','','Item Type: Quantum Drive\nManufacturer: RAMP Corporation\nSize: 2\nGrade: B\nClass: Stealth\n\nThe RAMP Corporation continues their line of low emission quantum drives with the Bolt. This medium-sized component will blast you from one location to the next while producing a minimal signature.'), +(16550,'Drink_bottle_vodka_01_a','Drink','Bottle','b36d6748-9809-4cb6-bf03-6b827a4b0eaf','','',NULL), +(16551,'Carrack Polar Livery','Paints','UNDEFINED','eb0068f4-f2da-47eb-af63-d9d99700b5c4','','','Modify your Carrack with this white and grey livery specifically designed for the 2951 IAE.'), +(16552,'Durango','PowerPlant','Power','090ad136-ea1a-4381-a21b-fdfbc85ed273','','','Item Type: Power Plant\nManufacturer: Juno Starwerk\nSize: 3\nGrade: A\nClass: Industrial\n\nThe Durango is the peak of large power plants produced by Juno Starwerk. This top-of-the-line industrial component provides unmatched energy dispersion that minimizes fluctuations and surges during heavy demand.'), +(16553,'Door Control','Door','UNDEFINED','c4dd6469-eaaa-4e7e-a796-77bdc168c55f','','',NULL), +(16554,'CBH-3 Helmet Greycat Edition','Armor','Helmet','d7380828-0d08-437c-bc26-d0faeb4a50c0','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. The Greycat Edition was made specifically for the company. Visor is AR crosshair compatible.'), +(16555,'IndVest Jacket Yellow','Char_Clothing_Torso_1','UNDEFINED','76ddb6e5-8ba3-4c4d-acc4-bfb7fa1495b7','','','Carrying Capacity: 5K µSCU\n\nKeep your tools within easy reach with Stegman\'s IndVest. Made from industrial strength materials, this is a rare jacket that\'s both stylish and sensible.'), +(16556,'Artimex Legs','Armor','Legs','de6425e3-468e-499b-a0ba-f3e39b5ccee9','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.'), +(16557,'Aither','QuantumDrive','UNDEFINED','fcfa0140-7d88-452f-aac4-668cd65c4053','','','Item Type: Quantum Drive\nManufacturer: RSI\nSize: 2\nGrade: B \nClass: Civilian\n\nNamed for an ancient god of light and the heavens, the Aither quantum drive honors its namesake as it ferries people places their ancestors could never imagine. This classic RSI medium-sized component has graced civilian ships for centuries.'), +(16558,'Weapon_Rack_1_VOLT_Sniper_Common_001','Usable','UNDEFINED','7c34a0d3-6a72-4355-988f-a8a29e0e06be','','',NULL), +(16559,'COMP_WLOP_S00_Adze','Misc','UNDEFINED','a6b4604a-358b-4ee7-8c0f-f3f43427154d','','',NULL), +(16560,'Prowler Ocellus Livery','Paints','UNDEFINED','fd8fa88f-6f7f-4c83-b8e1-c42aaff42627','','','The Ocellus livery replicates the look of the Prowler during the Second Tevarin War. It features a bold red fuselage meant to draw attention and trick aggressors into shooting at the most heavily armored part of the ship.'), +(16561,'BEHR_BallisticGatling_FiringMechanism_S5','WeaponAttachment','FiringMechanism','0b496168-435a-4d78-a1e2-3028c3339416','','',NULL), +(16562,'Prota','Cargo','Cargo','6c8b6ac2-4475-45b9-b6c6-ca5b92c86b1d','','',NULL), +(16563,'game_checker_piece_1','Gadget','UNDEFINED','cd8d3375-6df7-4207-a800-84e4a5933045','','',NULL), +(16564,'Starlancer Sapphire Livery','Paints','UNDEFINED','0ce7ec60-142f-441f-adc0-7dec20cf4491','','','A bold blue top and black underbelly give the Sapphire livery a distinct and dazzling look.'), +(16565,'AEGS_Sabre_Thruster_Mav_Down','ManneuverThruster','JointThruster','4497731f-b634-4200-894a-58c2da42e8ac','','',NULL), +(16566,'display_box_plastic_4_weapon_opened_005x010x0025_rundown_a_4Ports','ShopDisplay','UNDEFINED','258df31c-8635-4c8e-aaf4-c2b4d396e107','','',NULL), +(16567,'MASTER_bag_carryable_1h','Cargo','UNDEFINED','43fd141c-7069-40fc-9b5e-4985d3b00a2e','','',NULL), +(16568,'Seat','SeatAccess','UNDEFINED','e6e85836-bda4-480e-8d25-557f6dfdad29','','',NULL), +(16569,'Radar_Display_MISC_Prospector','Display','UNDEFINED','665834d9-f9a9-4c28-860c-63fa6dc93be9','','',NULL), +(16570,'AAT-34 Turret','Turret','MannedTurret','bf1899b2-2ba6-4602-9d1e-3e83b133f689','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(16571,'MSD-313 Missile Rack','BombLauncher','BombRack','8352da44-4b63-4a4b-8397-734dfb11698b','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 3\nMissiles: 1xS3\n\nBehring’s MSD-313 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 3 hardpoint for the reliable and effective launch of one S3 missile.'), +(16572,'Venture Arms Seagreen','Armor','Arms','ed141092-ee19-4544-9235-e5316e6b59b6','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(16573,'MISC_Fury_LX_Thruster_FixedMav_Left','ManneuverThruster','FixedThruster','5f0b969d-19cb-4914-a509-55876eb738f5','','',NULL), +(16574,'Carryable_2H_CY_furniture_pillow_1_e','Misc','UNDEFINED','2c4e5b96-047a-4aec-bc75-48bd9f62f43c','','',NULL), +(16575,'ORIG_400i_Seat_Bridge_Right','Seat','UNDEFINED','545664bb-de91-4efe-91fa-0c8e49292b39','','',NULL), +(16576,'UI_EnvironmentScreen_Phoenix_AttractAnim_Small','StatusScreen','AirlockPart','51bb5385-61ca-4d60-9c86-2f96ec184bb5','','',NULL), +(16577,'Tona Shoes Blue','Char_Clothing_Feet','UNDEFINED','46c50b0b-9afe-4d93-81c4-ab839d81abdc','','','Perfect for hiking or fieldwork, the Tona from R6 Pro is a low-top sneaker built out of breathable Cheofreme materials which not only provide extra protection against impacts, but keep your feet dry.'), +(16578,'Bengal_BallisticCannon_Barrel_S8','WeaponAttachment','Barrel','3592665f-ba6f-494e-8364-483210ab42d1','','',NULL), +(16579,'Railing_Straight_2m_LowTech_Util_Stairs_02x01_c','Usable','UNDEFINED','fa68ff52-c600-4cc6-b617-58f9a55a3eb7','','',NULL), +(16580,'UNE Unification War Medal (Damaged)','Misc','Trophy','d6f8b191-d343-4b66-b611-8aa7802c7b42','','','A campaign medal from the United Nations of Earth (UNE) military that commemorates meritorious service during the Unification Wars (2380-2384). Considered to be in poor condition due to the faded ribbons colors and broken, corroded metal.'), +(16581,'Turret','TurretBase','MannedTurret','707e6c73-bfd0-4d62-b89c-57c5257c58b6','','',NULL), +(16582,'Mustang Alpha Ship Armor','Armor','Medium','02b8dd1c-3b4d-4d2a-b931-df3a79818a7c','','','Mustang Alpha Ship Armor'), +(16583,'Sabre Landslide Livery','Paints','UNDEFINED','ff5452f3-731f-481e-94aa-e095f6b148ea','','','The Landslide livery for the Sabre features a tan fuselage with grey wings and subtle silver highlights.'), +(16584,'ORC-mkV Core Crusader Edition','Armor','Torso','dd4d7cd3-38fc-4338-b9cb-30d0b926e968','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement. The Crusader Edition was made specifically for the company\'s security services.'), +(16585,'ARGO_ATLS_IKTI_Shield','Misc','UNDEFINED','a7ca3a05-5a19-41a8-82fb-b4223b223e2f','','',NULL), +(16586,'Green QuikFlarePro','Weapon','Grenade','d1672c73-892b-41f5-ae26-4486b780c971','','','Manufacturer: Shubin Interstellar\n\nIlluminate the way forward or signal for help with the Green QuikFlarePro from Shubin Interstellar. For centuries, miners have counted on this flare as part of their core toolkit, thanks to its tried and true design and durability that ensures it stays ablaze in the various harsh weather and difficult atmospheric conditions encountered across the \'verse. The QuikFlarePro uses advanced tech to glow longer than regular flares.'), +(16587,'CRUS_Starfighter_Thruster_Mav','ManneuverThruster','JointThruster','c79c8dea-e580-4f8a-9a22-a469d6d831f7','','',NULL), +(16588,'Rabat Hat Blue','Char_Clothing_Hat','UNDEFINED','e66e49a8-1ee7-4207-927a-59a59d07c12b','','','A classic structured baseball cap with an accent stripe to add a pop of color. City Lights\' proprietary COOL-WEV technology keeps your head cool and dry in any environment.\n\nWomen\'s sizes currently out of stock.'), +(16589,'Seat','Usable','UNDEFINED','a9a17160-31d2-4c6d-8a18-a3b020d6e778','','',NULL), +(16590,'Souvenirs','Cargo','Cargo','be2d37b9-46ae-465a-9320-d55e432ff224','','',NULL), +(16591,'Gallant \"Desert Shadow\" Rifle','Weapon','Medium','4f481fd2-8f6e-4c2b-ac19-0d45d79f63db','','','Manufacturer: Klaus & Werner\nItem Type: Assault Rifle\nClass: Energy (Laser)\n\nBattery Size: 45\nRate Of Fire: 450 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nDependable assault weapons never go out of style. Klaus & Werner maintains that tradition by unveiling the Gallant. This energy-based assault rifle is capable of providing accurate and sustained fire at targets up to medium range, while its high-capacity power system allows operators to fire considerably more shots per battery.'), +(16592,'ORIG_125a_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','54e71aba-f7d5-4b00-b1a6-9c3f97ebce07','','',NULL), +(16593,'ORC-mkX Helmet Righteous','Armor','Helmet','e9c0e96c-6f0c-4841-ab5d-6dcc498993e1','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThis version of CDS\' ORC-mkX combat armor has been modified from its original form. The mark X is part of CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility. Visor is AR crosshair compatible.'), +(16594,'Book','Misc','UNDEFINED','56f5d8f9-327c-4f3a-bf0c-f125132195ff','','',NULL), +(16595,'Door','Door','UNDEFINED','3de96637-bec3-4106-ad19-0e2ddaadb902','','',NULL), +(16596,'DockingTube_Fuel_Ports_DRAK_Corsair','DockingCollar','UNDEFINED','f2a3b1b2-158a-46ec-afa3-c008751fe0f1','','',NULL), +(16597,'BR-2 Shotgun Magazine (12 cap)','WeaponAttachment','Magazine','8ff2bb56-65e6-43b6-8516-c172efbe14bc','','','Item Type: Magazine\nCapacity: 12\n\nThis magazine for the Behring BR-2 shotgun holds twelve 12-gauge rounds.'), +(16598,'PH - hdh_boots_01_01_18','Char_Clothing_Feet','UNDEFINED','dca5f034-30ea-4108-9326-a9a4a28e0688','','','Built to last, the Paradan boots from Habidash are simple, sturdy, and reliable. The outer layer of the boots is made from a thick synthetic material that will protect the wearer from water, sand, or snow, while the inside features a pliable foam that ensures the boots will remain comfortable for years to come.'), +(16599,'Stud','Char_Head_Piercings','UNDEFINED','7e4eb95f-77d9-47a1-9a2a-391cade5930d','','',NULL), +(16600,'Food_box_noodle_01_super_a','Food','Box','8088c929-4ce1-4097-8654-9b2755fef071','','',NULL), +(16601,'SLAM','Cargo','Cargo','fbd58f35-559d-48bc-9358-d9a83a7b9618','','',NULL), +(16602,'Cargo_Comm_125x3_Vice_Slam','Cargo','Cargo','84b6a2d8-91c1-45cd-9148-51a26f90c50f','','',NULL), +(16603,'Flight Blade','FlightController','UNDEFINED','8162d38f-cb96-4657-acb9-7b5e7c26760d','','',NULL), +(16604,'Door Control','ControlPanel','DoorPart','18701442-0afd-4be8-9860-62b0306356cb','','',NULL), +(16605,'Falston Jumpsuit \"Covalex Edition\"','Char_Clothing_Torso_1','UNDEFINED','4d034751-c286-493e-a184-b6b4c24f633b','','','Carrying Capacity: 1K µSCU\n\nThe Falston jumpsuit has a high collar to guard against the elements, triple-reinforced stitching, and an extra soft interior lining because everyone deserves a bit of comfort.'), +(16606,'300 Series Electric Blue Paint','Paints','UNDEFINED','a60033cc-3f1a-4543-8a3c-8a3760965007','','','Electric Blue?paint job for the Origin 300 Series.'), +(16607,'SCItemDisplayScreen_ScreenSize_W86_H49_H99','Display','Default','c23b98da-1546-4633-bd90-5f29ce105356','','',NULL), +(16608,'Emod Stabilizer3','WeaponAttachment','Barrel','dc7a1310-5e36-445c-90a9-4acf61194d0c','','','Manufacturer: ArmaMod\nType: Energy Stabilizer\nAttachment Point: Barrel\nSize: 3\n\nVisual Recoil: -30%\n\nReduce energy weapon recoil with the Emod Stabilizer3. ArmaMod designed the attachment to improve both horizontal and vertical recoil to ensure a more precise shot.'), +(16609,'MPUV-1P TSB Flight Blade','FlightController','UNDEFINED','3701c987-4726-4a83-a72a-70a1e7c7f9e7','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Argo MPUV-1P with the TSB Flight Blade from Broad & Rabiee. By re-allocating lateral thrust resources, you can expect your ship deliver increased top speeds in the straightaway.'), +(16610,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','7b642cfb-ab8a-4ccb-a4a2-41f9ce6c5e66','','','Aegis Gladius - Decoy Launcher'), +(16611,'Carryable_TBO_FL_8SCU_Commodity_Organic','Cargo','Cargo','392d7361-4620-4d61-99f7-dfb58408fd7f','','',NULL), +(16612,'Myondo Knife','Weapon','Knife','dbba9ded-9920-4956-ac17-547f1f4226ca','','','Manufacturer: Banu\nItem Type: Knife\nClass: Melee\n\nSize: N/A\n\nThe Myondo is a distinct, curved blade with a notched finger-well and bejeweled pommel. The texture on both the blade and handle come from the unique forging process used by the Banu craftsmen who make them.'), +(16613,'Venture Undersuit Orange','Armor','Undersuit','57717878-5dda-4d27-a8ad-ef852b73dc2e','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(16614,'game_checker_piece_single_a','Gadget','UNDEFINED','08526473-c47f-4f95-bd39-507dcbf274f6','','',NULL), +(16615,'ORIG_125a_Winglet_Right','Misc','UNDEFINED','6fcde86b-d9d2-49f9-a3d1-8c50204fe2f6','','',NULL), +(16616,'ControlPanel_Screen_LightControl_16x9','ControlPanel','DoorPart','f08c9e78-ed49-4c24-a2e1-ecd581932d44','','',NULL), +(16617,'CF-227 Badger Repeater','Weapon','Gun','5453a817-dfd4-4143-aa11-840ca428540c','','','Manufacturer: Klaus & Werner\nItem Type: Laser Repeater\nSize: 2\n\nThe CF-227 Badger is Klaus & Werner’s dependable size two repeating laser. Its increased output and high rate of fire make it a solid contender in any fight.'), +(16618,'A23 Helmet Woodland','Armor','Helmet','9a26bc89-a35b-4317-adfd-ec4a285d7e72','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nThe A23 has been one of CDS\' mainstay helmet systems for years. Built out of impact-resistant composite technology and a hardened laminate faceplate, the A23 is perfect for hazardous environment and basic EVA operations. Visor is AR crosshair compatible.'), +(16619,'Internal Tank','QuantumFuelTank','QuantumFuel','fbdebc3e-4799-43ae-b776-6d6a2d4d3e4b','','',NULL), +(16620,'Libio Jacket Tan','Char_Clothing_Torso_1','UNDEFINED','52dd2b59-058f-4f56-864c-5df4ae18587e','','','Carrying Capacity: 1K µSCU\n\nOne of OpalSky\'s classic pullovers, the Libio features a two-tone asymmetrical pattern and polyweave blend to keep it elegant and striking every time you wear it.\n\nWomen\'s sizes currently out of stock.'), +(16621,'Seat','Usable','UNDEFINED','9ab8958b-3429-4b9c-bfbb-886e176fbc21','','',NULL), +(16622,'A03 \"Scorched\" Sniper Rifle','Weapon','Medium','7ce6eb8b-ede9-451a-83c9-52ec18f9a173','','','Manufacturer: Gemini\nItem Type: Sniper Rifle\nClass: Ballistic\n\nMagazine Size: 15\nRate Of Fire: 120 rpm\nEffective Range: 80 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nDevastate at distance with the A03 sniper rifle. Masterfully designed by Gemini\'s Tevarin co-founder Clem, the weapon balances a stylish and ergonomic design with a powerful ballistic punch. The A03 delivers an impressive rate of fire for a sniper rifle that sacrifices accuracy for urgency when successive shots are required. Considering its renowned design and unique features, it\'s easy to see why the A03 has become a favorite of security professionals across the empire. The Scorched edition features a unique flame patina.'), +(16623,'Caudillo Helmet (Modified)','Armor','Helmet','390f8e69-7d13-42f3-987d-13182ae07953','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThis version of CC\'s Conversions\' Caudillo helmet has been modified from its original form. Adept at surviving firefights in both atmosphere and in space, the Caudillo helmet provides solid head protection while offering the wearer the stylish look of classical armor thanks to its visually striking metal crest.'), +(16624,'Gallant \"Midnight\" Rifle','Weapon','Medium','09fd07d6-01f6-45a1-a7d3-bd4d35a076b8','','','Manufacturer: Klaus & Werner\nItem Type: Assault Rifle\nClass: Energy (Laser)\n\nBattery Size: 45\nRate Of Fire: 450 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nDependable assault weapons never go out of style. Klaus & Werner maintains that tradition by unveiling the Gallant. This energy-based assault rifle is capable of providing accurate and sustained fire at targets up to medium range, while its high-capacity power system allows operators to fire considerably more shots per battery.'), +(16625,'Seat','SeatAccess','UNDEFINED','c6fa58f2-8f3f-444f-afc3-3d3df8ba033c','','',NULL), +(16626,'rod_torso1_03x01x04_10Ports','ShopDisplay','Default','63c8cde5-2129-444a-85b2-dcae608f2eea','','',NULL), +(16627,'MSD-481 Missile Rack','MissileLauncher','MissileRack','6df9676c-5609-4d9c-a79b-0608f4b59e21','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 4\nMissiles: 8xS1\n\nBehring’s MSD-481 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 4 hardpoint for the reliable and effective launch of eight S1 missiles.'), +(16628,'RSI_Zeus_Thruster_VTOL_CL','ManneuverThruster','UNDEFINED','af6449e1-51c7-4657-90a6-3a1d3d507ff0','','',NULL), +(16629,'CK13-GID Seed Blend','Cargo','Small','d0bd43ef-f448-47ec-a373-98d251bd687f','','','These genetically-modified barley seeds were banned because of their aggressive growth and high-levels of cross-pollination that has frequently ravaged any neighboring plant life. However, the plant\'s high yield and ease of growth have continued to make it a sought-after commodity.'), +(16630,'Universal_stubble','Char_Head_Stubble','UNDEFINED','f2c511d6-ff1d-4275-a8c2-ae60fb259186','','',NULL), +(16631,'Ma\'s Ready to Eat Noodle Red','Food','Tin','e55e76ba-947b-4b9f-92d9-11e3c068e116','','','NDR: 36\nEffects: Dehydrating, Hyper-Metabolic\n\nMa\'s Ready to Eat Noodle Red has the classic spicy taste you love and the convenience your busy life demands.'), +(16632,'Door Control','ControlPanel','DoorPart','1478735f-4941-4a1c-914a-60401e2884a9','','',NULL), +(16633,'m_human_mannequin_utility_heavy','ShopDisplay','UNDEFINED','4673ecad-1fc3-4267-abf3-a60af6dcbb68','','',NULL), +(16634,'Hercules Starlifter Flight Jacket','Char_Clothing_Torso_1','UNDEFINED','f60a05d0-609f-4446-8a49-310bc6a777a6','','','Carrying Capacity: 2K µSCU\n\nA flight jacket dedicated to the Hercules Starlifter and its ability to handle more than twelve labors. Made from synthetic leather, the jacket is styled with two front pockets, a ribbed waistband and cuffs to guarantee a good fit. The front features a Crusader logo while the back sports the ship serenely soaring through the clouds.'), +(16635,'Pembroke Helmet RSI Edition (Modified)','Armor','Helmet','45df29fe-8932-40f1-843e-c0e2ce8371ae','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nThis version of Caldera\'s Pembroke helmet has been modified from its original form. Designed to extend the limits of Human endurance, the Pembroke RSI Edition was built to withstand the extreme heat of inhospitable high temperature environments. Based off of Caldera\'s best-in-class exploration armor platform, an advanced sensor suite intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. Also featuring a bespoke helmet that integrates with the cutting edge life support system, the special RSI Edition of the Pembroke ensures those seeking to cross bold new horizons do so in style.'), +(16636,'DRAK_Cutter_Winglets_Scout_Right','Misc','UNDEFINED','7992e929-97ad-4f10-ad00-65eeaad73826','','',NULL), +(16637,'Ham and Cheese Sandwich','Food','Junk','a9bca1fe-2662-495b-b524-5f80b262c60b','','','NDR: 38\nEffects: None\n\nSmoked ham and sharp cheddar on white bread.'), +(16638,'Counter_Bar_2m_DEPRECATED','Usable','UNDEFINED','9f5858d1-c088-4191-9036-fd85800d9b75','','',NULL), +(16639,'Nyman Jacket Tan','Char_Clothing_Torso_1','UNDEFINED','d3a17668-90c2-481a-9bf2-28b2a3966319','','','Carrying Capacity: 1K µSCU\n\nOpalSky\'s Nyman light pullover is perfect to have on hand when lounging poolside or on those chilly nights.'), +(16640,'MISC_Freelancer_Base_SCItem_Seat_Passenger_Left','Seat','UNDEFINED','5a84677f-090b-4b10-ad24-d0d8e7a4a6e2','','',NULL), +(16641,'Personal Storage','Cargo','UNDEFINED','f58600be-bdc0-4e04-888b-daff8dc6c7ab','','',NULL), +(16642,'Station','SeatAccess','UNDEFINED','0d4b6a00-868c-4efa-8564-8c45a9878c0a','','',NULL), +(16643,'AEGS_Reclaimer_Locker_Double','Player','UNDEFINED','78b8ce0f-50fe-4e9a-ac7f-e2dd1c4dd5cd','','',NULL), +(16644,'MacFlex Core Dark Red','Armor','Torso','e4a7d4e9-5f64-4b82-a926-580139d56968','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(16645,'TRGT. STATUS','Seat','UNDEFINED','f23e6207-7841-40a2-9833-55f25ddfddb4','','',NULL), +(16646,'Drink_bottle_gin_01_a','Drink','Bottle','aa5276ed-d95a-4887-9bef-acb10f68511f','','',NULL), +(16647,'Pico the Penguin Party Animal Orange Plushie','Misc','Personal','9297b3fd-b529-4930-ba38-9a74b39455c3','','','No one can shred the slopes or celebrate quite like Pico the Penguin. This version of the charming microTech mascot makes any occasion more fun and festive by sporting a vibrant orange jacket and playful party hat.'), +(16648,'ANVL_Hurricane_Dashboard_Pilot','SeatDashboard','UNDEFINED','d0e64fa7-60fd-44de-b7e4-b9e74971bf06','','',NULL), +(16649,'Sol-III Flight Suit Bombardier','Armor','Undersuit','38f40af3-5e26-4a76-82fb-f7ffbc38fd7f','','','Item Type: Flight Suit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nInspired by the original flight suits worn by Earth\'s Air Force, this replica stays true to the historical design while incorporating modern comforts.\n\nThe Bombardier edition is primarily a stone color with dark brown accents.'), +(16650,'ThermalFoam','Cargo','Cargo','0409ccc7-821b-4d6e-bd45-37f1252e23a5','','',NULL), +(16651,'Flight Blade','FlightController','UNDEFINED','74050567-b5d2-4a86-9850-45ab2cf456a9','','',NULL), +(16652,'Boomtube \"Mean Green\" Rocket Launcher','Weapon','Large','90dad4d1-76a8-4acf-9ef3-c843e396ed36','','','Manufacturer: Unknown\nItem Type: Launcher\nClass: Rocket\n \nMagazine Size: 1\nRate Of Fire: 20 rpm\nEffective Range: 100 m\n\nWho\'s got time to aim? Once you got enough room to clear the arming distance, just point the Boomtube launcher at whatever you don\'t like, squeeze the trigger, and watch the triple-grenade rocket thingy take care of the rest. Sometimes simple is best.\n\nThe Mean Green version features a green tint.'), +(16653,'Souvenirs','Cargo','Cargo','9aa4aaaa-78b5-454f-b99d-c3277125e41f','','',NULL), +(16654,'Door Control','Door','UNDEFINED','6c925ad3-cfda-4bad-9ed7-aa00f4ff72a4','','',NULL), +(16655,'Tempo Jacket Golden Brown','Char_Clothing_Torso_1','UNDEFINED','fb5f7ed4-46ec-47ef-90d3-ca5a8bf336be','','','Carrying Capacity: 1K µSCU\n\nFashionable, fun and flashy, the Tempo is a quilt studded jacket featuring a unique metallic finish to make you stand out from the crowd. 987 balanced this bold design with sections of synthetic leather and complementary colors ringing the waistband and inner collar.'), +(16656,'DockingTube_Fuel_Ports_MISC_Fury','DockingCollar','UNDEFINED','e94255c4-4036-4805-82d7-a5dd836e8bf8','','',NULL), +(16657,'Torite','Cargo','Cargo','815f2969-41a9-43a8-ad50-d515d222b8a4','','',NULL), +(16658,'Suckerpunch-L Cannon','Weapon','Gun','70a98c94-9252-4fd3-a673-5a584339e273','','','Manufacturer: Joker Engineering\nItem Type: Distortion Cannon\nSize: 2\n\nSilently strike from afar with the Suckerpunch. Joker\'s long-range size two distortion cannon drains a target\'s power system, leaving them helpless to defend against what you have planned next. An ideal choice for law enforcement, bounty hunters, and other non-lethal operations.'), +(16659,'Union Pants Teal','Char_Clothing_Legs','UNDEFINED','0ffbe6c7-c098-49bc-9f4a-ed0ff78f3e61','','','Carrying Capacity: 0.5K µSCU\n\n987 delivers comfort, durability, and style with the Union pants. Designed with a special, next-gen blend of high-performance synthetic fabrics, these pants are enduringly fashionable in these modern times.'), +(16660,'CNOU_Mustang_Delta_Thruster_Aux','MainThruster','FixedThruster','1abb8db9-f4d9-4b26-9cd2-c27fa62e7e48','','',NULL), +(16661,'Aranda Shirt Crusader Edition Purple/Ivory','Char_Clothing_Torso_0','UNDEFINED','13069c8c-dad2-436a-a46f-a0f4d56bb564','','','Fiore makes it easy to be fashionable with the Aranda. This unique top combines a dress shirt and waistcoat styled in complementary colors. The shirt comes with short sleeves cuffed at the elbows while the waistcoat features a small geometric flourish on the front pockets that\'s mirrored across the back. \n\nThe Crusader Edition was made specifically for employees of Crusader Industries.'), +(16662,'MISC_Prospector_Thruster_Retro_02','ManneuverThruster','FixedThruster','8c684741-c414-43ba-baa8-912aec870ad3','','',NULL), +(16663,'RN_Resource_Relay','Weapon','UNDEFINED','68c39589-6887-42b9-a6ab-86ea316fa202','','',NULL), +(16664,'DRAK_Vulture_CargoGrid_Main','CargoGrid','UNDEFINED','31d18ccc-9970-4414-a30c-d80b0013d0c5','','',NULL), +(16665,'Neoni Jami Helmet','Armor','Helmet','02729161-d872-4b37-baa9-830a40b48fcf','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nShow that you serve no master with the Neoni helmet. Drawing inspiration from monster myths and warrior cultures of old, this menacing visage courtesy of CC\'s Conversions features a dramatic paint job, fang-filled grin, and pointed holographic horns, providing protection and intimidation in one memorable helmet. Visor is AR crosshair compatible.'), +(16666,'Grassland Quasi Grazer Egg','Misc','Harvestable','c685ec4c-a44b-4283-a713-4c8c1485a60f','','','A gourmet egg that is renowned for its complex flavor, it is always in demand from restauranteurs and gourmands alike. The flavor of the egg can vary depending on diet and environment. After the eggs are laid, their shells chemically bond to specialized pouches located on the Quasi grazer\'s belly, where they are carried until they hatch.'), +(16667,'Internal Tank','QuantumFuelTank','QuantumFuel','d99c21a3-b1c9-4bb2-85aa-333d947d1906','','',NULL), +(16668,'Door Control','Door','UNDEFINED','efd8c1ed-6112-4c5f-a2dc-8ccd947cf102','','',NULL), +(16669,'Monde Core Hiro','Armor','Torso','992f3418-4a1b-42f8-b56c-d90bfc576472','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12.0 µSCU\nBackpacks: All\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints.\n\nThe Hiro edition features a clean white finish with dark gray accents.'), +(16670,'BANU_TachyonCannon_Barrel_S1','WeaponAttachment','Barrel','04b22419-d6f5-4664-8154-cf9fa70f69ea','','',NULL), +(16671,'Door Control','Door','UNDEFINED','a4c3405c-b77f-4316-8fc5-cfeef096e1ab','','',NULL), +(16672,'Door Control','Door','UNDEFINED','b8241227-dc8c-4b31-a50a-d81f9331671a','','',NULL), +(16673,'K7 Pants Orange','Char_Clothing_Legs','UNDEFINED','63101831-4900-4a61-9f90-9fea0679f138','','','Carrying Capacity: 3K µSCU\n\nDMC\'s K7 are an all-purpose cargo pants. Four easy access pockets provide extra storage while the triple-stitched polymer weave fabric is designed to withstand all kinds of weather conditions.'), +(16674,'Strata Core ArcCorp Edition','Armor','Torso','289af7c0-5fdf-44de-9af4-375fff44e1f4','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 15k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpack Compatibility: Light & Medium \n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The ArcCorp Edition was made specifically for the company.'), +(16675,'TrueDef-Pro Legs Gold/Grey/Black','Armor','Legs','d7a7cb0a-c39c-41a9-bb8e-fbbb555b1cf8','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.\"'), +(16676,'Door Control','Door','UNDEFINED','168d781e-e894-4c2a-aa30-b6443ad24d82','','',NULL), +(16677,'MRCK_S02_TMBL_Storm_AA_Custom','MissileLauncher','MissileRack','12ddeb1a-8c7e-4cf6-abae-c8e1dba62b26','','',NULL), +(16678,'Door Control','ControlPanel','DoorPart','5dc87377-45b5-461a-808a-fcab5f1de771','','',NULL), +(16679,'Table_Conference_8_1_Distribution_a','Usable','UNDEFINED','f62d1f0d-f175-459e-a2ea-37502035d02a','','',NULL), +(16680,'MISC_Starlancer_Seat_Access_Support_Right','SeatAccess','UNDEFINED','c5b72683-279f-4435-8e22-1cd9431bc251','','',NULL), +(16681,'Self Destruct Unit','SelfDestruct','UNDEFINED','88bd4909-630f-4b80-9b47-6e2224d8dc67','','','Self Destruct Unit'), +(16682,'Adiva Jacket Orange','Char_Clothing_Torso_1','UNDEFINED','ff67d4da-c106-4447-ba3e-3b0725e1b698','','','Carrying Capacity: 1K µSCU\n\nDefine your ultimate you. The Adiva is an asymmetrical pullover with bold mixed-materials and solid reinforced trim.'), +(16683,'Palatino Helmet Mark I','Armor','Helmet','bd63d750-e7ba-4670-8948-1d89fbe633bb','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. The fully-enclosed helmet comes equipped with a suite of sensors that connects the wearer to the wider world while providing supreme protection. Visor is AR crosshair compatible. The Mark I variant is primarily icy white with blue and red highlights.'), +(16684,'Carryable_1H_SQ_DataPad_Fluff_StormBreaker_DataFacility_Weapons','Misc','UNDEFINED','415aa0fd-6e6e-0adf-ea23-6f863f32ef97','','',NULL), +(16685,'SHIELDS','ShieldController','UNDEFINED','4325fde4-0888-4921-a80c-add166789880','','',NULL), +(16686,'Invictus Launch Week Coin','Misc','Utility','7f6a1b89-8c13-452c-85c9-13aed12db06f','','','This collectible coin features the UEE logo emblazoned on one face and the Invictus Launch Week logo on the reverse.'), +(16687,'Door Control','ControlPanel','DoorPart','45d7245a-c9ba-454c-8500-900f494e907f','','',NULL), +(16688,'LH86 \"Nightstalker\" Pistol','Weapon','Small','0ca6f4ee-4f0a-4a28-9546-43b94990d188','','','Manufacturer: Gemini \nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 25\nRate Of Fire: 1200 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe LH86 from Gemini is a compact kinetic handgun designed for personal defense and close-quarter combat. A keen eye on ergonomics and balance coupled with hardy construction makes this pistol a natural fit for any shooter in any number of hostile conditions. The LH86 also comes with Tritium low-light sight and a twenty-five round magazine.'), +(16689,'Carryable_2H_FL_Safe_1_c','Misc','UNDEFINED','f263349b-ed6e-40d2-8f84-9704e00222d3','','',NULL), +(16690,'Fractus Gloves Maroon','Char_Clothing_Hands','UNDEFINED','413c4a13-81fe-4a47-bc02-86909a9ecbe4','','','Developed for work sites, but refined enough for everyday use, the Fractus gloves layer StretchStrong fabric for a tight yet breathable fit. Reinforced knuckle plating and scaled fingertips provide extra durability and a stylish flourish.'), +(16691,'stand_shop_medium_b_QTDrive','ShopDisplay','UNDEFINED','dd9aa963-45d6-453e-b941-290fa018b948','','',NULL), +(16692,'Mug','Drink','UNDEFINED','6c4ad033-6688-4651-8ddf-f549e3905661','','','A small, handled drinking vessel made from insulating ceramic to help keep bevarages warm.'), +(16693,'ADP Legs Seagreen','Armor','Legs','f77d51be-57d7-4761-bb56-4d0c7bfe8107','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(16694,'CBH-3 Helmet Blue','Armor','Helmet','17aae62d-5415-4bae-9d06-b991860dd156','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. Visor is AR crosshair compatible.'), +(16695,'KRIG_l21_Wolf_Thruster_Mav_Capsule_Top','ManneuverThruster','UNDEFINED','dd2f037b-39d1-4961-bf13-e716e4ad7996','','',NULL), +(16696,'Basketball','Misc','UNDEFINED','0594f25a-24df-43f5-98e6-bddce00717b5','','',NULL), +(16697,'Ridgewalker Boots Dark Blue','Char_Clothing_Feet','UNDEFINED','32213912-dd36-4edd-8f07-ee57a2fc5deb','','','Functional style meets modern comfort with the Ridgewalker boots. Made with a lightweight yet durable synthetic leather, these boots feature a custom cushioned footbed and total traction soles that will keep you on your feet for hours. Fit for adventure or fashion the Ridgewalker boots are perfect for any occasion.'), +(16698,'Remote Turret','Turret','GunTurret','528ce55d-bb26-48a3-a95c-764574568598','','','Remote Turret'), +(16699,'HG-3 Jaeger (3x Holographic)','WeaponAttachment','IronSight','f6254ea2-d108-430d-8a9e-eb0135bfd521','','','Manufacturer: Klaus & Werner\nType: Holographic\nAttachment Point: Optic\nMagnification: 3x\nAim Time: +5%\nParallax: Low\nSize: 1\n\nFeaturing KLWE\'s proprietary NocturnaLite hardware, the HG-3 Jaeger provides enhanced vision in low-light situations.'), +(16700,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','a6e53126-ae86-4d81-ba35-a3d1ac3b4ae2','','','Joker Defcon - Noise Launcher'), +(16701,'Bed_Mattress_Nomad_CNOU','Seat','UNDEFINED','c7a15954-4efe-4604-b6cb-6430961de8bb','','',NULL), +(16702,'Edgewear Pants Olive','Char_Clothing_Legs','UNDEFINED','45fb823f-f82b-4d3a-92a8-05226435d4d0','','','Carrying Capacity: 4K µSCU\n\nStegman\'s Edgewear utility clothes are made from reinforced nylon weaves and lined with temperature-rated quilted technology to provide you with a little extra protection while on the jobsite. Double knees, reinforced joint pads and extra pockets add comfort and durability to this field-tested and worker-approved clothing line.'), +(16703,'INTK_DRAK_Corsair','FuelIntake','Fuel','65e6c051-5b41-48bb-97c2-5f6686e629c9','','',NULL), +(16704,'Invictus Hat Dark Green','Char_Clothing_Hat','UNDEFINED','c65f469b-cdf3-4537-b863-7a36b17bd5fe','','','Show your support for the Navy and the brave souls that serve the Empire with this classic cadet hat commemorating Invictus Launch Week.'), +(16705,'Lindinium','Cargo','Cargo','3afb4905-8c64-4e90-b426-0aa66aa4ae0e','','',NULL), +(16706,'HRST_LaserScatterGun_PowerArray_S3','WeaponAttachment','PowerArray','72981786-7fe8-4b78-9676-f61a2d74cd89','','',NULL), +(16707,'Venture Undersuit Executive','Armor','Undersuit','a138c00b-8c51-403c-b6f8-dbe7839f6e4b','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement. This exclusive executive edition features a dynamic black and gold color palette.'), +(16708,'Cargo_Comm_125x3_Mineral_Laranite_a','Cargo','Cargo','377ac075-a1a9-4973-ba23-f72fa2665375','','',NULL), +(16709,'Ketchup','Misc','UNDEFINED','70380ee7-e0b5-45f1-a0b8-90b20fe6ccb0','','',NULL), +(16710,'Maelstrom','PowerPlant','Power','662e4a88-d893-46fd-9fcc-e33e4b783fae','','','Item Type: Power Plant\nManufacturer: Aegis Dynamics\nSize: 2\nGrade: C\nClass: Military\n\nThis military-grade component has been put through the paces by the UEE Navy, so you know the Maelstrom can handle the havoc of battle.'), +(16711,'Defender Wanderer Livery','Paints','UNDEFINED','1c7867ff-d27d-46c4-a9d4-4c7adc86b8f5','','','The Wanderer livery features crisscrossing purple and grey lines over a platinum foundation. Inspired by the sacred Xi\'an gardens of R.aip?uang, famous for its trails that wander in surprising ways and encourage a focus on the journey instead of the destination.'), +(16712,'Toughlife Boots Grey','Char_Clothing_Feet','UNDEFINED','758633f1-9c0e-4031-99e3-fb91cc5bb743','','','Grindstone\'s done it again. The Toughlife is an all-purpose workboot designed to provide comfort, durability and quality. Featuring a reinforced composite toe and lasercut sole to maximize traction on all surfaces, Toughlife is sure to be your dependable boot, day in and day out.'), +(16713,'Tungsten (Ore)','Cargo','Cargo','ffa2e6fe-87cb-40a0-ba34-3954e54a865d','','',NULL), +(16714,'Hercules Starlifter Sylvan Livery','Paints','UNDEFINED','c665ffbe-8dac-4eda-8be2-c0ebcb8e151d','','','The Sylvan livery for the Hercules Starlifter is a distinct, no-nonsense matte green with light grey accents.'), +(16715,'Morozov-SH Arms','Armor','Arms','d995442f-ff27-4c84-a412-3b0a4bd6e491','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(16716,'Tussock Boots Gravel','Char_Clothing_Feet','UNDEFINED','520d2c1f-18a1-4f7c-b9bb-befc9ada004f','','','A proprietary blend of natural and artificial leather provides the Tussock Boot with unbeatable toughness, making it the perfect fit for both work and leisure.'), +(16717,'Sawtooth \"Sunspike\" Combat Knife','Weapon','Knife','ceef3147-5315-4ba2-ae03-7b6b840af2ba','','','Manufacturer: Kastak Arms\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nDon\'t end up on the wrong side of the Sawtooth combat knife. The blade embodies Kastak Arms\' aggressive styling and was designed to stab, slice, or saw. It features a strong drop tip for piercing, a straight edge for slicing, and a unique serrated edge with microblades for when you really need to rip through something. The blade is also made with a special ceramic polymer coating that enhances its strength and overall wear resistance. For the special Sunspike edition, an orange handle and aged finish was added to make the blade more visually distinct.'), +(16718,'SW16BR3 “Shredder” Repeater','Weapon','Gun','bbfbb4b5-c26e-4bee-9d41-9679e102e860','','','Manufacturer: Behring\nItem Type: Ballistic Repeater\nSize: 3\n\nBlast your way out of trouble with this Behring size three ballistic repeater. The SW16BR3 \"Shredder\" distributes heat across both barrels to keep it firing when needed most. The weapon\'s shot grouping and damage falloff make it most deadly at medium or close range.'), +(16719,'AImodule_ATC_LevskiATC01','AIModule','UNDEFINED','549f0056-9555-4aae-bee7-932c9afe42a6','','',NULL), +(16720,'Zeus Exploration Suit','Armor','Undersuit','342876db-5549-48b9-8071-081ca258bf52','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -150 / 175 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nThe Zeus Exploration Suit has been designed to honor some of the earliest space pioneers, the RSI crews who developed and tested the Zeus, the first commercial spacecraft. While the suit is styled to match those used centuries ago with attachments for a helmet and backpack, it contains all of the modern technology and conveniences expected by present-day explorers. The Zeus offers good resistance to harsh environments and excellent storage space for sample-collecting during EVAs.'), +(16721,'Cliffback T-Shirt Sienna','Char_Clothing_Torso_0','UNDEFINED','9f1437b2-f9cf-44c4-a171-e8dad0412053','','','Alejo Brothers\' classic loop tee with a spatter pattern.'), +(16722,'Ardent Boots Aqua','Char_Clothing_Feet','UNDEFINED','bdbd5f67-2345-4c9e-a334-8bb49c45d37e','','','Who says NorthStar can\'t keep it pro? The Ardent boot features a molded rubber sole and all-weather construction to withstand a constant battery from the elements.\n\nWomen\'s sizes currently out of stock.'), +(16723,'Odyssey II Helmet Red','Armor','Helmet','c63eada9-f1d9-4217-800a-5f93df5fad6f','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(16724,'Gadget_Cabinet_kegr_fire_extinguisher_01_NoRN_med_high','Usable','UNDEFINED','ffcab784-1d3e-4948-bf37-1fe36f7e32d3','','',NULL), +(16725,'RCMBNT-XTL-2','InventoryContainer','Cargo','4d0b2ad9-d49f-4877-896d-84fcb78ddc38','','','An imprint recombinant sample created from CTLST-XTL and REAGENT-02 as part of Dr. Logan Jorrit\'s Project Hyperion experiment.'), +(16726,'Balboa Shirt','Char_Clothing_Torso_0','UNDEFINED','4f13fa60-7837-46ec-ae16-6862e2676bda','','','A partial zip pullover shirt with mesh arm accents and a button collar. Escar Limited\'s Balboa line delivers cutting edge style suitable for any system or situation. \n\nWomen\'s sizes currently out of stock.   '), +(16727,'UDF Hat','Char_Clothing_Hat','UNDEFINED','6de4f3d6-00c4-4b3b-bc63-b53f482d138e','','','A blue and red cadet hat with Unified Distribution Management\'s name and logo emblazoned across the front and back panels.'), +(16728,'ORIG_125a_Thruster_Main_Right','MainThruster','FixedThruster','4d37f3e0-7fbd-4ee6-a6e1-57b00b17efc6','','',NULL), +(16729,'Seat','SeatAccess','UNDEFINED','01008933-2ecb-4dac-a9a2-e2b67d72a1e9','','',NULL), +(16730,'RSI_Aurora_LX_Thruster_Main','MainThruster','FixedThruster','e49f311e-aa48-434c-af4e-4c882a8c31af','','',NULL), +(16731,'Bed','Usable','UNDEFINED','c466d9f6-edc2-4ea1-adf8-f43d0e10e57e','','',NULL), +(16732,'Ma\'s Ready to Eat Vegetable Soup','Food','Tin','43e66339-c3bc-42c4-935c-a856e1c97dc0','','','NDR: 36\nEffects: Dehydrating, Hyper-Metabolic\n\nMa\'s Ready to Eat Vegetable Soup has the classic taste you love and the convenience your busy life demands.'), +(16733,'Morozov-SH-C Helmet Spite','Armor','Helmet','6fd82ec0-f120-4b94-aa18-5ff81001259f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(16734,'TRGT. STATUS','Seat','UNDEFINED','7f1b6642-ddcf-40a7-a78a-570f76fda806','','',NULL), +(16735,'Klein-S1 Mining Laser','Mining','Gun','e6b284b9-456a-4444-b5fc-7c33bf5a6945','','','Manufacturer: Shubin Interstellar\nItem Type: Mining Laser \nSize: 1\n\nOptimal Range: 45m\nMaximum Range: 135m\n\nMining Laser Power: 378 - 2220\nExtraction Laser Power: 2220\n\nModule Slots: 0\n\nResistance: -45%\nOptimal Charge Window Size: +20%\nInert Material Level: -30%\n\nLaser Instability: +35%\n\nShubin designed the Klein-S1 to generate a powerful laser that makes mining faster. This power incurs additional risk by boosting a laser\'s instability, but if used correctly, the Klein-S1 can quickly reap rewards for the careful miner.'), +(16736,'MISC_Fury_Thruster_Main','MainThruster','JointThruster','00003571-11df-4b9d-a30d-1392d2a4bde7','','',NULL), +(16737,'Door Control','ControlPanel','DoorPart','1c42bd9a-5902-4fec-b439-63ba81a94f64','','',NULL), +(16738,'RSI_Apollo_Thruster_Mav','ManneuverThruster','FixedThruster','4cdc642a-aa2d-be4d-25b5-752c35aea293','','',NULL), +(16739,'RSI_Aurora_GS_ES_Thruster_Retro_Right','MainThruster','FixedThruster','93d9672c-0484-479f-8f35-7ac627ef148a','','',NULL), +(16740,'PAB-1 Legs Blue','Armor','Legs','cd2815a5-bc11-4327-8c8c-ad7a1db289e7','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(16741,'Arrow Tan and Green Livery','Paints','UNDEFINED','feb36504-08ad-48a5-94b1-ef67b264b0b2','','','Customize your Arrow with this multi-tone tan and green livery featuring gold accents.'), +(16742,'Cliffback T-Shirt Orange','Char_Clothing_Torso_0','UNDEFINED','a51139f3-4547-4ba8-adfe-e6dbbbdd85fa','','','Alejo Brothers\' classic loop tee with a spatter pattern.'), +(16743,'Molina Ventilation Filters','Cargo','Cargo','2b111c84-5828-481a-9d50-0acebcc3b4b7','','','Special filters developed by Gyson to replace faulty units and purify the air of Molina Mold spores.'), +(16744,'Remote Turret','Turret','GunTurret','19677aee-ec86-4852-9faa-204680484f43','','','Remote Turret'), +(16745,'GasCanister','Usable','UNDEFINED','c443fadc-7f54-41f9-80af-0e28eb5ef7d3','','',NULL), +(16746,'Uncut SLAM','Cargo','Cargo','c3888bc5-2e65-4416-8f0e-13e4ac118d0c','','',NULL), +(16747,'Carryable_2H_FL_Container_Anim_grin_multitool_1_a','Misc','UNDEFINED','2b7043b5-c4c9-47ea-af7f-a3fa468c0f0c','','',NULL), +(16748,'ORIG_135c_CargoGrid','CargoGrid','UNDEFINED','57ca31b4-99ab-4639-ac90-b2926cf1d719','','',NULL), +(16749,'Vanguard Clawed Steel Livery','Paints','UNDEFINED','9568282c-af1c-4b74-a6ed-e1b638c9f67b','','','The Clawed Steel livery blends several shades of blue for a livery that beautifully breaks up the Vanguard\'s silhouette.'), +(16750,'Internal Tank','QuantumFuelTank','QuantumFuel','5cb18d3b-072b-40e3-95f7-d9b85eef55b8','','',NULL), +(16751,'Morozov-SH Helmet Spitfire','Armor','Helmet','da45f9e2-bf39-4fca-8a24-35fe88dfe102','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(16752,'Morozov-SH Helmet Aftershock','Armor','Helmet','821a307e-63e9-4021-8d55-52ec35c9e592','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(16753,'Door Control','Door','UNDEFINED','b7643272-dbf8-4b5c-8ff6-3276af1d997b','','',NULL), +(16754,'FL-11 Cannon','Weapon','Gun','3d562dad-88f9-43aa-8ed5-616bf6634ff9','','','Manufacturer: Kroneg\nItem Type: Laser Cannon\nSize: 1\n\nDeliver massive damage from a distance with Kroneg\'s FL line of laser cannons. The FL-11 might shoot slow but provides considerable firepower for a size one weapon.'), +(16755,'Door','Door','UNDEFINED','659ac989-5185-45c2-a466-1cc46060413a','','',NULL), +(16756,'ESPR_Talon_Thruster_Mav_Top','ManneuverThruster','JointThruster','e5cad152-32ea-469c-90f9-b6b38d62518a','','',NULL), +(16757,'Railing_Straight_4m_Lowtech_Guardrail_E','Usable','UNDEFINED','d10a59f9-c153-42a1-8177-7b11a1db4bff','','',NULL), +(16758,'Internal Tank','QuantumFuelTank','QuantumFuel','bd456886-c560-4deb-8449-c4c722e613b6','','',NULL), +(16759,'Door Control','ControlPanel','DoorPart','95a0585c-9def-49c4-b30e-036815facd33','','',NULL), +(16760,'MISC_Starlancer_InnerBtn','Elevator','UNDEFINED','d6a82656-b3f5-49d8-8b2e-b0b3d66f2b55','','',NULL), +(16761,'MISC_Freelancer_Thruster_Main','MainThruster','FixedThruster','db6cf741-c92d-423e-b521-e7ae7fe32bac','','',NULL), +(16762,'f_human_mannequin_slaver_heavy','ShopDisplay','UNDEFINED','6ea2184f-6d02-45a6-9a50-cdaeef879fa6','','',NULL), +(16763,'Overlord Core Switchback','Armor','Torso','a65ebe67-f726-4901-ac90-6d1e914102d3','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12.0 µSCU\nBackpacks: All\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.'), +(16764,'Carryable_1H_SQ_Datapad_Fluff_ContestedZone','Misc','UNDEFINED','c6bb395c-3bd9-4823-a2ce-7b09a0ee1da6','','',NULL), +(16765,'Pitambu','Misc','UNDEFINED','4bc6b9ed-eac8-4c70-88d8-58743fed5bda','','',NULL), +(16766,'RSI_Constellation_Aquila_Thruster_Main','MainThruster','FixedThruster','cdde51ef-d7f4-46a8-9c90-00b260f26cab','','',NULL), +(16767,'ANVL_Paladin_Thruster_Mav_Top','ManneuverThruster','UNDEFINED','28e9185a-216c-4cb8-a003-ec8a4aa0b519','','',NULL), +(16768,'ExerciseSpot_Floor_DEPRECATED','Usable','UNDEFINED','72af5f6c-4e31-42e3-a941-74e2945c252b','','',NULL), +(16769,'Seat','Usable','UNDEFINED','c2e4c119-663c-4a84-8f20-d371696e6ba9','','',NULL), +(16770,'Door_Ship_Sensor_Proximity_Occupied','Sensor','DoorPart','66407f4e-5cbb-4947-8909-4942f99a5e2f','','',NULL), +(16771,'Maze','Cargo','Cargo','0d4e46ac-f795-4216-948f-345ab7b30209','','',NULL), +(16772,'Door','Door','UNDEFINED','595a6306-b4e8-4433-b71d-3d9cae233990','','',NULL), +(16773,'Magstrand EMP Generator','EMP','UNDEFINED','3d521e8c-4249-4987-b544-d32634ab0d2a','','','Item Type: Burst Generator\nManufacturer: RSI\nSize: 4\n\nThe Magstrand from RSI is an EMP burst generator designed specifically for the Scorpius Antares. When fully charged, the device creates a powerful wave of distortion damage that can disable electric components within its blast radius.'), +(16774,'Carryable_TBO_FL_4SCU_Commodity_Organic','Cargo','Cargo','0cade6a6-2bca-4403-b67e-aedb1e5e804f','','',NULL), +(16775,'Door Control','Door','UNDEFINED','d5a1bb80-61ce-4585-9fa2-5c2bbb5b3043','','',NULL), +(16776,'RSI_Polaris_Dashboard_Captain','SeatDashboard','UNDEFINED','e4dfb88e-d6f8-4b7b-8c00-bd703e044ebd','','',NULL), +(16777,'INTK_GAMA_Syulen','FuelIntake','Fuel','e9b1b3d3-819a-40c6-ac34-bac01bb97541','','',NULL), +(16778,'Manned Turret','TurretBase','MannedTurret','67f4791c-2164-4415-9a1b-1a37ac497f59','','',NULL), +(16779,'Stoic Suppressor1','WeaponAttachment','Barrel','003db92d-65ad-496e-baa8-e061ab6f1392','','','Manufacturer: ArmaMod\nType: Suppressor\nAttachment Point: Barrel\nSize: 1\n\nSpread: +20%\nHorizontal Aim Recoil: -45%\nVertical Aim Recoil: -15%\nVisual Recoil: -33%\nRecoil Time: -20%\nAudible Range: -33%\n\nFeaturing a more spacious chamber that widens shot spread, the Stoic Suppressor1\'s increased size reduces noise while allowing for superior recoil control.'), +(16780,'DRAK_Cutlass_Steel_Thruster_Maneuver_Outer_Bot','ManneuverThruster','JointThruster','3697f16c-19f4-40b7-958f-23097b73762a','','',NULL), +(16781,'Grappler Gloves Smoke','Char_Clothing_Hands','UNDEFINED','9e7b253c-f2c4-4923-9cec-246a97fe6dbc','','','Originally made for open-canopy racers, the Grappler gloves became beloved for their versatility and durability. Their mix of leather and synthetic fabrics make for a lightweight and warm wear. They also feature an adjustable strap to guarantee the perfect fit, and a special tactile fingertip design so wearers don\'t have to remove the gloves to interact with screens.'), +(16782,'tool_power_1_drill_a','Misc','UNDEFINED','98792dc0-9275-429d-aac5-0d5165307b26','','',NULL), +(16783,'Drink_bottle_radegast_01_b','Drink','Bottle','fee111ae-5f36-4e38-8199-7ac7552ce254','','',NULL), +(16784,'Kama','QuantumDrive','UNDEFINED','e2599be8-160c-4d20-87d0-3c080109842d','','','Item Type: Quantum Drive\nManufacturer: Juno Starwerk \nSize: 3\nGrade: C\nClass: Industrial\n\nThe Kama from Juno Starwerk has won more “Fan Favorite” reader’s poll from ‘Long Haul Quarterly’ than any other industrial quantum drive in its class.'), +(16785,'Personal Storage','Cargo','UNDEFINED','f6205e74-b3d9-4933-bc9f-4ede10222de5','','',NULL), +(16786,'BR-2 Shotgun Magazine (12 cap)','WeaponAttachment','Magazine','85172716-2759-4dba-9c99-a9c64dd06143','','','Item Type: Magazine\nCapacity: 12\n\nThis magazine for the Behring BR-2 shotgun holds twelve 12-gauge rounds.'), +(16787,'SHIELDS','ShieldController','UNDEFINED','e8e14773-8908-4ba6-9bf6-4c7637557a26','','',NULL), +(16788,'Spartan Polar Camo Livery','Paints','UNDEFINED','b0460b71-b294-47ff-b8d7-c5381c60ef2a','','','Modify your Spartan with this white and grey camo livery specifically designed for the 2951 IAE.'), +(16789,'Luminalia \' 55 Coin','Misc','Utility','437fe245-16e7-471d-bbc4-0eb6e0b2483f','','','Have an extra happy Luminalia celebration with this green and red tinted coin featuring season greetings in both common and Banu on one side, while the other features the year.'), +(16790,'Redeemer TSB Flight Blade','FlightController','UNDEFINED','aa13256a-403c-49ef-8f4e-3f3c112c5969','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Aegis Redeemer with the TSB Flight Blade from Broad & Rabiee. By re-allocating lateral thrust resources, you can expect your ship deliver increased top speeds in the straightaway.'), +(16791,'f_human_mannequin_slaver_heavy_02','ShopDisplay','UNDEFINED','5499d77f-63dd-479f-969d-1ce6b7f06c06','','',NULL), +(16792,'ANVL_Door_Decal_Carrack_Gravity','Decal','DoorPart','3bc00983-7c62-4830-8858-36cc7050545c','','',NULL), +(16793,'ADP Legs Twilight','Armor','Legs','b3ee21ef-a873-464d-a171-61f29cc40239','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(16794,'Gladius Dunlevy Model','Misc','Flair_Wall_Picture','818e49c0-70d5-402d-9c6d-dde6ecfad9ed','','','This exquisitely detailed Gladius model honors the light fighter that\'s been protecting the UEE for centuries. Soaring above a stand featuring the UEE logo and ship\'s name, the Dunlevy variant of the Gladius was crafted to honor Captain Alexandra Dunlevy, who shaped the course of the Navy\'s elite Squadron 42.'), +(16795,'ARMR_ANVL_Asgard','Armor','Medium','b1666cb9-386b-444e-a22f-061958078379','','',NULL), +(16796,'Neon','Cargo','Cargo','e6ac1113-e3ff-401f-bc1f-4e54c556bfda','','',NULL), +(16797,'XIAN_Nox_CML_Flare','WeaponDefensive','CountermeasureLauncher','f6378346-1c36-465b-af12-0a0bd7313f79','','','@LOC_PLACEHOLDER'), +(16798,'Carryable_2H_FL_crate_weapon_3_01x005x00375_a','Misc','UNDEFINED','faad403f-e30e-43a1-8a1e-3fd3073a5f79','','',NULL), +(16799,'Tekaw Pants Crimson','Char_Clothing_Legs','UNDEFINED','0a4ab374-648d-4ebc-87eb-43c4a7ed3173','','','Carrying Capacity: 1K µSCU\n\nComfortable enough to wear all day yet designed to thrive under harsh conditions, the Tekaw pants are perfect whether you\'re on or off duty. Their stylish yet durable design includes a water-wicking coating and padded shins guards with wrappings that ensure a snug fit.'), +(16800,'Copper','Cargo','Cargo','a9295414-da05-4c2a-be93-1dae8b178ab9','','',NULL), +(16801,'Edgewear Pants Grey','Char_Clothing_Legs','UNDEFINED','c563262d-6c34-481e-bf39-0e82a76930bc','','','Carrying Capacity: 4K µSCU\n\nStegman\'s Edgewear utility clothes are made from reinforced nylon weaves and lined with temperature-rated quilted technology to provide you with a little extra protection while on the jobsite. Double knees, reinforced joint pads and extra pockets add comfort and durability to this field-tested and worker-approved clothing line.'), +(16802,'Seat','Usable','UNDEFINED','2c5ceb0b-ceed-4319-80a7-b7b0ca3423bb','','',NULL), +(16803,'Thrust','Cargo','Cargo','ca66e3e8-e37a-4e55-b19b-a6d5c412a0ee','','',NULL), +(16804,'Strata Helmet Calico','Armor','Helmet','14e936e1-938c-46d6-8552-4958b43e33d2','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design features high quality materials and a next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Calico edition is cream with black highlights.'), +(16805,'Door Control','Door','UNDEFINED','03636749-c12d-48b7-be78-fb02161a1cca','','',NULL), +(16806,'Datapad','Misc','Gadget','8dad3e63-4ce9-498c-a3f7-6fe78f9dbae3','','','A portable tablet computing device featuring a touchscreen display.'), +(16807,'Herald Polar Livery','Paints','UNDEFINED','1d6e2dc1-b85c-4558-8949-29d13d05ce35','','','Modify your Herald with this white and grey livery specifically designed for the 2951 IAE.'), +(16808,'Carryable_1H_CY_bottle_tequila_pourable_1_a','Misc','UNDEFINED','0a4cdc10-39a5-4fee-adcc-c2b5dc0a73a7','','',NULL), +(16809,'Pyro RYT \"Hurston\" Multi-Tool','Weapon','Gadget','ed9ecf85-2dbe-4859-99ae-49b5a108562c','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier. This special edition features Hurston branding.'), +(16810,'Custodian SMG Magazine (60 cap)','WeaponAttachment','Magazine','31b73bfe-da55-4cb0-a19d-1c6543ca1fb9','','','Item Type: Battery\nCapacity: 60\n\nReplacement battery for the Custodian, Kastak Arms\' compact energy snub rifle.'), +(16811,'SCItemDisplayScreen_ATLS_Jump','Display','Default','aa330a39-8080-4fef-8514-b58394b2c44a','','',NULL), +(16812,'Raw Ouratite','Cargo','Cargo','e98a8d9e-9ba2-495a-a3af-4a6b52f6f05f','','',NULL), +(16813,'Venture Helmet Grey','Armor','Helmet','90361b62-f3ae-4a7d-9b57-ae2fd8addf8f','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover.'), +(16814,'Hardline Hard Hat White/Blue','Char_Clothing_Hat','UNDEFINED','0ca3b8d8-71a9-4b25-b67a-25732558fd59','','','Stegman\'s Hardline 7800 is the latest in a proud line of safety wear. The Hardline is constructed from the same high-density plastics used in some body armor.'), +(16815,'Pyro RYT Multi-Tool','Weapon','Gadget','995ece66-0103-4e5c-bcc1-826827cd6c29','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier.'), +(16816,'ADP Core Imperial','Armor','Torso','f35fa325-9bb1-4895-bfd6-cf3f36a3141b','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(16817,'Door Control','Door','UNDEFINED','bd1e8aa3-91a5-48c7-bc17-51b32e8a8d5d','','',NULL), +(16818,'Sootho Gloves Mandalay','Char_Clothing_Hands','UNDEFINED','d2d58fb0-47ce-4f80-948d-675f1168f298','','','Pros at keeping your hands safe without sacrificing dexterity, the slip-resistant Sootho gloves deliver solid protection and lasting warmth during chilly or hostile conditions. The tough synthetic leather breaks in well and will stand up to years of frequent use.'), +(16819,'Fieldsbury Dark Bear Helmet Orange','Armor','Helmet','762b1a5c-55c5-4976-8633-c438aa4d811a','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -40 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nCelebrate Day of the Vara in sinister style with this officially licensed Fieldsbury Dark Bear helmet. This twisted version of the Fieldsbury Bear mascot launched a seasonal soda flavor before being co-opted into a series of high-profile pranks. Ever since, the bear\'s big, toothy grin and off-set flickering eyes have become a standard sight at Day of the Vara celebrations. Now CC\'s Conversions has designed and delivered an official, high quality reproduction of this iconic mascot, available in six striking colors.'), +(16820,'Maze','Cargo','Cargo','d8419c32-46c6-4e29-a9ba-c21486db48ba','','',NULL), +(16821,'Seat','SeatAccess','UNDEFINED','12275826-f755-456c-99f6-15645e7b74c6','','',NULL), +(16822,'AImodule_Pyro','AIModule','UNDEFINED','e9dd3ae4-85a3-4b58-ac82-a2d0f90efe38','','',NULL), +(16823,'AEGS_Sabre_Firebird_Winglet_Right_Collector','Misc','UNDEFINED','d4d86568-7ebb-4eb9-bc0b-24fc92b81bc3','','',NULL), +(16824,'Door Control','ControlPanel','DoorPart','c4cb0695-caad-448e-a8e4-0600677174f7','','',NULL), +(16825,'Constellation Polar Livery','Paints','UNDEFINED','cbe3918f-5f51-4e79-8ead-0a8bdc98f0ec','','','Modify your Constellation with this white and grey camo livery specifically designed for the 2951 IAE.'), +(16826,'RSI_Polaris_Thruster_Mav_Joint','ManneuverThruster','UNDEFINED','69c7156b-cd94-452c-8060-e825a3bd0717','','',NULL), +(16827,'Deadhead Helmet','Armor','Helmet','6ef9afd3-708c-464a-a142-b8a548a6b4bb','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\n\nRemind your enemies that death is coming with the Deadhead helmet. In place of a visor, the ghastly visage of a Human skull, lit from within by an infernal glow, is sure to send any opponent running.'), +(16828,'Armor_Crate_CZ_Firerat_009','Usable','UNDEFINED','c3bd5115-0343-4a98-bb18-0b8d93383408','','',NULL), +(16829,'Bengal_BallisticGatling_PowerArray_S6','WeaponAttachment','PowerArray','d0f8adfb-acb4-4704-b6d0-a587ed3cce40','','',NULL), +(16830,'Caudillo Helmet Ghost White','Armor','Helmet','71184ff8-6341-4f42-8dd0-64998b538bb5','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nAdept at surviving firefights in both atmosphere and in space, the Caudillo helmet provides solid head protection while offering the wearer the stylish look of classical armor thanks to its visually striking metal crest. The Ghost White variant is being offered as a limited edition run.'), +(16831,'IFR-MS7 Turret','TurretBase','MannedTurret','731fcdd3-6a77-4880-b10d-4c7bf639c241','','','Item Type: Turret\nManufacturer: Aegis Dynamics\nSize: 7\n\nThis manned turret, designed by Aegis to be used in tandem with the IFR-532 missile rack, is bespoke to the Idris frigate.'), +(16832,'Palisade','Shield','UNDEFINED','15ebdff2-2724-4fb3-abbf-db20e150da77','','','Item Type: Shield Generator\nManufacturer: Basilisk\nSize: 1\nGrade: A\nClass: Industrial\n\nNo other small shield generator can match the durability of the Basilisk Palisade. This top-of-the-line industrial component forfeits stealth for the ability to absorb an unrivaled amount of damage.'), +(16833,'Aves Shrike Arms','Armor','Arms','6cba6778-4e76-4bbb-9135-ca5a787e7228','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nHonor and embody the Tevarin aesthetic with the Aves Shrike armor; manufactured with white, blue, magenta, grey, and black plating to perfectly evoke the shape language imbued into their iconic ships. This medium armor from CC\'s Conversions is both sensational and practical, providing solid protection while keeping you light on your feet. When paired with the Aves Shrike helmet, the suit combines for a striking and unforgettable look.'), +(16834,'Weapon_Rack','Usable','UNDEFINED','bb95a8c1-feb5-4068-95cb-8a2aa2ff77db','','',NULL), +(16835,'Odyssey II Undersuit Green/Black','Armor','Undersuit','52348e37-33bc-46c0-8278-d5708ca7459b','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe latest generation of RSI\'s classic Odyssey undersuit features a new rugged design capable of withstanding the harshest of conditions in space or planetside. Built using the latest microweave technology, the Odyssey II undersuit provides hours of comfort in locations that are anything but comfortable.'), +(16836,'Radar_Display_Zeus','Display','UNDEFINED','6bfbdff7-08b5-49c8-93e9-dd58e8d5ae8f','','',NULL), +(16837,'GATS_BallisticCannon_FiringMechanism_S2','WeaponAttachment','FiringMechanism','4a9f9853-49b5-4b00-96e7-86ae9291b6c8','','',NULL), +(16838,'recorder_audio_1_a','Misc','UNDEFINED','fe2b6ef9-10b9-4776-bc4c-7f93ea7e8d56','','',NULL), +(16839,'ReadyMeal (Bean and Rice Burrito)','Food','Sachet','293c4ba5-e344-4b69-b63b-2fd79eb94084','','','NDR: 60\nEffects: None\n\nThe classic taste that\'s all you need, this Bean and Rice Burrito from ReadyMeal features lavash bread wrapped around hearty beans and seasoned rice all ready-to-eat in seconds.'), +(16840,'AcryliPlex Composite','Cargo','Cargo','c7d0f71a-580c-4a5c-a3df-03a76481ba29','','','This composite is a moldable material used in the construction of explosives. In addition to being commonly used in demolition applications for heavy industry and mining, it is also used to create small potent warheads. Care must be taken while transporting larger quantities of the composite as it is impact and heat sensitive.'), +(16841,'m_human_mannequin_base_armor_STORMTEST','ShopDisplay','UNDEFINED','c4f083e5-0874-406e-b9dd-45ffaa267057','','',NULL), +(16842,'APAR_BallisticScatterGun_S6','Weapon','Gun','4e925f84-6751-45e7-ad6c-b48e8ad9da85','','','@LOC_PLACEHOLDER'), +(16843,'Door Control','Door','UNDEFINED','96780aaa-6f9e-4889-a039-5598cd9f7273','','',NULL), +(16844,'Deo Shirt Dark Green','Char_Clothing_Torso_0','UNDEFINED','9928de35-4e7d-4210-985f-0daf4f55e152','','','Fiore\'s Deo is a slim cut work shirt that\'s as practical as it is timeless. Featuring a high collar and metal neck clasp, the Deo has been a mainstay in business attire.\n\nWomen\'s sizes currently out of stock.'), +(16845,'DRAK_Cutter_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','d80f6a0d-5c60-40d6-b4e8-9d9c60b47292','','',NULL), +(16846,'MISC_Fortune_Thruster_Main_Rear','MainThruster','FixedThruster','18277b13-0111-4a78-82b9-297e70f94b16','','',NULL), +(16847,'MISC Freelancer MIS Missile Launcher','MissileLauncher','MissileRack','f909146e-daf1-4a04-ba5b-3c0c291644db','','','MISC Freelancer MIS Missile Launcher'), +(16848,'ANVL_Door_Decal_Carrack_Hangar','Decal','DoorPart','9f5e2ce2-8493-4891-849d-17c9e9ac07be','','',NULL), +(16849,'Flight Blade','FlightController','UNDEFINED','d3955065-d539-4318-81f1-58426a4669ba','','',NULL), +(16850,'Canelo Pants Twilight','Char_Clothing_Legs','UNDEFINED','6a7f3a81-fe02-4ba7-b7be-67ae0630a285','','','Carrying Capacity: 400 µSCU\n\nWhether you need them for work, play, or rest, the adaptable Canelo Pants from Habidash are guaranteed to fit the bill. Its convenient pockets allow you to carry all your essentials, and its stain-resistant fabric is comfortable enough to be worn for hours.'), +(16851,'Merlin Ship Armor','Armor','Medium','b932c185-f4f5-417b-9673-3c0d841f99a9','','','Merlin Ship Armor'), +(16852,'Clempt Pants White','Char_Clothing_Legs','UNDEFINED','5d253a8c-6e90-4db4-972e-31947678d5b6','','','Carrying Capacity: 2K µSCU\n\nStegman\'s factory pants have been taken to the next level with the Clempt line. These rugged all-purpose pants come with double knees for extra comfort and protection and are made from tough composite weave fabric to last as long as the work needs.'), +(16853,'Util_A_Airlock_Door_Int','Door','AirlockPart','0facfa7b-ca3c-46fb-90b8-ca63146c22ea','','',NULL), +(16854,'Access','SeatAccess','UNDEFINED','d3f4204c-ae2b-4579-9575-ec5d749eadc3','','',NULL), +(16855,'Lynx Legs Dark Red','Armor','Legs','04ae0ab4-1398-4d3f-ba84-fc69ab50f255','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(16856,'MacFlex Legs Imperial','Armor','Legs','7fb1eec3-1111-42de-bf6f-671e36ddf518','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(16857,'Inquisitor Arms Base','Armor','Arms','3b977c63-9a6b-45b8-ad94-98568f7aff79','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(16858,'Razorback Pants Seagreen','Char_Clothing_Legs','UNDEFINED','8f684f3a-c270-42c0-9ffe-eae8e3253659','','','Carrying Capacity: 2K µSCU\n\nDMC\'s Razorback pants are made to be worn. Built from industrial quality material, they feature reinforced kneepads to prevent tears on the job and stay rugged yet comfortable.\n\nWomen\'s sizes currently out of stock.'), +(16859,'Balor HCH Helmet White','Armor','Helmet','046ced2a-fe82-46f9-b5cf-c3d0942ab4a5','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. Visor is AR crosshair compatible.'), +(16860,'un_portable_light_1_b','Misc','UNDEFINED','d1274941-e522-422b-aa83-1c6c642fe8d3','','',NULL), +(16861,'Cargo_Comm_125x3_Consumer_Goods_a','Cargo','Cargo','bf975db0-9dcf-49d3-9d7a-7c3e6bd4a42a','','',NULL), +(16862,'300 Series Amber Wave Paint','Paints','UNDEFINED','07da3333-dc01-440f-9b4e-2e837d080fb1','','','Amber Wave paint job for the Origin 350r.'), +(16863,'NONE_LaserRepeater_FiringMechanism_S1','WeaponAttachment','FiringMechanism','43ec8f75-3a3f-413b-972c-eb5a5700cb2f','','',NULL), +(16864,'Get Up Coffee (Cinnamon)','Drink','Can','e28ffc3b-f67c-4564-8653-7d388161527c','','','HEI: 15\nEffects: Dehydrating, Cognitive Boosting\n\nGet Up Coffee is roasted with care to ensure a smooth blend of rich coffee flavor brewed to perfection. A touch of cinnamon is the perfect accent to awaken your taste buds even more.'), +(16865,'Door Control','Door','UNDEFINED','c907cb8e-32d9-4849-963a-b6aba330964f','','',NULL), +(16866,'fruit_plant_2_b_6002','Misc','UNDEFINED','fcf4b8af-448f-4530-a2b9-f422f5a89bc6','','',NULL), +(16867,'fruit_plant_2_b_4002','Misc','UNDEFINED','5aab077e-b675-44e9-be1c-364624b6fc27','','',NULL), +(16868,'fruit_plant_2_b_5002','Misc','UNDEFINED','9ebf1a56-a2e2-452a-b856-8617052028fd','','',NULL), +(16869,'fruit_plant_2_b_2002','Misc','UNDEFINED','ff736461-52f8-4165-821f-088cc2a6a482','','',NULL), +(16870,'fruit_plant_2_b_3002','Misc','UNDEFINED','e47fe0e8-45eb-4934-bdcd-97412f3a19c7','','',NULL), +(16871,'Inquisitor Legs Dark Red','Armor','Legs','04bd1d94-9240-4c63-91d9-8f9c76bbfd57','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(16872,'Door Control','Door','UNDEFINED','40580087-54df-458d-9d71-c33526e705e1','','',NULL), +(16873,'ORIG_600i_Dashboard_Pilot','SeatDashboard','UNDEFINED','1c4abb5d-0f1c-4cc1-9988-4e1a81ec1ad0','','',NULL), +(16874,'ANVL_Hornet_F7_Mk2_Thruster_Retro','ManneuverThruster','Retro','e250a62c-5f98-4154-840a-b9fac07cba4a','','',NULL), +(16875,'Testudo Legs Nightveil','Armor','Legs','40cada46-9444-4324-b51a-36974b6f6d19','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4K µSCU\n\nThe Testudo armor for Quirinus Tech blends battlefield durability with everyday comfort. It weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort.'), +(16876,'resource_relay_3_slot_standing_freestanding_col','Relay','UNDEFINED','6739ab91-dc05-4c5f-a0ca-0a6def102485','','',NULL), +(16877,'display_components_pallet_250x125x025_c','ShopDisplay','UNDEFINED','61cf4e3d-5a35-419c-9c8d-56c087064dc6','','',NULL), +(16878,'Bed','Usable','UNDEFINED','c14df607-d45d-4520-b7f8-e05c8cf92586','','',NULL), +(16879,'DRAK_Golem_OX_Thruster_Main_VTOL','MainThruster','FixedThruster','fa2f29e5-a2e3-463f-92b0-74acd00db88d','','',NULL), +(16880,'Door Control','Door','UNDEFINED','27e188f4-13f6-4dfd-9c06-9c139cc6c39c','','',NULL), +(16881,'Scalpel Sniper Rifle','Weapon','Medium','bab1362b-0860-4a52-ad5b-dfb63d12f651','','','Manufacturer: Kastak Arms\nItem Type: Sniper Rifle\nClass: Ballistic\n\nMagazine Size: 8\nRate Of Fire: 30 rpm\nEffective Range: 120 m\n\nAttachments: Optics (S3), Barrel (N/A), Underbarrel (S2)\n\nThe Scalpel is a unique and versatile sniper rifle from Kastak Arms. Designed with two barrels stacked atop of each other, it has two fire modes so you can adapt your shot to the situation. It can deliver a single, powerful shot from a long distance, or fire both barrels in quick succession to create a double-shot burst.'), +(16882,'Torite (Ore)','Cargo','Cargo','6e131729-df94-4fd4-a33d-90622865225d','','',NULL), +(16883,'Restored Pants Brown','Char_Clothing_Legs','UNDEFINED','1495dd9c-14e1-41cc-a5a9-c8377fb1e873','','','Carrying Capacity: 1K µSCU\n\nThese pants may have seen better days, but they\'ve got a lot of life left in them yet. Years of use have made them more comfortable than the day they were purchased.'), +(16884,'Overlord Legs Tempered','Armor','Legs','91d5aeee-6f58-403d-809d-05f1226c00b5','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.\n\nThe Tempered edition is mostly steel gray with prominent black sections.'), +(16885,'Seat','Usable','UNDEFINED','244f2b75-f88c-400d-8e3e-3b7059d16940','','',NULL), +(16886,'GP-XP Industrial Battery','Battery','Cargo','9a3b2954-2c3b-4953-8cbe-6a2229d97ac9','','','An extremely powerful battery used in industrial processes, like powering mining lasers. Its proprietary design generates significantly more energy than other batteries of its size but makes the GP-XP extremely heavy and unwieldy. Please use caution when attempting to move.'), +(16887,'ADP-mk4 Arms Big Boss','Armor','Arms','b272fd03-33c5-43ba-aec7-d2296f1be1a2','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhen there\'s a difficult job at hand, you want to ensure that you can see it through to the end. Clark Defense Systems\' ADP-mk4 heavy armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers.'), +(16888,'Sabre Ship Armor','Armor','Medium','2e7bf45e-522d-49bd-a4f6-0e95558db200','','','Sabre Ship Armor'), +(16889,'ANVL_Hurricane_Thruster_Mav_Bottom','ManneuverThruster','JointThruster','76a41212-e285-4fb0-b225-0edb87847d48','','',NULL), +(16890,'Door','Door','UNDEFINED','73d7ce37-f41d-4031-80eb-406676f53b29','','',NULL), +(16891,'Door Control','DockingAnimator','UNDEFINED','38d4cbee-a2b3-40cb-88ac-fed31565d355','','',NULL), +(16892,'KRIG_l22_AlphaWolf_Thruster_Main_Wing','MainThruster','UNDEFINED','9580b519-b663-44d8-b68c-105e4fac0140','','',NULL), +(16893,'AEGS_Javelin_SCItem_Seat_Bridge_Right_Tactical','Seat','UNDEFINED','eb99d64e-d0c2-455a-a9c7-771e32c0ca74','','',NULL), +(16894,'IAE 2954 Hat Purple','Char_Clothing_Hat','UNDEFINED','29a75b64-4a86-423c-98e8-feccd35e6809','','','The official hat of the 2954 Intergalactic Aerospace Expo is a vibrant purple with the logo across the front.'), +(16895,'A03 Sniper Rifle','Weapon','Medium','6b1fb5e8-f9ec-49bc-befb-c81b7c08c5ea','','','Manufacturer: Gemini\nItem Type: Sniper Rifle\nClass: Ballistic\n\nMagazine Size: 15\nRate Of Fire: 120 rpm\nEffective Range: 80 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nDevastate at distance with the A03 sniper rifle. Masterfully designed by Gemini\'s Tevarin co-founder Clem, the weapon balances a stylish and ergonomic design with a powerful ballistic punch. The A03 delivers an impressive rate of fire for a sniper rifle that sacrifices accuracy for urgency when successive shots are required. Considering its renowned design and unique features, it\'s easy to see why the A03 has become a favorite of security professionals across the empire.'), +(16896,'ARMR_ANVL_FC7R','Armor','Medium','23b24ec8-28e1-43cc-aaf3-d5ba15089558','','',NULL), +(16897,'ParaMed \"Cyanosis\" Medical Device','Weapon','Small','980fb84e-e76e-4f67-8b40-0e29e89fe7af','','','Manufacturer: CureLife\nItem Type: Medical Device\n\nThe ParaMed from CureLife is a professional-grade emergency medical device designed to stabilize patients suffering from possible life-threatening injuries. Offering extremely accurate diagnostics and dosing, the ParaMed can treat more patients and offer longer relief with less risk of overdose. The \"Cyanosis\" edition features a bold blue color.'), +(16898,'Shared_Piercing_Unified','Char_Head_Piercings','UNDEFINED','19ed02b3-8bb4-446f-9842-3d061d839138','','',NULL), +(16899,'Ranta Dung','Misc','UNDEFINED','21b87e9e-892e-4de3-99f2-ecd1db7e688c','','',NULL), +(16900,'Argus Helmet Black/White/Violet','Armor','Helmet','cc01c925-9323-4150-aa7b-0538511b499b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s Argus helmet utilizes advanced multi-layered composite construction to provide incredible protection from weapon fire as well as environmental hazards. The tinted visor offers a wide field-of-view to improve situational awareness and unrestricted movement.'), +(16901,'Col_A_Airlock_Tube_Door_Double_Int','Door','AirlockPart','c9b12cfa-7eb2-479b-a6a3-c3281d5e3c01','','',NULL), +(16902,'Karna \"Rager\" Rifle','Weapon','Medium','afee958a-8da3-48a3-aac7-14047d9de20e','','','Manufacturer: Kastak Arms\nItem Type: Assault Rifle\nClass: Energy (Plasma)\n\nBattery Size: 35\nRate Of Fire: 500 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nThe Karna is a classic Kastak Arms plasma assault rifle. This mid-range mauler features charged and full-auto fire modes to allow for quick and easy situational adjustments. Besides its renowned firepower, the Karna\'s rugged looks and reliability have made it one of Kastak Arms\' most popular weapons. An outrageous combination of black, cyan, and purple makes the \"Rager\" edition an extra good time.'), +(16903,'fruit_basket_1_shop_1x5_a','ShopDisplay','Default','cad651bf-0dd8-4019-aedd-5e7e08da46f4','','',NULL), +(16904,'Door Control','Door','UNDEFINED','d94dac13-8a1e-4b0f-acda-3d69467de886','','',NULL), +(16905,'ARMR_RSI_Hermes','Armor','Medium','485cbdb5-5ce5-23f3-186b-ed7bdf724aad','','',NULL), +(16906,'Thunderbolt III-G Missile','Missile','GroundVehicleMissile','074f4cd7-67f3-4c33-83d9-45050205cfe0','','','Manufacturer: Firestorm Kinetics \nTracking Signal: Electromagnetic  \nSize: 3 \n\nThanks to the Firestorm Thunderbolt\'s agile frame and EM targeting system, this proximity missile is a solid choice for a wide variety of combat scenarios. Note: This missile may only be launched by ground vehicles.'), +(16907,'CitizenCon 2948 Trophy','Misc','UNDEFINED','f4e436a5-2418-4cff-b172-1dbdfe4537ed','','','The trophy for CitizenCon 2948 melds the physical and digital. A curvy red and grey base projects a hologram of the event\'s logo above it.'), +(16908,'MASTER_tool_1_handed','Misc','UNDEFINED','791b848e-7bd6-4251-adf9-935b2d83c15d','','',NULL), +(16909,'Shelve_Invisible_4x4','ShopDisplay','UNDEFINED','0f16a750-c80f-464c-8db4-13fb13d95b3e','','',NULL), +(16910,'Bed','Usable','UNDEFINED','a373eb63-eef5-4049-98c6-76906b7dcb3a','','',NULL), +(16911,'Door_NoRoomConnector_Polaris_CapsLocker_Temp','Door','UNDEFINED','62b34199-bc5c-4766-8299-05e0e35d6809','','',NULL), +(16912,'Partillium','Cargo','Cargo','825081a5-0511-44f3-8219-3e9c363c2ef1','','',NULL), +(16913,'Strata Helmet Heatwave','Armor','Helmet','e78b6f08-3f9c-4a0c-89ad-a7f2e1fa73bd','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design features high quality materials and a next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Heatwave edition is primarily black with glowing red highlights.'), +(16914,'Crusader Industries T-Shirt','Char_Clothing_Torso_0','UNDEFINED','bc6b38f1-dd14-49a5-b56b-a8abba329ebb','','','Crusader Industries created this striking blue shirt sporting their \"sword & C\" logo to further their corporate mandate to support charitable organizations. The company has promised that all proceeds from the sale of this shirt will go to the Terra-based nonprofit Empire\'s Overlooked.'), +(16915,'Railing_Straight_4m_LowTech_Util_Stairs_04x01_a','Usable','UNDEFINED','6c53851c-5f2c-4e4d-9a26-b6b921de1dff','','',NULL), +(16916,'Door Control','ControlPanel','DoorPart','49d1cf7f-c3ea-4ef3-82c2-2536b3b0021e','','',NULL), +(16917,'srvl_combat_heavy_helmet_03_01_01','Armor','Helmet','eb7bb071-b7c9-43da-afe8-45ee30e71a85','','',NULL), +(16918,'Sureshot Mask Red Menace','Char_Clothing_Hat','UNDEFINED','f610d546-f7f8-4153-b416-bf9e9b4e622c','','','This white ablative ceramic mask is as intimidating as it is striking, with embedded scars to let them know that you aren\'t just another pretty face. The Red Menace edition features bold markings across the faceplate.'), +(16919,'Seat','Usable','UNDEFINED','784d2fb1-5eeb-40eb-8c59-6719e1929472','','',NULL), +(16920,'AAT-34 Turret','Turret','MannedTurret','2f9732c5-7244-4b2c-8a02-fa7c785af4a2','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(16921,'trolley_creeper_1_a','Misc','UNDEFINED','ba282e16-f565-4019-928f-9255198ac4a9','','',NULL), +(16922,'Seat','SeatAccess','UNDEFINED','2a36f9df-3d15-4808-af4f-fd4a38321d6d','','',NULL), +(16923,'2954 Red Festival Poster','Misc','Utility','ec202f06-5dc2-4369-a591-99740c8db287','','','Celebrate the Red Festival and 2954 being the year of the dog with this colorful poster. It features adorable dogs and stormwals set against a stylized red and blue background. It also honors the festival\'s historic ties to Earth with \"Happy New Year\" written in two languages that originated on Humanity\'s homeworld.'), +(16924,'Marhsal Sleeveless Vest Steel Blue','Char_Clothing_Torso_1','UNDEFINED','1ecf001d-2746-4868-a7fa-74163c2f2fab','','','The durable Marshal sleeveless vest by Alejo Brothers is made to endure life on the frontier while distinct stylings like shoulder straps, bold cross-chest placket, and a high-collar make sure the wearer stands out on any far flung world.'), +(16925,'Remote Turret','Turret','GunTurret','451d05f6-d3de-4c5c-96ed-a466634dba22','','','Remote Turret'), +(16926,'Harlowe Shirt Yellow','Char_Clothing_Torso_0','UNDEFINED','7aedcc5b-bc1f-48ef-8031-4dca8e2fc9fc','','','Capable as being worn on its own or as a base for layers, this long-sleeve henley style shirt from Alejo Brothers keeps you stylish and comfortable.'), +(16927,'expo_display_shirts_and_hats_origin','ShopDisplay','Default','d0c41a77-528c-4cbb-80b0-156e0a383d18','','',NULL), +(16928,'Ball','Char_Head_Piercings','UNDEFINED','40c6d078-cebb-42a6-93d5-5fbf70a221c7','','',NULL), +(16929,'Elevator Control','Elevator','UNDEFINED','ea08b529-6dba-4893-baca-b2412482a31e','','',NULL), +(16930,'fruit_plant_1_b_3002','Misc','UNDEFINED','ad92dcf4-8778-4111-9080-57b46c3207c7','','',NULL), +(16931,'fruit_plant_1_b_2002','Misc','UNDEFINED','e71fc82e-ff86-418d-9cac-3218fc7df789','','',NULL), +(16932,'fruit_plant_1_b_5002','Misc','UNDEFINED','2270337b-f1a2-4795-9cce-744a6d40d394','','',NULL), +(16933,'Seat','Usable','UNDEFINED','e0674f42-7ee5-4b76-b35e-2a56a2699ed8','','',NULL), +(16934,'fruit_plant_1_b_4002','Misc','UNDEFINED','c6412a16-3288-4d53-9491-825d26f32060','','',NULL), +(16935,'fruit_plant_1_b_6002','Misc','UNDEFINED','2358ccd3-ba81-41db-a971-b3e116cba3f9','','',NULL), +(16936,'Grappler Gloves Veritas','Char_Clothing_Hands','UNDEFINED','691717bf-8019-4d69-8bf7-092f3d92439b','','','Originally made for open-canopy racers, the Grappler gloves became beloved for their versatility and durability. Their mix of leather and synthetic fabrics make for a lightweight and warm wear. They also feature an adjustable strap to guarantee the perfect fit, and a special tactile fingertip design so wearers don\'t have to remove the gloves to interact with screens.\n\nThe Veritas edition is a bloody red, with black belts and leather straps.'), +(16937,'fruit_tray_1_f','Misc','UNDEFINED','4d1bdaee-8dc3-420a-8b6e-cc02621bf0ae','','',NULL), +(16938,'RSI_Aurora_GS_Thruster_Retro','MainThruster','FixedThruster','fd485a30-75c4-49b0-80fa-f263accbe7fd','','',NULL), +(16939,'AEGS_Door_Decal_CmptRm_01','Decal','DoorPart','837569a4-07a3-498e-9839-357c87d9dce6','','',NULL), +(16940,'AEGS_Door_Decal_WallPanel_02','Decal','DoorPart','b8bbab14-b55b-4fbf-b539-3fbf812d3132','','',NULL), +(16941,'Diamond (Raw)','Cargo','Cargo','ee9b6807-6ef2-4aa0-8d68-ec36bd992079','','',NULL), +(16942,'Fortune Reserve Livery','Paints','UNDEFINED','00b42b0d-194b-4972-a43b-f1d40df02ac4','','','A subtle tan accent cuts through an otherwise all black appearance in the Fortune Reserve livery.'), +(16943,'TRGT. STATUS','Seat','UNDEFINED','a7076b1b-f46d-4938-b32b-bd4affec06f0','','',NULL), +(16944,'Exotherm','Cooler','UNDEFINED','45c6aee2-f38c-4d59-88a8-8cbbc395e938','','','Item Type: Cooler\nManufacturer: Aegis Dynamics\nSize: 4\n\nThis capital-class cooler was designed specifically for the Idris frigate.'), +(16945,'Door','Door','UNDEFINED','360c7cb1-6bbd-4eed-b7d9-7f51898f10c8','','',NULL), +(16946,'ARGO_MOTH_Thruster_Main','MainThruster','FixedThruster','78ed4890-c8bc-447e-af43-9e53ba4583c0','','',NULL), +(16947,'Lynx Arms Red','Armor','Arms','f1194db3-4bf8-402f-9565-54b7ae8f401b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(16948,'Astley Pants Black','Char_Clothing_Legs','UNDEFINED','7b64fb12-e2f5-4adb-a449-76a57c8434bf','','','Carrying Capacity: 2K µSCU\n\nFlaunt your rugged yet refined sensibility with these cargo pants from DMC. With grey accents and contrast stripes down each side, Astleys are durable, comfortable, and always on point. \n\nWomen\'s sizes currently out of stock.'), +(16949,'Remote Turret','Turret','GunTurret','5efcacd4-3968-4ac7-b088-7859aad041e5','','',NULL), +(16950,'Prim Shoes Grey','Char_Clothing_Feet','UNDEFINED','045a9c14-ad28-454d-ac98-843a983f9ec4','','','Professional yet casual, the Prim utilizes cutting-edge synthetic construction to provide maximum comfort and a shine that won\'t fade.'), +(16951,'Door Control','DockingAnimator','UNDEFINED','66f89838-ade1-476e-a580-c38692d37ead','','',NULL), +(16952,'Hephaestanite','Cargo','Cargo','815496c4-bd34-4425-8b7e-d2bbccc30d33','','',NULL), +(16953,'Hydrogen','Cargo','Cargo','1b0c1f0d-36b5-4f0d-8ff1-05cadb6e997a','','',NULL), +(16954,'lowtech_kareah_airlock_lghtgrp','Lightgroup','AirlockPart','850b65f8-c909-4567-b27a-1b2ff1174a37','','',NULL), +(16955,'ESPR_BallisticCannon_FiringMechanism_S3','WeaponAttachment','FiringMechanism','05f81f1b-28d1-4681-8eed-c9f20a1998ec','','',NULL), +(16956,'display_expo_hall_armour_rack_1_curved_a','ShopDisplay','UNDEFINED','6fa4b21e-2991-4461-b5ed-663a434fc5d2','','',NULL), +(16957,'screen_4x3_grimhex_datapad','Display','UNDEFINED','f75f91c9-0f34-4ac2-9ebc-16b9ec643214','','',NULL), +(16958,'AEGS_Javelin_Thruster_Main_02_Invulnerable','MainThruster','FixedThruster','a1f8f151-57cf-4e5b-9eaa-65b37238394f','','',NULL), +(16959,'Strata Backpack microTech Edition','Armor','Backpack','8e3b50aa-62bb-442f-8088-2ed1e5a64bfe','','','Item Type: Medium Backpack\nCarrying Capacity: 127.5K µSCU\nCore Compatibility: Medium & Heavy\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The microTech Edition was made specifically for the company.'), +(16960,'Personal Storage','Cargo','UNDEFINED','9a81964f-0dd8-47d5-a3d2-1109f262b4d5','','',NULL), +(16961,'Util_A_Bulkhead_Airlock_Door_Double_Ext','Door','AirlockPart','cc735a8a-7974-468a-985b-68fae06ebb07','','',NULL), +(16962,'Archibald Jacket Canvas','Char_Clothing_Torso_1','UNDEFINED','9b34de55-b285-4910-93ca-9941c3e24fb6','','','Carrying Capacity: 1K µSCU\n\nSimple, comfortable and understated. While most fashion designers avoid these terms, Escar Limited understands that sometimes you just want something that feels right. Based on the classic design from Centauri II, the Archibald is a simple, comfortable and understated light jacket made from a polyweave that doesn\'t restrict airflow.'), +(16963,'Carryable_TBO_FL_16SCU_Commodity_ProcessedGoods_ElectronicsEquipment','Cargo','Cargo','e52e3efa-5454-447e-847f-cff34f51c7bf','','',NULL), +(16964,'Aril Legs Red Alert','Armor','Legs','d3e092fb-5676-4191-9389-380a2817a271','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(16965,'Recycled Material Composite','Cargo','Cargo','2e50dde5-30d4-4faa-af8f-8e5aa8004b96','','',NULL), +(16966,'Pisces XenoThreat Purge Livery','Paints','UNDEFINED','0864216f-671a-412c-942a-a46efacec59f','','','Let Humanity know you won\'t bow down to alien invaders with this XenoThreat livery featuring a muted teal with bright red accents.'), +(16967,'Aluminum (Ore)','Cargo','Cargo','3b7b9a64-ecfb-4407-a9db-a4470b27c1ea','','',NULL), +(16968,'AEGS_Retaliator_Thruster_Mav_Fixed_Top','ManneuverThruster','FixedThruster','d39e8595-ac0e-4ba5-a2cc-62aae8c6312c','','',NULL), +(16969,'CryoPod (Vanduul)','Cargo','Cargo','e72cbc1d-c35c-4f4e-b78c-8a3719f7dc83','','','A Vanduul corpse preserved within a CryoPod.'), +(16970,'Weapon_Rack_1_KSAR_Shotgun_Ballistic_01_AmmoOnly_001','Usable','UNDEFINED','c0b311cb-92d9-4322-af67-89d3a605ac96','','',NULL), +(16971,'Balor HCH Helmet Blue','Armor','Helmet','2f0875e4-bb6c-4a07-90a3-7a5f49a7f043','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. Visor is AR crosshair compatible.'), +(16972,'Door','Door','UNDEFINED','cff78396-c9b6-43ba-b311-bdc855ab2a08','','',NULL), +(16973,'Millrun Waders','Char_Clothing_Legs','UNDEFINED','bc81da15-4ec7-4afc-b6fc-23f423e1a69d','','','Carrying Capacity: 400 µSCU\n\nA combination of waterproof and weather-resistant pants and boots, the Millrun Waders are a comfortable option for uncomfortable work.'), +(16974,'KRON_LaserCannon_Barrel_S1','WeaponAttachment','Barrel','aca75369-d3d4-439e-a34e-a2ab6936e637','','',NULL), +(16975,'Door Control','Door','UNDEFINED','f7eb07ae-601a-49cf-bf3d-cf888b7cdd6a','','',NULL), +(16976,'Seat','SeatAccess','UNDEFINED','8bf95748-ac0e-4b48-99cb-448fd26e5dd6','','',NULL), +(16977,'Lillo Pants Grey','Char_Clothing_Legs','UNDEFINED','1dea02f9-7a4a-4c55-a899-22a6b2461b9b','','','Carrying Capacity: 0.5K µSCU\n\nThese slim cut pants from Fiore give you a tailored feel at a fraction of the cost. Built from space-age weaves, the Lillo are a low maintenance, high impact addition to your office wardrobe.'), +(16978,'Landlite Boots \"Voyager\"','Char_Clothing_Feet','UNDEFINED','11db3201-915b-42ef-817c-05be2b986fe9','','','Who says work boots can\'t be comfortable? Grindstone\'s Landlite boots are built with a breathable synth-leather material to keep your feet dry, a contoured, memory footbed, and a slip-resistant outsole. The exclusive Voyager edition comes in black with red soles to provide a pop of color.'), +(16979,'bag_satchel_1_a','Cargo','UNDEFINED','4cb2be19-7c67-474d-ab66-d13746fbcea6','','',NULL), +(16980,'ARMR_CRUS_Intrepid','Armor','Medium','bdad64f5-91b4-40c1-9896-f67db2407964','','',NULL), +(16981,'Door Control','ControlPanel','DoorPart','8adc9dd2-5537-455f-ab8e-eb058f85c686','','',NULL), +(16982,'GATS_BallisticGatling_Barrel_S3','WeaponAttachment','Barrel','3d2c189e-46a7-4e02-940a-08dd874c0e1f','','',NULL), +(16983,'Inquisitor Legs Violet','Armor','Legs','e0ad7d35-7d48-462a-b56d-b7d4547f7606','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(16984,'IAE 2951 T-Shirt Blue','Char_Clothing_Torso_0','UNDEFINED','d01bb888-e787-463a-8d9c-68fcaae49826','','','Commemorate the UEE\'s ultimate ship celebration with this blue ringer t-shirt that features a large version of the 2951 logo on the front and a smaller version across the back.'), +(16985,'Coloma Coat Blue and Brick','Char_Clothing_Torso_1','UNDEFINED','1481eb65-dca8-4bbc-acbb-64d00d14d9c9','','','Carrying Capacity: 1K µSCU\n\nStuffed with water-resistant gilly down, the Coloma coat blocks wind, traps body heat, and allows the wearer to move freely, making it the perfect choice for changeable weather conditions. Additionally, its roomy pockets provide plenty of storage.'), +(16986,'Arden-CL Backpack Chairman\'s Club','Armor','Backpack','fdee87a2-f94a-45eb-9080-78ceaefea156','','','Item Type: Light Backpack\nCarrying Capacity: 40K µSCU\nCore Compatibility: All\n\nWhether carrying supplies into a combat zone or simply hauling extra gear, the Arden-CL backpack is battle ready and tested. Roussimoff Rehabilitation Systems designed the backpack with a universal core connector allowing it to attach to a wide of variety armors.\n\nThe Chairman\'s Club edition is clad in black with rich gold highlights.'), +(16987,'Li-Tok Boots Grey','Char_Clothing_Feet','UNDEFINED','91279c13-8b7c-4882-8cbc-5c9ec62f8ef1','','','Stylish yet rugged, NorthStar\'s Li-Tok boots are made from a composite nylon fabric, vulcanized rubber grips that hold fast to a variety of surfaces, and reinforced ankle support making these perfect for hanging out or on the job.\n\nWomen\'s sizes currently out of stock.'), +(16988,'Fury Leatherback Livery','Paints','UNDEFINED','2dd2a39e-3a1b-4a00-82d2-4d772adad587','','','Primarily green with red highlights, the Leatherback livery delivers style along with the intimidating payload of the Fury.'), +(16989,'MISC_Freelancer_MAX_Derelict_SCItem_Seat_Esc_Pod_Upper_Left','Seat','UNDEFINED','66588d19-20d5-4cc5-a2a7-dc2994c804c2','','',NULL), +(16990,'ASAD_DistortionRepeater_Ventilation_S2','WeaponAttachment','Ventilation','a007f0bf-ab4b-43dc-9fc7-aae884a32c9c','','',NULL), +(16991,'MISC_Hull_C_FoldingStrut_1B','Cargo','UNDEFINED','162006b2-6f42-4d1b-a061-2161fa14e8ab','','',NULL), +(16992,'Weapon_Ship_Cz_006','Usable','UNDEFINED','28eaefac-57d8-4269-8727-1c5d1812be18','','',NULL), +(16993,'Laska Shoes','Char_Clothing_Feet','UNDEFINED','8f9511b4-bd32-48a1-bc14-a289e60fcba5','','','The Laska are two-toned dress shoes that deliver both comfort and style. A dynamic diagonal color separation makes the shoes black in front and white in the back and accentuates the slight rise to the heel. An ideal complement to any outfit, Laska shoes also features supremely comfortable padded insoles and can be easily slipped off and on thanks to side zippers.'), +(16994,'Manned Turret','UtilityTurret','MannedTurret','cfaa79d8-1d96-4227-974c-f843c8be83ac','','',NULL), +(16995,'AEGS_Avenger_Titan_Thruster_Mav_Joint','ManneuverThruster','JointThruster','1b7a5399-497f-49cf-851a-d5ef413ebe1a','','',NULL), +(16996,'Beryl','Cargo','Cargo','8ed30c8a-1a74-4c13-934f-e8cac69f53a2','','',NULL), +(16997,'IAE 2953 Shirt Purple','Char_Clothing_Torso_0','UNDEFINED','45823952-1cad-458f-a8a3-02cb83ad548d','','','Commemorate the UEE\'s foremost celebration of ships with the official shirt of the 2953 Intergalactic Aerospace Expo. This purple shirt features the IAE logo on the front, with a smaller version on the back.'), +(16998,'GLSN_Shiv_Thruster_Main_Side_Right','MainThruster','FixedThruster','b778d864-8f78-4ed5-9f07-b2d70aecdc0f','','',NULL), +(16999,'Combat Supplies','Cargo','Cargo','545703e9-64b8-44b4-b7f7-824f80a905c6','','','A variety of items assembled to support combat forces, such as ammunition, structural repair tools and clothing.'), +(17000,'Shoyu Lapsha','Food','Box','7e83e333-5b7b-4021-bddb-ab5f99d6f9ae','','','NDR: 40\nEffects: Dehydrating, Hyper-Metabolic\n\nA soy sauce based home-style chicken noodles. Perfect for warming up those cold berths.'), +(17001,'Beryl (Raw)','Cargo','Cargo','667c36c2-3097-437a-8494-947e91a57d66','','',NULL), +(17002,'Seat','Usable','UNDEFINED','7fb8e10e-3a5c-48d0-b72d-98f9d6e4ebe3','','',NULL), +(17003,'Counter_Console_Cafe_2m_a','Usable','UNDEFINED','a774e525-a542-4882-925e-00d0ce7136b8','','',NULL), +(17004,'Iron','Cargo','Cargo','0f08fc1d-bfeb-4781-aa22-59aa7e6ad26b','','',NULL), +(17005,'Door Control','Door','UNDEFINED','e5dea1ac-9ce9-4421-a927-64f521990c59','','',NULL), +(17006,'ANVL_Lightning_F8_Thruster_Retro_White','ManneuverThruster','FixedThruster','ef5edb04-6fca-4469-9535-220c5c0e326e','','',NULL), +(17007,'Tona Shoes Violet','Char_Clothing_Feet','UNDEFINED','66bbbc9a-0e7c-4682-9df7-051b56b2a725','','','Perfect for hiking or fieldwork, the Tona from R6 Pro is a low-top sneaker built out of breathable Cheofreme materials which not only provide extra protection against impacts, but keep your feet dry.'), +(17008,'Door Control','Door','UNDEFINED','b4e74195-cf3b-4316-a042-bb21a91abf94','','',NULL), +(17009,'Door Control','ControlPanel','DoorPart','8681f07a-adfc-4a4f-bfb0-d3ed5b110177','','',NULL), +(17010,'Ball','Char_Head_Piercings','UNDEFINED','366ac121-0242-4a6e-885c-9ece91726ddb','','',NULL), +(17011,'DRAK_Cutter_Thruster_Main_Scout','MainThruster','FixedThruster','1ac43791-be4c-4341-8415-74480a472873','','',NULL), +(17012,'Dash Apron Kel-To','Char_Clothing_Torso_1','UNDEFINED','0ead741c-7525-4afd-a9c1-fc736a9ff062','','','Carrying Capacity: 1K µSCU\n\nStegman\'s Dash apron is made from a thick, stain-resistant polyfiber that not only protects the wearer but looks as good at the end of the shift as it does at the beginning. The practical design is embellished with a bold waistline and pocket detailing alongside a fun accent color panel on the lower skirt.'), +(17013,'box_plastic_4_weapon_005x010x00375_b','Misc','UNDEFINED','cd10a277-1a36-46ba-923a-c6713223d85f','','',NULL), +(17014,'Inquisitor Core','Armor','Torso','986906da-1cd1-4a0b-b237-6d246a4b1687','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(17015,'Revenant Tree Pollen','Cargo','Small','97dd9f08-cfbd-4cf8-b838-007dade0c2c2','','','The pollen of Revenant Tree (altrucia lacus).'), +(17016,'Seat','SeatAccess','UNDEFINED','7c399af3-40c6-44b1-b6b4-fd66911331ed','','',NULL), +(17017,'RSI_Bengal_Thruster_Retro_Main_Left','ManneuverThruster','JointThruster','23122b86-2f4e-4f50-90bf-cc6f79bf0187','','',NULL), +(17018,'CRUS_Star_Runner_Component_Cooler','Player','UNDEFINED','3cc70fcf-ab36-4301-ba4c-68758c3d1202','','',NULL), +(17019,'Messhall_Microwave','Misc','UNDEFINED','7067cdc8-52cd-4acd-a44e-edd8b1ed0814','','',NULL), +(17020,'ORIG_300i_Intake','FuelIntake','UNDEFINED','5d8d75ac-e67d-4af7-915f-e6311a644835','','',NULL), +(17021,'OxyTorch Cutter Attachment','WeaponAttachment','Utility','81d120b2-d7a4-413a-8f9e-a1ebbb8ae1e2','','','MUST BUY BASE MULTI-TOOL TO USE: \"Pyro RYT Multi-Tool\"\n\nManufacturer: Greycat Industrial\nItem Type: Multi-Tool Attachment\nClass: Cutter\n\nTransform Greycat\'s Pyro RYT Multi-Tool into a precision cutter with the OxyTorch attachment. Built to quickly and easily slice through appropriate materials, the OxyTorch harnesses the power of the multi-tool to deliver accurate cuts with clean edges, making it a convenient attachment ideal for both professionals and hobbyists.'), +(17022,'RotationSimple_Aurora_Fan','AttachedPart','UNDEFINED','109159e3-098b-4797-8012-655edbd5ff10','','',NULL), +(17023,'Seat','SeatAccess','UNDEFINED','41a70aa5-64d6-3d90-4e0d-10db0b5bd19e','','',NULL), +(17024,'ToolSafe Vest Horizon','Char_Clothing_Torso_1','UNDEFINED','d0f0d92b-8964-46f7-8c94-efd8d9cd6614','','','Carrying Capacity: 10000 µSCU\n\nThe ToolSafe Vest is constructed with thick materials accentuated by high-visibility straps to ensure worker safety. The inclusion of numerous pouches gives this jacket a generous amount of storage to make it a staple of worksites everywhere.'), +(17025,'Flight Blade','FlightController','UNDEFINED','ecde7f12-5941-487b-b037-aa15f134d776','','',NULL), +(17026,'LuxCore','PowerPlant','Power','78e0c040-6668-4b43-a29c-4c47051bba8d','','','Item Type: Power Plant\nManufacturer: ACOM\nSize: 2\nGrade: A \nClass: Competition\n\nFamous for performance that laps the competition, the LuxCore provides all the speed your ship needs. You\'ll leave other medium power plants in the dust with this first-class component from the racing experts at ACOM.'), +(17027,'ANVL_Valkyrie_Thruster_Retro','ManneuverThruster','FixedThruster','3b467f8a-a61c-4a55-97e8-aa26ed1060e2','','',NULL), +(17028,'Seat','SeatAccess','UNDEFINED','7bca4f46-6977-4149-b955-ffdb4e682c7f','','',NULL), +(17029,'Tilapia Verde Burrito','Food','Junk','0f7ea96f-c501-4a35-b3e5-2066c3de469b','','','NDR: 45\nEffects: Hypertrophic, Hypo-Metabolic\n\nThis healthy and light burrito features a tortilla wrapper filled with flakey fish in a bright herbal sauce.'), +(17030,'Borase','Cargo','Cargo','16da1f95-596a-4c7e-8bd5-a9c790ce08e3','','',NULL), +(17031,'AEGS_Redeemer_Storage_Decal_04','Decal','DoorPart','a2ac6b40-63df-45ff-943d-498b7cdaf94d','','',NULL), +(17032,'Ranta Dung','Cargo','Cargo','22568282-4d5c-48ae-855b-7e0e56147ab0','','',NULL), +(17033,'Flight Blade','FlightController','UNDEFINED','acddd069-f13b-49e9-81c3-ef5084070eee','','',NULL), +(17034,'DRAK_Cutlass_Thruster_Maneuver_Front_Top','ManneuverThruster','JointThruster','0d31372d-ad77-474d-9387-04c5893702f5','','',NULL), +(17035,'ARMR_DRAK_Mule','Armor','Medium','d27e8f63-1304-4b45-aa36-592940c1f265','','',NULL), +(17036,'Palatino Helmet','Armor','Helmet','138ffa9b-26b2-4b6f-b831-425948234fb2','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. The fully-enclosed helmet comes equipped with a suite of sensors that connects the wearer to the wider world while providing supreme protection. Visor is AR crosshair compatible.'), +(17037,'Yubarev \"Deadeye\" Pistol','Weapon','Small','2ee12457-8ec8-4984-a06b-bafa8d11ae5a','','','Manufacturer: Lightning Bolt Co. \nItem Type: Pistol\nClass: Electron\n\nBattery Size: 10\nRate Of Fire: 350 rpm\nEffective Range: 35m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nEngineering excellence only scratches the surface of the distinct Yubarev pistol. Former merc turned weapon manufacturing mogul Irina Arkadova oversaw every aspect of the weapon, imbuing it with power, practicality, and panache. Featuring a cutting edge barrel design, the Yubarev fires a charged electron shot that impacts not only your target, amplifying the charge with each hit, but can spread to additional conductive targets in range. The exclusive Deadeye edition is black with gold highlights.'), +(17038,'Argo Astronautics Hat','Char_Clothing_Hat','UNDEFINED','8515df3e-3f3a-4765-b858-935bab92ba7c','','','Spacecraft manufacturer Argo Astronautics has been around for centuries. Support this indispensable UEE industrial brand by wearing this burnt orange hat bearing their name across the front.'), +(17039,'ControlPanel_LightSwitch_Grin_MTC','ControlPanel','DoorPart','d4251d95-f0ee-450d-a638-8ea43a22a29b','','',NULL), +(17040,'SNS-R5x','Radar','MidRangeRadar','55a63f5c-3406-48ef-97fb-b3ced8858069','','','Item Type: Radar\nManufacturer: Nav-E7 Gadgets\nSize: 2\nGrade: D\nClass: Competition\n\nPerfect for an entry-level pilot, the SNS-R5x trades excessive frills for energy efficiency.'), +(17041,'ESPR_LaserCannon_PowerArray_S5','WeaponAttachment','PowerArray','d6403262-e404-4ca0-bc65-233d0e3b8bf6','','',NULL), +(17042,'XNAA_SanTokYai_Dashboard_Pilot','SeatDashboard','UNDEFINED','44e55f5e-02fe-4758-9f82-e44767ab5102','','',NULL), +(17043,'Venture Helmet \"Rust Society\"','Armor','Helmet','54c91753-0a6e-420f-bfd7-d7e6b5f3ff8b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n \nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover. The Rust Society edition adds a red and tan color scheme so you look good while working hard.'), +(17044,'Aztalan Galena Legs','Armor','Legs','1b4d0522-5ac9-4e56-9d42-e229712ce88d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nFear no frontier while wearing the Aztalan armor. This mixture of armor plating and reinforced fabrics will keep you safe yet swift on your feet. Tehachapi\'s masterful design gives the armor a subtle yet unmistakable frontier style that also providing ample storage. Suitable for everything from sand dunes to bustling backstreets, the Aztalan is the ideal choice for your next adventure.'), +(17045,'AEGS_Hammerhead_Thruster_Mav_Fixed_Right','ManneuverThruster','FlexThruster','cc741815-d17f-4579-8f78-715216a3ab00','','',NULL), +(17046,'Overlord Helmet Skimmer','Armor','Helmet','a4c8b0ca-4988-40d4-b3c2-51deccf44d66','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord helmet delivers heavy armor protection while using a special lightweight composite plating that makes it feel like nothing\'s there. Repurposed ocular sensors normally found on ships keep you attuned to your surroundings and, when worn with the full Overlord suit, the high neck collar provides the helmet extra support and protection. Visor is AR crosshair compatible.\n\nThe Skimmer edition features white plating with cool blue accents.'), +(17047,'Door Control','ControlPanel','DoorPart','3fe6c530-42ed-4295-861e-4d30f141dfb1','','',NULL), +(17048,'Avenger Warlock Standard Flight Blade','FlightController','UNDEFINED','8a2675e7-839a-462d-845b-009f3527a7d5','','','Manufacturer: Aegis Dynamics\nType: Flight Blade\n\nThis is the standard issue flight blade for the Aegis Avenger Warlock.'), +(17049,'WEAPONS','WeaponController','UNDEFINED','db243441-69d5-4a8a-85e3-4be82e107e22','','',NULL), +(17050,'Corsair Commando Livery','Paints','UNDEFINED','bf60050d-f3c6-40ac-9b51-cc4fbc2fc19d','','','Primarily green with yellow accents, the Commando livery allows the Corsair to blend in with forests and verdant locations.'), +(17051,'Avalos Scout Goggles (Modified)','Char_Accessory_Eyes','UNDEFINED','bd96a519-2d44-43de-927a-3007eee9d8a2','','','This version of Rambler\'s Avalos Scout goggles has been modified from its original form. Tech meets tough with the Avalos Scout goggles. Their unique and sturdy frame ensures that the lenses remain intact even after unexpected impacts or sudden atmospheric changes. Built for harsh environments but bold enough to be worn anywhere.'), +(17052,'Artimex Core Hurston Dynamics Executive Security','Armor','Torso','445ab204-d97a-4745-9cf5-8006f2da7005','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape. The Hurston Dynamics edition was made specifically for the company\'s Executive Security team.'), +(17053,'Col_A_Airlock_Tube_Door_Double_Ext_NoNav','Door','AirlockPart','25620ca6-ae76-44f2-991c-cffa93250476','','',NULL), +(17054,'Seat','Usable','UNDEFINED','e01d68df-dc23-4ee1-8579-bddea1441cd2','','',NULL), +(17055,'MacFlex Legs','Armor','Legs','161db7cd-3351-43af-9961-972ec7e0ef39','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(17056,'TrueDef-Pro Legs Black/Grey/Red','Armor','Legs','616f9de6-f29e-4de9-b827-1614a6fc0ff4','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.\"'), +(17057,'TRGT. STATUS','Seat','UNDEFINED','b0ef21ce-4be2-4d09-9f94-fd4fb3052879','','',NULL), +(17058,'Cubby Blast T-Shirt','Char_Clothing_Torso_0','UNDEFINED','6305f242-6f39-4688-b4dc-66171dd66ff1','','','Show your support for local and independently owned businesses with this Cubby Blast t-shirt. From its infectious holo-jingle promising \"racks of rifles, stacks of shotguns, piles of pistols\" to Clor Vee, the eccentric owner with a thick Cathcart accent, Cubby Blast remains one of Area18\'s most unique shops, and a refreshing change of pace from the corporate-owned chain stores that dominant the Empire.'), +(17059,'TrueDef-Pro Arms Black/Silver/Blue','Armor','Arms','a0d8fe7e-a4b8-4c3f-a64f-c3e348b1ddf4','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(17060,'Thrust','Cargo','Cargo','0f579f38-3d39-45b0-b924-44ac7eed1070','','',NULL), +(17061,'clothing_undersuit_no_oxygen','Armor','Undersuit','8b23e3b4-8176-4e20-b355-7b40e6745c6e','','','@LOC_PLACEHOLDER'), +(17062,'Palatino Arms','Armor','Arms','018cf498-5ff0-4382-9549-372dc92c6a9c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower.'), +(17063,'AEGS_Redeemer_Wardrobe_Decal_04','Decal','DoorPart','4d37336e-49af-4d84-8775-b8687945f399','','',NULL), +(17064,'Radix','PowerPlant','Power','834e0103-cf00-4cbc-9884-a429096e2399','','','Item Type: Power Plant\nManufacturer: Lightning Power Ltd.\nSize: 0\nGrade: C\nClass: Civilian\n\nWith more than enough get up and go to handle your vehicle’s daily energy needs, the Radix from Lightning Power Ltd. is a power plant you can count on to get you where you’re going.'), +(17065,'GSX-RF','ExternalFuelTank','UNDEFINED','9fdf862e-140a-4684-862d-1957a99f587d','','','Manufacturer: Stor*All\nItem Type: Fuel Pod\nFlow Rate: 1.5 SCU/s\nCapacity: 50 SCU\n\nWhen it comes to balancing your bottom line, time is money. That’s why Stor*All designed the GSX-RF fuel pod to have one of the fastest flow rates on the market. While it does have a slightly reduced capacity, the time saved and modest improvements to the safe flow rate makes this an ideal solution for service ships.'), +(17066,'Fotia Seedpod','Misc','UNDEFINED','335c9f90-f3b1-4af4-aaff-439cd4f776a1','','',NULL), +(17067,'Radar_Display_Hornet_F7CM_Mk2_P','Display','UNDEFINED','7a00983d-7316-4331-97ec-1bbf6965db85','','',NULL), +(17068,'Cordimon Jacket Black','Char_Clothing_Torso_1','UNDEFINED','aa614324-b210-44c6-8945-ad05b51e76c5','','','Carrying Capacity: 3K µSCU\n\nStegman\'s classic worker\'s jacket has been a staple of job sites for over seventy years. This duotone pattern is cut from the toughest material meaning you can wear it anywhere, anytime. It may not be armor, but it damn sure feels like it.'), +(17069,'game_chess_1_king_b','Misc','UNDEFINED','f8b0d8c9-a6a9-4a82-b132-4d5a198390d2','','',NULL), +(17070,'Hammerhead Ship Armor','Armor','Medium','d421eef3-020a-45a6-b997-f9d3c91a742b','','','Hammerhead Ship Armor'), +(17071,'ORIG_85X_Thruster_Main','MainThruster','FixedThruster','cab053d5-37a6-42ac-8a0b-9778c4bf6b8a','','',NULL), +(17072,'Seat','Usable','UNDEFINED','0f9fee62-3d06-4fc2-a03f-514e7ac7294e','','',NULL), +(17073,'ORC-mkX Helmet Desert','Armor','Helmet','bfe3e855-20f2-4712-b949-26904f03b16d','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(17074,'PAB-1 Core Desert','Armor','Torso','fd24fbf9-d204-4230-952e-4e7b89154c91','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(17075,'Thrasher T-Shirt','Char_Clothing_Torso_0','UNDEFINED','ee484573-758e-4dae-a069-17565ee46371','','','This thrash-tacular tee from CBD rocks Gutterwash\'s infamous half-human, half-Vanduul logo, and also features leather straps sewn into the shoulder slope seam.\n\nWomen\'s sizes currently out of stock.'), +(17076,'Amioshi Plague','Cargo','Cargo','56b8e65f-b858-48d2-9915-c7d1a6e5d8b3','','',NULL), +(17077,'Stirling Exploration Helmet Sediment Edition','Armor','Helmet','c29241e7-68bd-4e87-a5fa-7d93c3af5515','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nDesigned to withstand inhospitable environments, the Stirling Exploration Suit provides a base level of protection from environmental hazards including radiation. Combining Caldera\'s advanced insulation fabrics with sophisticated polymers, the Stirling is able to safeguard the wearer whilst minimizing disruption to movement. Additionally, a self-cleaning system automatically activates after radiation exposure to expunge dangerous excess down to nominal levels. This helmet is only compatible with the Stirling Exploration Suit. The Sediment Edition blends reds, blacks, and grays reminiscent of clay and other planetary minerals.'), +(17078,'CK13-GID Seed Blend','Cargo','Cargo','3ca4a2c8-044f-4fe1-a948-34dcc2d24102','','',NULL), +(17079,'2949 Intergalactic Aerospace Expo Hat','Char_Clothing_Hat','UNDEFINED','e4c28233-e258-49e3-b115-53186c055f0b','','','A magenta hat emblazoned with the Intergalactic Aerospace Expo name and logo in white on the front.'), +(17080,'Door Control','Door','UNDEFINED','f4f4ab09-e668-4be8-8f37-d9065c25ea63','','',NULL), +(17081,'Gladiator Ship Armor','Armor','Medium','8e0b1c26-c3c0-445b-9e15-7c1b8cb5cde5','','','Gladiator Ship Armor'), +(17082,'Door','Door','UNDEFINED','8655084e-15cb-4970-8916-fd9667c5f101','','',NULL), +(17083,'Palatino Arms Mark I','Armor','Arms','e0d886f5-a721-4f1d-ae5a-ac8d14d2415c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower. The Mark I variant is primarily icy white with blue and red highlights.'), +(17084,'WeaponMount_Gun_S1_default_gatling_ballistic','WeaponMount','WeaponControl','defd7718-92b8-4679-a770-328ef2e4cf16','','',NULL), +(17085,'AImodule_ATC_SystemATC01','AIModule','UNDEFINED','04aabd56-2c53-4235-92b5-11be52507687','','',NULL), +(17086,'Dashboard','SeatDashboard','UNDEFINED','7e40d89d-c68c-463e-9e8e-93e3a0ce5389','','',NULL), +(17087,'H_Dashboard_Projector_HUD_ORIG_890Jump','Display','UNDEFINED','083b0a84-46bb-4b06-ba3d-f62ba46c5576','','',NULL), +(17088,'display_ship_components_03x01x01_coolers_s1','ShopDisplay','UNDEFINED','8bfa9ba0-ee22-426f-bdbc-3f5ae857d446','','',NULL), +(17089,'TRGT. STATUS','Seat','UNDEFINED','384436df-0ea7-4add-9856-e82a218277af','','',NULL), +(17090,'Railing_Straight_2m_LowTech_Util_Stairs_02x01_a','Usable','UNDEFINED','41f017f7-d293-4a68-9a9e-f9561bda06dd','','',NULL), +(17091,'AEGS_Javelin_SCItem_Seat_Security','Seat','UNDEFINED','f792e762-0c17-44f6-9e6c-bbb1a1fc8390','','',NULL), +(17092,'AEGS_Reclaimer_Salvage_Turret_Lighting','Room','UNDEFINED','48091c8d-7b76-44dd-a788-edd08d1e013a','','',NULL), +(17093,'Manned Turret','TurretBase','MannedTurret','6ea38104-2229-4937-9f5f-d29f3b32b4b4','','',NULL), +(17094,'m_human_mannequin_odyssey_suit_04','ShopDisplay','UNDEFINED','becc0700-1bc9-442d-9b49-a19ce1191a96','','',NULL), +(17095,'Testudo Core','Armor','Torso','edaf0b70-e1a4-48ff-b827-37e9324014bd','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Medium, Light\n\nThe Testudo armor for Quirinus Tech blends battlefield durability with everyday comfort. It weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort.'), +(17096,'Stratus Pants Yellow','Char_Clothing_Legs','UNDEFINED','8a31caa9-41b9-482c-bfd3-3f89876b12a9','','','Carrying Capacity: 0.5K µSCU\n\nCasual comfort that you can wear anywhere. The Stratus pants feature a soft comfort waistband that perfectly embraces your hips, and distinct reinforced paneling to ensure long wear and supreme style.'), +(17097,'ClipVest Work Harness Black','Char_Clothing_Torso_1','UNDEFINED','8ff1a659-4967-4387-a125-39ba1f784aad','','','Carrying Capacity: 2K µSCU\n\nStegman\'s ClipVest is a multi-purpose work harness that keeps your tools handy when and where you need them. Built from industrial strength materials, this harness offers a back piece to help alleviate strain and provide counterbalance.'), +(17098,'Cargo_Comm_125x3_Food_a','Cargo','Cargo','11975683-8011-4bc7-9bc5-68a5a6765909','','',NULL), +(17099,'Lindinium (Ore)','Cargo','Cargo','060cfa4c-9571-467b-80ea-cabff141e2a2','','',NULL), +(17100,'Door','Door','UNDEFINED','804d6104-a675-4043-8cd7-67ff82000664','','',NULL), +(17101,'Hydrogen Fuel','Cargo','Cargo','c6bb96e4-fda8-4b39-9079-f0a1e403bc81','','',NULL), +(17102,'FS-9 Magazine (75 cap)','WeaponAttachment','Magazine','b5f37920-ba9a-4a07-85e9-4d09f8e2f5ad','','','Item Type: Magazine\nCapacity: 75\n\nThis magazine for the Behring FS-9 LMG holds seventy five 5mm rounds.'), +(17103,'Carryable_1H_SQ_datapad_rugged_1_a_DC_Lobby_ServerRoom_Keypad','Misc','UNDEFINED','cc535f4f-8b3b-4e40-af58-241222a411f3','','',NULL), +(17104,'Door Control','ControlPanel','DoorPart','951bf2ae-6a74-454c-86ef-adc712f9b34e','','',NULL), +(17105,'Table_Booth_4_Seat_ARGO_Mole','Usable','UNDEFINED','c60cfee3-c6a1-42da-b23f-03d49922c8e1','','',NULL), +(17106,'Mustang Nose Scoop','Turret','BallTurret','058d4903-33ee-4473-a13b-1c7848f78b7a','','','Mustang Nose Scoop'), +(17107,'Ignite II-G Missile','Missile','GroundVehicleMissile','7e12039d-f782-4d14-ac78-6a83ce8a0bf1','','','Manufacturer: Firestorm Kinetics \nTracking Signal: Infrared \nSize: 2 \n\nThe Ignite is Firestorm\'s premier brand of heat-seeking strike missile that is the definition of Fire and Forget. Simply let it fly and enjoy the show. Note: This missile may only be launched by ground vehicles.'), +(17108,'ADP-mk4 Core Big Boss','Armor','Torso','f1fb1b85-8e33-4762-8a89-bdfa1395c470','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nWhen there\'s a difficult job at hand, you want to ensure that you can see it through to the end. Clark Defense Systems\' ADP-mk4 heavy armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers.'), +(17109,'Grav Lev 1','ManneuverThruster','JointThruster','b8debb10-f7b3-4183-a938-1092935566c7','','','Grav Lev 1'), +(17110,'Eclipse','PowerPlant','Power','277e2f9c-d899-442d-a999-23368b3bdb6c','','','Item Type: Power Plant\nManufacturer: Tyler Design & Tech\nSize: 2\nGrade: A\nClass: Stealth \n\nCompeting medium power plants struggle to match the heat and signature reduction of the Eclipse. Tyler Design & Tech’s mastery of stealth tech makes this component a must own by those who prefer to go unnoticed.'), +(17111,'Morozov-SH-C Helmet Vesper','Armor','Helmet','666028be-06d7-4f16-a900-5e324f00a254','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(17112,'Stud','Char_Head_Piercings','UNDEFINED','a87f7bfb-10d2-427f-b8c9-c86fdbd635ba','','',NULL), +(17113,'Shutters','AIModule','UNDEFINED','e2dd5dba-5a99-40b8-a9b5-4bdaee748d71','','',NULL), +(17114,'Stileron','Cargo','Cargo','ea932524-fa77-4f00-ae03-70d7f357fe15','','',NULL), +(17115,'Dashboard','SeatDashboard','UNDEFINED','54065c34-f151-4544-8d22-869a3f321a1a','','',NULL), +(17116,'ADP-mk4 Helmet Woodland','Armor','Helmet','80fd0b3b-2ceb-4288-8867-ca30ffb7c4bd','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhen there\'s a difficult job at hand, you want to ensure that you can see it through to the end. Clark Defense Systems\' ADP-mk4 heavy armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers.'), +(17117,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','d195e8b0-4859-4207-b253-d0956cd79560','','','Joker Defcon - Noise Launcher'), +(17118,'Leonids Cannon','Weapon','Gun','2f92d27a-f04f-47f9-aeb5-96ad4fad15ea','','','Manufacturer: RSI\nItem Type: Ballistic Cannon\nSize: 5\n\nBuilt specifically for the Meteor, the Leonids ballistic cannon provides formidable firepower designed to overwhelm aggressors that dare get within range. RSI expertly incorporated the cannon atop both sides of the ship to seamlessly integrate with the ship\'s components and provide full forward coverage.'), +(17119,'Ketchum Beanie Tan','Char_Clothing_Hat','UNDEFINED','ec992f2a-4316-4a4d-93cb-45e1e37d594c','','','Complete your cool-weather wardrobe with the classic Ketchum beanie from Alejo Brothers.'), +(17120,'Molina Mold Samples','Cargo','Cargo','f7ffb7f6-a91f-46d1-8b96-4d33cf60dee4','','','Samples of the deadly Molina Mold securely sealed in biohazard containers to ensure its toxic fungal spores can\'t get airborne.'), +(17121,'SCItemDisplayScreen_ATLS_Battery','Display','Default','437f093f-305c-4d8a-92f1-210583303565','','',NULL), +(17122,'Prophet','Radar','MidRangeRadar','fb4c8baa-4d8e-4a2e-8102-675d3bd72640','','','Item Type: Radar\nManufacturer: Blue Triangle Inc.\nSize: 1\nGrade: A\nClass: Stealth\n\nThe art of seeing without being seen has never been better exemplified than by the Prophet radar system. Blue Triangle Inc. has managed to maximize sensitivity while minimizing pulse emissions to create a radar ideal for remaining off other people’s.'), +(17123,'Radford Shirt Blue Wide Pinstripe','Char_Clothing_Torso_0','UNDEFINED','ca35b3f2-5f25-4334-b7c4-f2c69efbf94f','','','The Radford dress shirt and tie combo proves that simple elegance is eternal. The shirt features a unique side seam that provides a tailored fit. A silver tie bar is the perfect finishing accent to make sure everything stays in place.'), +(17124,'Hello Sunshine Surprised Planter','Misc','UNDEFINED','f2774a6d-14b6-4dd9-8d4f-e8446fa8a456','','','Bring a little life to your decor with the Hello Sunshine Planter from Sakura Sun. Available in a number of colors and unique facial expressions, this charming ceramic container makes for a cheerful place for your plant to call home.'), +(17125,'Stirling Exploration Suit ASD Edition','Armor','Undersuit','c1e712aa-80dc-4567-8a46-04483d5b309b','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nDesigned to withstand inhospitable environments, the Stirling Exploration Suit provides a base level of protection from environmental hazards including radiation. Combining Caldera\'s advanced insulation fabrics with sophisticated polymers, the Stirling is able to safeguard the wearer whilst minimizing disruption to movement. Additionally, a self-cleaning system automatically activates after radiation exposure to expunge dangerous excess down to nominal levels. The ASD Edition was contracted specifically by Associated Science & Development to provide protection for their scientists working in laboratories with radioactive materials.'), +(17126,'ORC-mkV Core Yellow','Armor','Torso','0860d4f1-efa4-4ec9-93e4-557337d644ba','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(17127,'TrueDef-Pro Core Gold/Grey/Black','Armor','Torso','2e4c100a-66ab-40ec-8c60-7d9db7cac3c1','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(17128,'Radford Shirt White Pinstripe','Char_Clothing_Torso_0','UNDEFINED','def88141-6d05-4a0c-b0f9-edcec0f64a08','','','The Radford dress shirt and tie combo proves that simple elegance is eternal. The shirt features a unique side seam that provides a tailored fit. A silver tie bar is the perfect finishing accent to make sure everything stays in place.'), +(17129,'Radford Shirt White Grid','Char_Clothing_Torso_0','UNDEFINED','f11bfe23-249c-450b-a5e8-3363b1f6be53','','','The Radford dress shirt and tie combo proves that simple elegance is eternal. The shirt features a unique side seam that provides a tailored fit. A silver tie bar is the perfect finishing accent to make sure everything stays in place.'), +(17130,'facial_hair_005','Char_Head_Beard','UNDEFINED','3545b83d-46c3-45d1-965a-3cfc15136ea3','','',NULL), +(17131,'Radford Shirt White Wide Pinstripe','Char_Clothing_Torso_0','UNDEFINED','216ccbac-2460-472f-af63-801afa270f19','','','The Radford dress shirt and tie combo proves that simple elegance is eternal. The shirt features a unique side seam that provides a tailored fit. A silver tie bar is the perfect finishing accent to make sure everything stays in place.'), +(17132,'Edgewear Pants Imperial','Char_Clothing_Legs','UNDEFINED','634939f4-75a3-4c6d-aa53-351923296355','','','Carrying Capacity: 4K µSCU\n\nStegman\'s Edgewear utility clothes are made from reinforced nylon weaves and lined with temperature-rated quilted technology to provide you with a little extra protection while on the jobsite. Double knees, reinforced joint pads and extra pockets add comfort and durability to this field-tested and worker-approved clothing line.'), +(17133,'Landlite Boots Twilight','Char_Clothing_Feet','UNDEFINED','fa154e8e-44b1-402a-9000-56e6c0a119a9','','','Who says work boots can\'t be comfortable? Grindstone\'s Landlite boots are built with a breathable synth-leather material to keep your feet dry, a contoured, memory footbed, and a slip-resistant outsole, making it perfect for whatever worksite you throw at it.'), +(17134,'M9A Cannon','Weapon','Gun','aa0f8505-7284-46ee-af10-12356f3e7576','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 7\n\nStrike at the very heart of your enemies with the devastating impact of Behring\'s M9A energy autocannon. When fully charged, the massive stopping power of this laser weapon has the potential to halt even capital ships in their tracks.'), +(17135,'Bed','Seat','UNDEFINED','7c1e66e7-bb7f-435f-882b-509b5f63dce5','','',NULL), +(17136,'Door Control','ControlPanel','DoorPart','2140e842-f4e0-4832-a1de-5d31c90ba2c0','','',NULL), +(17137,'Morningstar Helmet Sienna','Armor','Helmet','303d5646-8614-4d39-991c-78db6984632b','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nShow no weakness while wearing the Morningstar. This fully-enclosed combat helmet is tailored to endure a variety of combat situations and provides protection against an array of threats from ballistic to concussive to energy. Visor is AR crosshair compatible.'), +(17138,'ORC-mkV Legs Dark Red','Armor','Legs','283f255c-75b7-4258-bdc0-ffd5f34d40c1','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(17139,'WiDoW','Cargo','Cargo','afbf869b-da74-4f0b-b029-c1fe95c9ebbe','','',NULL), +(17140,'MASTER_Carryable_PowerPlant','Cargo','Small','417fd566-e526-4a45-99dd-16d6bbd1f2a4','','',NULL), +(17141,'Monde Helmet Crimson Camo','Armor','Helmet','532de455-b2c5-460e-b1a2-216641b9bc32','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde helmet. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system.\n\nThis edition features a bold red digital camo pattern.'), +(17142,'Ship Showdown \'52 Mercury Coin','Misc','Utility','48e4bd90-2526-4a7e-a97f-7f7eaaa4ac2a','','','The Mercury Star Runner delivered a strong showing in the 2952 Ship Showdown with its second place finish. Ringed in blue, this coin commemorates the iconic courier ship with its image on one side and the Crusader Industries logo on the other.'), +(17143,'Monde Helmet Delta Camo','Armor','Helmet','8f605d77-af20-4576-bfb9-bd97ca6ae5c5','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde helmet. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system.\n\nThis edition features a brown, gray, and tan camo pattern with brass accents.'), +(17144,'Monde Helmet Hemlock Camo','Armor','Helmet','6c740727-7f6a-44d4-81d0-e7a1717382f3','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde helmet. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system.\n\nThe Hemlock edition features a green camo pattern.'), +(17145,'Pulse \"Piconalia\" Laser Pistol','Weapon','Small','779a3412-7278-4ba7-9074-94cb7f541edc','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Pistol\nClass: Energy (Laser)\n\nBattery Size: 60\nRate of Fire: 500 rpm (1000 rpm rapid)\nEffective Range: 15m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nThe Pulse Laser Pistol is a fully automatic pistol intended for close quarter combat. VOLT designed the weapon with a unique capacitor that condenses the pistol\'s laser energy, increasing its rate of fire at the cost of greater inaccuracy and a higher risk of overheating.\n\nLight up the night this Luminalia with this green Piconalia edition.'), +(17146,'Monde Helmet Daimyo','Armor','Helmet','a97f17aa-dc11-4415-aea5-7de6f530d296','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde helmet. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system.\n\nThe Daimyo edition is colored brown and gray with polished steel plating.'), +(17147,'Monde Helmet Keystone','Armor','Helmet','7c8c4b7c-0497-408a-9bad-009d7ee8d2c0','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde helmet. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system.\n\nThe Keystone edition features a white, gray and blue finish with URW logos.'), +(17148,'Monde Helmet HighSec','Armor','Helmet','1ee43c13-990f-4a3f-b4ed-d5727af01cac','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde helmet. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system.\n\nThe HighSec edition features a carbon fiber finish with red accents.'), +(17149,'Monde Helmet','Armor','Helmet','f8b0fa46-02ef-45fb-ab05-d8e1e7306e0a','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde helmet. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system.'), +(17150,'ClipVest Work Harness Tan','Char_Clothing_Torso_1','UNDEFINED','59e36878-6702-4024-9c06-d9f050c13c0b','','','Carrying Capacity: 2K µSCU\n\nStegman\'s ClipVest is a multi-purpose work harness that keeps your tools handy when and where you need them. Built from industrial strength materials, this harness offers a back piece to help alleviate strain and provide counterbalance.'), +(17151,'Tuna with Vegetables Omni Pack','Food','Sachet','b6e16af7-7c01-4f5c-b66c-5eeafe7e07fd','','','NDR: 70\nEffects: Hypertrophic, Hypo-Metabolic\n\nOmni Packs use premium certified organic ingredients to create a complete balanced ready-to-eat meal with a premium taste.'), +(17152,'DoorProximitySensor_0_5x0_5x0_5_Reclaimer','Sensor','DoorPart','16ec2948-c7f0-4913-849c-d318db7d57d9','','',NULL), +(17153,'Ati Jacket Green','Char_Clothing_Torso_1','UNDEFINED','f298edad-644e-4b3f-b5f0-752d4a5ca11c','','','Carrying Capacity: 2K µSCU\n\nFiore\'s is a modern update of traditional Earth design. Slim tailoring, a high collar, and striking asymmetrical design make this overcoat a must-have item for any wardrobe.'), +(17154,'KRIG_L21_Wolf_Thruster_Pipe','AttachedPart','UNDEFINED','78d51f7e-8bad-459c-bb47-1df7b9b228ef','','',NULL), +(17155,'Monde Helmet Hiro','Armor','Helmet','212751b6-643d-451d-a598-2d17e83bd1b0','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde helmet. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system.\n\nThe Hiro edition features a clean white finish with dark gray accents.'), +(17156,'ADP Arms Woodland','Armor','Arms','8fd1742f-d8d6-46bb-a2a6-bf07dd7a5bd6','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(17157,'Inquisitor Core Twilight','Armor','Torso','4fe62ba3-74f7-4235-a22b-13269fce951a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(17158,'ORC-mkV Legs Sakura Sun Edition','Armor','Legs','2aaa174c-0af8-45bb-a26b-0587ddd60923','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement. The Sakura Sun Edition was made specifically for the company.'), +(17159,'Geist Armor Legs Desert','Armor','Legs','e097e020-392e-428e-830e-1a4495092697','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(17160,'ADP-mk4 Helmet Woodland','Armor','Helmet','6eaf3b97-522e-4230-a813-f5c5ffbb9f27','','',NULL), +(17161,'Bed_AEGS_Retaliator_Captain','Usable','UNDEFINED','3bc0730b-ed83-41e1-9cb2-efc4161d7c00','','',NULL), +(17162,'Flight Blade','FlightController','UNDEFINED','5a8d386d-c139-4f59-a60c-49bb6f897a03','','',NULL), +(17163,'Shipment','Misc','UNDEFINED','7afa8a33-44d4-41c5-914e-45a56475d98b','','',NULL), +(17164,'Medical Bed','Usable','UNDEFINED','f5a969ca-f628-470c-bd92-b30693d1c273','','',NULL), +(17165,'Internal Tank','FuelTank','Fuel','b2a06ccf-6e96-431e-97bc-950ce9d1a0fd','','',NULL), +(17166,'Seat','SeatAccess','UNDEFINED','cf86f2c5-1d1e-465b-98d1-17775316052a','','',NULL), +(17167,'ORC-mkX Helmet Justified','Armor','Helmet','c0dc8da1-c569-4291-891f-60fd0e6a7f40','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThis version of CDS\' ORC-mkX combat armor has been modified from its original form. The mark X is part of CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility. Visor is AR crosshair compatible.'), +(17168,'Pyro RYT Multi-Tool','Weapon','Gadget','dc0b1117-8590-43c7-9c68-7644ed8c89aa','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier.'), +(17169,'Door Control','Door','UNDEFINED','76b6fe4b-3c85-41da-ae4e-907f3dc7cd9b','','',NULL), +(17170,'Remote Turret','Turret','GunTurret','c57cff4a-f5ec-403c-b2b4-201f60b2a59d','','','Remote Turret'), +(17171,'Door_Ship_Sensor_Proximity_1x3x2','Sensor','DoorPart','cc4e2ed8-514c-4acc-a704-eda9305a3e06','','',NULL), +(17172,'ARGO_MPUV_Lights_Leg_Left','Room','UNDEFINED','e9e355e7-09ba-421f-932f-93bf338d353d','','',NULL), +(17173,'Remote Turret','Turret','GunTurret','38a67e89-6e94-4f7c-ba01-6f3c0ff3ea94','','','Remote Turret'), +(17174,'RSI_Salvation_Thruster_Mav_Joint','ManneuverThruster','JointThruster','312410f7-43db-4dd6-a7d9-02f0490a4b07','','',NULL), +(17175,'Stinger Mamba Livery','Paints','UNDEFINED','df34221a-190e-45f2-a8c6-ead7c0a2f146','','','Your enemies will never see you coming with the black-on-black Mamba livery for the Esperia Stinger.'), +(17176,'Vegan Delight Omni Pack','Food','Tin','a368e31b-5fea-4ce3-ba88-37b72157787a','','','NDR: 56\nEffects: Hypertrophic, Hypo-Metabolic\n\nOmni Packs use premium certified organic ingredients to create a complete balanced ready-to-eat meal with a premium taste.'), +(17177,'TRGT. STATUS','Seat','UNDEFINED','3ccfa99b-1947-484d-8162-fd963e96bc11','','',NULL), +(17178,'BoreMax','Gadget','Gadget','06be9c06-120f-46d8-8179-e95ccd1f137a','','','Manufacturer: Thermyte Concern\nItem Type: Mining Gadget\n\nLaser Instability: -70%\nCluster Modifier: 30%\n\nResistance: 10%\n\nThe BoreMax helps focus laser power to reduce instability significantly, while also keeping clusters of valuable deposits together upon shattering. While it does make it more difficult and time-consuming to bypass the deposit\'s resistance, most miners find the extra safety and increased yield worth the extra effort.\n\nManufacturer Warning! Using more than one mining gadget per deposit can result in a catastrophic explosion.'), +(17179,'Renegade Vest Racing','Char_Clothing_Torso_1','UNDEFINED','8c9c0667-4820-4966-8eeb-a797ab7952fc','','','Carrying Capacity: 1K µSCU\n\nThe Renegade Racing vest provides protection against road rash without adding to your lap time. Graphene-based nanocomposite plating makes the vest extremely light yet ultra-durable. Ideal for everything from idyllic rides to heart pounding last laps.'), +(17180,'Singe Cannon (S2)','Weapon','Gun','40b94722-48be-406a-9843-5c77772e4ab4','','','Manufacturer: Banu\nItem Type: Tachyon Cannon\nSize: 2\n\nMade popular by a Banu souli, the Singe tachyon cannon consistently delivers devastating energy damage across vast distances. Though slow to fire, the lightning-fast tachyon projectile strikes targets almost instantaneously, making the Singe a favorite choice for Banu security ships. Although the Banu have long forgotten the origin of this high tech weapon, several unique design choices have led scholars to suspect that the Banu might have appropriated the tech into their culture, instead of inventing it themselves.'), +(17181,'ADP-mk4 Arms (Modified)','Armor','Arms','26296f0c-c8e6-42e9-a748-e63ccadf8c49','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nBased on CDS\' ADP-mk4 heavy combat armor, this set has been modified from its original form. When there\'s a difficult job at hand, you want to ensure that you can see it through to the end. This armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers.'), +(17182,'Pyro RYT Multi-Tool','Weapon','Gadget','6ca733b3-bc20-4c78-bf03-3a348e458786','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier.'), +(17183,'un_cigar_single_1_a','Misc','UNDEFINED','b68efcdc-5c50-47ef-9040-a3689f4c7571','','',NULL), +(17184,'Door Control','Door','UNDEFINED','11bf8a46-a14c-47c0-9f8c-786b5221efd9','','',NULL), +(17185,'Geist Armor Core Epoque','Armor','Torso','2fdee81c-45ac-45d9-89d8-f427882b6386','','','Item Type: Light Armor\nDamage Reduction: 20%\nCarrying Capacity: 8k µSCU\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpacks: Light\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them harder to detect, and specialized tubing built into the soles of the boots dampens the sound of footsteps.\n\nThe Epoque edition features a navy and black coloring, finished with baroque gold detailing.'), +(17186,'MRAI_Guardian_Thruster_Mav_Top','ManneuverThruster','FixedThruster','5dc05fe4-21ed-4406-a523-37809b323805','','',NULL), +(17187,'TRGT. STATUS','Seat','UNDEFINED','8afb9e60-a7e0-45d1-8c8c-5868e67cfc3e','','',NULL), +(17188,'Paint_300_Dash_GlossYellow','Misc','UNDEFINED','cdf9a0fb-1385-41e4-b376-9c199e35e420','','',NULL), +(17189,'Seat','SeatAccess','UNDEFINED','cf40d400-47e6-4092-a531-76b1a85b381c','','',NULL), +(17190,'Fresnel \"Yormandi\" Energy LMG','Weapon','Medium','1e860b7b-cfcc-4b94-9e87-f4052a5f68f6','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: LMG\nClass: Energy (Electron)\n\nBattery Size: 165\nRate of Fire: 550 rpm - 220 rpm\nEffective Range: 50m\n\nAttachments: Optics (S3), Underbarrel (S3)\n\nThe engineers at VOLT crafted the Fresnel LMG to bring a powerful energy weapon to the frontlines, one that can initiate a fight with a rapid spray of deadly blasts. As the weapon heats up, the shots become slower and more powerful, but be careful of overheating. A weapon of this magnitude demands a strong foundation; operators are encouraged to fire from a crouching position to allow for better recoil management.\n\nThe Yormandi edition is mottled green with a graphic of the fierce reptile along the side.'), +(17191,'ORIG_890J_Seat_BattleBridge_Left','Seat','UNDEFINED','0211326c-3e75-4f8e-899a-4ada33ce9465','','',NULL), +(17192,'Thrust','Misc','Harvestable','45ea9ad6-79d4-4088-806d-963c261f5ebe','','','This cocktail of chemicals provides the user with a massive boost of energy, increased sociability, euphoria, and heightened tactile sensitivity. Rumored to have been developed as an energy drink base, this drug has proven popular among those wishing for extra energy or to \"party longer.\" However, owing to the risk of heart attack, deadly dehydration, and seizures, the mix has been banned in most areas. Users can be identified by their stuttering, rambling speech, flushed skin, and sweating.'), +(17193,'Strata Arms Shire','Armor','Arms','2ec9519a-232e-45b6-8310-5480387f295f','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres.'), +(17194,'Grin_MTC_Door_Exterior_Decal','Decal','DoorPart','1395abf4-79bc-4ce9-bf6f-42a8e93e6b61','','',NULL), +(17195,'Col_A_Door_Cell_Lock_a','Door','UNDEFINED','9df74d8a-b837-44df-8ee7-bda8c8840328','','',NULL), +(17196,'Carryable_2H_FL_MissionItem_Microsatellite_a','Misc','UNDEFINED','dcec542b-8973-4ad1-99ad-a138f4d61ca5','','',NULL), +(17197,'Astatine','Cargo','Cargo','2b4d946d-7a2e-4949-82fa-d5ea0cc8487a','','',NULL), +(17198,'Seat','SeatAccess','UNDEFINED','64187f46-a2f5-4557-a663-20a020092721','','',NULL), +(17199,'RSI_Bengal_Thruster_Retro','ManneuverThruster','JointThruster','af7cc712-5831-4ecc-b43e-43a8342adbd7','','',NULL), +(17200,'Morozov-SH Core Red Alert','Armor','Torso','248821bc-642e-4e04-af82-90b609103b66','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12K µSCU\nBackpacks: All\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(17201,'Weapon_Rack_1_VOLT_Sniper_Uncommon_001','Usable','UNDEFINED','00d8ec53-53e5-45bb-8aab-944560504180','','',NULL), +(17202,'Plastic Cup','Misc','UNDEFINED','e503db84-56bc-44fc-ba7d-021cc44bf027','','',NULL), +(17203,'Door_Ship_Sensor_Proximity_3x3x3','Sensor','DoorPart','300dc0a7-d402-41d5-aeec-3bea0b84b01e','','',NULL), +(17204,'Starfarer Black Livery','Paints','UNDEFINED','8fae8721-8de5-4dba-95a1-f21ae265e5eb','','','Customize your Starfarer with this black chrome livery.'), +(17205,'Colonialism_Outpost_RN_Battery','Battery','UNDEFINED','ca32efc5-ab29-44d8-948b-6b3a2dd84dd0','','',NULL), +(17206,'ANVL_Pisces_Thruster_Mav_Joint_Top_C8X','ManneuverThruster','JointThruster','3026875b-cf2b-446f-8071-ca8cd5dec476','','',NULL), +(17207,'TRGT. STATUS','Seat','UNDEFINED','c03b0e51-3dd4-4527-88a9-50927c07eb46','','',NULL), +(17208,'TOAG_LaserGatling_Barrel_S2','WeaponAttachment','Barrel','cb57e9b0-683c-4f93-a56a-ac66535f2516','','',NULL), +(17209,'Calva Helmet Red Festival','Armor','Helmet','7440e342-3c54-4a15-93f5-7cf041bbb57c','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nGet a clear view of everything around you with the Calva helmet from Quirinus Tech. The large face shield made from proprietary synthetic sapphire provides scratch resistance while remaining just as thin and light as typical materials.\n\nThis special Red Festival variant features deep red and gleaming gold accents with an all gold visor to help give your lunar new year an auspicious start.'), +(17210,'Calva Helmet Year of the Rat','Armor','Helmet','96a017e7-fb9c-4098-8180-4bb8575839e1','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nGet a clear view of everything around you with the Calva helmet from Quirinus Tech. The large face shield made from proprietary synthetic sapphire provides scratch resistance while remaining just as thin and light as typical materials.\n\nThis special variant is adorned with a Year of the Rat symbol on the back and features deep red and gleaming gold accents with an all-gold visor to help give your lunar new year an auspicious start.'), +(17211,'Access','SeatAccess','UNDEFINED','9fc06ae2-c3b3-4bc3-8af5-b2d9b8979fd6','','',NULL), +(17212,'Turret','Turret','BallTurret','746fcb7a-2bec-4f19-87c2-d67f05362924','','','Multitask on the battlefield with this remote turret system. Featuring precise controls and a wide field of fire, the turret allows pilots to add combat support to their resume.'), +(17213,'Ranta Dung','Cargo','Cargo','39cb3073-b4af-4a75-8abd-f1ac4df842d5','','',NULL), +(17214,'Flight Blade','FlightController','UNDEFINED','dc052e1a-518d-48e3-b608-57d55c2db527','','',NULL), +(17215,'Jaclium (Ore)','Cargo','Cargo','ae182387-b03d-403d-845c-df05249fac5d','','','A naturally occurring rare metal form of jahlium, it is used in the production of extremely strong alloys with incredible tensile strength. Originally confused with common jahlium when first discovered, the above average results when used lead to researchers to realize its value.'), +(17216,'Morozov-SH Legs Spite','Armor','Legs','a100ec8a-4103-4be8-a4d4-49a7d07e3c2c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5K µSCU\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(17217,'PAB-1 Arms Twilight','Armor','Arms','b654ca2a-6d3d-4d75-ae91-9d8820845105','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(17218,'Enkel Shirt Primrose','Char_Clothing_Torso_0','UNDEFINED','9f93c037-eaf7-44a4-9afd-9bc2b2fc2c99','','','Habidash\'s Enkel is a simple, no-frills shirt designed to be comfortable, first and foremost.'), +(17219,'Ponos Boots Green','Char_Clothing_Feet','UNDEFINED','ac0dee23-9ba5-4a44-aaf5-d06df4bf0213','','','Quite simply, R6 Pro\'s Ponos boots were built for backbreaking work. Constructed out of Thermosulate technology, these waterproof and insulated workboots are rated for sub-arctic environments while the composite outsole ignores hazards to maintain traction when you need it most.'), +(17220,'Cadmium Allinide','Cargo','Cargo','9479e8d0-486b-44ba-8847-8d93b99c753d','','',NULL), +(17221,'Seat','SeatAccess','UNDEFINED','4d772ccd-7212-46eb-8101-ce8ee467d5a3','','',NULL), +(17222,'Internal Tank','QuantumFuelTank','QuantumFuel','cd41a879-1be2-45cb-a826-d22be2c1200e','','',NULL), +(17223,'bar_box_energy_calomeal_chocolatedeluxe','ShopDisplay','Default','dbc4405e-3f70-4949-ba3d-a0445acba408','','',NULL), +(17224,'ESPR_BallisticCannon_Barrel_S5','WeaponAttachment','Barrel','e2d856c4-0ba3-40af-a2c7-a444786bf885','','',NULL), +(17225,'Handcuffs','Misc','UNDEFINED','3ad20f83-47fe-47a4-8fde-2f1eed3f66e0','','',NULL), +(17226,'Haltur','Shield','UNDEFINED','78f47f2b-6680-4b08-a50a-e0b902ad4d9e','','','Item Type: Shield Generator\nManufacturer: Yorm\nSize: 2\nGrade: B\nClass: Competition\n\nStrong shield health and an exceptional generation rate gives the Haltur the best performance ranking of any shield in its class. Beloved by racers and those who prefer to navigate away from danger instead of soaking it up.'), +(17227,'vlk_spewgun_ballistic_ice_adult','Weapon','Medium','ec962100-a739-4fdb-b248-0076d52fe18e','','',NULL), +(17228,'Bed','Usable','UNDEFINED','8bdb64df-9678-4cdd-a5b4-fa334f22ab22','','',NULL), +(17229,'DoorProximitySensorItem_8x8x4','Sensor','DoorPart','d75d6100-8ab1-4a13-a2c8-760eca281256','','',NULL), +(17230,'Door Control','ControlPanel','DoorPart','f3e38408-a923-4bc7-935d-90c3c32c4168','','',NULL), +(17231,'RS1 Odysey Spacesuits','Cargo','Cargo','340e3a9a-5587-4c44-8fd9-6360fe9597c1','','',NULL), +(17232,'Internal Tank','FuelTank','Fuel','60adcd3b-9135-4753-9630-e6c27777931e','','',NULL), +(17233,'RSI_Aurora_Thruster_LN_SG_Retro','MainThruster','FixedThruster','95486df8-e362-4b82-9f17-e0ff633b1b94','','',NULL), +(17234,'Seat','SeatAccess','UNDEFINED','369ccfc4-7175-442d-a7b4-3b06bc8d30e9','','',NULL), +(17235,'f_human_mannequin_legacy_marine_heavy','ShopDisplay','UNDEFINED','aa5170e2-0be2-4fc3-ad7e-cd7351ffef83','','',NULL), +(17236,'Carryable_1H_SQ_noodle_box_5_a','Misc','UNDEFINED','7e7208fb-abbf-498d-935a-568a9210afcd','','',NULL), +(17237,'SalvageFillerStation_MISC_Fortune_Left','SalvageFillerStation','UNDEFINED','01a9960e-0b8e-40e5-b90d-b5f3125076be','','',NULL), +(17238,'Manned Turret','UtilityTurret','MannedTurret','c6f9489b-7757-4ec3-8354-ff7abe692a18','','',NULL), +(17239,'Maze','Cargo','Cargo','5cf8c265-0e42-4101-b694-408cf0abdb9d','','',NULL), +(17240,'Door','Door','UNDEFINED','9e176fca-d94a-4082-990c-511005dc6f51','','',NULL), +(17241,'Debnam Gloves Aqua','Char_Clothing_Hands','UNDEFINED','65d8cbde-ba26-45c1-8da3-5bc5dc199e20','','','Named after the influential Terran tailor, Debnam gloves incorporate that famous tailor\'s classic design to keep your hands comfortable in colder temperatures.'), +(17242,'Xanthule Suit','Armor','Undersuit','d820fc23-3490-4ef7-90fe-4fa82731c1f8','','','Item Type: Flight Suit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 6.5 µSCU\nBackpacks: Light\n\nPerfected through centuries of innovation, Syang Fabrication\'s sleek and stylish Xanthule flight suit has been meticulously adapted to the Human physique. The Xanthule suit features breathable lightweight plating made with a carbon-silk weave that provides reliable protection while maintaining the famed House\'s signature aesthetic.'), +(17243,'Geist Backpack Rogue','Armor','Backpack','ed345298-87d0-4938-bc08-9f1c37e1a6cf','','','Item Type: Light Backpack\nCarrying Capacity: 54K µSCU\nCore Compatibility: All\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(17244,'BANU_TachyonCannon_PowerArray_S2','WeaponAttachment','PowerArray','f3ad2d5a-6601-4aa7-b56e-3ccf97909eb2','','',NULL), +(17245,'Gadget_Cabinet_kegr_fire_extinguisher_01_med','Usable','UNDEFINED','315161a3-2b35-4b7e-aca3-2a27da7c23d6','','',NULL), +(17246,'ARGO_SRV_Thruster_VTOL_Front','MainThruster','UNDEFINED','fc5d806c-af56-4425-aa73-a6e3eb9835ed','','',NULL), +(17247,'Silverton Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','9c480668-5132-45a8-887a-91ca8a156c4c','','','Carrying Capacity: 1K µSCU\n\nWhen you\'re on the frontier, you need reliable clothing that won\'t fray when the going gets tough. That\'s why DMC made the Silverton jacket with double-stitched, element-resistant leather and plenty of roomy pockets so you can keep your supplies on hand. With the Silverton, you\'ll be prepared for anything.'), +(17248,'Venture Legs Imperial','Armor','Legs','f809e10f-f506-4885-af4d-cc68a49e29bb','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(17249,'Radar_Display_VNCL_Blade','Display','UNDEFINED','02e08f09-886d-48a6-9bcb-31968893f150','','',NULL), +(17250,'ControlPanel_Screen_LightControl_3x4','ControlPanel','DoorPart','8b98e77a-a2b4-4531-a9d3-02d8c1511a94','','',NULL), +(17251,'Morozov-SH-I Helmet Pyrotechnic Horizon','Armor','Helmet','fef95957-ed52-4ed8-b94f-921677f04d3a','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing the same fortified armor plating, special anti-rip protective padding and ample storage, as the Morozov SH, the SH-I industrial variant was designed by RRS to protect workers employed in hostile zones while ensuring they had the full range of motion required to perform their duties. The Pyrotechnic Amalgamated Edition was made specifically for the company\'s mining efforts in Pyro during the 26th century. Visor is AR crosshair compatible.'), +(17252,'Cordimon Jacket Sienna','Char_Clothing_Torso_1','UNDEFINED','4315904e-81f3-439e-89c4-a840ffbc780b','','','Carrying Capacity: 3K µSCU\n\nStegman\'s classic worker\'s jacket has been a staple of job sites for over seventy years. This duotone pattern is cut from the toughest material meaning you can wear it anywhere, anytime. It may not be armor, but it damn sure feels like it.'), +(17253,'SHIELDS','ShieldController','UNDEFINED','c72d6b3a-7e9d-4b39-aa78-b3af067989ac','','',NULL), +(17254,'Morozov-SH-I Helmet Pyrotechnic','Armor','Helmet','e1ede578-27a0-4d52-bfcb-035e1c4072a3','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing the same fortified armor plating, special anti-rip protective padding and ample storage, as the Morozov SH, the SH-I industrial variant was designed by RRS to protect workers employed in hostile zones while ensuring they had the full range of motion required to perform their duties. The Pyrotechnic Amalgamated Edition was made specifically for the company\'s mining efforts in Pyro during the 26th century. Visor is AR crosshair compatible.'), +(17255,'Ranger','QuantumDrive','UNDEFINED','23652e98-de0a-4b72-a669-9a094cc7471d','','','Item Type: Quantum Drive\nManufacturer: Tarsus\nSize: 3\nGrade: B\nClass: Civilian\n\nRely on the Ranger to guide you through the stars. The quality and reliability of this classic Tarsus quantum drive has made it a ship staple for centuries.'), +(17256,'Ready-Up Helmet Aqua','Char_Clothing_Hat','UNDEFINED','c635aec6-71de-4d41-a2e5-ddc7a739ef45','','','The Ready-Up is a dependable, affordable softshell helmet alternative. Built from space-age plastic, the Ready-Up provides a vacuum-ready seal to keep you breathing for longer.'), +(17257,'Human Food Bars','Cargo','Cargo','97d4cd78-6dde-4db5-960c-d0400282fac9','','',NULL), +(17258,'MISC_Hull_C_Thruster_Mav_Fixed_Small','ManneuverThruster','JointThruster','6e95ee13-2d3c-4891-bde2-24d79d9053b5','','',NULL), +(17259,'Station','SeatAccess','UNDEFINED','2d777828-bf4d-4526-9130-15e3be095858','','',NULL), +(17260,'Oracle Helmet Blue','Armor','Helmet','1a984351-9e1b-43fa-a4bd-7c2ef7e4c5fc','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(17261,'Seat','Usable','UNDEFINED','d6596153-fcc0-4a17-855f-bfbe724db54a','','',NULL), +(17262,'Door Control','Door','UNDEFINED','e250ed83-6226-4cf3-bea0-b59802cd96c1','','',NULL), +(17263,'Screen_Datapad_PrisonerManifest','Display','UNDEFINED','1c4269ba-4cac-4b9f-a8bf-06fcb4c842bc','','',NULL), +(17264,'RSI Lesath Missile Turret','Turret','MissileTurret','3abc1038-9870-472f-af95-073a98cbbc60','','','Item Type: Missile Turret\nManufacturer: RSI\n\nPerfect for producing a wave of rapid-fire destruction, this bespoke RSI Scorpius missile turret, the Lesath, holds up to sixteen S2 missiles and offers a powerful alternative to the gun turret that comes as standard.'), +(17265,'Artimex Core Chairman\'s Club','Armor','Torso','60865948-2c95-4cd9-b7e0-c6974b1eed01','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape. The Chairman\'s Club edition is clad in black with rich gold highlights and features the insignia of the exclusive organization.'), +(17266,'BANU_TachyonCannon_Barrel_S3','WeaponAttachment','Barrel','2da7c4b6-21ab-4f4b-bd9d-e73e04306510','','',NULL), +(17267,'Door','Door','UNDEFINED','07c7cc6a-14d9-41fe-9bdf-be63fb4ba3b2','','',NULL), +(17268,'ORC-mkV Arms Dark Green','Armor','Arms','64e04605-9152-4a69-8fbe-6bebd2c8bcd4','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(17269,'Slickdry Waders Sirocco','Char_Clothing_Legs','UNDEFINED','843a165d-31c2-4e1c-801c-5c83a01ce09f','','','Carrying Capacity: 400 µSCU\n\nThe popular Slickdry Waders by Alejo Brothers are a combination of pants and boots made of a synthetic hydrophobic material and ensure the wearer will stay dry even if just stepping out of a river.'), +(17270,'K7 Pants','Char_Clothing_Legs','UNDEFINED','24b20f66-0a75-471e-a03e-7ebd4d146a01','','','Carrying Capacity: 3K µSCU\n\nDMC\'s K7 are an all-purpose cargo pants. Four easy access pockets provide extra storage while the triple-stitched polymer weave fabric is designed to withstand all kinds of weather conditions.'), +(17271,'Door Control','Door','UNDEFINED','9cf5dd13-3a87-45ee-ae2a-30d5fe02a02b','','',NULL), +(17272,'Hydrogen','Cargo','Cargo','6940c823-0f97-443f-bc6f-35e4dd21a89c','','',NULL), +(17273,'Personal Storage','Cargo','UNDEFINED','73465c71-a75d-45ef-af77-435e40057ccb','','',NULL), +(17274,'MXOX_NeutronRepeater_Barrel_S3','WeaponAttachment','Barrel','513e9543-b729-413e-9a14-0e1e8a199075','','',NULL), +(17275,'Bottle','Bottle','Default','5e355a4c-602c-424e-82f3-f5eb7c293469','','','Bottle'), +(17276,'Tuvois Jacket Aqua','Char_Clothing_Torso_1','UNDEFINED','287409d3-2ee8-42ee-801e-8bed193fdfb3','','','Carrying Capacity: 1K µSCU\n\nCreated in collaboration with legendary designer Avon, OpalSky is proud to unveil the Tuvois, an open vest featuring stark, bold styling that\'s destined to make an impression. \n\nWomen\'s sizes currently out of stock.'), +(17277,'can_drink_3_fizzz_shop_1x5_a','ShopDisplay','Default','70efc87e-77fd-48b9-87f6-0ef43c170913','','',NULL), +(17278,'Venture Core Yellow','Armor','Torso','9570a0c5-a5b4-4b0b-8dc3-d7718d357a7d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(17279,'Paint_Idris_Civilian','Paints','UNDEFINED','cfdf34f0-330b-4be2-bc3f-74ebab1025a7','','',NULL), +(17280,'Geist Backpack Golden Blossom','Armor','Backpack','bfc4076a-bf6d-4cf4-966a-84f76908c896','','','Item Type: Light Backpack\nCarrying Capacity: 54K µSCU\nCore Compatibility: All\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.\n\nThis matte black stealth armor is embellished with intricate golden flowers, giving your enemies one final glimpse of life before death.'), +(17281,'Seat','Usable','UNDEFINED','4eff3407-9bd2-4444-aef1-74ba4f8d777a','','',NULL), +(17282,'Seat','Usable','UNDEFINED','801c6fe0-0b69-4a75-a495-b92589076bca','','',NULL), +(17283,'Seat','SeatAccess','UNDEFINED','c3eded21-d480-4ed6-81fa-ce3359e2c8a2','','',NULL), +(17284,'Nitrogen','Cargo','Cargo','0ada25ce-b4d2-4745-be9c-ab069a5f4087','','',NULL), +(17285,'Door Control','Door','UNDEFINED','e5310364-6b2e-4413-80ea-7dd43d868101','','',NULL), +(17286,'AcryliPlex Composite','Cargo','Cargo','6e3ff231-4b5f-4887-9741-861d0fd8494c','','','This composite is a moldable material used in the construction of explosives. In addition to being commonly used in demolition applications for heavy industry and mining, it is also used to create small potent warheads. Care must be taken while transporting larger quantities of the composite as it is impact and heat sensitive.'), +(17287,'mod_rack_food_2_CenterOnly','ShopDisplay','Default','1e93682e-ea26-4213-90b7-9a9b4d886152','','',NULL), +(17288,'Workzone_Wall','Usable','UNDEFINED','5db361e1-1e04-4afa-944b-a7733710c137','','',NULL), +(17289,'Union Pants Red','Char_Clothing_Legs','UNDEFINED','dbd9d3dd-e844-44ba-b1dd-28a42983796c','','','Carrying Capacity: 0.5K µSCU\n\n987 delivers comfort, durability, and style with the Union pants. Designed with a special, next-gen blend of high-performance synthetic fabrics, these pants are enduringly fashionable in these modern times.'), +(17290,'Exo-8 Helmet (Used)','Armor','Helmet','6981d8a5-6e52-437f-a63b-fdae0d8f4bcf','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -60 / 90 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing a large face shield and torches on each side, the Exo-8 helmet lets you keep your eyes on the prize. Gyson designers smartly integrated space-safe fabrics into the helmet, so it can provide the protection you deserve at a price that won\'t break the bank. \n\nThis used helmet has been certified space-safe but may contain cosmetic defects not seen on the standard model.'), +(17291,'MTC Headhunters Reaper Livery','Paints','UNDEFINED','5ee62c7b-e6d5-48ac-963b-b6be679a4ad8','','','The Headhunters Reaper livery lets you proudly proclaim your allegiance to the gang. It features the gang\'s name and highlights in red on a beige and grey paint scheme. Compatible with all Greycat M-series vehicles.'), +(17292,'NONE_LaserRepeater_Ventilation_S1','WeaponAttachment','Ventilation','f9762ed1-0ea9-4fbf-a51d-f8b2129f1acb','','',NULL), +(17293,'Door','Door','UNDEFINED','b5af1985-02aa-4b38-83c0-e38331e6f1af','','',NULL), +(17294,'Venture Core','Armor','Torso','3f4c807c-985f-4bb7-a7ff-db158e2f979d','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(17295,'Internal Tank','QuantumFuelTank','QuantumFuel','c8953443-e4f8-44e5-b26b-fdefe74bddd5','','',NULL), +(17296,'Mining Arm','ToolArm','UNDEFINED','fc9d1a68-ec5e-480c-99fb-b94a2718d601','','',NULL), +(17297,'Flight Blade','FlightController','UNDEFINED','dc5cb70d-3200-4d86-b5cf-358af1b425e5','','',NULL), +(17298,'Pisces Standard Flight Blade','FlightController','UNDEFINED','a2a8fc05-772e-4b2d-ad27-34fd97b499ba','','','Manufacturer: Anvil Aerospace\nType: Flight Blade\n\nThis is the standard issue flight blade for the Anvil Pisces.'), +(17299,'StorageCage_Quantum_DeliveryMission','Cargo','UNDEFINED','74b6b467-3e8a-42e5-adcd-ef31651db5a7','','',NULL), +(17300,'ORIG_400i_RADR_Display','Display','UNDEFINED','215c07ce-60df-4d68-8757-b22646bd5027','','',NULL), +(17301,'Argo MPUV Ship Armor','Armor','Medium','ec55c836-f0fc-4e02-9d31-4a4578449082','','','Argo MPUV Ship Armor'), +(17302,'AdrenaPen Xtra','FPS_Consumable','Medical','8000b3ce-4f4c-495c-8917-e4c3164fcf9a','','','Manufacturer: CureLife\nItem Type: Medical Consumable\n\nFrom the Empire’s most trusted medical company, the CureLife AdrenaPen Xtra contains a mixture of the synthetic adrenaline Demexatrine and an anticholinergic antiemetic, giving it extra power to relieve muscle fatigue and symptoms related to being concussed.'), +(17303,'un_medical_box_1_needle_a','Misc','UNDEFINED','4c022501-a14d-4776-a691-33075e6d5f9d','','',NULL), +(17304,'Seat','SeatAccess','UNDEFINED','24e0cce8-5190-4482-b400-2ee0764620d0','','',NULL), +(17305,'Door_Ship_Sensor_Proximity_1x1x1','Sensor','DoorPart','e51a32de-d82a-45a2-b1aa-f07ff57d0969','','',NULL), +(17306,'Altruciatoxin','Cargo','Small','f33385af-1229-4943-bb5b-7523a0dc95e5','','','Created by chemically processing the pollen of Revenant Tree (altrucia lacus), common effects of ingesting or smoking altruciatoxin include relaxing of the muscles, sensory enhancement, and lethargy. Heavy usage can cause staining of the tongue.'), +(17307,'TRGT. STATUS','Seat','UNDEFINED','f2737104-0a0d-4f05-8c3b-ca761c46d725','','',NULL), +(17308,'m_weakspot_vlk_apex_irradiated','Char_Accessory_Head','Vanduul','b2a5f309-ceed-4d4d-87c8-fe38c6cab9da','','',NULL), +(17309,'Valkyrie Light Grey Livery','Paints','UNDEFINED','972a37f2-e4b2-4ae2-8e56-e2d43692eb0e','','','Customize your Valkyrie with this livery featuring a light grey color scheme with dark, bold patterns.'), +(17310,'Morozov-SH Core Redshift','Armor','Torso','51f70a59-adc7-4434-a1c4-b05e344aca13','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -97 / 121 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12K µSCU\nBackpacks: All\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(17311,'Weapon_Rack_4_Slots_MRAI_Guardian_Ext','Usable','UNDEFINED','6eee4d8d-5720-4290-9654-34fb1301fba8','','',NULL), +(17312,'RSI_Constellation_SCItem_Seat_CoPilot_Right_MFD','Seat','UNDEFINED','54049b45-5074-44ea-9740-e22378a377fd','','',NULL), +(17313,'ANVL_Hornet_F7A_Thruster_Retro','ManneuverThruster','JointThruster','346d0cf0-a174-44e4-9343-42e3a1125502','','',NULL), +(17314,'ARGO_MPUV_1T_Thruster_Aux_Joint','ManneuverThruster','JointThruster','bb0ca340-6fe7-4603-8a98-480302076597','','',NULL), +(17315,'Tungsten','Cargo','Cargo','60feb5a2-1935-4c00-84c2-fd6530de346a','','',NULL), +(17316,'DockingTube_Fuel_Ports_ARGO_MPUV_1T','DockingCollar','UNDEFINED','e418aa84-2eda-44c4-b2b4-7af0490d277c','','',NULL), +(17317,'Razorback Pants Imperial','Char_Clothing_Legs','UNDEFINED','0df9b852-94b7-410c-86dc-a1643825dbe0','','','Carrying Capacity: 2K µSCU\n\nDMC\'s Razorback pants are made to be worn. Built from industrial quality material, they feature reinforced kneepads to prevent tears on the job and stay rugged yet comfortable.\n\nWomen\'s sizes currently out of stock.'), +(17318,'SHIELDS','ShieldController','UNDEFINED','9e133c67-a871-43e3-9764-8913692312d2','','',NULL), +(17319,'TABA Hat','Char_Clothing_Hat','UNDEFINED','62e99ace-7332-4f2e-99f7-513f678794ed','','','A black and white cadet hat with TABA Freightline\'s name and logo emblazoned across the front and back panels.'), +(17320,'CBH-3 Helmet Crusader Edition','Armor','Helmet','5b00ebda-fb53-4c21-8c08-4a7fc1c74a0c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. The Crusader Edition was made specifically for the company\'s security services. Visor is AR crosshair compatible.'), +(17321,'Carryable_1H_SQ_drug_stim_3_a','Misc','UNDEFINED','3b53ec7b-3343-4e7b-ac19-848be8ee1376','','',NULL), +(17322,'Artimex Core Lodestone','Armor','Torso','3226d127-fc32-4ebb-83b8-1864b6f42c6d','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.'), +(17323,'Lynx Arms Dark Red','Armor','Arms','dbee9f04-0939-4657-9f8a-96a3c99b7db5','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(17324,'Carrack De Biasio Livery','Paints','UNDEFINED','64b7c197-993a-4fb3-b4ec-ee19e48b9e53','','','To honor the brave explorers that brought us to space and support those currently seeking new frontiers, the Interstellar Cartography Center (ICC) commissioned this special livery for the Carrack. Named in honor of former ICC Director Loretta De Biasio, this livery mixes orange and grey with black highlights. All proceeds from the sale of the De Biasio livery goes directly to the ICC to support their efforts in \"Charting the Way Ahead.\"'), +(17325,'Consolidated Outland Mustang Nose Turret','Turret','BallTurret','ebc7badd-40a4-4fda-9d80-7c3b33c492c0','','','Consolidated Outland Mustang Nose Turret'), +(17326,'ORIG_135c_Intake','Misc','UNDEFINED','7e25c09a-a461-4fea-bc3d-3e2b64a1a394','','',NULL), +(17327,'vlk_spewgun_ballistic_ice','Weapon','Medium','54d55190-83b1-4ba3-8ff3-30a6c9e36426','','',NULL), +(17328,'Rustic Jacket Blue','Char_Clothing_Torso_1','UNDEFINED','21ebb163-2a48-424a-9c2a-acdc2bb1c2e9','','','Carrying Capacity: 1K µSCU\n\nAssembled from an old Dusters flag, salvaged armor, and derelict ship parts, this serviceable jacket is secured to its wearer via sturdy leather straps.'), +(17329,'Seat','Usable','UNDEFINED','9a0da622-59dc-491f-87bf-967116deadac','','',NULL), +(17330,'TRGT. STATUS','Seat','UNDEFINED','490bdd68-e5dc-41db-a3eb-646d23f4d1bd','','',NULL), +(17331,'hightech_airlock_small_lghtgrp','Lightgroup','AirlockPart','fcb3cf0c-8674-4b8a-96cb-c41c46d26aa5','','',NULL), +(17332,'GRIN_Greycat_SCItem_Seat_Passenger','Seat','UNDEFINED','102189e1-f53b-4f7d-bff3-49b8ab6e621a','','',NULL), +(17333,'Door Control','Door','UNDEFINED','3ca63610-0134-44fb-9d84-07a8fe397462','','',NULL), +(17334,'Razor Stormbringer Livery','Paints','UNDEFINED','d6b7f64f-772f-497a-9a29-dddaccb90d2b','','','Celebrate the 2951 IAE with this custom Razor livery. Blending blue and black with white accents, the paint scheme gives the ship an electric new look.'), +(17335,'Bed_Mattress_No_Sheets','Seat','UNDEFINED','de544316-1752-4593-8e8f-4159cb4a541f','','',NULL), +(17336,'Door Control','ControlPanel','DoorPart','9ba7cfc5-9627-4182-aa4e-863cea06c349','','',NULL), +(17337,'Lynx Core Violet','Armor','Torso','f26f97c8-9719-41fa-bae2-a066c283f2f3','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(17338,'Seat','SeatAccess','UNDEFINED','f6c96739-a93f-4b11-8527-886460377434','','',NULL), +(17339,'Edgeriders Shoes Tangelo','Char_Clothing_Feet','UNDEFINED','4951c009-1720-4eec-94c6-0c5e532fee64','','','Nothing will take you back to the golden era club scene of Prime in the 2920s like Upsiders\' new Edgerider sneakers. These slip-on sneakers feature daz patterning and modern impact cushioning to keep you up and active for days on end.'), +(17340,'Pyro Crab T-Shirt','Char_Clothing_Torso_0','UNDEFINED','4cf1eda3-ab29-4ab0-b51d-a3a0d4634437','','','Pyro may be a dangerous system but worth a visit to see their famous whip crabs. The shirt was created by a Banu souli as part of a series dedicated to the cute creature found in Human space.'), +(17341,'Barrymore Pumps','Char_Clothing_Feet','UNDEFINED','2ccbd0c3-9d79-4734-97eb-1bb84d679031','','','The Barrymore pumps are part of the Dyna Lei essentials collection. The shoes feature classic yet subtle curves and supportive insoles for an ultra-comfortable fit ideal for all day wear.\n\nMen sizes are currently unavailable.'), +(17342,'ANVL_Pisces_Thruster_Main_Left_C8R','MainThruster','FixedThruster','e3ccdbdf-c73e-423e-9429-2184078c4a30','','',NULL), +(17343,'Manned Turret','TurretBase','MannedTurret','167f540f-042f-45c3-a122-defa7cac8ff9','','',NULL), +(17344,'Weight_Rack_Dumbbell_1_b','Misc','UNDEFINED','b3154535-4360-4116-a079-f8d6999f7766','','',NULL), +(17345,'H_Dashboard_Projector_HUD_RSI_Perseus_Gunner','Display','UNDEFINED','16653103-045d-4597-9975-3dd217dd3aad','','',NULL), +(17346,'Remote Turret','TurretBase','MannedTurret','4424328d-4972-41c1-a556-b0790b4c407a','','',NULL), +(17347,'un_jar_glass_3_empty_a','Misc','UNDEFINED','fc20f38b-efcc-4081-bf96-326a722af787','','',NULL), +(17348,'Novikov Exploration Suit','Armor','Undersuit','e04391b4-6ef1-42c5-b23f-20a4a3709770','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -225 / 75 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nConfidently explore cold environments while wearing the Novikov. Caldera built the exploration suit with an advanced sensor suite that intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. Also featuring a cutting edge life support system and spacious backpack, those venturing across unknown terrain can count on the Novikov to help them survive the journey.'), +(17349,'MISC_Starlancer_CargoGrid_Small','CargoGrid','UNDEFINED','3bf97a22-3513-49dd-9a43-de9191c8d595','','',NULL), +(17350,'Pressurized Ice','Cargo','Cargo','2817bd3d-30af-4c2e-9dcb-640f041b2c94','','',NULL), +(17351,'Weapon_Rack_MISC_Starlancer','Usable','UNDEFINED','4219d7e2-5f03-4b65-92ca-5d04181efb67','','',NULL), +(17352,'Personal Storage','Cargo','UNDEFINED','fba0dec8-28c6-4b42-8ab2-eff17e06b7ea','','',NULL), +(17353,'m_human_mannequin_base_armor_Collector_Molten','ShopDisplay','UNDEFINED','965d0b44-b62d-44af-8460-e45976c61595','','',NULL), +(17354,'Railing_CornerBevel_In_4m_Lowtech_Open','Usable','UNDEFINED','0552f4f8-a1df-4e4c-af6a-f41bf2015743','','',NULL), +(17355,'Irradiated Valakkar Pearl (Grade B)','Misc','Harvestable','e738c605-8ef7-4238-8170-5ab0c4f9c15d','R','','The valakkar pearl is harvested from the skin of the valakkar. As the valakkar moves through its environment, a large piece of grit will sometimes penetrate its thick hide. If the grit is unable to be expelled on its own, the valakkar\'s skin will grow to encase it. Layers of organic matter will then coat the piece of grit, isolating it from the valakkar\'s vulnerable dermis, thus ensuring that it will not cause infection. These \"pearls\" can become substantial in size over time. Because the valakkar that grew this pearl was exposed to radiation over a long period of time, it has developed unusual properties.'), +(17356,'SCItemDisplayScreen_ScreenSize_W64_H36_H74_Engineering','Display','Default','3636f646-cbea-4bbe-8561-25a52c81fe4d','','',NULL), +(17357,'S-38 \"One Empire\" Pistol','Weapon','Small','971a5272-a0f1-46a1-aee1-44955fe528e4','','','Manufacturer: Behring\nItem Type: Pistol\nClass: Ballistic\n\nMagazine Size: 20\nRate Of Fire: 450 rpm\nEffective Range: 25 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThanks to a streamlined design and a lightweight polymer frame that helps to minimize recoil, it\'s easy to see why the versatile and dependable S-38 from Behring has become a trusted sidearm across the Empire. This special edition features an imperial blue slide to commemorate the ongoing efforts of \'One Empire,\' a community-based government initiative.'), +(17358,'Omnapoxy','Cargo','Cargo','ea9e7502-c5c8-4d2b-b7da-b00ca946f79b','','',NULL), +(17359,'Oracle Helmet Yellow','Armor','Helmet','601ab389-99ba-48a0-8c9b-5937f27db2e1','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arms\' Oracle provides an enclosed reinforced plating helmet with integrated diamond laminate over the eyes. It allows for maximum situational awareness while keeping the wearer safe in space and on the battlefield. Visor is AR crosshair compatible.'), +(17360,'Lynx Core Tan','Armor','Torso','df6526ae-3a5c-498c-b268-6fc649ba1470','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(17361,'Suckerpunch-XL Cannon','Weapon','Gun','e09590d1-13a0-4d25-ad89-3dfc18a61c4a','','','Manufacturer: Joker Engineering\nItem Type: Distortion Cannon\nSize: 3\n\nWhen you want to catch your prey without doing damage use the Suckerpunch. This size three distortion cannon from Joker depletes the target\'s power system, making it an excellent and effective non-lethal addition to your arsenal.'), +(17362,'Union Pants Green','Char_Clothing_Legs','UNDEFINED','c37d4eb1-1ee1-4e31-ab3f-b14247f8a692','','','Carrying Capacity: 0.5K µSCU\n\n987 delivers comfort, durability, and style with the Union pants. Designed with a special, next-gen blend of high-performance synthetic fabrics, these pants are enduringly fashionable in these modern times.'), +(17363,'K7 Pants Dark Red','Char_Clothing_Legs','UNDEFINED','eac33b3c-6a21-4e04-84e7-6f42e00110f4','','','Carrying Capacity: 3K µSCU\n\nDMC\'s K7 are an all-purpose cargo pants. Four easy access pockets provide extra storage while the triple-stitched polymer weave fabric is designed to withstand all kinds of weather conditions.'), +(17364,'Bed','Seat','UNDEFINED','bc6be4a4-c80d-461e-82ab-19298b4b24f2','','',NULL), +(17365,'Koya Pants Grey','Char_Clothing_Legs','UNDEFINED','3122a1ea-c354-42c5-a7b5-3a3e4222e0ce','','','Carrying Capacity: 1K µSCU\n\nThe Koya are stylish slim cut pants featuring color accents on the pockets and cuffs. Made from a special stain resistant, soft fabric blend, they are paired with a brown belt featuring a gold buckle.'), +(17366,'Microid Battle Suit Helmet Lowland','Armor','Helmet','499cb769-9637-4782-940d-c8366c52d672','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(17367,'Microid Battle Suit Helmet Nomad','Armor','Helmet','c49f68c1-ecec-432d-9418-1f940952b131','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(17368,'Carryable_TBO_FL_24SCU_Commodity_ProcessedGoods_AceInterceptorHelmet','Cargo','Cargo','7ac90492-0055-4ae1-b87e-9d01f36d4851','','',NULL), +(17369,'ORIG_M50_Thruster_Mav_Joint_Up','ManneuverThruster','FixedThruster','35f5f80f-0cbd-475a-a0a6-9dcfb9731d17','','',NULL), +(17370,'TRGT. STATUS','Seat','UNDEFINED','01887b31-6f63-4500-91a9-b60f03bd624c','','',NULL), +(17371,'Cargo_Comm_125x3_Mineral_Quartz_a','Cargo','Cargo','c599d30d-887a-4adb-86c7-8718b7176819','','',NULL), +(17372,'Deadbolt VI Cannon','Weapon','Gun','a710fe11-49e3-4260-9f3b-de08d304c0e0','','','Manufacturer: Esperia\nItem Type: Ballistic Cannon \nSize: 6\n\nSpread dread with the Deadbolt VI ballistic cannon. Feared for its firepower at short range, this notorious Tevarin weapon earned its intimidating reputation during the First Tevarin War as part of the Tevarin fleet\'s devastating arsenal. Esperia has painstakingly recreated the Deadbolt VI out of respect to the original weapon and warriors who used it so effectively.'), +(17373,'Deo Shirt Aqua','Char_Clothing_Torso_0','UNDEFINED','cc0efa71-16f2-42b5-b8e6-2817e50e13ec','','','Fiore\'s Deo is a slim cut work shirt that\'s as practical as it is timeless. Featuring a high collar and metal neck clasp, the Deo has been a mainstay in business attire.\n\nWomen\'s sizes currently out of stock.'), +(17374,'Door Control','ControlPanel','DoorPart','b932e032-e6b6-4774-97ee-d7e2aa96d53c','','',NULL), +(17375,'Arden-SL Arms Red Alert','Armor','Arms','3c54afff-bd48-4177-80ca-0da0ddc4f1a2','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics.'), +(17376,'Door','Door','UNDEFINED','043da36f-839d-4dbb-958e-9f6201467367','','',NULL), +(17377,'Palatino Helmet Sunstone','Armor','Helmet','61f488da-7fd1-4ab9-b295-d93bb891bf23','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s \n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. The fully-enclosed helmet comes equipped with a suite of sensors that connects the wearer to the wider world while providing supreme protection. Visor is AR crosshair compatible.'), +(17378,'DR Model-XJ3 Repeater','Weapon','Gun','2a787ee5-d720-4490-8823-65a0f8578f4b','','','Manufacturer: Associated Science & Development\nItem Type: Distortion Repeater\nSize: 3\n\nShutdown hostile actions and target power supplies with the DR Model-XJ3, a well-ranged distortion repeater developed by the advanced weapons research labs of ASD.'), +(17379,'HoverQuad Overdrive Livery','Paints','UNDEFINED','56c37c31-0886-4fb8-a49f-1c2f37f056af','','','Blast past other racers in your HoverQuad with the Overdrive livery, which features a stylish blend red and silver coloring.'), +(17380,'MISC_Fury_Canopy_Base','Misc','UNDEFINED','2a028b79-bc11-4b38-938a-5f7bf4ab41f3','','',NULL), +(17381,'grin_cutter_01','Weapon','Medium','992f3584-e14e-436c-9c08-235427f846f9','','',NULL), +(17382,'Li-Tok Boots Dark Red','Char_Clothing_Feet','UNDEFINED','dbb24699-ca91-4d0f-907f-d4cd48e60806','','','Stylish yet rugged, NorthStar\'s Li-Tok boots are made from a composite nylon fabric, vulcanized rubber grips that hold fast to a variety of surfaces, and reinforced ankle support making these perfect for hanging out or on the job.\n\nWomen\'s sizes currently out of stock.'), +(17383,'Door Control','Door','UNDEFINED','dadc9ec6-3eab-44a7-a2e7-64d9501364fa','','',NULL), +(17384,'microTech Hat','Char_Clothing_Hat','UNDEFINED','73788c89-6015-460d-9227-8c3a6f45c4f4','','','A blue, green, and gray cadet hat with microTech\'s name and logo emblazoned across the front panel.'), +(17385,'un_plate_empty_1_a_stacked','Food','Consumable','b27fc45f-67df-44d9-8c2d-d63352483471','','',NULL), +(17386,'Carbon','Cargo','Cargo','fe70421e-c78b-4382-b0e6-7e32f48c8bd5','','',NULL), +(17387,'MSD-543 Missile Rack','MissileLauncher','MissileRack','a6523f51-1f94-405c-be7b-5e14fef44f12','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 5\nMissiles: 4xS3\n\nBehring’s MSD-543 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 5 hardpoint for the reliable and effective launch of four S3 missiles.'), +(17388,'Medical Bed','Usable','UNDEFINED','0e2e8550-6b91-4447-a240-4f1e40939f8d','','',NULL), +(17389,'Bamoty','Shield','UNDEFINED','e2dc5036-24ea-4b85-ab00-34c179ac2e04','','','Item Type: Shield Generator\nManufacturer: Yorm\nSize: 2\nGrade: D\nClass: Competition\n\nThe Bamoty is Yorm’s take on a commercial style shield generator. This medium-sized component has won the company a wider fanbase because it expertly balances performance, durability, and stealth.'), +(17390,'Aluminum','Cargo','Small','0de4154c-bda8-49f6-85c4-ab0bb60e0096','','','A chemically reactive, gray metal that is malleable, lightweight, ductile, strong, and resistant to corrosion. Capable of superconductivity.'), +(17391,'Artimex Helmet Hurston Dynamics Executive Security','Armor','Helmet','1766a362-90a2-45a0-a9de-ee3825ed2adc','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape. The Hurston Dynamics edition was made specifically for the company\'s Executive Security team. Visor is AR crosshair compatible.'), +(17392,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','50926a92-a8b4-415c-a140-5b34b54ba256','','','Aegis Gladius - Decoy Launcher'), +(17393,'Bexalite','Cargo','Cargo','76ef682c-c5b7-48c0-80da-3be7c7579584','','',NULL), +(17394,'Invictus Flight Jacket','Char_Clothing_Torso_1','UNDEFINED','794f3335-8fa6-4a8d-aa88-de7ff608b889','','','Carrying Capacity: 2K µSCU\n\nCelebrate launch week in iconic style with this commemorative flight jacket featuring a Navy patch on the front and a large Invictus patch on the back. This synthetic leather jacket comes with two front pockets and ribbed waistband and cuffs that guarantee a good fit.'), +(17395,'Door Control','ControlPanel','DoorPart','80f6673b-f079-4f00-b150-0c1c9abe77ed','','',NULL), +(17396,'TRGT. STATUS','Seat','UNDEFINED','b717a51f-bf61-4797-925f-a2e14cee3f8f','','',NULL), +(17397,'Weapon Rack','Usable','UNDEFINED','eb54e60e-6c04-46ed-89d9-809e313975c3','','',NULL), +(17398,'Carinite (Pure)','Cargo','Cargo','b218099b-bc4e-434f-ab32-591bd85c00af','','','Typical carinite sources feature various impurities. However, under certain extremely rare conditions, carinite veins that are more than 90% pure can form. Computing hardware that demands exacting precision will usually seek out pure carinite.'), +(17399,'Manned Turret','UtilityTurret','MannedTurret','f93183df-7e7c-4017-a2fb-2975ad1333f2','','',NULL), +(17400,'Access','SeatAccess','UNDEFINED','2b8eb3a3-368b-4fee-a380-0deeb2df2c71','','',NULL), +(17401,'ASAD_DistortionRepeater_Barrel_S2','WeaponAttachment','Barrel','748bba37-0b33-4d68-a7d9-5c39bc87ffd1','','',NULL), +(17402,'Door_Relay_ContestedZone_FakeForceOpen','Door','UNDEFINED','ae0f2563-5e9a-4999-96b0-6934836c0167','','',NULL), +(17403,'tool_manual_1_pliers_a','Misc','UNDEFINED','d766cf9f-68e8-455a-bbc7-30a36c0be4a7','','',NULL), +(17404,'Nova Snowblind Livery','Paints','UNDEFINED','09f37928-8cb1-410b-9623-94d6af93b1b9','','','Featuring a grey, black and white camo paint scheme ideal for arctic environments, the Nova Snowblind livery offers a devastating combination of weaponry to eliminate threats on the ground and in the air.'), +(17405,'Seat','SeatAccess','UNDEFINED','ef73b7b2-c7cd-4c6d-b43e-025bbbe8585b','','',NULL), +(17406,'Venator Boots Molehill Brown','Char_Clothing_Feet','UNDEFINED','54756005-c81f-49cd-95f6-27a1d7d0f872','','','Whether you need to run or stand your ground, these rugged, lightweight all-terrain boots with reinforced uppers and acid-resistant tru-grip soles are the perfect choice. The Molehill version is dyed a neutral brown to keep you subtle, but not unsightly.'), +(17407,'IAE 2950 Hat','Char_Clothing_Hat','UNDEFINED','dc365f25-1357-44ff-8063-36aa7c265a11','','','Boast about attending the UEE\'s most prominent ship showcase with the official hat of the 2950 Intergalactic Aerospace Expo. This grey cadet hat has the logo across the front panel and as a pop of color on the back.'), +(17408,'CST-313 \"Castillo\"','BombLauncher','BombRack','c9686715-884f-456a-afbe-054107c8c54a','','','Item Type: Bomb Rack\nManufacturer: Behring\nSize: S3\n\nDesigned to fit a wide variety of ships, the CST-313 \"Castillo\" bomb rack is able to store a single S3 bomb and makes for a good alternative on ships that can support a S3 missile rack.'), +(17409,'ANVL_Hornet_F7_Mk2_Thruster_Mav_1','ManneuverThruster','JointThruster','5356f4c3-3e76-4caa-a056-4dd8783996b2','','',NULL), +(17410,'Chrome Dome Head Gear Calavera','Char_Clothing_Hat','UNDEFINED','663faded-8283-400f-9f1d-a0bcc5a1c48e','','','The Chrome Dome was designed to make hostile environments manageable. This unique head gear features a lightweight and reflective hat with a sloped brim, goggles that automatically adjust to lighting conditions, large ear flaps, and a neck gaiter to cover the face. Whether trudging through snow or sand, the Chrome Dome is ready to brave the elements with you.'), +(17411,'Large Container','Container','UNDEFINED','be4bf939-e870-455f-8c34-2e51ff193fbc','','','A large container used to hold various items.'), +(17412,'Weapon Rack','Usable','UNDEFINED','5e4fb2f6-af5e-4ab6-80f1-1c5dc543ccae','','',NULL), +(17413,'Weapon_Rack_Cz_Firerat_001','Usable','UNDEFINED','cd6d14ca-1885-40f4-80bb-213305c9bfff','','',NULL), +(17414,'PAB-1 Legs Cry-Astro Edition','Armor','Legs','7415bc2b-5554-4222-977d-a88b1e3f2837','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile. The Cry-Astro Edition was made specifically for the company.'), +(17415,'Carryable_2H_FL_ball_medicine_1_a','Misc','UNDEFINED','ba41d8fb-7dec-4825-8486-ea9358ea2362','','',NULL), +(17416,'DustUp Helmet Tactical','Armor','Helmet','68d8a024-9d3b-4d9b-8746-8e7ae25b4475','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -60 / 90 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe DustUp has your back if you’re looking to get into some trouble. The body plating is built off of the same CDS undersuit used by the UEE Marines, it adds reconstructed Omni-Role mkII pieces to give you solid protection against incoming fire, but the real gem is the modified helmet. That thing was built to withstand explosions, so it should totally protect you against some shots. The whole thing’s been reasonably tested against vacuum too, so you can feel free to EVA all you want without worrying about dying.'), +(17417,'Marshal Sleeveless Vest Sycamore','Char_Clothing_Torso_1','UNDEFINED','a8b32edc-5abb-4863-9f8f-5dc7f6d1bcae','','','The durable Marshal sleeveless vest by Alejo Brothers is made to endure life on the frontier while distinct stylings like shoulder straps, bold cross-chest placket, and a high-collar make sure the wearer stands out on any far flung world.'), +(17418,'Hermes Lockdown Livery','Paints','UNDEFINED','73b775d9-2645-40be-82b5-cbe811c3f36c','','','Featuring yellow highlights that pops against a rich black hull, the Lockdown livery is sure to make a statement.'), +(17419,'Hadanite','Cargo','Cargo','d8126953-4007-4635-88ae-a3d8fb28fff7','','',NULL), +(17420,'AEGS_Sabre_Peregrine_BoosterEngine','Misc','UNDEFINED','c618717e-8033-4167-80a9-21aeebb8e1ec','','',NULL), +(17421,'Keystone Jacket Taupe','Char_Clothing_Torso_1','UNDEFINED','4810a027-0914-4b2f-85c9-87582f63a3d0','','','Carrying Capacity: 1K µSCU\n\nDMC’s Keystone is a two-layer jacket that puts utility first. The top-most vest layer ensures the Keystone jacket remains warm and durable, while the underlayer is designed to avoid restricting your range of motion. Various pockets adorn the jacket to provide convenient storage options.'), +(17422,'Parvat Jacket Frozen Spring','Char_Clothing_Torso_1','UNDEFINED','300d5e23-c623-42f4-8ea3-1349d5777d5b','','','Carrying Capacity: 2K µSCU\n\nWeather the cold with this waterproof and insulated jacket from Escar Limited. Featuring a stylish design and unique dual-layer collar, the Parvat will keep you warm when you need it most.'), +(17423,'Steward','Shield','UNDEFINED','b1454c7b-859d-4e78-9429-e05391242ca7','','','Item Type: Shield Generator\nManufacturer: Basilisk\nSize: 1\nGrade: D\nClass: Industrial\n\nThe Steward is Basilisk’s entry-level industrial shield generator. Its reinforced housing adds an extra level of durability to an already robust system, guaranteeing that your shield will be projecting even in the harshest conditions.'), +(17424,'MASTER_un_crate_1SCU','Cargo','UNDEFINED','699980d4-018a-408c-b726-e486250ad063','','',NULL), +(17425,'Prim Shoes White','Char_Clothing_Feet','UNDEFINED','aae2b8ad-5f86-46dd-9d8f-7a146c8928b5','','','Professional yet casual, the Prim utilizes cutting-edge synthetic construction to provide maximum comfort and a shine that won\'t fade.'), +(17426,'Odyssey II Helmet Aqua','Armor','Helmet','05553d1d-90b4-41a1-bb0e-fc36fce80849','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nContinuing RSI\'s legacy of rugged and reliable helmets, the Odyssey II streamlines the original design into a lighter frame without sacrificing durability. This omni-purpose helmet was extensively field-tested in a variety of conditions and environments to keep you safe every time you suit up.'), +(17427,'BANU_Defender_Locker_Back','Player','UNDEFINED','dac44d0f-02c0-4518-9fc9-7d9aebf96ac6','','',NULL), +(17428,'Venture Arms Ascension','Armor','Arms','85bcc8bd-0929-40fc-b7d5-7f80164c5a78','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRobert Space Industries’ Venture Explorer Suit provides exceptional protection against the dangers of space. Designed for those who don\'t know where their next adventure might go, the suit combines comfort and safety without sacrificing mobility. This special Envy edition inspired by the Coramor festival features a vibrant pink and purple color scheme for the most enthusiastic of lovers.'), +(17429,'Oza','Cargo','Cargo','e61a28da-a568-40e6-a610-6a2ad4022938','','',NULL), +(17430,'MISC_Starlancer_Thruster_VTOL','ManneuverThruster','FixedThruster','caa1a5ed-ac6b-4d95-b72d-e4e6f57a7529','','',NULL), +(17431,'Controller_Mining_ATLS_GEO','MiningController','UNDEFINED','976ec585-d102-4ba0-8fca-19f457167b2c','','',NULL), +(17432,'Loscha Work Vest Primrose','Char_Clothing_Torso_1','UNDEFINED','5a3ffc3c-0ca5-4648-bfb0-f890591b80dc','','','Carrying Capacity: 400 µSCU\n\nThe heavy-duty Loscha Work Vest by Alejo Brothers is designed for people who want to be prepared for anything at any time.'), +(17433,'Hofstede-S1 Mining Laser','Mining','Gun','077a4a94-6296-4a83-a6c4-f215f7efd1df','','','Manufacturer: Shubin Interstellar\nItem Type: Mining Laser \nSize: 1\n\nOptimal Range: 45m\nMaximum Range: 135m\n\nMining Laser Power: 105 - 2100\nExtraction Laser Power: 1295\n\nModule Slots: 1\n\nResistance: -30%\nOptimal Charge Window Rate: +20%\nInert Material Level: -30%\n\nLaser Instability: +10%\n\nThe Hofstede-S1 was designed with a patented crystal lattice structure that dampens a deposit\'s natural resistance while mining and gathers less inert materials when extracting. Most effective at short and medium range, an accompanying increase in instability means the laser should be managed carefully.'), +(17434,'Luminalia Sextant','Misc','UNDEFINED','8472968b-024e-4ce9-a258-fd78ebf9e9ae','','','Set your sights on holiday cheer with this Luminalia sextant. This ancient Earth instrument used for celestial navigation was designed with modern materials that help stabilize the device and stop warping due to extreme weather conditions. Making it an eye-catching and ideal gift to give at any Luminalia celebration.'), +(17435,'Ridgely Jacket','Char_Clothing_Torso_1','UNDEFINED','dce181cb-f4f4-47d6-aa19-12ae712e5cf0','','','Carrying Capacity: 1K µSCU\n\nThe extra-thick high collar of DMC’s Ridgely is part of a removable hood that makes the jacket surprisingly versatile and is a major reason why the Ridgely jacket is a perennial favorite amongst customers that live in, or venture through, cold environments.'), +(17436,'Flight Blade','FlightController','UNDEFINED','c2127743-c82c-48d8-8e46-442cfc26fc7d','','',NULL), +(17437,'Turret','Turret','BallTurret','0e72c7ce-f16a-4150-ba17-f01fe96df6bb','','','Multitask on the battlefield with this remote turret system. Featuring precise controls and a wide field of fire, the turret allows pilots to add combat support to their resume.'), +(17438,'facial_hair_021','Char_Head_Beard','UNDEFINED','8590e357-d3a7-4d39-88ff-d199ecb236c7','','',NULL), +(17439,'Razorback Pants Red','Char_Clothing_Legs','UNDEFINED','8f7dfb1e-6f79-4361-838f-fdd5fcc0f493','','','Carrying Capacity: 2K µSCU\n\nDMC\'s Razorback pants are made to be worn. Built from industrial quality material, they feature reinforced kneepads to prevent tears on the job and stay rugged yet comfortable.\n\nWomen\'s sizes currently out of stock.'), +(17440,'P8-AR Rifle','Weapon','Medium','53042ca6-a9ba-4b0e-8c36-a11a5f47feb9','','','Manufacturer: Behring \nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 15\nRate Of Fire: 475 rpm\nEffective Range: 100 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nThe direct descendant of the UEE Marines standard issue weapon, Behring has crafted the semi-automatic P8-AR to provide civilians across the empire a straight-forward and dependable weapon to defend themselves against aggressive hostiles.'), +(17441,'Aztalan Core','Armor','Torso','5ac5def7-58d9-451c-8288-8dab99c150c5','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nFear no frontier while wearing the Aztalan armor. This mixture of armor plating and reinforced fabrics will keep you safe yet swift on your feet. Tehachapi\'s masterful design gives the armor a subtle yet unmistakable frontier style that also providing ample storage. Suitable for everything from sand dunes to bustling backstreets, the Aztalan is the ideal choice for your next adventure.'), +(17442,'Bed','Usable','UNDEFINED','44633edb-9f3f-44c5-90d4-0a74df0e8b66','','',NULL), +(17443,'VitalityPen','FPS_Consumable','Medical','449eb771-a688-4b70-959b-62399a1bf48c','','','Manufacturer: CureLife\nItem Type: Medical Consumable\n\nFrom the Empire’s most trusted medical company, the CureLife VitalityPen delivers a combination of total parenteral nutrition and the detoxicant Resurgera to help relieve symptoms associated with malnutrition and high blood drug levels (BDL).'), +(17444,'Yebira II','Weapon','Rocket','2f525576-8894-4bc6-baf1-d08a8c21cabc','','','Item Type: Rocket Pod\nManufacturer: Firestorm Kinetics\nSize: 2\nRockets: 6xS3\n\nThe Yebira II rocket pod is the perfect system for efficient deployment of S3 ordnance. Manufactured by Firestorm Kinetics, this rocket pod carries six rockets and attaches to any size two hardpoint.'), +(17445,'ORIG_X1_Thruster_Retro','ManneuverThruster','FixedThruster','ef3135b1-150e-4fe2-8669-f5db54114459','','',NULL), +(17446,'AEGS_Redeemer_Thruster_VTOL','ManneuverThruster','FixedThruster','4b0cb80d-865c-4312-8af5-bd62274b97f4','','',NULL), +(17447,'Paint_600i_Executive_Edition','Paints','UNDEFINED','e3c600da-5a34-4e48-8e8d-7cdbe40e798f','','',NULL), +(17448,'Tin','Cargo','Cargo','6fb127ba-8ced-47e4-b03b-08c1d048f672','','',NULL), +(17449,'Wikelo Emporium Jacket','Char_Clothing_Torso_1','UNDEFINED','5e8fcde1-e30f-43b4-937b-ddf404adc8dd','','','Carrying Capacity: 2K µSCU\n\nSuper style! Supreme comfort! The Wikelo Emporium jacket is made with premium synthetic leather for a resilient and fashionable exterior, and an ultra-soft lining that enwraps the Human body like friend. Expect nothing less than the absolute best when Wikelo put their name on it.'), +(17450,'Lillo Pants Blue','Char_Clothing_Legs','UNDEFINED','746ba64e-08a2-434f-a5d9-eed795843f4b','','','Carrying Capacity: 0.5K µSCU\n\nThese slim cut pants from Fiore give you a tailored feel at a fraction of the cost. Built from space-age weaves, the Lillo are a low maintenance, high impact addition to your office wardrobe.'), +(17451,'VariPuck S2 Gimbal Mount','Turret','GunTurret','fbae6747-8e06-4409-8900-671529273e3d','','','Manufacturer: Flashfire Systems\nItem Type: Weapon Mount\nSize: 2\n\nThe VariPuck fits between your weapon and the ship hardpoint to transform a fixed weapon mount into a gimballed mount, allowing the pilot to independently aim their weapon’s fire. VariPucks will accept any weapon the same size as the hardpoint it is mounting to.'), +(17452,'Lost Plague Helmet Radioactive Yellow','Armor','Helmet','0e4e810b-845d-4897-a23f-44c66cfbaef5','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -40 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nInfect your friends with your Day of the Vara spirit when you wear this helmet inspired by the hit vid Lost Plague. The helmet perfectly replicates the horrific death of xenoarchaeologist Diane Wu, first victim of the ancient alien virus she unwittingly unleashes on an unsuspecting galaxy. CC\'s Conversions utilized a proprietary lightweight yet sturdy rubber to accurately reproduce the deadly plague\'s signature spines so you can enjoy hours of wear without straining your neck.'), +(17453,'Door_Timer_DCD','Door','UNDEFINED','33175ca6-d872-4a50-b79d-93ff0ad81911','','',NULL), +(17454,'Balor HCH Helmet Purple','Armor','Helmet','985c8040-1405-45ca-85e8-cbc3a2d26827','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEvery piece of the Balor was designed by Clark Defense Systems to more evenly distribute damage. This spreads the force of an impact across the heavy helmet, helping it hold up when others would fail. Visor is AR crosshair compatible.'), +(17455,'TrueDef-Pro Core Black/Silver','Armor','Torso','7fb34c27-aea7-4d46-8998-ac101ab606a4','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(17456,'Origin Jumpworks Noise Launcher','WeaponDefensive','CountermeasureLauncher','81ede303-4813-41d5-90f1-ab506009b6b1','','','Origin Jumpworks Noise Launcher'), +(17457,'Scaleweave Undersuit Driftwood','Armor','Undersuit','626cd0fc-3a8b-4dca-8789-182103e374ea','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThis baseline undersuit from Kastak Arms offers complete protection seal from the elements and compatibility with multiple armor types.'), +(17458,'400i Stratus Livery','Paints','UNDEFINED','867fc361-f3b4-4496-aed0-1e6a56bbf12c','','','The Stratus livery for the 400i punctuates the grey wings and white main body with a vibrant yellow accent border.'), +(17459,'stand_shop_medium_PowerPlant','ShopDisplay','UNDEFINED','bb39d1bf-8b73-4640-9535-9a8f895eb2b3','','',NULL), +(17460,'util_pyro_sml_airlock_lghtgrp','Lightgroup','AirlockPart','99c49b8f-91f3-4979-a072-0a5f9ca850be','','',NULL), +(17461,'Debnam Gloves Blue','Char_Clothing_Hands','UNDEFINED','81719bc1-39d2-4343-9d62-cd0c10b7aecc','','','Named after the influential Terran tailor, Debnam gloves incorporate that famous tailor\'s classic design to keep your hands comfortable in colder temperatures.'), +(17462,'Seat','Usable','UNDEFINED','7a8912cf-35c3-4b5c-884f-5896ee620b4a','','',NULL), +(17463,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','60768416-609a-4663-9939-3bcbd612abc3','','','Aegis Gladius - Decoy Launcher'), +(17464,'Internal Tank','QuantumFuelTank','QuantumFuel','2ac19dfa-cffb-43d0-98a6-00a951265692','','',NULL), +(17465,'Marok Gem','Misc','Harvestable','680352e9-5541-44b9-983a-a1a2802223f4','','','The marok has a gizzard, which takes food that has been previously swallowed from the stomach and \"chews\" it before passing it back into the stomach to be digested. To help this process, the marok\'s body secretes a substance that hardens into a large crystalline stone that stays in the gizzard and helps food get pulverized more efficiently. The stone has unique conductive properties that make it sought-after for use in computer chips.'), +(17466,'Mannequin_NoDraw_PMA_Shirt','Char_Clothing_Torso_0','UNDEFINED','8cd0dbc5-d62f-4dc7-ba97-d2b1ee1858b2','','',NULL), +(17467,'Taos Balaclava and Goggles Crimson','Char_Clothing_Hat','UNDEFINED','861056ca-6659-4be1-bba3-63ea9eb4c453','','','Fearlessly face any weather with the Taos balaclava and goggles. An ultra-soft inner lining provides warmth and comfort while a special exterior coating repels precipitation. The adjustable headband ensures an ideal fit, and the padding of the anti-fog goggles is integrated directly into the fabric to seal out the elements.'), +(17468,'Cordimon Jacket Yellow','Char_Clothing_Torso_1','UNDEFINED','910f0fcb-e480-4196-9288-77117c8eb4de','','','Carrying Capacity: 3K µSCU\n\nStegman\'s classic worker\'s jacket has been a staple of job sites for over seventy years. This duotone pattern is cut from the toughest material meaning you can wear it anywhere, anytime. It may not be armor, but it damn sure feels like it.'), +(17469,'Pyro RYT Multi-Tool','Weapon','Gadget','410cc514-6a00-441a-8128-ac11797f844a','','','ATTACHMENTS SOLD SEPARATELY!\n\nManufacturer: Greycat Industrial\nItem Type: Utility\nClass: Gadget\n\nMagazine Size: Integrated Battery\nRate of Fire: N / A (Beam)\nEffective Range: 0.5 m\n\nThe Pyro from Greycat Industrial is a pistol-sized power tool for the modern space engineer that is capable of charging, cutting and patching; achieving a multitude of uses thanks to its wide assortment of attachments. Perfect for making a tough job a little bit easier.'), +(17470,'Valakkar Plushie','Misc','Personal','67ee408f-9246-40eb-860f-7f6ddc141246','','','Always looking to dig up some trouble, this fearsomely adorable valakkar plushie imitates its real-life counterpart with a maw lined with fangs and pearls along its scaled hide.'), +(17471,'Drivetrain','WheeledController','UNDEFINED','0291b8e8-626d-4a9a-a4eb-691c4ee264c6','','',NULL), +(17472,'Crusader Industries T-Shirt Black','Char_Clothing_Torso_0','UNDEFINED','e2b59279-ef03-4b31-9f6c-f20247d06248','','','This shirt features the iconic Crusader Industries logo across the chest.'), +(17473,'Renegade Helmet Tactical','Armor','Helmet','c3574438-7686-4520-806b-e65d6a0aaabb','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -39 / 69 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nKastak Arm\'s Renegade combat helmet is a light but durable infantry helmet designed for added protection and impact-reduction during in-atmosphere operations. Visor is AR crosshair compatible.'), +(17474,'Door_Ship_Sensor_Proximity_BANU_Defender','Sensor','DoorPart','3171cbe8-9529-4fa0-8853-9b74b5cdfb82','','',NULL), +(17475,'Weapon_Ship_Cz_005','Usable','UNDEFINED','16e1ad79-cfe1-43a0-b9a2-2a71c8f564cc','','',NULL), +(17476,'Tritium','Cargo','Cargo','5e88ac55-5a40-4607-9177-3e2168ccd535','','',NULL), +(17477,'DockingTube_Fuel_Ports_XNAA_SanTokYai','DockingCollar','UNDEFINED','5deb2b94-9207-4c83-ac95-95e05abfc315','','',NULL), +(17478,'ControlPanel_VentAccess','ControlPanel','DoorPart','fe95bdd4-225a-46bb-8700-88fae34813de','','',NULL), +(17479,'Construction Rubble','Cargo','Cargo','20172cc0-76a0-484c-b6a8-ebd5c0ee1cdd','','','Can be processed at refineries into Construction Material.'), +(17480,'Cirrus Boots Purple','Char_Clothing_Feet','UNDEFINED','0d0bf429-f318-41d5-beca-113d79bd7b15','','','Temp. Rating: -35 / 15 °C\n\nThese rugged, high ankle boots will keep your feet warm when venturing into wintry conditions. The Cirrus also integrates steel alloy links into the sole for added traction on icy surfaces.'), +(17481,'ADP-mk4 Core Justified','Armor','Legs','4a2b83a2-6be7-4638-86bf-442fb0257db4','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nBased on CDS\' ADP-mk4 heavy combat armor, this set has been modified from its original form. When there\'s a difficult job at hand, you want to ensure that you can see it through to the end. This armor allows Marines to remain in active combat situations for a longer duration with more loadout options, while its powered frame provides near unfettered movement despite the protection it offers.'), +(17482,'Door Control','Door','UNDEFINED','f06f3894-f5b5-43a7-95f0-a64bb3324dcd','','',NULL), +(17483,'Manned Turret','TurretBase','MannedTurret','37117e60-6de9-4276-af04-dc81f8761045','','',NULL), +(17484,'Liberator Prime','Weapon','Rocket','5ed1f1ec-6ebc-463b-9529-83382e20624d','','','Item Type: Rocket Pod\nManufacturer: Thermyte Concern\nSize: 2\nRockets: 8xS2\n\nThermyte Concern\'s Liberator Prime rocket pod carries eight S2 rockets and can be attached to any size two hardpoint.'), +(17485,'ControlPanel_Screen_CustomButtons_InfoScreen','ControlPanel','DoorPart','c1f61cd3-98ec-4cf8-9b81-d7e916a16d10','','',NULL), +(17486,'Anvil Ballista S05 Missile Rack','GroundVehicleMissileLauncher','GroundVehicleMissileRack','c0ca28f6-e9d3-4c38-866e-254d9ec81a10','','','Item Type: Missile Rack\nManufacturer: Anvil Aerospace\nSize: 5\nMissiles: 4xS5 \n\nMissile rack for the Anvil Ballista that carries four, S5 missiles.'), +(17487,'Seat','Usable','UNDEFINED','d6ee6a58-25db-4f48-9bf3-8085abd98f06','','',NULL), +(17488,'ASD Bomber Jacket','Char_Clothing_Torso_1','UNDEFINED','0140c71f-56db-4d37-b98e-0a7a0ee6188d','','','Carrying Capacity: 2K µSCU\n\nAssociated Science and Development is a company that defines what it means to be on the bleeding edge of technology. Originally exclusive to ASD workers in the Biological Research Division, this synthetic leather has the look, feel, and smell of the real thing. The company\'s logo is featured on the front and back.'), +(17489,'DoorDefaultTemplate_AnimVariable','Door','UNDEFINED','015c25a7-43d2-4b7c-b36b-d606726ef94e','','',NULL), +(17490,'Aslarite (Raw)','Cargo','Cargo','c97ff34d-cc47-41cb-bf5a-30ad99f59a12','U','',NULL), +(17491,'Seat','Usable','UNDEFINED','fb1a49da-af93-44d9-aac7-ef74ad84529b','','',NULL), +(17492,'S71 Rifle','Weapon','Medium','39086302-d8f9-457d-a746-255c511ea6cf','','','Manufacturer: Gemini\nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 30\nRate Of Fire: 300 rpm / 900 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nWith the S71, Gemini designed an ergonomic assault rifle ideal for mid-range engagements. Chambered with a smaller caliber round than other weapons in its class, the S71 has become popular among private military professionals for its sleek aesthetics and precise accuracy.'), +(17493,'Tona Shoes Purple','Char_Clothing_Feet','UNDEFINED','0ac0aebc-a0bc-4a91-837c-bcd1d26bc5d4','','','Perfect for hiking or fieldwork, the Tona from R6 Pro is a low-top sneaker built out of breathable Cheofreme materials which not only provide extra protection against impacts, but keep your feet dry.'), +(17494,'Seat','Usable','UNDEFINED','668d7fc0-e04f-45fb-b39d-a25d8c56da4a','','',NULL), +(17495,'INTK_KRIG_P52_Merlin','FuelIntake','Fuel','de810beb-3863-4e4e-8eea-a0c1d6304b09','','',NULL), +(17496,'Outback Arms Sleet','Armor','Arms','2b1df575-2a7d-4194-8bb9-68401dd1e800','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -65 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nSend a statement with thick leather paired with metal plated cuffs, pauldrons and spike-backed gloves. The Sleet version is dyed a well-worn grey to keep you subtle, but not unsightly.'), +(17497,'Siebe Helmet Thundercloud','Armor','Helmet','68007094-1e33-4cc2-bb04-361c76cdb8f2','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nDurability and a classic aesthetic combine with the Siebe helmet; designed by Caldera to thrive amidst extreme conditions found both in space and atmosphere. Resilient yet lightweight plating and an impact resistant visor provide premium protection, while an integrated monitoring system helps protect the wearer from environmental fluctuations.'), +(17498,'A03 \"Canuto\" Sniper Rifle','Weapon','Medium','1aad8334-8d0a-4dd1-bcca-bd195bc013a7','','','Manufacturer: Gemini\nItem Type: Sniper Rifle\nClass: Ballistic\n\nMagazine Size: 15\nRate Of Fire: 120 rpm\nEffective Range: 80 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nDevastate at distance with the A03 sniper rifle. Masterfully designed by Gemini\'s Tevarin co-founder Clem, the weapon balances a stylish and ergonomic design with a powerful ballistic punch. The A03 delivers an impressive rate of fire for a sniper rifle that sacrifices accuracy for urgency when successive shots are required. Considering its renowned design and unique features, it\'s easy to see why the A03 has become a favorite of security professionals across the empire.'), +(17499,'AEGS_Javelin_Thruster_Mav_Main_01_Aux_Side','ManneuverThruster','FixedThruster','9201a351-c204-4016-b233-17b206e9375b','','',NULL), +(17500,'mobiGlas Maroon Casing','MobiGlas','Personal','584a1b45-f4cd-4d69-a694-b2fc47fe7fb9','','','Apply your own style to your mobiGlas with this custom paint casing.'), +(17501,'INTK_RSI_Aurora_ES','FuelIntake','Fuel','57412106-c03c-4f21-ac4f-8bae4ce48896','','',NULL), +(17502,'HRST_LaserRepeater_PowerArray_S3_Storm','WeaponAttachment','PowerArray','72271b9a-f9cd-42b5-a2c3-5bbd96efd427','','',NULL), +(17503,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','b918e013-52bf-46d6-80e7-1bac48cfea88','','','Joker Defcon - Noise Launcher'), +(17504,'Seat','SeatAccess','UNDEFINED','4302ecdf-9068-4daf-bd33-96f637339575','','',NULL), +(17505,'RSI_Constellation_SCItem_Seat_Access_CoPilot_Right','SeatAccess','UNDEFINED','4a729777-e17a-49e6-809e-c7c5d700f426','','',NULL), +(17506,'DRAK_Dragonfly_Thruster_Aux','ManneuverThruster','JointThruster','86be18db-bfa0-4508-843a-8015430326d0','','',NULL), +(17507,'Artimex Legs Hurston Dynamics Executive Security','Armor','Legs','ed19edd5-888b-48bf-b8dc-35e27c6c7e86','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape. The Hurston Dynamics edition was made specifically for the company\'s Executive Security team.'), +(17508,'Omnisky III Cannon','Weapon','Gun','26838ca7-418a-47d2-8429-7339ebbb8993','','','Manufacturer: Amon & Reese Co.\nItem Type: Laser Cannon\nSize: 1\n\nThe Omnisky III is the base model in A&R\'s line of laser autocannons for small ships and has a comparable rate of fire, damage output and range to other weapons in its size class. It uses mid-grade components in its design, offering a marked increase in power efficiency over some of its less expensive competitors.'), +(17509,'AEGS_Vanguard_Baydoor','Misc','UNDEFINED','598fb930-4d8f-49c7-82e9-1e5ed8619dae','','',NULL), +(17510,'Seat','Usable','UNDEFINED','01913497-ba2a-44d7-9d81-091de8b5940f','','',NULL), +(17511,'Luminalia Gift','Cargo','Cargo','4bdaef4d-d3ab-41b0-8602-0d3e99b2b4c6','','',NULL), +(17512,'Seat','Usable','UNDEFINED','4dd5b7d3-8398-4e8f-bbc0-cb5ab47dca7c','','',NULL), +(17513,'f_human_mannequin_clothing_base','ShopDisplay','UNDEFINED','4009ce13-87eb-4ce7-aa65-74f20ccff92f','','',NULL), +(17514,'AEGS_Sabre_RADR_Display','Display','UNDEFINED','5c1bc200-6c29-42ab-8006-f1744c1c801e','','',NULL), +(17515,'MK-4 Frag Grenade','Weapon','Grenade','46691e82-b633-4d4a-b967-3fce30a0a01c','','','Manufacturer: Behring\nItem Type: Grenade\n\nArea of Effect: 20 m\nDamage Type: Frag\n\nA continuation of the iconic hand grenade first produced by Behring in 2894, the MK-4 is an anti-personnel fragmentation grenade capable of saturating the kill-zone with lethal projectiles and a devastating concussive blast.'), +(17516,'DRAK_Vulture_Component_Quantum','Player','UNDEFINED','83116eb5-8378-4850-b8eb-fa5df794b741','','',NULL), +(17517,'DRAK_Corsair_Ground_Refueling_Port','Door','UNDEFINED','de19b049-0dde-40c6-b4b1-5e2ffd3a59db','','',NULL), +(17518,'Tepilo','Cooler','UNDEFINED','9bfb25e0-b507-4d6f-b8e5-d7d2d91f9670','','','Item Type: Cooler\nManufacturer: Wen/Cassel Propulsion \nSize: 0\nGrade: A \nClass: Civilian\n\nFew can top the cooling power of Wen/Cassel’s Tepilo. This top of the line cooler provides stellar durability and performance for ground vehicles.'), +(17519,'DRAK_Cutlass_Blue_Thruster_Maneuver_Front_Top','ManneuverThruster','JointThruster','44e7ce92-a4c9-4b80-b555-31cd147ca871','','',NULL), +(17520,'ViseLock S2 Tractor Beam','TractorBeam','UNDEFINED','df040b13-b043-42c2-b4e5-3fd8f9f3f23c','','','Manufacturer: Greycat Industrial\nItem Type: Tractor Beam\nMax Angle: 80°\nMax Range: 135 m\nFull Strength Distance: 50 m\n\nThe ViseLock tractor beam is an evolution of Greycat’s industry-standard tech, with added improvements specifically intended to help security forces restrain their targets. In its design, Greycat sacrificed some hold strength at greater distances to achieve a more powerful tether that is harder to escape.'), +(17521,'CNOU_Mustang_CargoGrid_Main','CargoGrid','UNDEFINED','3744d210-f02e-4154-bfb8-3f8e95907e3f','','',NULL), +(17522,'Door Control','Usable','UNDEFINED','58a69a57-93ce-48a6-83db-272daae567d0','','',NULL), +(17523,'Defiance Arms Hailstorm','Armor','Arms','96cfbf47-8101-411f-bf01-ede37218dc0e','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nIncorporating the same manufacturing know-how and expertise that the UEE Marines have come to rely on, Clark Defense Systems has designed their civilian-line of Defiance heavy armors to stand firm in the face of even the most adverse combat scenarios with its three-star rated protective plating and fully integrated mobility framework.'), +(17524,'Targa','Shield','UNDEFINED','d0669062-2e64-41d4-beb2-d510588ca593','','','Item Type: Shield Generator\nManufacturer: YORM\nSize: 1\nGrade: C\nClass: Competition\n\nBased on Gotlieb Yorm’s original design, the Targa is a light, high performance, competition-grade generator that revolutionized racing. '), +(17525,'Screen','Usable','UNDEFINED','6a9b6017-1451-489c-aff9-8426094cc7ae','','',NULL), +(17526,'DockingTube_Fuel_Ports_ESPR_Talon','DockingCollar','UNDEFINED','d409e407-cf1f-4574-ac42-adeae9829bbd','','',NULL), +(17527,'RSI_Zeus_Escpod_Bedding_1','Seat','UNDEFINED','7bcd0d78-64d5-4ca3-a19b-5e08038c2228','','',NULL), +(17528,'Carryable_1H_CY_weight_dumbbell_1_14kg_c','Misc','UNDEFINED','decc5d45-3646-4a06-99b4-d2d6acca5bcb','','',NULL), +(17529,'Corbel Helmet Mire','Armor','Helmet','00638fba-f80d-4848-8807-b70d0035992c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nOriginally designed as a strength enhancement suit to give factory workers better lifting power, CDS found wider application in utilizing its defensive capabilities. It\'s triple-enforced armor plating provides extreme physical protection, with deliberate placing of materials to protect the most vulnerable parts of the body. A series of pneumatic levers offer increased flexibility in the joints, alleviating pressure and weight in key areas to create an accessible and highly protective armor despite its heavy weight.\n\nThe Mire edition features natural greens and industrial grays.'), +(17530,'Arrowhead \"Warhawk\" Sniper Rifle','Weapon','Medium','cd549fac-17bb-44af-b824-9e81384bd1be','','','Manufacturer: Klaus & Werner\nItem Type: Sniper Rifle\nClass: Energy (Laser)\n\nBattery Size: 20\nRate Of Fire: 50 rpm\nEffective Range: 100 m\n\nAttachments: Optics (S3), Barrel (S2), Underbarrel (S2)\n\nKlaus & Werner’s Arrowhead Model VI long-range energy rifle features a fiberglass composite body capable of withstanding any number of rigorous environments both in atmosphere and out. Built with a precision stock, compound scope and built-in bipod, the Arrowhead offers a stable and devastating weapon for operators who want to keep their distance, but stay in the fight.'), +(17531,'Horizon Helmet Imperial','Armor','Helmet','e1c3a946-afd5-4f53-93cd-9b9ec3122749','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Horizon helmet is a durable and robust environmental enclosed work helmet. The single sheet laminate dome gives you an extremely wide field of view. A pair of side-mounted LED light modules provide additional illumination to make sure you can see what you\'re doing.'), +(17532,'Stud','Char_Head_Piercings','UNDEFINED','94887ad9-4781-4324-9dce-ec9fbb63a44f','','',NULL), +(17533,'Hornet Kilian Blue Livery','Paints','UNDEFINED','9f68c69d-8fe6-4df1-8ae0-4e69b35a4147','','','Inspired by the deep blue skies frequently seen in the Navy\'s home system, the Kilian Blue livery was designed in 2880 to celebrate the 500th anniversary of Pax Humana and the formation of the Navy. Made specifically for the Hornet Mk I, the livery is dark blue with grey highlights and crisp white UEE logos.'), +(17534,'ORIG_85X_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','1d52f3ea-2fcf-4080-a1a6-455145837792','','',NULL), +(17535,'Genoa','PowerPlant','Power','2a02027b-5c19-456b-901b-663189505be0','','','Item Type: Power Plant\nManufacturer: Juno Starwerk\nSize: 2\nGrade: A\nClass: Industrial\n\nAccording to Juno Starwerk, good industrial design is meant to go unnoticed, yet it’s hard not to marvel at the Genoa medium power plant, as its outstanding performance and noted durability make it a first-rate component.'), +(17536,'Aegis Eclipse - Noise Launcher','WeaponDefensive','CountermeasureLauncher','ab307106-2290-4168-8cec-9fb7c87a0d43','','','Aegis Eclipse - Noise Launcher'), +(17537,'Sorel Hat Shuttle Gray','Char_Clothing_Hat','UNDEFINED','9d857247-ce3a-4582-9fe2-8301f246ff8d','','','The wide-brim bucket-style design of Habidash\'s Sorel hat provides the wearer with lots of cover from any overbearing rain or sunshine.'), +(17538,'Aurora Mk II Shade Livery','Paints','UNDEFINED','f331749a-d9de-44e8-b975-68a0b6648492','','','Featuring a deep black and soft gray elements, the Shade livery ensures you\'ll soar through space in style.'), +(17539,'Fried Seanut','Food','Consumable','e6084232-38a4-407a-8029-5dec1c67cbd0','','','NDR: 15\nEffects: Dehydrating\n\nEasy to grow and care for, these tubular sea creatures have become a popular food in the outer reaches of systems. This seanut has been fried and has a salty, roasted flavor.'), +(17540,'AEGS_Avenger_Thruster_Mav_Joint','ManneuverThruster','JointThruster','62ec1e39-f275-47f8-a9f9-10f5200b81d6','','',NULL), +(17541,'expo_display_shirts_and_hats_anvil','ShopDisplay','Default','afd0dd01-8654-4243-9884-edf9bec8faad','','',NULL), +(17542,'Carryable_2H_FL_05x05x05_MissionItem_metal_oresamples','Misc','UNDEFINED','ec214eb5-e565-4699-9e9f-71be4315a85b','','',NULL), +(17543,'DCP Armor Arms New Dawn','Armor','Arms','c1d1cc22-1b9f-4a47-8f8f-9b748323806d','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nEndure the most brutal attacks with the DCP heavy armor. This set features easy-swing joints that provide freedom of movement in the heat of battle, and was crafted with a multi-layer shock-absorbing shell that helps its wearer shake off the hardest hits.'), +(17544,'ADP Core Seagreen','Armor','Torso','7c2b7cfe-1dfc-405c-804b-72503d2ebfed','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(17545,'ADP Arms Tan','Armor','Arms','f8bd0865-7c7e-48a4-8fdb-2c9e94dd40bf','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(17546,'G-2 Helmet Orange','Armor','Helmet','74a449c4-e358-4f00-8fa9-531ede632ee5','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. Visor is AR crosshair compatible.'), +(17547,'Seat','SeatAccess','UNDEFINED','a2620922-a83f-47bf-a3af-21a81a09a69e','','',NULL), +(17548,'RSI Polaris Remote Turret Missile Rack','MissileLauncher','MissileRack','166cdea0-d77f-403d-afbf-3f6306cadeda','','','Item Type: Missile Rack\nManufacturer: RSI\nSize: 4\nMissiles: 12xS2 \n\nA bespoke remote turret for the Polaris outfitted with a S4 mount holding a missile rack equipped with twelve S2 missiles.'), +(17549,'NDB-28 Repeater','Weapon','Gun','2365f40c-fbd3-4859-ad80-f5cfbc305c83','','','Manufacturer: MaxOx\nItem Type: Neutron Repeater\nSize: 2\n\nFeaturing a sleek, scientific design, the MaxOx NDB-28 is the next step in serious stopping power. Twin barrels overlap blasts for sustained neutron fire that remains effective at short to medium range.'), +(17550,'AEGS_Vanguard_Hoplite_Thruster_Mav_Joint','ManneuverThruster','JointThruster','835054fa-902f-4ff5-b2f2-34c01a19850f','','',NULL), +(17551,'Testudo Legs Turfwar','Armor','Legs','2d05b029-1dfa-4d6b-885d-ab6eee86a237','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -50 / 80 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4K µSCU\n\nThe Testudo armor for Quirinus Tech blends battlefield durability with everyday comfort. It weaves tough, yet lightweight, plating with ultra-strong synthetic fibers to provide premium protection. Lining the inside is a proprietary micromodal fabric that\'s soft to the touch and wicks away moisture for supreme comfort.'), +(17552,'Venture Helmet Imperial','Armor','Helmet','928d2d7c-16fb-41bc-9601-201b42067945','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover.'), +(17553,'Railing_Straight_2m_Lowtech_Open_C','Usable','UNDEFINED','b2dbbf00-308c-4c91-b52d-528561fa77ba','','',NULL), +(17554,'Sion Compensator2','WeaponAttachment','Barrel','5867f3cf-e248-405c-b2fb-6e1abe579c82','','','Manufacturer: ArmaMod\nType: Ballistic Compensator\nAttachment Point: Barrel\nSize: 2\n\nAim Recoil: -30%\nVisual Recoil: -20%\nAudible Range: +20%\n\nMaintain accuracy by countering muzzle rise with the Sion Compensator2. ArmaMod\'s expertly designed S2 barrel attachment efficiently expels gasses to keep every shot on target.'), +(17555,'RSI_Aurora_LX_Thruster_Retro','MainThruster','FixedThruster','5fef77ce-b769-4252-a10c-ad3aebdb3f4f','','',NULL), +(17556,'Door Control','Door','UNDEFINED','2e92d26e-9467-4e5a-855d-07df8199cd42','','',NULL), +(17557,'Greycat ROC Ore Pod','Container','Cargo','eb6fc98d-83c6-4633-bcc4-bfc7a3c91cfe','','','Capacity: 1.2 SCU\n\nProduced by Greycat for their ROC mining vehicle, this ore pod features tough construction able to withstand the rigors of the job.'), +(17558,'Second Tevarin War Service Trousers','Char_Clothing_Legs','UNDEFINED','d445091e-db3b-47d8-b699-d102355f7498','','','Carrying Capacity: 0.5K µSCU\n\nHonor the heroes that served in the Second Tevarin War by wearing a replica Navy uniform. Historically accurate down to every last stitch, period appropriate materials were used to make these uniforms match military specifications of the era. The Service Trousers are blue with red piping and worn with the matching jacket.'), +(17559,'Hardean Jacket and Shirt Parker','Char_Clothing_Torso_1','UNDEFINED','cdf3ba22-36a1-48c4-903f-0e69b069293c','','','Carrying Capacity: 2K µSCU\n\nThis grey and blue collarless synth-leather jacket from Escar Limited features quilted detailing around the opening and down the sleeves, and pairs effortlessly with a bold button-down, tropical-print shirt in orange.'), +(17560,'Titanium','Cargo','Cargo','bb56923b-7e4a-4880-bbf7-681ee321e0b5','','',NULL); +INSERT INTO `tbl_scobjs` VALUES +(17561,'Odyssey II Undersuit Violet/Black','Armor','Undersuit','6fdb4c34-1e9f-4a08-8b07-293dfff9d328','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe latest generation of RSI\'s classic Odyssey undersuit features a new rugged design capable of withstanding the harshest of conditions in space or planetside. Built using the latest microweave technology, the Odyssey II undersuit provides hours of comfort in locations that are anything but comfortable.'), +(17562,'Bello T-Shirt Maroon','Char_Clothing_Torso_0','UNDEFINED','beb6b7e0-d315-431e-8422-ab612d8fd71a','','','This stylish t-shirt from City Lights is made from a lighter fabric that\'s perfect for warmer climates.'), +(17563,'Carryable_1H_SQ_Datapad_Fluff_Orb_HathorGroup','Misc','UNDEFINED','44f5eadf-ccbe-49ea-a729-74276e5f0a1d','','',NULL), +(17564,'SHIELDS','ShieldController','UNDEFINED','e86c18b8-5968-47bd-ab50-f9d61f996364','','',NULL), +(17565,'box_plastic_4_weapon_opened_005x010x00375_a_gmni_pistol','Misc','UNDEFINED','78cefb02-4bc8-43c8-bff4-8a57d72ab8f1','','',NULL), +(17566,'display_components_pallet_125x125x025_quantum','ShopDisplay','UNDEFINED','7739c511-ea24-4613-8025-00f0b5d4009c','','',NULL), +(17567,'AI_Module_AntiPersonnel_Turret_PU','AIModule','UNDEFINED','beb0b4b6-dbe2-4388-aacb-0166d18a7f39','','',NULL), +(17568,'Quartz \"microTech\" Energy SMG','Weapon','Medium','fd1869d9-d88c-4a1c-84b4-27bd473d2ade','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: SMG\nClass: Energy (Electron)\n\nBattery Size: 45\nRate of Fire: Beam\nEffective Range: 15-20 m\n\nAttachments: Optics (S1), Underbarrel (S1)\n\nManufacturer VOLT\'s Quartz SMG utilizes exciting new weapon technology that fires a short range beam that fractures into multiple beams the longer it fires, making it an extremely effective close quarter weapon. This special edition features microTech branding.'), +(17569,'WeaponMount_Gun_S1','WeaponMount','WeaponControl','68b5c144-c5ff-4619-baca-4538628d2819','','',NULL), +(17570,'Internal Tank','FuelTank','Fuel','91c3b0aa-ad58-41de-83ea-a1c9bc87025d','','',NULL), +(17571,'Atlas','QuantumDrive','UNDEFINED','934ac478-9c87-48d1-8fd3-e5359171983c','','','Item Type: Quantum Drive\nManufacturer: RSI\nSize: 1\nGrade: A\nClass: Civilian\n\nThough it may seem commonplace today, Humanity’s ability to travel across solar systems at quantum speeds was built upon a foundation of Roberts Space Industries’ technology and craftsmanship. Now, space travel has reached even higher heights thanks to the top-of-class performance of RSI’s Atlas pushing quantum drive technology farther than it’s ever gone.'), +(17572,'m_human_mannequin_clothing_TandS_Civ05','ShopDisplay','UNDEFINED','be7fc784-9f54-4118-910e-dfc9167cefb7','','',NULL), +(17573,'Shipment','Misc','UNDEFINED','d962a6e1-da31-4311-b6b3-e0376e271fed','','',NULL), +(17574,'AEGS_Door_Decal_MessHall','Decal','DoorPart','721f2207-f824-45d5-8af5-d3702320231a','','',NULL), +(17575,'Weapon_Rack_storage_ugf_1','Usable','UNDEFINED','d6f25812-a59f-4044-9b72-b18ada62fb64','','',NULL), +(17576,'CRUS_Intrepid_Seat_Access_Pilot','SeatAccess','UNDEFINED','98274cbd-8b2c-4cc6-a5db-a7a2699b59f2','','',NULL), +(17577,'vncl_melee_01_tint03','Weapon','Knife','e31476a4-dfab-45f5-b914-96d75dec468b','','',NULL), +(17578,'ORC-mkX Arms Desert','Armor','Arms','1e78adb9-8db6-4458-a712-bf61fae22e13','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe mark X is the latest in CDS’ award-winning Omni-Role Combat armor series. This EVA-rated suit features new EdgeCore composite weave technology, maximizing protection against projectiles, explosives and the elements while minimizing operator agility.'), +(17579,'RSI_Scorpius_Thruster_Main_Bottom_Right','MainThruster','FixedThruster','6da265a3-fe5b-40f6-bb40-431e5bc803fd','','',NULL), +(17580,'EE08 (8x Telescopic)','WeaponAttachment','IronSight','0dabf62d-9b3e-4968-a371-ae0cb44057a1','','','Manufacturer: Behring\nType: Telescopic \nAttachment Point: Optic\nMagnification: 8x\nAim Time: +0%\nSize: S3\n\nGet a clear view of your target from afar with the EE08. Behring craftsmanship produced a 8x scope that\'s lightweight, durable, and deadly accurate. A rigorous 22-step testing process ensures the EE08 can deliver precision targeting even after encountering extreme weather or surviving battlefield wear and tear.'), +(17581,'Iron','Cargo','Cargo','bba17984-86e7-4002-aab7-f33f1279fe1f','','',NULL), +(17582,'RSI_Aurora_GS_SE_Pilot_Dashboard','SeatDashboard','UNDEFINED','dcb49b46-195b-4178-9e11-870069ef0eaf','','',NULL), +(17583,'TrueDef-Pro Legs Black/Aqua/Silver','Armor','Legs','b25192ef-75ef-4705-a0d5-b12308605c27','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.\"'), +(17584,'CFP Hat','Char_Clothing_Hat','UNDEFINED','727263cc-fe27-483b-bd3a-9c411e2e65dd','','','A comfortable blue and black cadet hat with the CFP\'s logo on the front.'), +(17585,'CargoBox_050x050x050_Tank_Water_Stacked_2','Cargo','Cargo','3d0c027f-784a-423e-a5f0-1653692f5e7a','','',NULL), +(17586,'Feynmaline','Cargo','Cargo','9f11d2ec-c6ef-4808-b57d-d9d9aae17225','','','The paramorphic crystalline structure of this mineral is extremely volatile. When extra energy is introduced, as is typical with modern mining, the ore will often explosively degrade into the more stably structured Janalite. This instability makes Feynamline very dangerous to acquire but also extremely valuable as an industrial anti-matter precursor if it can be properly harvested.'), +(17587,'Venture Legs Sienna','Armor','Legs','8d61cad9-e318-4c8a-8505-402456ec044e','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(17588,'Hillcrest Boots','Char_Clothing_Feet','UNDEFINED','05cddb57-26fa-4dab-aa79-1f4a5c11a9d9','','','Spend all day in your Hillcrest boots. Rugged yet refined, the boots feature a stylish and waterproof brown synthetic leather with red inlays and yellow stitching. A comfortable, odor absorbing insole and slip resistant outer sole will keep you comfortable and on your feet.'), +(17589,'Eclipse 2950 Best In Show Livery','Paints','UNDEFINED','f268b121-f301-4608-a8ed-391f424437f8','','','Customize your Eclipse with this special 2950 Best in Show livery that is primarily white with gold accents.'), +(17590,'Seat','SeatAccess','UNDEFINED','9e965b02-521f-4ef2-8273-ceda0e5eaf23','','',NULL), +(17591,'IAE 2954 T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','0fd7e49e-0141-4a0a-aefd-6b6de409d7b0','','','The official shirt of the 2954 Intergalactic Aerospace Expo. This soft and supremely comfortable cotton t-shirt is a crisp white with the IAE logo on the front, \"The Next Frontier\" tagline across the back, and the year on the right sleeve.'), +(17592,'Access','SeatAccess','UNDEFINED','9642b15d-6847-4a6d-b62a-3d9889b07531','','',NULL), +(17593,'GAMA_Syulen_Thruster_Retro','ManneuverThruster','FixedThruster','613affc5-7ac5-4e86-8c4f-fc37bb553d4d','','',NULL), +(17594,'Door Control','Door','UNDEFINED','7b8f06a2-5711-4eab-8efa-624fdc665f0e','','',NULL), +(17595,'Stronger Together T-Shirt','Char_Clothing_Torso_0','UNDEFINED','90d0dc82-1cbb-4bce-ae7e-220e011d8fe7','','','This denim-blue t-shirt has the famous \"Welcome to Levski\" mural on the front which features the symbol of the People\'s Alliance behind two hands clasped in solidarity and the motto \"Stronger Together.\"'), +(17596,'MISSILES','MissileController','UNDEFINED','33b78cf7-c38f-4472-adc7-9d5fbac329f3','','',NULL), +(17597,'stand_shop_small_b','ShopDisplay','UNDEFINED','00b9cfe1-4c4c-463e-ac3d-1fc47414e834','','',NULL), +(17598,'locker_spacesuit_1_a','Misc','UNDEFINED','f0bb7e4b-ab40-4a47-b3bd-50f7a421ebfa','','',NULL), +(17599,'Titanium (Ore)','Cargo','Cargo','13cb5ac8-9e14-4535-aa7c-5797bb714426','','',NULL), +(17600,'RSI_Aurora_GS_CL_Thruster_Retro','MainThruster','FixedThruster','d3df4e52-a28d-4819-b903-2de18443630a','','',NULL), +(17601,'TRGT. STATUS','Seat','UNDEFINED','d03bdc10-4edb-46a5-b1c2-0924983fd0eb','','',NULL), +(17602,'Door Control','Door','UNDEFINED','76157b45-3f51-4775-8799-9642df404412','','',NULL), +(17603,'AEGS_Reclaimer_Thruster_Mav_Fixed_Front','ManneuverThruster','FixedThruster','0bc0ddc0-e2cf-492a-b485-252ae2695a3b','','',NULL), +(17604,'Aril Legs (Modified)','Armor','Legs','fa162310-e01e-4b90-81ff-f449f5d6f571','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n \nThis version of Greycat Industrial\'s Aril legs has been modified from its original form. Originally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(17605,'Console','Usable','UNDEFINED','a727b1bd-c5e1-44b1-8952-7c609cd9a36d','','',NULL), +(17606,'Feynmaline','Cargo','Cargo','79780cfa-8c03-4ec4-b222-a152a03e00c7','','','The paramorphic crystalline structure of this mineral is extremely volatile. When extra energy is introduced, as is typical with modern mining, the ore will often explosively degrade into the more stably structured Janalite. This instability makes Feynamline very dangerous to acquire but also extremely valuable as an industrial anti-matter precursor if it can be properly harvested.'), +(17607,'Landlite Boots Green','Char_Clothing_Feet','UNDEFINED','fad15e5a-2946-4d78-ac9d-59ab16ac9d65','','','Who says work boots can\'t be comfortable? Grindstone\'s Landlite boots are built with a breathable synth-leather material to keep your feet dry, a contoured, memory footbed, and a slip-resistant outsole, making it perfect for whatever worksite you throw at it.'), +(17608,'Pembroke Exploration Suit RSI Ivory Edition','Armor','Undersuit','321a0aa4-c3ac-4f43-a991-a2d622fb118a','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nDesigned to extend the limits of Human endurance, the Pembroke was built to withstand the extreme heat of inhospitable high temperature environments. Based off of Caldera\'s best-in-class exploration armor platform, an advanced sensor suite intelligently adjusts to environmental conditions so the wearer\'s body temperature remains stable. The special RSI Edition of the Pembroke ensures those seeking to cross bold new horizons do so in style.'), +(17609,'Seat','SeatAccess','UNDEFINED','98291e74-0266-4007-b4bb-6d0fe850ece1','','',NULL), +(17610,'Ketchum Beanie Dark Green','Char_Clothing_Hat','UNDEFINED','2490c899-b38c-410e-8869-4894d79ccf97','','','Complete your cool-weather wardrobe with the classic Ketchum beanie from Alejo Brothers.'), +(17611,'Weapon_Rack_1_KSAR_SMG_AmmoOnly_001','Usable','UNDEFINED','aa977724-4b36-4fda-80c6-e50d5d9d8f6d','','',NULL), +(17612,'display_item_noGeo_01Port_Gadget','ShopDisplay','UNDEFINED','e042f0ef-3dc7-4cf1-8b98-60af31e33d3d','','',NULL), +(17613,'CargoBox_050x050x050_Tank_Gas_StartTop','Cargo','Cargo','4bf6ca21-a06e-4b36-b22c-35cea006987a','','',NULL), +(17614,'Seat','Usable','UNDEFINED','ac405524-82e7-4ab9-a8bd-3888b94d7ae5','','',NULL), +(17615,'P4-AR \"Warhawk\" Rifle','Weapon','Medium','992e922f-8c21-41dd-b1b6-c2753c74c97b','','','Manufacturer: Behring\nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 40\nRate Of Fire: 550 rpm\nEffective Range: 50 m\n\nAttachments: Optics (S2), Barrel (S2), Underbarrel (S2)\n\nBehring\'s classic P4-AR rifle features a collapsible stock and shortened barrel, making it an ideal choice for close-quarter firefights. Its accuracy and general ease of use make it universally valued among security, military and civilian users.'), +(17616,'Adiva Jacket Black','Char_Clothing_Torso_1','UNDEFINED','fcdb3335-3856-402f-b4c1-e4b3c6f9f1be','','','Carrying Capacity: 1K µSCU\n\nDefine your ultimate you. The Adiva is an asymmetrical pullover with bold mixed-materials and solid reinforced trim.'), +(17617,'Scourge Railgun','Weapon','Large','2b752b3c-192e-4e5d-b6e2-082446d40502','','','Manufacturer: Apocalypse Arms\nItem Type: Railgun\nClass: Ballistic\n\nMagazine Size: 5\nRate Of Fire: 60 rpm\nEffective Range: 200 m\n\nAttachments: Optics (N/A), Barrel (N/A), Underbarrel (S4)\n\nEqually devastating to larger threats and hostile vehicles, this shoulder mounted railgun from Apocalypse Arms uses electromagnets to deliver its payload accurately over great distances, making it the Scourge of land, air and space.'), +(17618,'Edgewear Pants Twilight','Char_Clothing_Legs','UNDEFINED','417d11b3-3d1d-4700-ad57-1ebe612abbbe','','','Carrying Capacity: 4K µSCU\n\nStegman\'s Edgewear utility clothes are made from reinforced nylon weaves and lined with temperature-rated quilted technology to provide you with a little extra protection while on the jobsite. Double knees, reinforced joint pads and extra pockets add comfort and durability to this field-tested and worker-approved clothing line.'), +(17619,'RSI_Aurora_CL_CargoGrid_Main','CargoGrid','UNDEFINED','9e4674eb-9d12-43dd-a42b-8af9ba25b26a','','',NULL), +(17620,'VNCL_Stinger_Turret_Cap','AttachedPart','UNDEFINED','b10774e8-9e9f-4bdc-931d-7e257774b85b','','',NULL), +(17621,'Silverton Pants Charcoal','Char_Clothing_Legs','UNDEFINED','6ee8024f-13b5-48b5-81ae-ddbe65ca3bfc','','','Carrying Capacity: 1K µSCU\n\nMade with a sturdy blend of tough and flexible materials, the Silverton pants are the perfect fit for someone who needs heavy-duty workwear without sacrificing mobility. Got a job to do? We\'ve got you covered.'), +(17622,'TRGT. STATUS','Seat','UNDEFINED','bc78fc12-a98f-4ad0-86e0-5dcb1fb23c4f','','',NULL), +(17623,'Keystone Jacket Silver','Char_Clothing_Torso_1','UNDEFINED','4bb0c6a8-add3-4b66-ad44-d63fac24ad6d','','','Carrying Capacity: 1K µSCU\n\nDMC’s Keystone is a two-layer jacket that puts utility first. The top-most vest layer ensures the Keystone jacket remains warm and durable, while the underlayer is designed to avoid restricting your range of motion. Various pockets adorn the jacket to provide convenient storage options.'), +(17624,'Seat','Usable','UNDEFINED','b334aabe-3f88-4905-bb65-94d703ba988e','','',NULL), +(17625,'Pisces 2953 Auspicious Red Rooster Livery','Paints','UNDEFINED','e4d386d8-67e1-42e2-9868-aa0d6a662426','','','Seek peace and prosperity in the new year with the Auspicious Red Rooster livery. Outfit your ship with this bold red base paint complemented by gold accents and a stylized graphic of a rooster.'), +(17626,'Citadel Legs Base','Armor','Legs','cf694a72-5848-43b0-a3d2-1a570e029abd','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure.'), +(17627,'Internal Tank','QuantumFuelTank','QuantumFuel','3a799e1e-54d6-47a7-801d-2e82af2612fd','','',NULL), +(17628,'Bed_CNOU_Mustang_Beta','Usable','UNDEFINED','aa27a72a-22a3-4f96-a6cf-c7e5d7514ee0','','',NULL), +(17629,'Door Control','Door','UNDEFINED','00ec9ca2-6a4e-4b53-9ad3-bc257d330743','','',NULL), +(17630,'Carinite','Cargo','Cargo','2c5e97e1-a83a-4333-8846-dcfafc456d39','','','A rare mineral because the extreme pressure needed for its formation is very uncommon, it is in high demand thanks to its use in advanced computer processors and other cutting-edge electronics.'), +(17631,'Tulsi Jacket Midnight','Char_Clothing_Torso_1','UNDEFINED','4f31bfbe-e578-42e6-88b4-cf05f74ae3db','','','Tulsi Jacket Midnight'), +(17632,'DRAK_Corsair_Thruster_Main_A','MainThruster','UNDEFINED','a0714f59-c8dd-4e42-9b52-59971a41df5d','','',NULL), +(17633,'ClipVest Work Harness Grey','Char_Clothing_Torso_1','UNDEFINED','16b43283-eea5-4f3e-87d8-d9997486860a','','','Carrying Capacity: 2K µSCU\n\nStegman\'s ClipVest is a multi-purpose work harness that keeps your tools handy when and where you need them. Built from industrial strength materials, this harness offers a back piece to help alleviate strain and provide counterbalance.'), +(17634,'Ati Jacket Violet','Char_Clothing_Torso_1','UNDEFINED','37d3680b-5620-451d-b294-548504858ad4','','','Carrying Capacity: 2K µSCU\n\nFiore\'s is a modern update of traditional Earth design. Slim tailoring, a high collar, and striking asymmetrical design make this overcoat a must-have item for any wardrobe.'), +(17635,'Pulverizer \"Payback\" LMG','Weapon','Medium','121503c3-7f33-4ecc-bfde-2560fa886cea','','','Manufacturer: Unknown\nItem Type: LMG\nClass: Ballistic\n\nMagazine Size: 120\nRate Of Fire: 355 rpm\nEffective Range: 100 m\n\nNothing like ripping through a huge mag of .50 cal bullets to scare away unwanted guests. Based on a modified FS9, the Pulverizer LMG wastes no time with pleasantries, instead lends itself to a more direct confrontational approach. \n\nThe Payback version is sprayed with red paint and anointed with bone fragments.'), +(17636,'Station','SeatAccess','UNDEFINED','724ad118-d295-4992-95f9-9b461ae4169d','','',NULL), +(17637,'Screen','Usable','UNDEFINED','f9c58ee0-1345-49ed-b36f-501129f158a6','','',NULL), +(17638,'Hydrogen','Cargo','Cargo','5517caf4-3101-4c3a-9b7b-c26619551f33','','',NULL), +(17639,'display_components_noGeo_01Port_s01_shield','ShopDisplay','UNDEFINED','5f9cc53f-b62e-4b88-988e-accde5a6827a','','',NULL), +(17640,'Mivaldi Pants Imperial','Char_Clothing_Legs','UNDEFINED','b1ce5cbf-e953-4061-b0ee-8e762b1aa545','','','Carrying Capacity: 0.5K µSCU\n\nCut to a narrow fit, OpalSky\'s Mivaldi pants feature bold asymmetrical design with smart yet casual dual material styling, making it the perfect addition to any wardrobe.\n\nWomen\'s sizes currently out of stock.'), +(17641,'Seat','Usable','UNDEFINED','903e2ed1-ee39-4446-8134-9c42572dba10','','',NULL), +(17642,'Seat','SeatAccess','UNDEFINED','2992d846-bd2f-42f4-ae26-cf7605b7839c','','',NULL), +(17643,'Paint_MPUV_UEE','Paints','UNDEFINED','cda28f97-b288-43ab-8b7b-d51c7fb845a8','','',NULL), +(17644,'Prospector Outcast Livery (Modified)','Paints','UNDEFINED','241b4fd1-bbdc-4fc2-bf60-48c5d5df89e2','','','This version of the livery has been modified from its original form with the addition of graffiti. Embrace chaos with the Outcast livery. It features rough splashes of neon green against black to give the Prospector an aggressively chaotic appearance.'), +(17645,'Stinger Ship Armor','Armor','Medium','58393b91-3003-4467-b3b6-d8017ae3a083','','','Stinger Ship Armor'), +(17646,'Drake Buccaneer Spinal Mount','Turret','GunTurret','02bb4650-7c20-4e42-b3d8-1ca7bb4b76bf','','','Ward off attacks from any angle by installing this gimballed spinal mount. Designed by Drake for the Buccaneer, this S4 turret can equip two S2 weapons to keep the heat on aggressors.'), +(17647,'SHIELDS','ShieldController','UNDEFINED','4796f1ff-0ae1-2cdd-f010-21bf0e2cb486','','',NULL), +(17648,'Paladin Steadfast Livery','Paints','UNDEFINED','ba0b1daa-a560-4894-ac5f-2845f5eda326','','','Bring a grey base paint with green highlights to the Paladin with the Steadfast livery.'), +(17649,'game_chess_1_knight_a','Misc','UNDEFINED','1c68854f-24c3-4a9e-ab1a-10e94040c6da','','',NULL), +(17650,'QuadraCell','PowerPlant','Power','d89b535f-8187-4840-b5f4-3230c789dfd1','','','Item Type: Power Plant\nManufacturer: Aegis Dynamics\nSize: 1\nGrade: A\nClass: Military\n\nFew military-grade power plants get better than the Aegis QuadraCell. It wasn’t just built to survive the heat of battle, it was built to thrive in it.'), +(17651,'BEHR_BallisticGatling_PowerArray_S5','WeaponAttachment','PowerArray','9f11f7a8-493f-4ebb-b283-e5ad7c3b6766','','',NULL), +(17652,'Cliffback T-Shirt Grey','Char_Clothing_Torso_0','UNDEFINED','4f1dbf8f-a8bc-4499-bbe4-c54b027ae73d','','','Alejo Brothers\' classic loop tee with a spatter pattern.'), +(17653,'DRAK_Corsair_Dashboard_Pilot','SeatDashboard','UNDEFINED','efcec14a-522c-4311-b043-f75c5ab9666c','','',NULL), +(17654,'BEHR_LaserRepeater_PowerArray_S10','WeaponAttachment','PowerArray','2d507752-44cb-40bb-b7c7-985726f32f53','','',NULL), +(17655,'OMNI-AFS-Sapphire Armored Flight Suit Jungle','Armor','Undersuit','a5157327-c498-4b6c-a7bc-93c79c9c6fb1','','','Item Type: Armored Flight Suit\nDamage Reduction: 20%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nInspired by the armored flight suit worn by UEE Navy pilots, the OMNI-AFS-Sapphire has been battle tested and refined for centuries to become the ultimate wear for any pilot. Its sturdy yet comfortable construction can not only withstand hostile environments, but comes with integrated arm, core, and leg armor for combat encounters. The only way a pilot can get closer to the real thing is by enlisting.'), +(17656,'Raw Ouratite','Cargo','Cargo','d4819160-1cff-4d59-963b-305b95fa70f8','','',NULL), +(17657,'WiDoW','Cargo','Cargo','3531e01a-250d-46ee-9eb9-46991d36ead7','','',NULL), +(17658,'Sureshot Mask','Char_Clothing_Hat','UNDEFINED','dfac35b5-6496-43a8-836b-2704f1236515','','','This white ablative ceramic mask is as intimidating as it is striking, with embedded scars to let them know that you aren\'t just another pretty face.'), +(17659,'Odyssey II Undersuit Brown/Grey','Armor','Undersuit','d5c2007b-6ed8-4c2a-9829-a2e8b144d49a','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe latest generation of RSI\'s classic Odyssey undersuit features a new rugged design capable of withstanding the harshest of conditions in space or planetside. Built using the latest microweave technology, the Odyssey II undersuit provides hours of comfort in locations that are anything but comfortable.'), +(17660,'Berian','Cooler','UNDEFINED','f68e5fb2-2388-43d1-9aab-bed82da648c8','','','Item Type: Cooler\nManufacturer: Wen/Cassel Propulsion \nSize: 1\nGrade: C\nClass: Civilian\n\nThe Berian delivers Wen/Cassel’s signature look and performance in an introductory cooler that will meet and surpass pilot’s expectations.'), +(17661,'Allpa Pants Shadow','Char_Clothing_Legs','UNDEFINED','9acc4629-465b-4e08-b84d-f6d8edc3117c','','','Carrying Capacity: 400 µSCU\n\nIf you\'re in the adventure business, you\'ll need clothing that can take the heat. The Allpa Pants were made with heavyweight cotton that features AlejoFlex technology, providing the wearer with a wide range of movement during tough jobs while maintaining its durability.'), +(17662,'Door','Door','UNDEFINED','d2c9e0dd-9826-4935-9258-4f6233d7dcbd','','',NULL), +(17663,'Dopple','Cargo','Cargo','24ba2f98-7f86-4b35-b82a-f39a5df5a767','','',NULL), +(17664,'TRGT. STATUS','Seat','UNDEFINED','20555078-187a-41fe-b46e-bd8a4bc0395d','','',NULL), +(17665,'Zip','Cargo','Cargo','add5ad21-31eb-40e4-a224-ba30bb82134c','','',NULL), +(17666,'Door Control','ControlPanel','DoorPart','b65790de-28a7-4bb2-b541-5e2928a9529d','','',NULL), +(17667,'ToolSafe Vest Fogforest','Char_Clothing_Torso_1','UNDEFINED','34ca9df6-fe25-4a1f-99ec-9b5f7f102895','','','Carrying Capacity: 10000 µSCU\n\nThe ToolSafe Vest is constructed with thick materials accentuated by high-visibility straps to ensure worker safety. The inclusion of numerous pouches gives this jacket a generous amount of storage to make it a staple of worksites everywhere.'), +(17668,'Relentless L-21 Gatling','Weapon','Gun','ea0217e9-cdbe-48d2-a192-1837c52130b9','','','Manufacturer: Kruger Intergalactic\nItem Type: Ballistic Gatling\nSize: 4\n\nEnemies will regret getting within range of the L-21 Wolf and its bespoke Relentless L-21 gatling. Kruger\'s expert engineering allows this rotary cannon to fire rounds at a head spinning speed with little worry of a misfire.'), +(17669,'Glacosite','Cargo','Cargo','eb83bd46-ce16-43ae-81c5-11d86b672a47','','','As glaciers form, heavier mineral contents sink over time and are then crushed by the weight above as the ice deforms and flows. When the glacier recedes, Glacosite deposits are left behind. White and blue in color, the crystals form in long shiny strands that almost are cotton-like in appearance. Glacosite has found specialized commercial use since it is an extremely light and durable insulator.'), +(17670,'CF-557 Galdereen Repeater','Weapon','Gun','4170fcb0-0cef-4228-a3d5-7efc41ba4ea3','','','Manufacturer: Klaus & Werner\nItem Type: Laser Repeater\nSize: 5\n\nWith a bite as fearsome as its fanged namesake, the Klaus & Werner CF-557 Galdereen laser repeater is a solid choice for a wide range of vehicles thanks to its high rate of fire and consistent efficacy.'), +(17671,'Door Control','Door','UNDEFINED','39aabaee-369f-475b-a971-67e6a165357c','','',NULL), +(17672,'Hornet Invictus Blue and Gold Livery','Paints','UNDEFINED','3022847b-ddfd-4442-a067-9ddfa2f47404','','','Featuring a vibrant blue base color and gold highlights, the Invictus Blue and Gold livery will give your Hornet a striking style.'), +(17673,'Corbel Legs Smolder','Armor','Legs','acb808af-0c02-4459-97e4-9e3ac06d6a15','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\n\nOriginally designed as a strength enhancement suit to give factory workers better lifting power, CDS found wider application in utilizing its defensive capabilities. It\'s triple-enforced armor plating provides extreme physical protection, with deliberate placing of materials to protect the most vulnerable parts of the body. A series of pneumatic levers offer increased flexibility in the joints, alleviating pressure and weight in key areas to create an accessible and highly protective armor despite its heavy weight.\n\nThe Smolder edition is primarily gray and black with sharp red segments.'), +(17674,'Zenith \"Snow Camo\" Laser Sniper Rifle','Weapon','Medium','601a0c77-6e96-4bbd-ae76-15c0fa1e5928','','','Manufacturer: Verified Offworld Laser Technologies\nItem Type: Sniper Rifle\nClass: Energy (Laser)\n\nBattery Size: 22\nRate of Fire: 60-300 rpm\nEffective Range: 80 m\n\nAttachments: Optics (S3), Underbarrel (S2)\n\nThe Zenith Laser Sniper Rifle from VOLT offers operational flexibility on the battlefield as it can fire lower-energy shots rapidly, or be allowed time to automatically charge to fire a much more powerful energy blast that also generates significantly more noise and heat.\n\nFeaturing a white digital camo pattern, the Snow Camo edition is perfect for stalking prey in frozen environments.'), +(17675,'Seat','Usable','UNDEFINED','f2f1544b-9d93-4da2-8463-2aa126504755','','',NULL), +(17676,'Bottle','Bottle','Default','fc88c72f-4533-4609-89c9-6aeba2119d6f','','','Bottle'), +(17677,'ControlPanel_Screen_LightControl_16x9_RSI_Lynx_Table','ControlPanel','DoorPart','354a6cc0-0612-495c-906c-70a5c819c413','','',NULL), +(17678,'Lynx Core Grey','Armor','Torso','7e4e3cd2-ee45-4f96-be39-92b5ffdeebce','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(17679,'ORIG_135c_Winglet_Left','Misc','UNDEFINED','c455ccc6-1493-4010-9081-83d7fc4384a7','','',NULL), +(17680,'Remote Turret','Turret','GunTurret','96394fd4-6aa3-4f96-87f9-07b6c4b4aaa4','','','Remote Turret'), +(17681,'H_Dashboard_Projector_HUD_MISC_Fury','Display','UNDEFINED','35ec1823-8be0-4645-8959-cf63efb0f033','','',NULL), +(17682,'Mustang Beta Livery','Paints','UNDEFINED','bb0071fd-a171-4ef3-9beb-1b4421966b8f','','','Standard livery for the C.O. Mustang Beta.'), +(17683,'Vehicle_Screen_MFD_Holo_600i_B','Display','UNDEFINED','b4c9d9df-d289-421d-92e4-8a6855d3aa44','','',NULL), +(17684,'Reliant Tana Missile Launcher','GroundVehicleMissileLauncher','GroundVehicleMissileRack','e87964c3-4372-4a9c-b663-f5dbd35fe0c5','','','Item Type: Missile Launcher\nManufacturer: MISC\nSize: 5\nMissiles: 8xS2 \n\nBespoke missile launcher built into the wings of the Tana to make this Reliant variant a deceptively deadly dogfighter.'), +(17685,'AbsoluteZero','Cooler','UNDEFINED','67b6c401-1017-4c39-93f6-8305c4c67f69','','','Item Type: Cooler\nManufacturer: ACOM\nSize: 2\nGrade: B \nClass: Competition\n\nOriginally designed for racers, the AbsoluteZero cooler pushes performance to the limits. This high quality component from ACOM features a new coolant cycling system to keep your ship’s systems cool over everything else.'), +(17686,'DockingTube_Fuel_Ports_RSI_Aurora','DockingCollar','UNDEFINED','ba5ed294-28c0-47b5-9be1-eb140aee1e45','','',NULL), +(17687,'Ares Star Fighter Ion Radiance Livery','Paints','UNDEFINED','a93f7507-7173-4ec8-8f01-7c8ad7695f7a','','','White and grey with red trim, the Radiance livery makes the Ares Star Fighter Ion a sight to behold even when it\'s not blasting its massive laser cannon.'), +(17688,'Seat','SeatAccess','UNDEFINED','7ff1aa62-58cb-4749-af95-6f6c12d282c1','','',NULL), +(17689,'IndVest Jacket Grey','Char_Clothing_Torso_1','UNDEFINED','4d119f2f-8022-4ed6-a69b-d5bac3ccea9a','','','Carrying Capacity: 5K µSCU\n\nKeep your tools within easy reach with Stegman\'s IndVest. Made from industrial strength materials, this is a rare jacket that\'s both stylish and sensible.'), +(17690,'Valkyrie Sage Livery','Paints','UNDEFINED','a144a4b6-ad84-489c-8607-313b614350d7','','','Customize your Valkyrie with this light green livery.'), +(17691,'Seat','SeatAccess','UNDEFINED','f16d4c69-fee1-46b5-bc6d-8613245f5a57','','',NULL), +(17692,'Remote Turret','Turret','GunTurret','86da0491-010a-41c6-9cd1-0e676814ce2a','','','Remote Turret'), +(17693,'Agricium','Cargo','Cargo','852851b1-d8d2-4fdb-80c2-994df3749c6b','','',NULL), +(17694,'food_ration_pack_d','Misc','UNDEFINED','b8453d44-2617-4657-ab13-402f590e66a9','','',NULL), +(17695,'TRGT. STATUS','Seat','UNDEFINED','a962a30e-dbcb-4d78-9eee-29388338e39b','','',NULL), +(17696,'AEGS_Vanguard_Thruster_Retro','ManneuverThruster','FixedThruster','aab3551c-0979-4f42-996a-a89c83c78ad6','','',NULL), +(17697,'AAT-34 Turret','Turret','MannedTurret','983968c7-6d21-4e4e-b84a-e155d7ddbbd0','','','Manufacturer: Behring\nItem Type: Anti-Aircraft Turret\n\nMaintain order with the AAT-34 anti-aircraft turret. This rugged design is ideal for perimeter protection and can survive long exposure to the elements with minimal maintenance while still providing first class defensive fire from its S10 weapon and dual S7 missile launchers. Its custom targeting software also helps to maximize area coverage while keeping placement numbers reasonable; protecting more sky with fewer turrets.'), +(17698,'TroMag Burst Generator','EMP','UNDEFINED','76b4d67d-4854-474a-b012-3d2c1041349b','','','Manufacturer: MaxOx\nItem Type: Burst Generator\nSize: 1\nDamage Type: EMP\n\nThe TroMag from MaxOx is a well-designed and reliable EMP-focused burst generator. Its popularity has risen over the years as pilots look for alternatives to Behring’s REP-8. The TroMag boasts a faster charge time than their main competitor but has a smaller effective radius, leaving pilots to decide whether they prefer speed or size.'), +(17699,'Sawtooth \"Squall\" Combat Knife','Weapon','Knife','c9c7c287-cf9e-4eff-868a-44082bab9b61','','','Manufacturer: Kastak Arms\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nDon\'t end up on the wrong side of the Sawtooth combat knife. The blade embodies Kastak Arms\' aggressive styling and was designed to stab, slice, or saw. It features a strong tip for piercing, a straight edge for slicing, and a unique serrated edge with microblades for when you really need to rip through something. The blade is also made with a special ceramic polymer coating that enhances its strength and overall wear resistance. For the special Squall edition, a light blue color was added to the coating to make it even more visually distinct.'), +(17700,'Door Control','Door','UNDEFINED','9c9d028b-dae8-4a76-b00e-80ddd1855a7d','','',NULL), +(17701,'Corsair Hinterland Livery','Paints','UNDEFINED','ac7edfb7-a475-41d8-9403-e5d7607ba9ea','','','Style yourself to explore the far reaches of the \'verse with the Hinterland livery for the Corsair, which is sand-colored with black and grey highlights.'), +(17702,'Carryable_1H_CY_tool_manual_socket_1_c','Misc','UNDEFINED','8530beea-0cd1-47bd-aa35-cf56dea6df8e','','',NULL), +(17703,'Warden Backpack','Armor','Backpack','1f3915f0-8832-4ea8-ad9d-84b9ee59296d','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nThis hard backpack from Virgil, Ltd. makes travel easy. Whether you need a place to carry your weapons or you\'ve decided to bring some extra rations along for a long journey, this backpack was designed to rise to any occasion. The interior features a generous, closeable pocket to keep your small items from falling out of place.'), +(17704,'m_human_mannequin_base_armor_Collector_Battle','ShopDisplay','UNDEFINED','580cc90d-0545-4051-bc2d-30122f818d4d','','',NULL), +(17705,'Field Recon Suit Helmet','Armor','Helmet','7d328d9e-a8dc-4279-b973-692964eb0fe9','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nCDS’ Field Recon Suit is the perfect solution for the combat operator who wants a little extra protection without compromising any of their situational agility. EdgeCore composite plating is strategically sewn into the nano-weave suit to cover vital organs while keeping the suit flexible.'), +(17706,'ST-205 Missile Rack','MissileLauncher','MissileRack','ed5b9b2d-e271-48fa-81b2-20ef00fe6e15','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 2\nMissiles: 8xS2\n\nTo further improve the defenses of the Origin 400i, Behring built the SNT-205 \"Santoro\", which can carry and deploy eight S2 missiles.'), +(17707,'TRGT. STATUS','Seat','UNDEFINED','e4003e05-9af5-400d-bbce-15926bc446d2','','',NULL), +(17708,'Messhall_Tray_No_Cup','Misc','UNDEFINED','7de27b68-b8c0-44ef-bb11-bc338944c53a','','',NULL), +(17709,'Aslarite','Cargo','Cargo','89c06181-cc47-40cd-a874-caf94dc990c7','','',NULL), +(17710,'Arden-SL Core Rime','Armor','Torso','d8d341ba-d1e4-4253-957a-dc30e87433db','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics. It also features a toolbelt for easy access to important gear.'), +(17711,'Taranite (Raw)','Cargo','Cargo','03f10a6b-1e94-4d9b-9eda-5d9dd37b4acc','','',NULL), +(17712,'Galen Surgical Scrub Pants Primrose','Char_Clothing_Legs','UNDEFINED','215a8f06-b59d-4c5b-8b29-81a6e18dd2d7','','','Carrying Capacity: 0.4K µSCU\n\nYou can count on Code Blue Apparel to deliver professional and comfortable medical clothing. The Galen Surgical Scrub Pants feature ribbing around the knees, and are made with a special anti-bacterial fabric that\'s 99% effective while also being lightweight and wrinkle free.'), +(17713,'Microid Battle Suit Legs Lowland','Armor','Legs','6e930599-eca6-4625-b81e-7de1103af6dc','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -33 / 63 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWho\'d have thought a suit of armor could be affordable and effective? Kastak Arms\' Microid Battle Suit is a perfect entry-level armor set. Ceramic plates protect vital areas while a microweave covers the rest, allowing you to stay light, mobile and protected.'), +(17714,'fruit_alien_6_b','Misc','UNDEFINED','bd95ca2c-a242-4007-aa3f-10425a509a56','','',NULL), +(17715,'ForceFlex Undersuit Woodland Digi','Armor','Undersuit','e2bbbe3d-93fd-4b68-bd3e-9f613c8ce363','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nVirgil\'s ForceFlex is the next generation in undersuit technology. Rated for combat as well as industrial work, you can rest assured that the comboweave will keep you protected in whatever situation you put it through.'), +(17716,'fruit_alien_4_b','Misc','UNDEFINED','98ad0c1a-5a8a-4580-981c-21514774e049','','',NULL), +(17717,'fruit_alien_5_b','Misc','UNDEFINED','26ae99b1-10e2-45ed-9b20-dfab4bcbcf69','','',NULL), +(17718,'AEGS_Retaliator_Door_Screen_02','Decal','DoorPart','71ec60eb-982e-49d0-aba4-323d4dd4118b','','',NULL), +(17719,'fruit_alien_2_b','Misc','UNDEFINED','b125e543-ffec-4594-b647-66be262684e8','','',NULL), +(17720,'fruit_alien_3_b','Misc','UNDEFINED','90081907-3bda-4efa-8cea-fb414fbf235f','','',NULL), +(17721,'Manned Turret','TurretBase','MannedTurret','8868cc82-fae8-4732-abc7-fa89ce164066','','',NULL), +(17722,'MSD-442 Missile Rack','MissileLauncher','MissileRack','899a64a6-bc36-4b5b-8167-64218e376337','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 4\nMissiles: 4xS2\n\nBehring’s MSD-442 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 4 hardpoint for the reliable and effective launch of four S2 missiles.'), +(17723,'Door Control','Door','UNDEFINED','df25528e-07db-4603-9cf0-583c7f588240','','',NULL), +(17724,'Door_Ship_Sensor_Proximity_1_5x1_5x1','Sensor','DoorPart','77863779-4183-46e9-99b1-f8f994ab2273','','',NULL), +(17725,'Relay','Relay','UNDEFINED','3a890123-023d-43a4-9dd0-4d22060d2ff1','','',NULL), +(17726,'GLSN_Shiv_Thruster_Maneuver_Rear_Vent_Left','ManneuverThruster','JointThruster','8acda7fb-daee-4bb7-a10a-123104e38615','','',NULL), +(17727,'Vagabond Jacket Sleet','Char_Clothing_Torso_1','UNDEFINED','989e3b68-cdc3-40d4-880f-a20a7e0f91ae','','','Carrying Capacity: 2K µSCU \n\nWhen you need to move like your life depends on it. This lightweight layered jacket-and-poncho combination won\'t tie you up when things get tight. Finished with a hooded cowl, cross straps, and kit-webbing, the Vagabond is ready for whatever your day may have in store. The Sleet version is dyed a well-worn grey to keep you subtle, but not unsightly.'), +(17728,'Col_A_Airlock_Rooftop_Door_Hatch_Int','Door','AirlockPart','f0badc01-65d9-42a7-bd64-c174a13a0689','','',NULL), +(17729,'Tekaw Pants','Char_Clothing_Legs','UNDEFINED','a59ca72b-9230-48f9-871f-a7e897da0067','','','Carrying Capacity: 1K µSCU\n\nComfortable enough to wear all day yet designed to thrive under harsh conditions, the Tekaw pants are perfect whether you\'re on or off duty. Their stylish yet durable design includes a water-wicking coating and padded shins guards with wrappings that ensure a snug fit.'), +(17730,'sc_marine_bdu_shirt_02_01_01','Char_Clothing_Torso_1','UNDEFINED','80119c52-41f1-4b8a-9446-77f799cdc7a8','','',NULL), +(17731,'Edgewear Pants Orange','Char_Clothing_Legs','UNDEFINED','c0abd32b-a4a7-41f5-8934-b780fedec69b','','','Carrying Capacity: 4K µSCU\n\nStegman\'s Edgewear utility clothes are made from reinforced nylon weaves and lined with temperature-rated quilted technology to provide you with a little extra protection while on the jobsite. Double knees, reinforced joint pads and extra pockets add comfort and durability to this field-tested and worker-approved clothing line.'), +(17732,'AEGS_Idris_CargoGrid','CargoGrid','UNDEFINED','13a37e40-1551-41f3-8a84-9dfefae0b08e','','',NULL), +(17733,'DRAK_Corsair_Thruster_Aux_C','MainThruster','UNDEFINED','834f4392-c426-4811-93d3-0a904a5dafea','','',NULL), +(17734,'Fissure','QuantumDrive','UNDEFINED','63fba040-d2ce-40fc-92a4-1541d022e4e3','','','Item Type: Quantum Drive\nManufacturer: ArcCorp\nSize: 3\nGrade: C\nClass: Civilian\n\nSpool up the Fissure and speed through space with the component ArcCorp claims has successfully completed billions of quantum travels over the centuries.'), +(17735,'Death\'s Head Helmet','Armor','Helmet','297a6522-c957-4e52-9040-aa3049ebcd7a','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nBuilt using high quality scavenge with a molded faceplate, the Death\'s Head is built to take an absolute beating. Visor is AR crosshair compatible.'), +(17736,'Door Control','Door','UNDEFINED','ab99c564-cff0-4174-8d29-336d5c5a82e6','','',NULL), +(17737,'Mixed Mining','Cargo','Cargo','dd58aff2-ca23-4bd7-85a5-1280e2b2dd15','','',NULL), +(17738,'INTK_CNOU_Mustang_Omega','FuelIntake','Fuel','ea760382-5825-4c02-996a-c49635d055cf','','',NULL), +(17739,'Quantainium (Raw)','Cargo','Cargo','8af08ef3-6ba3-4719-8bbb-224bb1095d5d','','',NULL), +(17740,'Agricium (Ore)','Cargo','Cargo','e489259c-3441-49b3-9931-c86ef5c10e63','','',NULL), +(17741,'Sol-III Helmet Aviator','Armor','Helmet','8637f2bc-30aa-493e-9880-fa2cc3810d66','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nInspired by the original flight suits worn by Earth\'s Air Force, this replica stays true to the historical design while incorporating modern comforts. Featuring a period appropriate, tinted half-visor, this helmet reproduction is not airtight.\n\nThe Aviator edition is primarily green-beige with light green accents.'), +(17742,'Door','Door','UNDEFINED','18dcf328-2d82-43d6-8549-f541ba28e483','','',NULL), +(17743,'AEGS_Sabre_Raven_SCItem_Dashboard_Pilot','SeatDashboard','UNDEFINED','378ef18b-c1b7-4355-8103-d53257350dca','','',NULL), +(17744,'Seat','SeatAccess','UNDEFINED','9ae3ff40-e181-4332-ae85-39f9ebe7be97','','',NULL), +(17745,'Morozov-CH Backpack','Armor','Backpack','c6ce6063-0d43-470a-aef3-49e65289a53e','','','Item Type: Heavy Backpack\nCarrying Capacity: 150K µSCU\nCore Compatibility: Heavy\n\nComfortably carry vital gear with the Morozov-CH backpack. This softshell bag is made with an advanced duraweave that\'s lightweight yet ready for battlefield action. It also features several easy to access pockets and a plethora of straps to keep supplies secure and tight to your back.'), +(17746,'Door Control','Door','UNDEFINED','9a9997cc-5328-4d9d-955a-afb6cbec05e2','','',NULL), +(17747,'Bello T-Shirt Navy','Char_Clothing_Torso_0','UNDEFINED','d52dff9c-70ff-40e7-a640-0f559c8f47be','','','Show your support with this special t-shirt featuring the official Navy logo. City Lights will donate a portion of every sale to Operation Solace\'s Vega Relief Fund.'), +(17748,'Odyssey Helmet Tan','Armor','Helmet','fca3448d-c26c-4f09-a62e-5c4fc521b042','','','Item Type: Flight Helmet\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nRSI\'s Odyssey helmet is so light and unobtrusive, you\'ll almost forget you\'re wearing it. The durable impact-resistant carbon fiber construction with shock-absorbing foam inserts and a single piece molded laminate visor that provides maximum field of view horizontally and vertically.'), +(17749,'Talen T-Shirt','Char_Clothing_Torso_0','UNDEFINED','12a6c897-6020-4fc8-a820-71f1b69b9601','','','Human-made Talen missiles pack an impressively big boom! This Banu made t-shirt salutes their engineering excellence.'), +(17750,'Door','Door','UNDEFINED','1f21fb03-9243-42a8-8be4-9d579e891801','','',NULL), +(17751,'Drivetrain','WheeledController','UNDEFINED','499394eb-9bac-49d2-b836-a8afe9da5128','','',NULL), +(17752,'INTK_AEGS_Hammerhead','FuelIntake','Fuel','a6e4f520-2268-4269-a61f-40df2d17a0a7','','',NULL), +(17753,'Cyclone Turbocharged Livery','Paints','UNDEFINED','688ae98a-4aed-4697-8bad-0b0e2b18aee7','','','The Turbocharged is a distinct, purple racing livery for the Cylcone that will make you stand out from the rest of the field.'), +(17754,'Antium Arms Moss Camo','Armor','Arms','15074483-7839-4581-a257-e8a367bf81b2','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nIf you\'re in need of top-of-the-line protection enhanced with bleeding-edge technology, look no further than the Antium Armor Set. Developed by the award-winning engineering team at Quirinus Tech, the suit is fully enclosed to protect its wearer against hazardous environments and the dangers of the battlefield. Instead of a traditional laminate faceplate, the helmet utilizes a suite of sensors to create an uncompromised field of vision.'), +(17755,'Avenger Warlock PHB Flight Blade','FlightController','UNDEFINED','0360d3ac-2ad8-4120-931c-000bfff5e28a','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Aegis Avenger Warlock with the PHB Flight Blade from Broad & Rabiee. By re-allocating forward thrust resources, you can expect your ship deliver increased precision handling during tight maneuvers.'), +(17756,'Whamburger','Food','Junk','3402748e-769b-4999-8098-59330754c34f','','','NDR: 38\nEffects: Dehydrating, Hyper-Metabolic\n\nThe original burger that put Whammer\'s on the starmap. All Whams come with crisp greens, tomatoes, piccamix, and Crave Sauce.'), +(17757,'Seanut','Food','Consumable','032829bc-5eab-4fd5-81cd-95fa8e93eaef','','','NDR: 17\nHEI: 07\nEffects: None\n\nEasy to grow and care for, these tubular sea creatures have become a popular food in the outer reaches of systems. When eaten raw, seanuts have a chewy and crisp texture with a bright briny and nutty flavor.'), +(17758,'Carryable_TBO_FL_24SCU_Commodity_ProcessedGoods_ElectronicsEquipment','Cargo','Cargo','731968b4-e1c3-48f9-86b9-f875431aca6e','','',NULL), +(17759,'DRAK_Cutter_CargoGrid_2Stack','CargoGrid','UNDEFINED','201538a9-ec8c-47af-9f28-5cd460bb8bb6','','',NULL), +(17760,'RS1 Odysey Spacesuits','Cargo','Small','166bbd92-b7a6-4bf3-8b6c-a9a3d9f17492','','','These imitation RSI Odyssey undersuits are cheaply made counterfeits that are hazardous to use.'), +(17761,'Hull C Dusk Livery','Paints','UNDEFINED','5674451b-2889-48b8-9432-be5b29513196','','','For the long haul cargo captains who prefer to make a subtle statement when it comes to their freighter, MISC offers the distinguished Hull C Dusk Livery. A complete grey hull highlights the ship\'s classic silhouette with tasteful gold trim.'), +(17762,'Seat','Usable','UNDEFINED','c35a63a7-3cbf-443e-b06b-3f55457d6c72','','',NULL), +(17763,'AEGS_Avenger_CargoGrid_Titan','CargoGrid','UNDEFINED','da6a9813-56c3-4a82-956e-77fbdd76589f','','',NULL), +(17764,'Artimex Arms','Armor','Arms','08e03240-d9e7-4242-b76e-2b85296ba2d9','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.'), +(17765,'Seat','Usable','UNDEFINED','40419290-7d7d-4403-8d6e-8475789d32f0','','',NULL), +(17766,'Lynx Arms Dark Green','Armor','Arms','7729b33e-1167-4a10-b70c-45b9e7774f41','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(17767,'Crusader White Bishop','Misc','UNDEFINED','13a84550-dd2f-487e-a2b8-8e58b03f3acb','','','Included with the Mercury Star Runner from Crusader Industries, this minimalist white chess piece has a marble base.'), +(17768,'Hornet F7CR Ship Armor','Armor','Medium','fd9e9427-c4c3-46cc-912a-785bc1553300','','','Hornet F7CR Ship Armor'), +(17769,'kiosk_portolisar_2_a','Display','UNDEFINED','2ffb82e8-b956-4f92-8aef-a941817c5b4c','','',NULL), +(17770,'ARGO_CSV_CargoGrid_Main','CargoGrid','UNDEFINED','ff3d2a64-2497-4a76-9cfe-d8415b062a78','','',NULL), +(17771,'ESPR_Prowler_Utility_CargoGrid_Main','CargoGrid','UNDEFINED','3bdfe5cc-df33-43c6-bd0e-3ea77b28f470','','',NULL), +(17772,'Chiron Core Samaritan','Armor','Torso','2fc161fb-75e5-4e87-91d1-83500b07bf22','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -32 / 62 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\nBackpacks: Light\n\nBe the first on the scene with the Chiron armor. Designed to provide the essential protection that combat medics need, the armor features ultra-lightweight paneling to keep the wearer quick on their feet without compromising on safety. Crucial, high-impact sections have been reinforced with raised carbon plating on top of a highly durable polyfiber for maximum flexibility.\n\nThe Samaritan edition was styled for first responders to be highly visible. The red, white, and grey color scheme features a white medical cross symbol across the chest and helmet.'), +(17773,'Osoian Hides','Cargo','Small','035dc245-8f0d-443b-8cee-92c56d8dd663','','','The tanned skins from Osoians, a Fair Chance protected species from Oso II.'), +(17774,'facial_hair_043','Char_Head_Beard','UNDEFINED','d508e616-fa06-4ae2-81d6-d3fdea084468','','',NULL), +(17775,'Dust Devil Core Epoque','Armor','Torso','ef9d3fe6-e567-4679-88bb-10d3e1fc660f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -85 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nReinforced alloys are carefully layered to recreate the appearance of warriors from Humanity\'s past to create an armor that\'s intimidating and functional. The cape adds an elegant finishing touch.\n\nThe Epoque edition features a navy and black coloring, finished with baroque gold detailing.'), +(17776,'Vulture Deck the Hull Livery','Paints','UNDEFINED','9713a915-4920-4298-8f2e-903f06d6901f','','','Express your holiday spirit with the Deck the Hull livery, which uses the traditional Luminalia colors of green and red to celebrate the popular Banu festival that\'s become beloved by Humans.'), +(17777,'Razor Polar Livery','Paints','UNDEFINED','ece6876b-2453-4103-bc2c-6fc59b1858d5','','','Modify your Razor with this white and grey livery specifically designed for the 2951 IAE.'), +(17778,'Carryable_1H_kitchenware_fryingpan_a','Misc','UNDEFINED','481f0a16-9294-47ae-af53-23e82fbb1a23','','',NULL), +(17779,'Joker Defcon - Noise Launcher','WeaponDefensive','CountermeasureLauncher','4d73821c-ca8a-4fc4-bf7c-ef90e6d3b9b1','','','Joker Defcon - Noise Launcher'), +(17780,'ARMR_AEGS_Vanguard_Harbinger','Armor','Medium','e4e2ad33-008b-42b4-b790-be63d6e2f0f1','','',NULL), +(17781,'Door Control','Door','UNDEFINED','d209938a-ee28-48eb-8c8c-be495c4f48a8','','',NULL), +(17782,'SafeCore Boots Shuttle Gray','Char_Clothing_Feet','UNDEFINED','1d6a9e0b-c5cc-48a2-ae18-cd2317ced5b0','','','The SafeCore boots are a soft-shelled offering from Grindstone intended to provide more flexibility while traversing in adverse conditions.'), +(17783,'Weapon_Rack_ARGO_ATLS_GEO','Usable','UNDEFINED','053ec62a-2472-447d-9737-263fac538d37','','',NULL), +(17784,'Ermer Family Farms Lunes Ice Cream','Food','Junk','9a3fab17-5efc-40c5-ac50-f4c752c0a7bf','','','NDR: 10\nEffects: Energizing, Hyper-Metabolic\n\nThis premium 100% real dairy ice cream blended with all natural Lunes fruit puree is handcrafted by the skilled artisans at Ermer Family Farms.'), +(17785,'ADP Legs Grey','Armor','Legs','f26950df-7f53-4afa-9575-397543dcbfbd','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(17786,'Laranite (Raw)','Cargo','Cargo','3822d6fb-d38a-4b28-9577-18d6b3f8d484','','',NULL), +(17787,'Railing_Straight_4m_Lowtech_Hangar_A','Usable','UNDEFINED','3a803364-9548-4915-bd8c-3800504daa66','','',NULL), +(17788,'400i Calacatta Livery','Paints','UNDEFINED','ba6d5257-39c7-480a-878b-e5ca64d0dc3c','','','Balancing black and white, the Calacatta livery for the 400i accentuates the unique shape of the ship.'), +(17789,'Seat','Usable','UNDEFINED','964aadef-c627-4a71-99a8-7e59721b8b1c','','',NULL), +(17790,'Vanquisher X-EM Torpedo','Missile','Torpedo','c9c196a4-f0ec-4400-912f-4682b87f6dd4','','','Manufacturer: Talon\nTracking Signal: Electromagnetic\nSize: 10\n\nDesigned by Talon, the Vanquisher heat seeking strike torpedo delivers a heavy payload sure to serve as a deterrent from any further hostile actions.'), +(17791,'MedGel','Cargo','Cargo','a4b3ee94-285a-4150-a842-9ea1f9cace28','','',NULL), +(17792,'ForceFlex Undersuit Arctic Camo','Armor','Undersuit','f5f9880f-c9a3-4450-a052-dc970e011fde','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nVirgil\'s ForceFlex is the next generation in undersuit technology. Rated for combat as well as industrial work, you can rest assured that the comboweave will keep you protected in whatever situation you put it through.'), +(17793,'GAMA_Syulen_Thruster_Mav','ManneuverThruster','FlexThruster','e8f861ca-68bd-4ece-a415-52fe2cef56c2','','',NULL), +(17794,'Boomtube Rocket Launcher','Weapon','Large','70f30988-ff59-4c12-93b4-449b887ac7ca','','','Manufacturer: Unknown\nItem Type: Launcher\nClass: Rocket\n \nMagazine Size: 1\nRate Of Fire: 20 rpm\nEffective Range: 100 m\n\nWho\'s got time to aim? Once you got enough room to clear the arming distance, just point the Boomtube launcher at whatever you don\'t like, squeeze the trigger, and watch the triple-grenade rocket thingy take care of the rest. Sometimes simple is best.'), +(17795,'Corbel Helmet Patina','Armor','Helmet','ef4fdab4-4713-4518-bf3d-8043661be18e','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nOriginally designed as a strength enhancement suit to give factory workers better lifting power, CDS found wider application in utilizing its defensive capabilities. It\'s triple-enforced armor plating provides extreme physical protection, with deliberate placing of materials to protect the most vulnerable parts of the body. A series of pneumatic levers offer increased flexibility in the joints, alleviating pressure and weight in key areas to create an accessible and highly protective armor despite its heavy weight.\n\nThe Patina edition offers a grounded look combining soft teal with bronze.'), +(17796,'Argo MPUV Ship Armor','Armor','Medium','fa9464f6-9168-4abe-8db0-cde22e3f4b68','','','Argo MPUV Ship Armor'), +(17797,'Seat','SeatAccess','UNDEFINED','4bc44f2e-fb20-4402-a20b-b46dfad4e956','','',NULL), +(17798,'Ridgewalker Boots (Modified)','Char_Clothing_Feet','UNDEFINED','41c0c5fc-6d1e-43bf-b921-5b737eb93ce7','','','This version of Octagon\'s Ridgewalker boots has been modified from its original form. Functional style meets modern comfort with the Ridgewalker boots. Made with a lightweight yet durable synthetic leather, these boots feature a custom cushioned footbed and total traction soles that will keep you on your feet for hours. Fit for adventure or fashion the Ridgewalker boots are perfect for any occasion.'), +(17799,'Wan Shoes','Char_Clothing_Feet','UNDEFINED','45409060-cb8b-41fd-aed5-65c958724bfd','','','The Wan are synthetic leather loafers that perfectly balance a classic but modern style. Equally appropriate for work or casual wear, OpalSky designed these supremely comfortable slip-ons with an anti-scuff coating so there\'s no need for a polish and shine to keep them looking pristine.'), +(17800,'Argus Helmet Black/Silver/Yellow','Armor','Helmet','64e73b36-094d-4a12-88a4-a79bad548cb7','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s Argus helmet utilizes advanced multi-layered composite construction to provide incredible protection from weapon fire as well as environmental hazards. The tinted visor offers a wide field-of-view to improve situational awareness and unrestricted movement.'), +(17801,'C54 SMG Magazine (50 cap)','WeaponAttachment','Magazine','3f4a69ef-0bcf-4cd6-a272-782f6641c242','','','Item Type: Magazine \nCapacity: 50\n\nThis magazine for the C54 SMG holds fifty 10mm rounds.'), +(17802,'Seat','Usable','UNDEFINED','456d2457-19e2-4783-9fd5-8fe655c4e816','','',NULL), +(17803,'Highball Glass','Drink','UNDEFINED','46f6e62d-0b92-493a-8441-86e73637a74b','','','A tall and narrow drinking vessel made from tempered glassware.'), +(17804,'GCD-Army Arms','Armor','Arms','136c3ccb-627c-4a10-a367-817cbdad33e5','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nIn honor of the soldiers who protect the Empire, CDS has crafted this limited-edition armor that proudly displays the seal of the UEE Army. Its shell is composed of a durable composite on the outside and a soft core on the inside, designed to absorb the types of impacts associated with on-the-ground combat. The matching helmet features a UV-blocking faceplate that protects the wearer\'s eye sight as they fight on the front lines under strange suns.'), +(17805,'CNOU_Mustang_Gamma_Thruster_Mav_Fixed_01_Up','ManneuverThruster','FixedThruster','f9e6b97d-4114-42cb-b25f-2d22ff40decc','','',NULL), +(17806,'display_pistols_02x01x01_4Ports','ShopDisplay','UNDEFINED','bea7c8bf-12d9-4ee0-8fa0-dfc499e30b9d','','',NULL), +(17807,'Revenant Tree Pollen','Cargo','Cargo','aecf8e9f-c6db-4029-b659-27e0268b81de','','',NULL), +(17808,'Diluthermex','Cargo','Cargo','e9d720f8-c402-4401-bfeb-e177d819fc86','','','An extremely heat resistant epoxy often used in the mounting and repair of ship thrusters. It is considered very difficult to transport in its uncured state as it becomes explosively unstable when exposed to Chan-Eisen fields during quantum travel. Specialized containers must be used to safely transport the epoxy long distances. Once set and cured, the Diluthermex is no longer reactive.'), +(17809,'FarSight \"Darkwave\" (8x Telescopic)','WeaponAttachment','IronSight','ec7eb40a-d88c-44f8-8f3b-0f20025adbd2','','','Manufacturer: VOLT\nType: Telescopic\nAttachment Point: Optic\nMagnification: 8x\nAim Time: +0%\nSize: 3\n\nDesigned for long distance precision shooting, the FarSight is carefully crafted to provide unparalleled fidelity of targets. VOLT\'s TruePicture lens technology provides high levels of light transmission, ensuring easy target acquisition and daylight illumination so you always get your mark.\n\nThis Darkwave edition draws attention to the sharp contours and edges of the rifle\'s design.'), +(17810,'Bottle','Bottle','Default','794ebe48-6c74-455e-b4ca-760af96ba05a','','','Bottle'), +(17811,'mod_stand_hotdog_1_a','ShopDisplay','Default','4e0a068c-3714-46f4-a609-dfc986ec73f0','','',NULL), +(17812,'Quantum Fuel Tank','QuantumFuelTank','QuantumFuel','d4ff8c75-4169-4056-abaf-1f433522cdfe','','','@item_Desc_QTNK_Default'), +(17813,'ADP Core Dark Green','Armor','Torso','1caee206-2648-4fd5-89d8-7887d3f92e92','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(17814,'Table_2_Seat_ANVl_Paladin','Usable','UNDEFINED','04d722f8-ae43-4730-b8f7-04e1acd41153','','',NULL), +(17815,'MISC_Starlancer_CargoGrid_Max','CargoGrid','UNDEFINED','f633aa5a-7b50-44b0-a752-5251e06ec3f5','','',NULL), +(17816,'G-2 Helmet Red','Armor','Helmet','ca6ecaf1-c4ef-4324-8584-9d16e54f9d71','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe G-2 provides protection and an uninhibited field of view without being bulky. Clark Defense Systems designed the helmet to withstand a wide variety of impact types without compromising its integrity. Visor is AR crosshair compatible.'), +(17817,'Weapon Rack','Usable','UNDEFINED','e8fa39f9-2078-4836-b87d-ed50941b5253','','',NULL), +(17818,'Odyssey II Undersuit Black/Blue','Armor','Undersuit','03d7cdf5-dcb5-4283-8c3b-6097d1480cf9','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe latest generation of RSI\'s classic Odyssey undersuit features a new rugged design capable of withstanding the harshest of conditions in space or planetside. Built using the latest microweave technology, the Odyssey II undersuit provides hours of comfort in locations that are anything but comfortable.'), +(17819,'ORC-mkV Legs Covalex Edition','Armor','Legs','85f3bb3f-4902-4427-8529-cc1cb82a2e0e','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 4.0 µSCU\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement. The Covalex Edition was made specifically for the company.'), +(17820,'Door Control','Door','UNDEFINED','5bb18ad2-0298-4fe4-838f-6b09f06627cb','','',NULL), +(17821,'DockingTube_Fuel_Ports_CNOU_Mustang','DockingCollar','UNDEFINED','5e90ee3b-6f6d-4cde-8cc2-fab3ca4d1b69','','',NULL), +(17822,'Door Control','Door','UNDEFINED','0dfed0de-242f-46cf-a57b-83edcc64c72a','','',NULL), +(17823,'Carryable_1H_CY_Flashlight_Engineer','Misc','UNDEFINED','99a25d5d-37d7-417b-adda-ae09a4cf7a87','','',NULL), +(17824,'Ivers Boots White','Char_Clothing_Feet','UNDEFINED','33d41ef5-a992-4644-b6b2-761123fc6073','','','OpalSky imbued these ankle boots with their iconic panache. The Ivers are thoroughly fashionable but not flashy, and fitted with special KindSole insoles that provide exceptional comfort.'), +(17825,'Weapon_Rack_1_NONE_Special_Ballistic_Uncommon_001','Usable','UNDEFINED','aa71fd0b-4968-426d-a5c8-e3b9a2296e89','','',NULL), +(17826,'AEGS_Javelin_SeatAccess_Rear_Right_Blocked','SeatAccess','UNDEFINED','d2ab885c-ba07-4949-996e-ea086eb83841','','',NULL), +(17827,'MISC_Razor_EX_Thruster_Vertical_Bottom','ManneuverThruster','FixedThruster','d4d8184b-3518-4a78-aba5-956fe20be6f1','','',NULL), +(17828,'SHIELDS','ShieldController','UNDEFINED','ddae5006-6bcd-4cea-9ea9-65cfcd94de85','','',NULL), +(17829,'CRUS_Starfighter_Thruster_Main_Left','MainThruster','FixedThruster','9d55ee97-9496-45b2-a5a7-41fd76dee435','','',NULL), +(17830,'Deo Shirt Green','Char_Clothing_Torso_0','UNDEFINED','e0e0b7d0-527f-4f2e-b85b-9f6ee791d323','','','Fiore\'s Deo is a slim cut work shirt that\'s as practical as it is timeless. Featuring a high collar and metal neck clasp, the Deo has been a mainstay in business attire.\n\nWomen\'s sizes currently out of stock.'), +(17831,'JOKR_DistortionCannon_Ventilation_S2','WeaponAttachment','Ventilation','8648f277-ce62-43fb-bac2-ef5c0aff18cb','','',NULL), +(17832,'Radar_Display_MISC_Starfarer','Display','UNDEFINED','be9ee994-6b2b-40b6-b1c9-8f6010062ce3','','',NULL), +(17833,'Relay','Relay','UNDEFINED','609b087d-bdfe-401d-b9fe-526af4d52d09','','',NULL), +(17834,'Bed_Mattress_colon_1_a','Seat','UNDEFINED','0ddd5deb-db86-444e-983d-f89898d25719','','',NULL), +(17835,'Mining Arm','ToolArm','UNDEFINED','b2b3b8f7-9e46-46fd-9318-d65223bcdabc','','',NULL), +(17836,'ArmorStand_CLDA_hazmat_Red','Misc','UNDEFINED','25996da3-85fe-4609-84b8-b81f684fd717','','',NULL), +(17837,'DockingTube_Fuel_Ports_ARGO_SRV','DockingCollar','UNDEFINED','f88e7124-5b9b-4eaa-a271-8348aa13aae7','','',NULL), +(17838,'Cumulus Jacket Red','Char_Clothing_Torso_1','UNDEFINED','00f22d52-208c-471d-9211-da281490498b','','','Temp. Rating: -35 / 10 °C\nCarrying Capacity: 5K µSCU\n\nBe bold and brave the cold in frigid conditions up to -35 °C with the Cumulus\'s special thermal lining. An oversized, insulated hood provides additional protection around the head, while the distinct quilted torso stops snow, ice, and wind from seeping in, ensuring the wearer remains warm and dry.'), +(17839,'Baler Salvage Head','SalvageHead','UNDEFINED','f8aabcb1-83b9-4b08-8846-acc77082cd4d','','','Manufacturer: Greycat Industrial\nItem Type: Salvage Head\nSize: 2\n\nModule Capacity: 3\n\nGreycat Industrial has spent centuries refining the Baler salvage head into its current form that\'s both durable and precise even under the harshest of conditions. Designed to swap between three modules, the Baler will be ready to rip apart whatever hull you find. Experience why it\'s the standard salvage head for countless personal and large-scale industrial operations across the universe.'), +(17840,'PC2 Dual S4 Mount','Turret','NoseMounted','6585fd71-0e31-4018-917c-7fec1ab1c1d1','','','PC2 Dual S4 Mount'), +(17841,'Elespo','Cargo','Cargo','cb959de7-1c14-49a8-9796-f1bbe7ae38df','','',NULL), +(17842,'Door Control','Door','UNDEFINED','e69671f1-90b4-4c0a-b07e-746f001097bc','','',NULL), +(17843,'Carryable_1H_CY_drug_stomachmedicine_2_c','Misc','UNDEFINED','586e8da1-c1b0-43a9-9149-747ca277b130','','',NULL), +(17844,'Door Control','Door','UNDEFINED','968f8020-f7c8-48fe-af8d-781efedf3b53','','',NULL), +(17845,'TrueDef-Pro Legs Black/Silver/Blue','Armor','Legs','31818b82-732f-4226-93e0-ad12f1bf8885','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.\"'), +(17846,'LeMarque Pants Blue','Char_Clothing_Legs','UNDEFINED','6e85856e-02dc-47e5-8db0-1a5bad822081','','','Carrying Capacity: 0.5K µSCU\n\nClassic cuts never go out of style. A staple of any wardrobe, Derion\'s LeMarque are built for work or play and feature microseam pleats and wrinkle-free material that will guarantee that you\'ll get years out of this classic.\n\nWomen\'s sizes currently out of stock.'), +(17847,'utensil_tray_1_food_a_with_loadout_chowlinefood','Misc','UNDEFINED','733f5ab6-248d-4ec1-b97e-bb93d2e31260','','',NULL), +(17848,'Venture Legs Yellow','Armor','Legs','d72c6cee-22a0-4fbb-9323-613eabf0eeaf','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -41 / 71 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(17849,'stand_shop_small_c','ShopDisplay','UNDEFINED','ef9bdc84-1983-454d-ac6a-9fc65842ee55','','',NULL), +(17850,'GSX-HP','ExternalFuelTank','UNDEFINED','4007eb09-56cb-4dc6-b75f-753f33d14b8a','','','Manufacturer: Stor*All\nItem Type: Fuel Pod\nFlow Rate: 0.9 SCU/s\nCapacity: 70 SCU\n\nBy using a triple reinforced outer plating rated far above industry standards, the GSX-HP fuel pod from Stor*All can handle higher pressures than your typical storage options. This allows you to transport more fuel and improves the safe flow rates of whichever nozzle you use.'), +(17851,'XIAN_Nox_Thruster_Retro','ManneuverThruster','FixedThruster','f74ddfe2-ffee-4e6a-b549-59c27d733053','','',NULL), +(17852,'Door_Ship_Sensor_Proximity_SpawnCloset','Sensor','DoorPart','bd3106ef-862c-4f0a-8bb2-03d73d381911','','',NULL), +(17853,'Ketchum Beanie Aqua','Char_Clothing_Hat','UNDEFINED','163e5edf-fc57-4ee7-a90a-6a93864c005b','','','Complete your cool-weather wardrobe with the classic Ketchum beanie from Alejo Brothers.'), +(17854,'TRGT. STATUS','Seat','UNDEFINED','8a0a4ce7-a563-40b6-9ed9-c0eb372b532d','','',NULL), +(17855,'Internal Tank','FuelTank','Fuel','3ce1932c-13b3-4469-8dc9-8445245142e9','','',NULL), +(17856,'RSI_Hermes_LightCap_Left','AttachedPart','UNDEFINED','44199a60-fb54-4707-9358-795fe5676959','','',NULL), +(17857,'Maintenance_Workzone_NotDamaged','Usable','UNDEFINED','d1a28b09-a05b-49d2-a993-4f4acea0dc3e','','',NULL), +(17858,'VNCL_Glaive_Thruster_Aux_Joint','ManneuverThruster','JointThruster','950db1f1-4d3b-47ec-88e8-568adfba4909','','',NULL), +(17859,'RSI_Bengal_Thruster_Aux','MainThruster','JointThruster','17ad6545-60eb-4031-80ee-6bfbc0f99538','','',NULL), +(17860,'Seat','Usable','UNDEFINED','6ffc1765-082d-45f3-bd11-004f1162b57d','','',NULL), +(17861,'C8X Pisces PHB Flight Blade','FlightController','UNDEFINED','e5d0837a-2aac-4fbe-96c1-ff33d336b0b5','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Anvil C8X Pisces Expedition with the PHB Flight Blade from Broad & Rabiee. By re-allocating forward thrust resources, you can expect your ship deliver increased precision handling during tight maneuvers.'), +(17862,'tool_tester_1_b','Misc','UNDEFINED','74aec263-6ded-44f4-aa6d-84c8805efacf','','',NULL), +(17863,'CF-667 Mammoth Repeater','Weapon','Gun','3bb64389-e75d-463e-a73b-115bf132667e','','','Manufacturer: Klaus & Werner\nItem Type: Laser Repeater\nSize: 6\n\nThis beast of a laser repeater from Klaus & Werner features three massive barrels that warn any who spot a ship bearing the CF-667 that they may want to think again before engaging.'), +(17864,'Ready-Up Helmet Tan','Char_Clothing_Hat','UNDEFINED','c3b077b9-3166-411d-921e-5bd72cb8c106','','','The Ready-Up is a dependable, affordable softshell helmet alternative. Built from space-age plastic, the Ready-Up provides a vacuum-ready seal to keep you breathing for longer.'), +(17865,'Tripledown \"Heatwave\" Pistol','Weapon','Small','eb2d2091-6f53-4f7c-b8d7-ebfae4e78c15','','','Manufacturer: Unknown\nItem Type: Pistol\nClass: Ballistic\n \nMagazine Size: 12\nRate Of Fire: 185 rpm\nEffective Range: 10 m\n \nAttachments: Optics (S1), Barrel (NA), Underbarrel (S1)\n\nFiring three shotgun shells with each pull of the trigger thanks to it\'s triple-barrel construction, the bolt-action Tripledown pistol is ready to blast its way through anything from the smallest disagreements to massive dustups.\n\nThe Heatwave edition is primarily black with glowing red highlights.'), +(17866,'Bedrock Boots (Modified)','Char_Clothing_Feet','UNDEFINED','603c4ea9-fe5b-4ca3-b515-55084d7ffad1','','','This version of Grindstone\'s Bedrock boots has been modified from its original form. This steel-toe workboot from Grindstone features SureFire grip technology, giving you firm traction even on slip, oil and abrasion surfaces.'), +(17867,'Bed_Mattress_Idris_AEGS','Seat','UNDEFINED','93d74677-6440-4d4d-9308-27954187179a','','',NULL), +(17868,'IAE 2951 T-Shirt White','Char_Clothing_Torso_0','UNDEFINED','71bdf45a-a250-4417-85c0-634185808d6a','','','Commemorate the UEE\'s ultimate ship celebration with this white ringer t-shirt that features a large version of the 2951 logo on the front and a smaller version across the back.'), +(17869,'Rockridge Boots Cloudcover','Char_Clothing_Feet','UNDEFINED','10f43160-1c66-410c-922c-78a186655208','','','With the Rockridge, Grindstone has created a comfortable boot with a wide laced collar that allows wearers to adjust the fit to their level of comfort while still keeping the elements out.'), +(17870,'TRGT. STATUS','Seat','UNDEFINED','249fc20f-b458-436d-a5b5-39933ad8431d','','',NULL), +(17871,'Lula\'s Pitambu Fruit Juice','Drink','Bottle','a1131a04-e04f-44d1-a697-b0c216a607fa','','','HEI: 35\nNDR: 14\nEffects: Immune Boosting\n\nExperience the flavor of freshly picked whenever you want with Lula\'s Pitambu Juice.'), +(17872,'Decari Pod','Cargo','Cargo','528a07d5-ff1c-4c4c-acf4-09e235a66349','','',NULL), +(17873,'game_chess_1_a','Misc','UNDEFINED','647d2524-20a8-4b8e-8ad0-44c5521c5264','','',NULL), +(17874,'Lynx Arms Cold Steel','Armor','Arms','41314061-7d4d-4a40-b642-d4736a32565a','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(17875,'Lynx Core White','Armor','Torso','b8f41207-e945-4be7-9c3b-7097ba9f7fb1','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: Light\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(17876,'Seat','SeatAccess','UNDEFINED','5a26b601-126d-455b-8d5e-adf9bce5e50d','','',NULL), +(17877,'ORC-mkV Arms Sienna','Armor','Arms','61048224-f5c9-4c6f-94d2-38cd39e086da','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement.'), +(17878,'AEGS_Retaliator_Thruster_Mav_Fixed_Bottom','ManneuverThruster','FixedThruster','ba372547-d2c3-4eb0-aee0-9fd176a9719e','','',NULL), +(17879,'IndVest Jacket White','Char_Clothing_Torso_1','UNDEFINED','64f14f42-63af-48b0-b5ae-8e5caf8e2122','','','Carrying Capacity: 5K µSCU\n\nKeep your tools within easy reach with Stegman\'s IndVest. Made from industrial strength materials, this is a rare jacket that\'s both stylish and sensible.'), +(17880,'Turret','Turret','MissileTurret','46034ae0-90fa-4523-8672-faa631ba0fe1','','','Remote Turret'), +(17881,'Optimum Module','MiningModifier','Gun','688d8f8b-b3ca-4f5c-acc5-f71dfaf2f5bd','','','Manufacturer: Greycat Industrial\nItem Type: Mining Module (Active)\n\nLaser Instability: -10%\nCatastrophic Charge Rate: -80%\n\nMining Laser Power: 85%\n\nDuration: 60 seconds\nUses: 5\n\nThe Optimum makes mining safer by improving laser stability and dramatically decreasing the catastrophic charge rate. To achieve this increased safety, the module reduces the overall power of the mining laser.'), +(17882,'ARMR_RSI_Salvation','Armor','Medium','9df302fe-4cb9-4de6-9b1e-649f532c891a','','',NULL), +(17883,'Stirling Exploration Suit Chroma Edition','Armor','Undersuit','270bbd9c-71c3-46f7-b1ad-c5f97b4002e5','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nDesigned to withstand inhospitable environments, the Stirling Exploration Suit provides a base level of protection from environmental hazards including radiation. Combining Caldera\'s advanced insulation fabrics with sophisticated polymers, the Stirling is able to safeguard the wearer whilst minimizing disruption to movement. Additionally, a self-cleaning system automatically activates after radiation exposure to expunge dangerous excess down to nominal levels. The Chroma Edition features a vibrant metallic red with against grey with black highlights.'), +(17884,'Door Control','Door','UNDEFINED','5f8f802d-3aad-4393-bf8b-a618312927c2','','',NULL), +(17885,'INTK_MISC_Prospector','FuelIntake','Fuel','81d18e17-1778-41d3-a7a9-82317b0541ef','','',NULL), +(17886,'Manned Turret','TurretBase','MannedTurret','106ce33f-0838-448e-b455-66806866c62c','','',NULL), +(17887,'Kino Shoes Grey','Char_Clothing_Feet','UNDEFINED','353aeb58-30bc-42ee-9b36-066ad88153ef','','','These two-tone slip-on shoes are comfortable enough for casual wear, but stylish enough for the workplace.'), +(17888,'SRV Overcast Livery','Paints','UNDEFINED','3d48eb3c-0d9c-43bd-84f4-e8d2f35bbd49','','','Have your SRV looking good on recovery operations with the Overcast livery, which is white with black highlights.'), +(17889,'Savrilium (Ore)','Cargo','Cargo','d1e63ab5-399e-4e9f-aa38-b066283253fd','','',NULL), +(17890,'Access','SeatAccess','UNDEFINED','7ff3da97-a52a-45b7-894e-d02b86102dec','','',NULL), +(17891,'display_wall_centermass_4port','ShopDisplay','Default','fd69e5ad-4c08-4414-92c2-47cddad49b2c','','',NULL), +(17892,'Controller_Salvage_DRAK_Golem_OX','SalvageController','UNDEFINED','80c67de8-8b06-45ed-b393-7200a4fce455','','',NULL), +(17893,'ForceFlex Undersuit Pink Camo','Armor','Undersuit','df59e838-4871-485e-9fc8-f787f38d3b5f','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nVirgil\'s ForceFlex is the next generation in undersuit technology. Rated for combat as well as industrial work, you can rest assured that the comboweave will keep you protected in whatever situation you put it through.'), +(17894,'Personal Care Product','Misc','UNDEFINED','8352efea-ea3a-4d88-9a38-bafe1b25db78','','',NULL), +(17895,'Vehicle_Screen_MFD_Holographic','Display','UNDEFINED','34879b2e-8e05-427c-a81c-876aad2cc155','','',NULL), +(17896,'H_Dashboard_Projector_HUD_RSI_Zeus_CP_R','Display','UNDEFINED','d63f731c-ce69-4647-9079-b52e242bd875','','',NULL), +(17897,'Sabre Raven Ship Armor','Armor','Medium','5b04894f-b09e-4bc2-ab24-6e7a04062817','','','Sabre Raven Ship Armor'), +(17898,'Seat','SeatAccess','UNDEFINED','432f94af-aa55-4f32-9ff2-b5c1a637e4bf','','',NULL), +(17899,'Edgewear Pants Red','Char_Clothing_Legs','UNDEFINED','a85d4ed6-162b-4b0f-9984-88f738cae065','','','Carrying Capacity: 4K µSCU\n\nStegman\'s Edgewear utility clothes are made from reinforced nylon weaves and lined with temperature-rated quilted technology to provide you with a little extra protection while on the jobsite. Double knees, reinforced joint pads and extra pockets add comfort and durability to this field-tested and worker-approved clothing line.'), +(17900,'Misfit Jacket','Char_Clothing_Torso_1','UNDEFINED','3b094603-c015-4d52-b990-630e6dc27ac8','','','Carrying Capacity: 1K µSCU\n\nEmbody the hardcore attitude with the Misfit jacket. Durable synthetic leather combines with anarchic stylings for a jacket meant to send a message. Its distinct look includes spikes across the shoulder and right arm, two buckled straps on the left arm, and a badass image on the back highlighted by three lights powered via electronic boxes affixed to the front.'), +(17901,'Ouratite','Cargo','Cargo','42a04270-7c74-43f7-a64b-80a2b014acfe','','',NULL), +(17902,'Mount_Gimbal_Salvage','Turret','GunTurret','78136407-7c2e-4ec4-ad13-6dd73b3e227f','','',NULL), +(17903,'Mivaldi Pants Aqua','Char_Clothing_Legs','UNDEFINED','1cfbeee0-543d-4009-8100-a7f70dc14ae9','','','Carrying Capacity: 0.5K µSCU\n\nCut to a narrow fit, OpalSky\'s Mivaldi pants feature bold asymmetrical design with smart yet casual dual material styling, making it the perfect addition to any wardrobe.\n\nWomen\'s sizes currently out of stock.'), +(17904,'Horizon Helmet White','Armor','Helmet','5ab6897b-81d3-4ce9-83f1-6b41cdee510b','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Horizon helmet is a durable and robust environmental enclosed work helmet. The single sheet laminate dome gives you an extremely wide field of view. A pair of side-mounted LED light modules provide additional illumination to make sure you can see what you\'re doing.'), +(17905,'Carryable_1H_kitchenware_tongs_a','Misc','UNDEFINED','26fb1bd6-c91f-4bf4-8d57-c6ac40d22b6d','','',NULL), +(17906,'Vagabond Jacket Molten','Char_Clothing_Torso_1','UNDEFINED','3138f971-6feb-469f-bab9-228b9c288037','','','Carrying Capacity: 2K µSCU \n\nWhen you need to move like your life depends on it. This lightweight layered jacket-and-poncho combination won\'t tie you up when things get tight. Finished with a hooded cowl, cross straps, and kit-webbing, the Vagabond is ready for whatever your day may have in store. The Molten version is dyed a deep red to keep you subtle, but not unsightly.'), +(17907,'Carryable_1H_CY_tool_tester_1_a','Misc','UNDEFINED','a1572673-9549-48e9-a309-4cad3a51815d','','',NULL), +(17908,'TRGT. STATUS','Seat','UNDEFINED','5eaa0d9b-29da-4ef7-9487-1aaab702539d','','',NULL), +(17909,'J-5 Helmet Bracken','Armor','Helmet','d8f7b240-be67-4969-99c8-cd9bf54323c9','','','Item Type: Light Helmet\nDamage Reduction: 20%\nTemp. Rating: -25 / 65 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\n\nGyson delivers another unique softshell helmet with the J-5. Large optic sensors and an oversized breathing apparatus deliver a striking visage. The distinct design is space-rated and provides a modicum of protection, while keeping the helmet lightweight and affordable.'), +(17910,'Door Control','Door','UNDEFINED','b156dfce-c23c-4e77-9c03-1274edfcc337','','',NULL), +(17911,'TRGT. STATUS','Seat','UNDEFINED','aeeda675-3fa0-4bbc-b3ba-0f96eb32dbbe','','',NULL), +(17912,'RSI_Zeus_ES_Thruster_Retro_Right','ManneuverThruster','Retro','20f27071-7833-4591-a5ea-01831fb37f9a','','',NULL), +(17913,'Seat','SeatAccess','UNDEFINED','b7daef00-b3fd-4b65-8e7a-fa2c60f52b34','','',NULL), +(17914,'Davin Work Gloves Red','Char_Clothing_Hands','UNDEFINED','15e4ed95-27fc-40f4-9809-6b75f79a5247','','','Field-tested for over fifty years, you can find Davin work gloves at numerous sites and ships around the Empire. Stegman\'s rugged construction and comfort lining have made them a customer favorite.'), +(17915,'PAB-1 Legs Sienna','Armor','Legs','2bcfdf4f-091f-43db-8bb7-fad268eb3d52','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nClark Defense Systems built the PAB-1 light but strong enough to stay in a fight. The first CDS suit to utilize their proprietary nano-weave, this light armor became a favorite of those who needed a little extra protection while remaining agile.'), +(17916,'TRGT. STATUS','Seat','UNDEFINED','313be3dc-5330-468e-90a3-08ec08431b42','','',NULL), +(17917,'Argo MPUV Ship Armor','Armor','Medium','3b447eed-0b3d-4ef6-b57d-f04adee9fca6','','','Argo MPUV Ship Armor'), +(17918,'Seat','SeatAccess','UNDEFINED','525d581e-6fc4-48de-92bf-d94e49d67793','','',NULL), +(17919,'Origin Jumpworks 135c Ship Armor','Armor','Medium','ac93e4d1-a060-4d16-b6d3-570bb79a78f9','','','Origin Jumpworks 135c Ship Armor'), +(17920,'sc_nvy_bridgeofficer_commander_jacket_01_01_01','Char_Clothing_Torso_1','UNDEFINED','cc634f1e-51ba-420f-a94f-732ca41540b3','','',NULL), +(17921,'300 Series Scarlet Paint','Paints','UNDEFINED','1c3d2283-1593-43f1-aeac-18ac3121e40a','','','Scarlet?paint job for the Origin 300 Series.'), +(17922,'DockingTube_Fuel_Ports_Krig_wolf','DockingCollar','UNDEFINED','1def51a4-1e0b-4ad7-84ca-ed13b927b0f0','','',NULL), +(17923,'ANVL_Lightning_F8_Thruster_Retro_Grey','ManneuverThruster','FixedThruster','1d90827d-716d-43d1-a59d-6dfbb4a8dca9','','',NULL), +(17924,'Morozov-SH Helmet Terracotta','Armor','Helmet','a798e7ef-f394-4e10-8432-0c4145627238','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart. Visor is AR crosshair compatible.'), +(17925,'DRAK_Vulture_Salvage_Arm_Right','ToolArm','UNDEFINED','160cf776-33cd-402e-a126-b8858d81efd5','','',NULL), +(17926,'Artimex Core Elysium','Armor','Torso','e2b6e746-44aa-493a-acaf-0db55caf87c7','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nBlending durability and a striking style, the Artimex armor exemplifies the Quirinus aesthetic. This intricately detailed armor considers both form and function, especially when paired with the fully enclosed helmet that features a neon ocular flourish. The armor also comes with a unique cowl that fans over the helmet and a knee length fitted cape.\n\nThe Elysium edition combines bright gold detailing of winged skulls with a navy blue.'), +(17927,'DRAK_Cutlass_Thruster_Main','MainThruster','FixedThruster','95536ade-bd7c-406b-b56d-f301aceca36a','','',NULL), +(17928,'Odyssey II Undersuit Woodland','Armor','Undersuit','c10d87b7-22cd-49e3-8f8a-dfb986adada4','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe latest generation of RSI\'s classic Odyssey undersuit features a new rugged design capable of withstanding the harshest of conditions in space or planetside. Built using the latest microweave technology, the Odyssey II undersuit provides hours of comfort in locations that are anything but comfortable.'), +(17929,'Locked-on Lentil Burrito','Food','Junk','1ac4b579-1bfe-4658-9648-db0c5bd2241c','','','NDR: 49\nEffects: Hypertrophic, Hyper-Metabolic\n\nTorpedo Burrito crams a full payload of flavor into their hearty and healthy Locked-On Lentil burrito, featuring a blend of lentils and vegetables wrapped in their signature size-4 multi-grain tortilla.'), +(17930,'Door Control','Door','UNDEFINED','bfeba265-1eea-4ce3-a849-e2367581ccd2','','',NULL), +(17931,'Datapad','Misc','Gadget','56772eda-cc46-45a6-a151-ea52eae2ca83','','','A portable tablet computing device featuring a touchscreen display.'), +(17932,'Mahoney Nurse Scrub Pants Primrose','Char_Clothing_Legs','UNDEFINED','9b450f54-4073-4e13-b8f0-e6ea9f5e542f','','','Carrying Capacity: 0.5K µSCU\n\nThe Mahoney Nurse Scrub Pants are made for medical professionals looking for a comfortable but durable fit. They feature two front pockets and a stretch waistband. Moisture wicking and anti-stain fabric makes these pants ready to withstand long shifts and repeated washing.'), +(17933,'Calico Legs (Modified)','Armor','Legs','2f7d8640-708f-453b-89a3-1dc1acadadfb','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -39 / 69 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nThis version of Kastak Arms\' Calico legs has been modified from its original form. Designed to be an EVA-compliant light combat suit, the Calico set is the perfect armor suit for infiltrators, snipers, thieves, basically anyone who likes to avoid kicking in doors. Built out of a combination of PAB3 armor and a custom helmet, it can help you weather some incoming fire without slowing you down.'), +(17934,'DRAK_Golem_OX_Label','Misc','UNDEFINED','e3575ddd-4ae1-4383-a405-f9f8c71cd573','','',NULL), +(17935,'ORIG_100i_CargoGrid','CargoGrid','UNDEFINED','3d9e81ac-d858-44c6-9865-f69119238865','','',NULL), +(17936,'ANVL_Hornet_F7A_Thruster_Main','MainThruster','FixedThruster','4933e6da-b27b-43f5-92c5-a188d2f83e80','','',NULL), +(17937,'Seat','Usable','UNDEFINED','fd0b9372-8063-465b-b8ce-5faaa84a7076','','',NULL), +(17938,'RSI_Polaris_SCItem_SeatAccess_Turret_Top_Right','SeatAccess','UNDEFINED','c3b83ad2-fa28-44cb-9680-9de83c098f9d','','',NULL), +(17939,'ADP Core Platinum','Armor','Torso','3e7f28bd-41bb-4887-b4fb-0b5e94c6ff12','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -75 / 105 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nRevolutionary when first released, the ADP heavy armor system was heralded as the pinnacle of personal protection. Clark Defense Systems\' maximalist design provides plenty of attachment points and excellent protection against the elements and enemy fire. CDS refined and reshaped the ADP line over the years, but many still consider the original ADP to be the touchstone of military-grade heavy armor.'), +(17940,'display_ship_components_02x0075x0275_a_6Ports','ShopDisplay','UNDEFINED','08da94f8-7f5a-40c7-a203-a6df579c69b6','','',NULL), +(17941,'BEHR_LaserCannon_Barrel_S4','WeaponAttachment','Barrel','e202dafe-98be-40af-97ac-0ade132cd45e','','',NULL), +(17942,'100 Series Flame Livery','Paints','UNDEFINED','bc3e5699-023e-4eda-95d9-202e48d7dd94','','','Customize your Origin 100 series ship with this grey and orange livery.'), +(17943,'Quasi Grazer Tongue','Misc','Harvestable','06b503b8-01c8-4447-80d5-843d61a5d2b6','','','The tundra Quasi grazer has evolved a long coat and insulating fat reserves that allow it to stay warm at arctic-level temperatures. The animal\'s tongue is especially renowned for the fat it contains, which can be rendered into a lubricant that remains fluid in extreme cold.'), +(17944,'Internal Tank','FuelTank','Fuel','6f7ece2d-b429-4ea1-9393-6b7bb5c4775a','','',NULL), +(17945,'RSI_Aurora_Mk2_Thruster_Mav_Bottom','ManneuverThruster','UNDEFINED','bae25bf2-3bc5-48d7-83f5-89e71876cdb3','','',NULL), +(17946,'Hephaestanite (Raw)','Cargo','Cargo','9a85e0ac-9dbb-4fae-a49c-e99bb9a3f601','','',NULL), +(17947,'Door','Door','UNDEFINED','a1c9f2d7-593d-4679-8b3d-22204a9f0b86','','',NULL), +(17948,'IcePlunge','Cooler','UNDEFINED','f59a0b33-5bbe-439e-8bd5-111db00b5ff6','','','Item Type: Cooler\nManufacturer: ACOM\nSize: 1\nGrade: C\nClass: Competition\n\nWhen you’re pushing your ship to the limit during that frantic last lap, you’ll be glad you have ACOM’s IcePlunge to keep things cool.'), +(17949,'AEGS_Door_Screen_Wall_Airlock','Decal','DoorPart','03a84a67-334a-439b-aa7e-5707b62c8edc','','',NULL), +(17950,'Amioshi Plague','Misc','UNDEFINED','95fbd27c-d288-46fc-9890-a43d3e645124','','',NULL), +(17951,'Deo Shirt Orange','Char_Clothing_Torso_0','UNDEFINED','b78859fb-7083-4fce-8cc3-e393cc96c249','','','Fiore\'s Deo is a slim cut work shirt that\'s as practical as it is timeless. Featuring a high collar and metal neck clasp, the Deo has been a mainstay in business attire.\n\nWomen\'s sizes currently out of stock.'), +(17952,'AEGS_Idris_SCItem_Seat_CoPilot','Seat','UNDEFINED','cff005b7-32be-4977-b659-3a1d38f8fa89','','',NULL), +(17953,'DRAK_Cutter_Thruster_Aux','MainThruster','FixedThruster','82c91816-03c4-476a-b001-ac6465bd51ba','','',NULL), +(17954,'counter_components_end_a_0038x01x01','ShopDisplay','UNDEFINED','763f3e65-9739-4ad7-a946-f1748dd5e137','','',NULL), +(17955,'MISSILES','MissileController','UNDEFINED','4750556e-1afc-45be-86f7-f7adbc1fb7aa','','',NULL), +(17956,'Inert Materials','Cargo','Cargo','825821ef-b21a-48c4-8f6c-6be6adfb0893','','',NULL), +(17957,'Datapad','Misc','Gadget','3d038013-8eb6-438a-8100-8ad4549cced0','','','A portable tablet computing device featuring a touchscreen display.'), +(17958,'Weapon_Rack_Aegs_10_slot','Usable','UNDEFINED','9c063adc-bc81-4877-86f8-174485abbccf','','',NULL), +(17959,'RSI Polaris Torpedo Rack','MissileLauncher','MissileRack','e1f82d07-0a5c-4668-8fc6-5a087eed1d1b','','','Item Type: Torpedo Rack\nManufacturer: RSI\nSize: 10\nTorpedo: 7xS10 \n\nBring the impressive firepower of the Polaris to bear with this bespoke torpedo rack holding seven massive S10 torpedoes.'), +(17960,'Bed','Usable','UNDEFINED','32d01c4c-3917-45ef-a586-397736f70929','','',NULL), +(17961,'Table_Conference_6_1_distribution_a','Usable','UNDEFINED','1d06e5b3-03d1-4dae-a8c0-151b21e3bd7d','','',NULL), +(17962,'Tuvois Jacket','Char_Clothing_Torso_1','UNDEFINED','31355140-da8d-4c5a-bf6f-2036bb1d77bc','','','Carrying Capacity: 1K µSCU\n\nCreated in collaboration with legendary designer Avon, OpalSky is proud to unveil the Tuvois, an open vest featuring stark, bold styling that\'s destined to make an impression. \n\nWomen\'s sizes currently out of stock.'), +(17963,'Internal Tank','QuantumFuelTank','QuantumFuel','a49a2891-765b-4bb9-ab58-d703589213e8','','',NULL), +(17964,'ORIG_890J_Seat_Bridge_Left','Seat','UNDEFINED','3ab51834-564c-47e2-99d5-f250093c57c5','','',NULL), +(17965,'NV57 Ballistic Gatling','Weapon','Gun','56c36bd9-9090-4166-a3dd-9dc8ad225f70','','','Item Type: Ballistic Gatling Gun\nManufacturer: Behring\nSize: S5\n\nBreak the ranks with the NV57 Ballistic Gatling Gun designed to replace the standard Tumbril Nova tank canon. Be ready to face overwhelming ground forces head on using this high powered weapon with superior damage output and a devastating rate of fire.'), +(17966,'Internal Tank','FuelTank','Fuel','adb59839-382c-43cf-aca5-fa9e8c4d1a6a','','',NULL), +(17967,'M9A Cannon','Weapon','Gun','bf958f42-4f50-46ce-af92-64b08e7f7c19','','','Manufacturer: Behring\nItem Type: Laser Cannon\nSize: 7\n\nStrike at the very heart of your enemies with the devastating impact of Behring\'s M9A energy autocannon. When fully charged, the massive stopping power of this laser weapon has the potential to halt even capital ships in their tracks.'), +(17968,'Drink Dispenser','Cargo','UNDEFINED','738b0c38-8bb0-410c-b113-ba73ae6dba6f','','',NULL), +(17969,'Bed','Usable','UNDEFINED','968049b6-bef6-4e67-8b5f-60d41fd91a48','','',NULL), +(17970,'Seat','SeatAccess','UNDEFINED','0f9a0e4d-3404-4b13-86a4-48b211b96d9a','','',NULL), +(17971,'Stud','Char_Head_Piercings','UNDEFINED','17d59a23-1942-4f06-a5e8-537c3b20babe','','',NULL), +(17972,'Box_075x050x050','Cargo','Small','ff1e9742-cd27-4007-9926-2d70fe49959b','','',NULL), +(17973,'Carryable_1H_CY_weight_dumbbell_1_8kg_b','Misc','UNDEFINED','8332ce65-fc17-491c-9cf2-864d689cb8ff','','',NULL), +(17974,'Badami Helmet','Armor','Helmet','305c8b36-61a3-4065-b514-199719de9ac0','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Badami helmet from Caldera provides premium head protection with a tough polycarbonate shell and an anti-microbial liner. Allowing you to boldly brave untamed locales and explore the dark corners of space.'), +(17975,'Carryable_1H_CY_drug_painkillers_1_b','Misc','UNDEFINED','bfa127c9-b8e4-4674-860b-22af48baad2d','','',NULL), +(17976,'Hadanite','Cargo','Cargo','4f313b53-cb7b-46cb-91ce-0e75ce7ab443','','',NULL), +(17977,'Access','SeatAccess','UNDEFINED','044a1dc5-4215-4d6d-b505-4f91fff89201','','',NULL), +(17978,'orig_bedding_duvet_4_h','Seat','UNDEFINED','66e35694-253c-4fac-97a4-bff6cd69057a','','',NULL), +(17979,'Recycled Material Composite','Cargo','Cargo','7e32d5dd-4273-4e11-9890-380a01c168d7','','',NULL), +(17980,'Door Control','Door','UNDEFINED','3346a416-3665-4425-a75b-3abe4f4fef57','','',NULL), +(17981,'Book','Misc','UNDEFINED','0a98cd9b-cc51-464d-a8d5-4c2353d982f8','','',NULL), +(17982,'NONE_LaserRepeater_Barrel_S3','WeaponAttachment','Barrel','eb00eacc-04c3-415a-afe8-4cc0872f23ed','','',NULL), +(17983,'Exfiltrate','JumpDrive','UNDEFINED','af671ad3-d55d-44b3-8617-473bd3dc0da6','','','Item Type: Jump Module\nManufacturer: Aegis Dynamics\nSize: 4\n\nThis capital-class jump module was designed specifically for the Idris frigate.'), +(17984,'Seat','SeatAccess','UNDEFINED','53fb33ae-e8c3-4621-aa7e-4a2fa1c52ede','','',NULL), +(17985,'TRGT. STATUS','Seat','UNDEFINED','519f386a-8c79-4633-a36e-9703f32d196e','','',NULL), +(17986,'Door Control','Door','UNDEFINED','0a022e36-18cd-4dc3-8bbf-51449f498eac','','',NULL), +(17987,'Seat','Usable','UNDEFINED','6682c0eb-a8d6-4407-bdd0-53b19647e701','','',NULL), +(17988,'Door Control','Door','UNDEFINED','0633a594-01df-4330-a111-829effbd808a','','',NULL), +(17989,'Internal Tank','FuelTank','Fuel','eab8299a-b6d1-4b58-b6a8-dc6694a06304','','',NULL), +(17990,'Venture Undersuit Blue/Black','Armor','Undersuit','69201826-16f7-4adb-9f66-c26bb4d7fff0','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement.'), +(17991,'ORIG_600_CargoGrid_Module_Large','CargoGrid','UNDEFINED','ca3b3d12-e2cf-4f87-ac28-b099619d47eb','','',NULL), +(17992,'ARMR_MRAI_Pulse','Armor','Medium','ec0390d7-8abc-4630-b1a7-496910f531ed','','',NULL), +(17993,'Seat','Usable','UNDEFINED','07f41035-04eb-4e1d-bf3a-3baa250c3329','','',NULL), +(17994,'Door Control','Door','UNDEFINED','7b248883-8bde-4aea-8d76-48cd74d55716','','',NULL), +(17995,'Aril Backpack Quicksilver','Armor','Backpack','de5b1185-7287-4341-9b11-dd2df19e2d59','','','Item Type: Medium Backpack\nCarrying Capacity: 85K µSCU\nCore Compatibility: Medium & Heavy\n \nOriginally designed for miners, the Aril armor comes with an attachable backpack that can accommodate a variety of tools and supplies to keep your hands free. The Aril backpack is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(17996,'Seat','Usable','UNDEFINED','b12473ad-e02e-4364-955d-3dddf4ef0505','','',NULL), +(17997,'ORC-mkV Core Greycat Edition','Armor','Torso','7da789ac-8865-4bbc-a6cd-b6cea65e6933','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -55 / 85 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nDependable and durable armor never goes out of style. The ORC-mkV from Clark Defense Systems has been a battlefield staple for centuries. This highly regarded medium armor blends composite plating with a special fiber reinforced polymer to provide solid protection and a wide range of movement. The Greycat Edition was made specifically for the company.'), +(17998,'Starlancer Pacific Livery','Paints','UNDEFINED','a6b7eef1-8190-4cb0-bd76-df5a075f110f','','','Stand out from the crowd with the Pacific livery for the Starlancer. It features a sun soaked yellow on top of the ship with a crisp blue underneath.'), +(17999,'Lamont Undersuit','Armor','Undersuit','c8ba6feb-93dc-4247-b4a4-d3c196284abe','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nThe Lamont looks so good you won\'t want to wear armor over it. Seamlessly blending lightweight plating with durable synthetic weaves, the Lamont will be as comfortable in the cockpit as it is stylish in the streets. Embrace personal protection gear suitable for both work and play, and gain the Hardin Tactical advantage.'), +(18000,'Seat','Usable','UNDEFINED','daaa4ecf-1bb0-403f-8725-06d5aee7bc14','','',NULL), +(18001,'DRAK_Cutter_Thruster_Addon_Scout_Left','Misc','UNDEFINED','53108ef1-1177-4aa0-af51-164ceeb70077','','',NULL), +(18002,'Cordimon Jacket Dark Red','Char_Clothing_Torso_1','UNDEFINED','acef051e-a77e-4ece-9322-a7d3ac36e348','','','Carrying Capacity: 3K µSCU\n\nStegman\'s classic worker\'s jacket has been a staple of job sites for over seventy years. This duotone pattern is cut from the toughest material meaning you can wear it anywhere, anytime. It may not be armor, but it damn sure feels like it.'), +(18003,'Tumbril Hat','Char_Clothing_Hat','UNDEFINED','f403a9b5-b3cf-464a-b171-76a078fdacdf','','','Tumbril Land Systems made this hat to celebrate the release of their legendary Nova tank to the civilian market.'), +(18004,'game_chess_1_king_a','Misc','UNDEFINED','4875cbaf-24f5-4290-9433-18bb5c5d08a5','','',NULL), +(18005,'TRGT. STATUS','Seat','UNDEFINED','d5623c7c-7f1e-464e-aa15-3a7b37cf2e05','','',NULL), +(18006,'Internal Tank','QuantumFuelTank','QuantumFuel','0ef9e1aa-aef8-4881-a593-a5dccb475694','','',NULL), +(18007,'SHIELDS','ShieldController','UNDEFINED','6cbafdf7-04c5-4652-a83a-3455e2c523e3','','',NULL), +(18008,'Venture Core Dark Green','Armor','Torso','99e4f989-c470-47b3-ae30-9ca9f12bd4fb','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nRSI\'s Venture is a lightweight armor set built for the unknown. This EVA-rated protection system features an undersuit built from a durable polymer weave that\'s designed to withstand extreme environmental conditions and features component armor pieces to protect you against impacts and particulates.'), +(18009,'Railing_Straight_1m_Colonial_Wall_A','Usable','UNDEFINED','49a675f9-7788-4cc0-9d31-2faf8ccbe852','','',NULL), +(18010,'Door Control','ControlPanel','DoorPart','8dca1714-c0b9-44e3-952c-a96b5ceaddee','','',NULL), +(18011,'Endo','Cooler','UNDEFINED','f6ab217a-2506-42ad-b6f2-90bdf939c0af','','','Item Type: Cooler\nManufacturer: Wen/Cassel Propulsion \nSize: 1\nGrade: B\nClass: Civilian\n\nA cooler for discerning ship-owners who are looking to push their craft further, Wen/Cassel’s Endo features above average cooling performance and thoughtful design.'), +(18012,'X1 Blueshift Livery','Paints','UNDEFINED','22bf25f6-00a4-458d-b3df-32a346f0268c','','','Infinity Custom worked with Origin on the Blueshift livery, which is dark blue and black with X1 in vibrant white.'), +(18013,'RSI_Aurora_GS_LX_Thruster_Retro_Right','MainThruster','FixedThruster','2bbbe76f-9fa6-4320-8784-6140c5c180ae','','',NULL), +(18014,'PH - scu_service_shirt_02_whammers01_01','Char_Clothing_Torso_0','UNDEFINED','e040b947-b048-4617-8602-f532ce63707f','','','PH - scu service shirt 01'), +(18015,'Armor_Crate_CZ_Horizon_L_002','Usable','UNDEFINED','7d11704f-57f0-4694-93a9-390622d47f4c','','',NULL), +(18016,'CBH-3 Helmet Dark Red','Armor','Helmet','9b653d3a-0a02-4a80-8a2f-b0e620cd8900','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -40 / 70 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nConstructed using a lightweight alloy that can withstand a fair share of damage, the CBH-3 is a field-tested combat helmet featuring a large single-piece molded faceplate to allow for an expansive field of view for increased situational awareness. Visor is AR crosshair compatible.'), +(18017,'Seat','Usable','UNDEFINED','a3caf99d-3152-495c-ad1d-64a989226606','','',NULL), +(18018,'f_human_mannequin_deckcrew_cargo_light','ShopDisplay','UNDEFINED','7222b9a7-b275-4d02-ba32-28c15283bee1','','',NULL), +(18019,'facial_hair_003','Char_Head_Beard','UNDEFINED','c9e19547-ba61-473f-b9b6-e5b8a14cb57e','','',NULL), +(18020,'FullForce','PowerPlant','Power','dabd2d8d-c06c-4ebf-8791-192ace67ac33','','','Item Type: Power Plant\nManufacturer: Lightning Power Ltd.\nSize: 2\nGrade: C\nClass: Civilian\n\nThis power plant from Lightning Power Ltd. delivers balanced performance, durability and emissions, providing consumers with a “FullForce” of options as to how to use it.'), +(18021,'Seat','SeatAccess','UNDEFINED','a64cd92d-5e25-4875-8744-0ebe37cf193d','','',NULL), +(18022,'ParaMed \"AA Transport\" Medical Device','Weapon','Small','cbfe9a39-9aa3-41c7-8d02-466d333df53c','','','Manufacturer: CureLife\nItem Type: Medical Device\n\nThe ParaMed from CureLife is a professional-grade emergency medical device designed to stabilize patients suffering from possible life-threatening injuries. Offering extremely accurate diagnostics and dosing, the ParaMed can treat more patients and offer longer relief with less risk of overdose.\n\nThe AA Transport edition features a metallic green coloring and was intended for those who assisted Alliance Aid\'s Transport Division during Levski\'s time of need.'), +(18023,'Bed','Usable','UNDEFINED','1bf8e11f-11d9-432b-bdae-8745d415a813','','',NULL), +(18024,'Seat','Usable','UNDEFINED','c7aab48b-cfc8-4865-9453-810408a9c02a','','',NULL), +(18025,'Datapad','Misc','Gadget','2956c390-9057-4c67-aead-0476a916a350','','','A portable tablet computing device featuring a touchscreen display.'), +(18026,'Seat','Usable','UNDEFINED','6547a105-793c-4cc1-b7fd-71ac97146ce0','','',NULL), +(18027,'Ana Arms Endro','Armor','Arms','a76b255e-e7d3-4171-bfd7-aa5ac6a21da7','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -95 / 120 °C\nRadiation Protection: 52800 REM\nRadiation Scrub Rate: 251.1 REM/s\n\nThis Antium Armor was modified from its original version. Carefully-selected fangs and bones were mounted to the set to give it a primal look.'), +(18028,'Harlowe Shirt Twilight','Char_Clothing_Torso_0','UNDEFINED','c1faef05-e1d3-4f47-8b13-829631c941fd','','','Capable as being worn on its own or as a base for layers, this long-sleeve henley style shirt from Alejo Brothers keeps you stylish and comfortable.'), +(18029,'Carryable_1H_CY_bottle_bar_10_bitters_a','Misc','UNDEFINED','3bac4d7d-544c-43e5-aba1-b8b37e545ba1','','',NULL), +(18030,'Overlord Arms Polarity','Armor','Arms','9f374152-c6e8-4f2f-8418-2771a855d06f','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.\n\nThe Polarity edition pairs a deep purple with rusted brown accents.'), +(18031,'Cutter Groundswell Livery','Paints','UNDEFINED','bd3542f2-862b-46e8-8a70-60bddc8c2f83','','','Mixing shades of green with vivid orange, the Groundswell livery embraces the spirit of the Cutter with this dynamic paint scheme.'), +(18032,'Inquisitor Arms Black','Armor','Arms','a3d72f0c-37de-4368-904e-ef175b6f18ba','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(18033,'rack_food_1_stand_a_DrinkCans','ShopDisplay','Default','172637d2-26be-4e0b-a829-308da2a89c98','','',NULL), +(18034,'Lillo Pants Green','Char_Clothing_Legs','UNDEFINED','fe193701-90d8-4cfe-99a2-a845c82ec7c1','','','Carrying Capacity: 0.5K µSCU\n\nThese slim cut pants from Fiore give you a tailored feel at a fraction of the cost. Built from space-age weaves, the Lillo are a low maintenance, high impact addition to your office wardrobe.'), +(18035,'AEGS_Door_Decal_CmptRm_03','Decal','DoorPart','5877d7b6-af2a-4601-908e-f4b5e85fa00c','','',NULL), +(18036,'AirlockExteriorStatusSign','StatusScreen','AirlockPart','7ad2d2d1-36f5-44cd-85d4-de3538e66454','','',NULL), +(18037,'Wolf Riftwalker Livery','Paints','UNDEFINED','3c58e888-f2f9-4cfa-bcef-50e768aefc35','','','Complement the elegant design of the Kruger Wolf with the Riftwalker livery, which is primarily black with bronze and blue highlights.'), +(18038,'OT4-RF \"Scorched\" (4x Telescopic)','WeaponAttachment','IronSight','bbea3063-5ca5-4d78-9327-95cceb638eb9','','','Manufacturer: Gemini \nType: Telescopic\nAttachment Point: Optic   \nMagnification: 2x - 4x\nAim Time: +5%\nVisual Recoil: -10%\nParallax: Medium\nSize: 2\n\nCombining a premium 4x telescopic sight with Gemini\'s innovative echoburst rangefinder, the OT4-RF model allows you to accurately gauge the distance to your target; vital for effective precision shooting. When paired with the Gemini S71 or other compatible weapon, the OT4-RF is engineered to impress in a variety of situations and engagements. The Scorched edition features a unique flame patina.'), +(18039,'Door','Door','UNDEFINED','0e2bab80-5f93-49a8-b7fe-c59011d7acff','','',NULL), +(18040,'Hair Care Product','Misc','UNDEFINED','cfb53418-2da7-449e-9e0c-8a9fef747d75','','',NULL), +(18041,'Door Control','Door','UNDEFINED','ebab0b16-fcf7-470c-896e-5d707cbc6056','','',NULL), +(18042,'Door Control','Door','UNDEFINED','2dbe8f03-d116-40b5-bba7-34e345b267aa','','',NULL), +(18043,'Arclight Pistol','Weapon','Small','0ff9144c-970d-4861-ae27-b27ee3c969a9','','','Manufacturer: Klaus & Werner\nItem Type: Pistol\nClass: Energy (Laser)\n\nBattery Size: 30\nRate Of Fire: 300 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nA handheld laser made famous as Kyle Fenris’ sidearm on the hit vid show The Frontier, the Klaus & Werner Model II Arclight has become extremely popular on the civilian market. Despite its media appeal, the Model II offers a higher rate of fire than any of its ballistic counterparts. While that may diminish the weapon\'s stopping power, its power cell offers more than enough shots to finish the job.'), +(18044,'vlk_spewgun_ballistic_irradiated','Weapon','Medium','f1e6b32b-bc43-485c-9b60-efbe950ed0f6','','',NULL), +(18045,'TrueDef-Pro Arms Aqua/Black','Armor','Arms','a9d447ad-f162-40ab-8dd9-7ec2b69f5ff9','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nVirgil\'s TrueDef line of personal body armor provide strategic protection of vital areas while keeping you fast and mobile. Numerous planetary law enforcement organizations and even the Advocacy use versions of the TrueDef to protect their officers and agents.'), +(18046,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','d3171a19-4d1d-439b-b3ec-d814231ee92e','','','Aegis Gladius - Decoy Launcher'), +(18047,'Seat','Usable','UNDEFINED','c0708248-8b90-4b2b-85ec-2334f046c07a','','',NULL), +(18048,'Door Control','Door','UNDEFINED','269efcc5-15c1-4f16-b638-b9f6fc639930','','',NULL), +(18049,'Dashboard','SeatDashboard','UNDEFINED','a3516a47-098c-45ef-bf89-483c2eeeb27a','','',NULL), +(18050,'Flight Blade','FlightController','UNDEFINED','e1e8ba90-d536-443a-a9a2-807391f7648b','','',NULL), +(18051,'Manned Turret','TurretBase','MannedTurret','bfdaffcf-d8d9-4ce3-a79c-8e910d61d985','','',NULL), +(18052,'Scorpius Storm Cloud Livery','Paints','UNDEFINED','52bb79af-5f19-4af8-8e10-419bc98b3842','','','Strike true and deliver justice with the Scorpius Storm Cloud livery featuring slate-teal panels with black trim and subtle orange highlights.'), +(18053,'Door_NoRoomConnector_RSI_Polaris_Toilet_L','Door','UNDEFINED','9cc787e9-65b7-4883-83ac-ffa416948faa','','',NULL), +(18054,'CNOU_Mustang_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','2789551d-aaa0-4e93-9003-832d84a891f6','','',NULL), +(18055,'display_components_pallet_250x125x025_b_cooler','ShopDisplay','UNDEFINED','bf64e1ad-9f50-4dcb-b494-bbe8c64dd033','','',NULL), +(18056,'PyroBurst Scattergun','Weapon','Gun','93b774da-e792-4648-bf79-acfd8b5d0f9d','','','Manufacturer: Amon & Reese Co.\nItem Type: Plasma Scattergun\nSize: 3\n\nYou ship will spread havoc with A&R’s PyroBurst plasma shotgun. Effective in close quarters, the PyroBurst sprays self-detonating plasma projectiles, sacrificing pinpoint accuracy for area saturation.'), +(18057,'ORIG_890Jump_DockingTube','DockingCollar','UNDEFINED','e99ed099-d2a2-44f5-abe8-5f26e9943339','','',NULL), +(18058,'Mercury Gloves','Char_Clothing_Hands','UNDEFINED','c6d373f8-359c-448d-b82f-8acb7e86e1b0','','','Designed to provide warmth to your hands while still allowing you to precisely manipulate things, the Mercury gloves from DMC are perfect for outdoor activities or colder work environments.'), +(18059,'H_Dashboard_Projector_HUD_RSI_Perseus','Display','UNDEFINED','a96a85b0-2d48-4fc0-ab88-c719a889f8e2','','',NULL), +(18060,'fruit_tray_2_f','Misc','UNDEFINED','5d5bfd84-7c28-4143-a6de-57f024370e33','','',NULL), +(18061,'INTK_XNAA_SanTokYai','FuelIntake','Fuel','386b426a-f729-400f-ad97-64fcff989fd7','','',NULL), +(18062,'Weight_Rack_Dumbbell_1_a','Misc','UNDEFINED','41bc7862-b115-4287-abc1-ea95b1369446','','',NULL), +(18063,'Venture Helmet Olive','Armor','Helmet','1eab81fe-fd56-4fa8-bf0b-3bb222b9eddf','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover.'), +(18064,'ANVL_Pisces_Thruster_Retro_Right','ManneuverThruster','JointThruster','eaae0959-4699-423b-ab72-596b156b40b0','','',NULL), +(18065,'Door','Door','UNDEFINED','549ae195-4d13-4614-b5c2-0fa8c0361117','','',NULL), +(18066,'Outback Arms Molten','Armor','Arms','f9df36da-2609-4b09-8c5b-bed7821305ba','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -65 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nSend a statement with thick leather paired with metal plated cuffs, pauldrons and spike-backed gloves. The Molten version is dyed a deep red to keep you subtle, but not unsightly.'), +(18067,'DRAK_Cutlass_Blue_Thruster_Maneuver_Rear_Bot','ManneuverThruster','JointThruster','bd7859de-8583-41fe-86fa-badc598ec538','','',NULL), +(18068,'DRAK_Cutlass_Steel_Thruster_Maneuver_Front_Bot','ManneuverThruster','JointThruster','c251aabe-bf05-42e1-9105-6a27db1db8d3','','',NULL), +(18069,'Inquisitor Core Red','Armor','Torso','e5c981c3-533c-4dc9-b246-72df989aa751','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -56 / 86 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n\nStrength and speed combine with the new Inquisitor armor set. Strong yet lightweight alloy plating works alongside reinforced polyfiber weaving to save your skin, but not slow you down. When combined with Kastak Arms\' intimidating aesthetic, it\'s easy to see why this medium armor has become infamous across the Empire.'), +(18070,'Geist Armor Core Desert','Armor','Torso','7ad4c67c-57f0-48bf-9ef0-19238aa2d65c','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\nBackpacks: Light\n\nAn ideal synthesis of strength and technology, the Geist Stealth Armor has been crafted from military-grade carbon silk sourced from the same manufacturers that protect the UEE\'s special forces. Hair-thin filaments woven into the fabric mask the wearer\'s emissions, making them undetectable via radar, and specialized tubing built into the soles of the boots dampens the sound of footsteps.'), +(18071,'ORIG_890_Jump_Thruster_Mav_FSL','ManneuverThruster','FixedThruster','6724aad1-527e-413f-ab8f-e0a4bd0f2e1c','','',NULL), +(18072,'ANVL_Arrow_Thruster_Retro','ManneuverThruster','FixedThruster','c62a365c-0ab6-498e-a270-19093e23a50f','','',NULL), +(18073,'Cutter Wind Chill Livery','Paints','UNDEFINED','ad01f1e8-c34d-40bd-abf8-d14e7e073a35','','','The Wind Chill livery for the Cutter features crisp white paint with black highlights.'), +(18074,'Chrome Dome Head Gear','Char_Clothing_Hat','UNDEFINED','b4e402ec-222f-4946-b25b-2a80dc13a73a','','','The Chrome Dome was designed to make hostile environments manageable. This unique head gear features a lightweight and reflective hat with a sloped brim, goggles that automatically adjust to lighting conditions, large ear flaps, and a neck gaiter to cover the face. Whether trudging through snow or sand, the Chrome Dome is ready to brave the elements with you.'), +(18075,'Ready-Up Helmet Purple','Char_Clothing_Hat','UNDEFINED','bebe91f4-736e-4613-8a56-b358c21d4289','','','The Ready-Up is a dependable, affordable softshell helmet alternative. Built from space-age plastic, the Ready-Up provides a vacuum-ready seal to keep you breathing for longer.'), +(18076,'Bed','Usable','UNDEFINED','96d1fe1a-681d-4bbf-ae42-547fb5875165','','',NULL), +(18077,'Seat','SeatAccess','UNDEFINED','74fc14a2-a051-4512-bfb5-13c99eeeac97','','',NULL), +(18078,'Glow','Cargo','Cargo','67e07f41-341e-4a4e-9131-5383622a0e18','','',NULL), +(18079,'RSI_Bengal_SCItem_Seat_Tactical','Seat','UNDEFINED','03cc3a81-45f0-45d2-943e-5ebde343ac4d','','',NULL), +(18080,'TRGT. STATUS','Seat','UNDEFINED','b2ddf056-2646-4d48-80dd-1c4a7b0cee1c','','',NULL), +(18081,'Outback Helmet Grime Blue','Armor','Helmet','44436242-5271-4472-b4f6-c935189d48ba','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -65 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2k µSCU\n\nThis full-coverage reinforced leather helmet incorporates darkened goggles and a heavy-duty rebreather suitable for low oxygen environments. Visor is AR Crosshair compatible. The Grime version is dyed a dusky blue to keep you subtle, but not unsightly.'), +(18082,'DockingTube_Fuel_Ports_AEGS_Avenger','DockingCollar','UNDEFINED','14fce368-d4d1-4bf7-afb1-770caa854e03','','',NULL), +(18083,'Capston','Radar','MidRangeRadar','22121214-6333-4edd-826a-0d06c15b5636','','','Item Type: Radar\nManufacturer: WillsOp\nSize: 1\nGrade: C\nClass: Civilian\n\nExperience why WillsOp is a premiere manufacturer of ship electronics with their Capston radar. Outfit your ship with one today so you know what’s nearby.'), +(18084,'UEEx T-Shirt','Char_Clothing_Torso_0','UNDEFINED','057ab3d9-c6a7-4b1b-bdf0-604d704b2d6c','','','Proclaim your passion for poli-rock rebels The Leedos with this lightweight and supremely soft shirt from CBD, featuring artwork from their United Empire of Extinction tour.\n\nWomen\'s sizes currently out of stock.'), +(18085,'Freelancer Ship Armor','Armor','Medium','e787835d-a4af-4d82-82c5-f5ce751afb2c','','','Freelancer Ship Armor'), +(18086,'Cutlass Steel Plushie','Misc','Personal','0f574aeb-9fd3-4436-8ce0-4afa868a21ce','','','This soft plushie is modeled after Drake Interplanetary\'s Cutlass Steel, a troop transport variant intended to serve as both dropship and gunship.'), +(18087,'Door Control','Door','UNDEFINED','b65bf781-e343-4f53-82b8-fc63c09f1ad0','','',NULL), +(18088,'NONE_LaserRepeater_PowerArray_S2','WeaponAttachment','PowerArray','611080f1-bba5-4574-9b3a-25503efd2c85','','',NULL), +(18089,'Personal Care Product','Misc','UNDEFINED','ea7de9d5-715d-46ac-b2ce-ba174ea4cc31','','',NULL), +(18090,'Strata Arms Neptune','Armor','Arms','61d7efaf-c389-4807-acc8-c70a645ef3cc','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres.'), +(18091,'Fractus Gloves Purple','Char_Clothing_Hands','UNDEFINED','482d8bd9-9eba-46b9-bdc8-a2387b6ddb6d','','','Developed for work sites, but refined enough for everyday use, the Fractus gloves layer StretchStrong fabric for a tight yet breathable fit. Reinforced knuckle plating and scaled fingertips provide extra durability and a stylish flourish.'), +(18092,'Carryable_TBO_FL_2SCU_Commodity_ProcessedGoods_EvidenceBox','Cargo','Cargo','7133351b-451f-4a05-b4d4-cf4ce52ca795','','',NULL), +(18093,'DockingTube_Fuel_Ports_MISC_Starlancer','DockingCollar','UNDEFINED','4aa47acb-ee97-4cdf-b408-9a25e6fd29da','','',NULL), +(18094,'TRGT. STATUS','Seat','UNDEFINED','81d03a70-a8eb-43ce-a77e-87c99eea5d8f','','',NULL), +(18095,'Seat','Usable','UNDEFINED','56914041-de55-47d0-8e92-61f7fa223204','','',NULL), +(18096,'Palatino Core Deadlock','Armor','Torso','633c07d0-c6e7-4952-b2e3-e330df979552','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8K µSCU\nBackpacks: All\n\nElegant design meets innovation with the Palatino armor from Quirinus Tech. This armor set masterfully mixes reinforced plating with patented new materials that are light-weight and flexible, yet rated to withstand heavy damage allowing the wearer to be fashionable, light on their feet, and able to withstand serious firepower. The Deadlock variant features a grey camo pattern with yellow highlights.'), +(18097,'Fabian','Radar','MidRangeRadar','5d040910-6c55-453e-970d-842d4b4fd710','','','Item Type: Radar\nManufacturer: WillsOp\nSize: 0\nGrade: A\nClass: Civilian\n\nUtilizing best-in-class scanning technology, the Fabian radar ensures you won\'t be caught unaware.'), +(18098,'ARGO_MPUV_Lights_Body','Room','UNDEFINED','e44640c4-d395-48f9-825e-cc4ff9d6847b','','',NULL), +(18099,'Beacon Undersuit Grey/Aqua','Armor','Undersuit','3f821b9e-6ca1-44e9-b9d4-8f925f0fa2cc','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nRSI\'s Beacon undersuit is a general use utility designed to provide total protection against environments and vacuum. Built out of a durable but flexible polymers, the Beacon provides a wide freedom of motion for a variety of body types.'), +(18100,'Seat','Usable','UNDEFINED','7b6dd4e2-99d4-4fa6-a072-bfccfa6c3fae','','',NULL), +(18101,'Frontier 05 Pants Winter','Char_Clothing_Legs','UNDEFINED','e4abb70c-0d56-4549-be9f-58dceaf0f83a','','','Carrying Capacity: 0.5K µSCU\n\nDMC\'s Frontier collection has been a staple of frontier living for centuries. These heavy denim workpants have double-stitched reinforcement and stainguard technology, making them dependable pants for any environment day in and day out.'), +(18102,'Joker Defcon Flares Ammo','WeaponDefensive','CountermeasureLauncher','3c09dee0-e92b-4b4c-9b40-2e43d1e0b145','','','Joker Defcon Flares Ammo'), +(18103,'Remote Turret','Turret','TopTurret','5ec6f19b-93ae-4830-9ae1-45993d579f46','','','Multitask on the battlefield with this remote turret system. Featuring precise controls and a wide field of fire, the turret allows pilots to add combat support to their resume.'), +(18104,'Cordimon Jacket Purple','Char_Clothing_Torso_1','UNDEFINED','c6dd172b-bb6c-4bad-84a2-b4153d7b0e31','','','Carrying Capacity: 3K µSCU\n\nStegman\'s classic worker\'s jacket has been a staple of job sites for over seventy years. This duotone pattern is cut from the toughest material meaning you can wear it anywhere, anytime. It may not be armor, but it damn sure feels like it.'), +(18105,'Citadel Core Outcrop','Armor','Torso','ad80acdd-719e-49eb-bc06-cfce78591598','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -80 / 110 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nKastak Arms\' aggressive design reached its peak with the Citadel. Layers of reinforced armor plating provide maximum security while its striking angular silhouette cuts an imposing figure. The Citadel-SE features a flourish of stylish script on the front chest plate and provides the same stellar protections thanks to advanced nanocomposite ballistic materials.'), +(18106,'Silnex','Cargo','Cargo','b76aaa4b-3d6d-41fe-9fb3-24f5d266b131','','',NULL), +(18107,'SLAM','Misc','Utility','fe85c22a-b742-4c76-bc4e-3479d285d497','','','Most commonly ingested as a gas. Vials of SLAM are cracked and inhaled. Initially developed as a performance enhancer for athletes, SLAM targets the user\'s nervous system acting as a fear-inhibitor and painkiller. Once the severe physical side effects were discovered, the drug went underground and found popularity among mercs and outlaws who relied on it to provide that slight edge in combat. Unfortunately, SLAM is also heavily addictive, so many of these mercs ended up getting burned out on the drug. Heavy-duty SLAM junkies are easily identifiable in public; they have ‘the shakes’ -- involuntary muscle twitches. Important to note that this is not a sign of withdrawal, simply a side effect.'), +(18108,'Door Control','Door','UNDEFINED','f74194ad-d721-469b-81b5-76d23aad5212','','',NULL), +(18109,'BANU_Defender_Dashboard_Pilot','SeatDashboard','UNDEFINED','61367034-09d9-4680-8fc3-bc49e7fb4d33','','',NULL), +(18110,'DeconPen (Canoiodide)','FPS_Consumable','Medical','ced580a6-0327-4aef-b36e-afa8db60de33','','','Manufacturer: CureLife\nItem Type: Medical Consumable\n\nThe DeconPen from CureLife delivers a rapid injection of Canoiodide, a proprietary medicinal compound that treats radiation exposure.'), +(18111,'Killshot \"Goodnight\" Rifle','Weapon','Medium','cc1057a0-1777-4fe5-b75a-f33a020ca7bc','','','Manufacturer: Unknown\nItem Type: Assault Rifle\nClass: Ballistic\n\nMagazine Size: 45\nRate Of Fire: 525 rpm\nEffective Range: 50 m\n\nBeauty is in the eye of the beholder, and if you aim just right, so will a round from the Killshot assault rifle. What it lacks in grace, this classic design has its own scrappy charm. \n\nThe Goodnight version features a deep navy paintjob.'), +(18112,'Morozov-SH Legs Red Alert','Armor','Legs','278ad759-6c1b-432d-8065-f31e8d2cdd34','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5K µSCU\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(18113,'MISC Reliant Ship Armor','Armor','Medium','6bc6cb94-dc71-4faa-a7e5-b0abee8c3621','','','MISC Reliant Ship Armor'), +(18114,'Dragonfly Black Livery','Paints','UNDEFINED','3d7cd9bc-a18e-40ff-834b-e54d576f2ed2','','','Base livery for the Dragonfly Black.'), +(18115,'Twenty-Sided Plushie Blue','Misc','UNDEFINED','f9b203fe-3436-4ed5-a4db-4a7870e811cc','','','Ready to roll? Make your randomly generated numbers a little more squeezable with this plush icosahedron. Each surface of the large blue die features a different easy-to-read number.'), +(18116,'Defiance Core Tactical','Armor','Torso','f7552eb5-407f-4390-ac65-62ae63549ec8','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -72 / 102 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nIncorporating the same manufacturing know-how and expertise that the UEE Marines have come to rely on, Clark Defense Systems has designed their civilian-line of Defiance heavy armors to stand firm in the face of even the most adverse combat scenarios with its three-star rated protective plating and fully integrated mobility framework.'), +(18117,'Strata Core Hurston Black','Armor','Torso','037946a4-9744-4f65-b9d1-13482253b606','','','Item Type: Medium Armor\nDamage Reduction: 30%\nCarrying Capacity: 15k µSCU\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nBackpack Compatibility: Light & Medium \n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres. The Hurston Black variant was made specifically for the company.'), +(18118,'HRST_LaserRepeater_Ventilation_S5','WeaponAttachment','Ventilation','e07e5a82-0664-4f91-97a9-38ce558b3d4b','','',NULL), +(18119,'Door Control','ControlPanel','DoorPart','0ee61eda-35cd-4fcd-8d3a-1ada13ae27a2','','',NULL), +(18120,'MISC_Hull_C_Thruster_VTOL_Rear','ManneuverThruster','JointThruster','a2ffe3e1-e661-4da4-8457-8a5d81c78b4b','','',NULL), +(18121,'Vehicle_Screen_MFD_Holographic_ORIG_890J_B','Display','UNDEFINED','51bee8bb-f0f5-4846-adb2-dd1471efebeb','','',NULL), +(18122,'Flight Blade','FlightController','UNDEFINED','fe4016c4-d716-4c52-9618-3755c5d7f1c6','','',NULL), +(18123,'Constellation microTech Livery','Paints','UNDEFINED','7f49c9d8-9aa7-4a12-8209-ae80ce755094','','','The microTech livery for the Constellation features the company\'s logo atop a white base paint with light blue and grey highlights.'), +(18124,'Avenger Titan TSB Flight Blade','FlightController','UNDEFINED','3f6cbda6-6ad5-4c64-b8ab-52adb2c5951b','','','Manufacturer: Broad & Rabiee\nType: Flight Blade\n\nUnlock the potential of your Aegis Avenger Titan with the TSB Flight Blade from Broad & Rabiee. By re-allocating lateral thrust resources, you can expect your ship deliver increased top speeds in the straightaway.'), +(18125,'Door Control','Door','UNDEFINED','2b140c49-01ac-4209-8045-b18b5c3bb5a3','','',NULL), +(18126,'box_plastic_4_weapon_opened_005x010x00375_a_klwe_rifle_energy_01','Misc','UNDEFINED','325213f9-a39e-440b-99c0-2750388a069e','','',NULL), +(18127,'Door','Door','UNDEFINED','7591f4b8-9807-452b-91fb-9d3ed24ea3ca','','',NULL), +(18128,'Chance Cube','Misc','Utility','28e737c2-0b12-41d9-a411-e1c76939ce65','','','This six-sided die houses a rotating sphere covered in blue and red lights. When rolled, one of the two colors will display on the upper face of the die, helping the user to make binary decisions.'), +(18129,'Uncut SLAM','Cargo','Cargo','c4fb01e3-5844-48a6-ab3c-db78fb306f1b','','',NULL), +(18130,'ANVL_Terrapin_Medic_EmergencyLights','Misc','UNDEFINED','229f71d2-b57a-4943-8df8-60877f4b9ecb','','',NULL), +(18131,'ESPR_Talon_Thruster_Mav_VTOL','ManneuverThruster','JointThruster','4f928711-a0fd-4d58-90f4-721330663fc9','','',NULL), +(18132,'INTK_AEGS_Idris','FuelIntake','Fuel','6c36e41b-c0c8-4f9f-861b-bfe00f9bd82d','','',NULL), +(18133,'Vermillion Apple','Food','Plant','96c4cbe8-61a1-4de3-b624-453bfd576bdd','','','NDR: 18\nHEI: 06\nEffects: Hydrating\n\nThis crisp and sweet apple can be stored for long periods of time without significant loss in quality, texture, or taste.'), +(18134,'Mirai Fury MX 2xS2 Missile Rack','MissileLauncher','MissileRack','901e4ecb-0649-4c78-8e46-0247d84fb084','','','Item Type: Missile Rack\nManufacturer: Mirai\nSize: 3\nMissiles: 2xS2\n\nTo make the Fury a threat despite its small size, Mirai developed this bespoke missile rack, which can carry and deploy two S2 missiles without undermining the ship\'s compact profile.'), +(18135,'Book','Misc','UNDEFINED','470bf233-5e97-4cee-92eb-d4e112923673','','',NULL), +(18136,'Riccite','Cargo','Cargo','04f09064-234a-451a-ae9f-cf6eea51ab54','','',NULL), +(18137,'Internal Tank','FuelTank','Fuel','545cb2fb-fa9e-4a4b-8310-575009438041','','',NULL), +(18138,'MacFlex Arms Twilight','Armor','Arms','d00da1c6-97b3-496a-89d6-22e1562dfb40','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nWhether you\'re planetside or in vacuum, RSI\'s MacFlex industrial armor set has your back. Reinforced plating keeps you safe from environmental hazards while the array of pouches keep your tools accessible.'), +(18139,'drug_packet_4_a','Cargo','UNDEFINED','13414deb-7342-45c3-870d-481f1ac370b1','','',NULL), +(18140,'Weapon Rack','Usable','UNDEFINED','b2d60293-0129-449e-96a4-fef4be8edd93','','',NULL), +(18141,'Door Control','Door','UNDEFINED','b4380692-7e5d-473b-bed2-b2fcbfdd84cc','','',NULL), +(18142,'RSI_Zeus_Thruster_Main','MainThruster','UNDEFINED','c6a39424-0b7b-4ae4-85f1-33127dd79cae','','',NULL), +(18143,'CDF F8C Certification Pass (Gold)','Misc','Personal','119c6f43-c538-427a-869e-3713d900d7c3','','','The Civilian Defense Force is working in conjunction with Anvil Aerospace to test the next generation of volunteers.\n\nThis certification ticket can be redeemed at any rental kiosk to unlock an F8C rental for twenty-four (24) Standard Earth Hours and make the ship available for purchase via the web pledge store.\n\nCongratulations.'), +(18144,'Forgiveness Sweater','Char_Clothing_Torso_0','UNDEFINED','7551d346-d777-4a0d-8d38-4f3072502dca','','','This Luminalia, don\'t just strengthen your bonds with physical presents. Remember to offer your friends and family the most important thing you can: the gift of forgiveness. Featuring a cheeky member of the Nine Tails gang that has been causing havoc in the Stanton system, this collab from MuyMuy and Vaporwear shows that during the holiday season, anyone can turn over a new leaf.'), +(18145,'Centurion Beachhead Camo Livery','Paints','UNDEFINED','b3354c01-87ca-4999-9a8e-f903cf6567f0','','','Become one with the landscape with the Beachhead Camo livery that gives the Centurion a light tan camo pattern.'), +(18146,'MISC_Hull_A_Thruster_Mav_Fixed','ManneuverThruster','FixedThruster','b1e1e2b8-5c27-40c0-8108-046f416575ff','','',NULL), +(18147,'facial_hair_044','Char_Head_Beard','UNDEFINED','6123f89f-420d-40b3-be11-4d7be652589e','','',NULL), +(18148,'Sootho Gloves Vineland','Char_Clothing_Hands','UNDEFINED','49d20d03-6404-4005-9b4b-08fc6a2c077f','','','Pros at keeping your hands safe without sacrificing dexterity, the slip-resistant Sootho gloves deliver solid protection and lasting warmth during chilly or hostile conditions. The tough synthetic leather breaks in well and will stand up to years of frequent use.'), +(18149,'vanduul_pilot_helmet_02_01_01','Armor','Helmet','ba0aae0d-7276-47d7-b7f6-9646b917afa0','','',NULL), +(18150,'ParaMed \"Venule\" Medical Device','Weapon','Small','b12c9d52-1304-4dc2-af97-4c2e39c3df4b','','','Manufacturer: CureLife\nItem Type: Medical Device\n\nThe ParaMed from CureLife is a professional-grade emergency medical device designed to stabilize patients suffering from possible life-threatening injuries. Offering extremely accurate diagnostics and dosing, the ParaMed can treat more patients and offer longer relief with less risk of overdose. The \"Venule\" edition features a rich purple color.'), +(18151,'Access','SeatAccess','UNDEFINED','997f83d8-ce7c-4022-bf85-22388d7141d5','','',NULL), +(18152,'Ship Ammunition','Cargo','Cargo','59ddffc8-2619-454d-96a4-58c9376eec2b','','',NULL), +(18153,'Potassium','Cargo','Cargo','fd89ead8-75f2-4114-b7ab-e1931247ba02','','',NULL), +(18154,'tool_power_1_dock_a','Misc','UNDEFINED','6e49ab4f-561f-4e16-85d7-e58a9e278775','','',NULL), +(18155,'Strata Backpack','Armor','Backpack','a5bb46f9-c728-46c6-a4b2-53f21d96813a','','','Item Type: Medium Backpack\nCarrying Capacity: 127.5K µSCU\nCore Compatibility: Medium & Heavy\n\nMade for miners but ready for any adventure, Greycat Industrial\'s Strata armor provides premium protection and convenient features. Each piece features an angular and precise design to deliver coverage where it\'s most needed most. A toolbelt with convenient pouches and a reinforced backpack offers plenty of storage. The award-winning helmet design has been copied by other manufacturers, but the original still reigns supreme with its high quality materials and next-gen air filtration system that enables clean breathing whether in a deep mine or hostile atmospheres.'), +(18156,'Bottle','Bottle','Default','0d733f89-d75f-4fe1-8867-e5f1b03f3fe0','','','Bottle'), +(18157,'TopLine Apron Pants Ellroy\'s','Char_Clothing_Legs','UNDEFINED','e24343b5-2dc2-423e-a83c-ece7ed09265b','','','Carrying Capacity: 2K µSCU\n\nWith an attached apron and deep side pockets, the TopLine pants from Stegman\'s make even the toughest service jobs a little bit easier.'), +(18158,'Hornet Mk II Canopy Camo Livery','Paints','UNDEFINED','f8270cc1-74de-4330-ba68-13797b13beec','','','Get in close for the kill with the Canopy Camo livery. It utilizes a digital camo pattern consisting of tan, olive, and green to help disguise the Hornet Mk II.'), +(18159,'Scrap','Cargo','Cargo','7793a2be-6fab-4c24-ba97-659e3bb00ea9','','',NULL), +(18160,'ARMR_TMBL_Cyclone_MT','Armor','Medium','74fe3c98-e49e-48f3-8971-3e4b7d8e6710','','',NULL), +(18161,'Siebe Helmet','Armor','Helmet','06cbc938-0b97-4c1b-a4e1-8c5334152deb','','','Item Type: Heavy Utility\nDamage Reduction: 25%\nTemp. Rating: -75 / 225 °C\nRadiation Protection: 33600 REM\nRadiation Scrub Rate: 147.42 REM/s\n\nDurability and a classic aesthetic combine with the Siebe helmet; designed by Caldera to thrive amidst extreme conditions found both in space and atmosphere. Resilient yet lightweight plating and an impact resistant visor provide premium protection, while an integrated monitoring system helps protect the wearer from environmental fluctuations.'), +(18162,'Confidential','Misc','UNDEFINED','af6f5fc6-c5d5-4fb5-b193-a082b055199b','','',NULL), +(18163,'FBL-8a Arms Imperial Red','Armor','Arms','7d741b69-6961-46a4-8949-7d7efbf5f5cd','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nCDS\'s quest to create the ideal light armor continues with the FBL-8a. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible.'), +(18164,'un_glass_tankard_1_a','Misc','UNDEFINED','14ae732d-cb67-4f34-9a61-51db90a77b05','','',NULL), +(18165,'DRAK_Vulture_Thruster_Maneuver_Top','ManneuverThruster','FixedThruster','dce58fb1-5b12-4d24-97b6-b84e4418f7eb','','',NULL), +(18166,'Observer-Max','Radar','MidRangeRadar','ae505920-b4f2-4a3e-b1fd-ec46fa35ac51','','','Item Type: Radar\nManufacturer: Chimera Communications\nSize: 3\nGrade: D\nClass: Industrial\n\nDependable and built to last, the Observer-Max offers standard radar detection.'), +(18167,'HRST_LaserRepeater_FiringMechanism_S5','WeaponAttachment','FiringMechanism','8b379d0a-f93f-4120-8870-9d971b89853d','','',NULL), +(18168,'can_drink_1_pips_b','Cargo','UNDEFINED','5e5e81dd-93e6-4e88-b9ff-8aabd3595cd1','','',NULL), +(18169,'DRAK_Clipper_Seat_Access_Pilot','SeatAccess','UNDEFINED','34c50f0e-1875-4baf-a9fd-6b6bfbc8f18f','','',NULL), +(18170,'Adrift Shirt Black','Char_Clothing_Torso_0','UNDEFINED','e2d17acd-f65b-47bd-9ad1-805d5c604b21','','','The Adrift mock neck sweater takes the idea of fashion as entertainment to the next level. This comfortable fiber blend material features a special vid-fabric depicting a dynamic space scene to ensure that people won\'t be able to keep their eyes off you.'), +(18171,'GATS_BallisticCannon_Barrel_S2','WeaponAttachment','Barrel','a2dac8c7-296b-4960-ac91-b0431bc9f824','','',NULL), +(18172,'Aegis Gladius - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','26481148-0cf9-434c-817c-06695b8c86c5','','','Aegis Gladius - Decoy Launcher'), +(18173,'Door Control','Door','UNDEFINED','1df1cce0-249d-4722-a3c3-2da3e364729c','','',NULL), +(18174,'Remote Turret','Turret','GunTurret','ae9ea0b6-c912-4857-93fe-f4dc9c9284e9','','','Remote Turret'), +(18175,'Cumulus Jacket Teal','Char_Clothing_Torso_1','UNDEFINED','aff73778-73a4-450e-b6dd-56817adac3cf','','','Temp. Rating: -35 / 10 °C\nCarrying Capacity: 5K µSCU\n\nBe bold and brave the cold in frigid conditions up to -35 °C with the Cumulus\'s special thermal lining. An oversized, insulated hood provides additional protection around the head, while the distinct quilted torso stops snow, ice, and wind from seeping in, ensuring the wearer remains warm and dry.'), +(18176,'facial_hair_029','Char_Head_Beard','UNDEFINED','09b25ba2-4e5d-4135-8d27-5649227b7a74','','',NULL), +(18177,'Seat','Usable','UNDEFINED','0e7e85ae-9693-4726-9238-dc2db0ce487c','','',NULL), +(18178,'Monde Arms Hemlock Camo','Armor','Arms','fb77fe68-a6d9-44a3-b24d-426140557784','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nFrom the masterwork designers of Kilgore & Poole comes the Monde heavy armor. Effortlessly integrating triple-laminate plating with the latest in defensive technology, this armor provides battle-ready protection with a next-class comfort system and specialized flex-point joints.\n\nThe Hemlock edition features a green camo pattern.'), +(18179,'Seat','Usable','UNDEFINED','ef53dff4-a29a-44d5-b092-319bde6518cc','','',NULL), +(18180,'ARMR_MISC_Razor','Armor','Medium','ad4f143d-d71c-4958-8814-91ad73049ab2','','',NULL), +(18181,'Morozov-SH Core','Armor','Torso','2dd4b126-eb45-427f-870d-4e1b4de3a22d','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -90 / 115 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 12K µSCU\nBackpacks: All\n\nFeaturing fortified armor plating, special anti-rip protective padding and ample storage, the Morozov-SH is ready to overcome all kinds of adversity. After consulting with security professionals, RRS added a unique high protective collar and a lightweight inner lining based on their recommendation; making the Morozov-SH both comfortable and a battlefield stalwart.'), +(18182,'Venture Undersuit Starcrossed','Armor','Undersuit','3aa6f91b-d9be-4e85-9e2c-c415e4a3d83f','','','Item Type: Undersuit\nDamage Reduction: 10%\nTemp. Rating: -30 / 60 °C\nRadiation Protection: 15200 REM\nRadiation Scrub Rate: 81 REM/s\nCarrying Capacity: 8.0 µSCU\n\nWhether you’re discovering bold new frontiers or simply stretching your legs after a long spaceflight, Robert Space Industries’ Venture Explorer Suit takes vacuum-safe wear to the next level with its incorporation of top-of-class safety features seamlessly blended with phenomenal freedom of movement. This special Starcrossed edition is modeled after the armor worn by Yuri Ilyin in the famous 25th century vid, Coramor, which inspired the eponymous lovers\' festival.'), +(18183,'Jumping Limes','Cargo','Cargo','3c0d72b5-d5c4-4897-9e2d-5723cec367ee','','',NULL), +(18184,'Flight Blade','FlightController','UNDEFINED','b4a04bb3-115a-4a60-aca1-5d8e77e85c3e','','',NULL), +(18185,'Pulverizer \"Bleach\" LMG','Weapon','Medium','86dc8e62-9c03-49d6-b3e6-8d000cdde05e','','','Manufacturer: Unknown\nItem Type: LMG\nClass: Ballistic\n\nMagazine Size: 120\nRate Of Fire: 355 rpm\nEffective Range: 100 m\n\nNothing like ripping through a huge mag of .50 cal bullets to scare away unwanted guests. Based on a modified FS9, the Pulverizer LMG wastes no time with pleasantries, instead lends itself to a more direct confrontational approach. \n\nThe Bleach version features a white paintjob.'), +(18186,'MSD-616 Missile Rack','MissileLauncher','MissileRack','a88d063a-2351-4a0b-b22d-ac7a4a9f6b9f','','','Item Type: Missile Rack\nManufacturer: Behring\nSize: 6\nMissiles: 1xS6\n\nBehring’s MSD-616 \"Marsden\" is a complete ordnance storage and deployment system that can be mounted on any compatible size 6 hardpoint for the reliable and effective launch of one S6 missile.'), +(18187,'Railing_Straight_8m_Hightech_Plate_Trim_a','Usable','UNDEFINED','963fb94b-3981-47d2-876b-0160f7409014','','',NULL), +(18188,'Carryable_1H_CY_tool_manual_socket_1_d','Misc','UNDEFINED','5303ecbb-9d51-460c-82a5-13e345c7cf9b','','',NULL), +(18189,'Horizon Helmet \"Rust Society\"','Armor','Helmet','c2fd068d-6054-4815-b46e-5243f749dffc','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -37 / 67 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Horizon helmet is a durable and robust environmental enclosed work helmet. The single sheet laminate dome gives you an extremely wide field of view. A pair of side-mounted LED light modules provide additional illumination to make sure you can see what you\'re doing. The Rust Society edition celebrates blue-collar workers with an exclusive red and tan coloration that hides dirt and wear and tear well.'), +(18190,'Koya Pants Dark Blue','Char_Clothing_Legs','UNDEFINED','29a81172-9a88-43cf-827d-db1006d03c20','','','Carrying Capacity: 1K µSCU\n\nThe Koya are stylish slim cut pants featuring color accents on the pockets and cuffs. Made from a special stain resistant, soft fabric blend, they are paired with a brown belt featuring a gold buckle.'), +(18191,'Paint_Prospector_Default','Paints','UNDEFINED','f6127d7b-9185-49a6-b5fa-d202199f2c35','','',NULL), +(18192,'Door','Door','UNDEFINED','fed44810-f5cc-408b-94ab-3afa8c7406ab','','',NULL), +(18193,'Camion Jacket','Char_Clothing_Torso_1','UNDEFINED','0bd45a67-121e-46bd-a25d-a7b6d84cc431','','','Carrying Capacity: 1K µSCU\n\nCome prepared with the Camion. This button up blue jacket delivers on style with complimentary dark brown synthetic leather around the neck, shoulders, and arms. A cross-shoulder sling bag and integrated utility belt allows you to carry plenty of gear and keep it organized.'), +(18194,'C54 SMG','Weapon','Medium','5a8e3a45-74fa-42db-839b-ad794f1bd890','','','Manufacturer: Gemini\nItem Type: SMG\nClass: Ballistic\n\nMagazine Size: 50\nRate Of Fire: 1,100 rpm\nEffective Range: 35m\n\nAttachments: Barrel (S1), Optics (S1), Underbarrel (S1)\n\nEasy to handle and a beauty to behold with its purple accented styling, the C54 is a sleek and precisely balanced SMG from Gemini. Its lightweight polymer frame and ergonomic design makes it ideal for close quarter engagements. The C54 is capable of firing 10mm rounds on full auto to provide maximum support and target saturation to ensure that any engagement ends quick.'), +(18195,'Janalite','Cargo','Cargo','1508a565-5488-43df-9de5-e2e27c619694','','',NULL), +(18196,'Laranite (Raw)','Cargo','Cargo','662c28bd-c066-4afd-b3d4-d2da43df9779','','',NULL), +(18197,'ANVL_Carrack_Thruster_Main','MainThruster','FixedThruster','35f63f1b-d1c0-47da-b61f-a54c3234cda2','','',NULL), +(18198,'Medical Bed','Usable','UNDEFINED','e68a6e59-84ca-4889-90f3-cfd31cf59cc1','','',NULL), +(18199,'CRUS_Spirit_Thruster_Main_B','MainThruster','UNDEFINED','639bcb29-5f4c-4158-81ce-f0861dc50f73','','',NULL), +(18200,'DRAK_Cutlass_DockingTube','DockingCollar','UNDEFINED','cfaf4c92-dbe0-4ee2-8a15-dbd2c0a0c7d4','','',NULL), +(18201,'Cutter Cliffhanger Livery','Paints','UNDEFINED','1ba0c15f-c1cf-42a2-a1d0-edd1c72985d6','','','Primarily beige with brown accent stripes and black highlights, the Cliffhanger livery makes the Cutter look rugged yet refined.'), +(18202,'Seat','Usable','UNDEFINED','71e8591a-4186-4b10-8002-8a318b35cf11','','',NULL), +(18203,'KRIG_P52_Merlin_WingTip_Left','AttachedPart','UNDEFINED','cb5b0dfa-8a04-40ca-be8c-9c3ebe6c5213','','',NULL), +(18204,'Custodian \"Warhawk\" SMG','Weapon','Medium','ea52b726-ce0e-43f2-8e97-02dd578d4cf1','','','Manufacturer: Kastak Arms\nItem Type: SMG\nClass: Energy (Laser)\n\nBattery Size: 60\nRate Of Fire: 800 rpm\nEffective Range: 30 m\n\nAttachments: Optics (S1), Barrel (S1), Underbarrel (S1)\n\nThe Custodian SMG from Kastak Arms focuses on a high rate of fire over damage and accuracy making it an ideal choice for sweeping through tight environments and close quarters combat.'), +(18205,'FSK-8 \"Bloodline\" Combat Knife ','Weapon','Knife','71c3e4fe-226c-47e7-953c-708493db212b','','','Manufacturer: UltiFlex\nItem Type: Knife\nClass: Melee\n\nSize: 16 cm\n\nThe FSK-8 Combat Knife from UltiFlex is as sparse a weapon as you can get. While many become enamored with dazzling tech of modern weaponry, UltiFlex has focused on making a simple effective combat tool. Featuring a balanced 1055 carbon steel blade honed to a razor\'s edge, this knife is capable of handling all the abuse you can throw at it.'), +(18206,'Carinite (Pure)','Cargo','Cargo','e8bb7b47-b62b-4a8f-99d6-7f65f3290b93','','','Typical carinite sources feature various impurities. However, under certain extremely rare conditions, carinite veins that are more than 90% pure can form. Computing hardware that demands exacting precision will usually seek out pure carinite.'), +(18207,'can_drink_3_guc_shop_2x5_a','ShopDisplay','Default','0170b70b-502b-4555-94e4-d464ca7e5c7d','','',NULL), +(18208,'Navoi Boots and Pants','Char_Clothing_Legs','UNDEFINED','070141dc-b82a-4fed-a9f6-26def39d7187','','','Carrying Capacity: 0.4K µSCU\n\nBe ready to take on whatever the day brings when wearing the Navoi. This unique piece integrates the pants perfectly into knee high boots. Made from a combination of synthetic materials to be tough yet comfortable, the Navoi also comes with shin pads and pouches strapped onto each leg.'), +(18209,'f_human_mannequin_legacy_outlaw_medium','ShopDisplay','UNDEFINED','72ecae9d-0324-4965-97d5-7437cf69d0a4','','',NULL), +(18210,'MPUV Lovestruck Livery','Paints','UNDEFINED','c0e2bd7d-39a4-4299-a7fe-015301679341','','','Inspired by the colors of Coramor, the Lovestruck livery is a stylish metallic pink and black look for your MPUV.'), +(18211,'ORIG_600i_Thruster_Mav_Fixed_01','ManneuverThruster','FixedThruster','7e2015d0-4518-45cf-8b73-b3b4f6d6d1ee','','',NULL), +(18212,'Pink Heart Hologram','Misc','Flair_Wall_Picture','e27e5cfd-5827-464f-8612-a37d901edc86','','','Let your love proudly shine with this deployable hologram that displays a large, glowing pink heart. Makes an ideal backdrop for your next romantic evening or Coramor photoshoot.'), +(18213,'Covalex_Datapad_Report_4x3_Screen','Display','UNDEFINED','66192cbf-e5b8-4213-91df-2b8339ab660c','','',NULL), +(18214,'Jericho XL','Weapon','Rocket','501a4017-d754-43d7-933b-72773d761303','','','Item Type: Rocket Pod\nManufacturer: Hurston Dynamics\nSize: 3\nRockets: 18xS1\n\nThe Jericho XL rocket pod from Hurston Dynamics is compatible with any size three hardpoint and capable of carrying eighteen S1 rockets.'), +(18215,'Cargo_Comm_125x3_Vice_Etam','Cargo','Cargo','219b9794-4e10-4772-ae29-2f7c741cb32a','','',NULL), +(18216,'Ball','Char_Head_Piercings','UNDEFINED','4d1f610e-78bd-4a0a-a911-e717ae753d51','','',NULL), +(18217,'sc_marine_bdu_gloves_01_01_12','Char_Clothing_Hands','UNDEFINED','e8c966e7-7c71-47ce-8a32-f9f3c3725416','','',NULL), +(18218,'Esperia Stinger Missile Rack','MissileLauncher','MissileRack','1de02adf-1980-4fcb-af0a-2d6f2508c8ee','','','Item Type: Missile Rack\nManufacturer: Esperia\nSize: 5\nMissiles: 8xS2 \n\nThis S5 missile rack can be equipped with eight S2 missiles.'), +(18219,'Aril Core Hazard','Armor','Torso','97254847-0046-40e6-af83-f71ec35f4ac5','','','Item Type: Medium Armor\nDamage Reduction: 30%\nTemp. Rating: -61 / 91 °C\nRadiation Protection: 26400 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 6.4 µSCU\nBackpacks: Medium, Light\n \nOriginally designed for miners, the Aril armor includes a fully enclosed helmet and high collar providing additional support and protection for the neck and back of the head. An integrated tool belt and attachable backpack can accommodate a variety of tools and supplies to keep your hands free. The Aril armor is available in a variety of vibrant colors to fit your personal taste and for easy identification on the jobsite.'), +(18220,'Tolo Jacket','Char_Clothing_Torso_1','UNDEFINED','02d1c0a5-6f01-4798-a760-308186a22c57','','','Carrying Capacity: 1K µSCU\n\nA creatively integrated dickey gives the Tolo its fashionable and unconventional look. This three quarter sleeve shirt also features small epaulettes perched atop each shoulder.'), +(18221,'SHIELDS','ShieldController','UNDEFINED','6471a9e6-dbb7-4d62-af02-f2af3bb562c9','','',NULL), +(18222,'Vehicle_Screen_MFD_Holographic_Talon_TL','Display','UNDEFINED','b60d3f25-8bdc-46df-a469-cb5c91352a99','','',NULL), +(18223,'Door_Ship_Sensor_Proximity_1_5x1_5x1_4','Sensor','DoorPart','003dc720-f53c-415c-b78d-9f0be72e2a53','','',NULL), +(18224,'AEGS_Door_Decal_Escapepods_02','Decal','DoorPart','a6691318-ae57-4edf-b10f-69b4bf649f53','','',NULL), +(18225,'AEGS_Idris_SCItem_Seat_Bridge_Rear_Left_Blocked','Seat','UNDEFINED','67c59d0d-139b-4239-9eb9-ab6663d2f36d','','',NULL), +(18226,'SHIELDS','ShieldController','UNDEFINED','d82aff21-e7b7-44bf-badb-ceea363d9e7e','','',NULL), +(18227,'Locker_Suit_RSI_Zeus','Usable','UNDEFINED','5c2d0540-6929-4018-9cd9-f528359bfe53','','',NULL), +(18228,'HLX99 Hyperprocessors','Cargo','Cargo','bc4b7820-7cfd-4580-9398-b3e6e0c5efd1','','',NULL), +(18229,'fruit_plant_2_b_6003','Misc','UNDEFINED','00d7baf4-10f4-4432-b7e9-ea123fe9914f','','',NULL), +(18230,'Weapon_Ship_Cz_003','Usable','UNDEFINED','4439943d-9195-405b-9034-16004e9ee397','','',NULL), +(18231,'fruit_plant_2_b_4003','Misc','UNDEFINED','996ca113-1422-44fa-b5b2-aca70d001141','','',NULL), +(18232,'fruit_plant_2_b_5003','Misc','UNDEFINED','bb90eada-1e2d-4cb7-babf-9220da6efa6a','','',NULL), +(18233,'Outback Legs Grime Blue','Armor','Legs','8e1d5681-142a-4011-ac53-513746bbb594','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -65 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2k µSCU\n\nThese durable, reinforced leather pants are not only practical for traversal through inhospitable territory, the metal plated boots will keep you protected along the long road ahead. The Grime version is dyed a dusky blue to keep you subtle, but not unsightly.'), +(18234,'fruit_plant_2_b_2003','Misc','UNDEFINED','a9ae0354-8624-40a9-a0c2-4efc961f91aa','','',NULL), +(18235,'Leyland\'s Tortoise','Misc','UNDEFINED','aac37778-a0a3-4d4a-9e18-4dabea3e24a6','','','Leyland’s tortoise is a species of tortoise indigenous to Earth (Sol III). Extremely docile, they are kept as pets by Humans, especially long-haul spacers. Over-collection and habitat destruction have made them nearly extinct in the wild.'), +(18236,'fruit_plant_2_b_3003','Misc','UNDEFINED','b6d9ed26-dfa2-442a-9ba3-7986c5a17d7a','','',NULL), +(18237,'TRGT. STATUS','Seat','UNDEFINED','6e8607da-e999-41bb-aa86-f2ae0c850bb9','','',NULL), +(18238,'Tacit Suppressor3','WeaponAttachment','Barrel','d292ae90-a9bb-4a37-8651-27dd81b67ead','','','Manufacturer: ArmaMod\nType: Suppressor\nAttachment Point: Barrel\nSize: 3\n\nDamage: -8%\nAudible Range: -60%\n\nStrike silently with the Tacit Supressor3. ArmaMod uses a proprietary ceramic coating inside the suppressor to ensure the sound of gunfire remains minimal.'), +(18239,'Door Control','ControlPanel','DoorPart','4d8d544c-35ef-4e89-94fa-82508665b14b','','',NULL), +(18240,'Diamond (Raw)','Cargo','Cargo','9973c552-caf0-45fe-8425-55df590dd792','','',NULL), +(18241,'Libio Jacket Imperial','Char_Clothing_Torso_1','UNDEFINED','e0e7791f-c577-4925-9a33-2912ad6de98f','','','Carrying Capacity: 1K µSCU\n\nOne of OpalSky\'s classic pullovers, the Libio features a two-tone asymmetrical pattern and polyweave blend to keep it elegant and striking every time you wear it.\n\nWomen\'s sizes currently out of stock.'), +(18242,'ANVL_Door_Decal_Carrack_Exit','Decal','DoorPart','f7abc37e-f5f3-4d0e-9c38-d088c77edac7','','',NULL), +(18243,'Avenger Stalker Ship Armor','Armor','Medium','b3b23908-e9ab-4c46-93ed-ecd20aaf65c3','','','Avenger Stalker Ship Armor'), +(18244,'Internal Tank','FuelTank','Fuel','643bf1d5-ffdd-49d3-b33f-77c2d6a53fdc','','',NULL), +(18245,'Grammercy Food Service Jacket','Char_Clothing_Torso_1','UNDEFINED','b06569c0-391f-4e1d-b796-d115092a8fc3','','','Carrying Capacity: 1K µSCU\n\nThe Grammercy Food Service Jacket is a standard food service accessory produced by Code Blue Apparel\'s professional division. The jacket, first adapted from one of the company\'s bespoke surgeons coats, is the modern standard for chefs and line cooks. The jacket is constructed from a patented stain-resistant material that can be quickly cleaned.'), +(18246,'ARMR_RSI_Scorpius','Armor','Medium','c5d28d34-43e5-4075-a83d-8ec8def61a8d','','',NULL), +(18247,'H_Dashboard_Projector_HUD_ANVL_Hornet_F7_Mk2','Display','UNDEFINED','58977576-5b4c-4c54-9def-1dd8d0771045','','',NULL), +(18248,'Falston Jumpsuit \"Ling Edition\"','Char_Clothing_Torso_1','UNDEFINED','878571fb-09bd-4865-8ebd-e92f658ff83b','','','Carrying Capacity: 1K µSCU\n\nThe Falston jumpsuit has a high collar to guard against the elements, triple-reinforced stitching, and an extra soft interior lining because everyone deserves a bit of comfort.'), +(18249,'Food_bowl_cereal_01_a','Food','Consumable','1b61e264-b60c-4530-a6eb-1649e250aedb','','',NULL), +(18250,'Vulture Assembly Livery','Paints','UNDEFINED','31013aa3-8656-4974-a2ae-fa2ae34dacee','','','Make them see red! The Assembly livery is a full fuselage red design with black and silver accents that makes sure your spacecraft is easily identifiable during salvage operations.'), +(18251,'Door','Cargo','UNDEFINED','1a6113e2-cf54-47a0-9f6d-8149c7409e20','','',NULL), +(18252,'display_item_noGeo_01Port','ShopDisplay','UNDEFINED','dc0f22b1-7218-473f-ba2a-ea9b50c73b08','','',NULL), +(18253,'Tussock Boots Olivine','Char_Clothing_Feet','UNDEFINED','5a54cf93-f98d-494e-a735-8e8a7b7bb91e','','','A proprietary blend of natural and artificial leather provides the Tussock Boot with unbeatable toughness, making it the perfect fit for both work and leisure.'), +(18254,'Carryable_1H_SQ_Datapad_Fluff_Orb_GenericGang_004','Misc','UNDEFINED','4245c648-9593-42b2-8423-cad26e0bbd00','','',NULL), +(18255,'Pico the Penguin Plushie','Misc','Personal','4ff54eea-238b-4d69-9812-43a32ce0bf0a','','','This adorable mascot of New Babbage loves nothing more than carving their way down the snow covered slopes of microTech.'), +(18256,'Carryable_1H_CY_toilet_roll_a','Misc','UNDEFINED','c587c498-86b8-45b8-8f15-b5b7423d8d75','','',NULL), +(18257,'XNAA_SanTokYai_Thruster_Mav_Top','ManneuverThruster','FlexThruster','a974bf7b-0dfe-4c94-904b-4eb72a347945','','',NULL), +(18258,'Door Control','Door','UNDEFINED','ed4f8035-d725-446e-ab87-d9810b901b35','','',NULL), +(18259,'Pico the Penguin Plushie','Misc','Personal','b1f6cc6f-f46a-441a-a1ba-8393c33ad35e','','','This adorable mascot of New Babbage loves nothing more than carving their way down the snow covered slopes of microTech.'), +(18260,'Xa\'Pyen','Cargo','Cargo','09515166-7ed9-4b77-93ea-dc54af4a631b','','',NULL), +(18261,'Bengal_BallisticCannon_FiringMechanism_S8','WeaponAttachment','FiringMechanism','69808bb3-78c5-447e-85d4-798a7a664683','','',NULL), +(18262,'Overlord Legs Predator','Armor','Legs','0df0262a-6ec4-440a-9a14-d75c3fe36510','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -77 / 107 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 7.5 µSCU\n\nThe Overlord armor lets your foes know that you mean business. This heavy armor set is constructed with durable composite plating strategically placed to disperse the force of impacts and a high, reinforced collar that provides additional protection for your neck and back of head. The suit also layers in high-strength synthetic fabrics around the joints to ensure ease of moment without sacrificing safety.'), +(18263,'FBL-8a Helmet Righteous','Armor','Helmet','43ce2666-ab9a-4c05-a2ba-c4ac648fc381','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -35 / 65 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nBased on CDS\' FBL-8a combat armor, this set has been modified from its original form. This light armor will keep you fast on your feet with its strategic mix of protective plating and reinforced nano-weave fabrics. While the armor works with any undersuit, it was specifically designed to match the FBL-8u undersuit with special attention given to how the two fit together to make the set as streamlined and responsive as possible. Visor is AR crosshair compatible.'), +(18264,'SalvageFillerStation_ARGO_MOTH_Right','SalvageFillerStation','UNDEFINED','80d39f24-7b21-405a-920b-26d41afa79b8','','',NULL), +(18265,'Bioplastic','Cargo','Cargo','44132f93-eb40-40ef-ae7b-991b2455cb9b','','',NULL), +(18266,'Ventra Gloves Dark Green','Char_Clothing_Hands','UNDEFINED','a3ab9174-82c5-4251-9d38-ecc4d60029b0','','','Keep your hands warm and dry with Fiore\'s Ventra gloves. Microstitching creates a snug, tailored fit to keep you looking stylish and warm.'), +(18267,'KRIG_l21_Wolf_Thruster_Main','MainThruster','UNDEFINED','e27b3e99-dacf-42d9-9e15-1da2e53b409a','','',NULL), +(18268,'Tona Shoes Twilight','Char_Clothing_Feet','UNDEFINED','5895e428-8dce-4ace-bfc5-cf60e84e236c','','','Perfect for hiking or fieldwork, the Tona from R6 Pro is a low-top sneaker built out of breathable Cheofreme materials which not only provide extra protection against impacts, but keep your feet dry.'), +(18269,'Door Control','ControlPanel','DoorPart','1abc0ddf-8fbf-4eb6-9e98-74555cd5ed07','','',NULL), +(18270,'Cargo Door','Door','UNDEFINED','63c25a0d-77bc-47a2-8bfb-f41cc5def8eb','','',NULL), +(18271,'Paint_300_SeatTrim_Aluminum','Misc','UNDEFINED','b6d5d82e-b47a-4904-8ad2-de1eb059f12b','','',NULL), +(18272,'Viper III Missile','Missile','Missile','e5aa84b6-9b14-4eb3-949f-10e1cc8cd6cf','','','Manufacturer: Nova Pyrotechnica\nTracking Signal: Infrared\nSize: 3\n\nNova has worked hard to insure that their infrared tracking Viper strike missile lives up to its name by delivering agile and lethal attacks against hostile targets.'), +(18273,'Neograph','Cargo','Cargo','8ccbe590-4b61-4418-b857-32c316a3bc02','','',NULL), +(18274,'Mercury Star Runner Silver Spark Livery','Paints','UNDEFINED','daeea277-f1d1-4a81-ab17-4753eb7cc11a','','','Emphasize the special shape of the Mercury Star Runner with the Silver Spark livery featuring yellow highlights expertly integrated into the grey and black paint scheme.'), +(18275,'ESPR_BallisticCannon_Ventilation_S4','WeaponAttachment','Ventilation','1a5e2687-5c3d-4dc8-bb5f-f54312a9eec3','','',NULL), +(18276,'Lynx Legs','Armor','Legs','be1ffc25-c87f-4c26-8a55-692f752a80fe','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -31 / 61 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 5K µSCU\n\nMaintain your mobility with the Lynx combat armor. A high tech polymer weave allows the wearer to withstand enough damage to quickly escape danger. The suit\'s striking look became famous after being worn by the Seeker in the widely popular \"Fire and Fury\" vids of the mid-2800s.'), +(18277,'Carryable_1H_SQ_DataPad_Fluff_StormBreaker_DataFacility_Safe04','Misc','UNDEFINED','c7cb0a88-d650-43dd-8c13-20c92ef81f1e','','',NULL), +(18278,'Venture Helmet White','Armor','Helmet','050fff8c-8e8c-46bf-a4a8-324c88615e80','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\n\nRSI\'s Venture helmet is built from impact-resistant composites and designed to weather the harshest of environments. It also features an anti-scuff laminate faceplate that offers an unparalleled upward field of view, providing unobstructed sightlines to whatever wonders you discover.'), +(18279,'Ketchum Beanie Orange','Char_Clothing_Hat','UNDEFINED','71019193-981b-4fd2-8bff-11afc1924bee','','','Complete your cool-weather wardrobe with the classic Ketchum beanie from Alejo Brothers.'), +(18280,'CargoBox_050x050x050_Tank_Gas_Stacked_3','Cargo','Cargo','0aada8c4-1ffc-4cd0-920f-f1833007895e','','',NULL), +(18281,'Arden-SL Legs Coramor Edition \"Fate\"','Armor','Legs','d474694a-bc71-425e-89db-14527fea2820','','','Item Type: Light Armor\nDamage Reduction: 20%\nTemp. Rating: -38 / 68 °C\nRadiation Protection: 26000 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 2.0 µSCU\n\nWith its excellent design and eye-catching style, the Arden-SL armor exemplifies why security specialists love Roussimoff Rehabilitation Systems. This versatile armor set lets the wearer stay agile but safe thanks to the precise placement of special composite armor plating and fabrics. The special Coramor Fate edition been updated with vibrant pink and light grey coloring.'), +(18282,'Millrun Waders Mandalay','Char_Clothing_Legs','UNDEFINED','e082f2c9-a031-4060-9ce2-a6799e310e1f','','','Carrying Capacity: 400 µSCU\n\nA combination of waterproof and weather-resistant pants and boots, the Millrun Waders are a comfortable option for uncomfortable work.'), +(18283,'Carryable_1H_SQ_drug_stim_1_b','Misc','UNDEFINED','30bff1e7-c7d9-44c6-a39e-e96b3876f92a','','',NULL), +(18284,'Xa\'Pyen','Cargo','Cargo','f219c48f-97fd-4db9-b7af-88c3ed5c0f1b','','',NULL), +(18285,'Manned Turret','TurretBase','MannedTurret','222c0230-d9b5-4264-bcc6-ca8e93bb8a36','','',NULL), +(18286,'Internal Tank','FuelTank','Fuel','7a15d210-9966-4652-b301-cd29eac5d7bf','','',NULL), +(18287,'Decari Pod','Cargo','Cargo','95a01fda-e346-4df2-a452-8bdec078d967','','',NULL), +(18288,'ARMR_MRAI_Guardian_MX','Armor','Medium','45b332ee-8b50-3ea2-9bc7-21255ec7a2a4','','',NULL), +(18289,'Weapon_Rack_TMBL_Nova_4_Slot','Usable','UNDEFINED','dd6102d5-65cb-4a18-a13d-cb06a781eb71','','',NULL), +(18290,'Cumulus Pants Red','Char_Clothing_Legs','UNDEFINED','6ac8256f-bca6-4b7d-9506-65833bead805','','','Temp. Rating: -35 / 15 °C\nCarrying Capacity: 3K µSCU\n\nBe bold and brave the cold with Cumulus pants. Designed with a synthetic fabric that insulates the inside and wicks away moisture from the outside, these pants provide protection against temperature drops to -35 °C.'), +(18291,'Joker Defcon - Decoy Launcher','WeaponDefensive','CountermeasureLauncher','2b0f4414-1545-46c3-8db1-d2b949279142','','','Joker Defcon - Decoy Launcher'), +(18292,'Beryl','Cargo','Cargo','a26120f9-d535-4f56-892c-823abb7afa3a','','',NULL), +(18293,'Ati Jacket Red','Char_Clothing_Torso_1','UNDEFINED','d2acbe0d-3d10-420d-a272-5355741cc4d0','','','Carrying Capacity: 2K µSCU\n\nFiore\'s is a modern update of traditional Earth design. Slim tailoring, a high collar, and striking asymmetrical design make this overcoat a must-have item for any wardrobe.'), +(18294,'Condiment','Misc','UNDEFINED','9df44dd0-3fbf-4588-9088-a8301a5e56e9','','',NULL), +(18295,'Door Control','Door','UNDEFINED','f1c417de-0977-4c95-89e0-50d0a40b1df7','','',NULL), +(18296,'Bed','Seat','UNDEFINED','24f896e9-f5ff-448e-bc13-8e3b777b75d5','','',NULL), +(18297,'Pite','Char_Head_Piercings','UNDEFINED','0f555b27-d4fa-4da8-a97f-6e49b145d7c9','','',NULL), +(18298,'Atavi Shirt Olive','Char_Clothing_Torso_0','UNDEFINED','e3fe8974-ad58-4522-bd26-186dd3b6e03f','','','MuyMuy\'s Atavi line of casual shirts are comfortable enough to wear at home, but stylish enough for a night out. They are made with EasyCare technology to maintain the colors during repeated washes.'), +(18299,'Stirling Exploration Backpack Sandstorm Edition','Armor','Backpack','cc7c3f5f-c7ef-45cd-ada8-ca580fc4f108','','','Item Type: Heavy Backpack\nCarrying Capacity: 180K µSCU\nCore Compatibility: Heavy\n\nThis heavy duty backpack is compatible with the Stirling suit and provides a convenient storage solution. The Sandstorm Edition merges tans, beiges, and grays providing a sandy appearance.'), +(18300,'Zeus Headhunters Trauma Livery','Paints','UNDEFINED','8c7efc81-3742-4539-8dc4-102a25032c57','','','Show your loyalty to the Headhunters gang with this livery featuring their logo emblazoned on a dark grey hull accented with a vibrant purple.'), +(18301,'SHIELDS','ShieldController','UNDEFINED','12044342-6ad6-4a70-9938-a7a070b8b0dc','','',NULL), +(18302,'Weapon_Rack_1_Volt_SMG_Uncommon_002','Usable','UNDEFINED','c6f70d15-fd13-4d59-80b3-516c7e46f863','','',NULL), +(18303,'SHIELDS','ShieldController','UNDEFINED','5ea113f7-5df4-46b4-8a25-beccf131e969','','',NULL), +(18304,'Corbel Core Halcyon','Armor','Torso','0c784b35-76dc-4b43-b74e-268b12dec72c','','','Item Type: Heavy Armor\nDamage Reduction: 40%\nTemp. Rating: -70 / 100 °C\nRadiation Protection: 26800 REM\nRadiation Scrub Rate: 145.8 REM/s\nCarrying Capacity: 8.0 µSCU\nBackpacks: All\n\nOriginally designed as a strength enhancement suit to give factory workers better lifting power, CDS found wider application in utilizing its defensive capabilities. It\'s triple-enforced armor plating provides extreme physical protection, with deliberate placing of materials to protect the most vulnerable parts of the body. A series of pneumatic levers offer increased flexibility in the joints, alleviating pressure and weight in key areas to create an accessible and highly protective armor despite its heavy weight.\n\nThe Halcyon edition displays a sharp contrast of bold yellow and muted black.'); +/*!40000 ALTER TABLE `tbl_scobjs` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tbl_scpreset` +-- + +DROP TABLE IF EXISTS `tbl_scpreset`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `tbl_scpreset` ( + `cl_scpreset_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `cl_scpreset_manufacture_id` int(10) unsigned DEFAULT NULL, + `cl_scpreset_vaisseau_id` int(10) unsigned DEFAULT NULL, + `cl_scpreset_name` varchar(255) NOT NULL, + `cl_scpreset_manufacturer` varchar(255) NOT NULL, + `cl_scpreset_description` text DEFAULT NULL, + `cl_scpreset_link` varchar(255) NOT NULL, + `cl_scpreset_creator` varchar(255) DEFAULT 'admin', + PRIMARY KEY (`cl_scpreset_id`), + KEY `fk_scpreset_manufacture` (`cl_scpreset_manufacture_id`), + KEY `fk_scpreset_vaisseau` (`cl_scpreset_vaisseau_id`), + CONSTRAINT `fk_scpreset_manufacture` FOREIGN KEY (`cl_scpreset_manufacture_id`) REFERENCES `tbl_scmanufactures` (`cl_scmanufactures_id`), + CONSTRAINT `fk_scpreset_vaisseau` FOREIGN KEY (`cl_scpreset_vaisseau_id`) REFERENCES `tbl_scvaisseaux` (`cl_scvaisseaux_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; -INSERT INTO `tbl_scitemcustom` (`cl_scitemcustom_id`,`cl_scitemcustom_owner_auth_id`,`cl_scitemcustom_obj_id`,`cl_scitemcustom_created_at`) VALUES -('1',NULL,'9691','2026-04-08 18:35:15'), -('2','1','9691','2026-04-08 19:02:41'), -('3','1','6157','2026-04-08 21:38:23'); +-- +-- Dumping data for table `tbl_scpreset` +-- -DROP TABLE IF EXISTS `tbl_scitemcustomstat`; -CREATE TABLE `tbl_scitemcustomstat` ( - `cl_scitemcustomstat_id` int(11) NOT NULL AUTO_INCREMENT, - `cl_scitemcustomstat_itemcustom_id` int(11) NOT NULL, - `cl_scitemcustomstat_stat_id` int(11) NOT NULL, - `cl_scitemcustomstat_sign` enum('+','','-') NOT NULL DEFAULT '+', - `cl_scitemcustomstat_value` decimal(10,2) NOT NULL DEFAULT 0.00, - `cl_scitemcustomstat_created_at` datetime NOT NULL DEFAULT current_timestamp(), - PRIMARY KEY (`cl_scitemcustomstat_id`), - UNIQUE KEY `uq_scitemcustomstat_item_stat` (`cl_scitemcustomstat_itemcustom_id`,`cl_scitemcustomstat_stat_id`), - KEY `idx_scitemcustomstat_item` (`cl_scitemcustomstat_itemcustom_id`), - KEY `idx_scitemcustomstat_stat` (`cl_scitemcustomstat_stat_id`), - CONSTRAINT `fk_scitemcustomstat_item` FOREIGN KEY (`cl_scitemcustomstat_itemcustom_id`) REFERENCES `tbl_scitemcustom` (`cl_scitemcustom_id`) ON DELETE CASCADE ON UPDATE CASCADE, - CONSTRAINT `fk_scitemcustomstat_stat` FOREIGN KEY (`cl_scitemcustomstat_stat_id`) REFERENCES `tbl_scstatsitem` (`cl_scstatsitem_id`) ON DELETE CASCADE ON UPDATE CASCADE -) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +LOCK TABLES `tbl_scpreset` WRITE; +/*!40000 ALTER TABLE `tbl_scpreset` DISABLE KEYS */; +INSERT INTO `tbl_scpreset` VALUES +(1,1,1,'Mole','Argo Astronautics','Permet de miner du gros rocher.','https://www.erkul.games/loadout/jhpc5TN9','admin'), +(3,3,5,'Terrapin Medic','Anvil Aerospace','Vaisseau médical et furtif','https://www.erkul.games/loadout/2nHgQ9YB','admin'); +/*!40000 ALTER TABLE `tbl_scpreset` ENABLE KEYS */; +UNLOCK TABLES; -INSERT INTO `tbl_scitemcustomstat` (`cl_scitemcustomstat_id`,`cl_scitemcustomstat_itemcustom_id`,`cl_scitemcustomstat_stat_id`,`cl_scitemcustomstat_sign`,`cl_scitemcustomstat_value`,`cl_scitemcustomstat_created_at`) VALUES -('1','1','2','+','5.00','2026-04-08 18:35:44'), -('2','1','1','+','10.00','2026-04-08 18:35:53'), -('3','2','2','+','50.00','2026-04-08 19:02:52'), -('4','2','1','+','25.00','2026-04-08 19:03:08'), -('5','3','5','','850.00','2026-04-08 21:46:22'), -('6','3','6','','0.50','2026-04-08 22:01:49'); +-- +-- Table structure for table `tbl_scstatsitem` +-- -SET FOREIGN_KEY_CHECKS = 1; +DROP TABLE IF EXISTS `tbl_scstatsitem`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `tbl_scstatsitem` ( + `cl_scstatsitem_id` int(11) NOT NULL AUTO_INCREMENT, + `cl_scstatsitem_name` varchar(255) NOT NULL, + `cl_scstatsitem_unit` varchar(10) NOT NULL DEFAULT '%', + `cl_scstatsitem_created_at` datetime NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`cl_scstatsitem_id`), + UNIQUE KEY `uq_scstatsitem_name` (`cl_scstatsitem_name`) +) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; +-- +-- Dumping data for table `tbl_scstatsitem` +-- -CREATE TABLE IF NOT EXISTS tbl_page_access ( - cl_page_access_id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, - cl_page_key VARCHAR(190) NOT NULL UNIQUE, - cl_page_file VARCHAR(190) NOT NULL UNIQUE, - cl_page_label VARCHAR(190) NOT NULL, - cl_allow_admin TINYINT(1) NOT NULL DEFAULT 1, - cl_allow_moderator TINYINT(1) NOT NULL DEFAULT 0, - cl_allow_member TINYINT(1) NOT NULL DEFAULT 0, - cl_updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +LOCK TABLES `tbl_scstatsitem` WRITE; +/*!40000 ALTER TABLE `tbl_scstatsitem` DISABLE KEYS */; +INSERT INTO `tbl_scstatsitem` VALUES +(1,'Fire Rate','%','2026-04-08 18:15:54'), +(2,'Damage / Shot','%','2026-04-08 18:20:44'), +(3,'DPS','%','2026-04-08 18:20:53'), +(4,'Recoil Pitch','%','2026-04-08 18:21:19'), +(5,'Quality','Q','2026-04-08 21:46:09'), +(6,'Quantity','SCU','2026-04-08 22:01:21'); +/*!40000 ALTER TABLE `tbl_scstatsitem` ENABLE KEYS */; +UNLOCK TABLES; +-- +-- Table structure for table `tbl_scvaisseaux` +-- -CREATE TABLE IF NOT EXISTS tbl_sccharacters ( - cl_sccharacter_id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, - cl_sccharacter_owner_auth_id INT UNSIGNED NOT NULL, - cl_sccharacter_name VARCHAR(190) NOT NULL, - cl_sccharacter_role VARCHAR(190) NOT NULL DEFAULT '', - cl_sccharacter_faction VARCHAR(190) NOT NULL DEFAULT '', - cl_sccharacter_org_rsi_url VARCHAR(255) NOT NULL DEFAULT '', - cl_sccharacter_player_handle VARCHAR(190) NOT NULL DEFAULT '', - cl_sccharacter_avatar_url VARCHAR(255) NOT NULL DEFAULT '', - cl_sccharacter_description TEXT DEFAULT NULL, - cl_sccharacter_notes TEXT DEFAULT NULL, - cl_sccharacter_share_token VARCHAR(64) NOT NULL, - cl_sccharacter_share_enabled TINYINT(1) NOT NULL DEFAULT 0, - cl_sccharacter_created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, - cl_sccharacter_updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - UNIQUE KEY uq_sccharacter_share_token (cl_sccharacter_share_token), - KEY idx_sccharacter_owner (cl_sccharacter_owner_auth_id), - KEY idx_sccharacter_name (cl_sccharacter_name), - CONSTRAINT fk_sccharacter_owner_auth FOREIGN KEY (cl_sccharacter_owner_auth_id) - REFERENCES tbl_auth (cl_auth_id) - ON DELETE CASCADE - ON UPDATE CASCADE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +DROP TABLE IF EXISTS `tbl_scvaisseaux`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `tbl_scvaisseaux` ( + `cl_scvaisseaux_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `cl_scvaisseaux_name` varchar(255) NOT NULL, + `cl_scvaisseaux_manufacture_id` int(10) unsigned NOT NULL, + PRIMARY KEY (`cl_scvaisseaux_id`), + KEY `fk_vaisseaux_manufacture` (`cl_scvaisseaux_manufacture_id`), + CONSTRAINT `fk_vaisseaux_manufacture` FOREIGN KEY (`cl_scvaisseaux_manufacture_id`) REFERENCES `tbl_scmanufactures` (`cl_scmanufactures_id`) ON DELETE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; -CREATE TABLE IF NOT EXISTS tbl_sccharacteritems ( - cl_sccharacteritem_id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, - cl_sccharacteritem_character_id INT UNSIGNED NOT NULL, - cl_sccharacteritem_source ENUM('base', 'custom') NOT NULL DEFAULT 'base', - cl_sccharacteritem_scobjs_id INT UNSIGNED DEFAULT NULL, - cl_sccharacteritem_scitemcustom_id INT(11) DEFAULT NULL, - cl_sccharacteritem_slot VARCHAR(120) NOT NULL DEFAULT '', - cl_sccharacteritem_quantity INT UNSIGNED DEFAULT NULL, - cl_sccharacteritem_note TEXT DEFAULT NULL, - cl_sccharacteritem_created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, - KEY idx_sccharacteritem_character (cl_sccharacteritem_character_id), - KEY idx_sccharacteritem_scobjs (cl_sccharacteritem_scobjs_id), - KEY idx_sccharacteritem_scitemcustom (cl_sccharacteritem_scitemcustom_id), - CONSTRAINT fk_sccharacteritem_character FOREIGN KEY (cl_sccharacteritem_character_id) - REFERENCES tbl_sccharacters (cl_sccharacter_id) - ON DELETE CASCADE - ON UPDATE CASCADE, - CONSTRAINT fk_sccharacteritem_scobjs FOREIGN KEY (cl_sccharacteritem_scobjs_id) - REFERENCES tbl_scobjs (cl_scobjs_id) - ON DELETE SET NULL - ON UPDATE CASCADE, - CONSTRAINT fk_sccharacteritem_scitemcustom FOREIGN KEY (cl_sccharacteritem_scitemcustom_id) - REFERENCES tbl_scitemcustom (cl_scitemcustom_id) - ON DELETE SET NULL - ON UPDATE CASCADE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +-- +-- Dumping data for table `tbl_scvaisseaux` +-- +LOCK TABLES `tbl_scvaisseaux` WRITE; +/*!40000 ALTER TABLE `tbl_scvaisseaux` DISABLE KEYS */; +INSERT INTO `tbl_scvaisseaux` VALUES +(1,'Mole',1), +(2,'Raft',1), +(3,'Sabre',2), +(4,'Sabre Raven',2), +(5,'Terrapin Medic',3); +/*!40000 ALTER TABLE `tbl_scvaisseaux` ENABLE KEYS */; +UNLOCK TABLES; -CREATE TABLE IF NOT EXISTS tbl_scmanutentions ( - cl_scmanutention_id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, - cl_scmanutention_owner_auth_id INT UNSIGNED NOT NULL, - cl_scmanutention_title VARCHAR(190) NOT NULL, - cl_scmanutention_type VARCHAR(120) NOT NULL DEFAULT '', - cl_scmanutention_subtype VARCHAR(120) NOT NULL DEFAULT '', - cl_scmanutention_description TEXT DEFAULT NULL, - cl_scmanutention_share_token VARCHAR(64) NOT NULL, - cl_scmanutention_share_enabled TINYINT(1) NOT NULL DEFAULT 0, - cl_scmanutention_created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, - cl_scmanutention_updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - UNIQUE KEY uq_scmanutention_share_token (cl_scmanutention_share_token), - KEY idx_scmanutention_owner (cl_scmanutention_owner_auth_id), - KEY idx_scmanutention_title (cl_scmanutention_title), - CONSTRAINT fk_scmanutention_owner_auth FOREIGN KEY (cl_scmanutention_owner_auth_id) - REFERENCES tbl_auth (cl_auth_id) - ON DELETE CASCADE - ON UPDATE CASCADE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +-- +-- Table structure for table `tbl_scwebhooks` +-- -CREATE TABLE IF NOT EXISTS tbl_scmanutentionitems ( - cl_scmanutentionitem_id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, - cl_scmanutentionitem_manutention_id INT UNSIGNED NOT NULL, - cl_scmanutentionitem_source ENUM('base', 'custom') NOT NULL DEFAULT 'base', - cl_scmanutentionitem_scobjs_id INT UNSIGNED DEFAULT NULL, - cl_scmanutentionitem_scitemcustom_id INT(11) DEFAULT NULL, - cl_scmanutentionitem_quantity INT UNSIGNED NOT NULL DEFAULT 1, - cl_scmanutentionitem_extra_info TEXT DEFAULT NULL, - cl_scmanutentionitem_sort_order INT UNSIGNED NOT NULL DEFAULT 0, - cl_scmanutentionitem_created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, - cl_scmanutentionitem_updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - KEY idx_scmanutentionitem_sheet (cl_scmanutentionitem_manutention_id), - KEY idx_scmanutentionitem_scobjs (cl_scmanutentionitem_scobjs_id), - KEY idx_scmanutentionitem_scitemcustom (cl_scmanutentionitem_scitemcustom_id), - KEY idx_scmanutentionitem_sheet_sort (cl_scmanutentionitem_manutention_id, cl_scmanutentionitem_sort_order, cl_scmanutentionitem_id), - CONSTRAINT fk_scmanutentionitem_sheet FOREIGN KEY (cl_scmanutentionitem_manutention_id) - REFERENCES tbl_scmanutentions (cl_scmanutention_id) - ON DELETE CASCADE - ON UPDATE CASCADE, - CONSTRAINT fk_scmanutentionitem_scobjs FOREIGN KEY (cl_scmanutentionitem_scobjs_id) - REFERENCES tbl_scobjs (cl_scobjs_id) - ON DELETE SET NULL - ON UPDATE CASCADE, - CONSTRAINT fk_scmanutentionitem_scitemcustom FOREIGN KEY (cl_scmanutentionitem_scitemcustom_id) - REFERENCES tbl_scitemcustom (cl_scitemcustom_id) - ON DELETE SET NULL - ON UPDATE CASCADE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +DROP TABLE IF EXISTS `tbl_scwebhooks`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `tbl_scwebhooks` ( + `cl_scwebhook_id` int(11) NOT NULL AUTO_INCREMENT, + `cl_scwebhook_name` varchar(255) NOT NULL, + `cl_scwebhook_url` text NOT NULL, + `cl_scwebhook_image_url` text NOT NULL, + `cl_scwebhook_border_color` varchar(20) NOT NULL DEFAULT '#ffae00', + `cl_scwebhook_is_forum` tinyint(1) DEFAULT 0, + PRIMARY KEY (`cl_scwebhook_id`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tbl_scwebhooks` +-- + +LOCK TABLES `tbl_scwebhooks` WRITE; +/*!40000 ALTER TABLE `tbl_scwebhooks` DISABLE KEYS */; +INSERT INTO `tbl_scwebhooks` VALUES +(1,'Code 8','https://discord.com/api/webhooks/1491426769440604262/pd-AAt5FO2lfEqbP8xVc50HZTOcKXU9dINusSv7z_VL3-QEbq51ga7eppjSm0xK_RqSi','https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless','#FF3B30',0), +(2,'Code 4','https://discord.com/api/webhooks/1491610094507397192/8bCQaVcHE2PorJRLeRO4J7ml504XKNUfkDaT4yjP0nC7Fb1k4E3dNkaz-5vZsTsHhbhB','https://media.discordapp.net/attachments/1425859832463753297/1430347824796663908/Bann_ND_RedAlert2.png?ex=69d79778&is=69d645f8&hm=22eb2b2f42684c06a66afb5b6a80607cf8ad3a78ea99e37391ffe49942874fce&=&format=webp&quality=lossless','#FFAE00',0), +(3,'Code 2','https://discord.com/api/webhooks/1498824758307848323/qSZPmzLlVrLoKIM3YTW-nGV8xHe9zPhLIz36trxVc_uCIZyA0JKXkWbWj23khmnEOrbQ','http://www.fdsfds.fr/img.png','#5FB6F5',0); +/*!40000 ALTER TABLE `tbl_scwebhooks` ENABLE KEYS */; +UNLOCK TABLES; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2026-05-07 0:10:56 diff --git a/database/schema.sql b/database/schema.sql index 9a6a064..00756df 100644 --- a/database/schema.sql +++ b/database/schema.sql @@ -1,4 +1,9 @@ /*M!999999\- enable the sandbox mode */ +-- MariaDB dump 10.19 Distrib 10.11.14-MariaDB, for debian-linux-gnu (x86_64) +-- +-- Host: 127.0.0.1 Database: app_39514 +-- ------------------------------------------------------ +-- Server version 10.11.14-MariaDB-0+deb12u2 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; @@ -10,6 +15,11 @@ /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `tbl_auth` +-- + DROP TABLE IF EXISTS `tbl_auth`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; @@ -17,11 +27,38 @@ CREATE TABLE `tbl_auth` ( `cl_auth_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cl_auth_user` varchar(190) NOT NULL, `cl_auth_pass` varchar(255) NOT NULL, - `cl_auth_right` enum('admin','member') NOT NULL DEFAULT 'member', + `cl_auth_right` enum('admin','moderator','member') NOT NULL DEFAULT 'member', PRIMARY KEY (`cl_auth_id`), UNIQUE KEY `cl_auth_user` (`cl_auth_user`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `tbl_page_access` +-- + +DROP TABLE IF EXISTS `tbl_page_access`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `tbl_page_access` ( + `cl_page_access_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `cl_page_key` varchar(190) NOT NULL, + `cl_page_file` varchar(190) NOT NULL, + `cl_page_label` varchar(190) NOT NULL, + `cl_allow_admin` tinyint(1) NOT NULL DEFAULT 1, + `cl_allow_moderator` tinyint(1) NOT NULL DEFAULT 0, + `cl_allow_member` tinyint(1) NOT NULL DEFAULT 0, + `cl_updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + PRIMARY KEY (`cl_page_access_id`), + UNIQUE KEY `cl_page_key` (`cl_page_key`), + UNIQUE KEY `cl_page_file` (`cl_page_file`) +) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `tbl_scbanners` +-- + DROP TABLE IF EXISTS `tbl_scbanners`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; @@ -33,6 +70,73 @@ CREATE TABLE `tbl_scbanners` ( PRIMARY KEY (`cl_scbanner_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `tbl_sccharacteritems` +-- + +DROP TABLE IF EXISTS `tbl_sccharacteritems`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `tbl_sccharacteritems` ( + `cl_sccharacteritem_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `cl_sccharacteritem_character_id` int(10) unsigned NOT NULL, + `cl_sccharacteritem_source` enum('base','custom') NOT NULL DEFAULT 'base', + `cl_sccharacteritem_scobjs_id` int(10) unsigned DEFAULT NULL, + `cl_sccharacteritem_scitemcustom_id` int(11) DEFAULT NULL, + `cl_sccharacteritem_slot` varchar(120) NOT NULL DEFAULT '', + `cl_sccharacteritem_quantity` int(10) unsigned DEFAULT NULL, + `cl_sccharacteritem_note` text DEFAULT NULL, + `cl_sccharacteritem_sort_order` int(10) unsigned NOT NULL DEFAULT 0, + `cl_sccharacteritem_created_at` datetime NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`cl_sccharacteritem_id`), + KEY `idx_sccharacteritem_character` (`cl_sccharacteritem_character_id`), + KEY `idx_sccharacteritem_scobjs` (`cl_sccharacteritem_scobjs_id`), + KEY `idx_sccharacteritem_scitemcustom` (`cl_sccharacteritem_scitemcustom_id`), + KEY `idx_sccharacteritem_character_sort` (`cl_sccharacteritem_character_id`,`cl_sccharacteritem_sort_order`,`cl_sccharacteritem_id`), + CONSTRAINT `fk_sccharacteritem_character` FOREIGN KEY (`cl_sccharacteritem_character_id`) REFERENCES `tbl_sccharacters` (`cl_sccharacter_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_sccharacteritem_scitemcustom` FOREIGN KEY (`cl_sccharacteritem_scitemcustom_id`) REFERENCES `tbl_scitemcustom` (`cl_scitemcustom_id`) ON DELETE SET NULL ON UPDATE CASCADE, + CONSTRAINT `fk_sccharacteritem_scobjs` FOREIGN KEY (`cl_sccharacteritem_scobjs_id`) REFERENCES `tbl_scobjs` (`cl_scobjs_id`) ON DELETE SET NULL ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `tbl_sccharacters` +-- + +DROP TABLE IF EXISTS `tbl_sccharacters`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `tbl_sccharacters` ( + `cl_sccharacter_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `cl_sccharacter_owner_auth_id` int(10) unsigned NOT NULL, + `cl_sccharacter_name` varchar(190) NOT NULL, + `cl_sccharacter_role` varchar(190) NOT NULL DEFAULT '', + `cl_sccharacter_faction` varchar(190) NOT NULL DEFAULT '', + `cl_sccharacter_org_rsi_url` varchar(255) NOT NULL DEFAULT '', + `cl_sccharacter_is_player` tinyint(1) NOT NULL DEFAULT 0, + `cl_sccharacter_player_handle` varchar(190) NOT NULL DEFAULT '', + `cl_sccharacter_avatar_url` varchar(255) NOT NULL DEFAULT '', + `cl_sccharacter_description` text DEFAULT NULL, + `cl_sccharacter_notes` text DEFAULT NULL, + `cl_sccharacter_share_token` varchar(64) NOT NULL, + `cl_sccharacter_share_enabled` tinyint(1) NOT NULL DEFAULT 0, + `cl_sccharacter_is_pinned` tinyint(1) NOT NULL DEFAULT 0, + `cl_sccharacter_category_order` text DEFAULT NULL, + `cl_sccharacter_created_at` datetime NOT NULL DEFAULT current_timestamp(), + `cl_sccharacter_updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + PRIMARY KEY (`cl_sccharacter_id`), + UNIQUE KEY `uq_sccharacter_share_token` (`cl_sccharacter_share_token`), + KEY `idx_sccharacter_owner` (`cl_sccharacter_owner_auth_id`), + KEY `idx_sccharacter_name` (`cl_sccharacter_name`), + CONSTRAINT `fk_sccharacter_owner_auth` FOREIGN KEY (`cl_sccharacter_owner_auth_id`) REFERENCES `tbl_auth` (`cl_auth_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `tbl_scitemcustom` +-- + DROP TABLE IF EXISTS `tbl_scitemcustom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; @@ -42,13 +146,17 @@ CREATE TABLE `tbl_scitemcustom` ( `cl_scitemcustom_obj_id` int(10) unsigned NOT NULL, `cl_scitemcustom_created_at` datetime NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`cl_scitemcustom_id`), - UNIQUE KEY `uq_scitemcustom_owner_obj` (`cl_scitemcustom_owner_auth_id`,`cl_scitemcustom_obj_id`), KEY `idx_scitemcustom_obj` (`cl_scitemcustom_obj_id`), KEY `idx_scitemcustom_owner` (`cl_scitemcustom_owner_auth_id`), CONSTRAINT `fk_scitemcustom_obj` FOREIGN KEY (`cl_scitemcustom_obj_id`) REFERENCES `tbl_scobjs` (`cl_scobjs_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_scitemcustom_owner_auth` FOREIGN KEY (`cl_scitemcustom_owner_auth_id`) REFERENCES `tbl_auth` (`cl_auth_id`) ON DELETE CASCADE ON UPDATE CASCADE -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `tbl_scitemcustomstat` +-- + DROP TABLE IF EXISTS `tbl_scitemcustomstat`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; @@ -65,8 +173,13 @@ CREATE TABLE `tbl_scitemcustomstat` ( KEY `idx_scitemcustomstat_stat` (`cl_scitemcustomstat_stat_id`), CONSTRAINT `fk_scitemcustomstat_item` FOREIGN KEY (`cl_scitemcustomstat_itemcustom_id`) REFERENCES `tbl_scitemcustom` (`cl_scitemcustom_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_scitemcustomstat_stat` FOREIGN KEY (`cl_scitemcustomstat_stat_id`) REFERENCES `tbl_scstatsitem` (`cl_scstatsitem_id`) ON DELETE CASCADE ON UPDATE CASCADE -) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `tbl_scmanufactures` +-- + DROP TABLE IF EXISTS `tbl_scmanufactures`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; @@ -77,6 +190,66 @@ CREATE TABLE `tbl_scmanufactures` ( UNIQUE KEY `cl_scmanufactures_name` (`cl_scmanufactures_name`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `tbl_scmanutentionitems` +-- + +DROP TABLE IF EXISTS `tbl_scmanutentionitems`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `tbl_scmanutentionitems` ( + `cl_scmanutentionitem_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `cl_scmanutentionitem_manutention_id` int(10) unsigned NOT NULL, + `cl_scmanutentionitem_source` enum('base','custom') NOT NULL DEFAULT 'base', + `cl_scmanutentionitem_scobjs_id` int(10) unsigned DEFAULT NULL, + `cl_scmanutentionitem_scitemcustom_id` int(11) DEFAULT NULL, + `cl_scmanutentionitem_quantity` int(10) unsigned NOT NULL DEFAULT 1, + `cl_scmanutentionitem_extra_info` text DEFAULT NULL, + `cl_scmanutentionitem_sort_order` int(10) unsigned NOT NULL DEFAULT 0, + `cl_scmanutentionitem_created_at` datetime NOT NULL DEFAULT current_timestamp(), + `cl_scmanutentionitem_updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + PRIMARY KEY (`cl_scmanutentionitem_id`), + KEY `idx_scmanutentionitem_sheet` (`cl_scmanutentionitem_manutention_id`), + KEY `idx_scmanutentionitem_scobjs` (`cl_scmanutentionitem_scobjs_id`), + KEY `idx_scmanutentionitem_scitemcustom` (`cl_scmanutentionitem_scitemcustom_id`), + KEY `idx_scmanutentionitem_sheet_sort` (`cl_scmanutentionitem_manutention_id`,`cl_scmanutentionitem_sort_order`,`cl_scmanutentionitem_id`), + CONSTRAINT `fk_scmanutentionitem_scitemcustom` FOREIGN KEY (`cl_scmanutentionitem_scitemcustom_id`) REFERENCES `tbl_scitemcustom` (`cl_scitemcustom_id`) ON DELETE SET NULL ON UPDATE CASCADE, + CONSTRAINT `fk_scmanutentionitem_scobjs` FOREIGN KEY (`cl_scmanutentionitem_scobjs_id`) REFERENCES `tbl_scobjs` (`cl_scobjs_id`) ON DELETE SET NULL ON UPDATE CASCADE, + CONSTRAINT `fk_scmanutentionitem_sheet` FOREIGN KEY (`cl_scmanutentionitem_manutention_id`) REFERENCES `tbl_scmanutentions` (`cl_scmanutention_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `tbl_scmanutentions` +-- + +DROP TABLE IF EXISTS `tbl_scmanutentions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `tbl_scmanutentions` ( + `cl_scmanutention_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `cl_scmanutention_owner_auth_id` int(10) unsigned NOT NULL, + `cl_scmanutention_title` varchar(190) NOT NULL, + `cl_scmanutention_type` varchar(120) NOT NULL DEFAULT '', + `cl_scmanutention_subtype` varchar(120) NOT NULL DEFAULT '', + `cl_scmanutention_description` text DEFAULT NULL, + `cl_scmanutention_share_token` varchar(64) NOT NULL, + `cl_scmanutention_share_enabled` tinyint(1) NOT NULL DEFAULT 0, + `cl_scmanutention_created_at` datetime NOT NULL DEFAULT current_timestamp(), + `cl_scmanutention_updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + PRIMARY KEY (`cl_scmanutention_id`), + UNIQUE KEY `uq_scmanutention_share_token` (`cl_scmanutention_share_token`), + KEY `idx_scmanutention_owner` (`cl_scmanutention_owner_auth_id`), + KEY `idx_scmanutention_title` (`cl_scmanutention_title`), + CONSTRAINT `fk_scmanutention_owner_auth` FOREIGN KEY (`cl_scmanutention_owner_auth_id`) REFERENCES `tbl_auth` (`cl_auth_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `tbl_scmining` +-- + DROP TABLE IF EXISTS `tbl_scmining`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; @@ -93,6 +266,11 @@ CREATE TABLE `tbl_scmining` ( CONSTRAINT `fk_scmining_obj` FOREIGN KEY (`cl_scmining_obj_id`) REFERENCES `tbl_scobjs` (`cl_scobjs_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `tbl_scnotifications` +-- + DROP TABLE IF EXISTS `tbl_scnotifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; @@ -114,6 +292,11 @@ CREATE TABLE `tbl_scnotifications` ( CONSTRAINT `fk_scnotification_webhook` FOREIGN KEY (`cl_scnotification_webhook_id`) REFERENCES `tbl_scwebhooks` (`cl_scwebhook_id`) ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `tbl_scobjs` +-- + DROP TABLE IF EXISTS `tbl_scobjs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; @@ -128,8 +311,13 @@ CREATE TABLE `tbl_scobjs` ( `cl_scobjs_description` text DEFAULT NULL, PRIMARY KEY (`cl_scobjs_id`), UNIQUE KEY `cl_scobjs_uuid` (`cl_scobjs_uuid`) -) ENGINE=InnoDB AUTO_INCREMENT=18305 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB AUTO_INCREMENT=18306 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `tbl_scpreset` +-- + DROP TABLE IF EXISTS `tbl_scpreset`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; @@ -149,6 +337,11 @@ CREATE TABLE `tbl_scpreset` ( CONSTRAINT `fk_scpreset_vaisseau` FOREIGN KEY (`cl_scpreset_vaisseau_id`) REFERENCES `tbl_scvaisseaux` (`cl_scvaisseaux_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `tbl_scstatsitem` +-- + DROP TABLE IF EXISTS `tbl_scstatsitem`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; @@ -161,6 +354,11 @@ CREATE TABLE `tbl_scstatsitem` ( UNIQUE KEY `uq_scstatsitem_name` (`cl_scstatsitem_name`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `tbl_scvaisseaux` +-- + DROP TABLE IF EXISTS `tbl_scvaisseaux`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; @@ -173,6 +371,11 @@ CREATE TABLE `tbl_scvaisseaux` ( CONSTRAINT `fk_vaisseaux_manufacture` FOREIGN KEY (`cl_scvaisseaux_manufacture_id`) REFERENCES `tbl_scmanufactures` (`cl_scmanufactures_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `tbl_scwebhooks` +-- + DROP TABLE IF EXISTS `tbl_scwebhooks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; @@ -196,117 +399,4 @@ CREATE TABLE `tbl_scwebhooks` ( /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - - -CREATE TABLE IF NOT EXISTS tbl_page_access ( - cl_page_access_id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, - cl_page_key VARCHAR(190) NOT NULL UNIQUE, - cl_page_file VARCHAR(190) NOT NULL UNIQUE, - cl_page_label VARCHAR(190) NOT NULL, - cl_allow_admin TINYINT(1) NOT NULL DEFAULT 1, - cl_allow_moderator TINYINT(1) NOT NULL DEFAULT 0, - cl_allow_member TINYINT(1) NOT NULL DEFAULT 0, - cl_updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - - -CREATE TABLE IF NOT EXISTS tbl_sccharacters ( - cl_sccharacter_id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, - cl_sccharacter_owner_auth_id INT UNSIGNED NOT NULL, - cl_sccharacter_name VARCHAR(190) NOT NULL, - cl_sccharacter_role VARCHAR(190) NOT NULL DEFAULT '', - cl_sccharacter_faction VARCHAR(190) NOT NULL DEFAULT '', - cl_sccharacter_org_rsi_url VARCHAR(255) NOT NULL DEFAULT '', - cl_sccharacter_player_handle VARCHAR(190) NOT NULL DEFAULT '', - cl_sccharacter_avatar_url VARCHAR(255) NOT NULL DEFAULT '', - cl_sccharacter_description TEXT DEFAULT NULL, - cl_sccharacter_notes TEXT DEFAULT NULL, - cl_sccharacter_share_token VARCHAR(64) NOT NULL, - cl_sccharacter_share_enabled TINYINT(1) NOT NULL DEFAULT 0, - cl_sccharacter_created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, - cl_sccharacter_updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - UNIQUE KEY uq_sccharacter_share_token (cl_sccharacter_share_token), - KEY idx_sccharacter_owner (cl_sccharacter_owner_auth_id), - KEY idx_sccharacter_name (cl_sccharacter_name), - CONSTRAINT fk_sccharacter_owner_auth FOREIGN KEY (cl_sccharacter_owner_auth_id) - REFERENCES tbl_auth (cl_auth_id) - ON DELETE CASCADE - ON UPDATE CASCADE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - -CREATE TABLE IF NOT EXISTS tbl_sccharacteritems ( - cl_sccharacteritem_id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, - cl_sccharacteritem_character_id INT UNSIGNED NOT NULL, - cl_sccharacteritem_source ENUM('base', 'custom') NOT NULL DEFAULT 'base', - cl_sccharacteritem_scobjs_id INT UNSIGNED DEFAULT NULL, - cl_sccharacteritem_scitemcustom_id INT(11) DEFAULT NULL, - cl_sccharacteritem_slot VARCHAR(120) NOT NULL DEFAULT '', - cl_sccharacteritem_quantity INT UNSIGNED DEFAULT NULL, - cl_sccharacteritem_note TEXT DEFAULT NULL, - cl_sccharacteritem_created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, - KEY idx_sccharacteritem_character (cl_sccharacteritem_character_id), - KEY idx_sccharacteritem_scobjs (cl_sccharacteritem_scobjs_id), - KEY idx_sccharacteritem_scitemcustom (cl_sccharacteritem_scitemcustom_id), - CONSTRAINT fk_sccharacteritem_character FOREIGN KEY (cl_sccharacteritem_character_id) - REFERENCES tbl_sccharacters (cl_sccharacter_id) - ON DELETE CASCADE - ON UPDATE CASCADE, - CONSTRAINT fk_sccharacteritem_scobjs FOREIGN KEY (cl_sccharacteritem_scobjs_id) - REFERENCES tbl_scobjs (cl_scobjs_id) - ON DELETE SET NULL - ON UPDATE CASCADE, - CONSTRAINT fk_sccharacteritem_scitemcustom FOREIGN KEY (cl_sccharacteritem_scitemcustom_id) - REFERENCES tbl_scitemcustom (cl_scitemcustom_id) - ON DELETE SET NULL - ON UPDATE CASCADE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - - -CREATE TABLE IF NOT EXISTS tbl_scmanutentions ( - cl_scmanutention_id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, - cl_scmanutention_owner_auth_id INT UNSIGNED NOT NULL, - cl_scmanutention_title VARCHAR(190) NOT NULL, - cl_scmanutention_type VARCHAR(120) NOT NULL DEFAULT '', - cl_scmanutention_subtype VARCHAR(120) NOT NULL DEFAULT '', - cl_scmanutention_description TEXT DEFAULT NULL, - cl_scmanutention_share_token VARCHAR(64) NOT NULL, - cl_scmanutention_share_enabled TINYINT(1) NOT NULL DEFAULT 0, - cl_scmanutention_created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, - cl_scmanutention_updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - UNIQUE KEY uq_scmanutention_share_token (cl_scmanutention_share_token), - KEY idx_scmanutention_owner (cl_scmanutention_owner_auth_id), - KEY idx_scmanutention_title (cl_scmanutention_title), - CONSTRAINT fk_scmanutention_owner_auth FOREIGN KEY (cl_scmanutention_owner_auth_id) - REFERENCES tbl_auth (cl_auth_id) - ON DELETE CASCADE - ON UPDATE CASCADE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - -CREATE TABLE IF NOT EXISTS tbl_scmanutentionitems ( - cl_scmanutentionitem_id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, - cl_scmanutentionitem_manutention_id INT UNSIGNED NOT NULL, - cl_scmanutentionitem_source ENUM('base', 'custom') NOT NULL DEFAULT 'base', - cl_scmanutentionitem_scobjs_id INT UNSIGNED DEFAULT NULL, - cl_scmanutentionitem_scitemcustom_id INT(11) DEFAULT NULL, - cl_scmanutentionitem_quantity INT UNSIGNED NOT NULL DEFAULT 1, - cl_scmanutentionitem_extra_info TEXT DEFAULT NULL, - cl_scmanutentionitem_sort_order INT UNSIGNED NOT NULL DEFAULT 0, - cl_scmanutentionitem_created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, - cl_scmanutentionitem_updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - KEY idx_scmanutentionitem_sheet (cl_scmanutentionitem_manutention_id), - KEY idx_scmanutentionitem_scobjs (cl_scmanutentionitem_scobjs_id), - KEY idx_scmanutentionitem_scitemcustom (cl_scmanutentionitem_scitemcustom_id), - KEY idx_scmanutentionitem_sheet_sort (cl_scmanutentionitem_manutention_id, cl_scmanutentionitem_sort_order, cl_scmanutentionitem_id), - CONSTRAINT fk_scmanutentionitem_sheet FOREIGN KEY (cl_scmanutentionitem_manutention_id) - REFERENCES tbl_scmanutentions (cl_scmanutention_id) - ON DELETE CASCADE - ON UPDATE CASCADE, - CONSTRAINT fk_scmanutentionitem_scobjs FOREIGN KEY (cl_scmanutentionitem_scobjs_id) - REFERENCES tbl_scobjs (cl_scobjs_id) - ON DELETE SET NULL - ON UPDATE CASCADE, - CONSTRAINT fk_scmanutentionitem_scitemcustom FOREIGN KEY (cl_scmanutentionitem_scitemcustom_id) - REFERENCES tbl_scitemcustom (cl_scitemcustom_id) - ON DELETE SET NULL - ON UPDATE CASCADE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +-- Dump completed on 2026-05-07 0:10:56 diff --git a/scmanutention.php b/scmanutention.php index 3f2d349..bce7c27 100644 --- a/scmanutention.php +++ b/scmanutention.php @@ -949,12 +949,14 @@ $page_access_widget = auth_render_page_access_widget('scmanutention.php', 'Manut padding: 0.95rem; display: grid; gap: 0.8rem; + position: relative; + isolation: isolate; } - .item-head { display: flex; gap: 0.9rem; align-items: start; + justify-content: space-between; } .item-title-line { @@ -978,27 +980,98 @@ $page_access_widget = auth_render_page_access_widget('scmanutention.php', 'Manut border: 1px solid rgba(255,255,255,0.07); color: var(--text-main); } - .item-actions { display: flex; - gap: 0.6rem; + gap: 0.55rem; flex-wrap: wrap; - align-items: center; + align-items: flex-start; + justify-content: flex-end; + margin-left: auto; + flex: none; + position: relative; } details.item-edit { - border-top: 1px solid rgba(255,255,255,0.08); - padding-top: 0.8rem; + position: relative; + flex: none; } - details.item-edit summary { - cursor: pointer; - color: #fff2ca; - font-weight: 700; + details.item-edit summary.item-edit-toggle { list-style: none; + white-space: nowrap; + position: relative; + z-index: 2; } - details.item-edit summary::-webkit-details-marker { display: none; } + details.item-edit summary.item-edit-toggle::-webkit-details-marker { display: none; } + + details.item-edit[open] summary.item-edit-toggle { + background: var(--primary); + color: #111; + box-shadow: 0 0 15px rgba(162, 155, 120, 0.35); + } + + .item-edit-backdrop { + display: none; + } + + details.item-edit[open] .item-edit-backdrop { + display: block; + position: fixed; + inset: 0; + z-index: 10000; + background: rgba(6, 10, 18, 0.78); + backdrop-filter: blur(3px); + } + + .item-edit-panel { + display: none; + } + + details.item-edit[open] .item-edit-panel { + display: block; + position: fixed; + top: 50%; + left: 50%; + right: auto; + transform: translate(-50%, -50%); + z-index: 10001; + width: min(860px, calc(100vw - 2rem)); + max-height: calc(100vh - 2rem); + overflow-y: auto; + padding: 1rem; + border-radius: 18px; + background: rgba(11, 16, 26, 0.985); + border: 1px solid rgba(255,255,255,0.10); + box-shadow: 0 28px 64px rgba(0,0,0,0.52); + backdrop-filter: blur(10px); + } + + .item-edit-panel-head { + display: flex; + align-items: flex-start; + justify-content: space-between; + gap: 0.8rem; + margin-bottom: 0.95rem; + } + + .item-edit-panel-title { + display: grid; + gap: 0.28rem; + } + + .item-edit-panel-title strong { + font-size: 1rem; + color: var(--text-main); + } + + .item-edit-panel form { + margin: 0; + } + + body.item-edit-open { + overflow: hidden; + } .stats-list { gap: 0.5rem; @@ -1050,13 +1123,32 @@ $page_access_widget = auth_render_page_access_widget('scmanutention.php', 'Manut justify-content: flex-start; max-width: 100%; } - .picker-selection, - .item-head, .hero-title-row, .admin-topbar { align-items: stretch; } + + .item-head { + align-items: stretch; + flex-direction: column; + } + + .item-actions { + width: 100%; + justify-content: flex-end; + } + + details.item-edit[open] .item-edit-panel { + width: min(100vw - 1rem, 860px); + max-height: calc(100vh - 1rem); + padding: 0.9rem; + } + + .item-edit-panel-head { + align-items: stretch; + flex-direction: column; + } } @@ -1356,91 +1448,96 @@ $page_access_widget = auth_render_page_access_widget('scmanutention.php', 'Manut - - - -
- +
+ Modifier + +
+ @@ -1767,7 +1864,52 @@ $page_access_widget = auth_render_page_access_widget('scmanutention.php', 'Manut } } + function syncItemEditState() { + document.body.classList.toggle('item-edit-open', !!document.querySelector('details.item-edit[open]')); + } + + Array.prototype.slice.call(document.querySelectorAll('details.item-edit')).forEach(function (detailsNode) { + detailsNode.addEventListener('toggle', function () { + if (detailsNode.open) { + Array.prototype.slice.call(document.querySelectorAll('details.item-edit[open]')).forEach(function (otherNode) { + if (otherNode !== detailsNode) { + otherNode.open = false; + } + }); + } + + syncItemEditState(); + }); + }); + + document.addEventListener('click', function (event) { + var closeTrigger = event.target.closest('[data-item-edit-close]'); + if (!closeTrigger) { + return; + } + + var detailsNode = closeTrigger.closest('details.item-edit'); + if (!detailsNode) { + return; + } + + detailsNode.open = false; + syncItemEditState(); + }); + + document.addEventListener('keydown', function (event) { + if (event.key !== 'Escape') { + return; + } + + Array.prototype.slice.call(document.querySelectorAll('details.item-edit[open]')).forEach(function (detailsNode) { + detailsNode.open = false; + }); + syncItemEditState(); + }); + Array.prototype.slice.call(document.querySelectorAll('[data-item-picker-root]')).forEach(initPicker); + syncItemEditState(); });